]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - tests/src/test-runner.c
1e2d55913a63de6400a67555e5c38856c9262292
[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         check_status ("CONSOLE-KIT ACTIVATE-SESSION");
1164         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1165     }
1166     else
1167         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1168 }
1169
1170 static void
1171 ck_name_acquired_cb (GDBusConnection *connection,
1172                      const gchar     *name,
1173                      gpointer         user_data)
1174 {
1175     const gchar *ck_interface =
1176         "<node>"
1177         "  <interface name='org.freedesktop.ConsoleKit.Manager'>"
1178         "    <method name='CanRestart'>"
1179         "      <arg name='can_restart' direction='out' type='b'/>"
1180         "    </method>"
1181         "    <method name='CanStop'>"
1182         "      <arg name='can_stop' direction='out' type='b'/>"
1183         "    </method>"
1184         "    <method name='CloseSession'>"
1185         "      <arg name='cookie' direction='in' type='s'/>"
1186         "      <arg name='result' direction='out' type='b'/>"
1187         "    </method>"
1188         "    <method name='OpenSession'>"
1189         "      <arg name='cookie' direction='out' type='s'/>"
1190         "    </method>"
1191         "    <method name='OpenSessionWithParameters'>"
1192         "      <arg name='parameters' direction='in' type='a(sv)'/>"
1193         "      <arg name='cookie' direction='out' type='s'/>"
1194         "    </method>"
1195         "    <method name='GetSessionForCookie'>"
1196         "      <arg name='cookie' direction='in' type='s'/>"
1197         "      <arg name='ssid' direction='out' type='o'/>"
1198         "    </method>"
1199         "    <method name='Restart'/>"
1200         "    <method name='Stop'/>"
1201         "    <signal name='SeatAdded'>"
1202         "      <arg name='seat' type='o'/>"
1203         "    </signal>"
1204         "    <signal name='SeatRemoved'>"
1205         "      <arg name='seat' type='o'/>"
1206         "    </signal>"
1207         "  </interface>"
1208         "</node>";
1209     static const GDBusInterfaceVTable ck_vtable =
1210     {
1211         handle_ck_call,
1212     };
1213     const gchar *ck_session_interface =
1214         "<node>"
1215         "  <interface name='org.freedesktop.ConsoleKit.Session'>"
1216         "    <method name='Lock'/>"
1217         "    <method name='Unlock'/>"
1218         "    <method name='Activate'/>"
1219         "  </interface>"
1220         "</node>";
1221     GDBusNodeInfo *ck_info;
1222     GError *error = NULL;
1223
1224     ck_connection = connection;
1225
1226     ck_info = g_dbus_node_info_new_for_xml (ck_interface, &error);
1227     if (error)
1228         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1229     g_clear_error (&error);
1230     if (!ck_info)
1231         return;
1232     ck_session_info = g_dbus_node_info_new_for_xml (ck_session_interface, &error);
1233     if (error)
1234         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1235     g_clear_error (&error);
1236     if (!ck_session_info)
1237         return;
1238     g_dbus_connection_register_object (connection,
1239                                        "/org/freedesktop/ConsoleKit/Manager",
1240                                        ck_info->interfaces[0],
1241                                        &ck_vtable,
1242                                        NULL, NULL,
1243                                        &error);
1244     if (error)
1245         g_warning ("Failed to register console kit service: %s", error->message);
1246     g_clear_error (&error);
1247     g_dbus_node_info_unref (ck_info);
1248
1249     service_count--;
1250     if (service_count == 0)
1251         ready ();
1252 }
1253
1254 static void
1255 start_console_kit_daemon (void)
1256 {
1257     service_count++;
1258     g_bus_own_name (G_BUS_TYPE_SYSTEM,
1259                     "org.freedesktop.ConsoleKit",
1260                     G_BUS_NAME_OWNER_FLAGS_NONE,
1261                     NULL,
1262                     ck_name_acquired_cb,
1263                     NULL,
1264                     NULL,
1265                     NULL);
1266 }
1267
1268 static void
1269 handle_login1_session_call (GDBusConnection       *connection,
1270                             const gchar           *sender,
1271                             const gchar           *object_path,
1272                             const gchar           *interface_name,
1273                             const gchar           *method_name,
1274                             GVariant              *parameters,
1275                             GDBusMethodInvocation *invocation,
1276                             gpointer               user_data)
1277 {
1278     Login1Session *session = user_data;
1279
1280     if (strcmp (method_name, "Lock") == 0)
1281     {
1282         if (!session->locked)
1283             check_status ("LOGIN1 LOCK-SESSION");
1284         session->locked = TRUE;
1285         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1286     }
1287     else if (strcmp (method_name, "Unlock") == 0)
1288     {
1289         if (session->locked)
1290             check_status ("LOGIN1 UNLOCK-SESSION");
1291         session->locked = FALSE;
1292         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1293     }
1294     else if (strcmp (method_name, "Activate") == 0)
1295     {
1296         check_status ("LOGIN1 ACTIVATE-SESSION");
1297         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1298     }
1299     else
1300         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1301 }
1302
1303 static Login1Session *
1304 open_login1_session (GDBusConnection *connection,
1305                      GVariant *params)
1306 {
1307     Login1Session *session;
1308     GError *error = NULL;
1309     GDBusNodeInfo *login1_session_info;
1310
1311     const gchar *login1_session_interface =
1312         "<node>"
1313         "  <interface name='org.freedesktop.login1.Session'>"
1314         "    <method name='Lock'/>"
1315         "    <method name='Unlock'/>"
1316         "    <method name='Activate'/>"
1317         "  </interface>"
1318         "</node>";
1319     static const GDBusInterfaceVTable login1_session_vtable =
1320     {
1321         handle_login1_session_call,
1322     };
1323
1324     session = g_malloc0 (sizeof (Login1Session));
1325     login1_sessions = g_list_append (login1_sessions, session);
1326
1327     session->path = g_strdup_printf("/org/freedesktop/login1/Session/c%d",
1328                                     login1_session_index++);
1329
1330
1331
1332     login1_session_info = g_dbus_node_info_new_for_xml (login1_session_interface,
1333                                                         &error);
1334     if (error)
1335         g_warning ("Failed to parse login1 session D-Bus interface: %s",
1336                    error->message);
1337     g_clear_error (&error);
1338     if (!login1_session_info)
1339         return NULL;
1340
1341     g_dbus_connection_register_object (connection,
1342                                        session->path,
1343                                        login1_session_info->interfaces[0],
1344                                        &login1_session_vtable,
1345                                        session,
1346                                        NULL,
1347                                        &error);
1348     if (error)
1349         g_warning ("Failed to register login1 session: %s", error->message);
1350     g_clear_error (&error);
1351     g_dbus_node_info_unref (login1_session_info);
1352
1353     return session;
1354 }
1355
1356
1357 static void
1358 handle_login1_call (GDBusConnection       *connection,
1359                     const gchar           *sender,
1360                     const gchar           *object_path,
1361                     const gchar           *interface_name,
1362                     const gchar           *method_name,
1363                     GVariant              *parameters,
1364                     GDBusMethodInvocation *invocation,
1365                     gpointer               user_data)
1366 {
1367
1368     if (strcmp (method_name, "GetSessionByPID") == 0)
1369     {
1370         /* Look for a session with our PID, and create one if we don't have one
1371            already. */
1372         GList *link;
1373         guint pid;
1374         Login1Session *ret = NULL;
1375
1376         g_variant_get (parameters, "(u)", &pid);
1377
1378         for (link = login1_sessions; link; link = link->next)
1379         {
1380             Login1Session *session;
1381             session = link->data;
1382             if (session->pid == pid)
1383             {
1384                 ret = session;
1385                 break;
1386             }
1387         }
1388         /* Not found */
1389         if (!ret)
1390             ret = open_login1_session (connection, parameters);
1391
1392         g_dbus_method_invocation_return_value (invocation,
1393                                                g_variant_new("(o)", ret->path));
1394
1395     }
1396     else if (strcmp (method_name, "CanReboot") == 0)
1397     {
1398         check_status ("LOGIN1 CAN-REBOOT");
1399         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1400     }
1401     else if (strcmp (method_name, "Reboot") == 0)
1402     {
1403         gboolean interactive;
1404         g_variant_get (parameters, "(b)", &interactive);
1405         check_status ("LOGIN1 REBOOT");
1406         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1407     }
1408     else if (strcmp (method_name, "CanPowerOff") == 0)
1409     {
1410         check_status ("LOGIN1 CAN-POWER-OFF");
1411         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1412     }
1413     else if (strcmp (method_name, "Suspend") == 0)
1414     {
1415         gboolean interactive;
1416         g_variant_get (parameters, "(b)", &interactive);
1417         check_status ("LOGIN1 SUSPEND");
1418         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1419     }
1420     else if (strcmp (method_name, "CanSuspend") == 0)
1421     {
1422         check_status ("LOGIN1 CAN-SUSPEND");
1423         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1424     }
1425     else if (strcmp (method_name, "PowerOff") == 0)
1426     {
1427         gboolean interactive;
1428         g_variant_get (parameters, "(b)", &interactive);
1429         check_status ("LOGIN1 POWER-OFF");
1430         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1431     }
1432     else if (strcmp (method_name, "CanHibernate") == 0)
1433     {
1434         check_status ("LOGIN1 CAN-HIBERNATE");
1435         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(s)", "yes"));
1436     }
1437     else if (strcmp (method_name, "Hibernate") == 0)
1438     {
1439         gboolean interactive;
1440         g_variant_get (parameters, "(b)", &interactive);
1441         check_status ("LOGIN1 HIBERNATE");
1442         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1443     }
1444     else
1445         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1446 }
1447
1448 static void
1449 login1_name_acquired_cb (GDBusConnection *connection,
1450                          const gchar     *name,
1451                          gpointer         user_data)
1452 {
1453     const gchar *login1_interface =
1454         "<node>"
1455         "  <interface name='org.freedesktop.login1.Manager'>"
1456         "    <method name='GetSessionByPID'>"
1457         "      <arg name='pid' type='u' direction='in'/>"
1458         "      <arg name='session' type='o' direction='out'/>"
1459         "    </method>"
1460         "    <method name='CanReboot'>"
1461         "      <arg name='result' direction='out' type='s'/>"
1462         "    </method>"
1463         "    <method name='Reboot'>"
1464         "      <arg name='interactive' direction='in' type='b'/>"
1465         "    </method>"
1466         "    <method name='CanPowerOff'>"
1467         "      <arg name='result' direction='out' type='s'/>"
1468         "    </method>"
1469         "    <method name='PowerOff'>"
1470         "      <arg name='interactive' direction='in' type='b'/>"
1471         "    </method>"
1472         "    <method name='CanSuspend'>"
1473         "      <arg name='result' direction='out' type='s'/>"
1474         "    </method>"
1475         "    <method name='Suspend'>"
1476         "      <arg name='interactive' direction='in' type='b'/>"
1477         "    </method>"
1478         "    <method name='CanHibernate'>"
1479         "      <arg name='result' direction='out' type='s'/>"
1480         "    </method>"
1481         "    <method name='Hibernate'>"
1482         "      <arg name='interactive' direction='in' type='b'/>"
1483         "    </method>"
1484         "  </interface>"
1485         "</node>";
1486     static const GDBusInterfaceVTable login1_vtable =
1487     {
1488         handle_login1_call,
1489     };
1490     GDBusNodeInfo *login1_info;
1491     GError *error = NULL;
1492
1493     login1_info = g_dbus_node_info_new_for_xml (login1_interface, &error);
1494     if (error)
1495         g_warning ("Failed to parse login1 D-Bus interface: %s", error->message);
1496     g_clear_error (&error);
1497     if (!login1_info)
1498         return;
1499     g_dbus_connection_register_object (connection,
1500                                        "/org/freedesktop/login1",
1501                                        login1_info->interfaces[0],
1502                                        &login1_vtable,
1503                                        NULL, NULL,
1504                                        &error);
1505     if (error)
1506         g_warning ("Failed to register login1 service: %s", error->message);
1507     g_clear_error (&error);
1508     g_dbus_node_info_unref (login1_info);
1509
1510     service_count--;
1511     if (service_count == 0)
1512         ready ();
1513 }
1514
1515 static void
1516 start_login1_daemon (void)
1517 {
1518     service_count++;
1519     g_bus_own_name (G_BUS_TYPE_SYSTEM,
1520                     "org.freedesktop.login1",
1521                     G_BUS_NAME_OWNER_FLAGS_NONE,
1522                     NULL,
1523                     login1_name_acquired_cb,
1524                     NULL,
1525                     NULL,
1526                     NULL);
1527 }
1528
1529 static AccountsUser *
1530 get_accounts_user_by_uid (guint uid)
1531 {
1532     GList *link;
1533
1534     for (link = accounts_users; link; link = link->next)
1535     {
1536         AccountsUser *u = link->data;
1537         if (u->uid == uid)
1538             return u;
1539     }
1540   
1541     return NULL;
1542 }
1543
1544 static AccountsUser *
1545 get_accounts_user_by_name (const gchar *username)
1546 {
1547     GList *link;
1548
1549     for (link = accounts_users; link; link = link->next)
1550     {
1551         AccountsUser *u = link->data;
1552         if (strcmp (u->user_name, username) == 0)
1553             return u;
1554     }
1555
1556     return NULL;
1557 }
1558
1559 static void
1560 accounts_user_set_hidden (AccountsUser *user, gboolean hidden, gboolean emit_signal)
1561 {
1562     GError *error = NULL;
1563
1564     user->hidden = hidden;
1565
1566     if (user->hidden && user->id != 0)
1567     {
1568         g_dbus_connection_unregister_object (accounts_connection, user->id);
1569         g_dbus_connection_emit_signal (accounts_connection,
1570                                        NULL,
1571                                        "/org/freedesktop/Accounts",
1572                                        "org.freedesktop.Accounts",
1573                                        "UserDeleted",
1574                                        g_variant_new ("(o)", user->path),
1575                                        &error);
1576         if (error)
1577             g_warning ("Failed to emit UserDeleted: %s", error->message);
1578         g_clear_error (&error);
1579
1580         user->id = 0;
1581     }
1582     if (!user->hidden && user->id == 0)
1583     {
1584         user->id = g_dbus_connection_register_object (accounts_connection,
1585                                                       user->path,
1586                                                       user_info->interfaces[0],
1587                                                       &user_vtable,
1588                                                       user,
1589                                                       NULL,
1590                                                       &error);
1591         if (error)
1592             g_warning ("Failed to register user: %s", error->message);
1593         g_clear_error (&error);
1594
1595         g_dbus_connection_emit_signal (accounts_connection,
1596                                        NULL,
1597                                        "/org/freedesktop/Accounts",
1598                                        "org.freedesktop.Accounts",
1599                                        "UserAdded",
1600                                        g_variant_new ("(o)", user->path),
1601                                        &error);
1602         if (error)
1603             g_warning ("Failed to emit UserAdded: %s", error->message);
1604         g_clear_error (&error);
1605     }
1606 }
1607
1608 static void
1609 load_passwd_file (void)
1610 {
1611     gchar *path, *data, **lines;
1612     gchar **user_filter = NULL;
1613     int i;
1614
1615     if (g_key_file_has_key (config, "test-runner-config", "accounts-service-user-filter", NULL))
1616     {
1617         gchar *filter;
1618
1619         filter = g_key_file_get_string (config, "test-runner-config", "accounts-service-user-filter", NULL);
1620         user_filter = g_strsplit (filter, " ", -1);
1621         g_free (filter);
1622     }
1623
1624     path = g_build_filename (g_getenv ("LIGHTDM_TEST_ROOT"), "etc", "passwd", NULL);
1625     g_file_get_contents (path, &data, NULL, NULL);
1626     g_free (path);
1627     lines = g_strsplit (data, "\n", -1);
1628     g_free (data);
1629
1630     for (i = 0; lines[i]; i++)
1631     {
1632         gchar **fields;
1633         guint uid;
1634         gchar *user_name, *real_name;
1635         AccountsUser *user = NULL;
1636
1637         fields = g_strsplit (lines[i], ":", -1);
1638         if (fields == NULL || g_strv_length (fields) < 7)
1639         {
1640             g_strfreev (fields);
1641             continue;
1642         }
1643
1644         user_name = fields[0];
1645         uid = atoi (fields[2]);
1646         real_name = fields[4];
1647
1648         user = get_accounts_user_by_uid (uid);
1649         if (!user)
1650         {
1651             gchar *path;
1652             GKeyFile *dmrc_file;
1653
1654             user = g_malloc0 (sizeof (AccountsUser));
1655             accounts_users = g_list_append (accounts_users, user);
1656
1657             /* Only allow users in whitelist */
1658             user->hidden = FALSE;
1659             if (user_filter)
1660             {
1661                 int j;
1662
1663                 user->hidden = TRUE;
1664                 for (j = 0; user_filter[j] != NULL; j++)
1665                     if (strcmp (user_name, user_filter[j]) == 0)
1666                         user->hidden = FALSE;
1667             }
1668
1669             dmrc_file = g_key_file_new ();
1670             path = g_build_filename (temp_dir, "home", user_name, ".dmrc", NULL);
1671             g_key_file_load_from_file (dmrc_file, path, G_KEY_FILE_NONE, NULL);
1672             g_free (path);
1673
1674             user->uid = uid;
1675             user->user_name = g_strdup (user_name);
1676             user->real_name = g_strdup (real_name);
1677             user->home_directory = g_build_filename (temp_dir, "home", user_name, NULL);
1678             user->language = g_key_file_get_string (dmrc_file, "Desktop", "Language", NULL);
1679             /* DMRC contains a locale, strip the codeset off it to get the language */
1680             if (user->language)
1681             {
1682                 gchar *c = strchr (user->language, '.');
1683                 if (c)
1684                     *c = '\0';
1685             }
1686             user->xsession = g_key_file_get_string (dmrc_file, "Desktop", "Session", NULL);
1687             user->layouts = g_key_file_get_string_list (dmrc_file, "X-Accounts", "Layouts", NULL, NULL);
1688             if (!user->layouts)
1689             {
1690                 user->layouts = g_malloc (sizeof (gchar *) * 2);
1691                 user->layouts[0] = g_key_file_get_string (dmrc_file, "Desktop", "Layout", NULL);
1692                 user->layouts[1] = NULL;
1693             }
1694             user->has_messages = g_key_file_get_boolean (dmrc_file, "X-Accounts", "HasMessages", NULL);
1695             user->path = g_strdup_printf ("/org/freedesktop/Accounts/User%d", uid);
1696             accounts_user_set_hidden (user, user->hidden, FALSE);
1697
1698             g_key_file_free (dmrc_file);
1699         }
1700
1701         g_strfreev (fields);
1702     }
1703
1704     g_strfreev (lines);
1705 }
1706
1707 static void
1708 handle_accounts_call (GDBusConnection       *connection,
1709                       const gchar           *sender,
1710                       const gchar           *object_path,
1711                       const gchar           *interface_name,
1712                       const gchar           *method_name,
1713                       GVariant              *parameters,
1714                       GDBusMethodInvocation *invocation,
1715                       gpointer               user_data)
1716 {
1717     if (strcmp (method_name, "ListCachedUsers") == 0)
1718     {
1719         GVariantBuilder builder;
1720         GList *link;
1721
1722         g_variant_builder_init (&builder, G_VARIANT_TYPE ("ao"));
1723
1724         load_passwd_file ();
1725         for (link = accounts_users; link; link = link->next)
1726         {
1727             AccountsUser *user = link->data;
1728             if (!user->hidden && user->uid >= 1000)
1729                 g_variant_builder_add_value (&builder, g_variant_new_object_path (user->path));
1730         }
1731
1732         g_dbus_method_invocation_return_value (invocation, g_variant_new ("(ao)", &builder));
1733     }
1734     else if (strcmp (method_name, "FindUserByName") == 0)
1735     {
1736         AccountsUser *user = NULL;
1737         gchar *user_name;
1738
1739         g_variant_get (parameters, "(&s)", &user_name);
1740
1741         load_passwd_file ();
1742         user = get_accounts_user_by_name (user_name);
1743         if (user)
1744         {
1745             if (user->hidden)
1746                 accounts_user_set_hidden (user, FALSE, TRUE);
1747             g_dbus_method_invocation_return_value (invocation, g_variant_new ("(o)", user->path));
1748         }
1749         else
1750             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such user: %s", user_name);
1751     }
1752     else
1753         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1754 }
1755
1756 static void
1757 handle_user_call (GDBusConnection       *connection,
1758                   const gchar           *sender,
1759                   const gchar           *object_path,
1760                   const gchar           *interface_name,
1761                   const gchar           *method_name,
1762                   GVariant              *parameters,
1763                   GDBusMethodInvocation *invocation,
1764                   gpointer               user_data)
1765 {
1766     AccountsUser *user = user_data;
1767
1768     if (strcmp (method_name, "SetXSession") == 0)
1769     {
1770         gchar *xsession;
1771
1772         g_variant_get (parameters, "(&s)", &xsession);
1773
1774         g_free (user->xsession);
1775         user->xsession = g_strdup (xsession);
1776
1777         g_dbus_method_invocation_return_value (invocation, g_variant_new ("()"));
1778
1779         /* And notify others that it took */
1780         g_dbus_connection_emit_signal (accounts_connection,
1781                                        NULL,
1782                                        user->path,
1783                                        "org.freedesktop.Accounts.User",
1784                                        "Changed",
1785                                        g_variant_new ("()"),
1786                                        NULL);
1787     }
1788     else
1789         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "No such method: %s", method_name);
1790 }
1791
1792 static GVariant *
1793 handle_user_get_property (GDBusConnection       *connection,
1794                           const gchar           *sender,
1795                           const gchar           *object_path,
1796                           const gchar           *interface_name,
1797                           const gchar           *property_name,
1798                           GError               **error,
1799                           gpointer               user_data)
1800 {
1801     AccountsUser *user = user_data;
1802
1803     if (strcmp (property_name, "UserName") == 0)
1804         return g_variant_new_string (user->user_name);
1805     else if (strcmp (property_name, "RealName") == 0)
1806         return g_variant_new_string (user->real_name);
1807     else if (strcmp (property_name, "HomeDirectory") == 0)
1808         return g_variant_new_string (user->home_directory);
1809     else if (strcmp (property_name, "SystemAccount") == 0)
1810         return g_variant_new_boolean (user->uid < 1000);
1811     else if (strcmp (property_name, "BackgroundFile") == 0)
1812         return g_variant_new_string (user->background ? user->background : "");
1813     else if (strcmp (property_name, "Language") == 0)
1814         return g_variant_new_string (user->language ? user->language : "");
1815     else if (strcmp (property_name, "IconFile") == 0)
1816         return g_variant_new_string (user->image ? user->image : "");
1817     else if (strcmp (property_name, "Shell") == 0)
1818         return g_variant_new_string ("/bin/sh");
1819     else if (strcmp (property_name, "Uid") == 0)
1820         return g_variant_new_uint64 (user->uid);
1821     else if (strcmp (property_name, "XSession") == 0)
1822         return g_variant_new_string (user->xsession ? user->xsession : "");
1823     else if (strcmp (property_name, "XKeyboardLayouts") == 0)
1824     {
1825         if (user->layouts != NULL)
1826             return g_variant_new_strv ((const gchar * const *) user->layouts, -1);
1827         else
1828             return g_variant_new_strv (NULL, 0);
1829     }
1830     else if (strcmp (property_name, "XHasMessages") == 0)
1831         return g_variant_new_boolean (user->has_messages);
1832
1833     return NULL;
1834 }
1835
1836 static void
1837 accounts_name_acquired_cb (GDBusConnection *connection,
1838                            const gchar     *name,
1839                            gpointer         user_data)
1840 {
1841     const gchar *accounts_interface =
1842         "<node>"
1843         "  <interface name='org.freedesktop.Accounts'>"
1844         "    <method name='ListCachedUsers'>"
1845         "      <arg name='user' direction='out' type='ao'/>"
1846         "    </method>"
1847         "    <method name='FindUserByName'>"
1848         "      <arg name='name' direction='in' type='s'/>"
1849         "      <arg name='user' direction='out' type='o'/>"
1850         "    </method>"
1851         "    <signal name='UserAdded'>"
1852         "      <arg name='user' type='o'/>"
1853         "    </signal>"
1854         "    <signal name='UserDeleted'>"
1855         "      <arg name='user' type='o'/>"
1856         "    </signal>"
1857         "  </interface>"
1858         "</node>";
1859     static const GDBusInterfaceVTable accounts_vtable =
1860     {
1861         handle_accounts_call,
1862     };
1863     const gchar *user_interface =
1864         "<node>"
1865         "  <interface name='org.freedesktop.Accounts.User'>"
1866         "    <method name='SetXSession'>"
1867         "      <arg name='x_session' direction='in' type='s'/>"
1868         "    </method>"
1869         "    <property name='UserName' type='s' access='read'/>"
1870         "    <property name='RealName' type='s' access='read'/>"
1871         "    <property name='HomeDirectory' type='s' access='read'/>"
1872         "    <property name='SystemAccount' type='b' access='read'/>"
1873         "    <property name='BackgroundFile' type='s' access='read'/>"
1874         "    <property name='Language' type='s' access='read'/>"
1875         "    <property name='IconFile' type='s' access='read'/>"
1876         "    <property name='Shell' type='s' access='read'/>"
1877         "    <property name='Uid' type='t' access='read'/>"
1878         "    <property name='XSession' type='s' access='read'/>"
1879         "    <property name='XKeyboardLayouts' type='as' access='read'/>"
1880         "    <property name='XHasMessages' type='b' access='read'/>"
1881         "    <signal name='Changed' />"
1882         "  </interface>"
1883         "</node>";
1884     GError *error = NULL;
1885
1886     accounts_connection = connection;
1887
1888     accounts_info = g_dbus_node_info_new_for_xml (accounts_interface, &error);
1889     if (error)
1890         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1891     g_clear_error (&error);
1892     if (!accounts_info)
1893         return;
1894     user_info = g_dbus_node_info_new_for_xml (user_interface, &error);
1895     if (error)
1896         g_warning ("Failed to parse D-Bus interface: %s", error->message);
1897     g_clear_error (&error);
1898     if (!user_info)
1899         return;
1900     g_dbus_connection_register_object (connection,
1901                                        "/org/freedesktop/Accounts",
1902                                        accounts_info->interfaces[0],
1903                                        &accounts_vtable,
1904                                        NULL,
1905                                        NULL,
1906                                        &error);
1907     if (error)
1908         g_warning ("Failed to register accounts service: %s", error->message);
1909     g_clear_error (&error);
1910     g_dbus_node_info_unref (accounts_info);
1911
1912     service_count--;
1913     if (service_count == 0)
1914         ready ();
1915 }
1916
1917 static void
1918 start_accounts_service_daemon (void)
1919 {
1920     service_count++;
1921     g_bus_own_name (G_BUS_TYPE_SYSTEM,
1922                     "org.freedesktop.Accounts",
1923                     G_BUS_NAME_OWNER_FLAGS_NONE,
1924                     accounts_name_acquired_cb,
1925                     NULL,
1926                     NULL,
1927                     NULL,
1928                     NULL);
1929 }
1930
1931 static void
1932 ready (void)
1933 {
1934     run_commands ();
1935 }
1936
1937 static gboolean
1938 signal_cb (gpointer user_data)
1939 {
1940     g_print ("Caught signal, quitting\n");
1941     quit (EXIT_FAILURE);
1942     return FALSE;
1943 }
1944
1945 int
1946 main (int argc, char **argv)
1947 {
1948     GMainLoop *loop;
1949     int i;
1950     gchar *greeter = NULL, *script_name, *config_file, *additional_system_config;
1951     gchar *additional_config, *path, *path1, *path2, *ld_preload, *ld_library_path, *home_dir;
1952     GString *passwd_data, *group_data;
1953     GSource *status_source;
1954     gchar cwd[1024];
1955     GError *error = NULL;
1956
1957 #if !defined(GLIB_VERSION_2_36)
1958     g_type_init ();
1959 #endif
1960
1961     loop = g_main_loop_new (NULL, FALSE);
1962
1963     g_unix_signal_add (SIGINT, signal_cb, NULL);
1964     g_unix_signal_add (SIGTERM, signal_cb, NULL);
1965
1966     children = g_hash_table_new (g_direct_hash, g_direct_equal);
1967
1968     if (argc != 3)
1969     {
1970         g_printerr ("Usage %s SCRIPT-NAME GREETER\n", argv[0]);
1971         quit (EXIT_FAILURE);
1972     }
1973     script_name = argv[1];
1974     config_file = g_strdup_printf ("%s.conf", script_name);
1975     config_path = g_build_filename (SRCDIR, "tests", "scripts", config_file, NULL);
1976     g_free (config_file);
1977
1978     config = g_key_file_new ();
1979     g_key_file_load_from_file (config, config_path, G_KEY_FILE_NONE, NULL);
1980
1981     load_script (config_path);
1982
1983     if (!getcwd (cwd, 1024))
1984     {
1985         g_critical ("Error getting current directory: %s", strerror (errno));
1986         quit (EXIT_FAILURE);
1987     }
1988
1989     /* Don't contact our X server */
1990     g_unsetenv ("DISPLAY");
1991
1992     /* Override system calls */
1993     ld_preload = g_build_filename (BUILDDIR, "tests", "src", ".libs", "libsystem.so", NULL);
1994     g_setenv ("LD_PRELOAD", ld_preload, TRUE);
1995     g_free (ld_preload);
1996
1997     /* Run test programs */
1998     path = g_strdup_printf ("%s/tests/src/.libs:%s/tests/src:%s/tests/src:%s/src:%s", BUILDDIR, BUILDDIR, SRCDIR, BUILDDIR, g_getenv ("PATH"));
1999     g_setenv ("PATH", path, TRUE);
2000     g_free (path);
2001
2002     /* Use locally built libraries */
2003     path1 = g_build_filename (BUILDDIR, "liblightdm-gobject", ".libs", NULL);
2004     path2 = g_build_filename (BUILDDIR, "liblightdm-qt", ".libs", NULL);
2005     ld_library_path = g_strdup_printf ("%s:%s", path1, path2);
2006     g_free (path1);
2007     g_free (path2);
2008     g_setenv ("LD_LIBRARY_PATH", ld_library_path, TRUE);
2009     g_free (ld_library_path);
2010     path1 = g_build_filename (BUILDDIR, "liblightdm-gobject", NULL);
2011     g_setenv ("GI_TYPELIB_PATH", path1, TRUE);
2012     g_free (path1);
2013
2014     /* Run in a temporary directory inside the build directory */
2015     /* Note we have to pick a name that is short since Unix sockets in this directory have a 108 character limit on their paths */
2016     i = 0;
2017     while (TRUE) {
2018         gchar *name;
2019
2020         name = g_strdup_printf (".r%d", i);
2021         g_free (temp_dir);
2022         temp_dir = g_build_filename ("/tmp", name, NULL);
2023         g_free (name);
2024         if (!g_file_test (temp_dir, G_FILE_TEST_EXISTS))
2025             break;
2026         i++;
2027     }  
2028     g_mkdir_with_parents (temp_dir, 0755);
2029     g_setenv ("LIGHTDM_TEST_ROOT", temp_dir, TRUE);
2030
2031     /* Open socket for status */
2032     /* Note we have to pick a socket name that is short since there is a 108 character limit on the name */
2033     status_socket_name = g_build_filename (temp_dir, ".s", NULL);
2034     unlink (status_socket_name);
2035     status_socket = g_socket_new (G_SOCKET_FAMILY_UNIX, G_SOCKET_TYPE_STREAM, G_SOCKET_PROTOCOL_DEFAULT, &error);
2036     if (error)
2037         g_warning ("Error creating status socket %s: %s", status_socket_name, error->message);
2038     g_clear_error (&error);
2039     if (status_socket)
2040     {
2041         GSocketAddress *address;
2042         gboolean result;
2043
2044         address = g_unix_socket_address_new (status_socket_name);
2045         result = g_socket_bind (status_socket, address, FALSE, &error);
2046         g_object_unref (address);
2047         if (error)
2048             g_warning ("Error binding status socket %s: %s", status_socket_name, error->message);
2049         g_clear_error (&error);
2050         if (result)
2051         {
2052             result = g_socket_listen (status_socket, &error);
2053             if (error)
2054                 g_warning ("Error listening on status socket %s: %s", status_socket_name, error->message);
2055             g_clear_error (&error);
2056         }
2057         if (!result)
2058         {
2059             g_object_unref (status_socket);
2060             status_socket = NULL;
2061         }
2062     }
2063     if (!status_socket)
2064         quit (EXIT_FAILURE);
2065     status_source = g_socket_create_source (status_socket, G_IO_IN, NULL);
2066     g_source_set_callback (status_source, status_connect_cb, NULL, NULL);
2067     g_source_attach (status_source, NULL);
2068
2069     /* Set up a skeleton file system */
2070     g_mkdir_with_parents (g_strdup_printf ("%s/etc", temp_dir), 0755);
2071     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share", temp_dir), 0755);
2072     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/sessions", temp_dir), 0755);
2073     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/remote-sessions", temp_dir), 0755);
2074     g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/greeters", temp_dir), 0755);
2075     g_mkdir_with_parents (g_strdup_printf ("%s/tmp", temp_dir), 0755);
2076     g_mkdir_with_parents (g_strdup_printf ("%s/var/lib/lightdm-data", temp_dir), 0755);
2077     g_mkdir_with_parents (g_strdup_printf ("%s/var/run", temp_dir), 0755);
2078     g_mkdir_with_parents (g_strdup_printf ("%s/var/log", temp_dir), 0755);
2079
2080     /* Copy over the configuration */
2081     g_mkdir_with_parents (g_strdup_printf ("%s/etc/lightdm", temp_dir), 0755);
2082     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))
2083         if (system (g_strdup_printf ("cp %s %s/etc/lightdm/lightdm.conf", config_path, temp_dir)))
2084             perror ("Failed to copy configuration");
2085
2086     additional_system_config = g_key_file_get_string (config, "test-runner-config", "additional-system-config", NULL);
2087     if (additional_system_config)
2088     {
2089         gchar **files;
2090
2091         g_mkdir_with_parents (g_strdup_printf ("%s/usr/share/lightdm/lightdm.conf.d", temp_dir), 0755);
2092
2093         files = g_strsplit (additional_system_config, " ", -1);
2094         for (i = 0; files[i]; i++)
2095             if (system (g_strdup_printf ("cp %s/tests/scripts/%s %s/usr/share/lightdm/lightdm.conf.d", SRCDIR, files[i], temp_dir)))
2096                 perror ("Failed to copy configuration");
2097         g_strfreev (files);
2098     }
2099
2100     additional_config = g_key_file_get_string (config, "test-runner-config", "additional-config", NULL);
2101     if (additional_config)
2102     {
2103         gchar **files;
2104
2105         g_mkdir_with_parents (g_strdup_printf ("%s/etc/lightdm/lightdm.conf.d", temp_dir), 0755);
2106
2107         files = g_strsplit (additional_config, " ", -1);
2108         for (i = 0; files[i]; i++)
2109             if (system (g_strdup_printf ("cp %s/tests/scripts/%s %s/etc/lightdm/lightdm.conf.d", SRCDIR, files[i], temp_dir)))
2110                 perror ("Failed to copy configuration");
2111         g_strfreev (files);
2112     }
2113
2114     if (g_key_file_has_key (config, "test-runner-config", "shared-data-dirs", NULL))
2115     {
2116         gchar *dir_string;
2117         gchar **dirs;
2118         gint i;
2119
2120         dir_string = g_key_file_get_string (config, "test-runner-config", "shared-data-dirs", NULL);
2121         dirs = g_strsplit (dir_string, " ", -1);
2122         g_free (dir_string);
2123
2124         for (i = 0; dirs[i]; i++)
2125         {
2126             gchar **fields = g_strsplit (dirs[i], ":", -1);
2127             if (g_strv_length (fields) == 4)
2128             {
2129                 gchar *path = g_strdup_printf ("%s/var/lib/lightdm-data/%s", temp_dir, fields[0]);
2130                 int uid = g_ascii_strtoll (fields[1], NULL, 10);
2131                 int gid = g_ascii_strtoll (fields[2], NULL, 10);
2132                 int mode = g_ascii_strtoll (fields[3], NULL, 8);
2133                 g_mkdir (path, mode);
2134                 g_chmod (path, mode); /* mkdir filters by umask, so make sure we have what we want */
2135                 if (chown (path, uid, gid) < 0)
2136                   g_warning ("chown (%s) failed: %s", path, strerror (errno));
2137                 g_free (path);
2138             }
2139             g_strfreev (fields);
2140         }
2141
2142         g_strfreev (dirs);
2143     }
2144
2145     /* Always copy the script */
2146     if (system (g_strdup_printf ("cp %s %s/script", config_path, temp_dir)))
2147         perror ("Failed to copy configuration");
2148
2149     /* Copy over the greeter files */
2150     if (system (g_strdup_printf ("cp %s/sessions/* %s/usr/share/lightdm/sessions", DATADIR, temp_dir)))
2151         perror ("Failed to copy sessions");
2152     if (system (g_strdup_printf ("cp %s/remote-sessions/* %s/usr/share/lightdm/remote-sessions", DATADIR, temp_dir)))
2153         perror ("Failed to copy remote sessions");
2154     if (system (g_strdup_printf ("cp %s/greeters/* %s/usr/share/lightdm/greeters", DATADIR, temp_dir)))
2155         perror ("Failed to copy greeters");
2156
2157     /* Set up the default greeter */
2158     path = g_build_filename (temp_dir, "usr", "share", "lightdm", "greeters", "default.desktop", NULL);
2159     greeter = g_strdup_printf ("%s.desktop", argv[2]);
2160     if (symlink (greeter, path) < 0)
2161     {
2162         g_printerr ("Failed to make greeter symlink %s->%s: %s\n", path, greeter, strerror (errno));
2163         quit (EXIT_FAILURE);
2164     }
2165     g_free (path);
2166     g_free (greeter);
2167
2168     home_dir = g_build_filename (temp_dir, "home", NULL);
2169
2170     /* Make fake users */
2171     struct
2172     {
2173         gchar *user_name;
2174         gchar *password;
2175         gchar *real_name;
2176         gint uid;
2177     } users[] =
2178     {
2179         /* Root account */
2180         {"root",             "",          "root",                  0},
2181         /* Unprivileged account for greeters */
2182         {"lightdm",          "",          "",                    100},
2183         /* These accounts have a password */
2184         {"have-password1",   "password",  "Password User 1",    1000},
2185         {"have-password2",   "password",  "Password User 2",    1001},
2186         {"have-password3",   "password",  "Password User 3",    1002},
2187         {"have-password4",   "password",  "Password User 4",    1003},
2188         /* This account always prompts for a password, even if using the lightdm-autologin service */
2189         {"always-password",  "password",  "Password User 4",    1004},
2190         /* These accounts have no password */
2191         {"no-password1",     "",          "No Password User 1", 1005},
2192         {"no-password2",     "",          "No Password User 2", 1006},
2193         {"no-password3",     "",          "No Password User 3", 1007},
2194         {"no-password4",     "",          "No Password User 4", 1008},
2195         /* This account has a keyboard layout */
2196         {"have-layout",      "",          "Layout User",        1009},
2197         /* This account has a set of keyboard layouts */
2198         {"have-layouts",     "",          "Layouts User",       1010},
2199         /* This account has a language set */
2200         {"have-language",    "",          "Language User",      1011},
2201         /* This account has a preconfigured session */
2202         {"have-session",            "",   "Session User",       1012},
2203         /* This account has the home directory mounted on login */
2204         {"mount-home-dir",   "",          "Mounted Home Dir User", 1013},
2205         /* This account is denied access */
2206         {"denied",           "",          "Denied User",        1014},
2207         /* This account has expired */
2208         {"expired",          "",          "Expired User",       1015},
2209         /* This account needs a password change */
2210         {"new-authtok",      "",          "New Token User",     1016},
2211         /* This account is switched to change-user2 when authentication succeeds */
2212         {"change-user1",     "",          "Change User 1",      1017},
2213         {"change-user2",     "",          "Change User 2",      1018},
2214         /* This account switches to invalid-user when authentication succeeds */
2215         {"change-user-invalid", "",       "Invalid Change User", 1019},
2216         /* This account crashes on authentication */
2217         {"crash-authenticate", "",        "Crash Auth User",    1020},
2218         /* This account shows an informational prompt on login */
2219         {"info-prompt",      "password",  "Info Prompt",        1021},
2220         /* This account shows multiple informational prompts on login */
2221         {"multi-info-prompt","password",  "Multi Info Prompt",  1022},
2222         /* This account uses two factor authentication */
2223         {"two-factor",       "password",  "Two Factor",         1023},
2224         /* This account has a special group */
2225         {"group-member",     "password",  "Group Member",       1024},
2226         /* This account has the home directory created when the session starts */
2227         {"make-home-dir",    "",          "Make Home Dir User", 1025},
2228         /* This account fails to open a session */
2229         {"session-error",    "password",  "Session Error",      1026},
2230         /* This account can't establish credentials */
2231         {"cred-error",       "password",  "Cred Error",         1027},
2232         /* This account has expired credentials */
2233         {"cred-expired",     "password",  "Cred Expired",       1028},
2234         /* This account has cannot access their credentials */
2235         {"cred-unavail",     "password",  "Cred Unavail",       1029},
2236         /* This account sends informational messages for each PAM function that is called */
2237         {"log-pam",          "password",  "Log PAM",            1030},
2238         /* This account shows multiple prompts on login */
2239         {"multi-prompt",     "password",  "Multi Prompt",       1031},
2240         /* This account has an existing corrupt X authority */
2241         {"corrupt-xauth",    "password",  "Corrupt Xauthority", 1032},
2242         /* User to test properties */
2243         {"prop-user",        "",          "TEST",               1033},
2244         {NULL,               NULL,        NULL,                    0}
2245     };
2246     passwd_data = g_string_new ("");
2247     group_data = g_string_new ("");
2248     for (i = 0; users[i].user_name; i++)
2249     {
2250         GKeyFile *dmrc_file;
2251         gboolean save_dmrc = FALSE;
2252
2253         if (strcmp (users[i].user_name, "mount-home-dir") != 0 && strcmp (users[i].user_name, "make-home-dir") != 0)
2254         {
2255             path = g_build_filename (home_dir, users[i].user_name, NULL);
2256             g_mkdir_with_parents (path, 0755);
2257             if (chown (path, users[i].uid, users[i].uid) < 0)
2258               g_debug ("chown (%s) failed: %s", path, strerror (errno));
2259             g_free (path);
2260         }
2261
2262         dmrc_file = g_key_file_new ();
2263         if (strcmp (users[i].user_name, "have-session") == 0)
2264         {
2265             g_key_file_set_string (dmrc_file, "Desktop", "Session", "alternative");
2266             save_dmrc = TRUE;
2267         }
2268         if (strcmp (users[i].user_name, "have-layout") == 0)
2269         {
2270             g_key_file_set_string (dmrc_file, "Desktop", "Layout", "us");
2271             save_dmrc = TRUE;
2272         }
2273         if (strcmp (users[i].user_name, "have-layouts") == 0)
2274         {
2275             g_key_file_set_string (dmrc_file, "Desktop", "Layout", "ru");
2276             g_key_file_set_string (dmrc_file, "X-Accounts", "Layouts", "fr\toss;ru;");
2277             save_dmrc = TRUE;
2278         }
2279         if (strcmp (users[i].user_name, "have-language") == 0)
2280         {
2281             g_key_file_set_string (dmrc_file, "Desktop", "Language", "en_AU.utf8");
2282             save_dmrc = TRUE;
2283         }
2284
2285         if (save_dmrc)
2286         {
2287             gchar *data;
2288
2289             path = g_build_filename (home_dir, users[i].user_name, ".dmrc", NULL);
2290             data = g_key_file_to_data (dmrc_file, NULL, NULL);
2291             g_file_set_contents (path, data, -1, NULL);
2292             g_free (data);
2293             g_free (path);
2294         }
2295
2296         g_key_file_free (dmrc_file);
2297
2298         /* Write corrupt X authority file */
2299         if (strcmp (users[i].user_name, "corrupt-xauth") == 0)
2300         {
2301             gchar data[1] = { 0xFF };
2302
2303             path = g_build_filename (home_dir, users[i].user_name, ".Xauthority", NULL);
2304             g_file_set_contents (path, data, 1, NULL);
2305             chmod (path, S_IRUSR | S_IWUSR);
2306             g_free (path);
2307         }
2308
2309         /* Add passwd file entry */
2310         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);
2311
2312         /* Add group file entry */
2313         g_string_append_printf (group_data, "%s:x:%d:%s\n", users[i].user_name, users[i].uid, users[i].user_name);
2314     }
2315     path = g_build_filename (temp_dir, "etc", "passwd", NULL);
2316     g_file_set_contents (path, passwd_data->str, -1, NULL);
2317     g_free (path);
2318     g_string_free (passwd_data, TRUE);
2319
2320     /* Add an extra test group */
2321     g_string_append_printf (group_data, "test-group:x:111:\n");
2322
2323     path = g_build_filename (temp_dir, "etc", "group", NULL);
2324     g_file_set_contents (path, group_data->str, -1, NULL);
2325     g_free (path);
2326     g_string_free (group_data, TRUE);
2327
2328     if (g_key_file_has_key (config, "test-runner-config", "timeout", NULL))
2329         status_timeout_ms = g_key_file_get_integer (config, "test-runner-config", "timeout", NULL) * 1000;
2330
2331     /* Start D-Bus services */
2332     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-upower", NULL))
2333         start_upower_daemon ();
2334     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-console-kit", NULL))
2335         start_console_kit_daemon ();
2336     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-login1", NULL))
2337         start_login1_daemon ();
2338     if (!g_key_file_get_boolean (config, "test-runner-config", "disable-accounts-service", NULL))
2339         start_accounts_service_daemon ();
2340
2341     g_main_loop_run (loop);
2342
2343     return EXIT_FAILURE;
2344 }