summaryrefslogtreecommitdiff
path: root/daemon/auth.c
blob: 930232950219e9133ae758a5588153e6819396fb (plain)
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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * 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 <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <netdb.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <errno.h>

#include <X11/Xauth.h>
#include <glib/gi18n.h>

#include "gdm.h"
#include "cookie.h"
#include "misc.h"
#include "filecheck.h"
#include "auth.h"

#include "gdm-common.h"
#include "gdm-log.h"
#include "gdm-daemon-config.h"

/* Ensure we know about FamilyInternetV6 even if what we're compiling
   against doesn't */
#ifdef ENABLE_IPV6
#ifndef FamilyInternetV6
#define FamilyInternetV6	6
#endif /* ! FamilyInternetV6 */
#endif /* ENABLE_IPV6 */

/* Local prototypes */
static FILE *gdm_auth_purge (GdmDisplay *d, FILE *af, gboolean remove_when_empty);

static void
display_add_error (GdmDisplay *d)
{
	if (errno != 0)
		gdm_error (_("%s: Could not write new authorization entry: %s"),
			   "add_auth_entry", strerror (errno));
	else
		gdm_error (_("%s: Could not write new authorization entry.  "
			     "Possibly out of diskspace"),
			   "add_auth_entry");
	if (d->attached) {
		char *s = g_strdup_printf
			(C_(N_("GDM could not write a new authorization "
			       "entry to disk.  Possibly out of diskspace.%s%s")),
			 errno != 0 ? "  Error: " : "",
			 errno != 0 ? strerror (errno) : "");
		gdm_text_message_dialog (s);
		g_free (s);
	}
}

static gboolean
add_auth_entry (GdmDisplay *d,
		GSList **authlist,
		FILE *af,
		FILE *af2,
		unsigned short family,
		const char *addr,
		int addrlen)
{
	Xauth *xa;
	gchar *dispnum;

	if G_UNLIKELY (!d)
		return FALSE;

	xa = malloc (sizeof (Xauth));

	if G_UNLIKELY (xa == NULL)
		return FALSE;

	xa->family = family;
	if (addrlen == 0) {
		xa->address = NULL;
		xa->address_length = 0;
	} else {
		xa->address = malloc (addrlen);
		if G_UNLIKELY (xa->address == NULL) {
			free (xa);
			return FALSE;
		}

		memcpy (xa->address, addr, addrlen);
		xa->address_length = addrlen;
	}

	dispnum = g_strdup_printf ("%d", d->dispnum);
	xa->number = strdup (dispnum);
	xa->number_length = strlen (dispnum);
	g_free (dispnum);

	xa->name = strdup ("MIT-MAGIC-COOKIE-1");
	xa->name_length = strlen ("MIT-MAGIC-COOKIE-1");
	xa->data = malloc (16);
	if G_UNLIKELY (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;

	if (af != NULL) {
		errno = 0;
		if G_UNLIKELY ( ! XauWriteAuth (af, xa)) {
			free (xa->data);
			free (xa->number);
			free (xa->name);
			free (xa->address);
			free (xa);
			display_add_error (d);
			return FALSE;
		}

		if (af2 != NULL) {
			errno = 0;
			if G_UNLIKELY ( ! XauWriteAuth (af2, xa)) {
				free (xa->data);
				free (xa->number);
				free (xa->name);
				free (xa->address);
				free (xa);
				display_add_error (d);
				return FALSE;
			}
		}
	}

	*authlist = g_slist_append (*authlist, xa);

	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;
	int closeret;

	if G_UNLIKELY (!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, nested display can't use the GDM_KEY_SERV_AUTHDIR unless 
		 * running as root, which is rare anyway. */

		d->authfile = g_build_filename (gdm_daemon_config_get_value_string (GDM_KEY_USER_AUTHDIR_FALLBACK), ".gdmXXXXXX", NULL);

		umask (077);
		authfd = g_mkstemp (d->authfile);
		umask (022);

		if G_UNLIKELY (authfd == -1) {
			gdm_error (_("%s: Could not make new cookie file in %s"),
				   "gdm_auth_secure_display", gdm_daemon_config_get_value_string (GDM_KEY_USER_AUTHDIR_FALLBACK));
			g_free (d->authfile);
			d->authfile = NULL;
			return FALSE;
		}

		/* Make it owned by the user that nested display is started as */
		fchown (authfd, d->server_uid, -1);

		VE_IGNORE_EINTR (af = fdopen (authfd, "w"));

		if G_UNLIKELY (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 = gdm_make_filename (gdm_daemon_config_get_value_string (GDM_KEY_SERV_AUTHDIR), d->name, ".Xauth");
		af_gdm = gdm_safe_fopen_w (d->authfile_gdm, 0644);

		if G_UNLIKELY (af_gdm == NULL) {
			gdm_error (_("%s: Cannot safely open %s"),
				   "gdm_auth_secure_display",
				   d->authfile_gdm);

			g_free (d->authfile_gdm);
			d->authfile_gdm = NULL;
			g_free (d->authfile);
			d->authfile = NULL;
			VE_IGNORE_EINTR (fclose (af));
			return FALSE;
		}
	} else {
		/* gdm and xserver authfile can be the same, server will run as root */
		d->authfile = gdm_make_filename (gdm_daemon_config_get_value_string (GDM_KEY_SERV_AUTHDIR), d->name, ".Xauth");
		af = gdm_safe_fopen_w (d->authfile, 0644);

		if G_UNLIKELY (af == NULL) {
			gdm_error (_("%s: Cannot safely open %s"),
				   "gdm_auth_secure_display",
				   d->authfile);

			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) {
		gdm_auth_free_auth_list (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->cookie, &d->bcookie);

	/* reget local host if local as it may have changed */
	if (SERVER_IS_LOCAL (d)) {
		char hostname[1024];

		hostname[1023] = '\0';
		if G_LIKELY (gethostname (hostname, 1023) == 0) {
			g_free (d->hostname);
			d->hostname = g_strdup (hostname);
		}
	}

	if ( ! add_auth_entry (d, &(d->auths), af, af_gdm, FamilyWild, NULL, 0))
		return FALSE;

	gdm_debug ("gdm_auth_secure_display: Setting up access");

	VE_IGNORE_EINTR (closeret = fclose (af));
	if G_UNLIKELY (closeret < 0) {
		display_add_error (d);
		return FALSE;
	}
	if (af_gdm != NULL) {
		VE_IGNORE_EINTR (closeret = fclose (af_gdm));
		if G_UNLIKELY (closeret < 0) {
			display_add_error (d);
			return FALSE;
		}
	}
	g_setenv ("XAUTHORITY", GDM_AUTHFILE (d), TRUE);

	if G_UNLIKELY (gdm_daemon_config_get_value_bool (GDM_KEY_DEBUG))
		gdm_debug ("gdm_auth_secure_display: Setting up access for %s - %d entries", 
			   d->name, g_slist_length (d->auths));

	return TRUE;
}

#define SA(__s)	   ((struct sockaddr *) __s)
#define SIN(__s)   ((struct sockaddr_in *) __s)
#define SIN6(__s)  ((struct sockaddr_in6 *) __s)

static gboolean
add_auth_entry_for_addr (GdmDisplay              *d,
			 GSList                 **authlist,
			 struct sockaddr_storage *ss)
{
	const char    *addr;
	int            len;
	unsigned short family;

	switch (ss->ss_family) {
#ifdef ENABLE_IPV6
	case AF_INET6:
		family = FamilyInternetV6;
		addr = (const char *) &SIN6 (ss)->sin6_addr;
		len = sizeof (struct in6_addr);
		break;
#endif
	case AF_INET:
	default:
		family = FamilyInternet;
		addr = (const char *) &SIN (ss)->sin_addr;
		len = sizeof (struct in_addr);
		break;
	}

	return add_auth_entry (d, authlist, NULL, NULL, family, addr, len);
}

static GSList *
get_local_auths (GdmDisplay *d)
{
	gboolean is_local = FALSE;
	const char lo[] = {127,0,0,1};
	guint i;
	const GList *local_addys = NULL;
	gboolean added_lo = FALSE;
	GSList *auths = NULL;

	if G_UNLIKELY (!d)
		return NULL;

	if (SERVER_IS_LOCAL (d)) {
		char hostname[1024];

		/* reget local host if local as it may have changed */
		hostname[1023] = '\0';
		if G_LIKELY (gethostname (hostname, 1023) == 0) {
			g_free (d->hostname);
			d->hostname = g_strdup (hostname);
		}
		if ( ! d->tcp_disallowed)
			local_addys = gdm_address_peek_local_list ();

		is_local = TRUE;
	} else  {
		is_local = FALSE;

		if (gdm_address_is_local (&(d->addr))) {
			is_local = TRUE;
		}

		for (i = 0; ! is_local && i < d->addr_count; i++) {
			if (gdm_address_is_local (&d->addrs[i])) {
				is_local = TRUE;
				break;
			}
		}
	}

	/* Local access also in case the host is very local */
	if (is_local) {
		gdm_debug ("get_local_auths: Setting up socket access");

		if ( ! add_auth_entry (d, &auths, NULL, NULL, FamilyLocal,
				       d->hostname, strlen (d->hostname)))
			goto get_local_auth_error;

		/* 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];

			hostname[1023] = '\0';
			if (gethostname (hostname, 1023) == 0 &&
			    strcmp (hostname, d->hostname) != 0) {
				if ( ! add_auth_entry (d, &auths, NULL, NULL, FamilyLocal,
						       hostname,
						       strlen (hostname)))
					goto get_local_auth_error;
			}
		} 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, &auths, NULL, NULL, FamilyLocal,
						       localhost,
						       strlen (localhost))) {
					goto get_local_auth_error;
				}
			}
		}
	}

	gdm_debug ("get_local_auths: Setting up network access");

	if ( ! SERVER_IS_LOCAL (d)) {
		/* we should write out an entry for d->addr since
		   possibly it is not in d->addrs */

		if (! add_auth_entry_for_addr (d, &auths, &d->addr)) {
			goto get_local_auth_error;
		}

		if (gdm_address_is_loopback (&(d->addr))) {
			added_lo = TRUE;
		}
	}

	/* Network access: Write out an authentication entry for each of
	 * this host's official addresses */
	for (i = 0; i < d->addr_count; i++) {
		struct sockaddr_storage *sa;

		sa = &d->addrs[i];
		if (gdm_address_equal (sa, &d->addr)) {
			continue;
		}

		if (! add_auth_entry_for_addr (d, &auths, sa)) {
			goto get_local_auth_error;
		}

		if (gdm_address_is_loopback (sa)) {
			added_lo = TRUE;
		}
	}

	/* 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) {
		struct sockaddr_storage *ia = local_addys->data;

		if (ia == NULL)
			break;

		if (! add_auth_entry_for_addr (d, &auths, ia)) {
			goto get_local_auth_error;
		}

		if (gdm_address_is_loopback (ia)) {
			added_lo = TRUE;
		}
	}

	/* If local server, then add loopback */
	if (SERVER_IS_LOCAL (d) && ! added_lo && ! d->tcp_disallowed) {
		if (! add_auth_entry (d, &auths, NULL, NULL, FamilyInternet,
		      lo, sizeof (struct in_addr))) {
			goto get_local_auth_error;
		}
	}

	if G_UNLIKELY (gdm_daemon_config_get_value_bool (GDM_KEY_DEBUG))
		gdm_debug ("get_local_auths: Setting up access for %s - %d entries",
			   d->name, g_slist_length (auths));

	return auths;

 get_local_auth_error:

	gdm_auth_free_auth_list (auths);

	return NULL;
}

static gboolean
try_open_append (const char *file)
{
	FILE *fp;

	VE_IGNORE_EINTR (fp = fopen (file, "a+"));
	if G_LIKELY (fp != NULL) {
		VE_IGNORE_EINTR (fclose (fp));
		return TRUE;
	} else {
		return FALSE;
	}
}

static gboolean
try_open_read_as_root (const char *file)
{
	int fd;
	uid_t oldeuid = geteuid ();
	uid_t oldegid = getegid ();
	NEVER_FAILS_root_set_euid_egid (0, 0);

	VE_IGNORE_EINTR (fd = open (file, O_RDONLY));
	if G_UNLIKELY (fd < 0) {
		NEVER_FAILS_root_set_euid_egid (oldeuid, oldegid);
		return FALSE;
	} else {
		VE_IGNORE_EINTR (close (fd));
		NEVER_FAILS_root_set_euid_egid (oldeuid, oldegid);
		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)
{
	char *authdir;
	gint authfd;
	FILE *af;
	GSList *auths = NULL;
	const gchar *userauthdir;
	const gchar *userauthfile;
	gboolean ret = TRUE;
	gboolean automatic_tmp_dir = FALSE;
	gboolean authdir_is_tmp_dir = FALSE;
	gboolean locked;
	gboolean user_auth_exists;
	int closeret;

	if (!d)
		return FALSE;

	if (d->local_auths != NULL) {
		gdm_auth_free_auth_list (d->local_auths);
		d->local_auths = NULL;
	}

	d->local_auths = get_local_auths (d);

	if (d->local_auths == NULL) {
		gdm_error ("Can't make cookies");
		return FALSE;
	}

	gdm_debug ("gdm_auth_user_add: Adding cookie for %d", user);

	userauthdir  = gdm_daemon_config_get_value_string (GDM_KEY_USER_AUTHDIR);
	userauthfile = gdm_daemon_config_get_value_string (GDM_KEY_USER_AUTHFILE);

	/* Determine whether UserAuthDir is specified. Otherwise ~user is used */
	if ( ! ve_string_empty (userauthdir) &&
	     strcmp (userauthdir, "~") != 0) {
		if (strncmp (userauthdir, "~/", 2) == 0) {
			authdir = g_build_filename (homedir, &userauthdir[2], NULL);
		} else {
			authdir = g_strdup (userauthdir);
			automatic_tmp_dir = TRUE;
			authdir_is_tmp_dir = TRUE;
		}
	} else {
		authdir = g_strdup (homedir);
	}

 try_user_add_again:

	locked = FALSE;

	umask (077);

	if (authdir == NULL)
		d->userauth = NULL;
	else
		d->userauth = g_build_filename (authdir, userauthfile, NULL);

	user_auth_exists = (d->userauth != NULL &&
			    g_access (d->userauth, F_OK) == 0);

	/* Find out if the Xauthority file passes the paranoia check */
	/* Note that this is not very efficient, we stat the files over
	   and over, but we don't care, we don't do this too often */
	if (automatic_tmp_dir ||
	    authdir == NULL ||

	    /* first the standard paranoia check (this checks the home dir
	     * too which is useful here) */
	    ! gdm_file_check ("gdm_auth_user_add", user, authdir, userauthfile, 
			      TRUE, FALSE, gdm_daemon_config_get_value_int (GDM_KEY_USER_MAX_FILE),
			      gdm_daemon_config_get_value_int (GDM_KEY_RELAX_PERM)) ||

	    /* now the auth file checking routine */
	    ! gdm_auth_file_check ("gdm_auth_user_add", user, d->userauth, TRUE /* absentok */, NULL) ||

	    /* now see if we can actually append this file */
	    ! try_open_append (d->userauth) ||

	    /* try opening as root, if we can't open as root,
	       then this is a NFS mounted directory with root squashing,
	       and we don't want to write cookies over NFS */
	    (gdm_daemon_config_get_value_bool (GDM_KEY_NEVER_PLACE_COOKIES_ON_NFS) &&
	     ! try_open_read_as_root (d->userauth))) {

		/* if the userauth file didn't exist and we were looking at it,
		   it likely exists now but empty, so just whack it
		   (it may not exist if the file didn't exist and the directory
		   was of wrong permissions, but more likely this is
		   file on NFS dir with root-squashing enabled) */
		if ( ! user_auth_exists && d->userauth != NULL)
			g_unlink (d->userauth);

		/* No go. Let's create a fallback file in GDM_KEY_USER_AUTHDIR_FALLBACK (/tmp)
		 * or perhaps userauthfile directory (usually would be /tmp) */
		d->authfb = TRUE;
		g_free (d->userauth);
		if (authdir_is_tmp_dir && authdir != NULL)
			d->userauth = g_build_filename (authdir, ".gdmXXXXXX", NULL);
		else
			d->userauth = g_build_filename (gdm_daemon_config_get_value_string (GDM_KEY_USER_AUTHDIR_FALLBACK), ".gdmXXXXXX", NULL);
		authfd = g_mkstemp (d->userauth);

		if G_UNLIKELY (authfd < 0 && authdir_is_tmp_dir) {
			g_free (d->userauth);
			d->userauth = NULL;

			authdir_is_tmp_dir = FALSE;
			goto try_user_add_again;
		}

		if G_UNLIKELY (authfd < 0) {
			gdm_error (_("%s: Could not open cookie file %s"),
				   "gdm_auth_user_add",
				   d->userauth);
			g_free (d->userauth);
			d->userauth = NULL;

			umask (022);

			g_free (authdir);
			return FALSE;
		}

		d->last_auth_touch = time (NULL);

		VE_IGNORE_EINTR (af = fdopen (authfd, "w"));
	} else { /* User's Xauthority file is ok */
		d->authfb = FALSE;

		/* FIXME: Better implement my own locking. The libXau one is not kosher */
		if G_UNLIKELY (XauLockAuth (d->userauth, 3, 3, 0) != LOCK_SUCCESS) {
			gdm_error (_("%s: Could not lock cookie file %s"),
				   "gdm_auth_user_add",
				   d->userauth);
			g_free (d->userauth);
			d->userauth = NULL;

			automatic_tmp_dir = TRUE;
			goto try_user_add_again;
		}

		locked = TRUE;

		af = gdm_safe_fopen_ap (d->userauth, 0600);
	}

	/* Set to NULL, because can goto try_user_add_again. */
	g_free (authdir);
	authdir = NULL;

	if G_UNLIKELY (af == NULL) {
		/* Really no need to clean up here - this process is a goner anyway */
		gdm_error (_("%s: Could not open cookie file %s"),
			   "gdm_auth_user_add",
			   d->userauth);
		if (locked)
			XauUnlockAuth (d->userauth);
		g_free (d->userauth);
		d->userauth = NULL;

		if ( ! d->authfb) {
			automatic_tmp_dir = TRUE;
			goto try_user_add_again;
		}

		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)
		af = gdm_auth_purge (d, af, FALSE /* remove when empty */);

	/* Append the authlist for this display to the cookie file */
	auths = d->local_auths;

	while (auths) {
		if G_UNLIKELY ( ! XauWriteAuth (af, auths->data)) {
			gdm_error (_("%s: Could not write cookie"),
				   "gdm_auth_user_add");

			if ( ! d->authfb) {
				VE_IGNORE_EINTR (fclose (af));
				if (locked)
					XauUnlockAuth (d->userauth);
				g_free (d->userauth);
				d->userauth = NULL;
				automatic_tmp_dir = TRUE;
				goto try_user_add_again;
			}

			ret = FALSE;
			break;
		}

		auths = auths->next;
	}

	VE_IGNORE_EINTR (closeret = fclose (af));
	if G_UNLIKELY (closeret < 0) {
		gdm_error (_("%s: Could not write cookie"),
			   "gdm_auth_user_add");

		if ( ! d->authfb) {
			if (locked)
				XauUnlockAuth (d->userauth);
			g_free (d->userauth);
			d->userauth = NULL;
			automatic_tmp_dir = TRUE;
			goto try_user_add_again;
		}

		ret = FALSE;
	}

	if (locked)
		XauUnlockAuth (d->userauth);

	gdm_debug ("gdm_auth_user_add: Done");

	umask (022);
	return ret;
}


/**
 * 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;
	gchar *authfile;
	gchar *authdir;

	if G_UNLIKELY (!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) {
		VE_IGNORE_EINTR (g_unlink (d->userauth));
		g_free (d->userauth);
		d->userauth = NULL;
		return;
	}

	/* if the file doesn't exist, oh well, just ignore this then */
	if G_UNLIKELY (g_access (d->userauth, F_OK) != 0) {
		g_free (d->userauth);
		d->userauth = NULL;
		return;
	}

	authfile = g_path_get_basename (d->userauth);
	authdir = g_path_get_dirname (d->userauth);

	if (ve_string_empty (authfile) ||
	    ve_string_empty (authdir)) {
		g_free (authdir);
		g_free (authfile);
		return;
	}

	/* 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 G_UNLIKELY ( ! gdm_file_check ("gdm_auth_user_remove", user, authdir, authfile, 
					  TRUE, FALSE, gdm_daemon_config_get_value_int (GDM_KEY_USER_MAX_FILE),
					  gdm_daemon_config_get_value_int (GDM_KEY_RELAX_PERM)) ||
			/* be even paranoider with permissions */
			! gdm_auth_file_check ("gdm_auth_user_remove", user, d->userauth, FALSE /* absentok */, NULL)) {
		g_free (authdir);
		g_free (authfile);
		gdm_error (_("%s: Ignoring suspiciously looking cookie file %s"),
			   "gdm_auth_user_remove",
			   d->userauth);

		return; 
	}

	g_free (authdir);
	g_free (authfile);

	/* Lock user's cookie jar and open it for writing */
	if G_UNLIKELY (XauLockAuth (d->userauth, 3, 3, 0) != LOCK_SUCCESS) {
		g_free (d->userauth);
		d->userauth = NULL;
		return;
	}

	af = gdm_safe_fopen_ap (d->userauth, 0600);

	if G_UNLIKELY (af == NULL) {
		XauUnlockAuth (d->userauth);

		gdm_error (_("%s: Cannot safely open %s"),
			   "gdm_auth_user_remove",
			   d->userauth);

		g_free (d->userauth);
		d->userauth = NULL;

		return;
	}

	/* Purge entries for this display from the cookie jar */
	af = gdm_auth_purge (d, af, TRUE /* remove when empty */);

	/* Close the file and unlock it */
	if (af != NULL) {
		/* FIXME: what about out of diskspace errors on errors close */
		errno = 0;
		VE_IGNORE_EINTR (fclose (af));
		if G_UNLIKELY (errno != 0) {
			gdm_error (_("Can't write to %s: %s"), d->userauth,
				   strerror (errno));
		}
	}

	XauUnlockAuth (d->userauth);

	g_free (d->userauth);
	d->userauth = NULL;
}

static gboolean
memory_same (const char *sa, int lena, const char *sb, int lenb)
{
	if (lena == lenb) {
		if (lena == 0)
			return TRUE;
		/* sanity */
		if G_UNLIKELY (sa == NULL || sb == NULL)
			return FALSE;
		return memcmp (sa, sb, lena) == 0;
	} else {
		return FALSE;
	}
}

static gboolean
auth_same_except_data (Xauth *xa, Xauth *xb)
{
	if (xa->family == xb->family &&
	    memory_same (xa->number, xa->number_length,
			 xb->number, xb->number_length) &&
	    memory_same (xa->name, xa->name_length,
			 xb->name, xb->name_length) &&
	    memory_same (xa->address, xa->address_length,
			 xb->address, xb->address_length))
		return TRUE;
	else
		return FALSE;
}


/**
 * gdm_auth_purge:
 * @d: Pointer to a GdmDisplay struct
 * @af: File handle to a cookie file
 * @remove_when_empty: remove the file when empty
 *
 * Remove all cookies referring to this display a cookie file.
 */

static FILE *
gdm_auth_purge (GdmDisplay *d, FILE *af, gboolean remove_when_empty)
{
	Xauth *xa;
	GSList *keep = NULL, *li;
	int cnt;

	if G_UNLIKELY (!d || !af)
		return af;

	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... */

	cnt = 0;

	while ( (xa = XauReadAuth (af)) != NULL ) {
		GSList *li;
		/* We look at the current auths, but those may
		   have different cookies then what is in the file,
		   so don't compare those, but we wish to purge all
		   the entries that we'd normally write */
		for (li = d->local_auths; li != NULL; li = li->next) {
			Xauth *xb = li->data;
			if (auth_same_except_data (xa, xb)) {
				XauDisposeAuth (xa);
				xa = NULL;
				break;
			}
		}
		if (xa != NULL)
			keep = g_slist_append (keep, xa);

		/* just being ultra anal */
		cnt++;
		if (cnt > 500)
			break;
	}

	VE_IGNORE_EINTR (fclose (af));

	if (remove_when_empty &&
	    keep == NULL) {
		VE_IGNORE_EINTR (g_unlink (d->userauth));
		return NULL;
	}

	af = gdm_safe_fopen_w (d->userauth, 0600);

	/* Write out remaining entries */
	for (li = keep; li != NULL; li = li->next) {
		/* FIXME: is this correct, if we can't open
		 * this is quite bad isn't it ... */
		if G_LIKELY (af != NULL)
			XauWriteAuth (af, li->data);
		/* FIXME: what about errors? */
		XauDisposeAuth (li->data);
		li->data = NULL;
	}

	g_slist_free (keep);

	return af;
}

void
gdm_auth_set_local_auth (GdmDisplay *d)
{
	XSetAuthorization ((char *)"MIT-MAGIC-COOKIE-1",
			   (int) strlen ("MIT-MAGIC-COOKIE-1"),
			   (char *)d->bcookie,
			   (int) 16);
}

void
gdm_auth_free_auth_list (GSList *list)
{
	GSList *li;

	for (li = list; li != NULL; li = li->next) {
		XauDisposeAuth ((Xauth *) li->data);
		li->data = NULL;
	}

	g_slist_free (list);
}