a972c460fa
- icons - blank mode by default - BSD auth
2222 lines
76 KiB
C
2222 lines
76 KiB
C
#if !defined( lint ) && !defined( SABER )
|
|
static const char sccsid[] = "@(#)resource.c 4.08 98/08/04 xlockmore";
|
|
|
|
#endif
|
|
|
|
/*-
|
|
* resource.c - resource management for xlock, the X Window System lockscreen.
|
|
*
|
|
* Copyright (c) 1991 by Patrick J. Naughton.
|
|
*
|
|
* See xlock.c for copying information.
|
|
*
|
|
* Revision History:
|
|
*
|
|
* Changes maintained by David Bagley <bagleyd@tux.org>
|
|
* 02-Dec-03: Jouk Jansen <joukj@hrem.stm.tudelft.nl>
|
|
* On OpenVMS when TCPIP is switched off gethostname does not
|
|
* work, in that case LIB$GETSYI to get the DECNET nodename.
|
|
* 19-Jun-98: batchcount deprecated. Use count instead. batchcount still
|
|
* works for commandline.
|
|
* 01-May-97: Matthew Rench <mdrench@mtu.edu>
|
|
* Added DPMS options.
|
|
* 01-Apr-97: Tom Schmidt <tschmidt@micron.com>
|
|
* Fixed memory leak. Made -visual option a hacker mode for now.
|
|
* 20-Mar-97: Tom Schmidt <tschmidt@micron.com>
|
|
* Added -visual option.
|
|
* 3-Apr-96: Jouk Jansen <joukj@hrem.stm.tudelft.nl>
|
|
* Supply for wildcards for filenames for random selection
|
|
* 18-Mar-96: Ron Hitchens <ron@idiom.com>
|
|
* Setup chosen mode with set_default_mode() for new hook scheme.
|
|
* 6-Mar-96: Jouk Jansen <joukj@hrem.stm.tudelft.nl>
|
|
* Remote node checking for VMS fixed
|
|
* 20-Dec-95: Ron Hitchens <ron@idiom.com>
|
|
* Resource parsing fixed for "nolock".
|
|
* 02-Aug-95: Patch to use default delay, etc., from mode.h thanks to
|
|
* Roland Bock <exp120@physik.uni-kiel.d400.de>
|
|
* 17-Jun-95: Split out mode.h from resource.c .
|
|
* 29-Mar-95: Added -cycles for more control over a lockscreen similar to
|
|
* -delay, -batchcount, and -saturation.
|
|
* 21-Feb-95: MANY patches from Heath A. Kehoe <hakehoe@icaen.uiowa.edu>.
|
|
* 21-Dec-94: patch for -delay, -batchcount and -saturation for X11R5+
|
|
* from Patrick D Sullivan <pds@bss.com>.
|
|
* 18-Dec-94: -inroot option added from Bill Woodward <wpwood@pencom.com>.
|
|
* 20-Sep-94: added bat mode from Lorenzo Patocchi <patol@info.isbiel.ch>.
|
|
* 11-Jul-94: added grav mode, and inwindow option from Greg Bowering
|
|
* <greg@cs.adelaide.edu.au>
|
|
* 22-Jun-94: Modified for VMS
|
|
* <Anthony.D.Clarke@Support.Hatfield.Raytheon.bae.eurokom.ie>
|
|
* 17-Jun-94: default changed from life to blank
|
|
* 21-Mar-94: patch fix for AIXV3 from <R.K.Lloyd@csc.liv.ac.uk>
|
|
* 01-Dec-93: added patch for AIXV3 from Tom McConnell
|
|
* <tmcconne@sedona.intel.com>
|
|
* 29-Jun-93: added spline, maze, sphere, hyper, helix, rock, and blot mode.
|
|
*
|
|
* Changes of Patrick J. Naughton
|
|
* 25-Sep-91: added worm mode.
|
|
* 24-Jun-91: changed name to username.
|
|
* 06-Jun-91: Added flame mode.
|
|
* 24-May-91: Added -name and -usefirst and -resources.
|
|
* 16-May-91: Added random mode and pyro mode.
|
|
* 26-Mar-91: checkResources: delay must be >= 0.
|
|
* 29-Oct-90: Added #include <ctype.h> for missing isupper() on some OS revs.
|
|
* moved -mode option, reordered Xrm database evaluation.
|
|
* 28-Oct-90: Added text strings.
|
|
* 26-Oct-90: Fix bug in mode specific options.
|
|
* 31-Jul-90: Fix ':' handling in parsefilepath
|
|
* 07-Jul-90: Created from resource work in xlock.c
|
|
*
|
|
*/
|
|
|
|
#include "xlock.h"
|
|
#include "vis.h"
|
|
#include "iostuff.h"
|
|
#include "version.h"
|
|
#if VMS
|
|
# if ( __VMS_VER < 70000000 )
|
|
# ifdef __DECC
|
|
# define gethostname decc$gethostname
|
|
# define gethostbyname decc$gethostbyname
|
|
# endif
|
|
# else
|
|
# include <socket.h>
|
|
# endif
|
|
# include <descrip>
|
|
# include <ssdef>
|
|
# include <syidef>
|
|
# include <lib$routines>
|
|
#endif
|
|
|
|
#ifdef __sgi
|
|
#undef offsetof
|
|
#endif
|
|
|
|
#ifndef offsetof
|
|
# define offsetof(s,m) ((char*)(&((s *)0)->m)-(char*)0)
|
|
#endif
|
|
|
|
#ifdef USE_MODULES
|
|
# ifndef DEF_MODULEPATH
|
|
#if 1
|
|
# define DEF_MODULEPATH "/usr/lib/X11/xlock/modules"
|
|
#else
|
|
# define DEF_MODULEPATH "@PREFIX@/lib/X11/xlock/modules"
|
|
#endif
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef DEF_FILESEARCHPATH
|
|
# ifdef VMS
|
|
# include <iodef>
|
|
# include <stsdef>
|
|
# include <types.h>
|
|
# include <starlet.h>
|
|
|
|
# define DEF_FILESEARCHPATH "DECW$SYSTEM_DEFAULTS:DECW$%N.DAT%S"
|
|
# define BUFSIZE 132
|
|
# define DECW$C_WS_DSP_TRANSPORT 2 /* taken from wsdriver.lis */
|
|
# define IO$M_WS_DISPLAY 0x00000040 /* taken from wsdriver */
|
|
|
|
struct descriptor_t { /* descriptor structure */
|
|
unsigned short len;
|
|
unsigned char type;
|
|
unsigned char c_class;
|
|
char *ptr;
|
|
};
|
|
typedef struct descriptor_t dsc;
|
|
|
|
/* $dsc creates a descriptor for a predefined string */
|
|
|
|
# define $dsc(name,string) dsc name = { sizeof(string)-1,14,1,string}
|
|
|
|
/* $dscp creates a descriptor pointing to a buffer allocated elsewhere */
|
|
|
|
# define $dscp(name,size,addr) dsc name = { size,14,1,addr }
|
|
|
|
static int descr();
|
|
|
|
# else
|
|
# define DEF_FILESEARCHPATH "/usr/lib/X11/%T/%N%C%S:/usr/lib/X11/%T/%N%S"
|
|
# endif
|
|
#endif
|
|
#ifndef DEF_MODE
|
|
# if 1
|
|
# define DEF_MODE "blank" /* May be safer */
|
|
# else
|
|
# define DEF_MODE "random" /* May be more interesting */
|
|
# endif
|
|
#endif
|
|
#define DEF_DELAY "200000" /* microseconds between batches */
|
|
#define DEF_COUNT "100" /* vectors (or whatever) per batch */
|
|
#define DEF_CYCLES "1000" /* timeout in cycles for a batch */
|
|
#define DEF_SIZE "0" /* size, default if 0 */
|
|
#define DEF_NCOLORS "64" /* maximum number of colors */
|
|
#define DEF_SATURATION "1.0" /* color ramp saturation 0->1 */
|
|
#define DEF_NICE "10" /* xlock process nicelevel */
|
|
#define DEF_ERASEDELAY "400" /* Speed for screen erase modes */
|
|
#define DEF_ERASETIME "2" /* Maximum number of seconds for erase */
|
|
#define DEF_LOCKDELAY "0" /* secs until lock */
|
|
#define DEF_UNLOCKDELAY "0" /* secs until unlock */
|
|
#define DEF_TIMEOUT "30" /* secs until password entry times out */
|
|
#ifndef DEF_FONT
|
|
# ifdef AIXV3
|
|
# define DEF_FONT "fixed"
|
|
# else /* !AIXV3 */
|
|
# define DEF_FONT "-*-helvetica-medium-r-*-*-24-*-*-*-*-*-*"
|
|
# endif /* !AIXV3 */
|
|
#endif
|
|
#define DEF_PLANFONT "-*-fixed-medium-r-*-*-14-*-*-*-*-*-*"
|
|
#ifdef USE_MB
|
|
# define DEF_FONTSET DEF_FONT ",-*-*-medium-r-normal--24-*"
|
|
# define DEF_PLANFONTSET DEF_PLANFONT ",-*-*-medium-r-normal--14-*"
|
|
#endif /* USE MB */
|
|
#define DEF_BG "White"
|
|
#define DEF_FG "Black"
|
|
|
|
/* language depended resources */
|
|
#if defined FR
|
|
#include "resource-msg-fr.h"
|
|
#elif defined NL
|
|
#include "resource-msg-nl.h"
|
|
#elif defined JA
|
|
#include "resource-msg-ja.h"
|
|
#else
|
|
#include "resource-msg-en.h"
|
|
#endif
|
|
|
|
#ifdef GLOBAL_UNLOCK
|
|
# define DEF_GUSER "Username: "
|
|
#endif
|
|
#ifdef SAFEWORD
|
|
# define DEF_DPASS "Dynamic password: "
|
|
# define DEF_FPASS "Fixed Password: "
|
|
# define DEF_CHALL "Challenge: "
|
|
#endif
|
|
#define DEF_GEOMETRY ""
|
|
#define DEF_ICONGEOMETRY ""
|
|
#ifdef FX
|
|
# define DEF_GLGEOMETRY ""
|
|
#endif
|
|
#define DEF_DELTA3D "1.5" /* space between things in 3d mode relative to their size */
|
|
#ifndef DEF_MESSAGESFILE
|
|
# define DEF_MESSAGESFILE ""
|
|
#endif
|
|
#ifndef DEF_MESSAGEFILE
|
|
# define DEF_MESSAGEFILE ""
|
|
#endif
|
|
#ifndef DEF_MESSAGE
|
|
/* #define DEF_MESSAGE "I am out running around." */
|
|
# define DEF_MESSAGE ""
|
|
#endif
|
|
#ifndef DEF_BITMAP
|
|
# define DEF_BITMAP ""
|
|
#endif
|
|
#ifndef DEF_MAILAPP
|
|
# define DEF_MAILAPP ""
|
|
#endif
|
|
#ifdef USE_VTLOCK
|
|
# define VTLOCKMODE_OFF "off"
|
|
# define VTLOCKMODE_NOSWITCH "noswitch"
|
|
# define VTLOCKMODE_SWITCH "switch"
|
|
# define VTLOCKMODE_RESTORE "restore"
|
|
# define DEF_VTLOCK VTLOCKMODE_OFF
|
|
#endif
|
|
#define DEF_CLASSNAME "XLock"
|
|
#if 0
|
|
/*-
|
|
Grid Number of Neigbors
|
|
---- ------------------
|
|
Square 4 or 8
|
|
Hexagon 6
|
|
Triangle 3, 9 or 12 <- 9 is not too mathematically sound...
|
|
*/
|
|
# define DEF_NEIGHBORS "0" /* automata mode will choose best or random value */
|
|
# define DEF_MOUSE "False"
|
|
#endif
|
|
|
|
#ifdef USE_RPLAY
|
|
# define DEF_LOCKSOUND "thank-you"
|
|
# define DEF_INFOSOUND "identify-please"
|
|
# define DEF_VALIDSOUND "complete"
|
|
# define DEF_INVALIDSOUND "not-programmed"
|
|
#else /* !USE_RPLAY */
|
|
# if defined ( DEF_PLAY ) || defined ( USE_NAS )
|
|
# define DEF_LOCKSOUND "thank-you.au"
|
|
# define DEF_INFOSOUND "identify-please.au"
|
|
# define DEF_VALIDSOUND "complete.au"
|
|
# define DEF_INVALIDSOUND "not-programmed.au"
|
|
# else /* !DEF_PLAY && !USE_NAS */
|
|
# ifdef USE_VMSPLAY
|
|
# define DEF_LOCKSOUND "[]thank-you.au"
|
|
# define DEF_INFOSOUND "[]identify-please.au"
|
|
# define DEF_VALIDSOUND "[]complete.au"
|
|
# define DEF_INVALIDSOUND "[]not-programmed.au"
|
|
# endif /* !USE_VMSPLAY */
|
|
# ifdef USE_ESOUND
|
|
# define DEF_LOCKSOUND "thank-you.au"
|
|
# define DEF_INFOSOUND "identify-please.au"
|
|
# define DEF_VALIDSOUND "complete.au"
|
|
# define DEF_INVALIDSOUND "not-programmed.au"
|
|
# endif
|
|
# endif /* !DEF_PLAY && !USE_NAS */
|
|
#endif /* !USE_RPLAY */
|
|
|
|
#if defined( USE_AUTO_LOGOUT ) && !defined( DEF_AUTO_LOGOUT )
|
|
# if ( USE_AUTO_LOGOUT <= 0 )
|
|
# define DEF_AUTO_LOGOUT "120" /* User Default, can be overridden */
|
|
# else
|
|
# define DEF_AUTO_LOGOUT "0" /* User Default, can be overridden */
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef USE_DPMS
|
|
# define DEF_DPMSSTANDBY "-1"
|
|
# define DEF_DPMSSUSPEND "-1"
|
|
# define DEF_DPMSOFF "-1"
|
|
#endif
|
|
|
|
#if defined( USE_BUTTON_LOGOUT )
|
|
# if !defined( DEF_BUTTON_LOGOUT )
|
|
# if ( USE_BUTTON_LOGOUT <= 0 )
|
|
# define DEF_BUTTON_LOGOUT "5" /* User Default, can be overridden */
|
|
# else
|
|
# define DEF_BUTTON_LOGOUT "0" /* User Default, can be overridden */
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
/* For modes with text, marquee & nose */
|
|
extern char *program;
|
|
extern char *messagesfile;
|
|
extern char *messagefile;
|
|
extern char *message; /* flag as well here */
|
|
extern char *messagefontname;
|
|
|
|
#if 0
|
|
/* For automata modes */
|
|
extern int neighbors;
|
|
|
|
/* For eyes, julia, & swarm modes */
|
|
Bool mouse;
|
|
#endif
|
|
|
|
char hostname[MAXHOSTNAMELEN];
|
|
static char *mode = (char *) NULL;
|
|
char *displayname = (char *) NULL;
|
|
static char *classname;
|
|
static char *modename;
|
|
static char *modeclassname;
|
|
extern Window parent;
|
|
static char *parentname;
|
|
extern Bool parentSet;
|
|
|
|
#if HAVE_DIRENT_H
|
|
static struct dirent ***images_list = (struct dirent ***) NULL;
|
|
int num_list = 0;
|
|
struct dirent **image_list = (struct dirent **) NULL;
|
|
char filename_r[MAXNAMLEN];
|
|
char directory_r[DIRBUF];
|
|
|
|
#endif
|
|
|
|
static XrmOptionDescRec genTable[] =
|
|
{
|
|
{(char *) "-mode", (char *) ".mode", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-erasemode", (char *) ".erasemode", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-erasedelay", (char *) ".erasedelay", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-erasetime", (char *) ".erasetime", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-nolock", (char *) ".nolock", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+nolock", (char *) ".nolock", XrmoptionNoArg, (caddr_t) "off"},
|
|
#ifdef USE_VTLOCK
|
|
{(char *) "-vtlock", (char *) ".vtlock", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
{(char *) "-inwindow", (char *) ".inwindow", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+inwindow", (char *) ".inwindow", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-inroot", (char *) ".inroot", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+inroot", (char *) ".inroot", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-remote", (char *) ".remote", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+remote", (char *) ".remote", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-mono", (char *) ".mono", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+mono", (char *) ".mono", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-allowaccess", (char *) ".allowaccess", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+allowaccess", (char *) ".allowaccess", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-allowroot", (char *) ".allowroot", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+allowroot", (char *) ".allowroot", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-debug", (char *) ".debug", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+debug", (char *) ".debug", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-description", (char *) ".description", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+description", (char *) ".description", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-echokeys", (char *) ".echokeys", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+echokeys", (char *) ".echokeys", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-echokey", (char *) ".echokey", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-enablesaver", (char *) ".enablesaver", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+enablesaver", (char *) ".enablesaver", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-resetsaver", (char *) ".resetsaver", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+resetsaver", (char *) ".resetsaver", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-grabmouse", (char *) ".grabmouse", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+grabmouse", (char *) ".grabmouse", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-grabserver", (char *) ".grabserver", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+grabserver", (char *) ".grabserver", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-hide", (char *) ".hide", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+hide", (char *) ".hide", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-install", (char *) ".install", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+install", (char *) ".install", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-mousemotion", (char *) ".mousemotion", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+mousemotion", (char *) ".mousemotion", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-sound", (char *) ".sound", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+sound", (char *) ".sound", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-timeelapsed", (char *) ".timeelapsed", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+timeelapsed", (char *) ".timeelapsed", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-usefirst", (char *) ".usefirst", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+usefirst", (char *) ".usefirst", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-verbose", (char *) ".verbose", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+verbose", (char *) ".verbose", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-nice", (char *) ".nice", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-lockdelay", (char *) ".lockdelay", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-unlockdelay", (char *) ".unlockdelay", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-timeout", (char *) ".timeout", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-font", (char *) ".font", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-planfont", (char *) ".planfont", XrmoptionSepArg, (caddr_t) NULL},
|
|
#ifdef USE_MB
|
|
{(char *) "-fontset", (char *) ".fontset", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-planfontset", (char *) ".planfontset", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
{(char *) "-bg", (char *) ".background", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-fg", (char *) ".foreground", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-background", (char *) ".background", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-foreground", (char *) ".foreground", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-username", (char *) ".username", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-password", (char *) ".password", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-info", (char *) ".info", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-validate", (char *) ".validate", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-invalid", (char *) ".invalid", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-invalidCapsLock", (char *) ".invalidCapsLock", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-geometry", (char *) ".geometry", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-icongeometry", (char *) ".icongeometry", XrmoptionSepArg, (caddr_t) NULL},
|
|
#ifdef FX
|
|
{(char *) "-glgeometry", (char *) ".glgeometry", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
|
|
{(char *) "-wireframe", (char *) ".wireframe", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+wireframe", (char *) ".wireframe", XrmoptionNoArg, (caddr_t) "off"},
|
|
|
|
#ifdef USE_GL
|
|
{(char *) "-showfps", (char *) ".showfps", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+showfps", (char *) ".showfps", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-fpstop", (char *) ".fpstop", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+fpstop", (char *) ".fpstop", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-fpsfont", (char *) ".fpsfont", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
|
|
{(char *) "-use3d", (char *) ".use3d", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+use3d", (char *) ".use3d", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-delta3d", (char *) ".delta3d", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-none3d", (char *) ".none3d", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-right3d", (char *) ".right3d", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-left3d", (char *) ".left3d", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-both3d", (char *) ".both3d", XrmoptionSepArg, (caddr_t) NULL},
|
|
|
|
/* For modes with text, marquee & nose */
|
|
{(char *) "-program", (char *) ".program", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-messagesfile", (char *) ".messagesfile", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-messagefile", (char *) ".messagefile", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-message", (char *) ".message", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-messagefont", (char *) ".messagefont", XrmoptionSepArg, (caddr_t) NULL},
|
|
#if 0
|
|
/* For automata modes */
|
|
{(char *) "-neighbors", (char *) ".neighbors", XrmoptionSepArg, (caddr_t) NULL},
|
|
/* For eyes, julia, and swarm modes */
|
|
{(char *) "-mouse", (char *) ".mouse", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+mouse", (char *) ".mouse", XrmoptionNoArg, (caddr_t) "off"},
|
|
#endif
|
|
|
|
#if defined( USE_XLOCKRC ) || defined( FALLBACK_XLOCKRC )
|
|
{(char *) "-cpasswd", (char *) ".cpasswd", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
#ifdef USE_AUTO_LOGOUT
|
|
{(char *) "-logoutAuto", (char *) ".logoutAuto", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
#ifdef USE_BUTTON_LOGOUT
|
|
{(char *) "-logoutButton", (char *) ".logoutButton", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-logoutButtonLabel", (char *) ".logoutButtonLabel", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-logoutButtonHelp", (char *) ".logoutButtonHelp", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-logoutFailedString", (char *) ".logoutFailedString", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
#ifdef USE_DTSAVER
|
|
{(char *) "-dtsaver", (char *) ".dtsaver", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+dtsaver", (char *) ".dtsaver", XrmoptionNoArg, (caddr_t) "off"},
|
|
#endif
|
|
#ifdef USE_SOUND
|
|
{(char *) "-locksound", (char *) ".locksound", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-infosound", (char *) ".infosound", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-validsound", (char *) ".validsound", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-invalidsound", (char *) ".invalidsound", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
{(char *) "-startCmd", (char *) ".startCmd", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-endCmd", (char *) ".endCmd", XrmoptionSepArg, (caddr_t) NULL},
|
|
#ifndef VMS
|
|
{(char *) "-pipepassCmd", (char *) ".pipepassCmd", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
{(char *) "-logoutCmd", (char *) ".logoutCmd", XrmoptionSepArg, (caddr_t) NULL},
|
|
|
|
{(char *) "-mailCmd", (char *) ".mailCmd", XrmoptionSepArg, (caddr_t) ""},
|
|
{(char *) "-mailIcon", (char *) ".mailIcon", XrmoptionSepArg, (caddr_t) ""},
|
|
{(char *) "-nomailIcon", (char *) ".nomailIcon", XrmoptionSepArg, (caddr_t) ""},
|
|
#ifdef USE_DPMS
|
|
{(char *) "-dpmsstandby", (char *) ".dpmsstandby", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-dpmssuspend", (char *) ".dpmssuspend", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-dpmsoff", (char *) ".dpmsoff", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
};
|
|
|
|
#define genEntries (sizeof genTable / sizeof genTable[0])
|
|
|
|
static XrmOptionDescRec modeTable[] =
|
|
{
|
|
{(char *) "-delay", (char *) "*delay", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-batchcount", (char *) "*count", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-count", (char *) "*count", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-cycles", (char *) "*cycles", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-size", (char *) "*size", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-ncolors", (char *) "*ncolors", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-saturation", (char *) "*saturation", XrmoptionSepArg, (caddr_t) NULL},
|
|
/* For modes with images, xbm, xpm, & ras */
|
|
{(char *) "-bitmap", (char *) "*bitmap", XrmoptionSepArg, (caddr_t) NULL},
|
|
};
|
|
|
|
#define modeEntries (sizeof modeTable / sizeof modeTable[0])
|
|
|
|
/*-
|
|
Chicken/egg problem here.
|
|
Customization strings will only work with
|
|
#define CUSTOMIZATION
|
|
I prefer not to use it because "xlock -display whatever:0" does not work.
|
|
If I get any complaints about this I will change it the default.
|
|
*/
|
|
|
|
static XrmOptionDescRec cmdlineTable[] =
|
|
{
|
|
#ifndef CUSTOMIZATION
|
|
{(char *) "-display", (char *) ".display", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
{(char *) "-visual", (char *) ".visual", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-parent", (char *) ".parent", XrmoptionSepArg, (caddr_t) NULL},
|
|
{(char *) "-nolock", (char *) ".nolock", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+nolock", (char *) ".nolock", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-remote", (char *) ".remote", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+remote", (char *) ".remote", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-inwindow", (char *) ".inwindow", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+inwindow", (char *) ".inwindow", XrmoptionNoArg, (caddr_t) "off"},
|
|
{(char *) "-inroot", (char *) ".inroot", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+inroot", (char *) ".inroot", XrmoptionNoArg, (caddr_t) "off"},
|
|
#ifdef USE_DTSAVER
|
|
{(char *) "-dtsaver", (char *) ".dtsaver", XrmoptionNoArg, (caddr_t) "on"},
|
|
{(char *) "+dtsaver", (char *) ".dtsaver", XrmoptionNoArg, (caddr_t) "off"},
|
|
#endif
|
|
{(char *) "-xrm", (char *) NULL, XrmoptionResArg, (caddr_t) NULL}
|
|
};
|
|
|
|
#define cmdlineEntries (sizeof cmdlineTable / sizeof cmdlineTable[0])
|
|
|
|
static XrmOptionDescRec earlyCmdlineTable[] =
|
|
{
|
|
{(char *) "-name", (char *) ".name", XrmoptionSepArg, (caddr_t) NULL},
|
|
#ifdef CUSTOMIZATION
|
|
{(char *) "-display", (char *) ".display", XrmoptionSepArg, (caddr_t) NULL},
|
|
#endif
|
|
};
|
|
|
|
#define earlyCmdlineEntries (sizeof earlyCmdlineTable / sizeof earlyCmdlineTable[0])
|
|
|
|
#ifdef USE_MODULES
|
|
static XrmOptionDescRec modulepathTable[] =
|
|
{
|
|
{(char *) "-modulepath", (char *) ".modulepath", XrmoptionSepArg, (caddr_t) NULL},
|
|
};
|
|
|
|
#endif
|
|
|
|
static OptionStruct opDesc[] =
|
|
{
|
|
{(char *) "-help", (char *) "print out this message to standard output"},
|
|
{(char *) "-version", (char *) "print version number (if >= 4.00) to standard output"},
|
|
{(char *) "-resources", (char *) "print default resource file to standard output"},
|
|
{(char *) "-display displayname", (char *) "X server to contact"},
|
|
#ifdef USE_MODULES
|
|
{(char *) "-modulepath", (char *) "directory where screensaver modules are stored"},
|
|
#endif
|
|
{(char *) "-visual visualname", (char *) "X visual to use"},
|
|
{(char *) "-parent", (char *) "parent window id (for inwindow)"},
|
|
{(char *) "-name resourcename", (char *) "class name to use for resources (default is XLock)"},
|
|
{(char *) "-delay usecs", (char *) "microsecond delay between screen updates"},
|
|
{(char *) "-batchcount num", (char *) "number of things per batch (deprecated)"},
|
|
{(char *) "-count num", (char *) "number of things per batch"},
|
|
{(char *) "-cycles num", (char *) "number of cycles per batch"},
|
|
{(char *) "-size num", (char *) "size of a unit in a mode, default is 0"},
|
|
{(char *) "-ncolors num", (char *) "maximum number of colors, default is 64"},
|
|
{(char *) "-saturation value", (char *) "saturation of color ramp"},
|
|
/* For modes with images, xbm, xpm, & ras */
|
|
#ifdef HAVE_XPM
|
|
{(char *) "-bitmap filename", (char *) "bitmap file (sometimes xpm and ras too)"},
|
|
#else
|
|
{(char *) "-bitmap filename", (char *) "bitmap file (sometimes ras too)"},
|
|
#endif
|
|
{(char *) "-erasemode erase-modename", (char *) "Erase mode to use"},
|
|
{(char *) "-erasedelay num", (char *) "Erase delay for clear screen modes"},
|
|
{(char *) "-erasetime num", (char *) "Maximum time (sec) to be used by erase"},
|
|
{(char *) "-/+nolock", (char *) "turn on/off no password required"},
|
|
{(char *) "-/+inwindow", (char *) "turn on/off making xlock run in a window"},
|
|
{(char *) "-/+inroot", (char *) "turn on/off making xlock run in the root window"},
|
|
{(char *) "-/+remote", (char *) "turn on/off remote host access"},
|
|
{(char *) "-/+mono", (char *) "turn on/off monochrome override"},
|
|
{(char *) "-/+allowaccess", (char *) "turn on/off allow new clients to connect"},
|
|
#ifdef USE_VTLOCK
|
|
{(char *) "-vtlock lock-modename", (char *) "turn on vt switching in [" VTLOCKMODE_SWITCH "|" VTLOCKMODE_NOSWITCH "|" VTLOCKMODE_RESTORE "] lock-mode"},
|
|
|
|
#endif
|
|
#ifndef ALWAYS_ALLOW_ROOT
|
|
{(char *) "-/+allowroot", (char *) "turn on/off allow root password to unlock"},
|
|
#else
|
|
{(char *) "-/+allowroot", (char *) "turn on/off allow root password to unlock (off ignored)"},
|
|
#endif
|
|
{(char *) "-/+debug", (char *) "whether to use debug xlock (yes/no)"},
|
|
{(char *) "-/+description", (char *) "whether to show mode description (yes/no)"},
|
|
{(char *) "-/+echokeys", (char *) "turn on/off echo '?' for each password key"},
|
|
{(char *) "-echokey char", (char *) "text character to use for echo key, default is '?'"},
|
|
{(char *) "-/+enablesaver", (char *) "turn on/off enable X server screen saver"},
|
|
{(char *) "-/+resetsaver", (char *) "turn on/off resetting of X server screen saver"},
|
|
{(char *) "-/+grabmouse", (char *) "turn on/off grabbing of mouse and keyboard"},
|
|
{(char *) "-/+grabserver", (char *) "turn on/off grabbing of server"},
|
|
{(char *) "-/+install", (char *) "whether to use private colormap if needed (yes/no)"},
|
|
{(char *) "-/+hide", (char *) "turn on/off user background manipulation"},
|
|
{(char *) "-/+mousemotion", (char *) "turn on/off sensitivity to mouse"},
|
|
{(char *) "-/+sound", (char *) "whether to use sound if configured for it (yes/no)"},
|
|
{(char *) "-/+timeelapsed", (char *) "turn on/off clock"},
|
|
{(char *) "-/+usefirst", (char *) "turn on/off using the first char typed in password"},
|
|
{(char *) "-/+verbose", (char *) "turn on/off verbosity"},
|
|
{(char *) "-nice level", (char *) "nice level for xlock process"},
|
|
{(char *) "-lockdelay seconds", (char *) "number of seconds until lock"},
|
|
{(char *) "-unlockdelay seconds", (char *) "number of seconds until unlock"},
|
|
{(char *) "-timeout seconds", (char *) "number of seconds before password times out"},
|
|
{(char *) "-font fontname", (char *) "font to use for password prompt"},
|
|
{(char *) "-planfont fontname", (char *) "font to use for plan message"},
|
|
#ifdef USE_GL
|
|
{(char *) "-/+showfps", (char *) "turn on/off display of FPS"},
|
|
{(char *) "-/+fpstop", (char *) "turn on/off FPS display on top of window"},
|
|
{(char *) "-fpsfont fontname", (char *) "font to use for FPS display"},
|
|
#endif
|
|
#ifdef USE_MB
|
|
{(char *) "-fontset fontsetname", (char *) "fontset to use for Xmb..."},
|
|
{(char *) "-planfontset fontsetname", (char *) "fontset to use for Xmb..."},
|
|
#endif
|
|
{(char *) "-bg color", (char *) "background color to use for password prompt"},
|
|
{(char *) "-fg color", (char *) "foreground color to use for password prompt"},
|
|
{(char *) "-background color", (char *) "background color to use for password prompt"},
|
|
{(char *) "-foreground color", (char *) "foreground color to use for password prompt"},
|
|
{(char *) "-username string", (char *) "text string to use for Name prompt"},
|
|
{(char *) "-password string", (char *) "text string to use for Password prompt"},
|
|
{(char *) "-info string", (char *) "text string to use for instructions"},
|
|
{(char *) "-validate string", (char *) "text string to use for validating password message"},
|
|
{(char *) "-invalid string", (char *) "text string to use for invalid password message"},
|
|
{(char *) "-invalidCapsLock string", (char *) "text string to use for invalid password message with Caps Lock on"},
|
|
{(char *) "-geometry geom", (char *) "geometry for non-full screen lock"},
|
|
{(char *) "-icongeometry geom", (char *) "geometry for password window (location ignored)"},
|
|
#ifdef FX
|
|
{(char *) "-glgeometry geom", (char *) "geometry for gl modes (location ignored)"},
|
|
#endif
|
|
{(char *) "-/+wireframe", (char *) "turn on/off wireframe"},
|
|
|
|
{(char *) "-/+use3d", (char *) "turn on/off 3d view"},
|
|
{(char *) "-delta3d value", (char *) "space between the center of your 2 eyes for 3d mode"},
|
|
{(char *) "-none3d color", (char *) "color to be used for null in 3d mode"},
|
|
{(char *) "-right3d color", (char *) "color to be used for the right eye in 3d mode"},
|
|
{(char *) "-left3d color", (char *) "color to be used for the left eye in 3d mode"},
|
|
{(char *) "-both3d color", (char *) "color to be used overlap in 3d mode"},
|
|
|
|
/* For modes with text, marquee & nose */
|
|
{(char *) "-program programname", (char *) "program to get messages from, usually fortune"},
|
|
{(char *) "-messagesfile formatted-filename", (char *) "formatted file of fortunes"},
|
|
{(char *) "-messagefile filename", (char *) "text file for mode"},
|
|
{(char *) "-message string", (char *) "text for mode"},
|
|
{(char *) "-messagefont fontname", (char *) "font for a specific mode"},
|
|
#if 0
|
|
/* For automata modes */
|
|
{(char *) "-neighbors num", (char *) "squares 4 or 8, hexagons 6, triangles 3, 9 or 12"},
|
|
/* For eyes, julia, and swarm modes */
|
|
{(char *) "-/+mouse", (char *) "turn on/off the grabbing the mouse"},
|
|
#endif
|
|
|
|
#if defined( USE_XLOCKRC ) || defined( FALLBACK_XLOCKRC )
|
|
{(char *) "-cpasswd crypted-password", (char *) "text string of encrypted password"},
|
|
#endif
|
|
#ifdef USE_AUTO_LOGOUT
|
|
{(char *) "-logoutAuto minutes", (char *) "number of minutes until auto logout (not more than forced auto logout time)"},
|
|
#endif
|
|
#ifdef USE_BUTTON_LOGOUT
|
|
{(char *) "-logoutButton minutes", (char *) "number of minutes until logout button appears (not more than forced button time)"},
|
|
{(char *) "-logoutButtonLabel string", (char *) "text string to use inside logout button"},
|
|
{(char *) "-logoutButtonHelp string", (char *) "text string to use for logout button help"},
|
|
{(char *) "-logoutFailedString string", (char *) "text string to use for failed logout attempts"},
|
|
#endif
|
|
#ifdef USE_DTSAVER
|
|
{(char *) "-/+dtsaver", (char *) "turn on/off CDE Saver Mode"},
|
|
#endif
|
|
#ifdef USE_SOUND
|
|
{(char *) "-locksound string", (char *) "sound to use at locktime"},
|
|
{(char *) "-infosound string", (char *) "sound to use for information"},
|
|
{(char *) "-validsound string", (char *) "sound to use when password is valid"},
|
|
{(char *) "-invalidsound string", (char *) "sound to use when password is invalid"},
|
|
#endif
|
|
{(char *) "-startCmd string", (char *) "command to run at locktime"},
|
|
{(char *) "-endCmd string", (char *) "command to run when unlocking"},
|
|
#ifndef VMS
|
|
{(char *) "-pipepassCmd string", (char *) "command into which to pipe the password when unlocking"},
|
|
#endif
|
|
{(char *) "-logoutCmd string", (char *) "command to run when automatically logging out"},
|
|
{(char *) "-mailCmd string", (char *) "command to run to check for mail"},
|
|
{(char *) "-mailIcon string", (char *) "Icon to display when there is mail"},
|
|
{(char *) "-nomailIcon string", (char *) "Icon to display when there is no mail"},
|
|
#ifdef USE_DPMS
|
|
{(char *) "-dpmsstandby seconds", (char *) "seconds to wait before engaging DPMS standby"},
|
|
{(char *) "-dpmssuspend seconds", (char *) "seconds to wait before engaging DPMS suspend"},
|
|
{(char *) "-dpmsoff seconds", (char *) "seconds to wait before engaging DPMS off"},
|
|
#endif
|
|
};
|
|
|
|
#define opDescEntries (sizeof opDesc / sizeof opDesc[0])
|
|
|
|
int delay;
|
|
int count;
|
|
int cycles;
|
|
int size;
|
|
int ncolors;
|
|
float saturation;
|
|
|
|
/* For modes with images, xbm, xpm, & ras */
|
|
char *bitmap;
|
|
|
|
#ifdef USE_MODULES
|
|
char *modulepath;
|
|
|
|
#endif
|
|
|
|
static char *erasemodename;
|
|
int erasedelay, erasetime;
|
|
Bool nolock;
|
|
Bool inwindow;
|
|
Bool inroot;
|
|
Bool mono;
|
|
|
|
Bool allowaccess;
|
|
|
|
#ifdef ALWAYS_ALLOW_ROOT
|
|
Bool allowroot = 1;
|
|
|
|
#else
|
|
Bool allowroot;
|
|
|
|
#endif
|
|
Bool debug;
|
|
Bool description;
|
|
Bool echokeys;
|
|
char* echokey;
|
|
Bool enablesaver;
|
|
Bool resetsaver;
|
|
Bool fullrandom = False;
|
|
Bool grabmouse;
|
|
Bool grabserver;
|
|
Bool hide;
|
|
Bool install;
|
|
Bool mousemotion;
|
|
Bool sound;
|
|
Bool timeelapsed;
|
|
Bool usefirst;
|
|
Bool verbose;
|
|
Bool remote;
|
|
|
|
#ifdef USE_GL
|
|
Bool fpsTop;
|
|
Bool showfps;
|
|
char *fpsfontname;
|
|
#endif
|
|
static char *visualname;
|
|
int VisualClassWanted;
|
|
|
|
int nicelevel;
|
|
int lockdelay;
|
|
int unlockdelay;
|
|
int timeout;
|
|
|
|
char *fontname;
|
|
char *planfontname;
|
|
|
|
#ifdef USE_DPMS
|
|
int dpmsstandby;
|
|
int dpmssuspend;
|
|
int dpmsoff;
|
|
|
|
#endif
|
|
|
|
#ifdef USE_MB
|
|
char *fontsetname;
|
|
char *planfontsetname;
|
|
|
|
#endif
|
|
char *background;
|
|
char *foreground;
|
|
char *text_user;
|
|
char *text_pass;
|
|
|
|
#ifdef GLOBAL_UNLOCK
|
|
char *text_guser;
|
|
#endif
|
|
|
|
#ifdef SAFEWORD
|
|
char *text_dpass;
|
|
char *text_fpass;
|
|
char *text_chall;
|
|
|
|
#endif
|
|
char *text_info;
|
|
#ifdef HAVE_KRB5
|
|
char *text_krbinfo;
|
|
#endif /* HAVE_KRB5 */
|
|
char *text_valid;
|
|
char *text_invalid;
|
|
char *text_invalidCapsLock;
|
|
char *failed_attempt;
|
|
char *failed_attempts;
|
|
char *geometry;
|
|
char *icongeometry;
|
|
#ifdef FX
|
|
char *glgeometry;
|
|
|
|
#endif
|
|
|
|
Bool wireframe;
|
|
|
|
Bool use3d;
|
|
float delta3d;
|
|
char *none3d;
|
|
char *right3d;
|
|
char *left3d;
|
|
char *both3d;
|
|
|
|
#if defined( USE_XLOCKRC ) || defined( FALLBACK_XLOCKRC )
|
|
char *cpasswd;
|
|
|
|
#endif
|
|
#ifdef USE_AUTO_LOGOUT
|
|
int logoutAuto;
|
|
|
|
#endif
|
|
#ifdef USE_BUTTON_LOGOUT
|
|
int enable_button = 1;
|
|
|
|
int logoutButton;
|
|
char *logoutButtonLabel;
|
|
char *logoutButtonHelp;
|
|
char *logoutFailedString;
|
|
|
|
#endif
|
|
#ifdef USE_DTSAVER
|
|
Bool dtsaver;
|
|
|
|
#endif
|
|
#ifdef USE_SOUND
|
|
char *locksound;
|
|
char *infosound;
|
|
char *validsound;
|
|
char *invalidsound;
|
|
|
|
#endif
|
|
|
|
char *startCmd;
|
|
char *endCmd;
|
|
#ifndef VMS
|
|
char *pipepassCmd;
|
|
#endif
|
|
char *logoutCmd;
|
|
|
|
char *mailCmd;
|
|
char *mailIcon;
|
|
char *nomailIcon;
|
|
|
|
#ifdef USE_VTLOCK
|
|
char *vtlockres;
|
|
Bool vtlock;
|
|
Bool vtlock_set_active;
|
|
Bool vtlock_restore;
|
|
|
|
#endif
|
|
|
|
static argtype genvars[] =
|
|
{
|
|
{(void *) & erasemodename, (char *) "erasemode", (char *) "EraseMode", (char *) "", t_String},
|
|
{(void *) & erasedelay, (char *) "erasedelay", (char *) "EraseDelay", (char *) DEF_ERASEDELAY, t_Int},
|
|
{(void *) & erasetime, (char *) "erasetime", (char *) "EraseTime", (char *) DEF_ERASETIME, t_Int},
|
|
{(void *) & allowaccess, (char *) "allowaccess", (char *) "AllowAccess", (char *) "off", t_Bool},
|
|
#ifndef ALWAYS_ALLOW_ROOT
|
|
{(void *) & allowroot, (char *) "allowroot", (char *) "AllowRoot", (char *) "off", t_Bool},
|
|
#endif
|
|
{(void *) & debug, (char *) "debug", (char *) "Debug", (char *) "off", t_Bool},
|
|
{(void *) & description, (char *) "description", (char *) "Description", (char *) "on", t_Bool},
|
|
{(void *) & echokeys, (char *) "echokeys", (char *) "EchoKeys", (char *) "off", t_Bool},
|
|
{(void *) & echokey, (char *) "echokey", (char *) "EchoKey", (char *) "?", t_String},
|
|
{(void *) & enablesaver, (char *) "enablesaver", (char *) "EnableSaver", (char *) "off", t_Bool},
|
|
{(void *) & resetsaver, (char *) "resetsaver", (char *) "ResetSaver", (char *) "on", t_Bool},
|
|
{(void *) & grabmouse, (char *) "grabmouse", (char *) "GrabMouse", (char *) "on", t_Bool},
|
|
{(void *) & grabserver, (char *) "grabserver", (char *) "GrabServer", (char *) "off", t_Bool},
|
|
{(void *) & hide, (char *) "hide", (char *) "Hide", (char *) "on", t_Bool},
|
|
{(void *) & install, (char *) "install", (char *) "Install", (char *) "on", t_Bool},
|
|
{(void *) & mousemotion, (char *) "mousemotion", (char *) "MouseMotion", (char *) "off", t_Bool},
|
|
{(void *) & mono, (char *) "mono", (char *) "Mono", (char *) "off", t_Bool},
|
|
{(void *) & sound, (char *) "sound", (char *) "Sound", (char *) "off", t_Bool},
|
|
#ifdef USE_GL
|
|
{(void *) & showfps, (char *) "showfps", (char *) "ShowFps", (char *) "off", t_Bool},
|
|
{(void *) & fpsTop, (char *) "fpstop", (char *) "FpsTop", (char *) "on", t_Bool},
|
|
{(void *) & fpsfontname, (char *) "fpsfont", (char *) "FpsFont", (char *) DEF_FONT, t_String},
|
|
#endif
|
|
{(void *) & timeelapsed, (char *) "timeelapsed", (char *) "TimeElapsed", (char *) "off", t_Bool},
|
|
{(void *) & usefirst, (char *) "usefirst", (char *) "UseFirst", (char *) "on", t_Bool},
|
|
{(void *) & verbose, (char *) "verbose", (char *) "Verbose", (char *) "off", t_Bool},
|
|
{(void *) & visualname, (char *) "visual", (char *) "Visual", (char *) "", t_String},
|
|
{(void *) & nicelevel, (char *) "nice", (char *) "Nice", (char *) DEF_NICE, t_Int},
|
|
{(void *) & lockdelay, (char *) "lockdelay", (char *) "LockDelay", (char *) DEF_LOCKDELAY, t_Int},
|
|
{(void *) & unlockdelay, (char *) "unlockdelay", (char *) "UnLockDelay", (char *) DEF_UNLOCKDELAY, t_Int},
|
|
{(void *) & timeout, (char *) "timeout", (char *) "Timeout", (char *) DEF_TIMEOUT, t_Int},
|
|
{(void *) & fontname, (char *) "font", (char *) "Font", (char *) DEF_FONT, t_String},
|
|
{(void *) & planfontname, (char *) "planfont", (char *) "PlanFont", (char *) DEF_PLANFONT, t_String},
|
|
#ifdef USE_MB
|
|
{(void *) & fontsetname, (char *) "fontset", (char *) "FontSet", (char *) DEF_FONTSET, t_String},
|
|
{(void *) & planfontsetname, (char *) "planfontset", (char *) "PlanFontSet", (char *) DEF_PLANFONTSET, t_String},
|
|
#endif
|
|
{(void *) & background, (char *) "background", (char *) "Background", (char *) DEF_BG, t_String},
|
|
{(void *) & foreground, (char *) "foreground", (char *) "Foreground", (char *) DEF_FG, t_String},
|
|
{(void *) & text_user, (char *) "username", (char *) "Username", (char *) DEF_NAME, t_String},
|
|
{(void *) & text_pass, (char *) "password", (char *) "Password", (char *) DEF_PASS, t_String},
|
|
#ifdef GLOBAL_UNLOCK
|
|
{(void *) & text_guser, (char *) "globaluser", (char *) "GlobalUser", (char *) DEF_GUSER, t_String},
|
|
#endif
|
|
|
|
#ifdef SAFEWORD
|
|
{(void *) & text_dpass, (char *) "dynpass", (char *) "Dynpass", (char *) DEF_DPASS, t_String},
|
|
{(void *) & text_fpass, (char *) "fixpass", (char *) "Fixpass", (char *) DEF_FPASS, t_String},
|
|
{(void *) & text_chall, (char *) "challenge", (char *) "Challenge", (char *) DEF_CHALL, t_String},
|
|
#endif
|
|
{(void *) & text_info, (char *) "info", (char *) "Info", (char *) DEF_INFO, t_String},
|
|
#ifdef HAVE_KRB5
|
|
{(void *) & text_krbinfo, (char *) "kerberosinfo", (char *) "KerberosInfo", (char *) DEF_KRBINFO, t_String},
|
|
#endif /* HAVE_KRB5 */
|
|
{(void *) & text_valid, (char *) "validate", (char *) "Validate", (char *) DEF_VALID, t_String},
|
|
{(void *) & text_invalid, (char *) "invalid", (char *) "Invalid", (char *) DEF_INVALID, t_String},
|
|
{(void *) & text_invalidCapsLock, (char *) "invalidCapsLock", (char *) "InvalidCapsLock", (char *) DEF_INVALIDCAPSLOCK, t_String},
|
|
{(void *) & failed_attempt, (char *) "attempt", (char *) "Attempt", (char *) DEF_COUNT_FAILED, t_String},
|
|
{(void *) & failed_attempts, (char *) "attempts", (char *) "Attempts", (char *) DEF_COUNTS_FAILED, t_String},
|
|
{(void *) & geometry, (char *) "geometry", (char *) "Geometry", (char *) DEF_GEOMETRY, t_String},
|
|
{(void *) & icongeometry, (char *) "icongeometry", (char *) "IconGeometry", (char *) DEF_ICONGEOMETRY, t_String},
|
|
#ifdef FX
|
|
{(void *) & glgeometry, (char *) "glgeometry", (char *) "GLGeometry", (char *) DEF_GLGEOMETRY, t_String},
|
|
#endif
|
|
{(void *) & wireframe, (char *) "wireframe", (char *) "WireFrame", (char *) "off", t_Bool},
|
|
|
|
{(void *) & use3d, (char *) "use3d", (char *) "Use3D", (char *) "off", t_Bool},
|
|
{(void *) & delta3d, (char *) "delta3d", (char *) "Delta3D", (char *) DEF_DELTA3D, t_Float},
|
|
{(void *) & none3d, (char *) "none3d", (char *) "None3D", (char *) DEF_NONE3D, t_String},
|
|
{(void *) & right3d, (char *) "right3d", (char *) "Right3D", (char *) DEF_RIGHT3D, t_String},
|
|
{(void *) & left3d, (char *) "left3d", (char *) "Left3D", (char *) DEF_LEFT3D, t_String},
|
|
{(void *) & both3d, (char *) "both3d", (char *) "Both3D", (char *) DEF_BOTH3D, t_String},
|
|
|
|
{(void *) & program, (char *) "program", (char *) "Program", (char *) DEF_PROGRAM, t_String},
|
|
{(void *) & messagesfile, (char *) "messagesfile", (char *) "Messagesfile", (char *) DEF_MESSAGESFILE, t_String},
|
|
{(void *) & messagefile, (char *) "messagefile", (char *) "Messagefile", (char *) DEF_MESSAGEFILE, t_String},
|
|
{(void *) & message, (char *) "message", (char *) "Message", (char *) DEF_MESSAGE, t_String},
|
|
{(void *) & messagefontname, (char *) "messagefont", (char *) "MessageFont", (char *) DEF_MESSAGEFONT, t_String},
|
|
#if 0
|
|
{(void *) & neighbors, (char *) "neighbors", (char *) "Neighbors", (char *) DEF_NEIGHBORS, t_Int},
|
|
{(void *) & mouse, (char *) "mouse", (char *) "Mouse", (char *) DEF_MOUSE, t_Bool},
|
|
#endif
|
|
|
|
#if defined( USE_XLOCKRC ) || defined( FALLBACK_XLOCKRC )
|
|
{(void *) & cpasswd, (char *) "cpasswd", (char *) "cpasswd", (char *) "", t_String},
|
|
#endif
|
|
#ifdef USE_AUTO_LOGOUT
|
|
{(void *) & logoutAuto, (char *) "logoutAuto", (char *) "logoutAuto", (char *) DEF_AUTO_LOGOUT, t_Int},
|
|
#endif
|
|
#ifdef USE_BUTTON_LOGOUT
|
|
{(void *) & logoutButton, (char *) "logoutButton", (char *) "LogoutButton", (char *) DEF_BUTTON_LOGOUT, t_Int},
|
|
{(void *) & logoutButtonLabel, (char *) "logoutButtonLabel",
|
|
"LogoutButtonLabel", (char *) DEF_BTN_LABEL, t_String},
|
|
{(void *) & logoutButtonHelp, (char *) "logoutButtonHelp",
|
|
"LogoutButtonHelp", (char *) DEF_BTN_HELP, t_String},
|
|
{(void *) & logoutFailedString, (char *) "logoutFailedString",
|
|
"LogoutFailedString", (char *) DEF_FAIL, t_String},
|
|
#endif
|
|
#ifdef USE_SOUND
|
|
{(void *) & locksound, (char *) "locksound", (char *) "LockSound", (char *) DEF_LOCKSOUND, t_String},
|
|
{(void *) & infosound, (char *) "infosound", (char *) "InfoSound", (char *) DEF_INFOSOUND, t_String},
|
|
{(void *) & validsound, (char *) "validsound", (char *) "ValidSound", (char *) DEF_VALIDSOUND, t_String},
|
|
{(void *) & invalidsound, (char *) "invalidsound", (char *) "InvalidSound", (char *) DEF_INVALIDSOUND, t_String},
|
|
#endif
|
|
{(void *) & startCmd, (char *) "startCmd", (char *) "StartCmd", (char *) "", t_String},
|
|
{(void *) & endCmd, (char *) "endCmd", (char *) "EndCmd", (char *) "", t_String},
|
|
#ifndef VMS
|
|
{(void *) & pipepassCmd, (char *) "pipepassCmd", (char *) "PipePassCmd", (char *) "", t_String},
|
|
#endif
|
|
{(void *) & logoutCmd, (char *) "logoutCmd", (char *) "LogoutCmd", (char *) "", t_String},
|
|
#ifdef USE_DPMS
|
|
{(void *) & dpmsstandby, (char *) "dpmsstandby", (char *) "DPMSStandby", (char *) DEF_DPMSSTANDBY, t_Int},
|
|
{(void *) & dpmssuspend, (char *) "dpmssuspend", (char *) "DPMSSuspend", (char *) DEF_DPMSSUSPEND, t_Int},
|
|
{(void *) & dpmsoff, (char *) "dpmsoff", (char *) "DPMSOff", (char *) DEF_DPMSOFF, t_Int},
|
|
#endif
|
|
|
|
{(void *) & mailCmd, (char *) "mailCmd", (char *) "MailCmd", (char *) DEF_MAILAPP, t_String},
|
|
{(void *) & mailIcon, (char *) "mailIcon", (char *) "MailIcon", (char *) DEF_MAILAPP, t_String},
|
|
{(void *) & nomailIcon, (char *) "nomailIcon", (char *) "NomailIcon", (char *) DEF_MAILAPP, t_String},
|
|
#ifdef USE_VTLOCK
|
|
{(void *) & vtlockres, (char *) "vtlock", (char *) "VtLock", DEF_VTLOCK, t_String},
|
|
#endif
|
|
#if 0
|
|
/* These resources require special handling. They must be examined
|
|
* before the display is opened. They are evaluated by individual
|
|
* calls to GetResource(), so they should not be evaluated again here.
|
|
* For example, X-terminals need this special treatment.
|
|
*/
|
|
{(void *) & nolock, (char *) "nolock", (char *) "NoLock", (char *) "off", t_Bool},
|
|
{(void *) & inwindow, (char *) "inwindow", (char *) "InWindow", (char *) "off", t_Bool},
|
|
{(void *) & inroot, (char *) "inroot", (char *) "InRoot", (char *) "off", t_Bool},
|
|
{(void *) & remote, (char *) "remote", (char *) "Remote", (char *) "off", t_Bool},
|
|
#endif
|
|
};
|
|
|
|
#define NGENARGS (sizeof genvars / sizeof genvars[0])
|
|
|
|
static argtype modevars[] =
|
|
{
|
|
{(void *) & delay, (char *) "delay", (char *) "Delay", (char *) DEF_DELAY, t_Int},
|
|
{(void *) & count, (char *) "count", (char *) "Count", (char *) DEF_COUNT, t_Int},
|
|
{(void *) & cycles, (char *) "cycles", (char *) "Cycles", (char *) DEF_CYCLES, t_Int},
|
|
{(void *) & size, (char *) "size", (char *) "Size", (char *) DEF_SIZE, t_Int},
|
|
{(void *) & ncolors, (char *) "ncolors", (char *) "NColors", (char *) DEF_NCOLORS, t_Int},
|
|
{(void *) & saturation, (char *) "saturation", (char *) "Saturation", (char *) DEF_SATURATION, t_Float},
|
|
{(void *) & bitmap, (char *) "bitmap", (char *) "Bitmap", (char *) DEF_BITMAP, t_String}
|
|
};
|
|
|
|
#define NMODEARGS (sizeof modevars / sizeof modevars[0])
|
|
|
|
static int modevaroffs[NMODEARGS] =
|
|
{
|
|
offsetof(LockStruct, def_delay),
|
|
offsetof(LockStruct, def_count),
|
|
offsetof(LockStruct, def_cycles),
|
|
offsetof(LockStruct, def_size),
|
|
offsetof(LockStruct, def_ncolors),
|
|
offsetof(LockStruct, def_saturation),
|
|
offsetof(LockStruct, def_bitmap)
|
|
};
|
|
|
|
#ifdef VMS
|
|
static char *
|
|
stripname(char *string)
|
|
{
|
|
char *characters;
|
|
|
|
while (string && *string++ != ']');
|
|
characters = string;
|
|
while (characters)
|
|
if (*characters == '.') {
|
|
*characters = '\0';
|
|
return string;
|
|
} else
|
|
characters++;
|
|
return string;
|
|
}
|
|
#endif
|
|
|
|
static void
|
|
Syntax(const char *badOption)
|
|
{
|
|
int col, len, i;
|
|
|
|
(void) fprintf(stderr, "%s: bad command line option \"%s\"\n\n",
|
|
ProgramName, badOption);
|
|
|
|
(void) fprintf(stderr, "usage: %s", ProgramName);
|
|
col = 8 + strlen(ProgramName);
|
|
for (i = 0; i < (int) opDescEntries; i++) {
|
|
len = 3 + strlen(opDesc[i].opt); /* space [ string ] */
|
|
if (col + len > 79) {
|
|
(void) fprintf(stderr, "\n "); /* 3 spaces */
|
|
col = 3;
|
|
}
|
|
(void) fprintf(stderr, " [%s]", opDesc[i].opt);
|
|
col += len;
|
|
}
|
|
|
|
len = 8 + strlen(LockProcs[0].cmdline_arg);
|
|
if (col + len > 79) {
|
|
(void) fprintf(stderr, "\n "); /* 3 spaces */
|
|
col = 3;
|
|
}
|
|
(void) fprintf(stderr, " [-mode %s", LockProcs[0].cmdline_arg);
|
|
col += len;
|
|
for (i = 1; i < numprocs; i++) {
|
|
len = 3 + strlen(LockProcs[i].cmdline_arg);
|
|
if (col + len > 79) {
|
|
(void) fprintf(stderr, "\n "); /* 3 spaces */
|
|
col = 3;
|
|
}
|
|
(void) fprintf(stderr, " | %s", LockProcs[i].cmdline_arg);
|
|
col += len;
|
|
}
|
|
(void) fprintf(stderr, "]\n");
|
|
|
|
(void) fprintf(stderr, "\nType %s -help for a full description.\n\n",
|
|
ProgramName);
|
|
exit(1);
|
|
}
|
|
|
|
static void
|
|
Help(void)
|
|
{
|
|
int i;
|
|
|
|
(void) printf("usage:\n %s [-options ...]\n\n", ProgramName);
|
|
(void) printf("where options include:\n");
|
|
for (i = 0; i < (int) opDescEntries; i++) {
|
|
(void) printf(" %-28s %s\n", opDesc[i].opt, opDesc[i].desc);
|
|
}
|
|
|
|
(void) printf(" %-28s %s\n", "-mode mode", "animation mode");
|
|
(void) printf(" where mode is one of:\n");
|
|
for (i = 0; i < numprocs; i++) {
|
|
int j;
|
|
|
|
(void) printf(" %-23s %s\n",
|
|
LockProcs[i].cmdline_arg, LockProcs[i].desc);
|
|
for (j = 0; j < LockProcs[i].msopt->numvarsdesc; j++)
|
|
(void) printf(" %-23s %s\n",
|
|
LockProcs[i].msopt->desc[j].opt, LockProcs[i].msopt->desc[j].desc);
|
|
}
|
|
(void) printf("\n");
|
|
|
|
exit(0);
|
|
}
|
|
|
|
static void
|
|
Version(void)
|
|
{
|
|
(void) printf("XLock version %s\n", VERSION);
|
|
exit(0);
|
|
}
|
|
|
|
static void
|
|
checkSpecialArgs(int argc, char **argv)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
if (!strcmp(argv[i], "-help"))
|
|
Help();
|
|
if (!strcmp(argv[i], "-version"))
|
|
Version();
|
|
#ifdef CHECK_OLD_ARGS
|
|
{
|
|
static char *deprecated_args[] =
|
|
{(char *) "-v", (char *) "-imagefile", (char *) "-mfont",
|
|
(char *) "-rule3d", (char *) "-life3dfile",
|
|
(char *) "-mouse", (char *) "-shift", (char *) "-tshift"};
|
|
static char *current_args[] =
|
|
{(char *) "-verbose", (char *) "-bitmap", (char *) "-messagefont",
|
|
(char *) "-rule", (char *) "-lifefile",
|
|
(char *) "-trackmouse", (char *) "-cycle", (char *) "-cycle"};
|
|
int j;
|
|
|
|
for (j = 0; j < (int) ((sizeof current_args) / sizeof (*current_args)); j++)
|
|
if (!strcmp(argv[i], deprecated_args[j])) {
|
|
(void) printf("%s deprecated, use %s\n",
|
|
deprecated_args[j], current_args[j]);
|
|
exit(0);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
static void
|
|
DumpResources(void)
|
|
{
|
|
int i, j;
|
|
|
|
(void) printf("%s.mode: %s\n", classname, DEF_MODE);
|
|
|
|
for (i = 0; i < (int) NGENARGS; i++)
|
|
(void) printf("%s.%s: %s\n",
|
|
classname, genvars[i].name, genvars[i].def);
|
|
|
|
for (i = 0; i < numprocs; i++) {
|
|
(void) printf("%s.%s.%s: %d\n", classname, LockProcs[i].cmdline_arg,
|
|
"delay", LockProcs[i].def_delay);
|
|
(void) printf("%s.%s.%s: %d\n", classname, LockProcs[i].cmdline_arg,
|
|
"count", LockProcs[i].def_count);
|
|
(void) printf("%s.%s.%s: %d\n", classname, LockProcs[i].cmdline_arg,
|
|
"cycles", LockProcs[i].def_cycles);
|
|
(void) printf("%s.%s.%s: %d\n", classname, LockProcs[i].cmdline_arg,
|
|
"size", LockProcs[i].def_size);
|
|
(void) printf("%s.%s.%s: %d\n", classname, LockProcs[i].cmdline_arg,
|
|
"ncolors", LockProcs[i].def_ncolors);
|
|
(void) printf("%s.%s.%s: %g\n", classname, LockProcs[i].cmdline_arg,
|
|
"saturation", LockProcs[i].def_saturation);
|
|
(void) printf("%s.%s.%s: %s\n", classname, LockProcs[i].cmdline_arg,
|
|
"bitmap",
|
|
(LockProcs[i].def_bitmap) ? LockProcs[i].def_bitmap : "");
|
|
for (j = 0; j < LockProcs[i].msopt->numvarsdesc; j++)
|
|
(void) printf("%s.%s.%s: %s\n", classname, LockProcs[i].cmdline_arg,
|
|
LockProcs[i].msopt->vars[j].name,
|
|
LockProcs[i].msopt->vars[j].def);
|
|
}
|
|
exit(0);
|
|
}
|
|
|
|
static void
|
|
LowerString(char *s)
|
|
{
|
|
|
|
while (*s) {
|
|
if (isupper((int) *s))
|
|
*s += ('a' - 'A');
|
|
s++;
|
|
}
|
|
}
|
|
|
|
static void
|
|
GetResource(XrmDatabase database,
|
|
const char *parentName, const char *parentClassName,
|
|
const char *name, const char *className, int valueType, char *def,
|
|
void* valuep)
|
|
{
|
|
char *type;
|
|
XrmValue value;
|
|
char *string;
|
|
char *buffer;
|
|
char *fullName;
|
|
char *fullClassName;
|
|
int len, temp;
|
|
|
|
fullName = (char *) malloc(strlen(parentName) + strlen(name) + 2);
|
|
fullClassName = (char *) malloc(strlen(parentClassName) +
|
|
strlen(className) + 2);
|
|
|
|
(void) sprintf(fullName, "%s.%s", parentName, name);
|
|
(void) sprintf(fullClassName, "%s.%s", parentClassName, className);
|
|
temp = XrmGetResource(database, fullName, fullClassName, &type, &value);
|
|
free(fullName);
|
|
free(fullClassName);
|
|
|
|
if (temp) {
|
|
string = value.addr;
|
|
len = value.size - 1;
|
|
} else {
|
|
string = def;
|
|
if (!string || !*string) {
|
|
*((caddr_t *) valuep) = NULL;
|
|
return;
|
|
}
|
|
len = strlen(string);
|
|
}
|
|
|
|
buffer = (char *) malloc(strlen(string) + 1);
|
|
(void) strcpy(buffer, string);
|
|
|
|
switch (valueType) {
|
|
case t_String:
|
|
{
|
|
/*-
|
|
* PURIFY 4.2 on Solaris 2 and on SunOS4 reports a memory leak on the following
|
|
* line. It leaks as many bytes as there are characters in the string + 1. */
|
|
char *s = (char *) malloc(len + 1);
|
|
|
|
if (s == (char *) NULL) {
|
|
char *buf = (char *) malloc(strlen(ProgramName) + 80);
|
|
|
|
(void) sprintf(buf,
|
|
"%s: GetResource - could not allocate memory", ProgramName);
|
|
error(buf);
|
|
free(buf); /* Should never get here */
|
|
}
|
|
(void) strncpy(s, string, len);
|
|
s[len] = '\0';
|
|
*((char **) valuep) = s;
|
|
}
|
|
break;
|
|
case t_Float:
|
|
*((float *) valuep) = (float) atof(buffer);
|
|
break;
|
|
case t_Int:
|
|
*((int *) valuep) = atoi(buffer);
|
|
break;
|
|
case t_Bool:
|
|
LowerString(buffer);
|
|
*((int *) valuep) = (!strcmp(buffer, "true") ||
|
|
!strcmp(buffer, "on") ||
|
|
!strcmp(buffer, "enabled") ||
|
|
!strcmp(buffer, "yes")) ? True : False;
|
|
break;
|
|
}
|
|
free(buffer);
|
|
}
|
|
|
|
static XrmDatabase
|
|
parsefilepath(char *xfilesearchpath, const char *typeName,
|
|
char *className, char *customName)
|
|
{
|
|
XrmDatabase database = (XrmDatabase) NULL;
|
|
char *appdefaults;
|
|
char *src;
|
|
char *dst;
|
|
int i, maxlen;
|
|
|
|
if (!customName)
|
|
customName = (char *) "";
|
|
i = maxlen = 0;
|
|
for (src = xfilesearchpath; *src != '\0'; src++) {
|
|
if (*src == '%') {
|
|
src++;
|
|
switch (*src) {
|
|
case '%':
|
|
case ':':
|
|
i++;
|
|
break;
|
|
case 'T':
|
|
i += strlen(typeName);
|
|
break;
|
|
case 'N':
|
|
i += strlen(className);
|
|
break;
|
|
case 'C':
|
|
i += strlen(customName);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
#ifdef VMS
|
|
} else if (*src == '#') { /* Colons required in VMS use # */
|
|
#else
|
|
} else if (*src == ':') {
|
|
#endif
|
|
if (i > maxlen)
|
|
maxlen = i;
|
|
i = 0;
|
|
} else
|
|
i++;
|
|
}
|
|
if (i > maxlen)
|
|
maxlen = i;
|
|
|
|
/* appdefaults will be at most this long */
|
|
appdefaults = (char *) malloc(maxlen + 1);
|
|
|
|
src = xfilesearchpath;
|
|
dst = appdefaults;
|
|
*dst = '\0';
|
|
for (;;) {
|
|
if (*src == '%') {
|
|
src++;
|
|
switch (*src) {
|
|
case '%':
|
|
case ':':
|
|
*dst++ = *src++;
|
|
*dst = '\0';
|
|
break;
|
|
case 'T':
|
|
(void) strcat(dst, typeName);
|
|
src++;
|
|
dst += strlen(typeName);
|
|
break;
|
|
case 'N':
|
|
(void) strcat(dst, className);
|
|
src++;
|
|
dst += strlen(className);
|
|
break;
|
|
case 'C':
|
|
(void) strcat(dst, customName);
|
|
src++;
|
|
dst += strlen(customName);
|
|
break;
|
|
case 'S':
|
|
src++;
|
|
break;
|
|
default:
|
|
src++;
|
|
break;
|
|
}
|
|
#ifdef VMS
|
|
} else if (*src == '#') { /* Colons required in VMS use # */
|
|
#else
|
|
} else if (*src == ':') {
|
|
#endif
|
|
database = XrmGetFileDatabase(appdefaults);
|
|
if (database == NULL) {
|
|
dst = appdefaults;
|
|
src++;
|
|
} else
|
|
break;
|
|
} else if (*src == '\0') {
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 reports this also when using X11R5, but not
|
|
* with OpenWindow 3.0 (X11R4 based). */
|
|
database = XrmGetFileDatabase(appdefaults);
|
|
break;
|
|
} else {
|
|
*dst++ = *src++;
|
|
*dst = '\0';
|
|
}
|
|
}
|
|
free(appdefaults);
|
|
return database;
|
|
}
|
|
|
|
#ifdef VMS
|
|
/*-
|
|
* FUNCTIONAL DESCRIPTION:
|
|
* int get_info (chan, item, ret_str, ret_len)
|
|
* Fetch a single characteristics from the pseudo-workstation
|
|
* device and return the information.
|
|
* (Taken and modified from the v5.4 fiche. PPL/SG 2/10/91
|
|
* FORMAL PARAMETERS:
|
|
* chan: the device channel
|
|
* item: the characteristic to show
|
|
* ret_str: str pointer to information
|
|
* ret_len: length of above string
|
|
* IMPLICIT INPUTS:
|
|
* none
|
|
* IMPLICIT OUTPUTS:
|
|
* none
|
|
* COMPLETION CODES:
|
|
* errors returned by SYS$QIO
|
|
* SIDE EFFECTS:
|
|
* none
|
|
* Hacked from Steve Garrett's xservername (as posted to INFO-VAX)
|
|
*/
|
|
|
|
int
|
|
get_info(unsigned long chan, unsigned long item,
|
|
char *ret_str, unsigned long *ret_len)
|
|
{
|
|
unsigned long iosb[2];
|
|
int status;
|
|
char itembuf[BUFSIZE];
|
|
struct dsc$descriptor itemval;
|
|
|
|
itemval.dsc$w_length = BUFSIZE;
|
|
itemval.dsc$b_dtype = 0;
|
|
itemval.dsc$b_class = 0;
|
|
itemval.dsc$a_pointer = &itembuf[0];
|
|
|
|
status = sys$qiow(0, chan, IO$_SENSEMODE | IO$M_WS_DISPLAY, &iosb, 0, 0,
|
|
itemval.dsc$a_pointer,
|
|
itemval.dsc$w_length,
|
|
item, 0, 0, 0);
|
|
if (status != SS$_NORMAL)
|
|
return (status);
|
|
if (iosb[0] != SS$_NORMAL)
|
|
return (iosb[0]);
|
|
|
|
itemval.dsc$w_length = iosb[1];
|
|
*ret_len = iosb[1];
|
|
itembuf[*ret_len] = 0;
|
|
(void) strcpy(ret_str, &itembuf[0]);
|
|
|
|
return (status);
|
|
}
|
|
|
|
|
|
/* routine that will return descripter of asciz string */
|
|
|
|
static int
|
|
descr(char *name)
|
|
{
|
|
static $dscp(d1, 0, 0);
|
|
static $dscp(d2, 0, 0);
|
|
static $dscp(d3, 0, 0);
|
|
static $dscp(d4, 0, 0);
|
|
static $dscp(d5, 0, 0);
|
|
static $dscp(d6, 0, 0);
|
|
static dsc *tbl[] =
|
|
{&d1, &d2, &d3, &d4, &d5, &d6};
|
|
static int didx = 0;
|
|
|
|
if (didx == 6)
|
|
didx = 0;
|
|
|
|
tbl[didx]->len = strlen(name);
|
|
tbl[didx]->ptr = name;
|
|
|
|
return (int) tbl[didx++];
|
|
}
|
|
|
|
#endif
|
|
|
|
static void
|
|
openDisplay(Display ** displayp)
|
|
{
|
|
char *buf;
|
|
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* the following line. */
|
|
if (!(*displayp = XOpenDisplay((displayname) ? displayname : ""))) {
|
|
buf = (char *) malloc(strlen(ProgramName) +
|
|
((displayname) ? strlen(displayname) : 0) + 80);
|
|
(void) sprintf(buf,
|
|
"%s: unable to open display %s.\n", ProgramName,
|
|
((displayname) ? displayname : ""));
|
|
error(buf);
|
|
free(buf); /* Should never get here */
|
|
}
|
|
displayname = DisplayString(*displayp);
|
|
}
|
|
|
|
#ifdef SOLARIS2
|
|
extern struct hostent *gethostbyname(const char *);
|
|
#else
|
|
#if defined(__cplusplus) || defined(c_plusplus) /* !__bsdi__ */
|
|
/* #include <netdb.h> */
|
|
#if !HAVE_GETHOSTNAME
|
|
#if 0
|
|
extern int gethostname(char *, size_t);
|
|
extern struct hostent *gethostbyname(const char *);
|
|
|
|
#endif
|
|
#else
|
|
#if 1
|
|
extern int gethostname(char *, size_t);
|
|
#else
|
|
#define gethostname(name,namelen) sysinfo(SI_HOSTNAME,name,namelen)
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
static void
|
|
checkDisplay(void)
|
|
{
|
|
#ifndef WIN32
|
|
char *buf;
|
|
struct hostent *host;
|
|
|
|
/*
|
|
* only restrict access to other displays if we are locking and if the
|
|
* Remote resource is not set.
|
|
*/
|
|
if (nolock || inwindow || inroot)
|
|
remote = True;
|
|
|
|
if (gethostname(hostname, MAXHOSTNAMELEN)) {
|
|
#ifdef VMS
|
|
int val;
|
|
struct dsc$descriptor itemval;
|
|
|
|
itemval.dsc$w_length = MAXHOSTNAMELEN;
|
|
itemval.dsc$b_dtype = 0;
|
|
itemval.dsc$b_class = 0;
|
|
itemval.dsc$a_pointer = hostname;
|
|
|
|
val = SYI$_NODENAME;
|
|
|
|
if ( LIB$GETSYI( &val , 0 , &itemval , 0 , 0 , 0 ) != SS$_NORMAL )
|
|
{
|
|
#endif
|
|
|
|
buf = (char *) malloc(strlen(ProgramName) + 80);
|
|
(void) sprintf(buf,
|
|
"%s: Can not get local hostname.\n", ProgramName);
|
|
error(buf);
|
|
free(buf); /* Should never get here */
|
|
}
|
|
#ifdef VMS
|
|
}
|
|
if (!remote && ((displayname[0] == '_') |
|
|
((displayname[0] == 'W') &
|
|
(displayname[1] == 'S') &
|
|
(displayname[2] == 'A')))) { /* this implies a v5.4 system. The return
|
|
value is a device name, which must be
|
|
interrogated to find the real information */
|
|
unsigned long chan;
|
|
unsigned int status;
|
|
unsigned long len;
|
|
char server_transport[100];
|
|
|
|
status = sys$assign(descr(displayname), &chan, 0, 0);
|
|
if (!(status & 1))
|
|
displayname = " ";
|
|
else {
|
|
status = get_info(chan, DECW$C_WS_DSP_TRANSPORT,
|
|
server_transport, &len);
|
|
if (!(status & 1))
|
|
exit(status);
|
|
|
|
if (strcmp(server_transport, "LOCAL")) {
|
|
(void) strcat(displayname, "'s display via ");
|
|
(void) strncat(displayname, server_transport, len);
|
|
buf = (char *) malloc(strlen(ProgramName) + strlen(displayname) + 80);
|
|
(void) sprintf(buf,
|
|
"%s: can not lock %s\n", ProgramName, displayname);
|
|
error(buf);
|
|
free(buf); /* Should never get here */
|
|
}
|
|
}
|
|
} else {
|
|
#endif /* VMS */
|
|
|
|
if (displayname != NULL) {
|
|
char *colon = (char *) strchr(displayname, ':');
|
|
int n = colon - displayname;
|
|
|
|
if (colon == NULL) {
|
|
buf = (char *) malloc(strlen(ProgramName) +
|
|
strlen(displayname) + 80);
|
|
(void) sprintf(buf,
|
|
"%s: Malformed -display argument, \"%s\"\n",
|
|
ProgramName, displayname);
|
|
error(buf);
|
|
free(buf); /* Should never get here */
|
|
}
|
|
if (!remote && n
|
|
&& strncmp(displayname, "unix", n)
|
|
&& strncmp(displayname, "localhost", n)) {
|
|
int badhost = 1;
|
|
char **hp;
|
|
|
|
if (!(host = (struct hostent *) gethostbyname(hostname))) {
|
|
if (debug || verbose) {
|
|
(void) fprintf(stderr, "%s: Can not get hostbyname.\n",
|
|
ProgramName);
|
|
(void) fprintf(stderr,
|
|
"Contact your administrator to fix /etc/hosts.\n");
|
|
}
|
|
} else if (strncmp(displayname, host->h_name, n)) {
|
|
for (hp = host->h_aliases; *hp; hp++) {
|
|
if (!strncmp(displayname, *hp, n)) {
|
|
badhost = 0;
|
|
break;
|
|
}
|
|
}
|
|
if (badhost) {
|
|
*colon = (char) 0;
|
|
buf = (char *) malloc(strlen(ProgramName) +
|
|
strlen(displayname) + 80);
|
|
(void) sprintf(buf,
|
|
"%s: can not lock %s's display\n",
|
|
ProgramName, displayname);
|
|
error(buf);
|
|
free(buf); /* Should never get here */
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#ifdef VMS
|
|
}
|
|
#endif
|
|
#endif /* !WIN32 */
|
|
}
|
|
|
|
static void
|
|
printvar(char *className, argtype var)
|
|
{
|
|
switch (var.type) {
|
|
case t_String:
|
|
(void) fprintf(stderr, "%s.%s: %s\n",
|
|
className, var.name,
|
|
(*((char **) var.var)) ? *((char **) var.var) : "");
|
|
break;
|
|
case t_Float:
|
|
(void) fprintf(stderr, "%s.%s: %g\n",
|
|
className, var.name, *((float *) var.var));
|
|
break;
|
|
case t_Int:
|
|
(void) fprintf(stderr, "%s.%s: %d\n",
|
|
className, var.name, *((int *) var.var));
|
|
break;
|
|
case t_Bool:
|
|
(void) fprintf(stderr, "%s.%s: %s\n",
|
|
className, var.name, *((int *) var.var) ? "True" : "False");
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
getServerResources(Display * display, char *homeenv,
|
|
#ifdef CUSTOMIZATION
|
|
char **custom,
|
|
#endif
|
|
XrmDatabase * RDB, XrmDatabase * serverDB)
|
|
{
|
|
char *serverString;
|
|
|
|
serverString = XResourceManagerString(display);
|
|
if (serverString) {
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 reports this also when using X11R5, but not
|
|
* with OpenWindow 3.0 (X11R4 based). */
|
|
*serverDB = XrmGetStringDatabase(serverString);
|
|
#ifndef CUSTOMIZATION
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 does not report this error. */
|
|
(void) XrmMergeDatabases(*serverDB, RDB);
|
|
#endif
|
|
} else {
|
|
char *buf = (char *) malloc(strlen(homeenv) + 12);
|
|
|
|
(void) sprintf(buf, "%s/.Xdefaults", homeenv);
|
|
#ifdef CUSTOMIZATION
|
|
*serverDB = XrmGetFileDatabase(buf);
|
|
#else
|
|
(void) XrmMergeDatabases(XrmGetFileDatabase(buf), RDB);
|
|
#endif
|
|
free(buf);
|
|
}
|
|
#ifdef CUSTOMIZATION
|
|
if (*serverDB)
|
|
GetResource(*serverDB, ProgramName, classname, "customization",
|
|
"Customization", t_String, "", custom);
|
|
else
|
|
*custom = "";
|
|
#endif
|
|
}
|
|
|
|
static void
|
|
getAppResources(char *homeenv, char **custom, XrmDatabase * RDB,
|
|
#ifdef CUSTOMIZATION
|
|
XrmDatabase * serverDB,
|
|
#endif
|
|
int *argc, char **argv)
|
|
{
|
|
char *env;
|
|
char *userpath;
|
|
char *userfile = (char *) NULL;
|
|
XrmDatabase cmdlineDB = (XrmDatabase) NULL;
|
|
XrmDatabase userDB = (XrmDatabase) NULL;
|
|
XrmDatabase applicationDB = (XrmDatabase) NULL;
|
|
|
|
env = getenv("XFILESEARCHPATH");
|
|
applicationDB = parsefilepath(
|
|
((env == NULL) ? (char *) DEF_FILESEARCHPATH : env),
|
|
"app-defaults", classname, *custom);
|
|
|
|
XrmParseCommand(&cmdlineDB, cmdlineTable, cmdlineEntries, ProgramName,
|
|
argc, argv);
|
|
|
|
userpath = getenv("XUSERFILESEARCHPATH");
|
|
if (!userpath) {
|
|
env = getenv("XAPPLRESDIR");
|
|
if (env) {
|
|
userfile = (char *) malloc(strlen(env) + strlen(homeenv) + 8);
|
|
(void) strcpy(userfile, env);
|
|
(void) strcat(userfile, "/%N:");
|
|
(void) strcat(userfile, homeenv);
|
|
(void) strcat(userfile, "/%N");
|
|
} else {
|
|
#ifdef VMS
|
|
userfile = (char *) malloc(2 * strlen(homeenv) + 31);
|
|
(void) strcpy(userfile, homeenv);
|
|
(void) strcat(userfile, "DECW$%N.DAT#");
|
|
(void) strcat(userfile, homeenv);
|
|
(void) strcat(userfile, "DECW$XDEFAULTS.DAT");
|
|
#else
|
|
userfile = (char *) malloc(strlen(homeenv) + 4);
|
|
(void) strcpy(userfile, homeenv);
|
|
(void) strcat(userfile, "/%N");
|
|
#endif
|
|
}
|
|
userpath = userfile;
|
|
}
|
|
userDB = parsefilepath(userpath, "app-defaults", classname, *custom);
|
|
|
|
if (userfile)
|
|
free(userfile);
|
|
|
|
(void) XrmMergeDatabases(applicationDB, RDB);
|
|
(void) XrmMergeDatabases(userDB, RDB);
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 does not report this error. */
|
|
(void) XrmMergeDatabases(cmdlineDB, RDB);
|
|
#ifdef CUSTOMIZATION
|
|
if (*serverDB)
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 does not report this error. */
|
|
(void) XrmMergeDatabases(*serverDB, RDB);
|
|
#else
|
|
GetResource(*RDB, ProgramName, classname, "display", "Display", t_String,
|
|
(char *) "", &displayname);
|
|
#endif
|
|
GetResource(*RDB, ProgramName, classname, "parent", "Parent", t_String,
|
|
(char *) "", &parentname);
|
|
if (parentname && *parentname) {
|
|
if (sscanf(parentname, "%ld", &parent))
|
|
parentSet = True;
|
|
}
|
|
GetResource(*RDB, ProgramName, classname, "nolock", "NoLock", t_Bool,
|
|
(char *) "off", (void *) & nolock);
|
|
GetResource(*RDB, ProgramName, classname, "inwindow", "InWindow", t_Bool,
|
|
(char *) "off", (void *) & inwindow);
|
|
GetResource(*RDB, ProgramName, classname, "inroot", "InRoot", t_Bool,
|
|
(char *) "off", (void *) & inroot);
|
|
GetResource(*RDB, ProgramName, classname, "remote", "Remote", t_Bool,
|
|
(char *) "off", (void *) & remote);
|
|
#ifdef USE_DTSAVER
|
|
GetResource(*RDB, ProgramName, classname, "dtsaver", "DtSaver", t_Bool,
|
|
(char *) "off", (void *) & dtsaver);
|
|
if (dtsaver) {
|
|
inroot = False;
|
|
inwindow = True;
|
|
nolock = True;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
extern void XlockrmParseCommand(
|
|
XrmDatabase *pdb, /* data base */
|
|
register XrmOptionDescList options, /* pointer to table of valid options */
|
|
int num_options, /* number of options */
|
|
char *prefix, /* name to prefix resources with */
|
|
int *arg_c, /* address of argument count */
|
|
char **arg_v); /* argument list (command line) */
|
|
|
|
#if defined( USE_AUTO_LOGOUT ) || defined( USE_BUTTON_LOGOUT )
|
|
extern int fullLock();
|
|
|
|
#endif
|
|
extern void erasemodefromname(char *name, Bool verbose);
|
|
|
|
|
|
void
|
|
getResources(Display ** displayp, int argc, char **argv)
|
|
{
|
|
XrmDatabase RDB = (XrmDatabase) NULL;
|
|
|
|
#ifdef USE_MODULES
|
|
XrmDatabase modulepathDB = (XrmDatabase) NULL;
|
|
|
|
#endif
|
|
XrmDatabase serverDB = (XrmDatabase) NULL;
|
|
XrmDatabase earlyCmdlineDB = (XrmDatabase) NULL;
|
|
XrmDatabase modeDB = (XrmDatabase) NULL;
|
|
XrmDatabase generalDB = (XrmDatabase) NULL;
|
|
char *custom = (char *) NULL;
|
|
char *homeenv = (char *) NULL;
|
|
int i, j;
|
|
int max_length;
|
|
|
|
XrmInitialize();
|
|
|
|
#ifndef USE_MODULES
|
|
/*
|
|
* Moved back because its annoying if you need -remote and
|
|
* you do not know it.
|
|
*/
|
|
checkSpecialArgs(argc, argv);
|
|
#endif
|
|
|
|
/* Application Class is fixed */
|
|
classname = (char*) DEF_CLASSNAME;
|
|
/*
|
|
* Application Name may be modified by -name arg from command
|
|
* line so you can have different resource files for different
|
|
* configurations/machines etc...
|
|
*/
|
|
#ifdef VMS
|
|
/*Strip off directory and .exe; parts */
|
|
ProgramName = stripname(ProgramName);
|
|
#endif
|
|
XrmParseCommand(&earlyCmdlineDB, earlyCmdlineTable,
|
|
earlyCmdlineEntries, "xlock", &argc, argv);
|
|
GetResource(earlyCmdlineDB, "xlock", classname, "name", "Name",
|
|
t_String, ProgramName, &ProgramName);
|
|
#ifdef CUSTOMIZATION
|
|
GetResource(earlyCmdlineDB, ProgramName, classname, "display",
|
|
"Display", t_String, "", &displayname);
|
|
#endif
|
|
homeenv = getenv("HOME");
|
|
if (!homeenv)
|
|
homeenv = (char *) "";
|
|
|
|
#ifdef CUSTOMIZATION
|
|
openDisplay(displayp);
|
|
getServerResources(*displayp, homeenv, &custom, &RDB, &serverDB);
|
|
getAppResources(homeenv, &custom, &RDB, &serverDB, &argc, argv);
|
|
checkDisplay();
|
|
#else
|
|
custom = (char *) "";
|
|
getAppResources(homeenv, &custom, &RDB, &argc, argv);
|
|
openDisplay(displayp);
|
|
checkDisplay();
|
|
getServerResources(*displayp, homeenv, &RDB, &serverDB);
|
|
#endif
|
|
|
|
#ifdef USE_MODULES
|
|
/*
|
|
* Now that all the resource files have been loaded, check for the
|
|
* modules directory, so we'll know what modes are available.
|
|
*/
|
|
XrmParseCommand(&modulepathDB, modulepathTable, 1, ProgramName,
|
|
&argc, argv);
|
|
(void) XrmMergeDatabases(modulepathDB, &RDB);
|
|
GetResource(RDB, ProgramName, classname, "modulepath", "Modulepath",
|
|
t_String, (char *) DEF_MODULEPATH, &modulepath);
|
|
|
|
/* read modules from modules directory */
|
|
atexit(UnloadModules); /* make sure modules get unloaded */
|
|
LoadModules(modulepath);
|
|
|
|
/*
|
|
* Moved the search for help to here because now the modules
|
|
* have been loaded so they can be listed by help.
|
|
*/
|
|
checkSpecialArgs(argc, argv);
|
|
#endif
|
|
XrmParseCommand(&generalDB, genTable, genEntries, ProgramName, &argc, argv);
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 does not report this error. */
|
|
(void) XrmMergeDatabases(generalDB, &RDB);
|
|
|
|
GetResource(RDB, ProgramName, classname, "mode", "Mode", t_String,
|
|
(char *) DEF_MODE, (void *) & mode);
|
|
|
|
XrmParseCommand(&modeDB, modeTable, modeEntries, ProgramName, &argc, argv);
|
|
(void) XrmMergeDatabases(modeDB, &RDB);
|
|
|
|
|
|
|
|
for (i = 0; i < numprocs; i++) {
|
|
/* if (!strcmp(mode, LockProcs[i].cmdline_arg)) */
|
|
XrmDatabase optDB = (XrmDatabase) NULL;
|
|
ModeSpecOpt *ms = LockProcs[i].msopt;
|
|
|
|
if (!ms->numopts)
|
|
continue;
|
|
/* The problem was with XrmParseCommand is that it does not
|
|
work for multiple use options. Running it first with a
|
|
corrupted version (that makes sure argc and argv do
|
|
not change) to setup optDB then run the real
|
|
XrmParseCommand on a nullDB to set argv and argc.
|
|
*/
|
|
XlockrmParseCommand(&optDB, ms->opts, ms->numopts,
|
|
ProgramName, &argc, argv);
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 does not report this error. */
|
|
(void) XrmMergeDatabases(optDB, &RDB);
|
|
}
|
|
for (i = 0; i < numprocs; i++) {
|
|
/* if (!strcmp(mode, LockProcs[i].cmdline_arg)) */
|
|
XrmDatabase nullDB = (XrmDatabase) NULL;
|
|
ModeSpecOpt *ms = LockProcs[i].msopt;
|
|
|
|
if (!ms->numopts)
|
|
continue;
|
|
/* Runnning real XrmParseCommand on a nullDB to set argv
|
|
and argc.
|
|
*/
|
|
XrmParseCommand(&nullDB, ms->opts, ms->numopts,
|
|
ProgramName, &argc, argv);
|
|
}
|
|
|
|
/* the RDB is set, now query load the variables from the database */
|
|
|
|
for (i = 0; i < (int) NGENARGS; i++) {
|
|
GetResource(RDB, ProgramName, classname,
|
|
genvars[i].name, genvars[i].classname,
|
|
genvars[i].type, genvars[i].def,
|
|
(void *) genvars[i].var);
|
|
}
|
|
|
|
#ifdef USE_VTLOCK
|
|
/* Process the vtlock resource */
|
|
if ( !vtlockres || !*vtlockres )
|
|
vtlock = False;
|
|
else {
|
|
if (debug)
|
|
(void) fprintf(stderr,"vtlock: %s\n",vtlockres);
|
|
if ( !strcmp( VTLOCKMODE_SWITCH, vtlockres ) )
|
|
{
|
|
vtlock = True;
|
|
vtlock_set_active = True;
|
|
vtlock_restore = False;
|
|
}
|
|
else if ( !strcmp( VTLOCKMODE_RESTORE, vtlockres ) )
|
|
{
|
|
vtlock = True;
|
|
vtlock_set_active = True;
|
|
vtlock_restore = True;
|
|
}
|
|
else if ( !strcmp( VTLOCKMODE_OFF, vtlockres ) )
|
|
{
|
|
vtlock = False;
|
|
}
|
|
else
|
|
{
|
|
vtlock = True;
|
|
vtlock_set_active = False;
|
|
vtlock_restore = False;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
max_length = 0;
|
|
for (i = 0; i < numprocs; i++) {
|
|
j = strlen(LockProcs[i].cmdline_arg);
|
|
if (j > max_length)
|
|
max_length = j;
|
|
}
|
|
|
|
modename = (char *) malloc(strlen(ProgramName) + max_length + 2);
|
|
modeclassname = (char *) malloc(strlen(classname) + max_length + 2);
|
|
|
|
for (i = 0; i < numprocs; i++) {
|
|
argtype *v;
|
|
ModeSpecOpt *ms = LockProcs[i].msopt;
|
|
|
|
(void) sprintf(modename, "%s.%s", ProgramName, LockProcs[i].cmdline_arg);
|
|
(void) sprintf(modeclassname, "%s.%s", classname, LockProcs[i].cmdline_arg);
|
|
for (j = 0; j < (int) NMODEARGS; j++) {
|
|
char *buf = (char *) NULL;
|
|
void *p = (void *) ((char *) (&LockProcs[i]) + modevaroffs[j]);
|
|
|
|
switch (modevars[j].type) {
|
|
case t_String:
|
|
buf = (char *) malloc(strlen(*((char **) p)) + 1);
|
|
(void) sprintf(buf, "%s",
|
|
*((char **) p));
|
|
break;
|
|
case t_Float:
|
|
buf = (char *) malloc(16);
|
|
(void) sprintf(buf, "%g",
|
|
*((float *) p));
|
|
break;
|
|
case t_Int:
|
|
buf = (char *) malloc(16);
|
|
(void) sprintf(buf,
|
|
"%d", *((int *) p));
|
|
break;
|
|
case t_Bool:
|
|
buf = (char *) malloc(6);
|
|
(void) sprintf(buf, "%s",
|
|
*((int *) p) ? "True" : "False");
|
|
break;
|
|
}
|
|
GetResource(RDB, modename, modeclassname,
|
|
modevars[j].name, modevars[j].classname,
|
|
modevars[j].type, buf, (void *) p);
|
|
if (!strcmp(mode, LockProcs[i].cmdline_arg)) {
|
|
GetResource(RDB, modename, modeclassname,
|
|
modevars[j].name, modevars[j].classname,
|
|
modevars[j].type, buf,
|
|
(void *) modevars[j].var);
|
|
}
|
|
if (buf) {
|
|
free(buf);
|
|
buf = (char *) NULL;
|
|
}
|
|
}
|
|
if (!ms->numvarsdesc)
|
|
continue;
|
|
v = ms->vars;
|
|
for (j = 0; j < ms->numvarsdesc; j++) {
|
|
GetResource(RDB, modename, modeclassname,
|
|
v[j].name, v[j].classname,
|
|
v[j].type, v[j].def, (void *) v[j].var);
|
|
}
|
|
}
|
|
|
|
/*XrmPutFileDatabase(RDB, "/tmp/xlock.rsrc.out"); */
|
|
/* PURIFY 4.0.1 on Solaris 2 reports an uninitialized memory read on the next
|
|
* line. PURIFY 4.0.1 on SunOS4 reports this also when using X11R5, but not
|
|
* with OpenWindow 3.0 (X11R4 based). */
|
|
(void) XrmDestroyDatabase(RDB);
|
|
if (!strcmp(mode, "run")) {
|
|
geometry = (char *) malloc(4);
|
|
(void) strcpy(geometry, "1x1");
|
|
}
|
|
|
|
/* Parse the rest of the command line */
|
|
for (argc--, argv++; argc > 0; argc--, argv++) {
|
|
if (**argv != '-')
|
|
Syntax(*argv);
|
|
switch (argv[0][1]) {
|
|
case 'r':
|
|
DumpResources();
|
|
/* NOTREACHED */
|
|
default:
|
|
Syntax(*argv);
|
|
/* NOTREACHED */
|
|
}
|
|
}
|
|
|
|
#if defined( USE_AUTO_LOGOUT ) || defined( USE_BUTTON_LOGOUT )
|
|
if (fullLock()) {
|
|
#ifdef USE_AUTO_LOGOUT
|
|
logoutAuto = 0;
|
|
#endif
|
|
#ifdef USE_BUTTON_LOGOUT
|
|
enable_button = 0;
|
|
#endif
|
|
} else {
|
|
#ifdef USE_AUTO_LOGOUT
|
|
#if ( USE_AUTO_LOGOUT > 0 ) /* Could be USER defined if 0 */
|
|
if (logoutAuto > USE_AUTO_LOGOUT)
|
|
logoutAuto = USE_AUTO_LOGOUT;
|
|
else if (logoutAuto <= 0) /* Handle 0 as a special case */
|
|
logoutAuto = USE_AUTO_LOGOUT;
|
|
#else
|
|
if (logoutAuto <= 0) /* Handle 0 as a special case */
|
|
(void) sscanf(DEF_AUTO_LOGOUT, "%d", &logoutAuto);
|
|
#endif
|
|
#endif
|
|
#ifdef USE_BUTTON_LOGOUT
|
|
#if ( USE_BUTTON_LOGOUT > 0 ) /* Could be USER defined if <= 0 */
|
|
if (logoutButton > USE_BUTTON_LOGOUT)
|
|
logoutButton = USE_BUTTON_LOGOUT;
|
|
else if (logoutButton <= 0) /* Handle 0 as a special case */
|
|
logoutButton = USE_BUTTON_LOGOUT;
|
|
#endif
|
|
#if ( USE_BUTTON_LOGOUT == 0 )
|
|
if (logoutButton <= 0) /* Handle 0 as a special case */
|
|
(void) sscanf(DEF_BUTTON_LOGOUT, "%d", &logoutButton);
|
|
#endif
|
|
#endif
|
|
}
|
|
#endif
|
|
#ifdef USE_DTSAVER
|
|
if (dtsaver) {
|
|
inroot = False;
|
|
inwindow = True;
|
|
nolock = True;
|
|
enablesaver = True;
|
|
grabmouse = False;
|
|
grabserver = False;
|
|
unlockdelay = 0;
|
|
install = False;
|
|
lockdelay = 0;
|
|
geometry = (char *) DEF_GEOMETRY;
|
|
}
|
|
#endif
|
|
|
|
if (verbose) {
|
|
for (i = 0; i < (int) NGENARGS; i++)
|
|
printvar(classname, genvars[i]);
|
|
for (i = 0; i < (int) NMODEARGS; i++)
|
|
printvar(modename, modevars[i]);
|
|
}
|
|
if (!visualname || !*visualname || !strcmp(visualname, "default")) {
|
|
VisualClassWanted = -1;
|
|
if (verbose)
|
|
(void) fprintf(stderr, "Using default visual class\n");
|
|
} else {
|
|
VisualClassWanted = visualClassFromName(visualname);
|
|
if (verbose)
|
|
(void) fprintf(stderr, "Using visual class %s\n",
|
|
nameOfVisualClass(VisualClassWanted));
|
|
}
|
|
erasemodefromname(erasemodename, verbose);
|
|
/* if (!erasemodename || !*erasemodename || !strcmp(erasemodename,
|
|
"default")) {
|
|
erasemode = -1;
|
|
if (verbose)
|
|
(void) fprintf(stderr, "Using random erase mode\n");
|
|
} else {
|
|
}*/
|
|
#if HAVE_DIRENT_H
|
|
/* Evaluate bitmap */
|
|
if (bitmap && strcmp(bitmap, DEF_BITMAP)) {
|
|
get_dir(bitmap, directory_r, filename_r);
|
|
if (image_list != NULL) {
|
|
int num;
|
|
|
|
for (num = 0; num < num_list; num++) {
|
|
if (image_list[num])
|
|
free(image_list[num]);
|
|
}
|
|
free(image_list);
|
|
image_list = (struct dirent **) NULL;
|
|
}
|
|
images_list = (struct dirent ***) malloc(sizeof (struct dirent **));
|
|
|
|
num_list = scan_dir(directory_r, images_list, sel_image, NULL);
|
|
image_list = *images_list;
|
|
if (images_list) {
|
|
free(images_list);
|
|
images_list = (struct dirent ***) NULL;
|
|
}
|
|
if (debug)
|
|
for (i = 0; i < num_list; i++)
|
|
(void) printf("File number %d: %s\n", i, image_list[i]->d_name);
|
|
if (num_list < 0) {
|
|
image_list = (struct dirent **) NULL;
|
|
num_list = 0;
|
|
}
|
|
} else {
|
|
num_list = 0;
|
|
}
|
|
#endif
|
|
free(modename);
|
|
free(modeclassname);
|
|
}
|
|
|
|
extern char * old_default_mode;
|
|
|
|
void
|
|
checkResources(void)
|
|
{
|
|
int i;
|
|
|
|
/* in case they have a 'xlock*mode: ' empty resource */
|
|
if (!mode || !*mode)
|
|
mode = (char *) DEF_MODE;
|
|
|
|
if (!old_default_mode || !*old_default_mode) {
|
|
old_default_mode = (char *) malloc(strlen(mode) + 1);
|
|
(void) strcpy(old_default_mode, mode);
|
|
}
|
|
for (i = 0; i < numprocs; i++) {
|
|
if (!strcmp(LockProcs[i].cmdline_arg, mode)) {
|
|
set_default_mode(&LockProcs[i]);
|
|
break;
|
|
}
|
|
}
|
|
if (i == numprocs) {
|
|
(void) fprintf(stderr,
|
|
"unrecognized mode \"%s\", using backup mode \"%s\"\n",
|
|
mode, (char *) DEF_MODE);
|
|
for (i = 0; i < numprocs; i++) {
|
|
if (!strcmp(LockProcs[i].cmdline_arg, (char *) DEF_MODE)) {
|
|
set_default_mode(&LockProcs[i]);
|
|
break;
|
|
}
|
|
}
|
|
if (i != numprocs) {
|
|
delay = LockProcs[i].def_delay;
|
|
count = LockProcs[i].def_count;
|
|
cycles = LockProcs[i].def_cycles;
|
|
size = LockProcs[i].def_size;
|
|
ncolors = LockProcs[i].def_ncolors;
|
|
saturation = LockProcs[i].def_saturation;
|
|
bitmap = LockProcs[i].def_bitmap;
|
|
}
|
|
}
|
|
if (i == numprocs) {
|
|
/* Should not get here, but you never know. */
|
|
(void) fprintf(stderr, "unrecognized mode and backup mode \"%s\"\n",
|
|
(char *) DEF_MODE);
|
|
Syntax(mode);
|
|
} else {
|
|
|
|
/* count and size we allow negative to mean randomize up to that number */
|
|
if (delay < 0)
|
|
Syntax("-delay argument must not be negative.");
|
|
if (ncolors < 2 || ncolors > 200)
|
|
Syntax("-ncolors argument must be between 2 and 200.");
|
|
if (saturation < 0.0 || saturation > 1.0)
|
|
Syntax("-saturation argument must be between 0.0 and 1.0.");
|
|
if (delta3d < 0.0 || delta3d > 20.0)
|
|
Syntax("-delta3d argument must be between 0.0 and 20.0.");
|
|
}
|
|
}
|