1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pwd.h>
#include <grp.h>
#include <sys/wait.h>
#include <locale.h>
#include <signal.h>
#include <glib.h>
#include <glib/gi18n.h>
#include <glib/gstdio.h>
#include <glib-object.h>
#include <gio/gio.h>
#include "gdm-manager.h"
#include "gdm-log.h"
#include "gdm-common.h"
#include "gdm-file-utils.h"
#include "gdm-settings.h"
#include "gdm-settings-direct.h"
#include "gdm-settings-keys.h"
#define GDM_DBUS_NAME "org.gnome.DisplayManager"
static GDBusConnection *get_system_bus (void);
static gboolean bus_reconnect (void);
extern char **environ;
static GdmManager *manager = NULL;
static int name_id = -1;
static GdmSettings *settings = NULL;
static uid_t gdm_uid = -1;
static gid_t gdm_gid = -1;
static gboolean
timed_exit_cb (GMainLoop *loop)
{
g_main_loop_quit (loop);
return FALSE;
}
static void
bus_connection_closed (void)
{
g_debug ("Disconnected from D-Bus");
if (manager == NULL) {
/* probably shutting down or something */
return;
}
g_clear_object (&manager);
g_timeout_add_seconds (3, (GSourceFunc)bus_reconnect, NULL);
}
static GDBusConnection *
get_system_bus (void)
{
GError *error;
GDBusConnection *bus;
error = NULL;
bus = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);
if (bus == NULL) {
g_warning ("Couldn't connect to system bus: %s",
error->message);
g_error_free (error);
goto out;
}
g_signal_connect (bus, "closed",
G_CALLBACK (bus_connection_closed), NULL);
g_dbus_connection_set_exit_on_close (bus, FALSE);
out:
return bus;
}
static void
delete_pid (void)
{
g_unlink (GDM_PID_FILE);
}
static void
write_pid (void)
{
int pf;
ssize_t written;
char pid[9];
errno = 0;
pf = open (GDM_PID_FILE, O_WRONLY|O_CREAT|O_TRUNC|O_EXCL, 0644);
if (pf < 0) {
g_warning (_("Cannot write PID file %s: possibly out of disk space: %s"),
GDM_PID_FILE,
g_strerror (errno));
return;
}
snprintf (pid, sizeof (pid), "%lu\n", (long unsigned) getpid ());
errno = 0;
written = write (pf, pid, strlen (pid));
close (pf);
if (written < 0) {
g_warning (_("Cannot write PID file %s: possibly out of disk space: %s"),
GDM_PID_FILE,
g_strerror (errno));
return;
}
atexit (delete_pid);
}
static void
gdm_daemon_ensure_dirs (uid_t uid,
gid_t gid)
{
g_autoptr (GError) error = NULL;
/* Set up /run/gdm */
if (!gdm_ensure_dir (GDM_RUN_DIR, 0, 0, 0755, FALSE, &error)) {
g_warning ("Failed to create " GDM_RUN_DIR ": %s", error->message);
g_clear_error (&error);
}
/* Set up /var/log/gdm */
if (!gdm_ensure_dir (LOGDIR, 0, gid, 0711, FALSE, &error)) {
g_warning ("Failed to create " LOGDIR ": %s", error->message);
g_clear_error (&error);
}
}
static void
gdm_daemon_lookup_user (uid_t *uidp,
gid_t *gidp)
{
char *username;
char *groupname;
uid_t uid;
gid_t gid;
struct passwd *pwent;
struct group *grent;
username = NULL;
groupname = NULL;
uid = 0;
gid = 0;
gdm_settings_direct_get_string (GDM_KEY_USER, &username);
gdm_settings_direct_get_string (GDM_KEY_GROUP, &groupname);
if (username == NULL || groupname == NULL) {
return;
}
g_debug ("Changing user:group to %s:%s", username, groupname);
/* Lookup user and groupid for the GDM user */
gdm_get_pwent_for_name (username, &pwent);
/* Set uid and gid */
if G_UNLIKELY (pwent == NULL) {
g_critical (_("Can’t find the GDM user “%s”. Aborting!"), username);
} else {
uid = pwent->pw_uid;
}
if G_UNLIKELY (uid == 0) {
g_critical (_("The GDM user should not be root. Aborting!"));
}
grent = getgrnam (groupname);
if G_UNLIKELY (grent == NULL) {
g_critical (_("Can’t find the GDM group “%s”. Aborting!"), groupname);
} else {
gid = grent->gr_gid;
}
if G_UNLIKELY (gid == 0) {
g_critical (_("The GDM group should not be root. Aborting!"));
}
if (uidp != NULL) {
*uidp = uid;
}
if (gidp != NULL) {
*gidp = gid;
}
g_free (username);
g_free (groupname);
}
static gboolean
on_shutdown_signal_cb (gpointer user_data)
{
GMainLoop *mainloop = user_data;
g_main_loop_quit (mainloop);
return FALSE;
}
static gboolean
on_sighup_cb (gpointer user_data)
{
g_debug ("Got HUP signal");
gdm_settings_reload (settings);
return TRUE;
}
static gboolean
is_debug_set (void)
{
gboolean debug;
gdm_settings_direct_get_boolean (GDM_KEY_DEBUG, &debug);
return debug;
}
/* SIGUSR1 is used by the X server to tell us that we're ready, so
* block it. We'll unblock it in the worker thread in gdm-server.c
*/
static void
block_sigusr1 (void)
{
sigset_t mask;
sigemptyset (&mask);
sigaddset (&mask, SIGUSR1);
sigprocmask (SIG_BLOCK, &mask, NULL);
}
int
main (int argc,
char **argv)
{
GMainLoop *main_loop;
GOptionContext *context;
GError *error = NULL;
gboolean res;
static gboolean do_timed_exit = FALSE;
static gboolean print_version = FALSE;
static gboolean fatal_warnings = FALSE;
static GOptionEntry entries [] = {
{ "fatal-warnings", 0, 0, G_OPTION_ARG_NONE, &fatal_warnings, N_("Make all warnings fatal"), NULL },
{ "timed-exit", 0, 0, G_OPTION_ARG_NONE, &do_timed_exit, N_("Exit after a time (for debugging)"), NULL },
{ "version", 0, 0, G_OPTION_ARG_NONE, &print_version, N_("Print GDM version"), NULL },
{ NULL }
};
block_sigusr1 ();
bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
textdomain (GETTEXT_PACKAGE);
setlocale (LC_ALL, "");
context = g_option_context_new (_("GNOME Display Manager"));
g_option_context_add_main_entries (context, entries, NULL);
error = NULL;
res = g_option_context_parse (context, &argc, &argv, &error);
g_option_context_free (context);
if (! res) {
g_printerr ("Failed to parse options: %s\n", error->message);
g_error_free (error);
return EXIT_FAILURE;
}
if (print_version) {
g_print ("GDM %s\n", VERSION);
return EXIT_SUCCESS;
}
/* XDM compliant error message */
if (getuid () != 0) {
/* make sure the pid file doesn't get wiped */
g_printerr ("%s\n", _("Only the root user can run GDM"));
return EXIT_FAILURE;
}
if (fatal_warnings) {
GLogLevelFlags fatal_mask;
fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
g_log_set_always_fatal (fatal_mask);
}
gdm_log_init ();
settings = gdm_settings_new ();
if (! gdm_settings_direct_init (settings, DATADIR "/gdm/gdm.schemas", "/")) {
g_warning ("Unable to initialize settings");
return EXIT_FAILURE;
}
gdm_log_set_debug (is_debug_set ());
gdm_daemon_lookup_user (&gdm_uid, &gdm_gid);
gdm_daemon_ensure_dirs (gdm_uid, gdm_gid);
/* Connect to the bus, own the name and start the manager */
bus_reconnect ();
/* pid file */
delete_pid ();
write_pid ();
g_chdir ("/");
main_loop = g_main_loop_new (NULL, FALSE);
g_unix_signal_add (SIGTERM, on_shutdown_signal_cb, main_loop);
g_unix_signal_add (SIGINT, on_shutdown_signal_cb, main_loop);
g_unix_signal_add (SIGHUP, on_sighup_cb, NULL);
if (do_timed_exit) {
g_timeout_add_seconds (30, (GSourceFunc) timed_exit_cb, main_loop);
}
g_main_loop_run (main_loop);
g_debug ("GDM finished, cleaning up...");
g_clear_object (&manager);
g_clear_object (&settings);
gdm_settings_direct_shutdown ();
gdm_log_shutdown ();
g_main_loop_unref (main_loop);
return EXIT_SUCCESS;
}
static void
on_name_acquired (GDBusConnection *bus,
const char *name,
gpointer user_data)
{
gboolean xdmcp_enabled;
gboolean show_local_greeter;
gboolean remote_login_enabled;
manager = gdm_manager_new ();
if (manager == NULL) {
g_warning ("Could not construct manager object");
exit (EXIT_FAILURE);
}
g_debug ("Successfully connected to D-Bus");
show_local_greeter = TRUE;
gdm_settings_direct_get_boolean (GDM_KEY_SHOW_LOCAL_GREETER, &show_local_greeter);
gdm_manager_set_show_local_greeter (manager, show_local_greeter);
xdmcp_enabled = FALSE;
gdm_settings_direct_get_boolean (GDM_KEY_XDMCP_ENABLE, &xdmcp_enabled);
gdm_manager_set_xdmcp_enabled (manager, xdmcp_enabled);
remote_login_enabled = FALSE;
gdm_settings_direct_get_boolean (GDM_KEY_REMOTE_LOGIN_ENABLE, &remote_login_enabled);
gdm_manager_set_remote_login_enabled (manager, remote_login_enabled);
gdm_manager_start (manager);
}
static void
on_name_lost (GDBusConnection *bus,
const char *name,
gpointer user_data)
{
g_debug ("Lost GDM name on bus");
bus_connection_closed ();
}
static gboolean
bus_reconnect ()
{
GDBusConnection *bus;
gboolean ret;
ret = TRUE;
bus = get_system_bus ();
if (bus == NULL) {
goto out;
}
name_id = g_bus_own_name_on_connection (bus,
GDM_DBUS_NAME,
G_BUS_NAME_OWNER_FLAGS_NONE,
on_name_acquired,
on_name_lost,
NULL,
NULL);
ret = FALSE;
out:
return ret;
}
|