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