]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/session-child.c
Merge log-mode.h into log-file.h
[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_COLLATE",
284         "LC_CTYPE",
285         "LC_MONETARY",
286         "LC_NUMERIC",
287         "LC_TIME",
288         "LC_MESSAGES",
289         "LC_ALL",
290         "LANG",
291         NULL
292     };
293     gid_t gid;
294     uid_t uid;
295     const gchar *home_directory;
296     GError *error = NULL;
297
298 #if !defined(GLIB_VERSION_2_36)
299     g_type_init ();
300 #endif
301
302     if (config_get_boolean (config_get_instance (), "LightDM", "lock-memory"))
303     {
304         /* Protect memory from being paged to disk, as we deal with passwords */
305         mlockall (MCL_CURRENT | MCL_FUTURE);
306     }
307
308     /* Make input non-blocking */
309     fd = open ("/dev/null", O_RDONLY);
310     dup2 (fd, STDIN_FILENO);
311     close (fd);
312
313     /* Close stdout */
314     fd = open ("/dev/null", O_WRONLY);
315     dup2 (fd, STDOUT_FILENO);
316     close (fd);
317
318     /* Get the pipe from the daemon */
319     if (argc != 4)
320     {
321         g_printerr ("Usage: lightdm --session-child INPUTFD OUTPUTFD\n");
322         return EXIT_FAILURE;
323     }
324     from_daemon_output = atoi (argv[2]);
325     to_daemon_input = atoi (argv[3]);
326     if (from_daemon_output == 0 || to_daemon_input == 0)
327     {
328         g_printerr ("Invalid file descriptors %s %s\n", argv[2], argv[3]);
329         return EXIT_FAILURE;
330     }
331
332     /* Don't let these pipes leak to the command we will run */
333     fcntl (from_daemon_output, F_SETFD, FD_CLOEXEC);
334     fcntl (to_daemon_input, F_SETFD, FD_CLOEXEC);
335
336     /* Read a version number so we can handle upgrades (i.e. a newer version of session child is run for an old daemon */
337     read_data (&version, sizeof (version));
338
339     service = read_string ();
340     username = read_string ();
341     read_data (&do_authenticate, sizeof (do_authenticate));
342     read_data (&is_interactive, sizeof (is_interactive));
343     read_string (); /* Used to be class, now we just use the environment variable */
344     tty = read_string ();
345     remote_host_name = read_string ();
346     xdisplay = read_string ();
347     x_authority = read_xauth ();
348
349     /* Setup PAM */
350     result = pam_start (service, username, &conversation, &pam_handle);
351     if (result != PAM_SUCCESS)
352     {
353         g_printerr ("Failed to start PAM: %s", pam_strerror (NULL, result));
354         return EXIT_FAILURE;
355     }
356     if (xdisplay)
357     {
358 #ifdef PAM_XDISPLAY
359         pam_set_item (pam_handle, PAM_XDISPLAY, xdisplay);
360 #endif
361         pam_set_item (pam_handle, PAM_TTY, xdisplay);
362     }
363     else if (tty)
364         pam_set_item (pam_handle, PAM_TTY, tty);
365
366 #ifdef PAM_XAUTHDATA
367     if (x_authority)
368     {
369         struct pam_xauth_data value;
370
371         value.name = (char *) x_authority_get_authorization_name (x_authority);
372         value.namelen = strlen (x_authority_get_authorization_name (x_authority));
373         value.data = (char *) x_authority_get_authorization_data (x_authority);
374         value.datalen = x_authority_get_authorization_data_length (x_authority);
375         pam_set_item (pam_handle, PAM_XAUTHDATA, &value);
376     }
377 #endif
378
379     /* Authenticate */
380     if (do_authenticate)
381     {
382         const gchar *new_username;
383
384         authentication_result = pam_authenticate (pam_handle, 0);
385
386         /* See what user we ended up as */
387         if (pam_get_item (pam_handle, PAM_USER, (const void **) &new_username) != PAM_SUCCESS)
388         {
389             pam_end (pam_handle, 0);
390             return EXIT_FAILURE;
391         }
392         g_free (username);
393         username = g_strdup (new_username);
394
395         /* Write record to btmp database */
396         if (authentication_result == PAM_AUTH_ERR)
397         {
398             struct utmpx ut;
399             struct timeval tv;
400
401             memset (&ut, 0, sizeof (ut));
402             ut.ut_type = USER_PROCESS;
403             ut.ut_pid = getpid ();
404             if (xdisplay)
405             {
406                 strncpy (ut.ut_line, xdisplay, sizeof (ut.ut_line));
407                 strncpy (ut.ut_id, xdisplay, sizeof (ut.ut_id));
408             }
409             else if (tty)
410                 strncpy (ut.ut_line, tty + strlen ("/dev/"), sizeof (ut.ut_line));
411             strncpy (ut.ut_user, username, sizeof (ut.ut_user));
412             if (xdisplay)
413                 strncpy (ut.ut_host, xdisplay, sizeof (ut.ut_host));
414             else if (remote_host_name)
415                 strncpy (ut.ut_host, remote_host_name, sizeof (ut.ut_host));
416             gettimeofday (&tv, NULL);
417             ut.ut_tv.tv_sec = tv.tv_sec;
418             ut.ut_tv.tv_usec = tv.tv_usec;
419
420             updwtmpx ("/var/log/btmp", &ut);
421
422 #if HAVE_LIBAUDIT
423             audit_event (AUDIT_USER_LOGIN, username, -1, remote_host_name, tty, FALSE);
424 #endif
425         }
426
427         /* Check account is valid */
428         if (authentication_result == PAM_SUCCESS)
429             authentication_result = pam_acct_mgmt (pam_handle, 0);
430         if (authentication_result == PAM_NEW_AUTHTOK_REQD)
431             authentication_result = pam_chauthtok (pam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
432     }
433     else
434         authentication_result = PAM_SUCCESS;
435     authentication_complete = TRUE;
436
437     if (authentication_result == PAM_SUCCESS)
438     {
439         /* Fail authentication if user doesn't actually exist */
440         user = accounts_get_user_by_name (username);
441         if (!user)
442         {
443             g_printerr ("Failed to get information on user %s: %s\n", username, strerror (errno));
444             authentication_result = PAM_USER_UNKNOWN;
445         }
446         else
447         {
448             /* Set POSIX variables */
449             pam_putenv (pam_handle, "PATH=/usr/local/bin:/usr/bin:/bin");
450             pam_putenv (pam_handle, g_strdup_printf ("USER=%s", username));
451             pam_putenv (pam_handle, g_strdup_printf ("LOGNAME=%s", username));
452             pam_putenv (pam_handle, g_strdup_printf ("HOME=%s", user_get_home_directory (user)));
453             pam_putenv (pam_handle, g_strdup_printf ("SHELL=%s", user_get_shell (user)));
454
455             /* Let the greeter and user session inherit the system default locale */
456             for (i = 0; locale_var_names[i] != NULL; i++)
457             {
458                 if ((locale_value = g_getenv (locale_var_names[i])) != NULL)
459                 {
460                     locale_var = g_strdup_printf ("%s=%s", locale_var_names[i], locale_value);
461                     pam_putenv (pam_handle, locale_var);
462                     g_free (locale_var);
463                 }
464             }
465         }
466     }
467
468     authentication_result_string = g_strdup (pam_strerror (pam_handle, authentication_result));
469
470     /* Report authentication result */
471     write_string (username);
472     write_data (&auth_complete, sizeof (auth_complete));
473     write_data (&authentication_result, sizeof (authentication_result));
474     write_string (authentication_result_string);
475
476     /* Check we got a valid user */
477     if (!username)
478     {
479         g_printerr ("No user selected during authentication\n");
480         pam_end (pam_handle, 0);
481         return EXIT_FAILURE;
482     }
483
484     /* Stop if we didn't authenticated */
485     if (authentication_result != PAM_SUCCESS)
486     {
487         pam_end (pam_handle, 0);
488         return EXIT_FAILURE;
489     }
490
491     /* Get the command to run (blocks) */
492     log_filename = read_string ();
493     if (version >= 3)
494         read_data (&log_mode, sizeof (log_mode));
495     if (version >= 1)
496     {
497         g_free (tty);
498         tty = read_string ();
499     }
500     x_authority_filename = read_string ();
501     if (version >= 1)
502     {
503         g_free (xdisplay);
504         xdisplay = read_string ();
505         if (x_authority)
506             g_object_unref (x_authority);
507         x_authority = read_xauth ();
508     }
509     read_data (&env_length, sizeof (env_length));
510     for (i = 0; i < env_length; i++)
511         pam_putenv (pam_handle, read_string ());
512     read_data (&command_argc, sizeof (command_argc));
513     command_argv = g_malloc (sizeof (gchar *) * (command_argc + 1));
514     for (i = 0; i < command_argc; i++)
515         command_argv[i] = read_string ();
516     command_argv[i] = NULL;
517
518     /* If nothing to run just refresh credentials because we successfully authenticated */
519     if (command_argc == 0)
520     {
521         pam_setcred (pam_handle, PAM_REINITIALIZE_CRED);
522         pam_end (pam_handle, 0);
523         return EXIT_SUCCESS;
524     }
525
526     /* Redirect stderr to a log file */
527     if (log_filename)
528     {
529         if (g_path_is_absolute (log_filename))
530         {
531             fd = log_file_open (log_filename, log_mode);
532             dup2 (fd, STDERR_FILENO);
533             close (fd);
534             g_free (log_filename);
535             log_filename = NULL;
536         }
537     }
538     else
539     {
540         fd = open ("/dev/null", O_WRONLY);
541         dup2 (fd, STDERR_FILENO);
542         close (fd);
543     }
544
545     /* Set group membership - these can be overriden in pam_setcred */
546     if (getuid () == 0)
547     {
548         if (initgroups (username, user_get_gid (user)) < 0)
549         {
550             g_printerr ("Failed to initialize supplementary groups for %s: %s\n", username, strerror (errno));
551             _exit (EXIT_FAILURE);
552         }
553     }
554
555     /* Set credentials */
556     result = pam_setcred (pam_handle, PAM_ESTABLISH_CRED);
557     if (result != PAM_SUCCESS)
558     {
559         g_printerr ("Failed to establish PAM credentials: %s\n", pam_strerror (pam_handle, result));
560         pam_end (pam_handle, 0);
561         return EXIT_FAILURE;
562     }
563
564     /* Open the session */
565     result = pam_open_session (pam_handle, 0);
566     if (result != PAM_SUCCESS)
567     {
568         g_printerr ("Failed to open PAM session: %s\n", pam_strerror (pam_handle, result));
569         pam_end (pam_handle, 0);
570         return EXIT_FAILURE;
571     }
572
573     /* Open a connection to the system bus for ConsoleKit - we must keep it open or CK will close the session */
574     bus = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);
575     if (error)
576         g_printerr ("Unable to contact system bus: %s", error->message);
577     if (!bus)
578     {
579         pam_end (pam_handle, 0);
580         return EXIT_FAILURE;
581     }
582
583     /* Check what logind session we are, or fallback to ConsoleKit */
584     login1_session_id = pam_getenv (pam_handle, "XDG_SESSION_ID");
585     if (login1_session_id)
586     {
587         write_string (login1_session_id);
588         if (version >= 2)
589             write_string (NULL);
590     }
591     else
592     {
593         g_variant_builder_init (&ck_parameters, G_VARIANT_TYPE ("(a(sv))"));
594         g_variant_builder_open (&ck_parameters, G_VARIANT_TYPE ("a(sv)"));
595         g_variant_builder_add (&ck_parameters, "(sv)", "unix-user", g_variant_new_int32 (user_get_uid (user)));
596         if (g_strcmp0 (pam_getenv (pam_handle, "XDG_SESSION_CLASS"), "greeter") == 0)
597             g_variant_builder_add (&ck_parameters, "(sv)", "session-type", g_variant_new_string ("LoginWindow"));
598         if (xdisplay)
599         {
600             g_variant_builder_add (&ck_parameters, "(sv)", "x11-display", g_variant_new_string (xdisplay));
601             if (tty)
602                 g_variant_builder_add (&ck_parameters, "(sv)", "x11-display-device", g_variant_new_string (tty));
603         }
604         if (remote_host_name)
605         {
606             g_variant_builder_add (&ck_parameters, "(sv)", "is-local", g_variant_new_boolean (FALSE));
607             g_variant_builder_add (&ck_parameters, "(sv)", "remote-host-name", g_variant_new_string (remote_host_name));
608         }
609         else
610             g_variant_builder_add (&ck_parameters, "(sv)", "is-local", g_variant_new_boolean (TRUE));
611         console_kit_cookie = ck_open_session (&ck_parameters);
612         if (version >= 2)
613             write_string (NULL);
614         write_string (console_kit_cookie);
615         if (console_kit_cookie)
616         {
617             gchar *value;
618             value = g_strdup_printf ("XDG_SESSION_COOKIE=%s", console_kit_cookie);
619             pam_putenv (pam_handle, value);
620             g_free (value);
621         }
622     }
623
624     /* Write X authority */
625     if (x_authority)
626     {
627         gboolean drop_privileges, result;
628         gchar *value;
629         GError *error = NULL;
630
631         drop_privileges = geteuid () == 0;
632         if (drop_privileges)
633             privileges_drop (user_get_uid (user), user_get_gid (user));
634         result = x_authority_write (x_authority, XAUTH_WRITE_MODE_REPLACE, x_authority_filename, &error);
635         if (drop_privileges)
636             privileges_reclaim ();
637
638         if (error)
639             g_printerr ("Error writing X authority: %s\n", error->message);
640         g_clear_error (&error);
641         if (!result)
642         {
643             pam_end (pam_handle, 0);
644             return EXIT_FAILURE;
645         }
646
647         value = g_strdup_printf ("XAUTHORITY=%s", x_authority_filename);
648         pam_putenv (pam_handle, value);
649         g_free (value);
650     }
651
652     /* Catch terminate signal and pass it to the child */
653     signal (SIGTERM, signal_cb);
654
655     /* Run the command as the authenticated user */
656     uid = user_get_uid (user);
657     gid = user_get_gid (user);
658     home_directory = user_get_home_directory (user);
659     child_pid = fork ();
660     if (child_pid == 0)
661     {
662         /* Make this process its own session */
663         if (setsid () < 0)
664             _exit (errno);
665
666         /* Change to this user */
667         if (getuid () == 0)
668         {
669             if (setgid (gid) != 0)
670                 _exit (errno);
671
672             if (setuid (uid) != 0)
673                 _exit (errno);
674         }
675
676         /* Change working directory */
677         /* NOTE: This must be done after the permissions are changed because NFS filesystems can
678          * be setup so the local root user accesses the NFS files as 'nobody'.  If the home directories
679          * are not system readable then the chdir can fail */
680         if (chdir (home_directory) != 0)
681             _exit (errno);
682
683         if (log_filename)
684         {
685             fd = log_file_open (log_filename, log_mode);
686             if (fd >= 0)
687             {
688                 dup2 (fd, STDERR_FILENO);
689                 close (fd);
690             }
691         }
692
693         /* Run the command */
694         execve (command_argv[0], command_argv, pam_getenvlist (pam_handle));
695         _exit (EXIT_FAILURE);
696     }
697
698     /* Bail out if failed to fork */
699     if (child_pid < 0)
700     {
701         g_printerr ("Failed to fork session child process: %s\n", strerror (errno));
702         return_code = EXIT_FAILURE;
703     }
704
705     /* Wait for the command to complete (blocks) */
706     if (child_pid > 0)
707     {
708         /* Log to utmp */
709         if (g_strcmp0 (pam_getenv (pam_handle, "XDG_SESSION_CLASS"), "greeter") != 0)
710         {
711             struct utmpx ut;
712             struct timeval tv;
713
714             memset (&ut, 0, sizeof (ut));
715             ut.ut_type = USER_PROCESS;
716             ut.ut_pid = child_pid;
717             if (xdisplay)
718             {
719                 strncpy (ut.ut_line, xdisplay, sizeof (ut.ut_line));
720                 strncpy (ut.ut_id, xdisplay, sizeof (ut.ut_id));
721             }
722             else if (tty)
723                 strncpy (ut.ut_line, tty + strlen ("/dev/"), sizeof (ut.ut_line));
724             strncpy (ut.ut_user, username, sizeof (ut.ut_user));
725             if (xdisplay)
726                 strncpy (ut.ut_host, xdisplay, sizeof (ut.ut_host));
727             else if (remote_host_name)
728                 strncpy (ut.ut_host, remote_host_name, sizeof (ut.ut_host));
729             gettimeofday (&tv, NULL);
730             ut.ut_tv.tv_sec = tv.tv_sec;
731             ut.ut_tv.tv_usec = tv.tv_usec;
732
733             /* Write records to utmp/wtmp databases */
734             setutxent ();
735             if (!pututxline (&ut))
736                 g_printerr ("Failed to write utmpx: %s\n", strerror (errno));
737             endutxent ();
738             updwtmpx ("/var/log/wtmp", &ut);
739
740 #if HAVE_LIBAUDIT          
741             audit_event (AUDIT_USER_LOGIN, username, uid, remote_host_name, tty, TRUE);
742 #endif
743         }
744
745         waitpid (child_pid, &return_code, 0);
746         child_pid = 0;
747
748         /* Log to utmp */
749         if (g_strcmp0 (pam_getenv (pam_handle, "XDG_SESSION_CLASS"), "greeter") != 0)
750         {
751             struct utmpx ut;
752             struct timeval tv;
753
754             memset (&ut, 0, sizeof (ut));
755             ut.ut_type = DEAD_PROCESS;
756             ut.ut_pid = child_pid;
757             if (xdisplay)
758             {
759                 strncpy (ut.ut_line, xdisplay, sizeof (ut.ut_line));
760                 strncpy (ut.ut_id, xdisplay, sizeof (ut.ut_id));
761             }
762             else if (tty)
763                 strncpy (ut.ut_line, tty + strlen ("/dev/"), sizeof (ut.ut_line));
764             strncpy (ut.ut_user, username, sizeof (ut.ut_user));
765             if (xdisplay)
766                 strncpy (ut.ut_host, xdisplay, sizeof (ut.ut_host));
767             else if (remote_host_name)
768                 strncpy (ut.ut_host, remote_host_name, sizeof (ut.ut_host));
769             gettimeofday (&tv, NULL);
770             ut.ut_tv.tv_sec = tv.tv_sec;
771             ut.ut_tv.tv_usec = tv.tv_usec;
772
773             /* Write records to utmp/wtmp databases */
774             setutxent ();
775             if (!pututxline (&ut))
776                 g_printerr ("Failed to write utmpx: %s\n", strerror (errno));
777             endutxent ();
778             updwtmpx ("/var/log/wtmp", &ut);
779
780 #if HAVE_LIBAUDIT
781             audit_event (AUDIT_USER_LOGOUT, username, uid, remote_host_name, tty, TRUE);
782 #endif
783         }
784     }
785
786     /* Remove X authority */
787     if (x_authority)
788     {
789         gboolean drop_privileges, result;
790         GError *error = NULL;
791
792         drop_privileges = geteuid () == 0;
793         if (drop_privileges)
794             privileges_drop (user_get_uid (user), user_get_gid (user));
795         result = x_authority_write (x_authority, XAUTH_WRITE_MODE_REMOVE, x_authority_filename, &error);
796         if (drop_privileges)
797             privileges_reclaim ();
798
799         if (error)
800             g_printerr ("Error removing X authority: %s\n", error->message);
801         g_clear_error (&error);
802         if (!result)
803             _exit (EXIT_FAILURE);
804     }
805
806     /* Close the Console Kit session */
807     if (console_kit_cookie)
808         ck_close_session (console_kit_cookie);
809
810     /* Close the session */
811     pam_close_session (pam_handle, 0);
812
813     /* Remove credentials */
814     pam_setcred (pam_handle, PAM_DELETE_CRED);
815
816     pam_end (pam_handle, 0);
817     pam_handle = NULL;
818
819     /* Return result of session process to the daemon */
820     return return_code;
821 }