]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/lightdm.c
Fix configuration loading with new [Seat:*] section
[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     /* Load seat defaults first and support old method of [SeatDefaults] */
157     config_sections = g_list_append (config_sections, g_strdup ("Seat:*"));
158     config_sections = g_list_append (config_sections, g_strdup ("SeatDefaults"));
159
160     groups = config_get_groups (config_get_instance ());
161     for (i = groups; *i; i++)
162     {
163         if (g_str_has_prefix (*i, "Seat:") && strcmp (*i, "Seat:*") != 0)
164         {
165             const gchar *seat_name_glob = *i + strlen ("Seat:");
166             if (g_pattern_match_simple (seat_name_glob, seat_name ? seat_name : ""))
167                 config_sections = g_list_append (config_sections, g_strdup (*i));
168         }
169     }
170     g_strfreev (groups);
171
172     return config_sections;
173 }
174
175 static void
176 set_seat_properties (Seat *seat, const gchar *seat_name)
177 {
178     GList *sections, *link;
179     gchar **keys;
180     gint i;
181
182     sections = get_config_sections (seat_name);
183     for (link = sections; link; link = link->next)
184     {
185         const gchar *section = link->data;
186         keys = config_get_keys (config_get_instance (), section);
187
188         l_debug (seat, "Loading properties from config section %s", 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_free (entry->path);
615     g_free (entry);
616 }
617
618 static void
619 session_bus_entry_free (gpointer data)
620 {
621     SessionBusEntry *entry = data;
622
623     g_free (entry->path);
624     g_free (entry->seat_path);
625     g_free (entry);
626 }
627
628 static void
629 running_user_session_cb (Seat *seat, Session *session)
630 {
631     static const GDBusInterfaceVTable session_vtable =
632     {
633         handle_session_call,
634         handle_session_get_property
635     };
636     SeatBusEntry *seat_entry;
637     SessionBusEntry *session_entry;
638     gchar *path;
639     GError *error = NULL;
640
641     /* Set environment variables when session runs */
642     seat_entry = g_hash_table_lookup (seat_bus_entries, seat);
643     session_set_env (session, "XDG_SEAT_PATH", seat_entry->path);
644     path = g_strdup_printf ("/org/freedesktop/DisplayManager/Session%d", session_index);
645     session_index++;
646     session_set_env (session, "XDG_SESSION_PATH", path);
647     g_object_set_data_full (G_OBJECT (session), "XDG_SESSION_PATH", path, g_free);
648
649     session_entry = session_bus_entry_new (g_object_get_data (G_OBJECT (session), "XDG_SESSION_PATH"), seat_entry ? seat_entry->path : NULL);
650     g_hash_table_insert (session_bus_entries, g_object_ref (session), session_entry);
651
652     g_debug ("Registering session with bus path %s", session_entry->path);
653
654     session_entry->bus_id = g_dbus_connection_register_object (bus,
655                                                                session_entry->path,
656                                                                session_info->interfaces[0],
657                                                                &session_vtable,
658                                                                g_object_ref (session), g_object_unref,
659                                                                &error);
660     if (session_entry->bus_id == 0)
661         g_warning ("Failed to register user session: %s", error->message);
662     g_clear_error (&error);
663
664     emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Sessions", get_session_list (NULL));
665     emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SessionAdded", session_entry->path);
666
667     emit_object_value_changed (bus, seat_entry->path, "org.freedesktop.DisplayManager.Seat", "Sessions", get_session_list (session_entry->seat_path));
668     emit_object_signal (bus, seat_entry->path, "SessionAdded", session_entry->path);
669 }
670
671 static void
672 session_removed_cb (Seat *seat, Session *session)
673 {
674     SessionBusEntry *entry;
675     gchar *seat_path = NULL;
676
677     g_signal_handlers_disconnect_matched (session, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, seat);
678
679     entry = g_hash_table_lookup (session_bus_entries, session);
680     if (entry)
681     {
682         g_dbus_connection_unregister_object (bus, entry->bus_id);
683         emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SessionRemoved", entry->path);
684         emit_object_signal (bus, entry->seat_path, "SessionRemoved", entry->path);
685         seat_path = g_strdup (entry->seat_path);
686     }
687
688     g_hash_table_remove (session_bus_entries, session);
689
690     if (seat_path)
691     {
692         emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Sessions", get_session_list (NULL));
693         emit_object_value_changed (bus, seat_path, "org.freedesktop.DisplayManager.Seat", "Sessions", get_session_list (seat_path));
694         g_free (seat_path);
695     }
696 }
697
698 static void
699 seat_added_cb (DisplayManager *display_manager, Seat *seat)
700 {
701     static const GDBusInterfaceVTable seat_vtable =
702     {
703         handle_seat_call,
704         handle_seat_get_property
705     };
706     gchar *path;
707     SeatBusEntry *entry;
708     GError *error = NULL;
709
710     path = g_strdup_printf ("/org/freedesktop/DisplayManager/Seat%d", seat_index);
711     seat_index++;
712
713     entry = seat_bus_entry_new (path);
714     g_free (path);
715     g_hash_table_insert (seat_bus_entries, g_object_ref (seat), entry);
716
717     g_debug ("Registering seat with bus path %s", entry->path);
718
719     entry->bus_id = g_dbus_connection_register_object (bus,
720                                                        entry->path,
721                                                        seat_info->interfaces[0],
722                                                        &seat_vtable,
723                                                        g_object_ref (seat), g_object_unref,
724                                                        &error);
725     if (entry->bus_id == 0)
726         g_warning ("Failed to register seat: %s", error->message);
727     g_clear_error (&error);
728
729     emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Seats", get_seat_list ());
730     emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SeatAdded", entry->path);
731
732     g_signal_connect (seat, SEAT_SIGNAL_RUNNING_USER_SESSION, G_CALLBACK (running_user_session_cb), NULL);
733     g_signal_connect (seat, SEAT_SIGNAL_SESSION_REMOVED, G_CALLBACK (session_removed_cb), NULL);
734 }
735
736 static void
737 seat_removed_cb (DisplayManager *display_manager, Seat *seat)
738 {
739     SeatBusEntry *entry;
740
741     entry = g_hash_table_lookup (seat_bus_entries, seat);
742     if (entry)
743     {
744         g_dbus_connection_unregister_object (bus, entry->bus_id);
745         emit_object_signal (bus, "/org/freedesktop/DisplayManager", "SeatRemoved", entry->path);
746     }
747
748     g_hash_table_remove (seat_bus_entries, seat);
749   
750     emit_object_value_changed (bus, "/org/freedesktop/DisplayManager", "org.freedesktop.DisplayManager", "Seats", get_seat_list ());
751 }
752
753 static gboolean
754 xdmcp_session_cb (XDMCPServer *server, XDMCPSession *session)
755 {
756     SeatXDMCPSession *seat;
757     gboolean result;
758
759     seat = seat_xdmcp_session_new (session);
760     set_seat_properties (SEAT (seat), NULL);
761     result = display_manager_add_seat (display_manager, SEAT (seat));
762     g_object_unref (seat);
763
764     return result;
765 }
766
767 static void
768 vnc_connection_cb (VNCServer *server, GSocket *connection)
769 {
770     SeatXVNC *seat;
771
772     seat = seat_xvnc_new (connection);
773     set_seat_properties (SEAT (seat), NULL);
774     display_manager_add_seat (display_manager, SEAT (seat));
775     g_object_unref (seat);
776 }
777
778 static void
779 bus_acquired_cb (GDBusConnection *connection,
780                  const gchar     *name,
781                  gpointer         user_data)
782 {
783     const gchar *display_manager_interface =
784         "<node>"
785         "  <interface name='org.freedesktop.DisplayManager'>"
786         "    <property name='Seats' type='ao' access='read'/>"
787         "    <property name='Sessions' type='ao' access='read'/>"
788         "    <method name='AddSeat'>"
789         "      <arg name='type' direction='in' type='s'/>"
790         "      <arg name='properties' direction='in' type='a(ss)'/>"
791         "      <arg name='seat' direction='out' type='o'/>"
792         "    </method>"
793         "    <method name='AddLocalXSeat'>"
794         "      <arg name='display-number' direction='in' type='i'/>"
795         "      <arg name='seat' direction='out' type='o'/>"
796         "    </method>"
797         "    <signal name='SeatAdded'>"
798         "      <arg name='seat' type='o'/>"
799         "    </signal>"
800         "    <signal name='SeatRemoved'>"
801         "      <arg name='seat' type='o'/>"
802         "    </signal>"
803         "    <signal name='SessionAdded'>"
804         "      <arg name='session' type='o'/>"
805         "    </signal>"
806         "    <signal name='SessionRemoved'>"
807         "      <arg name='session' type='o'/>"
808         "    </signal>"
809         "  </interface>"
810         "</node>";
811     static const GDBusInterfaceVTable display_manager_vtable =
812     {
813         handle_display_manager_call,
814         handle_display_manager_get_property
815     };
816     const gchar *seat_interface =
817         "<node>"
818         "  <interface name='org.freedesktop.DisplayManager.Seat'>"
819         "    <property name='CanSwitch' type='b' access='read'/>"
820         "    <property name='HasGuestAccount' type='b' access='read'/>"
821         "    <property name='Sessions' type='ao' access='read'/>"
822         "    <method name='SwitchToGreeter'/>"
823         "    <method name='SwitchToUser'>"
824         "      <arg name='username' direction='in' type='s'/>"
825         "      <arg name='session-name' direction='in' type='s'/>"
826         "    </method>"
827         "    <method name='SwitchToGuest'>"
828         "      <arg name='session-name' direction='in' type='s'/>"
829         "    </method>"
830         "    <method name='Lock'/>"
831         "    <signal name='SessionAdded'>"
832         "      <arg name='session' type='o'/>"
833         "    </signal>"
834         "    <signal name='SessionRemoved'>"
835         "      <arg name='session' type='o'/>"
836         "    </signal>"
837         "  </interface>"
838         "</node>";
839     const gchar *session_interface =
840         "<node>"
841         "  <interface name='org.freedesktop.DisplayManager.Session'>"
842         "    <property name='Seat' type='o' access='read'/>"
843         "    <property name='UserName' type='s' access='read'/>"
844         "    <method name='Lock'/>"
845         "  </interface>"
846         "</node>";
847     GDBusNodeInfo *display_manager_info;
848     GList *link;
849     GError *error = NULL;
850
851     g_debug ("Acquired bus name %s", name);
852
853     bus = connection;
854
855     display_manager_info = g_dbus_node_info_new_for_xml (display_manager_interface, NULL);
856     g_assert (display_manager_info != NULL);
857     seat_info = g_dbus_node_info_new_for_xml (seat_interface, NULL);
858     g_assert (seat_info != NULL);
859     session_info = g_dbus_node_info_new_for_xml (session_interface, NULL);
860     g_assert (session_info != NULL);
861
862     reg_id = g_dbus_connection_register_object (connection,
863                                                 "/org/freedesktop/DisplayManager",
864                                                 display_manager_info->interfaces[0],
865                                                 &display_manager_vtable,
866                                                 NULL, NULL,
867                                                 &error);
868     if (reg_id == 0)
869         g_warning ("Failed to register display manager: %s", error->message);
870     g_clear_error (&error);
871     g_dbus_node_info_unref (display_manager_info);
872
873     seat_bus_entries = g_hash_table_new_full (g_direct_hash, g_direct_equal, g_object_unref, seat_bus_entry_free);
874     session_bus_entries = g_hash_table_new_full (g_direct_hash, g_direct_equal, g_object_unref, session_bus_entry_free);
875
876     g_signal_connect (display_manager, DISPLAY_MANAGER_SIGNAL_SEAT_ADDED, G_CALLBACK (seat_added_cb), NULL);
877     g_signal_connect (display_manager, DISPLAY_MANAGER_SIGNAL_SEAT_REMOVED, G_CALLBACK (seat_removed_cb), NULL);
878     for (link = display_manager_get_seats (display_manager); link; link = link->next)
879         seat_added_cb (display_manager, (Seat *) link->data);
880
881     display_manager_start (display_manager);
882
883     /* Start the XDMCP server */
884     if (config_get_boolean (config_get_instance (), "XDMCPServer", "enabled"))
885     {
886         gchar *key_name, *key = NULL;
887
888         xdmcp_server = xdmcp_server_new ();
889         if (config_has_key (config_get_instance (), "XDMCPServer", "port"))
890         {
891             gint port;
892             port = config_get_integer (config_get_instance (), "XDMCPServer", "port");
893             if (port > 0)
894                 xdmcp_server_set_port (xdmcp_server, port);
895         }
896         g_signal_connect (xdmcp_server, XDMCP_SERVER_SIGNAL_NEW_SESSION, G_CALLBACK (xdmcp_session_cb), NULL);
897
898         key_name = config_get_string (config_get_instance (), "XDMCPServer", "key");
899         if (key_name)
900         {
901             gchar *path;
902             GKeyFile *keys;
903             gboolean result;
904             GError *error = NULL;
905
906             path = g_build_filename (config_get_directory (config_get_instance ()), "keys.conf", NULL);
907
908             keys = g_key_file_new ();
909             result = g_key_file_load_from_file (keys, path, G_KEY_FILE_NONE, &error);
910             if (error)
911                 g_debug ("Error getting key %s", error->message);
912             g_clear_error (&error);
913
914             if (result)
915             {
916                 if (g_key_file_has_key (keys, "keyring", key_name, NULL))
917                     key = g_key_file_get_string (keys, "keyring", key_name, NULL);
918                 else
919                     g_debug ("Key %s not defined", key_name);
920             }
921             g_free (path);
922             g_key_file_free (keys);
923         }
924         if (key)
925             xdmcp_server_set_key (xdmcp_server, key);
926         g_free (key_name);
927         g_free (key);
928
929         g_debug ("Starting XDMCP server on UDP/IP port %d", xdmcp_server_get_port (xdmcp_server));
930         xdmcp_server_start (xdmcp_server);
931     }
932
933     /* Start the VNC server */
934     if (config_get_boolean (config_get_instance (), "VNCServer", "enabled"))
935     {
936         gchar *path;
937
938         path = g_find_program_in_path ("Xvnc");
939         if (path)
940         {
941             vnc_server = vnc_server_new ();
942             if (config_has_key (config_get_instance (), "VNCServer", "port"))
943             {
944                 gint port;
945                 port = config_get_integer (config_get_instance (), "VNCServer", "port");
946                 if (port > 0)
947                     vnc_server_set_port (vnc_server, port);
948             }
949             g_signal_connect (vnc_server, VNC_SERVER_SIGNAL_NEW_CONNECTION, G_CALLBACK (vnc_connection_cb), NULL);
950
951             g_debug ("Starting VNC server on TCP/IP port %d", vnc_server_get_port (vnc_server));
952             vnc_server_start (vnc_server);
953
954             g_free (path);
955         }
956         else
957             g_warning ("Can't start VNC server, Xvnc is not in the path");
958     }
959 }
960
961 static void
962 name_lost_cb (GDBusConnection *connection,
963               const gchar *name,
964               gpointer user_data)
965 {
966     if (connection)
967         g_printerr ("Failed to use bus name " LIGHTDM_BUS_NAME ", do you have appropriate permissions?\n");
968     else
969         g_printerr ("Failed to get D-Bus connection\n");
970
971     exit (EXIT_FAILURE);
972 }
973
974 static gboolean
975 add_login1_seat (Login1Seat *login1_seat)
976 {
977     const gchar *seat_name = login1_seat_get_id (login1_seat);
978     gchar **types = NULL, **type;
979     GList *config_sections = NULL, *link;
980     Seat *seat = NULL;
981     gboolean is_seat0, started = FALSE;
982
983     g_debug ("New seat added from logind: %s", seat_name);
984     is_seat0 = strcmp (seat_name, "seat0") == 0;
985
986     config_sections = get_config_sections (seat_name);
987     for (link = g_list_last (config_sections); link; link = link->prev)
988     {
989         gchar *config_section = link->data;
990         types = config_get_string_list (config_get_instance (), config_section, "type");
991         if (types)
992             break;
993     }
994     g_list_free_full (config_sections, g_free);
995
996     for (type = types; !seat && type && *type; type++)
997         seat = seat_new (*type, seat_name);
998     g_strfreev (types);
999
1000     if (seat)
1001     {
1002         set_seat_properties (seat, seat_name);
1003
1004         if (!login1_seat_get_can_multi_session (login1_seat))
1005         {
1006             g_debug ("Seat %s has property CanMultiSession=no", seat_name);
1007             /* XXX: uncomment this line after bug #1371250 is closed.
1008             seat_set_property (seat, "allow-user-switching", "false"); */
1009         }
1010
1011         if (is_seat0)
1012             seat_set_property (seat, "exit-on-failure", "true");
1013     }
1014     else
1015         g_debug ("Unable to create seat: %s", seat_name);
1016
1017     if (seat)
1018     {
1019         started = display_manager_add_seat (display_manager, seat);
1020         if (!started)
1021             g_debug ("Failed to start seat: %s", seat_name);
1022     }
1023
1024     g_object_unref (seat);
1025
1026     return started;
1027 }
1028
1029 static void
1030 remove_login1_seat (Login1Seat *login1_seat)
1031 {
1032     Seat *seat;
1033
1034     seat = display_manager_get_seat (display_manager, login1_seat_get_id (login1_seat));
1035     if (seat)
1036         seat_stop (seat);
1037 }
1038
1039 static void
1040 seat_stopped_cb (Seat *seat, Login1Seat *login1_seat)
1041 {
1042     update_login1_seat (login1_seat);
1043     g_signal_handlers_disconnect_matched (seat, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, login1_seat);
1044 }
1045
1046 static gboolean
1047 update_login1_seat (Login1Seat *login1_seat)
1048 {
1049     if (!config_get_boolean (config_get_instance (), "LightDM", "logind-check-graphical") ||
1050         login1_seat_get_can_graphical (login1_seat))
1051     {
1052         Seat *seat;
1053
1054         /* Wait for existing seat to stop or ignore if we already have a valid seat */
1055         seat = display_manager_get_seat (display_manager, login1_seat_get_id (login1_seat));
1056         if (seat)
1057         {
1058             if (seat_get_is_stopping (seat))
1059                 g_signal_connect (seat, SEAT_SIGNAL_STOPPED, G_CALLBACK (seat_stopped_cb), login1_seat);
1060             return TRUE;
1061         }
1062
1063         return add_login1_seat (login1_seat);
1064     }
1065     else
1066     {
1067         remove_login1_seat (login1_seat);
1068         return TRUE;
1069     }
1070 }
1071
1072 static void
1073 login1_can_graphical_changed_cb (Login1Seat *login1_seat)
1074 {
1075     g_debug ("Seat %s changes graphical state to %s", login1_seat_get_id (login1_seat), login1_seat_get_can_graphical (login1_seat) ? "true" : "false");
1076     update_login1_seat (login1_seat);
1077 }
1078
1079 static void
1080 login1_active_session_changed_cb (Login1Seat *login1_seat, const gchar *login1_session_id)
1081 {
1082     g_debug ("Seat %s changes active session to %s", login1_seat_get_id (login1_seat), login1_session_id);
1083
1084     Seat *seat;
1085     seat = display_manager_get_seat (display_manager, login1_seat_get_id (login1_seat));
1086
1087     if (seat)
1088     {
1089         Session *active_session;
1090         active_session = seat_get_expected_active_session (seat);
1091
1092         if (g_strcmp0 (login1_session_id, session_get_login1_session_id (active_session)) == 0)
1093         {
1094             // Session is already active
1095             g_debug ("Session %s is already active", login1_session_id);
1096             return;
1097         }
1098
1099         active_session = seat_find_session_by_login1_id (seat, login1_session_id);
1100         if (active_session != NULL)
1101         {
1102             g_debug ("Activating session %s", login1_session_id);
1103             seat_set_externally_activated_session (seat, active_session);
1104             return;
1105
1106         }
1107     }
1108 }
1109
1110 static gboolean
1111 login1_add_seat (Login1Seat *login1_seat)
1112 {
1113     if (config_get_boolean (config_get_instance (), "LightDM", "logind-check-graphical"))
1114         g_signal_connect (login1_seat, "can-graphical-changed", G_CALLBACK (login1_can_graphical_changed_cb), NULL);
1115
1116     g_signal_connect (login1_seat, LOGIN1_SIGNAL_ACTIVE_SESION_CHANGED, G_CALLBACK (login1_active_session_changed_cb), NULL);
1117
1118     return update_login1_seat (login1_seat);
1119 }
1120
1121 static void
1122 login1_service_seat_added_cb (Login1Service *service, Login1Seat *login1_seat)
1123 {
1124     if (login1_seat_get_can_graphical (login1_seat))
1125         g_debug ("Seat %s added from logind", login1_seat_get_id (login1_seat));
1126     else
1127         g_debug ("Seat %s added from logind without graphical output", login1_seat_get_id (login1_seat));
1128
1129     login1_add_seat (login1_seat);
1130 }
1131
1132 static void
1133 login1_service_seat_removed_cb (Login1Service *service, Login1Seat *login1_seat)
1134 {
1135     g_debug ("Seat %s removed from logind", login1_seat_get_id (login1_seat));
1136     g_signal_handlers_disconnect_matched (login1_seat, G_SIGNAL_MATCH_FUNC, 0, 0, NULL, login1_can_graphical_changed_cb, NULL);
1137     g_signal_handlers_disconnect_matched (login1_seat, G_SIGNAL_MATCH_FUNC, 0, 0, NULL, login1_active_session_changed_cb, NULL);
1138     remove_login1_seat (login1_seat);
1139 }
1140
1141 int
1142 main (int argc, char **argv)
1143 {
1144     FILE *pid_file;
1145     GOptionContext *option_context;
1146     gboolean result;
1147     gchar *dir;
1148     gboolean test_mode = FALSE;
1149     gchar *pid_path = "/var/run/lightdm.pid";
1150     gchar *log_dir = NULL;
1151     gchar *run_dir = NULL;
1152     gchar *cache_dir = NULL;
1153     gchar *default_log_dir = g_strdup (LOG_DIR);
1154     gchar *default_run_dir = g_strdup (RUN_DIR);
1155     gchar *default_cache_dir = g_strdup (CACHE_DIR);
1156     gboolean show_config = FALSE, show_version = FALSE;
1157     GList *link, *messages = NULL;
1158     GOptionEntry options[] =
1159     {
1160         { "config", 'c', 0, G_OPTION_ARG_STRING, &config_path,
1161           /* Help string for command line --config flag */
1162           N_("Use configuration file"), "FILE" },
1163         { "debug", 'd', 0, G_OPTION_ARG_NONE, &debug,
1164           /* Help string for command line --debug flag */
1165           N_("Print debugging messages"), NULL },
1166         { "test-mode", 0, 0, G_OPTION_ARG_NONE, &test_mode,
1167           /* Help string for command line --test-mode flag */
1168           N_("Run as unprivileged user, skipping things that require root access"), NULL },
1169         { "pid-file", 0, 0, G_OPTION_ARG_STRING, &pid_path,
1170           /* Help string for command line --pid-file flag */
1171           N_("File to write PID into"), "FILE" },
1172         { "log-dir", 0, 0, G_OPTION_ARG_STRING, &log_dir,
1173           /* Help string for command line --log-dir flag */
1174           N_("Directory to write logs to"), "DIRECTORY" },
1175         { "run-dir", 0, 0, G_OPTION_ARG_STRING, &run_dir,
1176           /* Help string for command line --run-dir flag */
1177           N_("Directory to store running state"), "DIRECTORY" },
1178         { "cache-dir", 0, 0, G_OPTION_ARG_STRING, &cache_dir,
1179           /* Help string for command line --cache-dir flag */
1180           N_("Directory to cache information"), "DIRECTORY" },
1181         { "show-config", 0, 0, G_OPTION_ARG_NONE, &show_config,
1182           /* Help string for command line --show-config flag */
1183           N_("Show combined configuration"), NULL },
1184         { "version", 'v', 0, G_OPTION_ARG_NONE, &show_version,
1185           /* Help string for command line --version flag */
1186           N_("Show release version"), NULL },
1187         { NULL }
1188     };
1189     GError *error = NULL;
1190
1191     /* When lightdm starts sessions it needs to run itself in a new mode */
1192     if (argc >= 2 && strcmp (argv[1], "--session-child") == 0)
1193         return session_child_run (argc, argv);
1194
1195 #if !defined(GLIB_VERSION_2_36)
1196     g_type_init ();
1197 #endif
1198     loop = g_main_loop_new (NULL, FALSE);
1199
1200     messages = g_list_append (messages, g_strdup_printf ("Starting Light Display Manager %s, UID=%i PID=%i", VERSION, getuid (), getpid ()));
1201
1202     g_signal_connect (process_get_current (), PROCESS_SIGNAL_GOT_SIGNAL, G_CALLBACK (signal_cb), NULL);
1203
1204     option_context = g_option_context_new (/* Arguments and description for --help test */
1205                                            _("- Display Manager"));
1206     g_option_context_add_main_entries (option_context, options, GETTEXT_PACKAGE);
1207     result = g_option_context_parse (option_context, &argc, &argv, &error);
1208     if (error)
1209         g_printerr ("%s\n", error->message);
1210     g_clear_error (&error);
1211     g_option_context_free (option_context);
1212     if (!result)
1213     {
1214         g_printerr (/* Text printed out when an unknown command-line argument provided */
1215                     _("Run '%s --help' to see a full list of available command line options."), argv[0]);
1216         g_printerr ("\n");
1217         return EXIT_FAILURE;
1218     }
1219
1220     /* Show combined configuration if user requested it */
1221     if (show_config)
1222     {
1223         GList *sources, *link;
1224         gchar **groups, *last_source, *empty_source;
1225         GHashTable *source_ids;
1226         int i;
1227
1228         if (!config_load_from_standard_locations (config_get_instance (), config_path, NULL))
1229             return EXIT_FAILURE;
1230
1231         /* Number sources */
1232         sources = config_get_sources (config_get_instance ());
1233         source_ids = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
1234         last_source = "";
1235         for (i = 0, link = sources; link; i++, link = link->next)
1236         {
1237             gchar *path, *id;
1238
1239             path = link->data;
1240             if (i < 26)
1241                 id = g_strdup_printf ("%c", 'A' + i);
1242             else
1243                 id = g_strdup_printf ("%d", i);
1244             g_hash_table_insert (source_ids, g_strdup (path), id);
1245             last_source = id;
1246         }
1247         empty_source = g_strdup (last_source);
1248         for (i = 0; empty_source[i] != '\0'; i++)
1249             empty_source[i] = ' ';
1250
1251         /* Print out keys */
1252         groups = config_get_groups (config_get_instance ());
1253         for (i = 0; groups[i]; i++)
1254         {
1255             gchar **keys;
1256             int j;
1257
1258             if (i != 0)
1259                 g_printerr ("\n");
1260             g_printerr ("%s  [%s]\n", empty_source, groups[i]);
1261
1262             keys = config_get_keys (config_get_instance (), groups[i]);
1263             for (j = 0; keys && keys[j]; j++)
1264             {
1265                 const gchar *source, *id;
1266                 gchar *value;
1267
1268                 source = config_get_source (config_get_instance (), groups[i], keys[j]);
1269                 id = source ? g_hash_table_lookup (source_ids, source) : empty_source;
1270                 value = config_get_string (config_get_instance (), groups[i], keys[j]);
1271                 g_printerr ("%s  %s=%s\n", id, keys[j], value);
1272                 g_free (value);
1273             }
1274
1275             g_strfreev (keys);
1276         }
1277         g_strfreev (groups);
1278
1279         /* Show mapping from source number to path */
1280         g_printerr ("\n");
1281         g_printerr ("Sources:\n");
1282         for (link = sources; link; link = link->next)
1283         {
1284             const gchar *path = link->data;
1285             const gchar *source;
1286
1287             source = g_hash_table_lookup (source_ids, path);
1288             g_printerr ("%s  %s\n", source, path);
1289         }
1290
1291         g_hash_table_destroy (source_ids);
1292
1293         return EXIT_SUCCESS;
1294     }
1295
1296     if (show_version)
1297     {
1298         /* NOTE: Is not translated so can be easily parsed */
1299         g_printerr ("lightdm %s\n", VERSION);
1300         return EXIT_SUCCESS;
1301     }
1302
1303     if (!test_mode && getuid () != 0)
1304     {
1305         g_printerr ("Only root can run Light Display Manager.  To run as a regular user for testing run with the --test-mode flag.\n");
1306         return EXIT_FAILURE;
1307     }
1308
1309     /* If running inside an X server use Xephyr for display */
1310     if (getenv ("DISPLAY") && getuid () != 0)
1311     {
1312         gchar *x_server_path;
1313
1314         x_server_path = g_find_program_in_path ("Xephyr");
1315         if (!x_server_path)
1316         {
1317             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");
1318             return EXIT_FAILURE;
1319         }
1320         g_free (x_server_path);
1321     }
1322
1323     /* Make sure the system binary directory (where the greeters are installed) is in the path */
1324     if (test_mode)
1325     {
1326         const gchar *path = g_getenv ("PATH");
1327         gchar *new_path;
1328
1329         if (path)
1330             new_path = g_strdup_printf ("%s:%s", path, SBIN_DIR);
1331         else
1332             new_path = g_strdup (SBIN_DIR);
1333         g_setenv ("PATH", new_path, TRUE);
1334         g_free (new_path);
1335     }
1336
1337     /* Write PID file */
1338     pid_file = fopen (pid_path, "w");
1339     if (pid_file)
1340     {
1341         fprintf (pid_file, "%d\n", getpid ());
1342         fclose (pid_file);
1343     }
1344
1345     /* If not running as root write output to directories we control */
1346     if (getuid () != 0)
1347     {
1348         g_free (default_log_dir);
1349         default_log_dir = g_build_filename (g_get_user_cache_dir (), "lightdm", "log", NULL);
1350         g_free (default_run_dir);
1351         default_run_dir = g_build_filename (g_get_user_cache_dir (), "lightdm", "run", NULL);
1352         g_free (default_cache_dir);
1353         default_cache_dir = g_build_filename (g_get_user_cache_dir (), "lightdm", "cache", NULL);
1354     }
1355
1356     /* Load config file(s) */
1357     if (!config_load_from_standard_locations (config_get_instance (), config_path, &messages))
1358         exit (EXIT_FAILURE);
1359     g_free (config_path);
1360
1361     /* Set default values */
1362     if (!config_has_key (config_get_instance (), "LightDM", "start-default-seat"))
1363         config_set_boolean (config_get_instance (), "LightDM", "start-default-seat", TRUE);
1364     if (!config_has_key (config_get_instance (), "LightDM", "minimum-vt"))
1365         config_set_integer (config_get_instance (), "LightDM", "minimum-vt", 7);
1366     if (!config_has_key (config_get_instance (), "LightDM", "guest-account-script"))
1367         config_set_string (config_get_instance (), "LightDM", "guest-account-script", "guest-account");
1368     if (!config_has_key (config_get_instance (), "LightDM", "greeter-user"))
1369         config_set_string (config_get_instance (), "LightDM", "greeter-user", GREETER_USER);
1370     if (!config_has_key (config_get_instance (), "LightDM", "lock-memory"))
1371         config_set_boolean (config_get_instance (), "LightDM", "lock-memory", TRUE);
1372     if (!config_has_key (config_get_instance (), "Seat:*", "type"))
1373         config_set_string (config_get_instance (), "Seat:*", "type", "xlocal");
1374     if (!config_has_key (config_get_instance (), "Seat:*", "pam-service"))
1375         config_set_string (config_get_instance (), "Seat:*", "pam-service", "lightdm");
1376     if (!config_has_key (config_get_instance (), "Seat:*", "pam-autologin-service"))
1377         config_set_string (config_get_instance (), "Seat:*", "pam-autologin-service", "lightdm-autologin");
1378     if (!config_has_key (config_get_instance (), "Seat:*", "pam-greeter-service"))
1379         config_set_string (config_get_instance (), "Seat:*", "pam-greeter-service", "lightdm-greeter");
1380     if (!config_has_key (config_get_instance (), "Seat:*", "xserver-command"))
1381         config_set_string (config_get_instance (), "Seat:*", "xserver-command", "X");
1382     if (!config_has_key (config_get_instance (), "Seat:*", "xmir-command"))
1383         config_set_string (config_get_instance (), "Seat:*", "xmir-command", "Xmir");
1384     if (!config_has_key (config_get_instance (), "Seat:*", "xserver-share"))
1385         config_set_boolean (config_get_instance (), "Seat:*", "xserver-share", TRUE);
1386     if (!config_has_key (config_get_instance (), "Seat:*", "unity-compositor-command"))
1387         config_set_string (config_get_instance (), "Seat:*", "unity-compositor-command", "unity-system-compositor");
1388     if (!config_has_key (config_get_instance (), "Seat:*", "start-session"))
1389         config_set_boolean (config_get_instance (), "Seat:*", "start-session", TRUE);
1390     if (!config_has_key (config_get_instance (), "Seat:*", "allow-user-switching"))
1391         config_set_boolean (config_get_instance (), "Seat:*", "allow-user-switching", TRUE);
1392     if (!config_has_key (config_get_instance (), "Seat:*", "allow-guest"))
1393         config_set_boolean (config_get_instance (), "Seat:*", "allow-guest", TRUE);
1394     if (!config_has_key (config_get_instance (), "Seat:*", "greeter-allow-guest"))
1395         config_set_boolean (config_get_instance (), "Seat:*", "greeter-allow-guest", TRUE);
1396     if (!config_has_key (config_get_instance (), "Seat:*", "greeter-show-remote-login"))
1397         config_set_boolean (config_get_instance (), "Seat:*", "greeter-show-remote-login", TRUE);
1398     if (!config_has_key (config_get_instance (), "Seat:*", "greeter-session"))
1399         config_set_string (config_get_instance (), "Seat:*", "greeter-session", GREETER_SESSION);
1400     if (!config_has_key (config_get_instance (), "Seat:*", "user-session"))
1401         config_set_string (config_get_instance (), "Seat:*", "user-session", USER_SESSION);
1402     if (!config_has_key (config_get_instance (), "Seat:*", "session-wrapper"))
1403         config_set_string (config_get_instance (), "Seat:*", "session-wrapper", "lightdm-session");
1404     if (!config_has_key (config_get_instance (), "LightDM", "log-directory"))
1405         config_set_string (config_get_instance (), "LightDM", "log-directory", default_log_dir);
1406     g_free (default_log_dir);
1407     if (!config_has_key (config_get_instance (), "LightDM", "run-directory"))
1408         config_set_string (config_get_instance (), "LightDM", "run-directory", default_run_dir);
1409     g_free (default_run_dir);
1410     if (!config_has_key (config_get_instance (), "LightDM", "cache-directory"))
1411         config_set_string (config_get_instance (), "LightDM", "cache-directory", default_cache_dir);
1412     g_free (default_cache_dir);
1413     if (!config_has_key (config_get_instance (), "LightDM", "sessions-directory"))
1414         config_set_string (config_get_instance (), "LightDM", "sessions-directory", SESSIONS_DIR);
1415     if (!config_has_key (config_get_instance (), "LightDM", "remote-sessions-directory"))
1416         config_set_string (config_get_instance (), "LightDM", "remote-sessions-directory", REMOTE_SESSIONS_DIR);
1417     if (!config_has_key (config_get_instance (), "LightDM", "greeters-directory"))
1418         config_set_string (config_get_instance (), "LightDM", "greeters-directory", GREETERS_DIR);
1419
1420     /* Override defaults */
1421     if (log_dir)
1422         config_set_string (config_get_instance (), "LightDM", "log-directory", log_dir);
1423     g_free (log_dir);
1424     if (run_dir)
1425         config_set_string (config_get_instance (), "LightDM", "run-directory", run_dir);
1426     g_free (run_dir);
1427     if (cache_dir)
1428         config_set_string (config_get_instance (), "LightDM", "cache-directory", cache_dir);
1429     g_free (cache_dir);
1430
1431     /* Create run and cache directories */
1432     dir = config_get_string (config_get_instance (), "LightDM", "log-directory");
1433     if (g_mkdir_with_parents (dir, S_IRWXU | S_IXGRP | S_IXOTH) < 0)
1434         g_warning ("Failed to make log directory %s: %s", dir, strerror (errno));
1435     g_free (dir);
1436     dir = config_get_string (config_get_instance (), "LightDM", "run-directory");
1437     if (g_mkdir_with_parents (dir, S_IRWXU | S_IXGRP | S_IXOTH) < 0)
1438         g_warning ("Failed to make run directory %s: %s", dir, strerror (errno));
1439     g_free (dir);
1440     dir = config_get_string (config_get_instance (), "LightDM", "cache-directory");
1441     if (g_mkdir_with_parents (dir, S_IRWXU | S_IXGRP | S_IXOTH) < 0)
1442         g_warning ("Failed to make cache directory %s: %s", dir, strerror (errno));
1443     g_free (dir);
1444
1445     log_init ();
1446
1447     /* Show queued messages once logging is complete */
1448     for (link = messages; link; link = link->next)
1449         g_debug ("%s", (gchar *)link->data);
1450     g_list_free_full (messages, g_free);
1451
1452     g_debug ("Using D-Bus name %s", LIGHTDM_BUS_NAME);
1453     bus_id = g_bus_own_name (getuid () == 0 ? G_BUS_TYPE_SYSTEM : G_BUS_TYPE_SESSION,
1454                              LIGHTDM_BUS_NAME,
1455                              G_BUS_NAME_OWNER_FLAGS_NONE,
1456                              bus_acquired_cb,
1457                              NULL,
1458                              name_lost_cb,
1459                              NULL,
1460                              NULL);
1461
1462     if (getuid () != 0)
1463         g_debug ("Running in user mode");
1464     if (getenv ("DISPLAY"))
1465         g_debug ("Using Xephyr for X servers");
1466
1467     display_manager = display_manager_new ();
1468     g_signal_connect (display_manager, DISPLAY_MANAGER_SIGNAL_STOPPED, G_CALLBACK (display_manager_stopped_cb), NULL);
1469     g_signal_connect (display_manager, DISPLAY_MANAGER_SIGNAL_SEAT_REMOVED, G_CALLBACK (display_manager_seat_removed_cb), NULL);
1470
1471     shared_data_manager_start (shared_data_manager_get_instance ());
1472
1473     /* Connect to logind */
1474     if (login1_service_connect (login1_service_get_instance ()))
1475     {
1476         /* Load dynamic seats from logind */
1477         g_debug ("Monitoring logind for seats");
1478
1479         if (config_get_boolean (config_get_instance (), "LightDM", "start-default-seat"))
1480         {
1481             g_signal_connect (login1_service_get_instance (), LOGIN1_SERVICE_SIGNAL_SEAT_ADDED, G_CALLBACK (login1_service_seat_added_cb), NULL);
1482             g_signal_connect (login1_service_get_instance (), LOGIN1_SERVICE_SIGNAL_SEAT_REMOVED, G_CALLBACK (login1_service_seat_removed_cb), NULL);
1483
1484             for (link = login1_service_get_seats (login1_service_get_instance ()); link; link = link->next)
1485             {
1486                 Login1Seat *login1_seat = link->data;
1487                 if (!login1_add_seat (login1_seat))
1488                     return EXIT_FAILURE;
1489             }
1490         }
1491     }
1492     else
1493     {
1494         if (config_get_boolean (config_get_instance (), "LightDM", "start-default-seat"))
1495         {
1496             gchar **types;
1497             gchar **type;
1498             Seat *seat = NULL;
1499
1500             g_debug ("Adding default seat");
1501
1502             types = config_get_string_list (config_get_instance (), "Seat:*", "type");
1503             for (type = types; type && *type; type++)
1504             {
1505                 seat = seat_new (*type, "seat0");
1506                 if (seat)
1507                     break;
1508             }
1509             g_strfreev (types);
1510             if (seat)
1511             {
1512                 set_seat_properties (seat, NULL);
1513                 seat_set_property (seat, "exit-on-failure", "true");
1514                 if (!display_manager_add_seat (display_manager, seat))
1515                     return EXIT_FAILURE;
1516                 g_object_unref (seat);
1517             }
1518             else
1519             {
1520                 g_warning ("Failed to create default seat");
1521                 return EXIT_FAILURE;
1522             }
1523         }
1524     }
1525
1526     g_main_loop_run (loop);
1527
1528     /* Clean up shared data manager */
1529     shared_data_manager_cleanup ();
1530
1531     /* Clean up user list */
1532     common_user_list_cleanup ();
1533
1534     /* Clean up display manager */
1535     g_object_unref (display_manager);
1536     display_manager = NULL;
1537
1538     /* Remove D-Bus interface */
1539     g_dbus_connection_unregister_object (bus, reg_id);
1540     g_bus_unown_name (bus_id);
1541     if (seat_bus_entries)
1542         g_hash_table_unref (seat_bus_entries);
1543     if (session_bus_entries)
1544         g_hash_table_unref (session_bus_entries);
1545
1546     g_debug ("Exiting with return value %d", exit_code);
1547     return exit_code;
1548 }