Copy full IPv4 mapping (Bug #20665)
[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, size_t 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 #define SIN6_ADDR(s) (&((struct sockaddr_in6 *)s)->sin6_addr)
81
82 static Xauth *get_authptr(struct sockaddr *sockname, unsigned int socknamelen,
83                           int display)
84 {
85     char *addr = 0;
86     int addrlen = 0;
87     unsigned short family;
88     char hostnamebuf[256];   /* big enough for max hostname */
89     char dispbuf[40];   /* big enough to hold more than 2^64 base 10 */
90     int authnamelens[N_AUTH_PROTOS];
91     int i;
92
93     family = FamilyLocal; /* 256 */
94     switch(sockname->sa_family)
95     {
96 #ifdef AF_INET6
97     case AF_INET6:
98         addr = (char *) SIN6_ADDR(sockname);
99         addrlen = sizeof(*SIN6_ADDR(sockname));
100         if(!IN6_IS_ADDR_V4MAPPED(SIN6_ADDR(sockname)))
101         {
102             if(!IN6_IS_ADDR_LOOPBACK(SIN6_ADDR(sockname)))
103                 family = XCB_FAMILY_INTERNET_6;
104             break;
105         }
106         addr += 12;
107         /* if v4-mapped, fall through. */
108 #endif
109     case AF_INET:
110         if(!addr)
111             addr = (char *) &((struct sockaddr_in *)sockname)->sin_addr;
112         addrlen = sizeof(((struct sockaddr_in *)sockname)->sin_addr);
113         if(*(in_addr_t *) addr != htonl(INADDR_LOOPBACK))
114             family = XCB_FAMILY_INTERNET;
115         break;
116     case AF_UNIX:
117         break;
118     default:
119         return 0;   /* cannot authenticate this family */
120     }
121
122     snprintf(dispbuf, sizeof(dispbuf), "%d", display);
123
124     if (family == FamilyLocal) {
125         if (gethostname(hostnamebuf, sizeof(hostnamebuf)) == -1)
126             return 0;   /* do not know own hostname */
127         addr = hostnamebuf;
128         addrlen = strlen(addr);
129     }
130
131     for (i = 0; i < N_AUTH_PROTOS; i++)
132         authnamelens[i] = strlen(authnames[i]);
133     return XauGetBestAuthByAddr (family,
134                                  (unsigned short) addrlen, addr,
135                                  (unsigned short) strlen(dispbuf), dispbuf,
136                                  N_AUTH_PROTOS, authnames, authnamelens);
137 }
138
139 #ifdef HASXDMAUTH
140 static int next_nonce(void)
141 {
142     static int nonce = 0;
143     static pthread_mutex_t nonce_mutex = PTHREAD_MUTEX_INITIALIZER;
144     int ret;
145     pthread_mutex_lock(&nonce_mutex);
146     ret = nonce++;
147     pthread_mutex_unlock(&nonce_mutex);
148     return ret;
149 }
150
151 static void do_append(char *buf, int *idxp, void *val, size_t valsize) {
152     memcpy(buf + *idxp, val, valsize);
153     *idxp += valsize;
154 }
155 #endif
156      
157 static int compute_auth(xcb_auth_info_t *info, Xauth *authptr, struct sockaddr *sockname)
158 {
159     if (authname_match(AUTH_MC1, authptr->name, authptr->name_length)) {
160         info->datalen = memdup(&info->data, authptr->data, authptr->data_length);
161         if(!info->datalen)
162             return 0;
163         return 1;
164     }
165 #ifdef HASXDMAUTH
166 #define APPEND(buf,idx,val) do_append((buf),&(idx),&(val),sizeof(val))
167     if (authname_match(AUTH_XA1, authptr->name, authptr->name_length)) {
168         int j;
169
170         info->data = malloc(192 / 8);
171         if(!info->data)
172             return 0;
173
174         for (j = 0; j < 8; j++)
175             info->data[j] = authptr->data[j];
176         switch(sockname->sa_family) {
177         case AF_INET:
178             /*block*/ {
179             struct sockaddr_in *si = (struct sockaddr_in *) sockname;
180             APPEND(info->data, j, si->sin_addr.s_addr);
181             APPEND(info->data, j, si->sin_port);
182         }
183         break;
184 #ifdef AF_INET6
185         case AF_INET6:
186             /*block*/ {
187             struct sockaddr_in6 *si6 = (struct sockaddr_in6 *) sockname;
188             if(IN6_IS_ADDR_V4MAPPED(SIN6_ADDR(sockname)))
189             {
190                 do_append(info->data, j, &si6->sin6_addr.s6_addr[12], 4);
191                 APPEND(info->data, j, si6->sin6_port);
192             }
193             else
194             {
195                 /* XDM-AUTHORIZATION-1 does not handle IPv6 correctly.  Do the
196                    same thing Xlib does: use all zeroes for the 4-byte address
197                    and 2-byte port number. */
198                 uint32_t fakeaddr = 0;
199                 uint16_t fakeport = 0;
200                 APPEND(info->data, j, fakeaddr);
201                 APPEND(info->data, j, fakeport);
202             }
203         }
204         break;
205 #endif
206         case AF_UNIX:
207             /*block*/ {
208             uint32_t fakeaddr = htonl(0xffffffff - next_nonce());
209             uint16_t fakeport = htons(getpid());
210             APPEND(info->data, j, fakeaddr);
211             APPEND(info->data, j, fakeport);
212         }
213         break;
214         default:
215             free(info->data);
216             return 0;   /* do not know how to build this */
217         }
218         {
219             uint32_t now = htonl(time(0));
220             APPEND(info->data, j, now);
221         }
222         assert(j <= 192 / 8);
223         while (j < 192 / 8)
224             info->data[j++] = 0;
225         info->datalen = j;
226         XdmcpWrap ((unsigned char *) info->data, (unsigned char *) authptr->data + 8, (unsigned char *) info->data, info->datalen);
227         return 1;
228     }
229 #undef APPEND
230 #endif
231
232     return 0;   /* Unknown authorization type */
233 }
234
235 int _xcb_get_auth_info(int fd, xcb_auth_info_t *info, int display)
236 {
237     /* code adapted from Xlib/ConnDis.c, xtrans/Xtranssocket.c,
238        xtrans/Xtransutils.c */
239     char sockbuf[sizeof(struct sockaddr) + MAXPATHLEN];
240     unsigned int socknamelen = sizeof(sockbuf);   /* need extra space */
241     struct sockaddr *sockname = (struct sockaddr *) &sockbuf;
242     Xauth *authptr = 0;
243     int ret = 1;
244
245     if (getpeername(fd, sockname, &socknamelen) == -1)
246         return 0;  /* can only authenticate sockets */
247
248     authptr = get_authptr(sockname, socknamelen, display);
249     if (authptr == 0)
250         return 0;   /* cannot find good auth data */
251
252     info->namelen = memdup(&info->name, authptr->name, authptr->name_length);
253     if(info->namelen)
254         ret = compute_auth(info, authptr, sockname);
255     if(!ret)
256     {
257         free(info->name);
258         info->name = 0;
259         info->namelen = 0;
260     }
261     XauDisposeAuth(authptr);
262     return ret;
263 }