Page: | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
OVERVIEW
xdm is highly configurable, and most of its behavior can be controlled by resource files and shell scripts. The names of these files themselves are resources read from the file xdm-config or the file named by the - config option.
xdm offers display management two different ways. It can manage X servers running on the local machine and specified in Xservers, and it can manage remote X servers (typically X terminals) using XDMCP (the XDM Control Protocol) as specified in the Xaccess file.
The resources of the X clients run by xdm outside the user's session, including xdm's own login window, can be affected by setting resources in the Xresources file.
For X terminals that do not offer a menu of hosts to get display management from, xdm can collect willing hosts and run the chooser program to offer the user a menu. For X displays attached to a host, this step is typically not used, as the local host does the display management.
After resetting the X server, xdm runs the Xsetup script to assist in setting up the screen the user sees along with the xiogin widget.
When the user logs in, xdm runs the Xstartup script as root.
Then xdm runs the Xsession script as the user. This system session file may do some additional startup and typically runs a script in the user's home directory. When the Xsession script exits, the session is over.
At the end of the session, the Xreset script is run to clean up, the X server is reset, and the cycle starts over.
The file /usr/X11R6/lib/X11/xdm/xdm-errors will contain error messages from xdm and anything output to stderr by Xsetup, Xstartup, Xsession or Xreset. When you have trouble getting xdm working, check this file to see if xdm has any clues to the trouble.
Home |
OPTIONS
All of these options, except - config itself, specify values that can also be specified in the configuration file as resources.
- config configuration_file
Names the configuration file, which specifies resources to control the behavior of xdm. < XRoot>/lib/X11/xdm/xdm-config is the default. See the section Configuration File.
- nodaemon
Specifies "false" as the value for the DisplayManager.daemonMode resource. This suppresses the normal daemon behavior, which is for xdm to close all file descriptors, disassociate itself from the controlling terminal, and put itself in the background when it first starts up.
- debug debug_level
Specifies the numeric value for the DisplayManager.debugLevel resource. A non-zero value causes xdm to print lots of debugging statements to the terminal; it also disables the DisplayManager.daemonMode resource, forcing xdm to run synchronously. To interpret these debugging messages, a copy of the source code for xdm is almost a necessity. No attempt has been made to rationalize or standardize the output.
- error error_log_file
Specifies the value for the DisplayManager.errorLogFile resource. This file contains errors from xdm as well as anything written to stderr by the various scripts and programs run during the progress of the session.
- resources resource_file
Specifies the value for the DisplayManager*resources resource. This file is loaded using xrdb to specify configuration parameters for the authentication widget.
- server server_entry
Specifies the value for the DisplayManager.servers resource. See the section Local Server Specification for a description of this resource.
- udpPort port_number
Specifies the value for the Display Manager.requestPort resource. This sets the port-number which xdm will monitor for XDMCP requests. As XDMCP uses the registered well-known UDP port 177, this resource should not be changed except for debugging.
- session session_program
Specifies the value for the DisplayManager*session resource. This indicates the program to run as the session after the user has logged in.
- xrm resource_specification
Allows an arbitrary resource to be specified, as in most X Toolkit applications.
Home |
RESOURCES
At many stages the actions of xdm can be controlled through the use of its configuration file, which is in the X resource format. Some resources modify the behavior of xdm on all displays, while others modify its behavior on a single display. Where actions relate to a specific display, the display name is inserted into the resource name between "DisplayManager" and the final resource name segment.
For local displays, the resource name and class are as read from the Xservers file.
For remote displays, the resource name is what the network address of the display resolves to. See the removeDomain resource. The name must match exactly; xdm is not aware of all the network aliases that might reach a given display. If the name resolve fails, the address is used. The resource class is as sent by the display in the XDMCP Manage request.
Because the resource manager uses colons to separate the name of the resource from its value and dots to separate resource name parts, xdm substitutes underscores for both dots and colons when generating the resource name. For example, DisplayManager.expo_x_org_0.startup is the name of the resource which defines the startup shell file for the "expo.x.org:0" display.
DisplayManager.servers
This resource either specifies a file name full of server entries, one per line (if the value starts with a slash), or a single server entry. See the section Local Server Specification for the details.
DisplayManager.requestPort
This indicates the UDP port number which xdm uses to listen for incoming XDMCP requests. Unless you need to debug the system, leave this with its default value of 177.
DisplayManager.errorLogFile
Error output is normally directed at the system console. To redirect it, set this resource to a file name. A method to send these messages to syslog should be developed for systems which support it; however, the wide variety of interfaces precludes any system-independent implementation. This file also contains any output directed to stderr by the Xsetup, Xstartup, Xsessio and Xreset files, so it will contain descriptions of problems in those scripts as well.
DisplayManager.debugLevel
If the integer value of this resource is greater than zero, reams of debugging information will be printed. It also disables daemon mode, which would redirect the information into the bit-bucket, and allows non-root users to run xdm, which would normally not be useful.
DisplayManager.daemonMode
Normally, xdm attempts to make itself into a daemon process unassociated with any terminal. This is accomplished by forking and leaving the parent process to exit, then closing file descriptors and releasing the controlling terminal. In some environments this is not desired (in particular, when debugging). Setting this resource to "false" will disable this feature.
DisplayManager.PidFile
The filename specified will be created to contain an ASCII representation of the process-id of the main xdm process. xdm also uses file locking on this file to attempt to eliminate multiple daemons running on the same machine, which would cause quite a bit of havoc.
DisplayManager.lockPidFile
This is the resource which controls whether xdm uses file locking to keep multiple display managers from running amok. On System V, this uses the lockf library call, while on BSD it uses flock.
DisplayManager.authDir
This names a directory in which xdm stores authorization files while initializing the session. The default value is /usr/lib/X11/xdm.
DisplayManager.autoRescan
This boolean controls whether xdm rescans the configuration, servers, access control and authentication keys files after a session terminates and the files have changed. By default it is "true." You can force xdm to reread these files by sending a SIGHUP to the main process.
DisplayManager.removeDomainname
When computing the display name for XDMCP clients, the name resolver will typically create a fully qualified host name for the terminal. As this is sometimes confusing, xdm will remove the domain name portion of the host name if it is the same as the domain name of the local host when this variable is set. By default the value is "true."
DisplayManager.keyFile
XDM-AUTHENTICATION-1 style XDMCP authentication requires that a private key be shared between xdm and the terminal. This resource specifies the file containing those values. Each entry in the file consists of a display name and the shared key. By default, xdm does not include support for XDM-AUTHENTICATION-1, as it requires DES which is not generally distributable because of United States export restrictions.
DlsplayManager.accessFile
To prevent unauthorized XDMCP service and to allow forwarding of XDMCP IndirectQuery requests, this file contains a database of hostnames which are either allowed direct access to this machine, or have a list of hosts to which queries should be forwarded to. The format of this file is described in the section XDMCP Access Control.
DisplayManager.exportList
A list of additional environment variables, separated by white space, to pass on to the Xsetup, Xstartup, Xsession, and Xreset programs.
DisplayManager.randomFile
A file to checksum to generate the seed of authorization keys. This should be a file that changes frequently. The default is /dev/mem.
Home |
DisplayManager.greeterLib
On systems that support a dynamically-loadable greeter library, the name of the library. Default is /usr/lib/X11/xdm/libXdmGreet.so.
DisplayManager.choice Timeout
Number of seconds to wait for display to respond after user has selected a host from the chooser. If the display sends an XDMCP IndirectQuery within this time, the request is forwarded to the chosen host. Otherwise, it is assumed to be from a new session and the chooser is offered again. Default is 15.
DisplayManager.DlSPLAY. resources
This resource specifies the name of the file to be loaded by xrdb as the resource database onto the root window of screen 0 of the display. The Xsetup program, the Login widget, and chooser will use the resources set in this file. This resource data base is loaded just before the authentication procedure is started, so it can control the appearance of the login window. See the section Authentication Widget, which describes the various resources that are appropriate to place in this file. There is no default value for this resource, but /usr/lib/X11/xdm/Xresources is the conventional name.
DisplayManager.DISPLAY.chooser
Specifies the program run to offer a host menu for Indirect queries redirected to the special host name CHOOSER. /usr/lib/X11/xdm/chooser is the default. See the sections XDMCP Access Control and Chooser
DisplayManager.DISPLAY.xrdb
Specifies the program used to load the resources. By default, xdm uses /usr/bin/X11/xrdb.
DisplayManager.DISPLAY.cpp
This specifies the name of the C preprocessor which is used by xrdb.
DisplayManager.DISPLAY.setup
This specifies a program which is run (as root) before offering the Login window. This may be used to change the appearance of the screen around the Login window or to put up other windows (e.g., you may want to run xconsole here). By default, no program is run. The conventional name for a file used here is Xsetup. See the section Setup Program.
DisplayManager.DISPLAY.startup
This specifies a program which is run (as root) after the authentication process succeeds. By default, no program is run. The conventional name for a file used here is Xstartup. See the section Startup Program.
DisplayManager.DISPLAY.session
This specifies the session to be executed (not running as root). By default, /usr/bin/X11/xterm is run. The conventional name is Xsession. See the section Session Program.
DisplayManager.DISPLAY.reset
This specifies a program which is run (as root) after the session terminates. Again, by default no program is run. The conventional name is Xreset. See the section Reset Program.
DisplayManager.DISPLAY.openDelay
DisplayManager.DISPLAY.openRepeat
DisplayManager.DISPLAY.openTimeout
DisplayManager.DISPLAY.startAttempts
These numeric resources control the behavior of xdm when attempting to open intransigent servers. openDelay is the length of the pause (in seconds) between successive attempts, openRepeat is the number of attempts to make, openTimeout is the amount of time to wait while actually attempting the open (i.e., the maximum time spent in the connect(2) system call) and startAttempts is the number of times this entire process is done before giving up on the server. After openRepeat attempts have been made, or if openTimeout seconds elapse in any particular attempt, xdm terminates and restarts the server, attempting to connect again. This process is repeated startAttempts times, at which point the display is declared dead and disabled. Although this behavior may seem arbitrary, it has been empirically developed and works quite well on most systems. The default values are 5 for openDelay, 5 for open Repeat, 30 for openTimeout and 4 for startAttempts.
Home |
DisplayManager.DISPLAY. pinglnterval
DisplayManager.DISPLAY. pingTimeout
To discover when remote displays disappear, xdm occasionally pings them, using an X connection and XSync calls. Ping Interval specifies the time (in minutes) between each ping attempt, pingTimeout specifies the maximum amount of time (in minutes) to wait for the terminal to respond to the request. If the terminal does not respond, the session is declared dead and terminated. By default, both are set to 5 minutes. If you frequently use X terminals which can become isolated from the managing host, you may wish to increase this value. The only worry is that sessions will continue to exist after the terminal has been accidentally disabled. xdm will not ping local displays. Although it would seem harmless, it is unpleasant when the workstation session is terminated as a result of the server hanging for NFS service and not responding to the ping.
DlsplayManager.DISPLAY.terminateServer
This boolean resource specifics whether the X server should be terminated when a session terminates (instead of resetting it). This option can be used when the server tends to grow without bound over time, in order to limit the amount of time the server is run. The default value is "false. "
DisplayManager.DISPLAY.userPath
Xdm sets the PATH environment variable for the session to this value. It should be a colon separated list of directories; see sh(1) for a full description. ":/bin:/usr/bin:/usr/X11R6/bin:/usr/ucb" is a common setting. The default value can be specified at build time in the X system configuration file with DefaultUserPath.
DisplayManager.DISPLAY.systemPath
Xdm sets the PATH environment variable for the startup and reset scripts to the value of this resource. The default for this resource is specified at build time by the DefaultSystemPath entry in the system configuration file; "/etc:/bin:/usr/bin:/usr/X11R6/bin:/usr/ucb" is a common choice. Note the absence of "." from this entry. This is a good practice to follow for root; it avoids many common Trojan Horse system penetration schemes.
DisplayManager.DISPLAY. systemShell
Xdm sets the SHELL environment variable for the startup and reset scripts to the value of this resource. It is /bii/sh by default.
DisplayManager.DISPLAY.failsafeClient
If the default session fails to execute, xdm will fall back to this program. This program is executed with no arguments, but executes using the same environment variables as the session would have had (see the section Session Program). By default, /usr/bin/X11/xterm is used.
DisplayManager.DISPLAY.grabServer
DisplayManager.DISPLAY.grabTimeout
To improve security, xdm grabs the server and keyboard while reading the login name and password. The grab Server resource specifies if the server should be held for the duration of the name/password reading. When "false, " the server is ungrabbed after the keyboard grab succeeds, otherwise the server is grabbed until just before the session begins. The default is "false." The grabTimeout resource specifies the maximum time xdm will wait for the grab to succeed. The grab may fail if some other client has the server grabbed, or possibly if the network latencies are very high. This resource has a default value of 3 seconds; you should be cautious when raising it, as a user can be spoofed by a look-alike window on the display. If the grab fails, xdm kills and restarts the server (if possible) and the session.
DisplayManager.DISPLAY.authorize
DisplayManager.DISPLAY.authName
authorize is a boolean resource which controls whether xdm generates and uses authorization for the local server connections. If authorization is used, authName is a list of authorization mechanisms to use, separated by white space. XDMCP connections dynamically specify which authorization mechanisms are supported, so authName is ignored in this case. When authorize is set for a display and authorization is not available, the user is informed by having a different message displayed in the login widget. By default, authorize is "true." authName is "MITMAGIC-COOKIE-1," or, if XDM-AUTHORIZATION-1 is available, "XDMAUTHORIZATION-1 MIT-MAGIC-COOKIE-1."
DisplayManager.DISPLAY.authFile
This file is used to communicate the authorization data from xdm to the server, using the - auth server command line option. It should be kept in a directory which is not world-writable as it could easily be removed, disabling the authorization mechanism in the server.
DisplayManager.DISPLAY.authComplain
If set to "false," disables the use of the unsecureGreeting in the login window. See the section Authentication Widget. The default is "true."
Home |
DisplayManager.DISPLAY.resetSignal
The number of the signal xdm sends to reset the server. See the section Controlling the Server. The default is 1 (SIGHUP).
DisplayManager.DISPLAY.termSignal
The number of the signal xdm sends to terminate the server. See the section Controlling the Server. The default is 15 (SIGTERM).
DisplayManager.DISPLAY.resetForAuth
The original implementation of authorization in the sample server reread the authorization file at server reset time, instead of when checking the initial connection. As xdm generates the authorization information just before connecting to the display, an old server would not get up-to-date authorization information. This resource causes xdm to send SIGHUP to the server after setting up the file, causing an additional server reset to occur, during which time the new authorization information will be read. The default is "false," which will work for all MIT servers.
DisplayManager.DISPLAY.userAuthDir
When xdm is unable to write to the usual user authorization file ($HOME/.Xauthority), it creates a unique file name in this directory and points the environment variable XAUTHORITY at the created file. It uses /tmp by default.
CONFIGURATION FILE
First, the xdm configuration file should be set up. Make a directory (usually < XRoot>/lib/X11/xdm, where < XRoot> refers to the root of the X11 install tree) to contain all of the relevant files. In the examples that follow, we use /usr/X11R6 as the value of < XRoot> .
Here is a reasonable configuration file, which could be named xdm-config:
DisplayManager.servers: | /usr/X11R6/iib/X11/xdm/Xservers |
DisplayManager.errorLogFile: | /usr/X11R6/lib/X11/xdm/xdm-errors |
DisplayManager*resources: | /usr/S11R6/iib/X11/xdm/Xresources |
DisplayManager*startup: | /usr/X11R6/lib/X11/xdm/Xstartup |
DisplayManager*session: | /usr/X11R6/lib/X11/xdm/Xsession |
DisplayManager.pidFile: | /usr/X11R6/lib/X11/xdm/xdm-pid |
DisplayManager._0.authorize: | true |
DisplayManager*authorize: | false |
Home |
XDMCP ACCESS CONTROL
The format of the Direct entries is simple, either a host name or a pattern, which is distinguished from a host name by the inclusion of one or more meta characters ('*' matches any sequence of 0 or more characters, and '?' matches any single character) which are compared against the host name of the display device. If the entry is a host name, all comparisons are done using network addresses, so any name which converts to the correct network address may be used. For patterns, only canonical host names are used in the comparison, so ensure that you do not attempt to match aliases. Preceding either a host name or a pattern with a '!' character causes hosts which match that entry to be excluded.
An Indirect entry also contains a host name or pattern, but follows it with a list of host names or macros to which indirect queries should be sent.
A macro definition contains a macro name and a list of host names and other macros that the macro expands to. To distinguish macros from hostnames, macro names start with a '%' character. Macros may be nested.
Indirect entries may also specify to have xdm run chooser to offer a menu of hosts to connect to. See the section Chooser.
When checking access for a particular display host, each entry is scanned in turn and the first matching entry determines the response. Direct and Broadcast entries are ignored when scanning for an Indirect entry and vice-versa.
Blank lines are ignored, '#' is treated as a comment delimiter causing the rest of that line to be ignored, and 'newline' causes the newline to be ignored, allowing indirect host lists to span multiple lines.
Here is an example Xaccess file:
# |
# Xaccess - XDMCP access control file |
# |
# |
# Direct/Broadcast query entries |
# |
!xtra.lcs.mit.edu | # disallow direct/broadcast service for xtra |
bambi.ogi.edu | # allow access from this particular display |
*.lss.mit.edu | # allow access from any display in LCS |
# |
# Indirect query entries |
# |
%HOSTS | expo.lcs.mit.edu xenon.lcs.mit.edu |
extract.lcs.mit.edu | xenon.lcs.mit.edu | # force extract to contact xenon |
!xtra.lcs.mit.edu | dummy | #disallow indirect access |
*.lcs.mit.edu | %HOSTS | # all others get to choose |
Home |
extract.lcs.mit.edu | CHOOSER %HOSTS | # offer a menu of these hosts |
xtra.lcs.mit.edu | CHOOSER BROADCAST | # offer a menu of all hosts |
local | local display: xdm must run the server |
foreign | emote display: xdm opens an X connection to a running server |
Home |
RESOURCES FILE
xlogin*login.translations: # override
Ctrl< Key> R: abort-display( )n
< Key> F1: set-session-argument(failsafe) finish-field( )n
< Key> Return: set-session-argument( ) finish-field( )
xlogin*borderWidth: 3
xlogin*greeting: CLIENTHOST
# ifdef COLOR
xlogin*greetColor: CadetBlue
xlogin*failColor: red
# endif
Please note the translations entry; it specifies a few new translations for the widget which allow users to escape from the default session (and avoid troubles that may occur in it). Note that if # override is not specified, the default translations are removed and replaced by the new value, not a very useful result as some of the default translations are quite useful (such as "< Key>: insert-char ( )" which responds to normal typing).
This file may also contain resources for the setup program and chooser.
SETUP PROGRAM
In addition to any specified by DisplayManager.exportList, the following environment variables are passed:
DISPLAY | the associated display name |
PATH | the value of DisplayManager.DlSPLAY.systemPath |
SHELL | the value of DisplayManager.DlSPLAY.systemShell |
XAUTHORITY | may be set to an authority file |
Note that since xdm grabs the keyboard, any other windows will not be able to
receive keyboard input. They will be able to interact with the mouse, however; beware of
potential security holes here. If DisplayManager.DlSPLAY.grabServer
is set, Xsetup will not be able to connect to the display at all. Resources for
this program can be put into the file named by DisplayManager.DlSPLAY.resources.
Here is a sample Xsetup script:
Home |
AUTHENTICATION WIDGET
xlogin.Login.width, xlogin.Login.height, xlogin.Login.x, xlogin.Login.y
The geometry of the Login widget is normally computed automatically. If you wish to position it elsewhere, specify each of these resources.
xlogin.Login.foreground
The color used to display the typed-in user name.
xlogin.Login.font
The font used to display the typed-in user name.
xlogin.Login.greeting
A string which this window. The default is "X Window System."
xlogin.Login.unsecureGreeting
When X authorization is requested in the configuration file for this display and none is in use, this greeting replaces the standard greeting. The default is "This is an unsecure session"
xlogin.Login. greetFont
The font used to display the greeting.
xlogin.Login.greetColor
The color used to display the greeting
xlogin.Logln.namePrompt
The string displayed to prompt for a user name. Xrdb strips trailing white space from resource values, so to add spaces at the end of the prompt (usually a nice thing), add spaces escaped with backslashes. The default is "Login: "
xlogin.Login.passwdPrompt
The string displayed to prompt for a password. The default is "Password: "
xlogin.Login.promptFont
The font used to display both prompts.
xlogln.Login.promptColor
The color used to display both prompts.
xlogln.Logln.fall
A message which is displayed when the authentication fails. The default is "Login incorrect"
xlogin.Login.failFont
The font used to display the failure message.
xlogin.Login.failColor
The color used to display the failure message.
xlogin.Login.failTimeout
The number of seconds that the failure message is displayed. The default is 30.
xlogin.Login.translations
This specifies the translations used for the login widget. Refer to the X Toolkit documentation for a complete discussion on translations. The default translation table is:
Ctrl<Key>H: | delete-previous-character( ) n |
Ctrl<Kcy>D: | delele-character( ) n |
Ctrl<Key>B: | move-backward-character( ) n |
Ctrl<Key>F: | move-forward-character( ) n |
Ctrl<Key>A: | move-to-begining( ) n |
Ctrl<Key>E: | move-to-end( ) n |
Ctrl< Key> K: | erase-to-end-of-line( ) n |
Ctrl< Key> U: | erase-line( ) n |
Ctrl< Key> X: | erase-line( ) n |
Ctrl< Key> C: | estart-session( ) n |
Ctrl< Key> : | abort-session( ) n |
< Key> BackSpace: | delete-previous-character( ) n |
< Key> Delete: | delete-previous-character( ) n |
< Key> Return: | finish-field( ) n |
< Key> : | insert-char( ) |
Home |
Home |
Contents | Previous Chapter | Chapter 1 Cont. | Next Chapter |