]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - tests/src/test-runner.c
Override logind's or consolekit's decision to automatically change active session...
[sojka/lightdm.git] / tests / src / test-runner.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <ctype.h>
5 #include <errno.h>
6 #include <glib.h>
7 #include <glib/gstdio.h>
8 #include <glib-unix.h>
9 #include <gio/gio.h>
10 #include <gio/gunixsocketaddress.h>
11 #include <unistd.h>
12 #include <pwd.h>
13
14 /* Timeout in ms waiting for the status we expect */
15 static int status_timeout_ms = 4000;
16
17 /* Timeout in ms to wait for SIGTERM to be handled by a child process */
18 #define KILL_TIMEOUT 2000
19
20 static gchar *test_runner_command;
21 static gchar *config_path;
22 static GKeyFile *config;
23 static GSocket *status_socket = NULL;
24 static gchar *status_socket_name = NULL;
25 static GList *statuses = NULL;
26 typedef struct
27 {
28     gchar *text;
29     gboolean done;
30 } ScriptLine;
31 static GList *script = NULL;
32 static guint status_timeout = 0;
33 static gchar *temp_dir = NULL;
34 static int service_count;
35 typedef struct
36 {
37     pid_t pid;
38     guint kill_timeout;
39 } Process;
40 static Process *lightdm_process = NULL;
41 static GHashTable *children = NULL;
42 static gboolean stop = FALSE;
43 static gint exit_status = 0;
44 static GDBusConnection *accounts_connection = NULL;
45 static GDBusNodeInfo *accounts_info;
46 static GDBusNodeInfo *user_info;
47 typedef struct
48 {
49     guint uid;
50     gchar *user_name;
51     gchar *real_name;
52     gchar *home_directory;
53     gchar *image;
54     gchar *background;
55     gchar *path;
56     guint id;
57     gchar *language;
58     gchar *xsession;
59     gchar **layouts;
60     gboolean has_messages;
61     gboolean hidden;
62 } AccountsUser;
63 static GList *accounts_users = NULL;
64 static void handle_user_call (GDBusConnection       *connection,
65                               const gchar           *sender,
66                               const gchar           *object_path,
67                               const gchar           *interface_name,
68                               const gchar           *method_name,
69                               GVariant              *parameters,
70                               GDBusMethodInvocation *invocation,
71                               gpointer               user_data);
72 static GVariant *handle_user_get_property (GDBusConnection       *connection,
73                                            const gchar           *sender,
74                                            const gchar           *object_path,
75                                            const gchar           *interface_name,
76                                            const gchar           *property_name,
77                                            GError               **error,
78                                            gpointer               user_data);
79 static const GDBusInterfaceVTable user_vtable =
80 {
81     handle_user_call,
82     handle_user_get_property,
83 };
84 static GDBusConnection *ck_connection = NULL;
85 static GDBusNodeInfo *ck_session_info;
86 typedef struct
87 {
88     gchar *cookie;
89     gchar *path;
90     guint id;
91     gboolean locked;
92 } CKSession;
93 static GList *ck_sessions = NULL;
94 static gint ck_session_index = 0;
95 static void handle_ck_session_call (GDBusConnection       *connection,
96                                     const gchar           *sender,
97                                     const gchar           *object_path,
98                                     const gchar           *interface_name,
99                                     const gchar           *method_name,
100                                     GVariant              *parameters,
101                                     GDBusMethodInvocation *invocation,
102                                     gpointer               user_data);
103 static const GDBusInterfaceVTable ck_session_vtable =
104 {
105     handle_ck_session_call,
106 };
107
108 typedef struct
109 {
110     gchar *path;
111     guint pid;
112     gboolean locked;
113 } Login1Session;
114
115 static GList *login1_sessions = NULL;
116 static gint login1_session_index = 0;
117
118 typedef struct
119 {
120     GSocket *socket;
121     GSource *source;
122 } StatusClient;
123 static GList *status_clients = NULL;
124
125 static void ready (void);
126 static void quit (int status);
127 static void check_status (const gchar *status);
128 static AccountsUser *get_accounts_user_by_uid (guint uid);
129 static AccountsUser *get_accounts_user_by_name (const gchar *username);
130 static void accounts_user_set_hidden (AccountsUser *user, gboolean hidden, gboolean emit_signal);
131
132 static gboolean
133 kill_timeout_cb (gpointer data)
134 {
135     Process *process = data;
136
137     process->kill_timeout = 0;
138
139     if (getenv ("DEBUG"))
140         g_print ("Sending SIGKILL to process %d\n", process->pid);
141     kill (process->pid, SIGKILL);
142
143     return FALSE;
144 }
145
146 static void
147 stop_process (Process *process)
148 {
149     if (process->kill_timeout != 0)
150         return;
151
152     if (getenv ("DEBUG"))
153         g_print ("Sending SIGTERM to process %d\n", process->pid);
154     kill (process->pid, SIGTERM);
155     process->kill_timeout = g_timeout_add (KILL_TIMEOUT, kill_timeout_cb, process);
156 }
157
158 static void
159 process_exit_cb (GPid pid, gint status, gpointer data)
160 {
161     Process *process;
162     gchar *status_text;
163
164     if (getenv ("DEBUG"))
165     {
166         if (WIFEXITED (status))
167             g_print ("Process %d exited with status %d\n", pid, WEXITSTATUS (status));
168         else
169             g_print ("Process %d terminated with signal %d\n", pid, WTERMSIG (status));
170     }
171
172     if (lightdm_process && pid == lightdm_process->pid)
173     {
174         process = lightdm_process;
175         lightdm_process = NULL;
176         if (WIFEXITED (status))
177             status_text = g_strdup_printf ("RUNNER DAEMON-EXIT STATUS=%d", WEXITSTATUS (status));
178         else
179             status_text = g_strdup_printf ("RUNNER DAEMON-TERMINATE SIGNAL=%d", WTERMSIG (status));
180         check_status (status_text);
181     }
182     else
183     {
184         process = g_hash_table_lookup (children, GINT_TO_POINTER (pid));
185         if (!process)
186             return;
187         g_hash_table_remove (children, GINT_TO_POINTER (pid));
188     }
189
190     if (process->kill_timeout)
191         g_source_remove (process->kill_timeout);
192     process->kill_timeout = 0;
193
194     /* Quit once all children have stopped */
195     if (stop)
196         quit (exit_status);
197 }
198
199 static Process *
200 watch_process (pid_t pid)
201 {
202     Process *process;
203
204     process = g_malloc0 (sizeof (Process));
205     process->pid = pid;
206     process->kill_timeout = 0;
207
208     if (getenv ("DEBUG"))
209         g_print ("Watching process %d\n", process->pid);
210     g_child_watch_add (process->pid, process_exit_cb, NULL);
211
212     return process;
213 }
214
215 static void
216 quit (int status)
217 {
218     GHashTableIter iter;
219
220     if (!stop)
221         exit_status = status;
222     stop = TRUE;
223
224     /* Stop all the children */
225     g_hash_table_iter_init (&iter, children);
226     while (TRUE)
227     {
228         gpointer key, value;
229
230         if (!g_hash_table_iter_next (&iter, &key, &value))
231             break;
232
233         stop_process ((Process *)value);
234     }
235
236     /* Don't quit until all children are stopped */
237     if (g_hash_table_size (children) > 0)
238         return;
239
240     /* Stop the daemon */
241     if (lightdm_process)
242     {
243         stop_process (lightdm_process);
244         return;
245     }
246
247     if (status_socket_name)
248         unlink (status_socket_name);
249
250     if (temp_dir && getenv ("DEBUG") == NULL)
251     {
252         gchar *command = g_strdup_printf ("rm -rf %s", temp_dir);
253         if (system (command))
254             perror ("Failed to delete temp directory");
255     }
256
257     exit (status);
258 }
259
260 static void
261 fail (const gchar *event, const gchar *expected)
262 {
263     GList *link;
264
265     if (stop)
266         return;
267
268     g_printerr ("Command line: %s", test_runner_command);
269     g_printerr ("Events:\n");
270     for (link = statuses; link; link = link->next)
271         g_printerr ("    %s\n", (gchar *)link->data);
272     if (event)
273         g_printerr ("    %s\n", event);
274     if (expected)
275         g_printerr ("    ^^^ expected \"%s\"\n", expected);
276     else
277         g_printerr ("^^^ expected nothing\n");
278
279     quit (EXIT_FAILURE);
280 }
281
282 static gchar *
283 get_prefix (const gchar *text)
284 {
285     gchar *prefix;
286     gint i;
287
288     prefix = g_strdup (text);
289     for (i = 0; prefix[i] != '\0' && prefix[i] != ' '; i++);
290     prefix[i] = '\0';
291
292     return prefix;
293 }
294
295 static ScriptLine *
296 get_script_line (const gchar *prefix)
297 {
298     GList *link;
299
300     for (link = script; link; link = link->next)
301     {
302         ScriptLine *line = link->data;
303
304         /* Ignore lines with other prefixes */
305         if (prefix)
306         {
307             gchar *p;
308             gboolean matches;
309
310             p = get_prefix (line->text);
311             matches = strcmp (prefix, p) == 0;
312             g_free (p);
313
314             if (!matches)
315                 continue;
316         }
317
318         if (!line->done)
319             return line;
320     }
321
322     return NULL;
323 }
324
325 static gboolean
326 stop_loop (gpointer user_data)
327 {
328     g_main_loop_quit ((GMainLoop *)user_data);
329     return G_SOURCE_REMOVE;
330 }
331
332 static void
333 handle_command (const gchar *command)
334 {
335     const gchar *c;
336     gchar *name = NULL;
337     GHashTable *params;
338
339     c = command;
340     while (*c && !isspace (*c))
341         c++;
342     name = g_strdup_printf ("%.*s", (int) (c - command), command);
343
344     params = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
345     while (TRUE)
346     {
347         const gchar *start;
348         gchar *param_name, *param_value;
349
350         while (isspace (*c))
351             c++;
352         start = c;
353         while (*c && !isspace (*c) && *c != '=')
354             c++;
355         if (*c == '\0')
356             break;
357
358         param_name = g_strdup_printf ("%.*s", (int) (c - start), start);
359
360         if (*c == '=')
361         {
362             c++;
363             while (isspace (*c))
364                 c++;
365             if (*c == '\"')
366             {
367                 gboolean escaped = FALSE;
368                 GString *value;
369
370                 c++;
371                 value = g_string_new ("");
372                 while (*c)
373                 {
374                     if (*c == '\\')
375                     {
376                         if (escaped)
377                         {
378                             g_string_append_c (value, '\\');
379                             escaped = FALSE;
380                         }
381                         else
382                             escaped = TRUE;
383                     }
384                     else if (!escaped && *c == '\"')
385                         break;
386                     if (!escaped)
387                         g_string_append_c (value, *c);
388                     c++;
389                 }
390                 param_value = value->str;
391                 g_string_free (value, FALSE);
392                 if (*c == '\"')
393                     c++;
394             }
395             else
396             {
397                 start = c;
398                 while (*c && !isspace (*c))
399                     c++;
400                 param_value = g_strdup_printf ("%.*s", (int) (c - start), start);
401             }
402         }
403         else
404             param_value = g_strdup ("");
405
406         g_hash_table_insert (params, param_name, param_value);
407     }
408
409     if (strcmp (name, "START-DAEMON") == 0)
410     {
411         GString *command_line;
412         gchar **lightdm_argv;
413         pid_t lightdm_pid;
414         GError *error = NULL;
415
416         command_line = g_string_new ("lightdm");
417         if (getenv ("DEBUG"))
418             g_string_append (command_line, " --debug");
419         g_string_append_printf (command_line, " --cache-dir %s/cache", temp_dir);
420
421         test_runner_command = g_strdup_printf ("PATH=%s LD_PRELOAD=%s LD_LIBRARY_PATH=%s LIGHTDM_TEST_ROOT=%s DBUS_SESSION_BUS_ADDRESS=%s %s\n",
422                                                g_getenv ("PATH"), g_getenv ("LD_PRELOAD"), g_getenv ("LD_LIBRARY_PATH"), g_getenv ("LIGHTDM_TEST_ROOT"), g_getenv ("DBUS_SESSION_BUS_ADDRESS"),
423                                                command_line->str);
424
425         if (!g_shell_parse_argv (command_line->str, NULL, &lightdm_argv, &error))
426         {
427             g_warning ("Error parsing command line: %s", error->message);
428             quit (EXIT_FAILURE);
429         }
430         g_clear_error (&error);
431
432         if (!g_spawn_async (NULL, lightdm_argv, NULL, G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH, NULL, NULL, &lightdm_pid, &error))
433         {
434             g_warning ("Error launching LightDM: %s", error->message);
435             quit (EXIT_FAILURE);
436         }
437         g_clear_error (&error);
438         lightdm_process = watch_process (lightdm_pid);
439
440         check_status ("RUNNER DAEMON-START");
441     }
442     else if (strcmp (name, "WAIT") == 0)
443     {
444         /* Use a main loop so that our DBus functions are still responsive */
445         GMainLoop *loop = g_main_loop_new (NULL, FALSE);
446         g_timeout_add_seconds (1, stop_loop, loop);
447         g_main_loop_run (loop);
448         g_main_loop_unref (loop);
449     }
450     else if (strcmp (name, "LIST-SEATS") == 0)
451     {
452         GVariant *result, *value;
453         GString *status;
454         GVariantIter *iter;
455         const gchar *path;
456         int i = 0;
457
458         result = g_dbus_connection_call_sync (g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, NULL),
459                                               "org.freedesktop.DisplayManager",
460                                               "/org/freedesktop/DisplayManager",
461                                               "org.freedesktop.DBus.Properties",
462                                               "Get",
463                                               g_variant_new ("(ss)", "org.freedesktop.DisplayManager", "Seats"),
464                                               G_VARIANT_TYPE ("(v)"),
465                                               G_DBUS_CALL_FLAGS_NONE,
466                                               1000,
467                                               NULL,
468                                               NULL);
469
470         status = g_string_new ("RUNNER LIST-SEATS SEATS=");
471         g_variant_get (result, "(v)", &value);
472         g_variant_get (value, "ao", &iter);
473         while (g_variant_iter_loop (iter, "&o", &path))
474         {
475             if (i != 0)
476                 g_string_append (status, ",");
477             g_string_append (status, path);
478             i++;
479         }
480         g_variant_unref (value);
481         g_variant_unref (result);
482
483         check_status (status->str);
484         g_string_free (status, TRUE);
485     }
486     else if (strcmp (name, "LIST-SESSIONS") == 0)
487     {
488         GVariant *result, *value;
489         GString *status;
490         GVariantIter *iter;
491         const gchar *path;
492         int i = 0;
493
494         result = g_dbus_connection_call_sync (g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, NULL),
495                                               "org.freedesktop.DisplayManager",
496                                               "/org/freedesktop/DisplayManager",
497                                               "org.freedesktop.DBus.Properties",
498                                               "Get",
499                                               g_variant_new ("(ss)", "org.freedesktop.DisplayManager", "Sessions"),
500                                               G_VARIANT_TYPE ("(v)"),
501                                               G_DBUS_CALL_FLAGS_NONE,
502                                               1000,
503                                               NULL,
504                                               NULL);
505
506         status = g_string_new ("RUNNER LIST-SESSIONS SESSIONS=");
507         g_variant_get (result, "(v)", &value);
508         g_variant_get (value, "ao", &iter);
509         while (g_variant_iter_loop (iter, "&o", &path))
510         {
511             if (i != 0)
512                 g_string_append (status, ",");
513             g_string_append (status, path);
514             i++;
515         }
516         g_variant_unref (value);
517         g_variant_unref (result);
518
519         check_status (status->str);
520         g_string_free (status, TRUE);
521     }
522     else if (strcmp (name, "SWITCH-TO-GREETER") == 0)
523     {
524         g_dbus_connection_call_sync (g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, NULL),
525                                      "org.freedesktop.DisplayManager",
526                                      "/org/freedesktop/DisplayManager/Seat0",
527                                      "org.freedesktop.DisplayManager.Seat",
528                                      "SwitchToGreeter",
529                                      g_variant_new ("()"),
530                                      G_VARIANT_TYPE ("()"),
531                                      G_DBUS_CALL_FLAGS_NONE,
532                                      1000,
533                                      NULL,
534                                      NULL);
535         check_status ("RUNNER SWITCH-TO-GREETER");
536     }
537     else if (strcmp (name, "SWITCH-TO-USER") == 0)
538     {
539         gchar *status_text, *username;
540
541         username = g_hash_table_lookup (params, "USERNAME");
542         g_dbus_connection_call_sync (g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, NULL),
543                                      "org.freedesktop.DisplayManager",
544                                      "/org/freedesktop/DisplayManager/Seat0",
545                                      "org.freedesktop.DisplayManager.Seat",
546                                      "SwitchToUser",
547                                      g_variant_new ("(ss)", username, ""),
548                                      G_VARIANT_TYPE ("()"),
549                                      G_DBUS_CALL_FLAGS_NONE,
550                                      1000,
551                                      NULL,
552                                      NULL);
553         status_text = g_strdup_printf ("RUNNER SWITCH-TO-USER USERNAME=%s", username);
554         check_status (status_text);
555         g_free (status_text);
556     }
557     else if (strcmp (name, "SWITCH-TO-GUEST") == 0)
558     {
559         g_dbus_connection_call_sync (g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, NULL),
560                                      "org.freedesktop.DisplayManager",
561                                      "/org/freedesktop/DisplayManager/Seat0",
562                                      "org.freedesktop.DisplayManager.Seat",
563                                      "SwitchToGuest",
564                                      g_variant_new ("(s)", ""),
565                                      G_VARIANT_TYPE ("()"),
566                                      G_DBUS_CALL_FLAGS_NONE,
567                                      1000,
568                                      NULL,
569                                      NULL);
570         check_status ("RUNNER SWITCH-TO-GUEST");
571     }
572     else if (strcmp (name, "STOP-DAEMON") == 0)
573         stop_process (lightdm_process);
574     // FIXME: Make generic RUN-COMMAND
575     else if (strcmp (name, "START-XSERVER") == 0)
576     {
577         gchar *xserver_args, *command_line;
578         gchar **argv;
579         GPid pid;
580         Process *process;
581         GError *error = NULL;
582
583         xserver_args = g_hash_table_lookup (params, "ARGS");
584         if (!xserver_args)
585             xserver_args = "";
586         command_line = g_strdup_printf ("%s/tests/src/X %s", BUILDDIR, xserver_args);
587
588         if (!g_shell_parse_argv (command_line, NULL, &argv, &error) ||
589             !g_spawn_async (NULL, argv, NULL, G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &pid, &error))
590         {
591             g_printerr ("Error starting X server: %s", error->message);
592             quit (EXIT_FAILURE);
593         }
594         else
595         {
596             process = watch_process (pid);
597             g_hash_table_insert (children, GINT_TO_POINTER (process->pid), process);
598         }
599     }
600     else if (strcmp (name, "START-VNC-CLIENT") == 0)
601     {
602         gchar *vnc_client_args, *command_line;
603         gchar **argv;
604         GPid pid;
605         Process *process;
606         GError *error = NULL;
607
608         vnc_client_args = g_hash_table_lookup (params, "ARGS");
609         if (!vnc_client_args)
610             vnc_client_args = "";
611         command_line = g_strdup_printf ("%s/tests/src/vnc-client %s", BUILDDIR, vnc_client_args);
612
613         if (!g_shell_parse_argv (command_line, NULL, &argv, &error) ||
614             !g_spawn_async (NULL, argv, NULL, G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &pid, &error))
615         {
616             g_printerr ("Error starting VNC client: %s", error->message);
617             quit (EXIT_FAILURE);
618         }
619         else
620         {
621             process = watch_process (pid);
622             g_hash_table_insert (children, GINT_TO_POINTER (process->pid), process);
623         }
624     }
625     else if (strcmp (name, "ADD-USER") == 0)
626     {
627         gchar *status_text, *username;
628         AccountsUser *user;
629
630         username = g_hash_table_lookup (params, "USERNAME");
631         user = get_accounts_user_by_name (username);
632         if (user)
633             accounts_user_set_hidden (user, FALSE, TRUE);
634         else
635             g_warning ("Unknown user %s", username);
636
637         status_text = g_strdup_printf ("RUNNER ADD-USER USERNAME=%s", username);
638         check_status (status_text);
639         g_free (status_text);
640     }
641     else if (strcmp (name, "UPDATE-USER") == 0)
642     {
643         GString *status_text;
644         gchar *username;
645         AccountsUser *user;
646         GError *error = NULL;
647
648         status_text = g_string_new ("RUNNER UPDATE-USER USERNAME=");
649
650         username = g_hash_table_lookup (params, "USERNAME");
651         g_string_append (status_text, username);
652         user = get_accounts_user_by_name (username);
653         if (user)
654         {
655             if (g_hash_table_lookup (params, "NAME"))
656             {
657                 user->user_name = g_strdup (g_hash_table_lookup (params, "NAME"));
658                 g_string_append_printf (status_text, " NAME=%s", user->user_name);
659             }
660             if (g_hash_table_lookup (params, "REAL-NAME"))
661             {
662                 user->real_name = g_strdup (g_hash_table_lookup (params, "REAL-NAME"));
663                 g_string_append_printf (status_text, " REAL-NAME=%s", user->real_name);
664             }
665             if (g_hash_table_lookup (params, "HOME-DIRECTORY"))
666             {
667                 user->home_directory = g_strdup (g_hash_table_lookup (params, "HOME-DIRECTORY"));
668                 g_string_append_printf (status_text, " HOME-DIRECTORY=%s", user->home_directory);
669             }
670             if (g_hash_table_lookup (params, "IMAGE"))
671             {
672                 user->image = g_strdup (g_hash_table_lookup (params, "IMAGE"));
673                 g_string_append_printf (status_text, " IMAGE=%s", user->image);
674             }
675             if (g_hash_table_lookup (params, "BACKGROUND"))
676             {
677                 user->background = g_strdup (g_hash_table_lookup (params, "BACKGROUND"));
678                 g_string_append_printf (status_text, " BACKGROUND=%s", user->background);
679             }
680             if (g_hash_table_lookup (params, "LANGUAGE"))
681             {
682                 user->language = g_strdup (g_hash_table_lookup (params, "LANGUAGE"));
683                 g_string_append_printf (status_text, " LANGUAGE=%s", user->language);
684             }
685             if (g_hash_table_lookup (params, "LAYOUTS"))
686             {
687                 const gchar *value = g_hash_table_lookup (params, "LAYOUTS");
688                 user->layouts = g_strsplit (value, ";", -1);
689                 g_string_append_printf (status_text, " LAYOUTS=%s", value);
690             }
691             if (g_hash_table_lookup (params, "HAS-MESSAGES"))
692             {
693                 user->has_messages = g_strcmp0 (g_hash_table_lookup (params, "HAS-MESSAGES"), "TRUE") == 0;
694                 g_string_append_printf (status_text, " HAS-MESSAGES=%s", user->has_messages ? "TRUE" : "FALSE");
695             }
696             if (g_hash_table_lookup (params, "SESSION"))
697             {
698                 user->xsession = g_strdup (g_hash_table_lookup (params, "SESSION"));
699                 g_string_append_printf (status_text, " SESSION=%s", user->xsession);
700             }
701         }
702         else
703             g_warning ("Unknown user %s", username);
704
705         g_dbus_connection_emit_signal (accounts_connection,
706                                        NULL,
707                                        user->path,
708                                        "org.freedesktop.Accounts.User",
709                                        "Changed",
710                                        g_variant_new ("()"),
711                                        &error);
712         if (error)
713             g_warning ("Failed to emit Changed: %s", error->message);
714         g_clear_error (&error);
715
716         check_status (status_text->str);
717         g_string_free (status_text, TRUE);
718     }
719     else if (strcmp (name, "DELETE-USER") == 0)
720     {
721         gchar *status_text, *username;
722         AccountsUser *user;
723
724         username = g_hash_table_lookup (params, "USERNAME");
725         user = get_accounts_user_by_name (username);
726         if (user)
727             accounts_user_set_hidden (user, TRUE, TRUE);
728         else
729             g_warning ("Unknown user %s", username);
730
731         status_text = g_strdup_printf ("RUNNER DELETE-USER USERNAME=%s", username);
732         check_status (status_text);
733         g_free (status_text);
734     }
735     /* Forward to external processes */
736     else if (g_str_has_prefix (name, "SESSION-") ||
737              g_str_has_prefix (name, "GREETER-") ||
738              g_str_has_prefix (name, "XSERVER-") ||
739              strcmp (name, "UNITY-SYSTEM-COMPOSITOR") == 0)
740     {
741         GList *link;
742         for (link = status_clients; link; link = link->next)
743         {
744             StatusClient *client = link->data;
745             int length;
746             GError *error = NULL;
747
748             length = strlen (command);
749             if (g_socket_send (client->socket, (gchar *) &length, sizeof (length), NULL, &error) < 0 ||
750                 g_socket_send (client->socket, command, strlen (command), NULL, &error) < 0)
751                 g_printerr ("Failed to write to client socket: %s\n", error->message);
752             g_clear_error (&error);
753         }
754     }
755     else
756     {
757         g_printerr ("Unknown command '%s'\n", name);
758         quit (EXIT_FAILURE);
759     }
760
761     g_free (name);
762     g_hash_table_unref (params);
763 }
764
765 static void
766 run_commands (void)
767 {
768     /* Stop daemon if requested */
769     while (TRUE)
770     {
771         ScriptLine *line;
772
773         /* Commands start with an asterisk */
774         line = get_script_line (NULL);
775         if (!line || line->text[0] != '*')
776             break;
777
778         statuses = g_list_append (statuses, g_strdup (line->text));
779         line->done = TRUE;
780
781         handle_command (line->text + 1);
782     }
783
784     /* Stop at the end of the script */
785     if (get_script_line (NULL) == NULL)
786         quit (EXIT_SUCCESS);
787 }
788
789 static gboolean
790 status_timeout_cb (gpointer data)
791 {
792     ScriptLine *line;
793
794     line = get_script_line (NULL);
795     fail ("(timeout)", line ? line->text : NULL);
796
797     return FALSE;
798 }
799
800 static void
801 check_status (const gchar *status)
802 {
803     ScriptLine *line;
804     gboolean result = FALSE;
805     gchar *prefix;
806
807     if (stop)
808         return;
809
810     statuses = g_list_append (statuses, g_strdup (status));
811
812     if (getenv ("DEBUG"))
813         g_print ("%s\n", status);
814
815     /* Try and match against expected */
816     prefix = get_prefix (status);
817     line = get_script_line (prefix);
818     g_free (prefix);
819     if (line)
820     {
821         gchar *full_pattern = g_strdup_printf ("^%s$", line->text);
822         result = g_regex_match_simple (full_pattern, status, 0, 0);
823         g_free (full_pattern);
824     }
825
826     if (!result)
827     {
828         if (line == NULL)
829             line = get_script_line (NULL);
830         fail (NULL, line ? line->text : NULL);
831         return;
832     }
833
834     line->done = TRUE;
835
836     /* Restart timeout */
837     if (status_timeout)
838         g_source_remove (status_timeout);
839     status_timeout = g_timeout_add (status_timeout_ms, status_timeout_cb, NULL);
840
841     run_commands ();
842 }
843
844 static gboolean
845 status_message_cb (GSocket *socket, GIOCondition condition, StatusClient *client)
846 {
847     int length;
848     gchar buffer[1024];
849     ssize_t n_read;
850     GError *error = NULL;
851
852     n_read = g_socket_receive (socket, (gchar *)&length, sizeof (length), NULL, &error);
853     if (n_read > 0)
854         n_read = g_socket_receive (socket, buffer, length, NULL, &error);
855     if (error)
856         g_warning ("Error reading from socket: %s", error->message);
857     g_clear_error (&error);
858     if (n_read == 0)
859     {
860         status_clients = g_list_remove (status_clients, client);
861         g_object_unref (client->socket);
862         g_free (client);
863         return FALSE;
864     }
865     else if (n_read > 0)
866     {
867         buffer[n_read] = '\0';
868         check_status (buffer);
869     }
870
871     return TRUE;
872 }
873
874 static gboolean
875 status_connect_cb (gpointer data)
876 {
877     GSocket *socket;
878     GError *error = NULL;
879
880     socket = g_socket_accept (status_socket, NULL, &error);
881     if (error)
882         g_warning ("Failed to accept status connection: %s", error->message);
883     g_clear_error (&error);
884     if (socket)
885     {
886         StatusClient *client;
887
888         client = g_malloc0 (sizeof (StatusClient));
889         client->socket = socket;
890         client->source = g_socket_create_source (socket, G_IO_IN, NULL);
891         status_clients = g_list_append (status_clients, client);
892
893         g_source_set_callback (client->source, (GSourceFunc) status_message_cb, client, NULL);
894         g_source_attach (client->source, NULL);
895     }
896
897     return TRUE;
898 }
899
900 static void
901 load_script (const gchar *filename)
902 {
903     int i;
904     gchar *data, **lines;
905
906     if (!g_file_get_contents (filename, &data, NULL, NULL))
907     {
908         g_printerr ("Unable to load script: %s\n", filename);
909         quit (EXIT_FAILURE);
910     }
911
912     lines = g_strsplit (data, "\n", -1);
913     g_free (data);
914
915     /* Load lines with #? prefix as expected behaviour */
916     for (i = 0; lines[i]; i++)
917     {
918         gchar *text = g_strstrip (lines[i]);
919         if (g_str_has_prefix (text, "#?"))
920         {
921             ScriptLine *line;
922             line = g_malloc0 (sizeof (ScriptLine));
923             line->text = g_strdup (text + 2);
924             line->done = FALSE;
925             script = g_list_append (script, line);
926         }
927     }
928     g_strfreev (lines);
929 }
930
931 static void
932 handle_upower_call (GDBusConnection       *connection,
933                     const gchar           *sender,
934                     const gchar           *object_path,
935                     const gchar           *interface_name,
936                     const gchar           *method_name,
937                     GVariant              *parameters,
938                     GDBusMethodInvocation *invocation,
939                     gpointer               user_data)
940 {
941     if (strcmp (method_name, "SuspendAllowed") == 0)
942     {
943         check_status ("UPOWER SUSPEND-ALLOWED");
944         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(b)", TRUE));
945     }
946     else if (strcmp (method_name, "Suspend") == 0)
947     {
948         check_status ("UPOWER SUSPEND");
949         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
950     }
951     else if (strcmp (method_name, "HibernateAllowed") == 0)
952     {
953         check_status ("UPOWER HIBERNATE-ALLOWED");
954         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(b)", TRUE));
955     }
956     else if (strcmp (method_name, "Hibernate") == 0)
957     {
958         check_status ("UPOWER HIBERNATE");
959         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
960     }
961     else
962         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
963 }
964
965 static void
966 upower_name_acquired_cb (GDBusConnection *connection,
967                          const gchar     *name,
968                          gpointer         user_data)
969 {
970     const gchar *upower_interface =
971         "<node>"
972         "  <interface name='org.freedesktop.UPower'>"
973         "    <method name='SuspendAllowed'>"
974         "      <arg name='allowed' direction='out' type='b'/>"
975         "    </method>"
976         "    <method name='Suspend'/>"
977         "    <method name='HibernateAllowed'>"
978         "      <arg name='allowed' direction='out' type='b'/>"
979         "    </method>"
980         "    <method name='Hibernate'/>"
981         "  </interface>"
982         "</node>";
983     static const GDBusInterfaceVTable upower_vtable =
984     {
985         handle_upower_call,
986     };
987     GDBusNodeInfo *upower_info;
988     GError *error = NULL;
989
990     upower_info = g_dbus_node_info_new_for_xml (upower_interface, &error);
991     if (error)
992         g_warning ("Failed to parse D-Bus interface: %s", error->message);
993     g_clear_error (&error);
994     if (!upower_info)
995         return;
996     g_dbus_connection_register_object (connection,
997                                        "/org/freedesktop/UPower",
998                                        upower_info->interfaces[0],
999                                        &upower_vtable,
1000                                        NULL, NULL,
1001                                        &error);
1002     if (error)
1003         g_warning ("Failed to register UPower service: %s", error->message);
1004     g_clear_error (&error);
1005     g_dbus_node_info_unref (upower_info);
1006
1007     service_count--;
1008     if (service_count == 0)
1009         ready ();
1010 }
1011
1012 static void
1013 start_upower_daemon (void)
1014 {
1015     service_count++;
1016     g_bus_own_name (G_BUS_TYPE_SYSTEM,
1017                     "org.freedesktop.UPower",
1018                     G_BUS_NAME_OWNER_FLAGS_NONE,
1019                     upower_name_acquired_cb,
1020                     NULL,
1021                     NULL,
1022                     NULL,
1023                     NULL);
1024 }
1025
1026 static CKSession *
1027 open_ck_session (GVariant *params)
1028 {
1029     CKSession *session;
1030     GString *cookie;
1031     GVariantIter *iter;
1032     const gchar *name;
1033     GVariant *value;
1034     GError *error = NULL;
1035
1036     session = g_malloc0 (sizeof (CKSession));
1037     ck_sessions = g_list_append (ck_sessions, session);
1038
1039     cookie = g_string_new ("ck-cookie");
1040     g_variant_get (params, "a(sv)", &iter);
1041     while (g_variant_iter_loop (iter, "(&sv)", &name, &value))
1042     {
1043         if (strcmp (name, "x11-display") == 0)
1044         {
1045             const gchar *display;
1046             g_variant_get (value, "&s", &display);
1047             g_string_append_printf (cookie, "-x%s", display);
1048         }
1049     }
1050
1051     session->cookie = cookie->str;
1052     g_string_free (cookie, FALSE);
1053     session->path = g_strdup_printf ("/org/freedesktop/ConsoleKit/Session%d", ck_session_index++);
1054     session->id = g_dbus_connection_register_object (ck_connection,
1055                                                      session->path,
1056                                                      ck_session_info->interfaces[0],
1057                                                      &ck_session_vtable,
1058                                                      session,
1059                                                      NULL,
1060                                                      &error);
1061     if (error)
1062         g_warning ("Failed to register CK Session: %s", error->message);
1063     g_clear_error (&error);
1064
1065     return session;
1066 }
1067
1068 static void
1069 handle_ck_call (GDBusConnection       *connection,
1070                 const gchar           *sender,
1071                 const gchar           *object_path,
1072                 const gchar           *interface_name,
1073                 const gchar           *method_name,
1074                 GVariant              *parameters,
1075                 GDBusMethodInvocation *invocation,
1076                 gpointer               user_data)
1077 {
1078     if (strcmp (method_name, "CanRestart") == 0)
1079     {
1080         check_status ("CONSOLE-KIT CAN-RESTART");
1081         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(b)", TRUE));
1082     }
1083     else if (strcmp (method_name, "CanStop") == 0)
1084     {
1085         check_status ("CONSOLE-KIT CAN-STOP");
1086         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(b)", TRUE));
1087     }
1088     else if (strcmp (method_name, "CloseSession") == 0)
1089         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(b)", TRUE));
1090     else if (strcmp (method_name, "OpenSession") == 0)
1091     {
1092         GVariantBuilder params;
1093         g_variant_builder_init (&params, G_VARIANT_TYPE ("a(sv)"));
1094         CKSession *session = open_ck_session (g_variant_builder_end (&params));
1095         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", session->cookie));
1096     }
1097     else if (strcmp (method_name, "OpenSessionWithParameters") == 0)
1098     {
1099         CKSession *session = open_ck_session (g_variant_get_child_value (parameters, 0));
1100         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", session->cookie));
1101     }
1102     else if (strcmp (method_name, "GetSessionForCookie") == 0)
1103     {
1104         GList *link;
1105         gchar *cookie;
1106
1107         g_variant_get (parameters, "(&s)", &cookie);
1108
1109         for (link = ck_sessions; link; link = link->next)
1110         {
1111             CKSession *session = link->data;
1112             if (strcmp (session->cookie, cookie) == 0)
1113             {
1114                 g_dbus_method_invocation_return_value (invocation, g_variant_new ("(o)", session->path));
1115                 return;
1116             }
1117         }
1118
1119         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Unable to find session for cookie");
1120     }
1121     else if (strcmp (method_name, "Restart") == 0)
1122     {
1123         check_status ("CONSOLE-KIT RESTART");
1124         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1125     }
1126     else if (strcmp (method_name, "Stop") == 0)
1127     {
1128         check_status ("CONSOLE-KIT STOP");
1129         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1130     }
1131     else
1132         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1133 }
1134
1135 static void
1136 handle_ck_session_call (GDBusConnection       *connection,
1137                         const gchar           *sender,
1138                         const gchar           *object_path,
1139                         const gchar           *interface_name,
1140                         const gchar           *method_name,
1141                         GVariant              *parameters,
1142                         GDBusMethodInvocation *invocation,
1143                         gpointer               user_data)
1144 {
1145     CKSession *session = user_data;
1146
1147     if (strcmp (method_name, "Lock") == 0)
1148     { 
1149         if (!session->locked)
1150             check_status ("CONSOLE-KIT LOCK-SESSION");
1151         session->locked = TRUE;
1152         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1153     }
1154     else if (strcmp (method_name, "Unlock") == 0)
1155     {
1156         if (session->locked)
1157             check_status ("CONSOLE-KIT UNLOCK-SESSION");
1158         session->locked = FALSE;
1159         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1160     }
1161     else if (strcmp (method_name, "Activate") == 0)
1162     {
1163         gchar *status = g_strdup_printf ("CONSOLE-KIT ACTIVATE-SESSION SESSION=%s", session->cookie);
1164         check_status (status);
1165         g_free (status);
1166
1167         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1168     }
1169     else
1170         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1171 }
1172
1173 static void
1174 ck_name_acquired_cb (GDBusConnection *connection,
1175                      const gchar     *name,
1176                      gpointer         user_data)
1177 {
1178     const gchar *ck_interface =
1179         "<node>"
1180         "  <interface name='org.freedesktop.ConsoleKit.Manager'>"
1181         "    <method name='CanRestart'>"
1182         "      <arg name='can_restart' direction='out' type='b'/>"
1183         "    </method>"
1184         "    <method name='CanStop'>"
1185         "      <arg name='can_stop' direction='out' type='b'/>"
1186         "    </method>"
1187         "    <method name='CloseSession'>"
1188         "      <arg name='cookie' direction='in' type='s'/>"
1189         "      <arg name='result' direction='out' type='b'/>"
1190         "    </method>"
1191         "    <method name='OpenSession'>"
1192         "      <arg name='cookie' direction='out' type='s'/>"
1193         "    </method>"
1194         "    <method name='OpenSessionWithParameters'>"
1195         "      <arg name='parameters' direction='in' type='a(sv)'/>"
1196         "      <arg name='cookie' direction='out' type='s'/>"
1197         "    </method>"
1198         "    <method name='GetSessionForCookie'>"
1199         "      <arg name='cookie' direction='in' type='s'/>"
1200         "      <arg name='ssid' direction='out' type='o'/>"
1201         "    </method>"
1202         "    <method name='Restart'/>"
1203         "    <method name='Stop'/>"
1204         "    <signal name='SeatAdded'>"
1205         "      <arg name='seat' type='o'/>"
1206         "    </signal>"
1207         "    <signal name='SeatRemoved'>"
1208         "      <arg name='seat' type='o'/>"
1209         "    </signal>"
1210         "  </interface>"
1211         "</node>";
1212     static const GDBusInterfaceVTable ck_vtable =
1213     {
1214         handle_ck_call,
1215     };
1216     const gchar *ck_session_interface =
1217         "<node>"
1218         "  <interface name='org.freedesktop.ConsoleKit.Session'>"
1219         "    <method name='Lock'/>"
1220         "    <method name='Unlock'/>"
1221         "    <method name='Activate'/>"
1222         "  </interface>"
1223         "</node>";
1224     GDBusNodeInfo *ck_info;
1225     GError *error = NULL;
1226
1227     ck_connection = connection;
1228
1229     ck_info = g_dbus_node_info_new_for_xml (ck_interface, &error);
1230     if (error)
1231         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1232     g_clear_error (&error);
1233     if (!ck_info)
1234         return;
1235     ck_session_info = g_dbus_node_info_new_for_xml (ck_session_interface, &error);
1236     if (error)
1237         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1238     g_clear_error (&error);
1239     if (!ck_session_info)
1240         return;
1241     g_dbus_connection_register_object (connection,
1242                                        "/org/freedesktop/ConsoleKit/Manager",
1243                                        ck_info->interfaces[0],
1244                                        &ck_vtable,
1245                                        NULL, NULL,
1246                                        &error);
1247     if (error)
1248         g_warning ("Failed to register console kit service: %s", error->message);
1249     g_clear_error (&error);
1250     g_dbus_node_info_unref (ck_info);
1251
1252     service_count--;
1253     if (service_count == 0)
1254         ready ();
1255 }
1256
1257 static void
1258 start_console_kit_daemon (void)
1259 {
1260     service_count++;
1261     g_bus_own_name (G_BUS_TYPE_SYSTEM,
1262                     "org.freedesktop.ConsoleKit",
1263                     G_BUS_NAME_OWNER_FLAGS_NONE,
1264                     NULL,
1265                     ck_name_acquired_cb,
1266                     NULL,
1267                     NULL,
1268                     NULL);
1269 }
1270
1271 static void
1272 handle_login1_session_call (GDBusConnection       *connection,
1273                             const gchar           *sender,
1274                             const gchar           *object_path,
1275                             const gchar           *interface_name,
1276                             const gchar           *method_name,
1277                             GVariant              *parameters,
1278                             GDBusMethodInvocation *invocation,
1279                             gpointer               user_data)
1280 {
1281     Login1Session *session = user_data;
1282
1283     if (strcmp (method_name, "Lock") == 0)
1284     {
1285         if (!session->locked)
1286             check_status ("LOGIN1 LOCK-SESSION");
1287         session->locked = TRUE;
1288         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1289     }
1290     else if (strcmp (method_name, "Unlock") == 0)
1291     {
1292         if (session->locked)
1293             check_status ("LOGIN1 UNLOCK-SESSION");
1294         session->locked = FALSE;
1295         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1296     }
1297     else if (strcmp (method_name, "Activate") == 0)
1298     {
1299         gchar *status = g_strdup_printf ("LOGIN1 ACTIVATE-SESSION SESSION=%s", strrchr (object_path, '/') + 1);
1300         check_status (status);
1301         g_free (status);
1302
1303         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1304     }
1305     else
1306         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1307 }
1308
1309 static Login1Session *
1310 open_login1_session (GDBusConnection *connection,
1311                      GVariant *params)
1312 {
1313     Login1Session *session;
1314     GError *error = NULL;
1315     GDBusNodeInfo *login1_session_info;
1316
1317     const gchar *login1_session_interface =
1318         "<node>"
1319         "  <interface name='org.freedesktop.login1.Session'>"
1320         "    <method name='Lock'/>"
1321         "    <method name='Unlock'/>"
1322         "    <method name='Activate'/>"
1323         "  </interface>"
1324         "</node>";
1325     static const GDBusInterfaceVTable login1_session_vtable =
1326     {
1327         handle_login1_session_call,
1328     };
1329
1330     session = g_malloc0 (sizeof (Login1Session));
1331     login1_sessions = g_list_append (login1_sessions, session);
1332
1333     session->path = g_strdup_printf("/org/freedesktop/login1/Session/c%d",
1334                                     login1_session_index++);
1335
1336
1337
1338     login1_session_info = g_dbus_node_info_new_for_xml (login1_session_interface,
1339                                                         &error);
1340     if (error)
1341         g_warning ("Failed to parse login1 session D-Bus interface: %s",
1342                    error->message);
1343     g_clear_error (&error);
1344     if (!login1_session_info)
1345         return NULL;
1346
1347     g_dbus_connection_register_object (connection,
1348                                        session->path,
1349                                        login1_session_info->interfaces[0],
1350                                        &login1_session_vtable,
1351                                        session,
1352                                        NULL,
1353                                        &error);
1354     if (error)
1355         g_warning ("Failed to register login1 session: %s", error->message);
1356     g_clear_error (&error);
1357     g_dbus_node_info_unref (login1_session_info);
1358
1359     return session;
1360 }
1361
1362
1363 static void
1364 handle_login1_call (GDBusConnection       *connection,
1365                     const gchar           *sender,
1366                     const gchar           *object_path,
1367                     const gchar           *interface_name,
1368                     const gchar           *method_name,
1369                     GVariant              *parameters,
1370                     GDBusMethodInvocation *invocation,
1371                     gpointer               user_data)
1372 {
1373
1374     if (strcmp (method_name, "GetSessionByPID") == 0)
1375     {
1376         /* Look for a session with our PID, and create one if we don't have one
1377            already. */
1378         GList *link;
1379         guint pid;
1380         Login1Session *ret = NULL;
1381
1382         g_variant_get (parameters, "(u)", &pid);
1383
1384         for (link = login1_sessions; link; link = link->next)
1385         {
1386             Login1Session *session;
1387             session = link->data;
1388             if (session->pid == pid)
1389             {
1390                 ret = session;
1391                 break;
1392             }
1393         }
1394         /* Not found */
1395         if (!ret)
1396             ret = open_login1_session (connection, parameters);
1397
1398         g_dbus_method_invocation_return_value (invocation,
1399                                                g_variant_new("(o)", ret->path));
1400
1401     }
1402     else if (strcmp (method_name, "CanReboot") == 0)
1403     {
1404         check_status ("LOGIN1 CAN-REBOOT");
1405         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1406     }
1407     else if (strcmp (method_name, "Reboot") == 0)
1408     {
1409         gboolean interactive;
1410         g_variant_get (parameters, "(b)", &interactive);
1411         check_status ("LOGIN1 REBOOT");
1412         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1413     }
1414     else if (strcmp (method_name, "CanPowerOff") == 0)
1415     {
1416         check_status ("LOGIN1 CAN-POWER-OFF");
1417         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1418     }
1419     else if (strcmp (method_name, "Suspend") == 0)
1420     {
1421         gboolean interactive;
1422         g_variant_get (parameters, "(b)", &interactive);
1423         check_status ("LOGIN1 SUSPEND");
1424         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1425     }
1426     else if (strcmp (method_name, "CanSuspend") == 0)
1427     {
1428         check_status ("LOGIN1 CAN-SUSPEND");
1429         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1430     }
1431     else if (strcmp (method_name, "PowerOff") == 0)
1432     {
1433         gboolean interactive;
1434         g_variant_get (parameters, "(b)", &interactive);
1435         check_status ("LOGIN1 POWER-OFF");
1436         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1437     }
1438     else if (strcmp (method_name, "CanHibernate") == 0)
1439     {
1440         check_status ("LOGIN1 CAN-HIBERNATE");
1441         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1442     }
1443     else if (strcmp (method_name, "Hibernate") == 0)
1444     {
1445         gboolean interactive;
1446         g_variant_get (parameters, "(b)", &interactive);
1447         check_status ("LOGIN1 HIBERNATE");
1448         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1449     }
1450     else
1451         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1452 }
1453
1454 static void
1455 login1_name_acquired_cb (GDBusConnection *connection,
1456                          const gchar     *name,
1457                          gpointer         user_data)
1458 {
1459     const gchar *login1_interface =
1460         "<node>"
1461         "  <interface name='org.freedesktop.login1.Manager'>"
1462         "    <method name='GetSessionByPID'>"
1463         "      <arg name='pid' type='u' direction='in'/>"
1464         "      <arg name='session' type='o' direction='out'/>"
1465         "    </method>"
1466         "    <method name='CanReboot'>"
1467         "      <arg name='result' direction='out' type='s'/>"
1468         "    </method>"
1469         "    <method name='Reboot'>"
1470         "      <arg name='interactive' direction='in' type='b'/>"
1471         "    </method>"
1472         "    <method name='CanPowerOff'>"
1473         "      <arg name='result' direction='out' type='s'/>"
1474         "    </method>"
1475         "    <method name='PowerOff'>"
1476         "      <arg name='interactive' direction='in' type='b'/>"
1477         "    </method>"
1478         "    <method name='CanSuspend'>"
1479         "      <arg name='result' direction='out' type='s'/>"
1480         "    </method>"
1481         "    <method name='Suspend'>"
1482         "      <arg name='interactive' direction='in' type='b'/>"
1483         "    </method>"
1484         "    <method name='CanHibernate'>"
1485         "      <arg name='result' direction='out' type='s'/>"
1486         "    </method>"
1487         "    <method name='Hibernate'>"
1488         "      <arg name='interactive' direction='in' type='b'/>"
1489         "    </method>"
1490         "  </interface>"
1491         "</node>";
1492     static const GDBusInterfaceVTable login1_vtable =
1493     {
1494         handle_login1_call,
1495     };
1496     GDBusNodeInfo *login1_info;
1497     GError *error = NULL;
1498
1499     login1_info = g_dbus_node_info_new_for_xml (login1_interface, &error);
1500     if (error)
1501         g_warning ("Failed to parse login1 D-Bus interface: %s", error->message);
1502     g_clear_error (&error);
1503     if (!login1_info)
1504         return;
1505     g_dbus_connection_register_object (connection,
1506                                        "/org/freedesktop/login1",
1507                                        login1_info->interfaces[0],
1508                                        &login1_vtable,
1509                                        NULL, NULL,
1510                                        &error);
1511     if (error)
1512         g_warning ("Failed to register login1 service: %s", error->message);
1513     g_clear_error (&error);
1514     g_dbus_node_info_unref (login1_info);
1515
1516     service_count--;
1517     if (service_count == 0)
1518         ready ();
1519 }
1520
1521 static void
1522 start_login1_daemon (void)
1523 {
1524     service_count++;
1525     g_bus_own_name (G_BUS_TYPE_SYSTEM,
1526                     "org.freedesktop.login1",
1527                     G_BUS_NAME_OWNER_FLAGS_NONE,
1528                     NULL,
1529                     login1_name_acquired_cb,
1530                     NULL,
1531                     NULL,
1532                     NULL);
1533 }
1534
1535 static AccountsUser *
1536 get_accounts_user_by_uid (guint uid)
1537 {
1538     GList *link;
1539
1540     for (link = accounts_users; link; link = link->next)
1541     {
1542         AccountsUser *u = link->data;
1543         if (u->uid == uid)
1544             return u;
1545     }
1546   
1547     return NULL;
1548 }
1549
1550 static AccountsUser *
1551 get_accounts_user_by_name (const gchar *username)
1552 {
1553     GList *link;
1554
1555     for (link = accounts_users; link; link = link->next)
1556     {
1557         AccountsUser *u = link->data;
1558         if (strcmp (u->user_name, username) == 0)
1559             return u;
1560     }
1561
1562     return NULL;
1563 }
1564
1565 static void
1566 accounts_user_set_hidden (AccountsUser *user, gboolean hidden, gboolean emit_signal)
1567 {
1568     GError *error = NULL;
1569
1570     user->hidden = hidden;
1571
1572     if (user->hidden && user->id != 0)
1573     {
1574         g_dbus_connection_unregister_object (accounts_connection, user->id);
1575         g_dbus_connection_emit_signal (accounts_connection,
1576                                        NULL,
1577                                        "/org/freedesktop/Accounts",
1578                                        "org.freedesktop.Accounts",
1579                                        "UserDeleted",
1580                                        g_variant_new ("(o)", user->path),
1581                                        &error);
1582         if (error)
1583             g_warning ("Failed to emit UserDeleted: %s", error->message);
1584         g_clear_error (&error);
1585
1586         user->id = 0;
1587     }
1588     if (!user->hidden && user->id == 0)
1589     {
1590         user->id = g_dbus_connection_register_object (accounts_connection,
1591                                                       user->path,
1592                                                       user_info->interfaces[0],
1593                                                       &user_vtable,
1594                                                       user,
1595                                                       NULL,
1596                                                       &error);
1597         if (error)
1598             g_warning ("Failed to register user: %s", error->message);
1599         g_clear_error (&error);
1600
1601         g_dbus_connection_emit_signal (accounts_connection,
1602                                        NULL,
1603                                        "/org/freedesktop/Accounts",
1604                                        "org.freedesktop.Accounts",
1605                                        "UserAdded",
1606                                        g_variant_new ("(o)", user->path),
1607                                        &error);
1608         if (error)
1609             g_warning ("Failed to emit UserAdded: %s", error->message);
1610         g_clear_error (&error);
1611     }
1612 }
1613
1614 static void
1615 load_passwd_file (void)
1616 {
1617     gchar *path, *data, **lines;
1618     gchar **user_filter = NULL;
1619     int i;
1620
1621     if (g_key_file_has_key (config, "test-runner-config", "accounts-service-user-filter", NULL))
1622     {
1623         gchar *filter;
1624
1625         filter = g_key_file_get_string (config, "test-runner-config", "accounts-service-user-filter", NULL);
1626         user_filter = g_strsplit (filter, " ", -1);
1627         g_free (filter);
1628     }
1629
1630     path = g_build_filename (g_getenv ("LIGHTDM_TEST_ROOT"), "etc", "passwd", NULL);
1631     g_file_get_contents (path, &data, NULL, NULL);
1632     g_free (path);
1633     lines = g_strsplit (data, "\n", -1);
1634     g_free (data);
1635
1636     for (i = 0; lines[i]; i++)
1637     {
1638         gchar **fields;
1639         guint uid;
1640         gchar *user_name, *real_name;
1641         AccountsUser *user = NULL;
1642
1643         fields = g_strsplit (lines[i], ":", -1);
1644         if (fields == NULL || g_strv_length (fields) < 7)
1645         {
1646             g_strfreev (fields);
1647             continue;
1648         }
1649
1650         user_name = fields[0];
1651         uid = atoi (fields[2]);
1652         real_name = fields[4];
1653
1654         user = get_accounts_user_by_uid (uid);
1655         if (!user)
1656         {
1657             gchar *path;
1658             GKeyFile *dmrc_file;
1659
1660             user = g_malloc0 (sizeof (AccountsUser));
1661             accounts_users = g_list_append (accounts_users, user);
1662
1663             /* Only allow users in whitelist */
1664             user->hidden = FALSE;
1665             if (user_filter)
1666             {
1667                 int j;
1668
1669                 user->hidden = TRUE;
1670                 for (j = 0; user_filter[j] != NULL; j++)
1671                     if (strcmp (user_name, user_filter[j]) == 0)
1672                         user->hidden = FALSE;
1673             }
1674
1675             dmrc_file = g_key_file_new ();
1676             path = g_build_filename (temp_dir, "home", user_name, ".dmrc", NULL);
1677             g_key_file_load_from_file (dmrc_file, path, G_KEY_FILE_NONE, NULL);
1678             g_free (path);
1679
1680             user->uid = uid;
1681             user->user_name = g_strdup (user_name);
1682             user->real_name = g_strdup (real_name);
1683             user->home_directory = g_build_filename (temp_dir, "home", user_name, NULL);
1684             user->language = g_key_file_get_string (dmrc_file, "Desktop", "Language", NULL);
1685             /* DMRC contains a locale, strip the codeset off it to get the language */
1686             if (user->language)
1687             {
1688                 gchar *c = strchr (user->language, '.');
1689                 if (c)
1690                     *c = '\0';
1691             }
1692             user->xsession = g_key_file_get_string (dmrc_file, "Desktop", "Session", NULL);
1693             user->layouts = g_key_file_get_string_list (dmrc_file, "X-Accounts", "Layouts", NULL, NULL);
1694             if (!user->layouts)
1695             {
1696                 user->layouts = g_malloc (sizeof (gchar *) * 2);
1697                 user->layouts[0] = g_key_file_get_string (dmrc_file, "Desktop", "Layout", NULL);
1698                 user->layouts[1] = NULL;
1699             }
1700             user->has_messages = g_key_file_get_boolean (dmrc_file, "X-Accounts", "HasMessages", NULL);
1701             user->path = g_strdup_printf ("/org/freedesktop/Accounts/User%d", uid);
1702             accounts_user_set_hidden (user, user->hidden, FALSE);
1703
1704             g_key_file_free (dmrc_file);
1705         }
1706
1707         g_strfreev (fields);
1708     }
1709
1710     g_strfreev (lines);
1711 }
1712
1713 static void
1714 handle_accounts_call (GDBusConnection       *connection,
1715                       const gchar           *sender,
1716                       const gchar           *object_path,
1717                       const gchar           *interface_name,
1718                       const gchar           *method_name,
1719                       GVariant              *parameters,
1720                       GDBusMethodInvocation *invocation,
1721                       gpointer               user_data)
1722 {
1723     if (strcmp (method_name, "ListCachedUsers") == 0)
1724     {
1725         GVariantBuilder builder;
1726         GList *link;
1727
1728         g_variant_builder_init (&builder, G_VARIANT_TYPE ("ao"));
1729
1730         load_passwd_file ();
1731         for (link = accounts_users; link; link = link->next)
1732         {
1733             AccountsUser *user = link->data;
1734             if (!user->hidden && user->uid >= 1000)
1735                 g_variant_builder_add_value (&builder, g_variant_new_object_path (user->path));
1736         }
1737
1738         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(ao)", &builder));
1739     }
1740     else if (strcmp (method_name, "FindUserByName") == 0)
1741     {
1742         AccountsUser *user = NULL;
1743         gchar *user_name;
1744
1745         g_variant_get (parameters, "(&s)", &user_name);
1746
1747         load_passwd_file ();
1748         user = get_accounts_user_by_name (user_name);
1749         if (user)
1750         {
1751             if (user->hidden)
1752                 accounts_user_set_hidden (user, FALSE, TRUE);
1753             g_dbus_method_invocation_return_value (invocation, g_variant_new ("(o)", user->path));
1754         }
1755         else
1756             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such user: %s", user_name);
1757     }
1758     else
1759         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1760 }
1761
1762 static void
1763 handle_user_call (GDBusConnection       *connection,
1764                   const gchar           *sender,
1765                   const gchar           *object_path,
1766                   const gchar           *interface_name,
1767                   const gchar           *method_name,
1768                   GVariant              *parameters,
1769                   GDBusMethodInvocation *invocation,
1770                   gpointer               user_data)
1771 {
1772     AccountsUser *user = user_data;
1773
1774     if (strcmp (method_name, "SetXSession") == 0)
1775     {
1776         gchar *xsession;
1777
1778         g_variant_get (parameters, "(&s)", &xsession);
1779
1780         g_free (user->xsession);
1781         user->xsession = g_strdup (xsession);
1782
1783         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1784
1785         /* And notify others that it took */
1786         g_dbus_connection_emit_signal (accounts_connection,
1787                                        NULL,
1788                                        user->path,
1789                                        "org.freedesktop.Accounts.User",
1790                                        "Changed",
1791                                        g_variant_new ("()"),
1792                                        NULL);
1793     }
1794     else
1795         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1796 }
1797
1798 static GVariant *
1799 handle_user_get_property (GDBusConnection       *connection,
1800                           const gchar           *sender,
1801                           const gchar           *object_path,
1802                           const gchar           *interface_name,
1803                           const gchar           *property_name,
1804                           GError               **error,
1805                           gpointer               user_data)
1806 {
1807     AccountsUser *user = user_data;
1808
1809     if (strcmp (property_name, "UserName") == 0)
1810         return g_variant_new_string (user->user_name);
1811     else if (strcmp (property_name, "RealName") == 0)
1812         return g_variant_new_string (user->real_name);
1813     else if (strcmp (property_name, "HomeDirectory") == 0)
1814         return g_variant_new_string (user->home_directory);
1815     else if (strcmp (property_name, "SystemAccount") == 0)
1816         return g_variant_new_boolean (user->uid < 1000);
1817     else if (strcmp (property_name, "BackgroundFile") == 0)
1818         return g_variant_new_string (user->background ? user->background : "");
1819     else if (strcmp (property_name, "Language") == 0)
1820         return g_variant_new_string (user->language ? user->language : "");
1821     else if (strcmp (property_name, "IconFile") == 0)
1822         return g_variant_new_string (user->image ? user->image : "");
1823     else if (strcmp (property_name, "Shell") == 0)
1824         return g_variant_new_string ("/bin/sh");
1825     else if (strcmp (property_name, "Uid") == 0)
1826         return g_variant_new_uint64 (user->uid);
1827     else if (strcmp (property_name, "XSession") == 0)
1828         return g_variant_new_string (user->xsession ? user->xsession : "");
1829     else if (strcmp (property_name, "XKeyboardLayouts") == 0)
1830     {
1831         if (user->layouts != NULL)
1832             return g_variant_new_strv ((const gchar * const *) user->layouts, -1);
1833         else
1834             return g_variant_new_strv (NULL, 0);
1835     }
1836     else if (strcmp (property_name, "XHasMessages") == 0)
1837         return g_variant_new_boolean (user->has_messages);
1838
1839     return NULL;
1840 }
1841
1842 static void
1843 accounts_name_acquired_cb (GDBusConnection *connection,
1844                            const gchar     *name,
1845                            gpointer         user_data)
1846 {
1847     const gchar *accounts_interface =
1848         "<node>"
1849         "  <interface name='org.freedesktop.Accounts'>"
1850         "    <method name='ListCachedUsers'>"
1851         "      <arg name='user' direction='out' type='ao'/>"
1852         "    </method>"
1853         "    <method name='FindUserByName'>"
1854         "      <arg name='name' direction='in' type='s'/>"
1855         "      <arg name='user' direction='out' type='o'/>"
1856         "    </method>"
1857         "    <signal name='UserAdded'>"
1858         "      <arg name='user' type='o'/>"
1859         "    </signal>"
1860         "    <signal name='UserDeleted'>"
1861         "      <arg name='user' type='o'/>"
1862         "    </signal>"
1863         "  </interface>"
1864         "</node>";
1865     static const GDBusInterfaceVTable accounts_vtable =
1866     {
1867         handle_accounts_call,
1868     };
1869     const gchar *user_interface =
1870         "<node>"
1871         "  <interface name='org.freedesktop.Accounts.User'>"
1872         "    <method name='SetXSession'>"
1873         "      <arg name='x_session' direction='in' type='s'/>"
1874         "    </method>"
1875         "    <property name='UserName' type='s' access='read'/>"
1876         "    <property name='RealName' type='s' access='read'/>"
1877         "    <property name='HomeDirectory' type='s' access='read'/>"
1878         "    <property name='SystemAccount' type='b' access='read'/>"
1879         "    <property name='BackgroundFile' type='s' access='read'/>"
1880         "    <property name='Language' type='s' access='read'/>"
1881         "    <property name='IconFile' type='s' access='read'/>"
1882         "    <property name='Shell' type='s' access='read'/>"
1883         "    <property name='Uid' type='t' access='read'/>"
1884         "    <property name='XSession' type='s' access='read'/>"
1885         "    <property name='XKeyboardLayouts' type='as' access='read'/>"
1886         "    <property name='XHasMessages' type='b' access='read'/>"
1887         "    <signal name='Changed' />"
1888         "  </interface>"
1889         "</node>";
1890     GError *error = NULL;
1891
1892     accounts_connection = connection;
1893
1894     accounts_info = g_dbus_node_info_new_for_xml (accounts_interface, &error);
1895     if (error)
1896         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1897     g_clear_error (&error);
1898     if (!accounts_info)
1899         return;
1900     user_info = g_dbus_node_info_new_for_xml (user_interface, &error);
1901     if (error)
1902         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1903     g_clear_error (&error);
1904     if (!user_info)
1905         return;
1906     g_dbus_connection_register_object (connection,
1907                                        "/org/freedesktop/Accounts",
1908                                        accounts_info->interfaces[0],
1909                                        &accounts_vtable,
1910                                        NULL,
1911                                        NULL,
1912                                        &error);
1913     if (error)
1914         g_warning ("Failed to register accounts service: %s", error->message);
1915     g_clear_error (&error);
1916     g_dbus_node_info_unref (accounts_info);
1917
1918     service_count--;
1919     if (service_count == 0)
1920         ready ();
1921 }
1922
1923 static void
1924 start_accounts_service_daemon (void)
1925 {
1926     service_count++;
1927     g_bus_own_name (G_BUS_TYPE_SYSTEM,
1928                     "org.freedesktop.Accounts",
1929                     G_BUS_NAME_OWNER_FLAGS_NONE,
1930                     accounts_name_acquired_cb,
1931                     NULL,
1932                     NULL,
1933                     NULL,
1934                     NULL);
1935 }
1936
1937 static void
1938 ready (void)
1939 {
1940     run_commands ();
1941 }
1942
1943 static gboolean
1944 signal_cb (gpointer user_data)
1945 {
1946     g_print ("Caught signal, quitting\n");
1947     quit (EXIT_FAILURE);
1948     return FALSE;
1949 }
1950
1951 int
1952 main (int argc, char **argv)
1953 {
1954     GMainLoop *loop;
1955     int i;
1956     gchar *greeter = NULL, *script_name, *config_file, *additional_system_config;
1957     gchar *additional_config, *path, *path1, *path2, *ld_preload, *ld_library_path, *home_dir;
1958     GString *passwd_data, *group_data;
1959     GSource *status_source;
1960     gchar cwd[1024];
1961     GError *error = NULL;
1962
1963 #if !defined(GLIB_VERSION_2_36)
1964     g_type_init ();
1965 #endif
1966
1967     loop = g_main_loop_new (NULL, FALSE);
1968
1969     g_unix_signal_add (SIGINT, signal_cb, NULL);
1970     g_unix_signal_add (SIGTERM, signal_cb, NULL);
1971
1972     children = g_hash_table_new (g_direct_hash, g_direct_equal);
1973
1974     if (argc != 3)
1975     {
1976         g_printerr ("Usage %s SCRIPT-NAME GREETER\n", argv[0]);
1977         quit (EXIT_FAILURE);
1978     }
1979     script_name = argv[1];
1980     config_file = g_strdup_printf ("%s.conf", script_name);
1981     config_path = g_build_filename (SRCDIR, "tests", "scripts", config_file, NULL);
1982     g_free (config_file);
1983
1984     config = g_key_file_new ();
1985     g_key_file_load_from_file (config, config_path, G_KEY_FILE_NONE, NULL);
1986
1987     load_script (config_path);
1988
1989     if (!getcwd (cwd, 1024))
1990     {
1991         g_critical ("Error getting current directory: %s", strerror (errno));
1992         quit (EXIT_FAILURE);
1993     }
1994
1995     /* Don't contact our X server */
1996     g_unsetenv ("DISPLAY");
1997
1998     /* Override system calls */
1999     ld_preload = g_build_filename (BUILDDIR, "tests", "src", ".libs", "libsystem.so", NULL);
2000     g_setenv ("LD_PRELOAD", ld_preload, TRUE);
2001     g_free (ld_preload);
2002
2003     /* Run test programs */
2004     path = g_strdup_printf ("%s/tests/src/.libs:%s/tests/src:%s/tests/src:%s/src:%s", BUILDDIR, BUILDDIR, SRCDIR, BUILDDIR, g_getenv ("PATH"));
2005     g_setenv ("PATH", path, TRUE);
2006     g_free (path);
2007
2008     /* Use locally built libraries */
2009     path1 = g_build_filename (BUILDDIR, "liblightdm-gobject", ".libs", NULL);
2010     path2 = g_build_filename (BUILDDIR, "liblightdm-qt", ".libs", NULL);
2011     ld_library_path = g_strdup_printf ("%s:%s", path1, path2);
2012     g_free (path1);
2013     g_free (path2);
2014     g_setenv ("LD_LIBRARY_PATH", ld_library_path, TRUE);
2015     g_free (ld_library_path);
2016     path1 = g_build_filename (BUILDDIR, "liblightdm-gobject", NULL);
2017     g_setenv ("GI_TYPELIB_PATH", path1, TRUE);
2018     g_free (path1);
2019
2020     /* Run in a temporary directory inside the build directory */
2021     /* Note we have to pick a name that is short since Unix sockets in this directory have a 108 character limit on their paths */
2022     i = 0;
2023     while (TRUE) {
2024         gchar *name;
2025
2026         name = g_strdup_printf (".r%d", i);
2027         g_free (temp_dir);
2028         temp_dir = g_build_filename ("/tmp", name, NULL);
2029         g_free (name);
2030         if (!g_file_test (temp_dir, G_FILE_TEST_EXISTS))
2031             break;
2032         i++;
2033     }  
2034     g_mkdir_with_parents (temp_dir, 0755);
2035     g_setenv ("LIGHTDM_TEST_ROOT", temp_dir, TRUE);
2036
2037     /* Open socket for status */
2038     /* Note we have to pick a socket name that is short since there is a 108 character limit on the name */
2039     status_socket_name = g_build_filename (temp_dir, ".s", NULL);
2040     unlink (status_socket_name);
2041     status_socket = g_socket_new (G_SOCKET_FAMILY_UNIX, G_SOCKET_TYPE_STREAM, G_SOCKET_PROTOCOL_DEFAULT, &error);
2042     if (error)
2043         g_warning ("Error creating status socket %s: %s", status_socket_name, error->message);
2044     g_clear_error (&error);
2045     if (status_socket)
2046     {
2047         GSocketAddress *address;
2048         gboolean result;
2049
2050         address = g_unix_socket_address_new (status_socket_name);
2051         result = g_socket_bind (status_socket, address, FALSE, &error);
2052         g_object_unref (address);
2053         if (error)
2054             g_warning ("Error binding status socket %s: %s", status_socket_name, error->message);
2055         g_clear_error (&error);
2056         if (result)
2057         {
2058             result = g_socket_listen (status_socket, &error);
2059             if (error)
2060                 g_warning ("Error listening on status socket %s: %s", status_socket_name, error->message);
2061             g_clear_error (&error);
2062         }
2063         if (!result)
2064         {
2065             g_object_unref (status_socket);
2066             status_socket = NULL;
2067         }
2068     }
2069     if (!status_socket)
2070         quit (EXIT_FAILURE);
2071     status_source = g_socket_create_source (status_socket, G_IO_IN, NULL);
2072     g_source_set_callback (status_source, status_connect_cb, NULL, NULL);
2073     g_source_attach (status_source, NULL);
2074
2075     /* Set up a skeleton file system */
2076     g_mkdir_with_parents (g_strdup_printf ("%s/etc", temp_dir), 0755);
2077     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share", temp_dir), 0755);
2078     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/sessions", temp_dir), 0755);
2079     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/remote-sessions", temp_dir), 0755);
2080     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/greeters", temp_dir), 0755);
2081     g_mkdir_with_parents (g_strdup_printf ("%s/tmp", temp_dir), 0755);
2082     g_mkdir_with_parents (g_strdup_printf ("%s/var/lib/lightdm-data", temp_dir), 0755);
2083     g_mkdir_with_parents (g_strdup_printf ("%s/var/run", temp_dir), 0755);
2084     g_mkdir_with_parents (g_strdup_printf ("%s/var/log", temp_dir), 0755);
2085
2086     /* Copy over the configuration */
2087     g_mkdir_with_parents (g_strdup_printf ("%s/etc/lightdm", temp_dir), 0755);
2088     if (!g_key_file_has_key (config, "test-runner-config", "have-config", NULL) || g_key_file_get_boolean (config, "test-runner-config", "have-config", NULL))
2089         if (system (g_strdup_printf ("cp %s %s/etc/lightdm/lightdm.conf", config_path, temp_dir)))
2090             perror ("Failed to copy configuration");
2091
2092     additional_system_config = g_key_file_get_string (config, "test-runner-config", "additional-system-config", NULL);
2093     if (additional_system_config)
2094     {
2095         gchar **files;
2096
2097         g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/lightdm.conf.d", temp_dir), 0755);
2098
2099         files = g_strsplit (additional_system_config, " ", -1);
2100         for (i = 0; files[i]; i++)
2101             if (system (g_strdup_printf ("cp %s/tests/scripts/%s %s/usr/share/lightdm/lightdm.conf.d", SRCDIR, files[i], temp_dir)))
2102                 perror ("Failed to copy configuration");
2103         g_strfreev (files);
2104     }
2105
2106     additional_config = g_key_file_get_string (config, "test-runner-config", "additional-config", NULL);
2107     if (additional_config)
2108     {
2109         gchar **files;
2110
2111         g_mkdir_with_parents (g_strdup_printf ("%s/etc/lightdm/lightdm.conf.d", temp_dir), 0755);
2112
2113         files = g_strsplit (additional_config, " ", -1);
2114         for (i = 0; files[i]; i++)
2115             if (system (g_strdup_printf ("cp %s/tests/scripts/%s %s/etc/lightdm/lightdm.conf.d", SRCDIR, files[i], temp_dir)))
2116                 perror ("Failed to copy configuration");
2117         g_strfreev (files);
2118     }
2119
2120     if (g_key_file_has_key (config, "test-runner-config", "shared-data-dirs", NULL))
2121     {
2122         gchar *dir_string;
2123         gchar **dirs;
2124         gint i;
2125
2126         dir_string = g_key_file_get_string (config, "test-runner-config", "shared-data-dirs", NULL);
2127         dirs = g_strsplit (dir_string, " ", -1);
2128         g_free (dir_string);
2129
2130         for (i = 0; dirs[i]; i++)
2131         {
2132             gchar **fields = g_strsplit (dirs[i], ":", -1);
2133             if (g_strv_length (fields) == 4)
2134             {
2135                 gchar *path = g_strdup_printf ("%s/var/lib/lightdm-data/%s", temp_dir, fields[0]);
2136                 int uid = g_ascii_strtoll (fields[1], NULL, 10);
2137                 int gid = g_ascii_strtoll (fields[2], NULL, 10);
2138                 int mode = g_ascii_strtoll (fields[3], NULL, 8);
2139                 g_mkdir (path, mode);
2140                 g_chmod (path, mode); /* mkdir filters by umask, so make sure we have what we want */
2141                 if (chown (path, uid, gid) < 0)
2142                   g_warning ("chown (%s) failed: %s", path, strerror (errno));
2143                 g_free (path);
2144             }
2145             g_strfreev (fields);
2146         }
2147
2148         g_strfreev (dirs);
2149     }
2150
2151     /* Always copy the script */
2152     if (system (g_strdup_printf ("cp %s %s/script", config_path, temp_dir)))
2153         perror ("Failed to copy configuration");
2154
2155     /* Copy over the greeter files */
2156     if (system (g_strdup_printf ("cp %s/sessions/* %s/usr/share/lightdm/sessions", DATADIR, temp_dir)))
2157         perror ("Failed to copy sessions");
2158     if (system (g_strdup_printf ("cp %s/remote-sessions/* %s/usr/share/lightdm/remote-sessions", DATADIR, temp_dir)))
2159         perror ("Failed to copy remote sessions");
2160     if (system (g_strdup_printf ("cp %s/greeters/* %s/usr/share/lightdm/greeters", DATADIR, temp_dir)))
2161         perror ("Failed to copy greeters");
2162
2163     /* Set up the default greeter */
2164     path = g_build_filename (temp_dir, "usr", "share", "lightdm", "greeters", "default.desktop", NULL);
2165     greeter = g_strdup_printf ("%s.desktop", argv[2]);
2166     if (symlink (greeter, path) < 0)
2167     {
2168         g_printerr ("Failed to make greeter symlink %s->%s: %s\n", path, greeter, strerror (errno));
2169         quit (EXIT_FAILURE);
2170     }
2171     g_free (path);
2172     g_free (greeter);
2173
2174     home_dir = g_build_filename (temp_dir, "home", NULL);
2175
2176     /* Make fake users */
2177     struct
2178     {
2179         gchar *user_name;
2180         gchar *password;
2181         gchar *real_name;
2182         gint uid;
2183     } users[] =
2184     {
2185         /* Root account */
2186         {"root",             "",          "root",                  0},
2187         /* Unprivileged account for greeters */
2188         {"lightdm",          "",          "",                    100},
2189         /* These accounts have a password */
2190         {"have-password1",   "password",  "Password User 1",    1000},
2191         {"have-password2",   "password",  "Password User 2",    1001},
2192         {"have-password3",   "password",  "Password User 3",    1002},
2193         {"have-password4",   "password",  "Password User 4",    1003},
2194         /* This account always prompts for a password, even if using the lightdm-autologin service */
2195         {"always-password",  "password",  "Password User 4",    1004},
2196         /* These accounts have no password */
2197         {"no-password1",     "",          "No Password User 1", 1005},
2198         {"no-password2",     "",          "No Password User 2", 1006},
2199         {"no-password3",     "",          "No Password User 3", 1007},
2200         {"no-password4",     "",          "No Password User 4", 1008},
2201         /* This account has a keyboard layout */
2202         {"have-layout",      "",          "Layout User",        1009},
2203         /* This account has a set of keyboard layouts */
2204         {"have-layouts",     "",          "Layouts User",       1010},
2205         /* This account has a language set */
2206         {"have-language",    "",          "Language User",      1011},
2207         /* This account has a preconfigured session */
2208         {"have-session",            "",   "Session User",       1012},
2209         /* This account has the home directory mounted on login */
2210         {"mount-home-dir",   "",          "Mounted Home Dir User", 1013},
2211         /* This account is denied access */
2212         {"denied",           "",          "Denied User",        1014},
2213         /* This account has expired */
2214         {"expired",          "",          "Expired User",       1015},
2215         /* This account needs a password change */
2216         {"new-authtok",      "",          "New Token User",     1016},
2217         /* This account is switched to change-user2 when authentication succeeds */
2218         {"change-user1",     "",          "Change User 1",      1017},
2219         {"change-user2",     "",          "Change User 2",      1018},
2220         /* This account switches to invalid-user when authentication succeeds */
2221         {"change-user-invalid", "",       "Invalid Change User", 1019},
2222         /* This account crashes on authentication */
2223         {"crash-authenticate", "",        "Crash Auth User",    1020},
2224         /* This account shows an informational prompt on login */
2225         {"info-prompt",      "password",  "Info Prompt",        1021},
2226         /* This account shows multiple informational prompts on login */
2227         {"multi-info-prompt","password",  "Multi Info Prompt",  1022},
2228         /* This account uses two factor authentication */
2229         {"two-factor",       "password",  "Two Factor",         1023},
2230         /* This account has a special group */
2231         {"group-member",     "password",  "Group Member",       1024},
2232         /* This account has the home directory created when the session starts */
2233         {"make-home-dir",    "",          "Make Home Dir User", 1025},
2234         /* This account fails to open a session */
2235         {"session-error",    "password",  "Session Error",      1026},
2236         /* This account can't establish credentials */
2237         {"cred-error",       "password",  "Cred Error",         1027},
2238         /* This account has expired credentials */
2239         {"cred-expired",     "password",  "Cred Expired",       1028},
2240         /* This account has cannot access their credentials */
2241         {"cred-unavail",     "password",  "Cred Unavail",       1029},
2242         /* This account sends informational messages for each PAM function that is called */
2243         {"log-pam",          "password",  "Log PAM",            1030},
2244         /* This account shows multiple prompts on login */
2245         {"multi-prompt",     "password",  "Multi Prompt",       1031},
2246         /* This account has an existing corrupt X authority */
2247         {"corrupt-xauth",    "password",  "Corrupt Xauthority", 1032},
2248         /* User to test properties */
2249         {"prop-user",        "",          "TEST",               1033},
2250         {NULL,               NULL,        NULL,                    0}
2251     };
2252     passwd_data = g_string_new ("");
2253     group_data = g_string_new ("");
2254     for (i = 0; users[i].user_name; i++)
2255     {
2256         GKeyFile *dmrc_file;
2257         gboolean save_dmrc = FALSE;
2258
2259         if (strcmp (users[i].user_name, "mount-home-dir") != 0 && strcmp (users[i].user_name, "make-home-dir") != 0)
2260         {
2261             path = g_build_filename (home_dir, users[i].user_name, NULL);
2262             g_mkdir_with_parents (path, 0755);
2263             if (chown (path, users[i].uid, users[i].uid) < 0)
2264               g_debug ("chown (%s) failed: %s", path, strerror (errno));
2265             g_free (path);
2266         }
2267
2268         dmrc_file = g_key_file_new ();
2269         if (strcmp (users[i].user_name, "have-session") == 0)
2270         {
2271             g_key_file_set_string (dmrc_file, "Desktop", "Session", "alternative");
2272             save_dmrc = TRUE;
2273         }
2274         if (strcmp (users[i].user_name, "have-layout") == 0)
2275         {
2276             g_key_file_set_string (dmrc_file, "Desktop", "Layout", "us");
2277             save_dmrc = TRUE;
2278         }
2279         if (strcmp (users[i].user_name, "have-layouts") == 0)
2280         {
2281             g_key_file_set_string (dmrc_file, "Desktop", "Layout", "ru");
2282             g_key_file_set_string (dmrc_file, "X-Accounts", "Layouts", "fr\toss;ru;");
2283             save_dmrc = TRUE;
2284         }
2285         if (strcmp (users[i].user_name, "have-language") == 0)
2286         {
2287             g_key_file_set_string (dmrc_file, "Desktop", "Language", "en_AU.utf8");
2288             save_dmrc = TRUE;
2289         }
2290
2291         if (save_dmrc)
2292         {
2293             gchar *data;
2294
2295             path = g_build_filename (home_dir, users[i].user_name, ".dmrc", NULL);
2296             data = g_key_file_to_data (dmrc_file, NULL, NULL);
2297             g_file_set_contents (path, data, -1, NULL);
2298             g_free (data);
2299             g_free (path);
2300         }
2301
2302         g_key_file_free (dmrc_file);
2303
2304         /* Write corrupt X authority file */
2305         if (strcmp (users[i].user_name, "corrupt-xauth") == 0)
2306         {
2307             gchar data[1] = { 0xFF };
2308
2309             path = g_build_filename (home_dir, users[i].user_name, ".Xauthority", NULL);
2310             g_file_set_contents (path, data, 1, NULL);
2311             chmod (path, S_IRUSR | S_IWUSR);
2312             g_free (path);
2313         }
2314
2315         /* Add passwd file entry */
2316         g_string_append_printf (passwd_data, "%s:%s:%d:%d:%s:%s/home/%s:/bin/sh\n", users[i].user_name, users[i].password, users[i].uid, users[i].uid, users[i].real_name, temp_dir, users[i].user_name);
2317
2318         /* Add group file entry */
2319         g_string_append_printf (group_data, "%s:x:%d:%s\n", users[i].user_name, users[i].uid, users[i].user_name);
2320     }
2321     path = g_build_filename (temp_dir, "etc", "passwd", NULL);
2322     g_file_set_contents (path, passwd_data->str, -1, NULL);
2323     g_free (path);
2324     g_string_free (passwd_data, TRUE);
2325
2326     /* Add an extra test group */
2327     g_string_append_printf (group_data, "test-group:x:111:\n");
2328
2329     path = g_build_filename (temp_dir, "etc", "group", NULL);
2330     g_file_set_contents (path, group_data->str, -1, NULL);
2331     g_free (path);
2332     g_string_free (group_data, TRUE);
2333
2334     if (g_key_file_has_key (config, "test-runner-config", "timeout", NULL))
2335         status_timeout_ms = g_key_file_get_integer (config, "test-runner-config", "timeout", NULL) * 1000;
2336
2337     /* Start D-Bus services */
2338     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-upower", NULL))
2339         start_upower_daemon ();
2340     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-console-kit", NULL))
2341         start_console_kit_daemon ();
2342     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-login1", NULL))
2343         start_login1_daemon ();
2344     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-accounts-service", NULL))
2345         start_accounts_service_daemon ();
2346
2347     g_main_loop_run (loop);
2348
2349     return EXIT_FAILURE;
2350 }