/* $XConsortium: dpylist.c,v 1.29 94/04/17 20:03:37 gildea Exp $ */ /* Copyright (c) 1988 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. */ /* * xdm - display manager daemon * Author: Keith Packard, MIT X Consortium * * a simple linked list of known displays */ # include "dm.h" static struct display *displays; AnyDisplaysLeft () { return displays != (struct display *) 0; } ForEachDisplay (f) void (*f)(); { struct display *d, *next; for (d = displays; d; d = next) { next = d->next; (*f) (d); } } struct display * FindDisplayByName (name) char *name; { struct display *d; for (d = displays; d; d = d->next) if (!strcmp (name, d->name)) return d; return 0; } struct display * FindDisplayByPid (pid) int pid; { struct display *d; for (d = displays; d; d = d->next) if (pid == d->pid) return d; return 0; } struct display * FindDisplayByServerPid (serverPid) int serverPid; { struct display *d; for (d = displays; d; d = d->next) if (serverPid == d->serverPid) return d; return 0; } #ifdef XDMCP struct display * FindDisplayBySessionID (sessionID) CARD32 sessionID; { struct display *d; for (d = displays; d; d = d->next) if (sessionID == d->sessionID) return d; return 0; } struct display * FindDisplayByAddress (addr, addrlen, displayNumber) XdmcpNetaddr addr; int addrlen; CARD16 displayNumber; { struct display *d; for (d = displays; d; d = d->next) if (d->displayType.origin == FromXDMCP && d->displayNumber == displayNumber && addressEqual (d->from, d->fromlen, addr, addrlen)) { return d; } return 0; } #endif /* XDMCP */ #define IfFree(x) if (x) free ((char *) x) RemoveDisplay (old) struct display *old; { struct display *d, *p; char **x; int i; p = 0; for (d = displays; d; d = d->next) { if (d == old) { if (p) p->next = d->next; else displays = d->next; IfFree (d->name); IfFree (d->class); for (x = d->argv; x && *x; x++) IfFree (*x); IfFree (d->argv); IfFree (d->resources); IfFree (d->xrdb); IfFree (d->setup); IfFree (d->startup); IfFree (d->reset); IfFree (d->session); IfFree (d->userPath); IfFree (d->systemPath); IfFree (d->systemShell); IfFree (d->failsafeClient); IfFree (d->chooser); if (d->authorizations) { for (i = 0; i < d->authNum; i++) XauDisposeAuth (d->authorizations[i]); free ((char *) d->authorizations); } IfFree (d->clientAuthFile); if (d->authFile) (void) unlink (d->authFile); IfFree (d->authFile); IfFree (d->userAuthDir); for (x = d->authNames; x && *x; x++) IfFree (*x); IfFree (d->authNames); IfFree (d->authNameLens); #ifdef XDMCP IfFree (d->peer); IfFree (d->from); XdmcpDisposeARRAY8 (&d->clientAddr); #endif free ((char *) d); break; } p = d; } } struct display * NewDisplay (name, class) char *name; char *class; { struct display *d; d = (struct display *) malloc (sizeof (struct display)); if (!d) { LogOutOfMem ("NewDisplay"); return 0; } d->next = displays; d->name = malloc ((unsigned) (strlen (name) + 1)); if (!d->name) { LogOutOfMem ("NewDisplay"); free ((char *) d); return 0; } strcpy (d->name, name); if (class) { d->class = malloc ((unsigned) (strlen (class) + 1)); if (!d->class) { LogOutOfMem ("NewDisplay"); free (d->name); free ((char *) d); return 0; } strcpy (d->class, class); } else { d->class = (char *) 0; } /* initialize every field to avoid possible problems */ d->argv = 0; d->status = notRunning; d->pid = -1; d->serverPid = -1; d->state = NewEntry; d->resources = NULL; d->xrdb = NULL; d->setup = NULL; d->startup = NULL; d->reset = NULL; d->session = NULL; d->userPath = NULL; d->systemPath = NULL; d->systemShell = NULL; d->failsafeClient = NULL; d->chooser = NULL; d->authorize = FALSE; d->authorizations = NULL; d->authNum = 0; d->authNameNum = 0; d->clientAuthFile = NULL; d->authFile = NULL; d->userAuthDir = NULL; d->authNames = NULL; d->authNameLens = NULL; d->authComplain = 1; d->openDelay = 0; d->openRepeat = 0; d->openTimeout = 0; d->startAttempts = 0; d->startTries = 0; d->terminateServer = 0; d->grabTimeout = 0; #ifdef XDMCP d->sessionID = 0; d->peer = 0; d->peerlen = 0; d->from = 0; d->fromlen = 0; d->displayNumber = 0; d->useChooser = 0; d->clientAddr.data = NULL; d->clientAddr.length = 0; d->connectionType = 0; #endif d->version = 1; /* registered with X Consortium */ displays = d; return d; }