1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
/* $XConsortium: socket.c,v 1.34 94/04/17 20:03:47 gildea Exp $ */
/* $XFree86: xc/programs/xdm/socket.c,v 3.2 1997/01/18 07:02:24 dawes 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
*
* socket.c - Support for BSD sockets
*/
#include "dm.h"
#ifdef XDMCP
#ifndef STREAMSCONN
#include <errno.h>
#ifndef MINIX
#ifndef Lynx
#include <sys/socket.h>
#else
#include <socket.h>
#endif
#include <netinet/in.h>
#ifndef X_NO_SYS_UN
#ifndef Lynx
#include <sys/un.h>
#else
#include <un.h>
#endif
#endif
#include <netdb.h>
#else /* MINIX */
#include <net/hton.h>
#include <net/netlib.h>
#include <net/gen/in.h>
#include <net/gen/tcp.h>
#include <net/gen/tcp_io.h>
#include <net/gen/udp.h>
#include <net/gen/udp_io.h>
#include <sys/ioctl.h>
#include <sys/nbio.h>
#endif /* !MINIX */
#ifdef X_NOT_STDC_ENV
extern int errno;
#endif
extern int xdmcpFd;
extern int chooserFd;
extern FD_TYPE WellKnownSocketsMask;
extern int WellKnownSocketsMax;
CreateWellKnownSockets ()
{
#ifndef MINIX
struct sockaddr_in sock_addr;
#else /* MINIX */
char *tcp_device, *udp_device;
nwio_udpopt_t udpopt;
nwio_tcpconf_t tcpconf;
int flags;
nbio_ref_t ref;
#endif /* !MINIX */
char *name, *localHostname();
if (request_port == 0)
return;
Debug ("creating socket %d\n", request_port);
#ifdef MINIX
udp_device= getenv("UDP_DEVICE");
if (udp_device == NULL)
udp_device= UDP_DEVICE;
xdmcpFd = open(udp_device, O_RDWR);
#else
xdmcpFd = socket (AF_INET, SOCK_DGRAM, 0);
#endif
if (xdmcpFd == -1) {
LogError ("XDMCP socket creation failed, errno %d\n", errno);
return;
}
name = localHostname ();
registerHostname (name, strlen (name));
RegisterCloseOnFork (xdmcpFd);
#ifdef MINIX
udpopt.nwuo_flags= NWUO_SHARED | NWUO_LP_SET | NWUO_EN_LOC |
NWUO_EN_BROAD | NWUO_RP_ANY | NWUO_RA_ANY | NWUO_RWDATALL |
NWUO_DI_IPOPT;
udpopt.nwuo_locport= htons(request_port);
if (ioctl(xdmcpFd, NWIOSUDPOPT, &udpopt) == -1)
{
LogError ("error %d binding socket address %d\n", errno, request_port);
close (xdmcpFd);
xdmcpFd = -1;
return;
}
if ((flags= fcntl(xdmcpFd, F_GETFD)) == -1)
{
LogError ("F_GETFD failed: %s\n", strerror(errno));
close (xdmcpFd);
xdmcpFd = -1;
return;
}
if (fcntl(xdmcpFd, F_SETFD, flags | FD_ASYNCHIO) == -1)
{
LogError ("F_SETFD failed: %s\n", strerror(errno));
close (xdmcpFd);
xdmcpFd = -1;
return;
}
nbio_register(xdmcpFd);
ref.ref_int= xdmcpFd;
nbio_setcallback(xdmcpFd, ASIO_READ, udp_read_cb, ref);
#else
/* zero out the entire structure; this avoids 4.4 incompatibilities */
bzero ((char *) &sock_addr, sizeof (sock_addr));
#ifdef BSD44SOCKETS
sock_addr.sin_len = sizeof(sock_addr);
#endif
sock_addr.sin_family = AF_INET;
sock_addr.sin_port = htons ((short) request_port);
sock_addr.sin_addr.s_addr = htonl (INADDR_ANY);
if (bind (xdmcpFd, (struct sockaddr *)&sock_addr, sizeof (sock_addr)) == -1)
{
LogError ("error %d binding socket address %d\n", errno, request_port);
close (xdmcpFd);
xdmcpFd = -1;
return;
}
#endif
WellKnownSocketsMax = xdmcpFd;
FD_SET (xdmcpFd, &WellKnownSocketsMask);
#ifdef MINIX
tcp_device= getenv("TCP_DEVICE");
if (tcp_device == NULL)
tcp_device= TCP_DEVICE;
chooserFd = open(tcp_device, O_RDWR);
#else
chooserFd = socket (AF_INET, SOCK_STREAM, 0);
#endif
Debug ("Created chooser socket %d\n", chooserFd);
if (chooserFd == -1)
{
LogError ("chooser socket creation failed, errno %d\n", errno);
return;
}
#ifdef MINIX
tcpconf.nwtc_flags= NWTC_EXCL | NWTC_LP_SEL | NWTC_UNSET_RA |
NWTC_UNSET_RP;
if (ioctl(chooserFd, NWIOSTCPCONF, &tcpconf) == -1)
{
LogError("NWIOSTCPCONF failed: %s\n", strerror(errno));
close(chooserFd);
chooserFd= -1;
return;
}
GetChooserAddr(NULL, NULL);
if ((flags= fcntl(chooserFd, F_GETFD)) == -1)
{
LogError ("F_GETFD failed: %s\n", strerror(errno));
close (chooserFd);
chooserFd = -1;
return;
}
if (fcntl(chooserFd, F_SETFD, flags | FD_ASYNCHIO) == -1)
{
LogError ("F_SETFD failed: %s\n", strerror(errno));
close (chooserFd);
chooserFd = -1;
return;
}
nbio_register(chooserFd);
ref.ref_int= chooserFd;
nbio_setcallback(chooserFd, ASIO_IOCTL, tcp_listen_cb, ref);
#else
listen (chooserFd, 5);
#endif
if (chooserFd > WellKnownSocketsMax)
WellKnownSocketsMax = chooserFd;
FD_SET (chooserFd, &WellKnownSocketsMask);
}
#ifndef MINIX
GetChooserAddr (addr, lenp)
char *addr;
int *lenp;
{
struct sockaddr_in in_addr;
int len;
len = sizeof in_addr;
if (getsockname (chooserFd, (struct sockaddr *)&in_addr, &len) < 0)
return -1;
memmove( addr, (char *) &in_addr, len);
*lenp = len;
return 0;
}
#else /* MINIX */
GetChooserAddr (addr, lenp)
char *addr;
int *lenp;
{
static struct sockaddr_in in_addr;
static int first_time= 1;
int len;
nwio_tcpconf_t tcpconf;
if (first_time)
{
first_time= 0;
if (ioctl(chooserFd, NWIOGTCPCONF, &tcpconf) == -1)
{
LogError("NWIOGTCPCONF failed: %s\n", strerror(errno));
return -1;
}
in_addr.sin_family= AF_INET;
in_addr.sin_port= tcpconf.nwtc_locport;
in_addr.sin_addr.s_addr= tcpconf.nwtc_locaddr;
if (addr == NULL)
return 0;
}
len = sizeof in_addr;
memmove( addr, (char *) &in_addr, len);
*lenp = len;
return 0;
}
#endif /* !MINIX */
#endif /* !STREAMSCONN */
#endif /* XDMCP */
|