kde-workspace/kdm/backend/dpylist.c
2014-11-13 19:30:51 +02:00

291 lines
6.3 KiB
C

/*
Copyright 1988, 1998 The Open Group
Copyright 2000-2005 Oswald Buddenhagen <ossi@kde.org>
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
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 COPYRIGHT HOLDERS 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 a copyright holder 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 copyright holder.
*/
/*
* xdm - display manager daemon
* Author: Keith Packard, MIT X Consortium
*
* a simple linked list of known displays
*/
#include "dm.h"
#include "dm_error.h"
struct display *displays;
static struct disphist *disphist;
int
anyDisplaysLeft(void)
{
return displays != 0;
}
int
anyRunningDisplays(void)
{
struct display *d;
for (d = displays; d; d = d->next)
switch (d->status) {
case notRunning:
case textMode:
case reserve:
break;
default:
return True;
}
return False;
}
int
anyReserveDisplays(void)
{
struct display *d;
for (d = displays; d; d = d->next)
if ((d->displayType & d_lifetime) == dReserve)
return True;
return False;
}
int
idleReserveDisplays(void)
{
struct display *d;
int cnt = 0;
for (d = displays; d; d = d->next)
if (d->status == reserve)
cnt++;
return cnt;
}
int
startReserveDisplay(void)
{
struct display *d, *rd;
for (rd = 0, d = displays; d; d = d->next)
if (d->status == reserve)
rd = d;
if (rd) {
rd->status = notRunning;
return True;
}
return False;
}
void
forEachDisplay(void (*f)(struct display *))
{
struct display *d, *next;
for (d = displays; d; d = next) {
next = d->next;
(*f)(d);
}
}
#ifdef HAVE_VTS
static void
_forEachDisplayRev(struct display *d, void (*f)(struct display *))
{
if (d) {
if (d->next)
_forEachDisplayRev(d->next, f);
(*f)(d);
}
}
void
forEachDisplayRev(void (*f)(struct display *))
{
_forEachDisplayRev(displays, f);
}
#endif
struct display *
findDisplayByName(const char *name)
{
struct display *d;
for (d = displays; d; d = d->next)
if (!strcmp(name, d->name))
return d;
return 0;
}
struct display *
findDisplayByPid(int pid)
{
struct display *d;
for (d = displays; d; d = d->next)
if (pid == d->pid)
return d;
return 0;
}
struct display *
findDisplayByServerPid(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(CARD32 sessionID)
{
struct display *d;
for (d = displays; d; d = d->next)
if (sessionID == d->sessionID)
return d;
return 0;
}
struct display *
findDisplayByAddress(XdmcpNetaddr addr, int addrlen, CARD16 displayNumber)
{
struct display *d;
for (d = displays; d; d = d->next)
if ((d->displayType & d_origin) == dFromXDMCP &&
d->displayNumber == displayNumber &&
addressEqual((XdmcpNetaddr)d->from.data, d->from.length,
addr, addrlen))
return d;
return 0;
}
#endif /* XDMCP */
void
removeDisplay(struct display *old)
{
struct display *d, **dp;
int i;
for (dp = &displays; (d = *dp); dp = &(*dp)->next) {
if (d == old) {
debug("Removing display %s\n", d->name);
*dp = d->next;
free(d->class2);
free(d->cfg.data);
delStr(d->cfg.dep.name);
#ifdef XDMCP
free(d->remoteHost);
#endif
if (d->authorizations) {
for (i = 0; i < d->authNum; i++)
XauDisposeAuth(d->authorizations[i]);
free(d->authorizations);
}
if (d->authFile) {
(void)unlink(d->authFile);
free(d->authFile);
}
if (d->greeterAuthFile) {
(void)unlink(d->greeterAuthFile);
free(d->greeterAuthFile);
}
#ifdef XDMCP
XdmcpDisposeARRAY8(&d->peer);
XdmcpDisposeARRAY8(&d->from);
XdmcpDisposeARRAY8(&d->clientAddr);
#endif
free(d);
break;
}
}
}
static struct disphist *
findHist(const char *name)
{
struct disphist *hstent;
for (hstent = disphist; hstent; hstent = hstent->next)
if (!strcmp(hstent->name, name))
return hstent;
return 0;
}
struct display *
newDisplay(const char *name)
{
struct display *d;
struct disphist *hstent;
if (!(hstent = findHist(name))) {
if (!(hstent = Calloc(1, sizeof(*hstent))))
return 0;
if (!strDup(&hstent->name, name)) {
free(hstent);
return 0;
}
hstent->next = disphist;
disphist = hstent;
}
if (!(d = Calloc(1, sizeof(*d))))
return 0;
d->next = displays;
d->hstent = hstent;
d->name = hstent->name;
/* initialize fields (others are 0) */
d->pid = -1;
d->serverPid = -1;
d->ctrl.fd = -1;
d->pipe.fd.r = -1;
d->gpipe.fd.r = -1;
#ifndef SINGLE_PIPE
d->pipe.fd.w = -1;
d->gpipe.fd.w = -1;
#endif
d->userSess = -1;
#ifdef XDMCP
d->xdmcpFd = -1;
#endif
displays = d;
debug("created new display %s\n", d->name);
return d;
}
const char *
displayName(struct display *d)
{
return memcmp(d->name, "localhost:", 10) ? d->name : d->name + 9;
}