Apple: Apple launchd cleanup
[free-sw/xcb/libxcb] / src / xcb_util.c
1 /* Copyright (C) 2001-2004 Bart Massey and Jamey Sharp.
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a
4  * copy of this software and associated documentation files (the "Software"),
5  * to deal in the Software without restriction, including without limitation
6  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
7  * and/or sell copies of the Software, and to permit persons to whom the
8  * Software is furnished to do so, subject to the following conditions:
9  * 
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  * 
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
17  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19  * 
20  * Except as contained in this notice, the names of the authors or their
21  * institutions shall not be used in advertising or otherwise to promote the
22  * sale, use or other dealings in this Software without prior written
23  * authorization from the authors.
24  */
25
26 /* Utility functions implementable using only public APIs. */
27
28 #include <assert.h>
29 #include <sys/types.h>
30 #include <sys/socket.h>
31 #include <sys/un.h>
32 #include <netinet/in.h>
33 #ifdef DNETCONN
34 #include <netdnet/dnetdb.h>
35 #include <netdnet/dn.h>
36 #endif
37 #include <netdb.h>
38 #include <errno.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <stddef.h>
42 #include <unistd.h>
43 #include <string.h>
44
45 #include "xcb.h"
46 #include "xcbext.h"
47 #include "xcbint.h"
48
49 static const int error_connection = 1;
50
51 int xcb_popcount(uint32_t mask)
52 {
53     uint32_t y;
54     y = (mask >> 1) & 033333333333;
55     y = mask - y - ((y >> 1) & 033333333333);
56     return ((y + (y >> 3)) & 030707070707) % 077;
57 }
58
59 static int _xcb_parse_display(const char *name, char **host, char **protocol,
60                       int *displayp, int *screenp)
61 {
62     int len, display, screen;
63     char *slash, *colon, *dot, *end;
64     if(!name || !*name)
65         name = getenv("DISPLAY");
66     if(!name)
67         return 0;
68     slash = strrchr(name, '/');
69     if (slash) {
70         len = slash - name;
71         if (protocol) {
72             *protocol = malloc(len + 1);
73             if(!*protocol)
74                 return 0;
75             memcpy(*protocol, name, len);
76             (*protocol)[len] = '\0';
77         }
78         name = slash + 1;
79     } else
80         if (protocol)
81             *protocol = NULL;
82
83     colon = strrchr(name, ':');
84     if(!colon)
85         return 0;
86     len = colon - name;
87     ++colon;
88     display = strtoul(colon, &dot, 10);
89     if(dot == colon)
90         return 0;
91     if(*dot == '\0')
92         screen = 0;
93     else
94     {
95         if(*dot != '.')
96             return 0;
97         ++dot;
98         screen = strtoul(dot, &end, 10);
99         if(end == dot || *end != '\0')
100             return 0;
101     }
102     /* At this point, the display string is fully parsed and valid, but
103      * the caller's memory is untouched. */
104
105     *host = malloc(len + 1);
106     if(!*host)
107         return 0;
108     memcpy(*host, name, len);
109     (*host)[len] = '\0';
110     *displayp = display;
111     if(screenp)
112         *screenp = screen;
113     return 1;
114 }
115
116 int xcb_parse_display(const char *name, char **host, int *displayp,
117                              int *screenp)
118 {
119     return _xcb_parse_display(name, host, NULL, displayp, screenp);
120 }
121
122 static int _xcb_open_tcp(char *host, char *protocol, const unsigned short port);
123 static int _xcb_open_unix(char *protocol, const char *file);
124 #ifdef DNETCONN
125 static int _xcb_open_decnet(const char *host, char *protocol, const unsigned short port);
126 #endif
127 #ifdef HAVE_ABSTRACT_SOCKETS
128 static int _xcb_open_abstract(char *protocol, const char *file);
129 #endif
130
131 static int _xcb_open(char *host, char *protocol, const int display)
132 {
133     int fd;
134     static const char base[] = "/tmp/.X11-unix/X";
135     char file[sizeof(base) + 20];
136
137     if(*host)
138     {
139 #ifdef DNETCONN
140         /* DECnet displays have two colons, so _xcb_parse_display will have
141            left one at the end.  However, an IPv6 address can end with *two*
142            colons, so only treat this as a DECnet display if host ends with
143            exactly one colon. */
144         char *colon = strchr(host, ':');
145         if(colon && *(colon+1) == '\0')
146         {
147             *colon = '\0';
148             return _xcb_open_decnet(host, protocol, display);
149         }
150         else
151 #endif
152             if (protocol
153                 || strcmp("unix",host)) { /* follow the old unix: rule */
154
155                 /* display specifies TCP */
156                 unsigned short port = X_TCP_PORT + display;
157                 return _xcb_open_tcp(host, protocol, port);
158             }
159     }
160
161     /* display specifies Unix socket */
162     snprintf(file, sizeof(file), "%s%d", base, display);
163 #ifdef HAVE_ABSTRACT_SOCKETS
164     fd = _xcb_open_abstract(protocol, file);
165     if (fd >= 0 || (errno != ENOENT && errno != ECONNREFUSED))
166         return fd;
167
168 #endif
169     return  _xcb_open_unix(protocol, file);
170 }
171
172 #ifdef DNETCONN
173 static int _xcb_open_decnet(const char *host, const char *protocol, const unsigned short port)
174 {
175     int fd;
176     struct sockaddr_dn addr;
177     struct accessdata_dn accessdata;
178     struct nodeent *nodeaddr = getnodebyname(host);
179
180     if(!nodeaddr)
181         return -1;
182     if (protocol && strcmp("dnet",protocol))
183         return -1;
184     addr.sdn_family = AF_DECnet;
185
186     addr.sdn_add.a_len = nodeaddr->n_length;
187     memcpy(addr.sdn_add.a_addr, nodeaddr->n_addr, addr.sdn_add.a_len);
188
189     sprintf((char *)addr.sdn_objname, "X$X%d", port);
190     addr.sdn_objnamel = strlen((char *)addr.sdn_objname);
191     addr.sdn_objnum = 0;
192
193     fd = socket(PF_DECnet, SOCK_STREAM, 0);
194     if(fd == -1)
195         return -1;
196
197     memset(&accessdata, 0, sizeof(accessdata));
198     sprintf((char*)accessdata.acc_acc, "%d", getuid());
199     accessdata.acc_accl = strlen((char *)accessdata.acc_acc);
200     setsockopt(fd, DNPROTO_NSP, SO_CONACCESS, &accessdata, sizeof(accessdata));
201
202     if(connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1) {
203         close(fd);
204         return -1;
205     }
206     return fd;
207 }
208 #endif
209
210 static int _xcb_open_tcp(char *host, char *protocol, const unsigned short port)
211 {
212     int fd = -1;
213     struct addrinfo hints;
214     char service[6]; /* "65535" with the trailing '\0' */
215     struct addrinfo *results, *addr;
216     char *bracket;
217
218     if (protocol && strcmp("tcp",protocol))
219         return -1;
220
221     memset(&hints, 0, sizeof(hints));
222 #ifdef AI_ADDRCONFIG
223     hints.ai_flags |= AI_ADDRCONFIG;
224 #endif
225 #ifdef AI_NUMERICSERV
226     hints.ai_flags |= AI_NUMERICSERV;
227 #endif
228     hints.ai_family = AF_UNSPEC;
229     hints.ai_socktype = SOCK_STREAM;
230
231 #ifdef AF_INET6
232     /* Allow IPv6 addresses enclosed in brackets. */
233     if(host[0] == '[' && (bracket = strrchr(host, ']')) && bracket[1] == '\0')
234     {
235         *bracket = '\0';
236         ++host;
237         hints.ai_flags |= AI_NUMERICHOST;
238         hints.ai_family = AF_INET6;
239     }
240 #endif
241
242     snprintf(service, sizeof(service), "%hu", port);
243     if(getaddrinfo(host, service, &hints, &results))
244         /* FIXME: use gai_strerror, and fill in error connection */
245         return -1;
246
247     for(addr = results; addr; addr = addr->ai_next)
248     {
249         fd = socket(addr->ai_family, addr->ai_socktype, addr->ai_protocol);
250         if(fd >= 0) {
251             if (connect(fd, addr->ai_addr, addr->ai_addrlen) >= 0)
252                 break;
253             close(fd);
254             fd = -1;
255         }
256     }
257     freeaddrinfo(results);
258     return fd;
259 }
260
261 static int _xcb_open_unix(char *protocol, const char *file)
262 {
263     int fd;
264     struct sockaddr_un addr;
265
266     if (protocol && strcmp("unix",protocol))
267         return -1;
268
269     strcpy(addr.sun_path, file);
270     addr.sun_family = AF_UNIX;
271 #ifdef HAVE_SOCKADDR_SUN_LEN
272     addr.sun_len = SUN_LEN(&addr);
273 #endif
274     fd = socket(AF_UNIX, SOCK_STREAM, 0);
275     if(fd == -1)
276         return -1;
277     if(connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1) {
278         close(fd);
279         return -1;
280     }
281     return fd;
282 }
283
284 #ifdef HAVE_ABSTRACT_SOCKETS
285 static int _xcb_open_abstract(char *protocol, const char *file)
286 {
287     int fd;
288     struct sockaddr_un addr = {0};
289     socklen_t namelen;
290
291     if (protocol && strcmp("unix",protocol))
292         return -1;
293
294     strcpy(addr.sun_path + 1, file);
295     addr.sun_family = AF_UNIX;
296     namelen = offsetof(struct sockaddr_un, sun_path) + 1 + strlen(file);
297 #ifdef HAVE_SOCKADDR_SUN_LEN
298     addr.sun_len = 1 + strlen(file);
299 #endif
300     fd = socket(AF_UNIX, SOCK_STREAM, 0);
301     if (fd == -1)
302         return -1;
303     if (connect(fd, (struct sockaddr *) &addr, namelen) == -1) {
304         close(fd);
305         return -1;
306     }
307     return fd;
308 }
309 #endif
310
311 xcb_connection_t *xcb_connect(const char *displayname, int *screenp)
312 {
313     int fd, display = 0;
314     char *host;
315     char *protocol;
316     xcb_connection_t *c;
317     xcb_auth_info_t auth;
318     
319     int parsed = _xcb_parse_display(displayname, &host, &protocol, &display, screenp);
320
321 #ifdef HAVE_LAUNCHD
322     if(!displayname)
323         displayname = getenv("DISPLAY");
324     if(displayname && strlen(displayname)>11 && !strncmp(displayname, "/tmp/launch", 11))
325         fd = _xcb_open_unix(NULL, displayname);
326     else
327 #endif
328     if(!parsed)
329         return (xcb_connection_t *) &error_connection;
330     else
331         fd = _xcb_open(host, protocol, display);
332     free(host);
333
334     if(fd == -1)
335         return (xcb_connection_t *) &error_connection;
336
337     if(_xcb_get_auth_info(fd, &auth, display))
338     {
339         c = xcb_connect_to_fd(fd, &auth);
340         free(auth.name);
341         free(auth.data);
342     }
343     else
344         c = xcb_connect_to_fd(fd, 0);
345     return c;
346 }
347
348 xcb_connection_t *xcb_connect_to_display_with_auth_info(const char *displayname, xcb_auth_info_t *auth, int *screenp)
349 {
350     int fd, display = 0;
351     char *host;
352     char *protocol;
353
354     int parsed = _xcb_parse_display(displayname, &host, &protocol, &display, screenp);
355     
356 #ifdef HAVE_LAUNCHD
357     if(!displayname)
358         displayname = getenv("DISPLAY");
359     if(displayname && strlen(displayname)>11 && !strncmp(displayname, "/tmp/launch", 11))
360         fd = _xcb_open_unix(NULL, displayname);
361     else
362 #endif
363     if(!parsed)
364         return (xcb_connection_t *) &error_connection;
365     else
366         fd = _xcb_open(host, protocol, display);
367     free(host);
368
369     if(fd == -1)
370         return (xcb_connection_t *) &error_connection;
371
372     return xcb_connect_to_fd(fd, auth);
373 }