520bba9947
- Today's git snapshot. - disable Xdmx - it's broken upstream - Removing patches merged upstream or obsolete. xserver-1.4.99-endian.patch - obsolete with autoconf 2.63-1 (#449944) xserver-1.5.99.902-sod-off-poulsbo.patch - upstream xserver-1.6.0-selinux-less.patch - upstream xserver-1.5.99.902-vnc.patch - upstream xserver-1.6.0-restore-zap.patch - upstream xserver-1.6.0-xinerama-cursors.patch - upstream xserver-1.6.0-xinerama-crashes.patch - obsolete, server 1.6 only xserver-1.6.1-xkbsendmap.patch - upstream xserver-1.6.0-randr-xinerama-crash.patch - upstream xserver-1.6.1-avoid-malloc-for-logging.patch - upstream xserver-1.6.1-exa-avoid-swapped-out.patch - upstream xserver-1.6.1-exa-create-pixmap2.patch - upstream xserver-1.6.1-fix-glx-drawable.patch - upstream xserver-1.6.1-randr-gamma.patch - upstream xserver-1.6.1-vt-switch.patch - obsolete xserver-1.6.1-pea-quirk.patch - will be upstream
173 lines
4.4 KiB
Diff
173 lines
4.4 KiB
Diff
From 1766352059d0db67bff3f7dd0820563a30f54858 Mon Sep 17 00:00:00 2001
|
|
From: Adam Jackson <ajax@redhat.com>
|
|
Date: Thu, 18 Jun 2009 16:56:41 +1000
|
|
Subject: [PATCH] displayfd hack
|
|
|
|
---
|
|
dix/globals.c | 1 +
|
|
include/opaque.h | 1 +
|
|
os/connection.c | 72 ++++++++++++++++++++++++++++++++++++-----------------
|
|
os/utils.c | 11 ++++++++
|
|
4 files changed, 62 insertions(+), 23 deletions(-)
|
|
|
|
diff --git a/dix/globals.c b/dix/globals.c
|
|
index 907a5e8..c1e64d3 100644
|
|
--- a/dix/globals.c
|
|
+++ b/dix/globals.c
|
|
@@ -135,6 +135,7 @@ int defaultColorVisualClass = -1;
|
|
int monitorResolution = 0;
|
|
|
|
char *display;
|
|
+int displayfd;
|
|
char *ConnectionInfo;
|
|
|
|
CARD32 TimeOutValue = DEFAULT_TIMEOUT * MILLI_PER_SECOND;
|
|
diff --git a/include/opaque.h b/include/opaque.h
|
|
index fcc8c95..2a08e2d 100644
|
|
--- a/include/opaque.h
|
|
+++ b/include/opaque.h
|
|
@@ -50,6 +50,7 @@ extern _X_EXPORT int ScreenSaverAllowExposures;
|
|
extern _X_EXPORT int defaultScreenSaverBlanking;
|
|
extern _X_EXPORT int defaultScreenSaverAllowExposures;
|
|
extern _X_EXPORT char *display;
|
|
+extern _X_EXPORT int displayfd;
|
|
|
|
extern _X_EXPORT int defaultBackingStore;
|
|
extern _X_EXPORT Bool disableBackingStore;
|
|
diff --git a/os/connection.c b/os/connection.c
|
|
index 0c72b67..05d95c4 100644
|
|
--- a/os/connection.c
|
|
+++ b/os/connection.c
|
|
@@ -146,6 +146,7 @@ Bool NewOutputPending; /* not yet attempted to write some new output */
|
|
Bool AnyClientsWriteBlocked; /* true if some client blocked on write */
|
|
|
|
static Bool RunFromSmartParent; /* send SIGUSR1 to parent process */
|
|
+static char dynamic_display[7];
|
|
Bool PartialNetwork; /* continue even if unable to bind all addrs */
|
|
static Pid_t ParentProcess;
|
|
|
|
@@ -357,9 +358,23 @@ NotifyParentProcess(void)
|
|
kill (ParentProcess, SIGUSR1);
|
|
}
|
|
}
|
|
+ if (dynamic_display[0])
|
|
+ write(displayfd, dynamic_display, strlen(dynamic_display));
|
|
#endif
|
|
}
|
|
|
|
+static Bool
|
|
+TryCreateSocket(int num, int *partial)
|
|
+{
|
|
+ char port[20];
|
|
+
|
|
+ sprintf(port, "%d", num);
|
|
+
|
|
+ return _XSERVTransMakeAllCOTSServerListeners(port, partial,
|
|
+ &ListenTransCount,
|
|
+ &ListenTransConns);
|
|
+}
|
|
+
|
|
/*****************
|
|
* CreateWellKnownSockets
|
|
* At initialization, create the sockets to listen on for new clients.
|
|
@@ -370,7 +385,6 @@ CreateWellKnownSockets(void)
|
|
{
|
|
int i;
|
|
int partial;
|
|
- char port[20];
|
|
|
|
FD_ZERO(&AllSockets);
|
|
FD_ZERO(&AllClients);
|
|
@@ -385,32 +399,44 @@ CreateWellKnownSockets(void)
|
|
|
|
FD_ZERO (&WellKnownConnections);
|
|
|
|
- sprintf (port, "%d", atoi (display));
|
|
-
|
|
- if ((_XSERVTransMakeAllCOTSServerListeners (port, &partial,
|
|
- &ListenTransCount, &ListenTransConns) >= 0) &&
|
|
- (ListenTransCount >= 1))
|
|
+ if (display)
|
|
{
|
|
- if (!PartialNetwork && partial)
|
|
- {
|
|
- FatalError ("Failed to establish all listening sockets");
|
|
- }
|
|
- else
|
|
+ if (TryCreateSocket(atoi(display), &partial) &&
|
|
+ (ListenTransCount >= 1))
|
|
+ if (!PartialNetwork && partial)
|
|
+ FatalError ("Failed to establish all listening sockets");
|
|
+ }
|
|
+ else /* -displayfd */
|
|
+ {
|
|
+ Bool found = 0;
|
|
+ for (i = 0; i < 65535 - 1024; i++)
|
|
{
|
|
- ListenTransFds = xalloc (ListenTransCount * sizeof (int));
|
|
-
|
|
- for (i = 0; i < ListenTransCount; i++)
|
|
+ if (!TryCreateSocket(i, &partial) && !partial)
|
|
{
|
|
- int fd = _XSERVTransGetConnectionNumber (ListenTransConns[i]);
|
|
-
|
|
- ListenTransFds[i] = fd;
|
|
- FD_SET (fd, &WellKnownConnections);
|
|
-
|
|
- if (!_XSERVTransIsLocal (ListenTransConns[i]))
|
|
- {
|
|
- DefineSelf (fd);
|
|
- }
|
|
+ found = 1;
|
|
+ break;
|
|
}
|
|
+ else
|
|
+ CloseWellKnownConnections();
|
|
+ }
|
|
+ if (!found)
|
|
+ FatalError("Failed to find a socket to listen on");
|
|
+ sprintf(dynamic_display, "%d\n", i);
|
|
+ display = dynamic_display;
|
|
+ }
|
|
+
|
|
+ ListenTransFds = xalloc (ListenTransCount * sizeof (int));
|
|
+
|
|
+ for (i = 0; i < ListenTransCount; i++)
|
|
+ {
|
|
+ int fd = _XSERVTransGetConnectionNumber (ListenTransConns[i]);
|
|
+
|
|
+ ListenTransFds[i] = fd;
|
|
+ FD_SET (fd, &WellKnownConnections);
|
|
+
|
|
+ if (!_XSERVTransIsLocal (ListenTransConns[i]))
|
|
+ {
|
|
+ DefineSelf (fd);
|
|
}
|
|
}
|
|
|
|
diff --git a/os/utils.c b/os/utils.c
|
|
index 7bfdf8b..37a93b1 100644
|
|
--- a/os/utils.c
|
|
+++ b/os/utils.c
|
|
@@ -678,6 +678,17 @@ ProcessCommandLine(int argc, char *argv[])
|
|
else
|
|
UseMsg();
|
|
}
|
|
+ else if (strcmp(argv[i], "-displayfd") == 0)
|
|
+ {
|
|
+ if (++i < argc)
|
|
+ {
|
|
+ displayfd = atoi(argv[i]);
|
|
+ display = NULL;
|
|
+ nolock = TRUE;
|
|
+ }
|
|
+ else
|
|
+ UseMsg();
|
|
+ }
|
|
#ifdef DPMSExtension
|
|
else if ( strcmp( argv[i], "dpms") == 0)
|
|
/* ignored for compatibility */ ;
|
|
--
|
|
1.6.3.rc1.2.g0164.dirty
|
|
|