2013-08-19 08:57:16 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2014-04-22 17:06:36 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "meta-launcher.h"
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
#include <gio/gunixfdlist.h>
|
2013-08-19 08:57:16 -04:00
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
2014-03-11 16:51:24 -04:00
|
|
|
#include <clutter/egl/clutter-egl.h>
|
2013-08-19 08:57:16 -04:00
|
|
|
#include <clutter/evdev/clutter-evdev.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2013-12-31 17:44:45 -05:00
|
|
|
#include <malloc.h>
|
2013-08-19 08:57:16 -04:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
2014-04-22 17:06:36 -04:00
|
|
|
#include <string.h>
|
2013-12-31 17:44:45 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <systemd/sd-login.h>
|
|
|
|
|
|
|
|
#include "dbus-utils.h"
|
|
|
|
#include "meta-dbus-login1.h"
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2014-08-05 08:11:59 -04:00
|
|
|
#include "backends/meta-backend-private.h"
|
2014-04-22 15:15:11 -04:00
|
|
|
#include "meta-cursor-renderer-native.h"
|
2015-05-27 12:56:12 -04:00
|
|
|
#include "meta-idle-monitor-native.h"
|
2013-08-19 08:57:16 -04:00
|
|
|
|
|
|
|
struct _MetaLauncher
|
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
Login1Session *session_proxy;
|
|
|
|
Login1Seat *seat_proxy;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
gboolean session_active;
|
2013-08-19 08:57:16 -04:00
|
|
|
};
|
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
static Login1Session *
|
|
|
|
get_session_proxy (GCancellable *cancellable)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
char *proxy_path;
|
|
|
|
char *session_id;
|
|
|
|
Login1Session *session_proxy;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
if (sd_pid_get_session (getpid (), &session_id) < 0)
|
|
|
|
return NULL;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
proxy_path = get_escaped_dbus_path ("/org/freedesktop/login1/session", session_id);
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
session_proxy = login1_session_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
|
|
|
|
G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START,
|
|
|
|
"org.freedesktop.login1",
|
|
|
|
proxy_path,
|
|
|
|
cancellable, NULL);
|
|
|
|
free (proxy_path);
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
return session_proxy;
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
static Login1Seat *
|
|
|
|
get_seat_proxy (GCancellable *cancellable)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
return login1_seat_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
|
|
|
|
G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START,
|
|
|
|
"org.freedesktop.login1",
|
|
|
|
"/org/freedesktop/login1/seat/self",
|
|
|
|
cancellable, NULL);
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-22 17:21:12 -04:00
|
|
|
session_unpause (void)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
|
|
|
ClutterBackend *backend;
|
|
|
|
CoglContext *cogl_context;
|
|
|
|
CoglDisplay *cogl_display;
|
|
|
|
|
|
|
|
backend = clutter_get_default_backend ();
|
|
|
|
cogl_context = clutter_backend_get_cogl_context (backend);
|
|
|
|
cogl_display = cogl_context_get_display (cogl_context);
|
|
|
|
cogl_kms_display_queue_modes_reset (cogl_display);
|
|
|
|
|
|
|
|
clutter_evdev_reclaim_devices ();
|
2014-03-11 17:34:19 -04:00
|
|
|
clutter_egl_thaw_master_clock ();
|
2014-03-11 17:22:08 -04:00
|
|
|
|
|
|
|
{
|
2014-04-22 15:56:34 -04:00
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaCursorRenderer *renderer = meta_backend_get_cursor_renderer (backend);
|
2014-08-13 19:46:32 -04:00
|
|
|
ClutterActor *stage = meta_backend_get_stage (backend);
|
2014-03-11 17:22:08 -04:00
|
|
|
|
|
|
|
/* When we mode-switch back, we need to immediately queue a redraw
|
|
|
|
* in case nothing else queued one for us, and force the cursor to
|
|
|
|
* update. */
|
|
|
|
|
2014-08-13 19:46:32 -04:00
|
|
|
clutter_actor_queue_redraw (stage);
|
2014-04-22 15:15:11 -04:00
|
|
|
meta_cursor_renderer_native_force_update (META_CURSOR_RENDERER_NATIVE (renderer));
|
2015-05-27 12:56:12 -04:00
|
|
|
meta_idle_monitor_native_reset_idletime (meta_idle_monitor_get_core ());
|
2014-03-11 17:22:08 -04:00
|
|
|
}
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-04-22 17:21:12 -04:00
|
|
|
session_pause (void)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
|
|
|
clutter_evdev_release_devices ();
|
2014-03-11 17:34:19 -04:00
|
|
|
clutter_egl_freeze_master_clock ();
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
static gboolean
|
|
|
|
take_device (Login1Session *session_proxy,
|
|
|
|
int dev_major,
|
|
|
|
int dev_minor,
|
|
|
|
int *out_fd,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
2015-05-29 20:17:34 -04:00
|
|
|
g_autoptr (GVariant) fd_variant = NULL;
|
|
|
|
g_autoptr (GUnixFDList) fd_list = NULL;
|
2013-12-31 17:44:45 -05:00
|
|
|
int fd = -1;
|
|
|
|
|
|
|
|
if (!login1_session_call_take_device_sync (session_proxy,
|
|
|
|
dev_major,
|
|
|
|
dev_minor,
|
|
|
|
NULL,
|
|
|
|
&fd_variant,
|
|
|
|
NULL, /* paused */
|
|
|
|
&fd_list,
|
|
|
|
cancellable,
|
|
|
|
error))
|
2015-05-29 20:17:34 -04:00
|
|
|
return FALSE;
|
2013-12-31 17:44:45 -05:00
|
|
|
|
|
|
|
fd = g_unix_fd_list_get (fd_list, g_variant_get_handle (fd_variant), error);
|
|
|
|
if (fd == -1)
|
2015-05-29 20:17:34 -04:00
|
|
|
return FALSE;
|
2013-12-31 17:44:45 -05:00
|
|
|
|
|
|
|
*out_fd = fd;
|
2015-05-29 20:17:34 -04:00
|
|
|
return TRUE;
|
2013-12-31 17:44:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
get_device_info_from_path (const char *path,
|
|
|
|
int *out_major,
|
|
|
|
int *out_minor)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
r = stat (path, &st);
|
2015-05-29 20:17:34 -04:00
|
|
|
if (r < 0 || !S_ISCHR (st.st_mode))
|
|
|
|
return FALSE;
|
2013-12-31 17:44:45 -05:00
|
|
|
|
|
|
|
*out_major = major (st.st_rdev);
|
|
|
|
*out_minor = minor (st.st_rdev);
|
2015-05-29 20:17:34 -04:00
|
|
|
return TRUE;
|
2013-12-31 17:44:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
get_device_info_from_fd (int fd,
|
|
|
|
int *out_major,
|
|
|
|
int *out_minor)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
r = fstat (fd, &st);
|
2015-05-29 20:17:34 -04:00
|
|
|
if (r < 0 || !S_ISCHR (st.st_mode))
|
|
|
|
return FALSE;
|
2013-12-31 17:44:45 -05:00
|
|
|
|
|
|
|
*out_major = major (st.st_rdev);
|
|
|
|
*out_minor = minor (st.st_rdev);
|
2015-05-29 20:17:34 -04:00
|
|
|
return TRUE;
|
2013-12-31 17:44:45 -05:00
|
|
|
}
|
|
|
|
|
2013-08-19 08:57:16 -04:00
|
|
|
static int
|
|
|
|
on_evdev_device_open (const char *path,
|
2014-04-22 17:13:04 -04:00
|
|
|
int flags,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
MetaLauncher *self = user_data;
|
|
|
|
int fd;
|
|
|
|
int major, minor;
|
|
|
|
|
|
|
|
if (!get_device_info_from_path (path, &major, &minor))
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_FOUND,
|
|
|
|
"Could not get device info for path %s: %m", path);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!take_device (self->session_proxy, major, minor, &fd, NULL, error))
|
|
|
|
return -1;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
return fd;
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2014-03-11 17:18:47 -04:00
|
|
|
static void
|
2014-04-22 17:13:04 -04:00
|
|
|
on_evdev_device_close (int fd,
|
|
|
|
gpointer user_data)
|
2014-03-11 17:18:47 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
MetaLauncher *self = user_data;
|
|
|
|
int major, minor;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
if (!get_device_info_from_fd (fd, &major, &minor))
|
|
|
|
{
|
|
|
|
g_warning ("Could not get device info for fd %d: %m", fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!login1_session_call_release_device_sync (self->session_proxy,
|
|
|
|
major, minor,
|
|
|
|
NULL, &error))
|
|
|
|
{
|
|
|
|
g_warning ("Could not release device %d,%d: %s", major, minor, error->message);
|
|
|
|
}
|
2014-03-11 17:18:47 -04:00
|
|
|
}
|
|
|
|
|
2013-08-19 08:57:16 -04:00
|
|
|
static void
|
2013-12-31 17:44:45 -05:00
|
|
|
sync_active (MetaLauncher *self)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
gboolean active = login1_session_get_active (LOGIN1_SESSION (self->session_proxy));
|
|
|
|
|
|
|
|
if (active == self->session_active)
|
|
|
|
return;
|
2014-04-22 17:21:12 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
self->session_active = active;
|
|
|
|
|
|
|
|
if (active)
|
|
|
|
session_unpause ();
|
|
|
|
else
|
|
|
|
session_pause ();
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-12-31 17:44:45 -05:00
|
|
|
on_active_changed (Login1Session *session,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
MetaLauncher *self = user_data;
|
|
|
|
sync_active (self);
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2013-12-31 17:44:45 -05:00
|
|
|
get_kms_fd (Login1Session *session_proxy,
|
|
|
|
int *fd_out)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
int major, minor;
|
|
|
|
int fd;
|
|
|
|
GError *error = NULL;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
/* XXX -- use udev to find the DRM master device */
|
|
|
|
if (!get_device_info_from_path ("/dev/dri/card0", &major, &minor))
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
g_warning ("Could not stat /dev/dri/card0: %m");
|
|
|
|
return FALSE;
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
if (!take_device (session_proxy, major, minor, &fd, NULL, &error))
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
g_warning ("Could not open DRM device: %s\n", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return FALSE;
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
*fd_out = fd;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
return TRUE;
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2013-12-31 18:03:31 -05:00
|
|
|
MetaLauncher *
|
|
|
|
meta_launcher_new (void)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2015-02-26 03:13:16 -05:00
|
|
|
MetaLauncher *self = NULL;
|
2013-12-31 17:44:45 -05:00
|
|
|
Login1Session *session_proxy;
|
2014-04-22 17:15:31 -04:00
|
|
|
GError *error = NULL;
|
|
|
|
int kms_fd;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
session_proxy = get_session_proxy (NULL);
|
|
|
|
if (!login1_session_call_take_control_sync (session_proxy, FALSE, NULL, &error))
|
|
|
|
{
|
|
|
|
g_warning ("Could not take control: %s", error->message);
|
|
|
|
g_error_free (error);
|
2015-02-24 22:25:34 -05:00
|
|
|
goto out;
|
2013-12-31 17:44:45 -05:00
|
|
|
}
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
if (!get_kms_fd (session_proxy, &kms_fd))
|
2015-02-24 22:25:34 -05:00
|
|
|
goto out;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
self = g_slice_new0 (MetaLauncher);
|
2015-02-24 22:25:34 -05:00
|
|
|
self->session_proxy = g_object_ref (session_proxy);
|
2013-12-31 17:44:45 -05:00
|
|
|
self->seat_proxy = get_seat_proxy (NULL);
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
self->session_active = TRUE;
|
2014-04-22 17:15:31 -04:00
|
|
|
|
|
|
|
clutter_egl_set_kms_fd (kms_fd);
|
2014-03-11 17:18:47 -04:00
|
|
|
clutter_evdev_set_device_callbacks (on_evdev_device_open,
|
|
|
|
on_evdev_device_close,
|
|
|
|
self);
|
2014-03-11 16:48:52 -04:00
|
|
|
|
2013-12-31 17:44:45 -05:00
|
|
|
g_signal_connect (self->session_proxy, "notify::active", G_CALLBACK (on_active_changed), self);
|
|
|
|
|
2015-02-24 22:25:34 -05:00
|
|
|
out:
|
|
|
|
g_object_unref (session_proxy);
|
|
|
|
|
2013-12-31 18:03:31 -05:00
|
|
|
return self;
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
|
|
|
|
2013-12-31 18:03:31 -05:00
|
|
|
void
|
2013-12-31 17:44:45 -05:00
|
|
|
meta_launcher_free (MetaLauncher *self)
|
2013-08-19 08:57:16 -04:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
g_object_unref (self->seat_proxy);
|
|
|
|
g_object_unref (self->session_proxy);
|
|
|
|
g_slice_free (MetaLauncher, self);
|
2013-08-19 08:57:16 -04:00
|
|
|
}
|
2014-01-16 13:40:41 -05:00
|
|
|
|
2014-04-22 17:08:57 -04:00
|
|
|
gboolean
|
|
|
|
meta_launcher_activate_session (MetaLauncher *launcher,
|
|
|
|
GError **error)
|
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
if (!login1_session_call_activate_sync (launcher->session_proxy, NULL, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
sync_active (launcher);
|
|
|
|
return TRUE;
|
2014-04-22 17:08:57 -04:00
|
|
|
}
|
|
|
|
|
2014-01-16 13:40:41 -05:00
|
|
|
gboolean
|
|
|
|
meta_launcher_activate_vt (MetaLauncher *launcher,
|
2014-04-22 17:13:04 -04:00
|
|
|
signed char vt,
|
|
|
|
GError **error)
|
2014-01-16 13:40:41 -05:00
|
|
|
{
|
2013-12-31 17:44:45 -05:00
|
|
|
return login1_seat_call_switch_to_sync (launcher->seat_proxy, vt, NULL, error);
|
2014-01-16 13:40:41 -05:00
|
|
|
}
|