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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
|
/* GDM - The Gnome Display Manager
* Copyright (C) 1998, 1999, 2000 Martin K. Petersen <mkp@mkp.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* Code for cookie handling. This really needs to be modularized to
* support other XAuth types and possibly DECnet... */
#include <config.h>
#include <gnome.h>
#include <sys/stat.h>
#include <netdb.h>
#include <netinet/in.h>
#include <X11/Xauth.h>
#include <vicious.h>
#include "gdm.h"
#include "cookie.h"
#include "misc.h"
#include "filecheck.h"
#include "auth.h"
static const gchar RCSid[]="$Id$";
/* Local prototypes */
static void gdm_auth_purge (GdmDisplay *d, FILE *af);
/* Configuration option variables */
extern gchar *GdmServAuthDir;
extern gchar *GdmUserAuthDir;
extern gchar *GdmUserAuthFile;
extern gchar *GdmUserAuthFB;
extern gint GdmUserMaxFile;
extern gint GdmRelaxPerms;
extern gboolean GdmDebug;
static gboolean
add_auth_entry (GdmDisplay *d, FILE *af, FILE *af2,
unsigned short family, const char *addr, int addrlen)
{
Xauth *xa;
gchar *dispnum;
if (!d)
return FALSE;
dispnum = g_strdup_printf ("%d", d->dispnum);
xa = malloc (sizeof (Xauth));
if (xa == NULL)
return FALSE;
xa->family = family;
xa->address = malloc (addrlen);
if (xa->address == NULL) {
free (xa);
return FALSE;
}
memcpy (xa->address, addr, addrlen);
xa->address_length = addrlen;
xa->number = strdup (dispnum);
xa->number_length = strlen (dispnum);
xa->name = strdup ("MIT-MAGIC-COOKIE-1");
xa->name_length = strlen ("MIT-MAGIC-COOKIE-1");
xa->data = malloc (16);
if (xa->data == NULL) {
free (xa->number);
free (xa->name);
free (xa->address);
free (xa);
return FALSE;
}
memcpy (xa->data, d->bcookie, 16);
xa->data_length = 16;
XauWriteAuth (af, xa);
if (af2 != NULL)
XauWriteAuth (af2, xa);
d->auths = g_slist_append (d->auths, xa);
g_free (dispnum);
return TRUE;
}
/**
* gdm_auth_secure_display:
* @d: Pointer to a GdmDisplay struct
*
* Create authentication cookies for local and remote displays.
*
* Returns TRUE on success and FALSE on error.
*/
gboolean
gdm_auth_secure_display (GdmDisplay *d)
{
FILE *af, *af_gdm;
struct hostent *hentry = NULL;
struct in_addr *ia = NULL;
const char lo[] = {127,0,0,1};
guint i;
const GList *local_addys = NULL;
if (!d)
return FALSE;
umask (022);
gdm_debug ("gdm_auth_secure_display: Setting up access for %s", d->name);
g_free (d->authfile);
d->authfile = NULL;
g_free (d->authfile_gdm);
d->authfile_gdm = NULL;
if (d->server_uid != 0) {
int authfd;
/* Note, Xnest can't use the ServAuthDir unless running as
* root, which is rare anyway, unless the user is a wanker */
d->authfile = g_strconcat (GdmUserAuthFB, "/.gdmXXXXXX", NULL);
umask (077);
authfd = mkstemp (d->authfile);
umask (022);
if (authfd == -1) {
gdm_error (_("%s: Could not make new cookie file in %s"),
"gdm_auth_secure_display", GdmUserAuthFB);
g_free (d->authfile);
d->authfile = NULL;
return FALSE;
}
/* Make it owned by the user that Xnest is started as */
fchown (authfd, d->server_uid, -1);
af = fdopen (authfd, "w");
if (af == NULL) {
g_free (d->authfile);
d->authfile = NULL;
return FALSE;
}
/* Make another authfile since the greeter can't read the server/user
* readable file */
d->authfile_gdm = g_strconcat (GdmServAuthDir, "/", d->name, ".Xauth", NULL);
unlink (d->authfile_gdm);
af_gdm = fopen (d->authfile_gdm, "w");
if (af_gdm == NULL) {
g_free (d->authfile_gdm);
d->authfile_gdm = NULL;
g_free (d->authfile);
d->authfile = NULL;
fclose (af);
return FALSE;
}
} else {
/* gdm and xserver authfile can be the same, server will run as root */
d->authfile = g_strconcat (GdmServAuthDir, "/", d->name, ".Xauth", NULL);
unlink (d->authfile);
af = fopen (d->authfile, "w");
if (af == NULL) {
g_free (d->authfile);
d->authfile = NULL;
return FALSE;
}
af_gdm = NULL;
}
/* If this is a local display the struct hasn't changed and we
* have to eat up old authentication cookies before baking new
* ones... */
if (SERVER_IS_LOCAL (d) && d->auths) {
GSList *li;
for (li = d->auths; li != NULL; li = li->next) {
XauDisposeAuth ((Xauth *) li->data);
li->data = NULL;
}
g_slist_free (d->auths);
d->auths = NULL;
g_free (d->cookie);
d->cookie = NULL;
g_free (d->bcookie);
d->bcookie = NULL;
}
/* Create new random cookie */
gdm_cookie_generate (d);
/* reget local host if local as it may have changed */
if (SERVER_IS_LOCAL (d)) {
char hostname[1024];
if (gethostname (hostname, 1023) == 0) {
g_free (d->hostname);
d->hostname = g_strdup (hostname);
}
local_addys = gdm_peek_local_address_list ();
} else {
/* Find FQDN or IP of display host */
hentry = gethostbyname (d->hostname);
if (hentry == NULL) {
gdm_error ("gdm_auth_secure_display: Error getting hentry for %s", d->hostname);
/* eeek, there will be nothing to add */
return FALSE;
} else {
/* first addy, would be loopback in case of local */
ia = (struct in_addr *) hentry->h_addr_list[0];
}
}
/* Local access also in case the host is very local */
if (SERVER_IS_LOCAL (d) ||
(ia != NULL && gdm_is_local_addr (ia))) {
gdm_debug ("gdm_auth_secure_display: Setting up socket access");
if ( ! add_auth_entry (d, af, af_gdm, FamilyLocal,
d->hostname, strlen (d->hostname)))
return FALSE;
/* local machine but not local if you get my meaning, add
* the host gotten by gethostname as well if it's different
* since the above is probably localhost */
if ( ! SERVER_IS_LOCAL (d)) {
char hostname[1024];
if (gethostname (hostname, 1023) == 0 &&
strcmp (hostname, d->hostname) != 0) {
if ( ! add_auth_entry (d, af, af_gdm, FamilyLocal,
hostname,
strlen (hostname)))
return FALSE;
}
} else {
/* local machine, perhaps we haven't added
* localhost.localdomain to socket access */
const char *localhost = "localhost.localdomain";
if (strcmp (localhost, d->hostname) != 0) {
if ( ! add_auth_entry (d, af, af_gdm, FamilyLocal,
localhost,
strlen (localhost))) {
return FALSE;
}
}
}
}
gdm_debug ("gdm_auth_secure_display: Setting up network access");
/* Network access: Write out an authentication entry for each of
* this host's official addresses */
for (i = 0 ; hentry != NULL && i < hentry->h_length ; i++) {
ia = (struct in_addr *) hentry->h_addr_list[i];
if (ia == NULL)
break;
if ( ! add_auth_entry (d, af, af_gdm, FamilyInternet,
(char *)&ia->s_addr, 4))
return FALSE;
}
/* Network access: Write out an authentication entry for each of
* this host's local addresses if any */
for (; local_addys != NULL; local_addys = local_addys->next) {
ia = (struct in_addr *) local_addys->data;
if (ia == NULL)
break;
if ( ! add_auth_entry (d, af, af_gdm, FamilyInternet,
(char *)&ia->s_addr, 4))
return FALSE;
}
/* if local server add loopback */
if (SERVER_IS_LOCAL (d)) {
if ( ! add_auth_entry (d, af, af_gdm, FamilyInternet,
lo, 4))
return FALSE;
}
fclose (af);
if (af_gdm != NULL)
fclose (af_gdm);
ve_setenv ("XAUTHORITY", d->authfile, TRUE);
if (GdmDebug)
gdm_debug ("gdm_auth_secure_display: Setting up access for %s - %d entries",
d->name, g_slist_length (d->auths));
return TRUE;
}
/**
* gdm_auth_user_add:
* @d: Pointer to a GdmDisplay struct
* @user: Userid of the user whose cookie file to add entries to
* @homedir: The user's home directory
*
* Remove all cookies referring to this display from user's cookie
* file and append the ones specified in the display's authlist.
*
* Returns TRUE on success and FALSE on error.
*/
gboolean
gdm_auth_user_add (GdmDisplay *d, uid_t user, const char *homedir)
{
const char *authdir;
gint authfd;
FILE *af;
GSList *auths = NULL;
if (!d)
return FALSE;
gdm_debug ("gdm_auth_user_add: Adding cookie for %d", user);
/* Determine whether UserAuthDir is specified. Otherwise ~user is used */
if (*GdmUserAuthDir)
authdir = GdmUserAuthDir;
else
authdir = homedir;
umask (077);
/* Find out if the Xauthority file passes the paranoia check */
if (authdir == NULL ||
! gdm_file_check ("gdm_auth_user_add", user, authdir, GdmUserAuthFile,
TRUE, GdmUserMaxFile, GdmRelaxPerms)) {
/* No go. Let's create a fallback file in GdmUserAuthFB (/tmp) */
d->authfb = TRUE;
d->userauth = g_strconcat (GdmUserAuthFB, "/.gdmXXXXXX", NULL);
authfd = mkstemp (d->userauth);
if (authfd == -1) {
gdm_error (_("gdm_auth_user_add: Could not open cookie file %s"), d->userauth);
g_free (d->userauth);
d->userauth = NULL;
umask (022);
return FALSE;
}
af = fdopen (authfd, "w");
}
else { /* User's Xauthority file is ok */
d->authfb = FALSE;
d->userauth = g_strconcat (authdir, "/", GdmUserAuthFile, NULL);
/* FIXME: Better implement my own locking. The libXau one is not kosher */
if (XauLockAuth (d->userauth, 3, 3, 0) != LOCK_SUCCESS) {
gdm_error (_("gdm_auth_user_add: Could not lock cookie file %s"), d->userauth);
g_free (d->userauth);
d->userauth = NULL;
umask (022);
return FALSE;
}
af = fopen (d->userauth, "a+");
}
if (!af) {
/* Really no need to clean up here - this process is a goner anyway */
gdm_error (_("gdm_auth_user_add: Could not open cookie file %s"), d->userauth);
XauUnlockAuth (d->userauth);
g_free (d->userauth);
d->userauth = NULL;
umask (022);
return FALSE;
}
gdm_debug ("gdm_auth_user_add: Using %s for cookies", d->userauth);
/* If not a fallback file, nuke any existing cookies for this display */
if (! d->authfb)
gdm_auth_purge (d, af);
/* Append the authlist for this display to the cookie file */
auths = d->auths;
while (auths) {
XauWriteAuth (af, auths->data);
auths = auths->next;
}
fclose (af);
XauUnlockAuth (d->userauth);
gdm_debug ("gdm_auth_user_add: Done");
umask (022);
return TRUE;
}
/**
* gdm_auth_user_remove:
* @d: Pointer to a GdmDisplay struct
* @user: Userid of the user whose cookie file to remove entries from
*
* Remove all cookies referring to this display from user's cookie
* file.
*/
void
gdm_auth_user_remove (GdmDisplay *d, uid_t user)
{
FILE *af;
const gchar *authfile;
gchar *authdir;
if (!d || !d->userauth)
return;
gdm_debug ("gdm_auth_user_remove: Removing cookie from %s (%d)", d->userauth, d->authfb);
/* If we are using the fallback cookie location, simply nuke the
* cookie file */
if (d->authfb) {
unlink (d->userauth);
g_free (d->userauth);
d->userauth = NULL;
return;
}
authfile = g_basename (d->userauth);
authdir = g_dirname (d->userauth);
/* Now, the cookie file could be owned by a malicious user who
* decided to concatenate something like his entire MP3 collection
* to it. So we better play it safe... */
if (! gdm_file_check ("gdm_auth_user_remove", user, authdir, authfile,
TRUE, GdmUserMaxFile, GdmRelaxPerms)) {
g_free (authdir);
gdm_error (_("gdm_auth_user_remove: Ignoring suspiciously looking cookie file %s"), d->userauth);
return;
}
g_free (authdir);
/* Lock user's cookie jar and open it for writing */
if (XauLockAuth (d->userauth, 3, 3, 0) != LOCK_SUCCESS)
return;
af = fopen (d->userauth, "a+");
if (!af) {
XauUnlockAuth (d->userauth);
return;
}
/* Purge entries for this display from the cookie jar */
gdm_auth_purge (d, af);
/* Close the file and unlock it */
fclose (af);
XauUnlockAuth (d->userauth);
g_free (d->userauth);
d->userauth = NULL;
}
/**
* gdm_auth_purge:
* @d: Pointer to a GdmDisplay struct
* @af: File handle to a cookie file
*
* Remove all cookies referring to this display a cookie file.
*/
static void
gdm_auth_purge (GdmDisplay *d, FILE *af)
{
Xauth *xa;
GSList *keep = NULL;
if (!d || !af)
return;
gdm_debug ("gdm_auth_purge: %s", d->name);
fseek (af, 0L, SEEK_SET);
/* Read the user's entire Xauth file into memory to avoid
* temporary file issues. Then remove any instance of this display
* in the cookie jar... */
while ( (xa = XauReadAuth (af)) ) {
gboolean match = FALSE;
GSList *alist = d->auths;
while (alist) {
Xauth *da = alist->data;
if (! memcmp (da->address, xa->address, xa->address_length) &&
! memcmp (da->number, xa->number, xa->number_length))
match = TRUE;
alist = alist->next;
}
if (match)
XauDisposeAuth (xa);
else
keep = g_slist_append (keep, xa);
}
/* Rewind the file */
af = freopen (d->userauth, "w", af);
if (!af) {
XauUnlockAuth (d->userauth);
return;
}
/* Write out remaining entries */
while (keep) {
XauWriteAuth (af, keep->data);
XauDisposeAuth (keep->data);
keep = keep->next;
}
g_slist_free (keep);
}
/* EOF */
|