]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/lightdm.c
Merge with trunk
[sojka/lightdm.git] / src / lightdm.c
1 /*
2  * Copyright (C) 2010-2011 Robert Ancell.
3  * Author: Robert Ancell <robert.ancell@canonical.com>
4  *
5  * This program is free software: you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License as published by the Free Software
7  * Foundation, either version 3 of the License, or (at your option) any later
8  * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
9  * license.
10  */
11
12 #include <config.h>
13
14 #include <stdlib.h>
15 #include <stdio.h>
16 #include <sys/stat.h>
17 #include <glib.h>
18 #include <glib/gi18n.h>
19 #include <unistd.h>
20 #include <fcntl.h>
21 #include <sys/stat.h>
22 #include <errno.h>
23
24 #include "configuration.h"
25 #include "display-manager.h"
26 #include "xdmcp-server.h"
27 #include "vnc-server.h"
28 #include "seat-xdmcp-session.h"
29 #include "seat-xvnc.h"
30 #include "x-server.h"
31 #include "process.h"
32 #include "session-child.h"
33 #include "shared-data-manager.h"
34 #include "user-list.h"
35 #include "login1.h"
36
37 static gchar *config_path = NULL;
38 static GMainLoop *loop = NULL;
39 static GTimer *log_timer;
40 static int log_fd = -1;
41 static gboolean debug = FALSE;
42
43 static DisplayManager *display_manager = NULL;
44 static XDMCPServer *xdmcp_server = NULL;
45 static VNCServer *vnc_server = NULL;
46 static guint bus_id = 0;
47 static GDBusConnection *bus = NULL;
48 static guint reg_id = 0;
49 static GDBusNodeInfo *seat_info;
50 static GHashTable *seat_bus_entries = NULL;
51 static guint seat_index = 0;
52 static GDBusNodeInfo *session_info;
53 static GHashTable *session_bus_entries = NULL;
54 static guint session_index = 0;
55 static gint exit_code = EXIT_SUCCESS;
56
57 typedef struct
58 {
59     gchar *path;
60     guint bus_id;
61 } SeatBusEntry;
62 typedef struct
63 {
64     gchar *path;
65     gchar *seat_path;
66     guint bus_id;
67 } SessionBusEntry;
68
69 #define LIGHTDM_BUS_NAME "org.freedesktop.DisplayManager"
70
71 static gboolean update_login1_seat (Login1Seat *login1_seat);
72
73 static void
74 log_cb (const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer data)
75 {
76     const gchar *prefix;
77     gchar *text;
78
79     switch (log_level & G_LOG_LEVEL_MASK)
80     {
81     case G_LOG_LEVEL_ERROR:
82         prefix = "ERROR:";
83         break;
84     case G_LOG_LEVEL_CRITICAL:
85         prefix = "CRITICAL:";
86         break;
87     case G_LOG_LEVEL_WARNING:
88         prefix = "WARNING:";
89         break;
90     case G_LOG_LEVEL_MESSAGE:
91         prefix = "MESSAGE:";
92         break;
93     case G_LOG_LEVEL_INFO:
94         prefix = "INFO:";
95         break;
96     case G_LOG_LEVEL_DEBUG:
97         prefix = "DEBUG:";
98         break;
99     default:
100         prefix = "LOG:";
101         break;
102     }
103
104     text = g_strdup_printf ("[%+.2fs] %s %s\n", g_timer_elapsed (log_timer, NULL), prefix, message);
105
106     /* Log everything to a file */
107     if (log_fd >= 0)
108     {
109         ssize_t n_written;
110         n_written = write (log_fd, text, strlen (text));
111         if (n_written < 0)
112             ; /* Check result so compiler doesn't warn about it */
113     }
114
115     /* Log to stderr if requested */
116     if (debug)
117         g_printerr ("%s", text);
118     else
119         g_log_default_handler (log_domain, log_level, message, data);
120
121     g_free (text);
122 }
123
124 static void
125 log_init (void)
126 {
127     gchar *log_dir, *path, *old_path;
128
129     log_timer = g_timer_new ();
130
131     /* Log to a file */
132     log_dir = config_get_string (config_get_instance (), "LightDM", "log-directory");
133     path = g_build_filename (log_dir, "lightdm.log", NULL);
134     g_free (log_dir);
135
136     /* Move old file out of the way */
137     old_path = g_strdup_printf ("%s.old", path);
138     rename (path, old_path);
139     g_free (old_path);
140
141     /* Create new file and log to it */
142     log_fd = open (path, O_WRONLY | O_CREAT | O_TRUNC, 0600);
143     fcntl (log_fd, F_SETFD, FD_CLOEXEC);
144     g_log_set_default_handler (log_cb, NULL);
145
146     g_debug ("Logging to %s", path);
147     g_free (path);
148 }
149
150 static GList*
151 get_config_sections (const gchar *seat_name)
152 {
153     gchar **groups, **i;
154     GList *config_sections = NULL;
155
156     config_sections = g_list_append (config_sections, g_strdup ("SeatDefaults"));
157
158     if (!seat_name)
159         return config_sections;
160
161     groups = config_get_groups (config_get_instance ());
162     for (i = groups; *i; i++)
163     {
164         if (g_str_has_prefix (*i, "Seat:"))
165         {
166             const gchar *seat_name_glob = *i + strlen ("Seat:");
167             if (g_pattern_match_simple (seat_name_glob, seat_name))
168                 config_sections = g_list_append (config_sections, g_strdup (*i));
169         }
170     }
171     g_strfreev (groups);
172
173     return config_sections;
174 }
175
176 static void
177 set_seat_properties (Seat *seat, const gchar *seat_name)
178 {
179     GList *sections, *link;
180     gchar **keys;
181     gint i;
182
183     sections = get_config_sections (seat_name);
184     for (link = sections; link; link = link->next)
185     {
186         const gchar *section = link->data;
187         g_debug ("Loading properties from config section %s", section);
188         keys = config_get_keys (config_get_instance (), section);
189         for (i = 0; keys && keys[i]; i++)
190         {
191             gchar *value = config_get_string (config_get_instance (), section, keys[i]);
192             seat_set_property (seat, keys[i], value);
193             g_free (value);
194         }
195         g_strfreev (keys);
196     }
197     g_list_free_full (sections, g_free);
198 }
199
200 static void
201 signal_cb (Process *process, int signum)
202 {
203     g_debug ("Caught %s signal, shutting down", g_strsignal (signum));
204     display_manager_stop (display_manager);
205     // FIXME: Stop XDMCP server
206 }
207
208 static void
209 display_manager_stopped_cb (DisplayManager *display_manager)
210 {
211     g_debug ("Stopping daemon");
212     g_main_loop_quit (loop);
213 }
214
215 static void
216 display_manager_seat_removed_cb (DisplayManager *display_manager, Seat *seat)
217 {
218     gchar **types;
219     gchar **iter;
220     Seat *next_seat = NULL;
221     GString *next_types;
222
223     /* If we have fallback types registered for the seat, let's try them
224        before giving up. */
225     types = seat_get_string_list_property (seat, "type");
226     next_types = g_string_new ("");
227     for (iter = types; iter && *iter; iter++)
228     {
229         if (iter == types)
230             continue; // skip first one, that is our current seat type
231
232         if (!next_seat)
233         {
234             next_seat = seat_new (*iter, seat_get_name (seat));
235             g_string_assign (next_types, *iter);
236         }
237         else
238         {
239             // Build up list of types to try next time
240             g_string_append_c (next_types, ';');
241             g_string_append (next_types, *iter);
242         }
243     }
244     g_strfreev (types);
245
246     if (next_seat)
247     {
248         set_seat_properties (next_seat, seat_get_name (seat));
249
250         // We set this manually on default seat.  Let's port it over if needed.
251         if (seat_get_boolean_property (seat, "exit-on-failure"))
252             seat_set_property (next_seat, "exit-on-failure", "true");
253
254         seat_set_property (next_seat, "type", next_types->str);
255
256         display_manager_add_seat (display_manager, next_seat);
257         g_object_unref (next_seat);
258     }
259     else if (seat_get_boolean_property (seat, "exit-on-failure"))
260     {
261         g_debug ("Required seat has stopped");
262         exit_code = EXIT_FAILURE;
263         display_manager_stop (display_manager);
264     }
265
266     g_string_free (next_types, TRUE);
267 }
268
269 static GVariant *
270 get_seat_list (void)
271 {
272     GVariantBuilder builder;
273     GHashTableIter iter;
274     gpointer value;
275
276     g_variant_builder_init (&builder, G_VARIANT_TYPE ("ao"));
277     g_hash_table_iter_init (&iter, seat_bus_entries);
278     while (g_hash_table_iter_next (&iter, NULL, &value))
279     {
280         SeatBusEntry *entry = value;
281         g_variant_builder_add_value (&builder, g_variant_new_object_path (entry->path));
282     }
283
284     return g_variant_builder_end (&builder);
285 }
286
287 static GVariant *
288 get_session_list (const gchar *seat_path)
289 {
290     GVariantBuilder builder;
291     GHashTableIter iter;
292     gpointer value;
293
294     g_variant_builder_init (&builder, G_VARIANT_TYPE ("ao"));
295
296     g_hash_table_iter_init (&iter, session_bus_entries);
297     while (g_hash_table_iter_next (&iter, NULL, &value))
298     {
299         SessionBusEntry *entry = value;
300         if (seat_path == NULL || strcmp (entry->seat_path, seat_path) == 0)
301             g_variant_builder_add_value (&builder, g_variant_new_object_path (entry->path));
302     }
303
304     return g_variant_builder_end (&builder);
305 }
306
307 static GVariant *
308 handle_display_manager_get_property (GDBusConnection       *connection,
309                                      const gchar           *sender,
310                                      const gchar           *object_path,
311                                      const gchar           *interface_name,
312                                      const gchar           *property_name,
313                                      GError               **error,
314                                      gpointer               user_data)
315 {
316     if (g_strcmp0 (property_name, "Seats") == 0)
317         return get_seat_list ();
318     else if (g_strcmp0 (property_name, "Sessions") == 0)
319         return get_session_list (NULL);
320
321     return NULL;
322 }
323
324 static void
325 handle_display_manager_call (GDBusConnection       *connection,
326                              const gchar           *sender,
327                              const gchar           *object_path,
328                              const gchar           *interface_name,
329                              const gchar           *method_name,
330                              GVariant              *parameters,
331                              GDBusMethodInvocation *invocation,
332                              gpointer               user_data)
333 {
334     if (g_strcmp0 (method_name, "AddSeat") == 0)
335         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "AddSeat is deprecated");
336     else if (g_strcmp0 (method_name, "AddLocalXSeat") == 0)
337     {
338         gint display_number;
339         Seat *seat;
340
341         if (!g_variant_is_of_type (parameters, G_VARIANT_TYPE ("(i)")))
342         {
343             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid arguments");
344             return;
345         }
346
347         g_variant_get (parameters, "(i)", &display_number);
348
349         g_debug ("Adding local X seat :%d", display_number);
350
351         seat = seat_new ("xremote", "xremote0"); // FIXME: What to use for a name?
352         if (seat)
353         {
354             gchar *display_number_string;
355
356             set_seat_properties (seat, NULL);
357             display_number_string = g_strdup_printf ("%d", display_number);
358             seat_set_property (seat, "xserver-display-number", display_number_string);
359             g_free (display_number_string);
360         }
361
362         if (!seat)
363         {
364             // FIXME: Need to make proper error
365             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Unable to create local X seat");
366             return;
367         }
368
369         if (display_manager_add_seat (display_manager, seat))
370         {
371             SeatBusEntry *entry;
372
373             entry = g_hash_table_lookup (seat_bus_entries, seat);
374             g_dbus_method_invocation_return_value (invocation, g_variant_new ("(o)", entry->path));
375         }
376         else// FIXME: Need to make proper error
377             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Failed to start seat");
378         g_object_unref (seat);
379     }
380     else
381         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD, "Unknown method");
382 }
383
384 static GVariant *
385 handle_seat_get_property (GDBusConnection       *connection,
386                           const gchar           *sender,
387                           const gchar           *object_path,
388                           const gchar           *interface_name,
389                           const gchar           *property_name,
390                           GError               **error,
391                           gpointer               user_data)
392 {
393     Seat *seat = user_data;
394
395     if (g_strcmp0 (property_name, "CanSwitch") == 0)
396         return g_variant_new_boolean (seat_get_can_switch (seat));
397     if (g_strcmp0 (property_name, "HasGuestAccount") == 0)
398         return g_variant_new_boolean (seat_get_allow_guest (seat));
399     else if (g_strcmp0 (property_name, "Sessions") == 0)
400     {
401         SeatBusEntry *entry;
402
403         entry = g_hash_table_lookup (seat_bus_entries, seat);
404         return get_session_list (entry->path);
405     }
406
407     return NULL;
408 }
409
410 static void
411 handle_seat_call (GDBusConnection       *connection,
412                   const gchar           *sender,
413                   const gchar           *object_path,
414                   const gchar           *interface_name,
415                   const gchar           *method_name,
416                   GVariant              *parameters,
417                   GDBusMethodInvocation *invocation,
418                   gpointer               user_data)
419 {
420     Seat *seat = user_data;
421
422     if (g_strcmp0 (method_name, "SwitchToGreeter") == 0)
423     {
424         if (!g_variant_is_of_type (parameters, G_VARIANT_TYPE ("()")))
425             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid arguments");
426
427         if (seat_switch_to_greeter (seat))
428             g_dbus_method_invocation_return_value (invocation, NULL);
429         else// FIXME: Need to make proper error
430             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Failed to switch to greeter");
431     }
432     else if (g_strcmp0 (method_name, "SwitchToUser") == 0)
433     {
434         const gchar *username, *session_name;
435
436         if (!g_variant_is_of_type (parameters, G_VARIANT_TYPE ("(ss)")))
437             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid arguments");
438
439         g_variant_get (parameters, "(&s&s)", &username, &session_name);
440         if (strcmp (session_name, "") == 0)
441             session_name = NULL;
442
443         if (seat_switch_to_user (seat, username, session_name))
444             g_dbus_method_invocation_return_value (invocation, NULL);
445         else// FIXME: Need to make proper error
446             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Failed to switch to user");
447     }
448     else if (g_strcmp0 (method_name, "SwitchToGuest") == 0)
449     {
450         const gchar *session_name;
451
452         if (!g_variant_is_of_type (parameters, G_VARIANT_TYPE ("(s)")))
453             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid arguments");
454
455         g_variant_get (parameters, "(&s)", &session_name);
456         if (strcmp (session_name, "") == 0)
457             session_name = NULL;
458
459         if (seat_switch_to_guest (seat, session_name))
460             g_dbus_method_invocation_return_value (invocation, NULL);
461         else// FIXME: Need to make proper error
462             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Failed to switch to guest");
463     }
464     else if (g_strcmp0 (method_name, "Lock") == 0)
465     {
466         if (!g_variant_is_of_type (parameters, G_VARIANT_TYPE ("()")))
467             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid arguments");
468
469         /* FIXME: Should only allow locks if have a session on this seat */
470         if (seat_lock (seat, NULL))
471             g_dbus_method_invocation_return_value (invocation, NULL);
472         else// FIXME: Need to make proper error
473             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Failed to lock seat");
474     }
475     else
476         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD, "Unknown method");
477 }
478
479 static Seat *
480 get_seat_for_session (Session *session)
481 {
482     GList *seat_link;
483
484     for (seat_link = display_manager_get_seats (display_manager); seat_link; seat_link = seat_link->next)
485     {
486         Seat *seat = seat_link->data;
487         GList *session_link;
488
489         for (session_link = seat_get_sessions (seat); session_link; session_link = session_link->next)
490         {
491             Session *s = session_link->data;
492
493             if (s == session)
494                 return seat;
495         }
496     }
497
498     return NULL;
499 }
500
501 static GVariant *
502 handle_session_get_property (GDBusConnection       *connection,
503                              const gchar           *sender,
504                              const gchar           *object_path,
505                              const gchar           *interface_name,
506                              const gchar           *property_name,
507                              GError               **error,
508                              gpointer               user_data)
509 {
510     Session *session = user_data;
511     SessionBusEntry *entry;
512
513     entry = g_hash_table_lookup (session_bus_entries, session);
514     if (g_strcmp0 (property_name, "Seat") == 0)
515         return g_variant_new_object_path (entry ? entry->seat_path : "");
516     else if (g_strcmp0 (property_name, "UserName") == 0)
517         return g_variant_new_string (session_get_username (session));
518
519     return NULL;
520 }
521
522 static void
523 handle_session_call (GDBusConnection       *connection,
524                      const gchar           *sender,
525                      const gchar           *object_path,
526                      const gchar           *interface_name,
527                      const gchar           *method_name,
528                      GVariant              *parameters,
529                      GDBusMethodInvocation *invocation,
530                      gpointer               user_data)
531 {
532     Session *session = user_data;
533
534     if (g_strcmp0 (method_name, "Lock") == 0)
535     {
536         Seat *seat;
537
538         if (!g_variant_is_of_type (parameters, G_VARIANT_TYPE ("()")))
539             g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid arguments");
540
541         seat = get_seat_for_session (session);
542         /* FIXME: Should only allow locks if have a session on this seat */
543         seat_lock (seat, session_get_username (session));
544         g_dbus_method_invocation_return_value (invocation, NULL);
545     }
546     else
547         g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD, "Unknown method");
548 }
549
550 static SeatBusEntry *
551 seat_bus_entry_new (const gchar *path)
552 {
553     SeatBusEntry *entry;
554
555     entry = g_malloc0 (sizeof (SeatBusEntry));
556     entry->path = g_strdup (path);
557
558     return entry;
559 }
560
561 static SessionBusEntry *
562 session_bus_entry_new (const gchar *path, const gchar *seat_path)
563 {
564     SessionBusEntry *entry;
565
566     entry = g_malloc0 (sizeof (SessionBusEntry));
567     entry->path = g_strdup (path);
568     entry->seat_path = g_strdup (seat_path);
569
570     return entry;
571 }
572
573 static void
574 emit_object_value_changed (GDBusConnection *bus, const gchar *path, const gchar *interface_name, const gchar *property_name, GVariant *property_value)
575 {
576     GVariantBuilder builder;
577     GError *error = NULL;
578
579     g_variant_builder_init (&builder, G_VARIANT_TYPE_ARRAY);
580     g_variant_builder_add (&builder, "{sv}", property_name, property_value);
581
582     if (!g_dbus_connection_emit_signal (bus,
583                                         NULL,
584                                         path,
585                                         "org.freedesktop.DBus.Properties",
586                                         "PropertiesChanged",
587                                         g_variant_new ("(sa{sv}as)", interface_name, &builder, NULL),
588                                         &error))
589         g_warning ("Failed to emit PropertiesChanged signal: %s", error->message);
590     g_clear_error (&error); 
591 }
592
593 static void
594 emit_object_signal (GDBusConnection *bus, const gchar *path, const gchar *signal_name, const gchar *object_path)
595 {
596     GError *error = NULL;
597
598     if (!g_dbus_connection_emit_signal (bus,
599                                         NULL,
600                                         path,
601                                         "org.freedesktop.DisplayManager",
602                                         signal_name,
603                                         g_variant_new ("(o)", object_path),
604                                         &error))
605         g_warning ("Failed to emit %s signal on %s: %s", signal_name, path, error->message);
606     g_clear_error (&error); 
607 }
608
609 static void
610 seat_bus_entry_free (gpointer data)
611 {
612     SeatBusEntry *entry = data;
613
614     g_dbus_connection_unregister_object (bus, entry->bus_id);
615
616     emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Seats", get_seat_list ());
617     emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SeatRemoved", entry->path);
618
619     g_free (entry->path);
620     g_free (entry);
621 }
622
623 static void
624 session_bus_entry_free (gpointer data)
625 {
626     SessionBusEntry *entry = data;
627
628     g_dbus_connection_unregister_object (bus, entry->bus_id);
629
630     emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Sessions", get_session_list (NULL));
631     emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SessionRemoved", entry->path);
632
633     emit_object_value_changed (bus, entry->seat_path, "org.freedesktop.DisplayManager.Seat", "Sessions", get_session_list (entry->seat_path));
634     emit_object_signal (bus, entry->seat_path, "SessionRemoved", entry->path);
635
636     g_free (entry->path);
637     g_free (entry->seat_path);
638     g_free (entry);
639 }
640
641 static void
642 running_user_session_cb (Seat *seat, Session *session)
643 {
644     static const GDBusInterfaceVTable session_vtable =
645     {
646         handle_session_call,
647         handle_session_get_property
648     };
649     SeatBusEntry *seat_entry;
650     SessionBusEntry *session_entry;
651     gchar *path;
652     GError *error = NULL;
653
654     /* Set environment variables when session runs */
655     seat_entry = g_hash_table_lookup (seat_bus_entries, seat);
656     session_set_env (session, "XDG_SEAT_PATH", seat_entry->path);
657     path = g_strdup_printf ("/org/freedesktop/DisplayManager/Session%d", session_index);
658     session_index++;
659     session_set_env (session, "XDG_SESSION_PATH", path);
660     g_object_set_data_full (G_OBJECT (session), "XDG_SESSION_PATH", path, g_free);
661
662     seat_entry = g_hash_table_lookup (seat_bus_entries, seat);
663     session_entry = session_bus_entry_new (g_object_get_data (G_OBJECT (session), "XDG_SESSION_PATH"), seat_entry ? seat_entry->path : NULL);
664     g_hash_table_insert (session_bus_entries, g_object_ref (session), session_entry);
665
666     g_debug ("Registering session with bus path %s", session_entry->path);
667
668     session_entry->bus_id = g_dbus_connection_register_object (bus,
669                                                                session_entry->path,
670                                                                session_info->interfaces[0],
671                                                                &session_vtable,
672                                                                g_object_ref (session), g_object_unref,
673                                                                &error);
674     if (session_entry->bus_id == 0)
675         g_warning ("Failed to register user session: %s", error->message);
676     g_clear_error (&error);
677
678     emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Sessions", get_session_list (NULL));
679     emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SessionAdded", session_entry->path);
680
681     emit_object_value_changed (bus, seat_entry->path, "org.freedesktop.DisplayManager.Seat", "Sessions", get_session_list (session_entry->seat_path));
682     emit_object_signal (bus, seat_entry->path, "SessionAdded", session_entry->path);
683 }
684
685 static void
686 session_removed_cb (Seat *seat, Session *session)
687 {
688     g_signal_handlers_disconnect_matched (session, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, seat);
689     g_hash_table_remove (session_bus_entries, session);
690 }
691
692 static void
693 seat_added_cb (DisplayManager *display_manager, Seat *seat)
694 {
695     static const GDBusInterfaceVTable seat_vtable =
696     {
697         handle_seat_call,
698         handle_seat_get_property
699     };
700     gchar *path;
701     SeatBusEntry *entry;
702     GError *error = NULL;
703
704     path = g_strdup_printf ("/org/freedesktop/DisplayManager/Seat%d", seat_index);
705     seat_index++;
706
707     entry = seat_bus_entry_new (path);
708     g_free (path);
709     g_hash_table_insert (seat_bus_entries, g_object_ref (seat), entry);
710
711     g_debug ("Registering seat with bus path %s", entry->path);
712
713     entry->bus_id = g_dbus_connection_register_object (bus,
714                                                        entry->path,
715                                                        seat_info->interfaces[0],
716                                                        &seat_vtable,
717                                                        g_object_ref (seat), g_object_unref,
718                                                        &error);
719     if (entry->bus_id == 0)
720         g_warning ("Failed to register seat: %s", error->message);
721     g_clear_error (&error);
722
723     emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Seats", get_seat_list ());
724     emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SeatAdded", entry->path);
725
726     g_signal_connect (seat, "running-user-session", G_CALLBACK (running_user_session_cb), NULL);
727     g_signal_connect (seat, "session-removed", G_CALLBACK (session_removed_cb), NULL);
728 }
729
730 static void
731 seat_removed_cb (DisplayManager *display_manager, Seat *seat)
732 {
733     g_hash_table_remove (seat_bus_entries, seat);
734 }
735
736 static gboolean
737 xdmcp_session_cb (XDMCPServer *server, XDMCPSession *session)
738 {
739     SeatXDMCPSession *seat;
740     gboolean result;
741
742     seat = seat_xdmcp_session_new (session);
743     set_seat_properties (SEAT (seat), NULL);
744     result = display_manager_add_seat (display_manager, SEAT (seat));
745     g_object_unref (seat);
746
747     return result;
748 }
749
750 static void
751 vnc_connection_cb (VNCServer *server, GSocket *connection)
752 {
753     SeatXVNC *seat;
754
755     seat = seat_xvnc_new (connection);
756     set_seat_properties (SEAT (seat), NULL);
757     display_manager_add_seat (display_manager, SEAT (seat));
758     g_object_unref (seat);
759 }
760
761 static void
762 bus_acquired_cb (GDBusConnection *connection,
763                  const gchar     *name,
764                  gpointer         user_data)
765 {
766     const gchar *display_manager_interface =
767         "<node>"
768         "  <interface name='org.freedesktop.DisplayManager'>"
769         "    <property name='Seats' type='ao' access='read'/>"
770         "    <property name='Sessions' type='ao' access='read'/>"
771         "    <method name='AddSeat'>"
772         "      <arg name='type' direction='in' type='s'/>"
773         "      <arg name='properties' direction='in' type='a(ss)'/>"
774         "      <arg name='seat' direction='out' type='o'/>"
775         "    </method>"
776         "    <method name='AddLocalXSeat'>"
777         "      <arg name='display-number' direction='in' type='i'/>"
778         "      <arg name='seat' direction='out' type='o'/>"
779         "    </method>"
780         "    <signal name='SeatAdded'>"
781         "      <arg name='seat' type='o'/>"
782         "    </signal>"
783         "    <signal name='SeatRemoved'>"
784         "      <arg name='seat' type='o'/>"
785         "    </signal>"
786         "    <signal name='SessionAdded'>"
787         "      <arg name='session' type='o'/>"
788         "    </signal>"
789         "    <signal name='SessionRemoved'>"
790         "      <arg name='session' type='o'/>"
791         "    </signal>"
792         "  </interface>"
793         "</node>";
794     static const GDBusInterfaceVTable display_manager_vtable =
795     {
796         handle_display_manager_call,
797         handle_display_manager_get_property
798     };
799     const gchar *seat_interface =
800         "<node>"
801         "  <interface name='org.freedesktop.DisplayManager.Seat'>"
802         "    <property name='CanSwitch' type='b' access='read'/>"
803         "    <property name='HasGuestAccount' type='b' access='read'/>"
804         "    <property name='Sessions' type='ao' access='read'/>"
805         "    <method name='SwitchToGreeter'/>"
806         "    <method name='SwitchToUser'>"
807         "      <arg name='username' direction='in' type='s'/>"
808         "      <arg name='session-name' direction='in' type='s'/>"
809         "    </method>"
810         "    <method name='SwitchToGuest'>"
811         "      <arg name='session-name' direction='in' type='s'/>"
812         "    </method>"
813         "    <method name='Lock'/>"
814         "    <signal name='SessionAdded'>"
815         "      <arg name='session' type='o'/>"
816         "    </signal>"
817         "    <signal name='SessionRemoved'>"
818         "      <arg name='session' type='o'/>"
819         "    </signal>"
820         "  </interface>"
821         "</node>";
822     const gchar *session_interface =
823         "<node>"
824         "  <interface name='org.freedesktop.DisplayManager.Session'>"
825         "    <property name='Seat' type='o' access='read'/>"
826         "    <property name='UserName' type='s' access='read'/>"
827         "    <method name='Lock'/>"
828         "  </interface>"
829         "</node>";
830     GDBusNodeInfo *display_manager_info;
831     GList *link;
832     GError *error = NULL;
833
834     g_debug ("Acquired bus name %s", name);
835
836     bus = connection;
837
838     display_manager_info = g_dbus_node_info_new_for_xml (display_manager_interface, NULL);
839     g_assert (display_manager_info != NULL);
840     seat_info = g_dbus_node_info_new_for_xml (seat_interface, NULL);
841     g_assert (seat_info != NULL);
842     session_info = g_dbus_node_info_new_for_xml (session_interface, NULL);
843     g_assert (session_info != NULL);
844
845     reg_id = g_dbus_connection_register_object (connection,
846                                                 "/org/freedesktop/DisplayManager",
847                                                 display_manager_info->interfaces[0],
848                                                 &display_manager_vtable,
849                                                 NULL, NULL,
850                                                 &error);
851     if (reg_id == 0)
852         g_warning ("Failed to register display manager: %s", error->message);
853     g_clear_error (&error);
854     g_dbus_node_info_unref (display_manager_info);
855
856     seat_bus_entries = g_hash_table_new_full (g_direct_hash, g_direct_equal, g_object_unref, seat_bus_entry_free);
857     session_bus_entries = g_hash_table_new_full (g_direct_hash, g_direct_equal, g_object_unref, session_bus_entry_free);
858
859     g_signal_connect (display_manager, "seat-added", G_CALLBACK (seat_added_cb), NULL);
860     g_signal_connect (display_manager, "seat-removed", G_CALLBACK (seat_removed_cb), NULL);
861     for (link = display_manager_get_seats (display_manager); link; link = link->next)
862         seat_added_cb (display_manager, (Seat *) link->data);
863
864     display_manager_start (display_manager);
865
866     /* Start the XDMCP server */
867     if (config_get_boolean (config_get_instance (), "XDMCPServer", "enabled"))
868     {
869         gchar *key_name, *key = NULL;
870
871         xdmcp_server = xdmcp_server_new ();
872         if (config_has_key (config_get_instance (), "XDMCPServer", "port"))
873         {
874             gint port;
875             port = config_get_integer (config_get_instance (), "XDMCPServer", "port");
876             if (port > 0)
877                 xdmcp_server_set_port (xdmcp_server, port);
878         }
879         g_signal_connect (xdmcp_server, "new-session", G_CALLBACK (xdmcp_session_cb), NULL);
880
881         key_name = config_get_string (config_get_instance (), "XDMCPServer", "key");
882         if (key_name)
883         {
884             gchar *path;
885             GKeyFile *keys;
886             gboolean result;
887             GError *error = NULL;
888
889             path = g_build_filename (config_get_directory (config_get_instance ()), "keys.conf", NULL);
890
891             keys = g_key_file_new ();
892             result = g_key_file_load_from_file (keys, path, G_KEY_FILE_NONE, &error);
893             if (error)
894                 g_debug ("Error getting key %s", error->message);
895             g_clear_error (&error);
896
897             if (result)
898             {
899                 if (g_key_file_has_key (keys, "keyring", key_name, NULL))
900                     key = g_key_file_get_string (keys, "keyring", key_name, NULL);
901                 else
902                     g_debug ("Key %s not defined", key_name);
903             }
904             g_free (path);
905             g_key_file_free (keys);
906         }
907         if (key)
908             xdmcp_server_set_key (xdmcp_server, key);
909         g_free (key_name);
910         g_free (key);
911
912         g_debug ("Starting XDMCP server on UDP/IP port %d", xdmcp_server_get_port (xdmcp_server));
913         xdmcp_server_start (xdmcp_server);
914     }
915
916     /* Start the VNC server */
917     if (config_get_boolean (config_get_instance (), "VNCServer", "enabled"))
918     {
919         gchar *path;
920
921         path = g_find_program_in_path ("Xvnc");
922         if (path)
923         {
924             vnc_server = vnc_server_new ();
925             if (config_has_key (config_get_instance (), "VNCServer", "port"))
926             {
927                 gint port;
928                 port = config_get_integer (config_get_instance (), "VNCServer", "port");
929                 if (port > 0)
930                     vnc_server_set_port (vnc_server, port);
931             }
932             g_signal_connect (vnc_server, "new-connection", G_CALLBACK (vnc_connection_cb), NULL);
933
934             g_debug ("Starting VNC server on TCP/IP port %d", vnc_server_get_port (vnc_server));
935             vnc_server_start (vnc_server);
936
937             g_free (path);
938         }
939         else
940             g_warning ("Can't start VNC server, Xvnc is not in the path");
941     }
942 }
943
944 static void
945 name_lost_cb (GDBusConnection *connection,
946               const gchar *name,
947               gpointer user_data)
948 {
949     if (connection)
950         g_printerr ("Failed to use bus name " LIGHTDM_BUS_NAME ", do you have appropriate permissions?\n");
951     else
952         g_printerr ("Failed to get D-Bus connection\n");
953
954     exit (EXIT_FAILURE);
955 }
956
957 static gboolean
958 add_login1_seat (Login1Seat *login1_seat)
959 {
960     const gchar *seat_name = login1_seat_get_id (login1_seat);
961     gchar **types = NULL, **type;
962     GList *config_sections = NULL, *link;
963     Seat *seat = NULL;
964     gboolean is_seat0, started = FALSE;
965
966     g_debug ("New seat added from logind: %s", seat_name);
967     is_seat0 = strcmp (seat_name, "seat0") == 0;
968
969     config_sections = get_config_sections (seat_name);
970     for (link = g_list_last (config_sections); link; link = link->prev)
971     {
972         gchar *config_section = link->data;
973         types = config_get_string_list (config_get_instance (), config_section, "type");
974         if (types)
975             break;
976     }
977     g_list_free_full (config_sections, g_free);
978
979     for (type = types; !seat && type && *type; type++)
980         seat = seat_new (*type, seat_name);
981     g_strfreev (types);
982
983     if (seat)
984     {
985         set_seat_properties (seat, seat_name);
986
987         if (!login1_seat_get_can_multi_session (login1_seat))
988         {
989             g_debug ("Seat %s has property CanMultiSession=no", seat_name);
990             seat_set_property (seat, "allow-user-switching", "false");
991         }
992
993         if (is_seat0)
994             seat_set_property (seat, "exit-on-failure", "true");
995     }
996     else
997         g_debug ("Unable to create seat: %s", seat_name);
998
999     if (seat)
1000     {
1001         started = display_manager_add_seat (display_manager, seat);
1002         if (!started)
1003             g_debug ("Failed to start seat: %s", seat_name);
1004     }
1005
1006     g_object_unref (seat);
1007   
1008     return started;
1009 }
1010
1011 static void
1012 remove_login1_seat (Login1Seat *login1_seat)
1013 {
1014     Seat *seat;
1015
1016     seat = display_manager_get_seat (display_manager, login1_seat_get_id (login1_seat));
1017     if (seat)
1018         seat_stop (seat);
1019 }
1020
1021 static void
1022 seat_stopped_cb (Seat *seat, Login1Seat *login1_seat)
1023 {
1024     update_login1_seat (login1_seat);
1025     g_signal_handlers_disconnect_matched (seat, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, login1_seat);
1026 }
1027
1028 static gboolean
1029 update_login1_seat (Login1Seat *login1_seat)
1030 {
1031     if (!config_get_boolean (config_get_instance (), "LightDM", "logind-check-graphical") ||
1032         login1_seat_get_can_graphical (login1_seat))
1033     {
1034         Seat *seat;
1035
1036         /* Wait for existing seat to stop or ignore if we already have a valid seat */
1037         seat = display_manager_get_seat (display_manager, login1_seat_get_id (login1_seat));
1038         if (seat)
1039         {
1040             if (seat_get_is_stopping (seat))
1041                 g_signal_connect (seat, "stopped", G_CALLBACK (seat_stopped_cb), login1_seat);
1042             return TRUE;
1043         }
1044
1045         return add_login1_seat (login1_seat);
1046     }
1047     else
1048     {
1049         remove_login1_seat (login1_seat);
1050         return TRUE;
1051     }
1052 }
1053
1054 static void
1055 login1_can_graphical_changed_cb (Login1Seat *login1_seat)
1056 {
1057     g_debug ("Seat %s changes graphical state to %s", login1_seat_get_id (login1_seat), login1_seat_get_can_graphical (login1_seat) ? "true" : "false");
1058     update_login1_seat (login1_seat);
1059 }
1060
1061 static void
1062 login1_service_seat_added_cb (Login1Service *service, Login1Seat *login1_seat)
1063 {
1064     if (login1_seat_get_can_graphical (login1_seat))
1065         g_debug ("Seat %s added from logind", login1_seat_get_id (login1_seat));
1066     else
1067         g_debug ("Seat %s added from logind without graphical output", login1_seat_get_id (login1_seat));
1068
1069     if (config_get_boolean (config_get_instance (), "LightDM", "logind-check-graphical"))
1070         g_signal_connect (login1_seat, "can-graphical-changed", G_CALLBACK (login1_can_graphical_changed_cb), NULL);
1071     update_login1_seat (login1_seat);
1072 }
1073
1074 static void
1075 login1_service_seat_removed_cb (Login1Service *service, Login1Seat *login1_seat)
1076 {
1077     g_debug ("Seat %s removed from logind", login1_seat_get_id (login1_seat));
1078     g_signal_handlers_disconnect_matched (login1_seat, G_SIGNAL_MATCH_FUNC, 0, 0, NULL, login1_can_graphical_changed_cb, NULL);
1079     remove_login1_seat (login1_seat);
1080 }
1081
1082 int
1083 main (int argc, char **argv)
1084 {
1085     FILE *pid_file;
1086     GOptionContext *option_context;
1087     gboolean result;
1088     gchar *dir;
1089     gboolean test_mode = FALSE;
1090     gchar *pid_path = "/var/run/lightdm.pid";
1091     gchar *log_dir = NULL;
1092     gchar *run_dir = NULL;
1093     gchar *cache_dir = NULL;
1094     gchar *default_log_dir = g_strdup (LOG_DIR);
1095     gchar *default_run_dir = g_strdup (RUN_DIR);
1096     gchar *default_cache_dir = g_strdup (CACHE_DIR);
1097     gboolean show_config = FALSE, show_version = FALSE;
1098     GList *link, *messages = NULL;
1099     GOptionEntry options[] =
1100     {
1101         { "config", 'c', 0, G_OPTION_ARG_STRING, &config_path,
1102           /* Help string for command line --config flag */
1103           N_("Use configuration file"), "FILE" },
1104         { "debug", 'd', 0, G_OPTION_ARG_NONE, &debug,
1105           /* Help string for command line --debug flag */
1106           N_("Print debugging messages"), NULL },
1107         { "test-mode", 0, 0, G_OPTION_ARG_NONE, &test_mode,
1108           /* Help string for command line --test-mode flag */
1109           N_("Run as unprivileged user, skipping things that require root access"), NULL },
1110         { "pid-file", 0, 0, G_OPTION_ARG_STRING, &pid_path,
1111           /* Help string for command line --pid-file flag */
1112           N_("File to write PID into"), "FILE" },
1113         { "log-dir", 0, 0, G_OPTION_ARG_STRING, &log_dir,
1114           /* Help string for command line --log-dir flag */
1115           N_("Directory to write logs to"), "DIRECTORY" },
1116         { "run-dir", 0, 0, G_OPTION_ARG_STRING, &run_dir,
1117           /* Help string for command line --run-dir flag */
1118           N_("Directory to store running state"), "DIRECTORY" },
1119         { "cache-dir", 0, 0, G_OPTION_ARG_STRING, &cache_dir,
1120           /* Help string for command line --cache-dir flag */
1121           N_("Directory to cache information"), "DIRECTORY" },
1122         { "show-config", 0, 0, G_OPTION_ARG_NONE, &show_config,
1123           /* Help string for command line --show-config flag */
1124           N_("Show combined configuration"), NULL },
1125         { "version", 'v', 0, G_OPTION_ARG_NONE, &show_version,
1126           /* Help string for command line --version flag */
1127           N_("Show release version"), NULL },
1128         { NULL }
1129     };
1130     GError *error = NULL;
1131
1132     /* When lightdm starts sessions it needs to run itself in a new mode */
1133     if (argc >= 2 && strcmp (argv[1], "--session-child") == 0)
1134         return session_child_run (argc, argv);
1135
1136 #if !defined(GLIB_VERSION_2_36)
1137     g_type_init ();
1138 #endif
1139     loop = g_main_loop_new (NULL, FALSE);
1140
1141     messages = g_list_append (messages, g_strdup_printf ("Starting Light Display Manager %s, UID=%i PID=%i", VERSION, getuid (), getpid ()));
1142
1143     g_signal_connect (process_get_current (), "got-signal", G_CALLBACK (signal_cb), NULL);
1144
1145     option_context = g_option_context_new (/* Arguments and description for --help test */
1146                                            _("- Display Manager"));
1147     g_option_context_add_main_entries (option_context, options, GETTEXT_PACKAGE);
1148     result = g_option_context_parse (option_context, &argc, &argv, &error);
1149     if (error)
1150         g_printerr ("%s\n", error->message);
1151     g_clear_error (&error);
1152     g_option_context_free (option_context);
1153     if (!result)
1154     {
1155         g_printerr (/* Text printed out when an unknown command-line argument provided */
1156                     _("Run '%s --help' to see a full list of available command line options."), argv[0]);
1157         g_printerr ("\n");
1158         return EXIT_FAILURE;
1159     }
1160
1161     /* Show combined configuration if user requested it */
1162     if (show_config)
1163     {
1164         GList *sources, *link;
1165         gchar **groups, *last_source, *empty_source;
1166         GHashTable *source_ids;
1167         int i;
1168
1169         if (!config_load_from_standard_locations (config_get_instance (), config_path, NULL))
1170             return EXIT_FAILURE;
1171
1172         /* Number sources */
1173         sources = config_get_sources (config_get_instance ());
1174         source_ids = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
1175         last_source = "";
1176         for (i = 0, link = sources; link; i++, link = link->next)
1177         {
1178             gchar *path, *id;
1179
1180             path = link->data;
1181             if (i < 26)
1182                 id = g_strdup_printf ("%c", 'A' + i);
1183             else
1184                 id = g_strdup_printf ("%d", i);
1185             g_hash_table_insert (source_ids, g_strdup (path), id);
1186             last_source = id;
1187         }
1188         empty_source = g_strdup (last_source);
1189         for (i = 0; empty_source[i] != '\0'; i++)
1190             empty_source[i] = ' ';
1191
1192         /* Print out keys */
1193         groups = config_get_groups (config_get_instance ());
1194         for (i = 0; groups[i]; i++)
1195         {
1196             gchar **keys;
1197             int j;
1198
1199             if (i != 0)
1200                 g_printerr ("\n");
1201             g_printerr ("%s  [%s]\n", empty_source, groups[i]);
1202
1203             keys = config_get_keys (config_get_instance (), groups[i]);
1204             for (j = 0; keys && keys[j]; j++)
1205             {
1206                 const gchar *source, *id;
1207                 gchar *value;
1208
1209                 source = config_get_source (config_get_instance (), groups[i], keys[j]);
1210                 id = source ? g_hash_table_lookup (source_ids, source) : empty_source;
1211                 value = config_get_string (config_get_instance (), groups[i], keys[j]);
1212                 g_printerr ("%s  %s=%s\n", id, keys[j], value);
1213                 g_free (value);
1214             }
1215
1216             g_strfreev (keys);
1217         }
1218         g_strfreev (groups);
1219
1220         /* Show mapping from source number to path */
1221         g_printerr ("\n");
1222         g_printerr ("Sources:\n");
1223         for (link = sources; link; link = link->next)
1224         {
1225             const gchar *path = link->data;
1226             const gchar *source;
1227
1228             source = g_hash_table_lookup (source_ids, path);
1229             g_printerr ("%s  %s\n", source, path);
1230         }
1231
1232         g_hash_table_destroy (source_ids);
1233
1234         return EXIT_SUCCESS;
1235     }
1236
1237     if (show_version)
1238     {
1239         /* NOTE: Is not translated so can be easily parsed */
1240         g_printerr ("lightdm %s\n", VERSION);
1241         return EXIT_SUCCESS;
1242     }
1243
1244     if (!test_mode && getuid () != 0)
1245     {
1246         g_printerr ("Only root can run Light Display Manager.  To run as a regular user for testing run with the --test-mode flag.\n");
1247         return EXIT_FAILURE;
1248     }
1249
1250     /* If running inside an X server use Xephyr for display */
1251     if (getenv ("DISPLAY") && getuid () != 0)
1252     {
1253         gchar *x_server_path;
1254
1255         x_server_path = g_find_program_in_path ("Xephyr");
1256         if (!x_server_path)
1257         {
1258             g_printerr ("Running inside an X server requires Xephyr to be installed but it cannot be found.  Please install it or update your PATH environment variable.\n");
1259             return EXIT_FAILURE;
1260         }
1261         g_free (x_server_path);
1262     }
1263
1264     /* Make sure the system binary directory (where the greeters are installed) is in the path */
1265     if (test_mode)
1266     {
1267         const gchar *path = g_getenv ("PATH");
1268         gchar *new_path;
1269
1270         if (path)
1271             new_path = g_strdup_printf ("%s:%s", path, SBIN_DIR);
1272         else
1273             new_path = g_strdup (SBIN_DIR);
1274         g_setenv ("PATH", new_path, TRUE);
1275         g_free (new_path);
1276     }
1277
1278     /* Write PID file */
1279     pid_file = fopen (pid_path, "w");
1280     if (pid_file)
1281     {
1282         fprintf (pid_file, "%d\n", getpid ());
1283         fclose (pid_file);
1284     }
1285
1286     /* If not running as root write output to directories we control */
1287     if (getuid () != 0)
1288     {
1289         g_free (default_log_dir);
1290         default_log_dir = g_build_filename (g_get_user_cache_dir (), "lightdm", "log", NULL);
1291         g_free (default_run_dir);
1292         default_run_dir = g_build_filename (g_get_user_cache_dir (), "lightdm", "run", NULL);
1293         g_free (default_cache_dir);
1294         default_cache_dir = g_build_filename (g_get_user_cache_dir (), "lightdm", "cache", NULL);
1295     }
1296
1297     /* Load config file(s) */
1298     if (!config_load_from_standard_locations (config_get_instance (), config_path, &messages))
1299         exit (EXIT_FAILURE);
1300     g_free (config_path);
1301
1302     /* Set default values */
1303     if (!config_has_key (config_get_instance (), "LightDM", "start-default-seat"))
1304         config_set_boolean (config_get_instance (), "LightDM", "start-default-seat", TRUE);
1305     if (!config_has_key (config_get_instance (), "LightDM", "minimum-vt"))
1306         config_set_integer (config_get_instance (), "LightDM", "minimum-vt", 7);
1307     if (!config_has_key (config_get_instance (), "LightDM", "guest-account-script"))
1308         config_set_string (config_get_instance (), "LightDM", "guest-account-script", "guest-account");
1309     if (!config_has_key (config_get_instance (), "LightDM", "greeter-user"))
1310         config_set_string (config_get_instance (), "LightDM", "greeter-user", GREETER_USER);
1311     if (!config_has_key (config_get_instance (), "LightDM", "lock-memory"))
1312         config_set_boolean (config_get_instance (), "LightDM", "lock-memory", TRUE);
1313     if (!config_has_key (config_get_instance (), "SeatDefaults", "type"))
1314         config_set_string (config_get_instance (), "SeatDefaults", "type", "xlocal");
1315     if (!config_has_key (config_get_instance (), "SeatDefaults", "pam-service"))
1316         config_set_string (config_get_instance (), "SeatDefaults", "pam-service", "lightdm");
1317     if (!config_has_key (config_get_instance (), "SeatDefaults", "pam-autologin-service"))
1318         config_set_string (config_get_instance (), "SeatDefaults", "pam-autologin-service", "lightdm-autologin");
1319     if (!config_has_key (config_get_instance (), "SeatDefaults", "pam-greeter-service"))
1320         config_set_string (config_get_instance (), "SeatDefaults", "pam-greeter-service", "lightdm-greeter");
1321     if (!config_has_key (config_get_instance (), "SeatDefaults", "xserver-command"))
1322         config_set_string (config_get_instance (), "SeatDefaults", "xserver-command", "X");
1323     if (!config_has_key (config_get_instance (), "SeatDefaults", "xserver-share"))
1324         config_set_boolean (config_get_instance (), "SeatDefaults", "xserver-share", TRUE);
1325     if (!config_has_key (config_get_instance (), "SeatDefaults", "unity-compositor-command"))
1326         config_set_string (config_get_instance (), "SeatDefaults", "unity-compositor-command", "unity-system-compositor");
1327     if (!config_has_key (config_get_instance (), "SeatDefaults", "start-session"))
1328         config_set_boolean (config_get_instance (), "SeatDefaults", "start-session", TRUE);
1329     if (!config_has_key (config_get_instance (), "SeatDefaults", "allow-user-switching"))
1330         config_set_boolean (config_get_instance (), "SeatDefaults", "allow-user-switching", TRUE);
1331     if (!config_has_key (config_get_instance (), "SeatDefaults", "allow-guest"))
1332         config_set_boolean (config_get_instance (), "SeatDefaults", "allow-guest", TRUE);
1333     if (!config_has_key (config_get_instance (), "SeatDefaults", "greeter-allow-guest"))
1334         config_set_boolean (config_get_instance (), "SeatDefaults", "greeter-allow-guest", TRUE);
1335     if (!config_has_key (config_get_instance (), "SeatDefaults", "greeter-show-remote-login"))
1336         config_set_boolean (config_get_instance (), "SeatDefaults", "greeter-show-remote-login", TRUE);
1337     if (!config_has_key (config_get_instance (), "SeatDefaults", "greeter-session"))
1338         config_set_string (config_get_instance (), "SeatDefaults", "greeter-session", GREETER_SESSION);
1339     if (!config_has_key (config_get_instance (), "SeatDefaults", "user-session"))
1340         config_set_string (config_get_instance (), "SeatDefaults", "user-session", USER_SESSION);
1341     if (!config_has_key (config_get_instance (), "SeatDefaults", "session-wrapper"))
1342         config_set_string (config_get_instance (), "SeatDefaults", "session-wrapper", "lightdm-session");
1343     if (!config_has_key (config_get_instance (), "LightDM", "log-directory"))
1344         config_set_string (config_get_instance (), "LightDM", "log-directory", default_log_dir);
1345     g_free (default_log_dir);
1346     if (!config_has_key (config_get_instance (), "LightDM", "run-directory"))
1347         config_set_string (config_get_instance (), "LightDM", "run-directory", default_run_dir);
1348     g_free (default_run_dir);
1349     if (!config_has_key (config_get_instance (), "LightDM", "cache-directory"))
1350         config_set_string (config_get_instance (), "LightDM", "cache-directory", default_cache_dir);
1351     g_free (default_cache_dir);
1352     if (!config_has_key (config_get_instance (), "LightDM", "sessions-directory"))
1353         config_set_string (config_get_instance (), "LightDM", "sessions-directory", SESSIONS_DIR);
1354     if (!config_has_key (config_get_instance (), "LightDM", "remote-sessions-directory"))
1355         config_set_string (config_get_instance (), "LightDM", "remote-sessions-directory", REMOTE_SESSIONS_DIR);
1356     if (!config_has_key (config_get_instance (), "LightDM", "greeters-directory"))
1357         config_set_string (config_get_instance (), "LightDM", "greeters-directory", GREETERS_DIR);
1358
1359     /* Override defaults */
1360     if (log_dir)
1361         config_set_string (config_get_instance (), "LightDM", "log-directory", log_dir);
1362     g_free (log_dir);
1363     if (run_dir)
1364         config_set_string (config_get_instance (), "LightDM", "run-directory", run_dir);
1365     g_free (run_dir);
1366     if (cache_dir)
1367         config_set_string (config_get_instance (), "LightDM", "cache-directory", cache_dir);
1368     g_free (cache_dir);
1369
1370     /* Create run and cache directories */
1371     dir = config_get_string (config_get_instance (), "LightDM", "log-directory");
1372     if (g_mkdir_with_parents (dir, S_IRWXU | S_IXGRP | S_IXOTH) < 0)
1373         g_warning ("Failed to make log directory %s: %s", dir, strerror (errno));
1374     g_free (dir);
1375     dir = config_get_string (config_get_instance (), "LightDM", "run-directory");
1376     if (g_mkdir_with_parents (dir, S_IRWXU | S_IXGRP | S_IXOTH) < 0)
1377         g_warning ("Failed to make run directory %s: %s", dir, strerror (errno));
1378     g_free (dir);
1379     dir = config_get_string (config_get_instance (), "LightDM", "cache-directory");
1380     if (g_mkdir_with_parents (dir, S_IRWXU | S_IXGRP | S_IXOTH) < 0)
1381         g_warning ("Failed to make cache directory %s: %s", dir, strerror (errno));
1382     g_free (dir);
1383
1384     log_init ();
1385
1386     /* Show queued messages once logging is complete */
1387     for (link = messages; link; link = link->next)
1388         g_debug ("%s", (gchar *)link->data);
1389     g_list_free_full (messages, g_free);
1390
1391     g_debug ("Using D-Bus name %s", LIGHTDM_BUS_NAME);
1392     bus_id = g_bus_own_name (getuid () == 0 ? G_BUS_TYPE_SYSTEM : G_BUS_TYPE_SESSION,
1393                              LIGHTDM_BUS_NAME,
1394                              G_BUS_NAME_OWNER_FLAGS_NONE,
1395                              bus_acquired_cb,
1396                              NULL,
1397                              name_lost_cb,
1398                              NULL,
1399                              NULL);
1400
1401     if (getuid () != 0)
1402         g_debug ("Running in user mode");
1403     if (getenv ("DISPLAY"))
1404         g_debug ("Using Xephyr for X servers");
1405
1406     display_manager = display_manager_new ();
1407     g_signal_connect (display_manager, "stopped", G_CALLBACK (display_manager_stopped_cb), NULL);
1408     g_signal_connect (display_manager, "seat-removed", G_CALLBACK (display_manager_seat_removed_cb), NULL);
1409
1410     shared_data_manager_start (shared_data_manager_get_instance ());
1411
1412     /* Connect to logind */
1413     if (login1_service_connect (login1_service_get_instance ()))
1414     {
1415         /* Load dynamic seats from logind */
1416         g_debug ("Monitoring logind for seats");
1417
1418         if (config_get_boolean (config_get_instance (), "LightDM", "start-default-seat"))
1419         {
1420             g_signal_connect (login1_service_get_instance (), "seat-added", G_CALLBACK (login1_service_seat_added_cb), NULL);
1421             g_signal_connect (login1_service_get_instance (), "seat-removed", G_CALLBACK (login1_service_seat_removed_cb), NULL);
1422
1423             for (link = login1_service_get_seats (login1_service_get_instance ()); link; link = link->next)
1424             {
1425                 Login1Seat *login1_seat = link->data;
1426                 if (config_get_boolean (config_get_instance (), "LightDM", "logind-check-graphical"))
1427                     g_signal_connect (login1_seat, "can-graphical-changed", G_CALLBACK (login1_can_graphical_changed_cb), NULL);
1428                 if (!update_login1_seat (login1_seat))
1429                     return EXIT_FAILURE;
1430             }
1431         }
1432     }
1433     else
1434     {
1435         if (config_get_boolean (config_get_instance (), "LightDM", "start-default-seat"))
1436         {
1437             gchar **types;
1438             gchar **type;
1439             Seat *seat = NULL;
1440
1441             g_debug ("Adding default seat");
1442
1443             types = config_get_string_list (config_get_instance (), "SeatDefaults", "type");
1444             for (type = types; type && *type; type++)
1445             {
1446                 seat = seat_new (*type, "seat0");
1447                 if (seat)
1448                     break;
1449             }
1450             g_strfreev (types);
1451             if (seat)
1452             {
1453                 set_seat_properties (seat, NULL);
1454                 seat_set_property (seat, "exit-on-failure", "true");
1455                 if (!display_manager_add_seat (display_manager, seat))
1456                     return EXIT_FAILURE;
1457                 g_object_unref (seat);
1458             }
1459             else
1460             {
1461                 g_warning ("Failed to create default seat");
1462                 return EXIT_FAILURE;
1463             }
1464         }
1465     }
1466
1467     g_main_loop_run (loop);
1468
1469     /* Clean up shared data manager */
1470     shared_data_manager_cleanup ();
1471
1472     /* Clean up user list */
1473     common_user_list_cleanup ();
1474
1475     /* Clean up display manager */
1476     g_object_unref (display_manager);
1477     display_manager = NULL;
1478
1479     /* Remove D-Bus interface */
1480     g_dbus_connection_unregister_object (bus, reg_id);
1481     g_bus_unown_name (bus_id);
1482     if (seat_bus_entries)
1483         g_hash_table_unref (seat_bus_entries);
1484     if (session_bus_entries)
1485         g_hash_table_unref (session_bus_entries);
1486
1487     g_debug ("Exiting with return value %d", exit_code);
1488     return exit_code;
1489 }