]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/session-child.c
Add LC_PAPER, LC_NAME, LC_ADDRESS, LC_TELEPHONE, LC_MEASUREMENT and LC_IDENTIFICATION...
[sojka/lightdm.git] / src / session-child.c
1 #include <config.h>
2
3 #include <stdlib.h>
4 #include <stdio.h>
5 #include <unistd.h>
6 #include <string.h>
7 #include <errno.h>
8 #include <sys/types.h>
9 #include <sys/stat.h>
10 #include <sys/wait.h>
11 #include <fcntl.h>
12 #include <pwd.h>
13 #include <grp.h>
14 #include <glib.h>
15 #include <security/pam_appl.h>
16 #include <utmp.h>
17 #include <utmpx.h>
18 #include <sys/mman.h>
19
20 #if HAVE_LIBAUDIT
21 #include <libaudit.h>
22 #endif
23
24 #include "configuration.h"
25 #include "session-child.h"
26 #include "session.h"
27 #include "console-kit.h"
28 #include "login1.h"
29 #include "log-file.h"
30 #include "privileges.h"
31 #include "x-authority.h"
32 #include "configuration.h"
33
34 /* Child process being run */
35 static GPid child_pid = 0;
36
37 /* Pipe to communicate with daemon */
38 static int from_daemon_output = 0;
39 static int to_daemon_input = 0;
40
41 static gboolean is_interactive;
42 static gboolean do_authenticate;
43 static gboolean authentication_complete = FALSE;
44 static pam_handle_t *pam_handle;
45
46 /* Maximum length of a string to pass between daemon and session */
47 #define MAX_STRING_LENGTH 65535
48
49 static void
50 write_data (const void *buf, size_t count)
51 {
52     if (write (to_daemon_input, buf, count) != count)
53         g_printerr ("Error writing to daemon: %s\n", strerror (errno));
54 }
55
56 static void
57 write_string (const char *value)
58 {
59     int length;
60
61     length = value ? strlen (value) : -1;
62     write_data (&length, sizeof (length));
63     if (value)
64         write_data (value, sizeof (char) * length);
65 }
66
67 static ssize_t
68 read_data (void *buf, size_t count)
69 {
70     ssize_t n_read;
71
72     n_read = read (from_daemon_output, buf, count);
73     if (n_read < 0)
74         g_printerr ("Error reading from daemon: %s\n", strerror (errno));
75
76     return n_read;
77 }
78
79 static gchar *
80 read_string_full (void* (*alloc_fn)(size_t n))
81 {
82     int length;
83     char *value;
84
85     if (read_data (&length, sizeof (length)) <= 0)
86         return NULL;
87     if (length < 0)
88         return NULL;
89     if (length > MAX_STRING_LENGTH)
90     {
91         g_printerr ("Invalid string length %d from daemon\n", length);
92         return NULL;
93     }
94
95     value = (*alloc_fn) (sizeof (char) * (length + 1));
96     read_data (value, length);
97     value[length] = '\0';
98
99     return value;
100 }
101
102 static gchar *
103 read_string (void)
104 {
105     return read_string_full (g_malloc);
106 }
107
108 static int
109 pam_conv_cb (int msg_length, const struct pam_message **msg, struct pam_response **resp, void *app_data)
110 {
111     int i, error;
112     gboolean auth_complete = FALSE;
113     struct pam_response *response;
114     gchar *username = NULL;
115
116     /* FIXME: We don't support communication after pam_authenticate completes */
117     if (authentication_complete)
118         return PAM_SUCCESS;
119
120     /* Cancel authentication if requiring input */
121     if (!is_interactive)
122     {
123         for (i = 0; i < msg_length; i++)
124         {
125             if (msg[i]->msg_style == PAM_PROMPT_ECHO_ON || msg[i]->msg_style == PAM_PROMPT_ECHO_OFF)
126             {
127                 g_printerr ("Stopping PAM conversation, interaction requested but not supported\n");
128                 return PAM_CONV_ERR;
129             }
130         }
131
132         /* Ignore informational messages */
133         return PAM_SUCCESS;
134     }
135
136     /* Check if we changed user */
137     pam_get_item (pam_handle, PAM_USER, (const void **) &username);
138
139     /* Notify the daemon */
140     write_string (username);
141     write_data (&auth_complete, sizeof (auth_complete));
142     write_data (&msg_length, sizeof (msg_length));
143     for (i = 0; i < msg_length; i++)
144     {
145         const struct pam_message *m = msg[i];
146         write_data (&m->msg_style, sizeof (m->msg_style));
147         write_string (m->msg);
148     }
149
150     /* Get response */
151     read_data (&error, sizeof (error));
152     if (error != PAM_SUCCESS)
153         return error;
154     response = calloc (msg_length, sizeof (struct pam_response));
155     for (i = 0; i < msg_length; i++)
156     {
157         struct pam_response *r = &response[i];
158         // callers of this function inside pam will expect to be able to call
159         // free() on the strings we give back.  So alloc with malloc.
160         r->resp = read_string_full (malloc);
161         read_data (&r->resp_retcode, sizeof (r->resp_retcode));
162     }
163
164     *resp = response;
165     return PAM_SUCCESS;
166 }
167
168 static void
169 signal_cb (int signum)
170 {
171     /* Pass on signal to child, otherwise just quit */
172     if (child_pid > 0)
173         kill (child_pid, signum);
174     else
175         exit (EXIT_SUCCESS);
176 }
177
178 static XAuthority *
179 read_xauth (void)
180 {
181     gchar *x_authority_name;
182     guint16 x_authority_family;
183     guint8 *x_authority_address;
184     gsize x_authority_address_length;
185     gchar *x_authority_number;
186     guint8 *x_authority_data;
187     gsize x_authority_data_length;
188
189     x_authority_name = read_string ();
190     if (!x_authority_name)
191         return NULL;
192
193     read_data (&x_authority_family, sizeof (x_authority_family));
194     read_data (&x_authority_address_length, sizeof (x_authority_address_length));
195     x_authority_address = g_malloc (x_authority_address_length);
196     read_data (x_authority_address, x_authority_address_length);
197     x_authority_number = read_string ();
198     read_data (&x_authority_data_length, sizeof (x_authority_data_length));
199     x_authority_data = g_malloc (x_authority_data_length);
200     read_data (x_authority_data, x_authority_data_length);
201
202     return x_authority_new (x_authority_family, x_authority_address, x_authority_address_length, x_authority_number, x_authority_name, x_authority_data, x_authority_data_length);
203 }
204
205 /* GNU provides this but we can't rely on that so let's make our own version */
206 static void
207 updwtmpx (const gchar *wtmp_file, struct utmpx *ut)
208 {
209     struct utmp u;
210
211     memset (&u, 0, sizeof (u));
212     u.ut_type = ut->ut_type;
213     u.ut_pid = ut->ut_pid;
214     if (ut->ut_line)
215         strncpy (u.ut_line, ut->ut_line, sizeof (u.ut_line));
216     if (ut->ut_id)
217         strncpy (u.ut_id, ut->ut_id, sizeof (u.ut_id));
218     if (ut->ut_user)
219         strncpy (u.ut_user, ut->ut_user, sizeof (u.ut_user));
220     if (ut->ut_host)
221         strncpy (u.ut_host, ut->ut_host, sizeof (u.ut_host));
222     u.ut_tv.tv_sec = ut->ut_tv.tv_sec;
223     u.ut_tv.tv_usec = ut->ut_tv.tv_usec;
224
225     updwtmp (wtmp_file, &u);
226 }
227
228 #if HAVE_LIBAUDIT
229 static void
230 audit_event (int type, const gchar *username, uid_t uid, const gchar *remote_host_name, const gchar *tty, gboolean success)
231 {
232     int auditfd, result;
233     const char *op = NULL;
234
235     auditfd = audit_open ();
236     if (auditfd < 0) {
237         g_printerr ("Error opening audit socket: %s\n", strerror (errno));
238         return;
239     }
240
241     if (type == AUDIT_USER_LOGIN)
242         op = "login";
243     else if (type == AUDIT_USER_LOGOUT)
244         op = "logout";
245     result = success == TRUE ? 1 : 0;
246
247     if (audit_log_acct_message (auditfd, type, NULL, op, username, uid, remote_host_name, NULL, tty, result) <= 0)
248         g_printerr ("Error writing audit message: %s\n", strerror (errno));
249
250     close (auditfd);
251 }
252 #endif
253
254 int
255 session_child_run (int argc, char **argv)
256 {
257     struct pam_conv conversation = { pam_conv_cb, NULL };
258     int i, version, fd, result;
259     gboolean auth_complete = TRUE;
260     User *user = NULL;
261     gchar *log_filename;
262     LogMode log_mode = LOG_MODE_BACKUP_AND_TRUNCATE;
263     gsize env_length;
264     gsize command_argc;
265     gchar **command_argv;
266     GVariantBuilder ck_parameters;
267     int return_code;
268     int authentication_result;
269     gchar *authentication_result_string;
270     gchar *service;
271     gchar *username;
272     gchar *tty;
273     gchar *remote_host_name;
274     gchar *xdisplay;
275     XAuthority *x_authority = NULL;
276     gchar *x_authority_filename;
277     GDBusConnection *bus;
278     const gchar *login1_session_id = NULL;
279     gchar *console_kit_cookie = NULL;
280     const gchar *locale_value;
281     gchar *locale_var;
282     static const gchar * const locale_var_names[] = {
283         "LC_PAPER",
284         "LC_NAME",
285         "LC_ADDRESS",
286         "LC_TELEPHONE",
287         "LC_MEASUREMENT",
288         "LC_IDENTIFICATION",
289         "LC_COLLATE",
290         "LC_CTYPE",
291         "LC_MONETARY",
292         "LC_NUMERIC",
293         "LC_TIME",
294         "LC_MESSAGES",
295         "LC_ALL",
296         "LANG",
297         NULL
298     };
299     gid_t gid;
300     uid_t uid;
301     const gchar *home_directory;
302     GError *error = NULL;
303
304 #if !defined(GLIB_VERSION_2_36)
305     g_type_init ();
306 #endif
307
308     if (config_get_boolean (config_get_instance (), "LightDM", "lock-memory"))
309     {
310         /* Protect memory from being paged to disk, as we deal with passwords */
311         mlockall (MCL_CURRENT | MCL_FUTURE);
312     }
313
314     /* Make input non-blocking */
315     fd = open ("/dev/null", O_RDONLY);
316     dup2 (fd, STDIN_FILENO);
317     close (fd);
318
319     /* Close stdout */
320     fd = open ("/dev/null", O_WRONLY);
321     dup2 (fd, STDOUT_FILENO);
322     close (fd);
323
324     /* Get the pipe from the daemon */
325     if (argc != 4)
326     {
327         g_printerr ("Usage: lightdm --session-child INPUTFD OUTPUTFD\n");
328         return EXIT_FAILURE;
329     }
330     from_daemon_output = atoi (argv[2]);
331     to_daemon_input = atoi (argv[3]);
332     if (from_daemon_output == 0 || to_daemon_input == 0)
333     {
334         g_printerr ("Invalid file descriptors %s %s\n", argv[2], argv[3]);
335         return EXIT_FAILURE;
336     }
337
338     /* Don't let these pipes leak to the command we will run */
339     fcntl (from_daemon_output, F_SETFD, FD_CLOEXEC);
340     fcntl (to_daemon_input, F_SETFD, FD_CLOEXEC);
341
342     /* Read a version number so we can handle upgrades (i.e. a newer version of session child is run for an old daemon */
343     read_data (&version, sizeof (version));
344
345     service = read_string ();
346     username = read_string ();
347     read_data (&do_authenticate, sizeof (do_authenticate));
348     read_data (&is_interactive, sizeof (is_interactive));
349     read_string (); /* Used to be class, now we just use the environment variable */
350     tty = read_string ();
351     remote_host_name = read_string ();
352     xdisplay = read_string ();
353     x_authority = read_xauth ();
354
355     /* Setup PAM */
356     result = pam_start (service, username, &conversation, &pam_handle);
357     if (result != PAM_SUCCESS)
358     {
359         g_printerr ("Failed to start PAM: %s", pam_strerror (NULL, result));
360         return EXIT_FAILURE;
361     }
362     if (xdisplay)
363     {
364 #ifdef PAM_XDISPLAY
365         pam_set_item (pam_handle, PAM_XDISPLAY, xdisplay);
366 #endif
367         pam_set_item (pam_handle, PAM_TTY, xdisplay);
368     }
369     else if (tty)
370         pam_set_item (pam_handle, PAM_TTY, tty);
371
372 #ifdef PAM_XAUTHDATA
373     if (x_authority)
374     {
375         struct pam_xauth_data value;
376
377         value.name = (char *) x_authority_get_authorization_name (x_authority);
378         value.namelen = strlen (x_authority_get_authorization_name (x_authority));
379         value.data = (char *) x_authority_get_authorization_data (x_authority);
380         value.datalen = x_authority_get_authorization_data_length (x_authority);
381         pam_set_item (pam_handle, PAM_XAUTHDATA, &value);
382     }
383 #endif
384
385     /* Authenticate */
386     if (do_authenticate)
387     {
388         const gchar *new_username;
389
390         authentication_result = pam_authenticate (pam_handle, 0);
391
392         /* See what user we ended up as */
393         if (pam_get_item (pam_handle, PAM_USER, (const void **) &new_username) != PAM_SUCCESS)
394         {
395             pam_end (pam_handle, 0);
396             return EXIT_FAILURE;
397         }
398         g_free (username);
399         username = g_strdup (new_username);
400
401         /* Write record to btmp database */
402         if (authentication_result == PAM_AUTH_ERR)
403         {
404             struct utmpx ut;
405             struct timeval tv;
406
407             memset (&ut, 0, sizeof (ut));
408             ut.ut_type = USER_PROCESS;
409             ut.ut_pid = getpid ();
410             if (xdisplay)
411             {
412                 strncpy (ut.ut_line, xdisplay, sizeof (ut.ut_line));
413                 strncpy (ut.ut_id, xdisplay, sizeof (ut.ut_id));
414             }
415             else if (tty)
416                 strncpy (ut.ut_line, tty + strlen ("/dev/"), sizeof (ut.ut_line));
417             strncpy (ut.ut_user, username, sizeof (ut.ut_user));
418             if (xdisplay)
419                 strncpy (ut.ut_host, xdisplay, sizeof (ut.ut_host));
420             else if (remote_host_name)
421                 strncpy (ut.ut_host, remote_host_name, sizeof (ut.ut_host));
422             gettimeofday (&tv, NULL);
423             ut.ut_tv.tv_sec = tv.tv_sec;
424             ut.ut_tv.tv_usec = tv.tv_usec;
425
426             updwtmpx ("/var/log/btmp", &ut);
427
428 #if HAVE_LIBAUDIT
429             audit_event (AUDIT_USER_LOGIN, username, -1, remote_host_name, tty, FALSE);
430 #endif
431         }
432
433         /* Check account is valid */
434         if (authentication_result == PAM_SUCCESS)
435             authentication_result = pam_acct_mgmt (pam_handle, 0);
436         if (authentication_result == PAM_NEW_AUTHTOK_REQD)
437             authentication_result = pam_chauthtok (pam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
438     }
439     else
440         authentication_result = PAM_SUCCESS;
441     authentication_complete = TRUE;
442
443     if (authentication_result == PAM_SUCCESS)
444     {
445         /* Fail authentication if user doesn't actually exist */
446         user = accounts_get_user_by_name (username);
447         if (!user)
448         {
449             g_printerr ("Failed to get information on user %s: %s\n", username, strerror (errno));
450             authentication_result = PAM_USER_UNKNOWN;
451         }
452         else
453         {
454             /* Set POSIX variables */
455             pam_putenv (pam_handle, "PATH=/usr/local/bin:/usr/bin:/bin");
456             pam_putenv (pam_handle, g_strdup_printf ("USER=%s", username));
457             pam_putenv (pam_handle, g_strdup_printf ("LOGNAME=%s", username));
458             pam_putenv (pam_handle, g_strdup_printf ("HOME=%s", user_get_home_directory (user)));
459             pam_putenv (pam_handle, g_strdup_printf ("SHELL=%s", user_get_shell (user)));
460
461             /* Let the greeter and user session inherit the system default locale */
462             for (i = 0; locale_var_names[i] != NULL; i++)
463             {
464                 if ((locale_value = g_getenv (locale_var_names[i])) != NULL)
465                 {
466                     locale_var = g_strdup_printf ("%s=%s", locale_var_names[i], locale_value);
467                     pam_putenv (pam_handle, locale_var);
468                     g_free (locale_var);
469                 }
470             }
471         }
472     }
473
474     authentication_result_string = g_strdup (pam_strerror (pam_handle, authentication_result));
475
476     /* Report authentication result */
477     write_string (username);
478     write_data (&auth_complete, sizeof (auth_complete));
479     write_data (&authentication_result, sizeof (authentication_result));
480     write_string (authentication_result_string);
481
482     /* Check we got a valid user */
483     if (!username)
484     {
485         g_printerr ("No user selected during authentication\n");
486         pam_end (pam_handle, 0);
487         return EXIT_FAILURE;
488     }
489
490     /* Stop if we didn't authenticated */
491     if (authentication_result != PAM_SUCCESS)
492     {
493         pam_end (pam_handle, 0);
494         return EXIT_FAILURE;
495     }
496
497     /* Get the command to run (blocks) */
498     log_filename = read_string ();
499     if (version >= 3)
500         read_data (&log_mode, sizeof (log_mode));
501     if (version >= 1)
502     {
503         g_free (tty);
504         tty = read_string ();
505     }
506     x_authority_filename = read_string ();
507     if (version >= 1)
508     {
509         g_free (xdisplay);
510         xdisplay = read_string ();
511         if (x_authority)
512             g_object_unref (x_authority);
513         x_authority = read_xauth ();
514     }
515     read_data (&env_length, sizeof (env_length));
516     for (i = 0; i < env_length; i++)
517         pam_putenv (pam_handle, read_string ());
518     read_data (&command_argc, sizeof (command_argc));
519     command_argv = g_malloc (sizeof (gchar *) * (command_argc + 1));
520     for (i = 0; i < command_argc; i++)
521         command_argv[i] = read_string ();
522     command_argv[i] = NULL;
523
524     /* If nothing to run just refresh credentials because we successfully authenticated */
525     if (command_argc == 0)
526     {
527         pam_setcred (pam_handle, PAM_REINITIALIZE_CRED);
528         pam_end (pam_handle, 0);
529         return EXIT_SUCCESS;
530     }
531
532     /* Redirect stderr to a log file */
533     if (log_filename)
534     {
535         if (g_path_is_absolute (log_filename))
536         {
537             fd = log_file_open (log_filename, log_mode);
538             dup2 (fd, STDERR_FILENO);
539             close (fd);
540             g_free (log_filename);
541             log_filename = NULL;
542         }
543     }
544     else
545     {
546         fd = open ("/dev/null", O_WRONLY);
547         dup2 (fd, STDERR_FILENO);
548         close (fd);
549     }
550
551     /* Set group membership - these can be overriden in pam_setcred */
552     if (getuid () == 0)
553     {
554         if (initgroups (username, user_get_gid (user)) < 0)
555         {
556             g_printerr ("Failed to initialize supplementary groups for %s: %s\n", username, strerror (errno));
557             _exit (EXIT_FAILURE);
558         }
559     }
560
561     /* Set credentials */
562     result = pam_setcred (pam_handle, PAM_ESTABLISH_CRED);
563     if (result != PAM_SUCCESS)
564     {
565         g_printerr ("Failed to establish PAM credentials: %s\n", pam_strerror (pam_handle, result));
566         pam_end (pam_handle, 0);
567         return EXIT_FAILURE;
568     }
569
570     /* Open the session */
571     result = pam_open_session (pam_handle, 0);
572     if (result != PAM_SUCCESS)
573     {
574         g_printerr ("Failed to open PAM session: %s\n", pam_strerror (pam_handle, result));
575         pam_end (pam_handle, 0);
576         return EXIT_FAILURE;
577     }
578
579     /* Open a connection to the system bus for ConsoleKit - we must keep it open or CK will close the session */
580     bus = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);
581     if (error)
582         g_printerr ("Unable to contact system bus: %s", error->message);
583     if (!bus)
584     {
585         pam_end (pam_handle, 0);
586         return EXIT_FAILURE;
587     }
588
589     /* Check what logind session we are, or fallback to ConsoleKit */
590     login1_session_id = pam_getenv (pam_handle, "XDG_SESSION_ID");
591     if (login1_session_id)
592     {
593         write_string (login1_session_id);
594         if (version >= 2)
595             write_string (NULL);
596     }
597     else
598     {
599         g_variant_builder_init (&ck_parameters, G_VARIANT_TYPE ("(a(sv))"));
600         g_variant_builder_open (&ck_parameters, G_VARIANT_TYPE ("a(sv)"));
601         g_variant_builder_add (&ck_parameters, "(sv)", "unix-user", g_variant_new_int32 (user_get_uid (user)));
602         if (g_strcmp0 (pam_getenv (pam_handle, "XDG_SESSION_CLASS"), "greeter") == 0)
603             g_variant_builder_add (&ck_parameters, "(sv)", "session-type", g_variant_new_string ("LoginWindow"));
604         if (xdisplay)
605         {
606             g_variant_builder_add (&ck_parameters, "(sv)", "x11-display", g_variant_new_string (xdisplay));
607             if (tty)
608                 g_variant_builder_add (&ck_parameters, "(sv)", "x11-display-device", g_variant_new_string (tty));
609         }
610         if (remote_host_name)
611         {
612             g_variant_builder_add (&ck_parameters, "(sv)", "is-local", g_variant_new_boolean (FALSE));
613             g_variant_builder_add (&ck_parameters, "(sv)", "remote-host-name", g_variant_new_string (remote_host_name));
614         }
615         else
616             g_variant_builder_add (&ck_parameters, "(sv)", "is-local", g_variant_new_boolean (TRUE));
617         console_kit_cookie = ck_open_session (&ck_parameters);
618         if (version >= 2)
619             write_string (NULL);
620         write_string (console_kit_cookie);
621         if (console_kit_cookie)
622         {
623             gchar *value;
624             value = g_strdup_printf ("XDG_SESSION_COOKIE=%s", console_kit_cookie);
625             pam_putenv (pam_handle, value);
626             g_free (value);
627         }
628     }
629
630     /* Write X authority */
631     if (x_authority)
632     {
633         gboolean drop_privileges, result;
634         gchar *value;
635         GError *error = NULL;
636
637         drop_privileges = geteuid () == 0;
638         if (drop_privileges)
639             privileges_drop (user_get_uid (user), user_get_gid (user));
640         result = x_authority_write (x_authority, XAUTH_WRITE_MODE_REPLACE, x_authority_filename, &error);
641         if (drop_privileges)
642             privileges_reclaim ();
643
644         if (error)
645             g_printerr ("Error writing X authority: %s\n", error->message);
646         g_clear_error (&error);
647         if (!result)
648         {
649             pam_end (pam_handle, 0);
650             return EXIT_FAILURE;
651         }
652
653         value = g_strdup_printf ("XAUTHORITY=%s", x_authority_filename);
654         pam_putenv (pam_handle, value);
655         g_free (value);
656     }
657
658     /* Catch terminate signal and pass it to the child */
659     signal (SIGTERM, signal_cb);
660
661     /* Run the command as the authenticated user */
662     uid = user_get_uid (user);
663     gid = user_get_gid (user);
664     home_directory = user_get_home_directory (user);
665     child_pid = fork ();
666     if (child_pid == 0)
667     {
668         /* Make this process its own session */
669         if (setsid () < 0)
670             _exit (errno);
671
672         /* Change to this user */
673         if (getuid () == 0)
674         {
675             if (setgid (gid) != 0)
676                 _exit (errno);
677
678             if (setuid (uid) != 0)
679                 _exit (errno);
680         }
681
682         /* Change working directory */
683         /* NOTE: This must be done after the permissions are changed because NFS filesystems can
684          * be setup so the local root user accesses the NFS files as 'nobody'.  If the home directories
685          * are not system readable then the chdir can fail */
686         if (chdir (home_directory) != 0)
687             _exit (errno);
688
689         if (log_filename)
690         {
691             fd = log_file_open (log_filename, log_mode);
692             if (fd >= 0)
693             {
694                 dup2 (fd, STDERR_FILENO);
695                 close (fd);
696             }
697         }
698
699         /* Run the command */
700         execve (command_argv[0], command_argv, pam_getenvlist (pam_handle));
701         _exit (EXIT_FAILURE);
702     }
703
704     /* Bail out if failed to fork */
705     if (child_pid < 0)
706     {
707         g_printerr ("Failed to fork session child process: %s\n", strerror (errno));
708         return_code = EXIT_FAILURE;
709     }
710
711     /* Wait for the command to complete (blocks) */
712     if (child_pid > 0)
713     {
714         /* Log to utmp */
715         if (g_strcmp0 (pam_getenv (pam_handle, "XDG_SESSION_CLASS"), "greeter") != 0)
716         {
717             struct utmpx ut;
718             struct timeval tv;
719
720             memset (&ut, 0, sizeof (ut));
721             ut.ut_type = USER_PROCESS;
722             ut.ut_pid = child_pid;
723             if (xdisplay)
724             {
725                 strncpy (ut.ut_line, xdisplay, sizeof (ut.ut_line));
726                 strncpy (ut.ut_id, xdisplay, sizeof (ut.ut_id));
727             }
728             else if (tty)
729                 strncpy (ut.ut_line, tty + strlen ("/dev/"), sizeof (ut.ut_line));
730             strncpy (ut.ut_user, username, sizeof (ut.ut_user));
731             if (xdisplay)
732                 strncpy (ut.ut_host, xdisplay, sizeof (ut.ut_host));
733             else if (remote_host_name)
734                 strncpy (ut.ut_host, remote_host_name, sizeof (ut.ut_host));
735             gettimeofday (&tv, NULL);
736             ut.ut_tv.tv_sec = tv.tv_sec;
737             ut.ut_tv.tv_usec = tv.tv_usec;
738
739             /* Write records to utmp/wtmp databases */
740             setutxent ();
741             if (!pututxline (&ut))
742                 g_printerr ("Failed to write utmpx: %s\n", strerror (errno));
743             endutxent ();
744             updwtmpx ("/var/log/wtmp", &ut);
745
746 #if HAVE_LIBAUDIT          
747             audit_event (AUDIT_USER_LOGIN, username, uid, remote_host_name, tty, TRUE);
748 #endif
749         }
750
751         waitpid (child_pid, &return_code, 0);
752         child_pid = 0;
753
754         /* Log to utmp */
755         if (g_strcmp0 (pam_getenv (pam_handle, "XDG_SESSION_CLASS"), "greeter") != 0)
756         {
757             struct utmpx ut;
758             struct timeval tv;
759
760             memset (&ut, 0, sizeof (ut));
761             ut.ut_type = DEAD_PROCESS;
762             ut.ut_pid = child_pid;
763             if (xdisplay)
764             {
765                 strncpy (ut.ut_line, xdisplay, sizeof (ut.ut_line));
766                 strncpy (ut.ut_id, xdisplay, sizeof (ut.ut_id));
767             }
768             else if (tty)
769                 strncpy (ut.ut_line, tty + strlen ("/dev/"), sizeof (ut.ut_line));
770             strncpy (ut.ut_user, username, sizeof (ut.ut_user));
771             if (xdisplay)
772                 strncpy (ut.ut_host, xdisplay, sizeof (ut.ut_host));
773             else if (remote_host_name)
774                 strncpy (ut.ut_host, remote_host_name, sizeof (ut.ut_host));
775             gettimeofday (&tv, NULL);
776             ut.ut_tv.tv_sec = tv.tv_sec;
777             ut.ut_tv.tv_usec = tv.tv_usec;
778
779             /* Write records to utmp/wtmp databases */
780             setutxent ();
781             if (!pututxline (&ut))
782                 g_printerr ("Failed to write utmpx: %s\n", strerror (errno));
783             endutxent ();
784             updwtmpx ("/var/log/wtmp", &ut);
785
786 #if HAVE_LIBAUDIT
787             audit_event (AUDIT_USER_LOGOUT, username, uid, remote_host_name, tty, TRUE);
788 #endif
789         }
790     }
791
792     /* Remove X authority */
793     if (x_authority)
794     {
795         gboolean drop_privileges, result;
796         GError *error = NULL;
797
798         drop_privileges = geteuid () == 0;
799         if (drop_privileges)
800             privileges_drop (user_get_uid (user), user_get_gid (user));
801         result = x_authority_write (x_authority, XAUTH_WRITE_MODE_REMOVE, x_authority_filename, &error);
802         if (drop_privileges)
803             privileges_reclaim ();
804
805         if (error)
806             g_printerr ("Error removing X authority: %s\n", error->message);
807         g_clear_error (&error);
808         if (!result)
809             _exit (EXIT_FAILURE);
810     }
811
812     /* Close the Console Kit session */
813     if (console_kit_cookie)
814         ck_close_session (console_kit_cookie);
815
816     /* Close the session */
817     pam_close_session (pam_handle, 0);
818
819     /* Remove credentials */
820     pam_setcred (pam_handle, PAM_DELETE_CRED);
821
822     pam_end (pam_handle, 0);
823     pam_handle = NULL;
824
825     /* Return result of session process to the daemon */
826     return return_code;
827 }