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
|
/* $Id$ */
/*-
* Copyright (c) 2004-2005 Benedikt Meurer <[email protected]>
* All rights reserved.
*
* 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, 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., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* Most parts of this file where taken from gnome-session.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <gdk/gdkx.h>
#include <libxfce4util/libxfce4util.h>
#ifdef HAVE_GNOME
#include <gconf/gconf-client.h>
#endif
#ifdef HAVE_GNOME_KEYRING
#include <gnome-keyring.h>
#endif
#include <xfce4-session/xfsm-compat-gnome.h>
#define GNOME_KEYRING_DAEMON "gnome-keyring-daemon"
#ifdef HAVE_GNOME
#define ACCESSIBILITY_KEY "/desktop/gnome/interface/accessibility"
#define AT_STARTUP_KEY "/desktop/gnome/accessibility/startup/exec_ats"
static GConfClient *gnome_conf_client = NULL;
#endif
static gboolean gnome_compat_started = FALSE;
static int keyring_lifetime_pipe[2];
static pid_t gnome_keyring_daemon_pid = 0;
static Window gnome_smproxy_window = None;
static void
child_setup (gpointer user_data)
{
gint open_max;
gint fd;
char *fd_str;
open_max = sysconf (_SC_OPEN_MAX);
for (fd = 3; fd < open_max; fd )
{
if (fd != keyring_lifetime_pipe[0])
fcntl (fd, F_SETFD, FD_CLOEXEC);
}
fd_str = g_strdup_printf ("%d", keyring_lifetime_pipe[0]);
g_setenv ("GNOME_KEYRING_LIFETIME_FD", fd_str, TRUE);
}
static void
gnome_keyring_daemon_startup (void)
{
GError *error = NULL;
gchar *sout;
gchar **lines;
gsize lineno;
gint status;
long pid;
gchar *pid_str;
gchar *end;
char *argv[3];
/* Pipe to slave keyring lifetime to */
pipe (keyring_lifetime_pipe);
error = NULL;
argv[0] = GNOME_KEYRING_DAEMON;
argv[1] = "--start";
argv[2] = NULL;
g_spawn_sync (NULL, argv, NULL,
G_SPAWN_SEARCH_PATH | G_SPAWN_LEAVE_DESCRIPTORS_OPEN,
child_setup, NULL,
&sout, NULL, &status, &error);
close (keyring_lifetime_pipe[0]);
/* We leave keyring_lifetime_pipe[1] open for the lifetime of the session,
in order to slave the keyring daemon lifecycle to the session. */
if (error != NULL)
{
g_printerr ("Failed to run gnome-keyring-daemon: %s\n",
error->message);
g_error_free (error);
}
else
{
if (WIFEXITED (status) && WEXITSTATUS (status) == 0 && sout != NULL)
{
lines = g_strsplit (sout, "\n", 0);
for (lineno = 0; lines[lineno] != NULL; lineno )
{
xfce_putenv (lines[lineno]);
if (g_str_has_prefix (lines[lineno], "GNOME_KEYRING_PID="))
{
pid_str = lines[lineno] strlen ("GNOME_KEYRING_PID=");
pid = strtol (pid_str, &end, 10);
if (end != pid_str)
{
gnome_keyring_daemon_pid = pid;
}
}
}
g_strfreev (lines);
#ifdef HAVE_GNOME_KEYRING
gnome_keyring_daemon_prepare_environment_sync ();
#endif
}
else
{
/* daemon failed for some reason */
g_printerr ("gnome-keyring-daemon failed to start correctly, "
"exit code: %d\n", WEXITSTATUS (status));
}
g_free (sout);
}
}
static void
gnome_keyring_daemon_shutdown (void)
{
if (gnome_keyring_daemon_pid != 0)
{
kill (gnome_keyring_daemon_pid, SIGTERM);
gnome_keyring_daemon_pid = 0;
}
}
#ifdef HAVE_GNOME
static void
gnome_ast_startup (void)
{
GError *error = NULL;
GSList *list;
GSList *lp;
gchar *path;
list = gconf_client_get_list (gnome_conf_client, AT_STARTUP_KEY,
GCONF_VALUE_STRING, &error);
if (error != NULL)
{
g_warning ("Failed to query value of " AT_STARTUP_KEY ": %s",
error->message);
g_error_free (error);
}
else
{
for (lp = list; lp != NULL; lp = lp->next)
{
path = g_find_program_in_path ((const gchar *) lp->data);
if (path != NULL)
{
g_spawn_command_line_async (path, &error);
if (error != NULL)
{
g_warning ("Failed to execute assistive helper %s: %s",
path, error->message);
g_error_free (error);
}
else
{
/* give it some time to fire up */
g_usleep (50 * 1000);
}
g_free (path);
}
g_free (lp->data);
}
g_slist_free (list);
}
}
#endif
static void
xfsm_compat_gnome_smproxy_startup (void)
{
Atom gnome_sm_proxy;
Display *dpy;
Window root;
gdk_error_trap_push ();
/* Set GNOME_SM_PROXY property, since some apps (like OOo) seem to require
* it to behave properly. Thanks to Jasper/Francois for reporting this.
* This has another advantage, since it prevents people from running
* gnome-smproxy in xfce4, which would cause trouble otherwise.
*/
dpy = gdk_display;
root = RootWindow (dpy, 0);
if (gnome_smproxy_window != None)
XDestroyWindow (dpy, gnome_smproxy_window);
gnome_sm_proxy = XInternAtom (dpy, "GNOME_SM_PROXY", False);
gnome_smproxy_window = XCreateSimpleWindow (dpy, root, 1, 1, 1, 1, 0, 0, 0);
XChangeProperty (dpy, gnome_smproxy_window, gnome_sm_proxy,
XA_CARDINAL, 32, PropModeReplace,
(unsigned char *) (void *) &gnome_smproxy_window, 1);
XChangeProperty (dpy, root, gnome_sm_proxy,
XA_CARDINAL, 32, PropModeReplace,
(unsigned char *) (void *) &gnome_smproxy_window, 1);
XSync (dpy, False);
gdk_error_trap_pop ();
}
static void
xfsm_compat_gnome_smproxy_shutdown (void)
{
gdk_error_trap_push ();
if (gnome_smproxy_window != None)
{
XDestroyWindow (gdk_display, gnome_smproxy_window);
XSync (gdk_display, False);
gnome_smproxy_window = None;
}
gdk_error_trap_pop ();
}
void
xfsm_compat_gnome_startup (XfsmSplashScreen *splash)
{
if (G_UNLIKELY (gnome_compat_started))
return;
xfsm_compat_gnome_smproxy_startup ();
/* fire up the keyring daemon */
if (G_LIKELY (splash != NULL))
xfsm_splash_screen_next (splash, _("Starting The Gnome Keyring Daemon"));
gnome_keyring_daemon_startup ();
#ifdef HAVE_GNOME
/* connect to the GConf daemon */
gnome_conf_client = gconf_client_get_default ();
if (gnome_conf_client != NULL)
{
if (gconf_client_get_bool (gnome_conf_client, ACCESSIBILITY_KEY, NULL))
{
if (G_LIKELY (splash != NULL))
{
xfsm_splash_screen_next (splash, _("Starting Gnome Assistive Technologies"));
}
gnome_ast_startup ();
}
}
#endif
gnome_compat_started = TRUE;
}
void
xfsm_compat_gnome_shutdown (void)
{
GError *error = NULL;
gint status;
if (G_UNLIKELY (!gnome_compat_started))
return;
/* shutdown the keyring daemon */
gnome_keyring_daemon_shutdown ();
#ifdef HAVE_GNOME
if (gnome_conf_client != NULL)
{
g_object_unref (G_OBJECT (gnome_conf_client));
gnome_conf_client = NULL;
}
#endif
/* shutdown the GConf daemon */
if (!g_spawn_command_line_sync ("gconftool-2 --shutdown", NULL,
NULL, &status, &error))
{
g_warning ("Failed to shutdown the GConf daemon on logout: %s",
error->message);
g_error_free (error);
}
else if (status != 0)
{
g_warning ("Failed to shutdown the GConf daemon on logout: "
"gconftool-2 returned status %d", status);
}
xfsm_compat_gnome_smproxy_shutdown ();
gnome_compat_started = FALSE;
}
|