chiark / gitweb /
terminal: always call _enable/_disable on evdev devices
[elogind.git] / src / libsystemd-terminal / sysview.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright (C) 2014 David Herrmann <dh.herrmann@gmail.com>
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 /*
23  * System View
24  * The sysview interface scans and monitors the system for seats, sessions and
25  * devices. It basically mirrors the state of logind on the application side.
26  * It's meant as base for session services that require managed device access.
27  * The logind controller API is employed to allow unprivileged access to all
28  * devices of a user.
29  * Furthermore, the sysview interface can be used for system services that run
30  * in situations where logind is not available, but session-like services are
31  * needed. For instance, the initrd does not run logind but might require
32  * graphics access. It cannot run session services, though. The sysview
33  * interface pretends that a session is available and provides the same
34  * interface as to normal session services.
35  */
36
37 #pragma once
38
39 #include <inttypes.h>
40 #include <libudev.h>
41 #include <stdbool.h>
42 #include <stdlib.h>
43 #include <systemd/sd-bus.h>
44 #include <systemd/sd-event.h>
45 #include "util.h"
46
47 typedef struct sysview_event            sysview_event;
48 typedef struct sysview_device           sysview_device;
49 typedef struct sysview_session          sysview_session;
50 typedef struct sysview_seat             sysview_seat;
51 typedef struct sysview_context          sysview_context;
52
53 /*
54  * Events
55  */
56
57 enum {
58         SYSVIEW_EVENT_SEAT_ADD,
59         SYSVIEW_EVENT_SEAT_REMOVE,
60
61         SYSVIEW_EVENT_SESSION_FILTER,
62         SYSVIEW_EVENT_SESSION_ADD,
63         SYSVIEW_EVENT_SESSION_REMOVE,
64         SYSVIEW_EVENT_SESSION_ATTACH,
65         SYSVIEW_EVENT_SESSION_DETACH,
66         SYSVIEW_EVENT_SESSION_CONTROL,
67
68         SYSVIEW_EVENT_DEVICE_CHANGE,
69 };
70
71 struct sysview_event {
72         unsigned int type;
73
74         union {
75                 struct {
76                         sysview_seat *seat;
77                 } seat_add, seat_remove;
78
79                 struct {
80                         const char *id;
81                         const char *seatid;
82                         const char *username;
83                         unsigned int uid;
84                 } session_filter;
85
86                 struct {
87                         sysview_session *session;
88                 } session_add, session_remove;
89
90                 struct {
91                         sysview_session *session;
92                         sysview_device *device;
93                 } session_attach, session_detach;
94
95                 struct {
96                         sysview_session *session;
97                         int error;
98                 } session_control;
99
100                 struct {
101                         sysview_device *device;
102                         struct udev_device *ud;
103                 } device_change;
104         };
105 };
106
107 typedef int (*sysview_event_fn) (sysview_context *c, void *userdata, sysview_event *e);
108
109 /*
110  * Devices
111  */
112
113 enum {
114         SYSVIEW_DEVICE_EVDEV,
115         SYSVIEW_DEVICE_DRM,
116         SYSVIEW_DEVICE_CNT
117 };
118
119 unsigned int sysview_device_get_type(sysview_device *device);
120 struct udev_device *sysview_device_get_ud(sysview_device *device);
121
122 /*
123  * Sessions
124  */
125
126 const char *sysview_session_get_name(sysview_session *session);
127
128 int sysview_session_take_control(sysview_session *session);
129 void sysview_session_release_control(sysview_session *session);
130
131 /*
132  * Seats
133  */
134
135 const char *sysview_seat_get_name(sysview_seat *seat);
136
137 /*
138  * Contexts
139  */
140
141 enum {
142         SYSVIEW_CONTEXT_SCAN_LOGIND             = (1 << 0),
143         SYSVIEW_CONTEXT_SCAN_EVDEV              = (1 << 1),
144         SYSVIEW_CONTEXT_SCAN_DRM                = (1 << 2),
145 };
146
147 int sysview_context_new(sysview_context **out,
148                         unsigned int flags,
149                         sd_event *event,
150                         sd_bus *sysbus,
151                         struct udev *ud);
152 sysview_context *sysview_context_free(sysview_context *c);
153
154 DEFINE_TRIVIAL_CLEANUP_FUNC(sysview_context*, sysview_context_free);
155
156 bool sysview_context_is_running(sysview_context *c);
157 int sysview_context_start(sysview_context *c, sysview_event_fn event_fn, void *userdata);
158 void sysview_context_stop(sysview_context *c);