afab3189a14a5ef1c0b66adb8787e184e2e00f86
[free-sw/xcb/libxcb] / src / xcb_auth.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 /* Authorization systems for the X protocol. */
27
28 #include <assert.h>
29 #include <X11/Xauth.h>
30 #include <sys/socket.h>
31 #include <netinet/in.h>
32 #include <sys/un.h>
33 #include <sys/param.h>
34 #include <unistd.h>
35 #include <stdlib.h>
36
37 #include "xcb.h"
38 #include "xcbint.h"
39
40 #ifdef HASXDMAUTH
41 #include <X11/Xdmcp.h>
42 #endif
43
44 enum auth_protos {
45 #ifdef HASXDMAUTH
46     AUTH_XA1,
47 #endif
48     AUTH_MC1,
49     N_AUTH_PROTOS
50 };
51
52 static char *authnames[N_AUTH_PROTOS] = {
53 #ifdef HASXDMAUTH
54     "XDM-AUTHORIZATION-1",
55 #endif
56     "MIT-MAGIC-COOKIE-1",
57 };
58
59 static size_t memdup(char **dst, void *src, size_t len)
60 {
61     if(len)
62         *dst = malloc(len);
63     else
64         *dst = 0;
65     if(!*dst)
66         return 0;
67     memcpy(*dst, src, len);
68     return len;
69 }
70
71 static int authname_match(enum auth_protos kind, char *name, int namelen)
72 {
73     if(strlen(authnames[kind]) != namelen)
74         return 0;
75     if(memcmp(authnames[kind], name, namelen))
76         return 0;
77     return 1;
78 }
79
80 static Xauth *get_authptr(struct sockaddr *sockname, unsigned int socknamelen,
81                           int display)
82 {
83     char *addr = 0;
84     int addrlen = 0;
85     unsigned short family;
86     char hostnamebuf[256];   /* big enough for max hostname */
87     char dispbuf[40];   /* big enough to hold more than 2^64 base 10 */
88     int authnamelens[N_AUTH_PROTOS];
89     int i;
90
91     family = FamilyLocal; /* 256 */
92     switch(sockname->sa_family)
93     {
94     case AF_INET6:
95         addr = (char *) &((struct sockaddr_in6 *)sockname)->sin6_addr;
96         addrlen = sizeof(((struct sockaddr_in6 *)sockname)->sin6_addr);
97         if(!IN6_IS_ADDR_V4MAPPED(addr))
98         {
99             if(!IN6_IS_ADDR_LOOPBACK(addr))
100                 family = XCB_FAMILY_INTERNET_6;
101             break;
102         }
103         addr += 12;
104         /* if v4-mapped, fall through. */
105     case AF_INET:
106         if(!addr)
107             addr = (char *) &((struct sockaddr_in *)sockname)->sin_addr;
108         addrlen = sizeof(((struct sockaddr_in *)sockname)->sin_addr);
109         if(*(in_addr_t *) addr != htonl(INADDR_LOOPBACK))
110             family = XCB_FAMILY_INTERNET;
111         break;
112     case AF_UNIX:
113         break;
114     default:
115         return 0;   /* cannot authenticate this family */
116     }
117
118     snprintf(dispbuf, sizeof(dispbuf), "%d", display);
119
120     if (family == FamilyLocal) {
121         if (gethostname(hostnamebuf, sizeof(hostnamebuf)) == -1)
122             return 0;   /* do not know own hostname */
123         addr = hostnamebuf;
124         addrlen = strlen(addr);
125     }
126
127     for (i = 0; i < N_AUTH_PROTOS; i++)
128         authnamelens[i] = strlen(authnames[i]);
129     return XauGetBestAuthByAddr (family,
130                                  (unsigned short) addrlen, addr,
131                                  (unsigned short) strlen(dispbuf), dispbuf,
132                                  N_AUTH_PROTOS, authnames, authnamelens);
133 }
134
135 #ifdef HASXDMAUTH
136 static int next_nonce(void)
137 {
138     static int nonce = 0;
139     static pthread_mutex_t nonce_mutex = PTHREAD_MUTEX_INITIALIZER;
140     int ret;
141     pthread_mutex_lock(&nonce_mutex);
142     ret = nonce++;
143     pthread_mutex_unlock(&nonce_mutex);
144     return ret;
145 }
146
147 static void do_append(char *buf, int *idxp, void *val, size_t valsize) {
148     memcpy(buf + *idxp, val, valsize);
149     *idxp += valsize;
150 }
151 #endif
152      
153 static int compute_auth(xcb_auth_info_t *info, Xauth *authptr, struct sockaddr *sockname)
154 {
155     if (authname_match(AUTH_MC1, authptr->name, authptr->name_length)) {
156         info->datalen = memdup(&info->data, authptr->data, authptr->data_length);
157         if(!info->datalen)
158             return 0;
159         return 1;
160     }
161 #ifdef HASXDMAUTH
162 #define APPEND(buf,idx,val) do_append((buf),&(idx),&(val),sizeof(val))
163     if (authname_match(AUTH_XA1, authptr->name, authptr->name_length)) {
164         int j;
165
166         info->data = malloc(192 / 8);
167         if(!info->data)
168             return 0;
169
170         for (j = 0; j < 8; j++)
171             info->data[j] = authptr->data[j];
172         switch(sockname->sa_family) {
173         case AF_INET:
174             /*block*/ {
175             struct sockaddr_in *si = (struct sockaddr_in *) sockname;
176             APPEND(info->data, j, si->sin_addr.s_addr);
177             APPEND(info->data, j, si->sin_port);
178         }
179         break;
180         case AF_INET6:
181             /*block*/ {
182             struct sockaddr_in6 *si6 = (struct sockaddr_in6 *) sockname;
183             if(IN6_IS_ADDR_V4MAPPED(si6->sin6_addr.s6_addr))
184             {
185                 APPEND(info->data, j, si6->sin6_addr.s6_addr[12]);
186                 APPEND(info->data, j, si6->sin6_port);
187             }
188             else
189             {
190                 /* XDM-AUTHORIZATION-1 does not handle IPv6 correctly.  Do the
191                    same thing Xlib does: use all zeroes for the 4-byte address
192                    and 2-byte port number. */
193                 long fakeaddr = 0;
194                 short fakeport = 0;
195                 APPEND(info->data, j, fakeaddr);
196                 APPEND(info->data, j, fakeport);
197             }
198         }
199         break;
200         case AF_UNIX:
201             /*block*/ {
202             long fakeaddr = htonl(0xffffffff - next_nonce());
203             short fakeport = htons(getpid());
204             APPEND(info->data, j, fakeaddr);
205             APPEND(info->data, j, fakeport);
206         }
207         break;
208         default:
209             free(info->data);
210             return 0;   /* do not know how to build this */
211         }
212         {
213             long now;
214             time(&now);
215             now = htonl(now);
216             APPEND(info->data, j, now);
217         }
218         assert(j <= 192 / 8);
219         while (j < 192 / 8)
220             info->data[j++] = 0;
221         info->datalen = j;
222         XdmcpWrap ((unsigned char *) info->data, (unsigned char *) authptr->data + 8, (unsigned char *) info->data, info->datalen);
223         return 1;
224     }
225 #undef APPEND
226 #endif
227
228     return 0;   /* Unknown authorization type */
229 }
230
231 int _xcb_get_auth_info(int fd, xcb_auth_info_t *info, int display)
232 {
233     /* code adapted from Xlib/ConnDis.c, xtrans/Xtranssocket.c,
234        xtrans/Xtransutils.c */
235     char sockbuf[sizeof(struct sockaddr) + MAXPATHLEN];
236     unsigned int socknamelen = sizeof(sockbuf);   /* need extra space */
237     struct sockaddr *sockname = (struct sockaddr *) &sockbuf;
238     Xauth *authptr = 0;
239     int ret = 1;
240
241     if (getpeername(fd, sockname, &socknamelen) == -1)
242         return 0;  /* can only authenticate sockets */
243
244     authptr = get_authptr(sockname, socknamelen, display);
245     if (authptr == 0)
246         return 0;   /* cannot find good auth data */
247
248     info->namelen = memdup(&info->name, authptr->name, authptr->name_length);
249     if(info->namelen)
250         ret = compute_auth(info, authptr, sockname);
251     if(!ret)
252     {
253         free(info->name);
254         info->name = 0;
255         info->namelen = 0;
256     }
257     XauDisposeAuth(authptr);
258     return ret;
259 }