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