blob: ea99314904fc85570c24f86a55988759a2ad2b59 [file] [log] [blame]
Benjamin Franzkebfeda132012-01-30 14:04:04 +01001/*
2 * Copyright © 2012 Benjamin Franzke
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -07003 * Copyright © 2013 Intel Corporation
Benjamin Franzkebfeda132012-01-30 14:04:04 +01004 *
5 * Permission to use, copy, modify, distribute, and sell this software and
6 * its documentation for any purpose is hereby granted without fee, provided
7 * that the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of the copyright holders not be used in
10 * advertising or publicity pertaining to distribution of the software
11 * without specific, written prior permission. The copyright holders make
12 * no representations about the suitability of this software for any
13 * purpose. It is provided "as is" without express or implied warranty.
14 *
15 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 */
23
Daniel Stonec228e232013-05-22 18:03:19 +030024#include "config.h"
25
Benjamin Franzkebfeda132012-01-30 14:04:04 +010026#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29
30#include <errno.h>
Kristian Høgsberg3f495872013-09-18 23:00:17 -070031#include <signal.h>
Benjamin Franzkebfeda132012-01-30 14:04:04 +010032#include <sys/socket.h>
33#include <sys/types.h>
34#include <sys/stat.h>
35#include <sys/uio.h>
Kristian Høgsberg3f495872013-09-18 23:00:17 -070036#include <sys/ioctl.h>
Benjamin Franzkebfeda132012-01-30 14:04:04 +010037#include <fcntl.h>
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -070038#include <unistd.h>
Kristian Høgsberg3f495872013-09-18 23:00:17 -070039#include <linux/vt.h>
40#include <linux/kd.h>
41#include <linux/major.h>
Benjamin Franzkebfeda132012-01-30 14:04:04 +010042
Benjamin Franzkebfeda132012-01-30 14:04:04 +010043#include "compositor.h"
44#include "launcher-util.h"
David Herrmanncc5b2ed2013-10-22 00:28:09 +020045#include "logind-util.h"
Benjamin Franzkebfeda132012-01-30 14:04:04 +010046#include "weston-launch.h"
47
Kristian Høgsberg3f495872013-09-18 23:00:17 -070048#define DRM_MAJOR 226
49
50#ifndef KDSKBMUTE
51#define KDSKBMUTE 0x4B51
52#endif
53
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -080054#ifdef HAVE_LIBDRM
Kristian Høgsberg9e140912012-04-10 01:26:18 -040055
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -080056#include <xf86drm.h>
Kristian Høgsberg3f495872013-09-18 23:00:17 -070057
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -080058static inline int
59is_drm_master(int drm_fd)
Tomeu Vizoso0b12db52013-10-09 11:30:57 +020060{
61 drm_magic_t magic;
Kristian Høgsberg891a16d2013-10-14 13:59:53 -070062
63 return drmGetMagic(drm_fd, &magic) == 0 &&
64 drmAuthMagic(drm_fd, magic) == 0;
Tomeu Vizoso0b12db52013-10-09 11:30:57 +020065}
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -080066
Kristian Høgsberg57a10e42013-10-01 15:37:09 -070067#else
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -080068
69static inline int
70drmDropMaster(int drm_fd)
71{
72 return 0;
73}
74
75static inline int
76drmSetMaster(int drm_fd)
77{
78 return 0;
79}
80
81static inline int
82is_drm_master(int drm_fd)
83{
84 return 0;
85}
86
Kristian Høgsberg57a10e42013-10-01 15:37:09 -070087#endif
88
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -080089
90union cmsg_data { unsigned char b[4]; int fd; };
91
92struct weston_launcher {
93 struct weston_compositor *compositor;
94 struct weston_logind *logind;
95 struct wl_event_loop *loop;
96 int fd;
97 struct wl_event_source *source;
98
99 int kb_mode, tty, drm_fd;
100 struct wl_event_source *vt_source;
101};
102
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100103int
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700104weston_launcher_open(struct weston_launcher *launcher,
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100105 const char *path, int flags)
106{
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700107 int n, fd, ret = -1;
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100108 struct msghdr msg;
109 struct cmsghdr *cmsg;
110 struct iovec iov;
Kristian Høgsberg9e140912012-04-10 01:26:18 -0400111 union cmsg_data *data;
112 char control[CMSG_SPACE(sizeof data->fd)];
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100113 ssize_t len;
114 struct weston_launcher_open *message;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700115 struct stat s;
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100116
Derek Foreman2663c682015-05-01 11:46:36 -0500117 /* We really don't want to be leaking fds to child processes so
118 * we force this flag here. If someone comes up with a legitimate
119 * reason to not CLOEXEC they'll need to unset the flag manually.
120 */
121 flags |= O_CLOEXEC;
122
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200123 if (launcher->logind)
124 return weston_logind_open(launcher->logind, path, flags);
125
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700126 if (launcher->fd == -1) {
Derek Foreman2663c682015-05-01 11:46:36 -0500127 fd = open(path, flags);
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700128 if (fd == -1)
129 return -1;
130
131 if (fstat(fd, &s) == -1) {
132 close(fd);
133 return -1;
134 }
135
Kristian Høgsberg57a10e42013-10-01 15:37:09 -0700136 if (major(s.st_rdev) == DRM_MAJOR) {
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700137 launcher->drm_fd = fd;
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -0800138 if (!is_drm_master(fd)) {
Kristian Høgsberg1468e602013-10-02 10:49:05 -0700139 weston_log("drm fd not master\n");
Kristian Høgsberg57a10e42013-10-01 15:37:09 -0700140 close(fd);
141 return -1;
142 }
143 }
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700144
145 return fd;
146 }
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100147
148 n = sizeof(*message) + strlen(path) + 1;
149 message = malloc(n);
150 if (!message)
151 return -1;
152
153 message->header.opcode = WESTON_LAUNCHER_OPEN;
154 message->flags = flags;
155 strcpy(message->path, path);
156
157 do {
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700158 len = send(launcher->fd, message, n, 0);
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100159 } while (len < 0 && errno == EINTR);
Kristian Høgsbergba25bd72012-04-10 01:31:09 -0400160 free(message);
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100161
162 memset(&msg, 0, sizeof msg);
163 iov.iov_base = &ret;
164 iov.iov_len = sizeof ret;
165 msg.msg_iov = &iov;
166 msg.msg_iovlen = 1;
167 msg.msg_control = control;
168 msg.msg_controllen = sizeof control;
169
170 do {
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700171 len = recvmsg(launcher->fd, &msg, MSG_CMSG_CLOEXEC);
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100172 } while (len < 0 && errno == EINTR);
173
174 if (len != sizeof ret ||
175 ret < 0)
Kristian Høgsbergba25bd72012-04-10 01:31:09 -0400176 return -1;
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100177
178 cmsg = CMSG_FIRSTHDR(&msg);
179 if (!cmsg ||
180 cmsg->cmsg_level != SOL_SOCKET ||
181 cmsg->cmsg_type != SCM_RIGHTS) {
182 fprintf(stderr, "invalid control message\n");
Kristian Høgsbergba25bd72012-04-10 01:31:09 -0400183 return -1;
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100184 }
185
Kristian Høgsberg9e140912012-04-10 01:26:18 -0400186 data = (union cmsg_data *) CMSG_DATA(cmsg);
187 if (data->fd == -1) {
Martin Andersson566b4642013-02-13 00:11:12 +0100188 fprintf(stderr, "missing drm fd in socket request\n");
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100189 return -1;
190 }
191
Kristian Høgsbergba25bd72012-04-10 01:31:09 -0400192 return data->fd;
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100193}
194
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700195void
David Herrmanne461f852013-10-22 00:28:08 +0200196weston_launcher_close(struct weston_launcher *launcher, int fd)
197{
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200198 if (launcher->logind)
Derek Foreman8f5acc22015-04-30 14:37:03 -0500199 weston_logind_close(launcher->logind, fd);
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200200
David Herrmanne461f852013-10-22 00:28:08 +0200201 close(fd);
202}
203
204void
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700205weston_launcher_restore(struct weston_launcher *launcher)
206{
207 struct vt_mode mode = { 0 };
208
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200209 if (launcher->logind)
210 return weston_logind_restore(launcher->logind);
211
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700212 if (ioctl(launcher->tty, KDSKBMUTE, 0) &&
213 ioctl(launcher->tty, KDSKBMODE, launcher->kb_mode))
214 weston_log("failed to restore kb mode: %m\n");
215
216 if (ioctl(launcher->tty, KDSETMODE, KD_TEXT))
217 weston_log("failed to set KD_TEXT mode on tty: %m\n");
218
Kristian Høgsberga28ba552013-10-30 16:27:16 -0700219 /* We have to drop master before we switch the VT back in
220 * VT_AUTO, so we don't risk switching to a VT with another
221 * display server, that will then fail to set drm master. */
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -0800222 drmDropMaster(launcher->drm_fd);
Kristian Høgsberga28ba552013-10-30 16:27:16 -0700223
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700224 mode.mode = VT_AUTO;
225 if (ioctl(launcher->tty, VT_SETMODE, &mode) < 0)
226 weston_log("could not reset vt handling\n");
227}
228
Kristian Høgsberg1eb482d2013-09-17 22:15:37 -0700229static int
230weston_launcher_data(int fd, uint32_t mask, void *data)
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100231{
Kristian Høgsberg1eb482d2013-09-17 22:15:37 -0700232 struct weston_launcher *launcher = data;
233 int len, ret;
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100234
Kristian Høgsberg1eb482d2013-09-17 22:15:37 -0700235 if (mask & (WL_EVENT_HANGUP | WL_EVENT_ERROR)) {
236 weston_log("launcher socket closed, exiting\n");
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700237 /* Normally the weston-launch will reset the tty, but
238 * in this case it died or something, so do it here so
239 * we don't end up with a stuck vt. */
240 weston_launcher_restore(launcher);
Kristian Høgsberg1eb482d2013-09-17 22:15:37 -0700241 exit(-1);
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100242 }
243
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100244 do {
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700245 len = recv(launcher->fd, &ret, sizeof ret, 0);
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100246 } while (len < 0 && errno == EINTR);
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100247
Kristian Høgsberg1eb482d2013-09-17 22:15:37 -0700248 switch (ret) {
249 case WESTON_LAUNCHER_ACTIVATE:
250 launcher->compositor->session_active = 1;
251 wl_signal_emit(&launcher->compositor->session_signal,
252 launcher->compositor);
253 break;
254 case WESTON_LAUNCHER_DEACTIVATE:
255 launcher->compositor->session_active = 0;
256 wl_signal_emit(&launcher->compositor->session_signal,
257 launcher->compositor);
258 break;
259 default:
260 weston_log("unexpected event from weston-launch\n");
261 break;
262 }
263
264 return 1;
Benjamin Franzkebfeda132012-01-30 14:04:04 +0100265}
266
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700267static int
268vt_handler(int signal_number, void *data)
269{
270 struct weston_launcher *launcher = data;
271 struct weston_compositor *compositor = launcher->compositor;
272
273 if (compositor->session_active) {
274 compositor->session_active = 0;
275 wl_signal_emit(&compositor->session_signal, compositor);
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -0800276 drmDropMaster(launcher->drm_fd);
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700277 ioctl(launcher->tty, VT_RELDISP, 1);
278 } else {
279 ioctl(launcher->tty, VT_RELDISP, VT_ACKACQ);
Kristian Høgsbergd2c9d8a2013-11-24 14:37:07 -0800280 drmSetMaster(launcher->drm_fd);
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700281 compositor->session_active = 1;
282 wl_signal_emit(&compositor->session_signal, compositor);
283 }
284
285 return 1;
286}
287
288static int
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700289setup_tty(struct weston_launcher *launcher, int tty)
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700290{
291 struct wl_event_loop *loop;
292 struct vt_mode mode = { 0 };
293 struct stat buf;
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700294 char tty_device[32] ="<stdin>";
295 int ret, kd_mode;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700296
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700297 if (tty == 0) {
Kristian Høgsberg325390e2013-10-09 11:03:39 -0700298 launcher->tty = dup(tty);
299 if (launcher->tty == -1) {
300 weston_log("couldn't dup stdin: %m\n");
301 return -1;
302 }
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700303 } else {
304 snprintf(tty_device, sizeof tty_device, "/dev/tty%d", tty);
305 launcher->tty = open(tty_device, O_RDWR | O_CLOEXEC);
306 if (launcher->tty == -1) {
307 weston_log("couldn't open tty %s: %m\n", tty_device);
308 return -1;
309 }
310 }
311
312 if (fstat(launcher->tty, &buf) == -1 ||
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700313 major(buf.st_rdev) != TTY_MAJOR || minor(buf.st_rdev) == 0) {
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700314 weston_log("%s not a vt\n", tty_device);
Kristian Høgsberg19ec77a2013-10-01 12:54:55 -0700315 weston_log("if running weston from ssh, "
316 "use --tty to specify a tty\n");
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700317 goto err_close;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700318 }
319
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700320 ret = ioctl(launcher->tty, KDGETMODE, &kd_mode);
321 if (ret) {
322 weston_log("failed to get VT mode: %m\n");
323 return -1;
324 }
325 if (kd_mode != KD_TEXT) {
326 weston_log("%s is already in graphics mode, "
327 "is another display server running?\n", tty_device);
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700328 goto err_close;
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700329 }
330
Kristian Høgsberg74b0d722013-10-09 13:10:42 -0700331 ioctl(launcher->tty, VT_ACTIVATE, minor(buf.st_rdev));
332 ioctl(launcher->tty, VT_WAITACTIVE, minor(buf.st_rdev));
Kristian Høgsberg6ff3ff52013-10-02 10:53:33 -0700333
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700334 if (ioctl(launcher->tty, KDGKBMODE, &launcher->kb_mode)) {
335 weston_log("failed to read keyboard mode: %m\n");
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700336 goto err_close;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700337 }
338
339 if (ioctl(launcher->tty, KDSKBMUTE, 1) &&
340 ioctl(launcher->tty, KDSKBMODE, K_OFF)) {
341 weston_log("failed to set K_OFF keyboard mode: %m\n");
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700342 goto err_close;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700343 }
344
345 ret = ioctl(launcher->tty, KDSETMODE, KD_GRAPHICS);
346 if (ret) {
347 weston_log("failed to set KD_GRAPHICS mode on tty: %m\n");
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700348 goto err_close;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700349 }
350
David Herrmann541b6042014-12-30 14:33:21 +0100351 /*
352 * SIGRTMIN is used as global VT-acquire+release signal. Note that
353 * SIGRT* must be tested on runtime, as their exact values are not
354 * known at compile-time. POSIX requires 32 of them to be available.
355 */
356 if (SIGRTMIN > SIGRTMAX) {
357 weston_log("not enough RT signals available: %u-%u\n",
358 SIGRTMIN, SIGRTMAX);
359 ret = -EINVAL;
360 goto err_close;
361 }
362
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700363 mode.mode = VT_PROCESS;
David Herrmann541b6042014-12-30 14:33:21 +0100364 mode.relsig = SIGRTMIN;
365 mode.acqsig = SIGRTMIN;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700366 if (ioctl(launcher->tty, VT_SETMODE, &mode) < 0) {
367 weston_log("failed to take control of vt handling\n");
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700368 goto err_close;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700369 }
370
371 loop = wl_display_get_event_loop(launcher->compositor->wl_display);
372 launcher->vt_source =
David Herrmann541b6042014-12-30 14:33:21 +0100373 wl_event_loop_add_signal(loop, SIGRTMIN, vt_handler, launcher);
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700374 if (!launcher->vt_source)
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700375 goto err_close;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700376
377 return 0;
Kristian Høgsberg4a74d5a2013-10-09 11:19:11 -0700378
379 err_close:
380 close(launcher->tty);
381 return -1;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700382}
383
384int
385weston_launcher_activate_vt(struct weston_launcher *launcher, int vt)
386{
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200387 if (launcher->logind)
388 return weston_logind_activate_vt(launcher->logind, vt);
389
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700390 return ioctl(launcher->tty, VT_ACTIVATE, vt);
391}
392
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700393struct weston_launcher *
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200394weston_launcher_connect(struct weston_compositor *compositor, int tty,
David Herrmann2ecb84a2014-12-30 14:33:22 +0100395 const char *seat_id, bool sync_drm)
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700396{
397 struct weston_launcher *launcher;
Kristian Høgsberg1eb482d2013-09-17 22:15:37 -0700398 struct wl_event_loop *loop;
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200399 int r;
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700400
401 launcher = malloc(sizeof *launcher);
402 if (launcher == NULL)
403 return NULL;
404
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200405 launcher->logind = NULL;
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700406 launcher->compositor = compositor;
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700407 launcher->drm_fd = -1;
408 launcher->fd = weston_environment_get_fd("WESTON_LAUNCHER_SOCK");
409 if (launcher->fd != -1) {
410 launcher->tty = weston_environment_get_fd("WESTON_TTY_FD");
Kristian Høgsberg9a14b8f2014-04-30 10:40:39 -0700411 /* We don't get a chance to read out the original kb
412 * mode for the tty, so just hard code K_UNICODE here
413 * in case we have to clean if weston-launch dies. */
414 launcher->kb_mode = K_UNICODE;
415
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700416 loop = wl_display_get_event_loop(compositor->wl_display);
417 launcher->source = wl_event_loop_add_fd(loop, launcher->fd,
418 WL_EVENT_READABLE,
419 weston_launcher_data,
420 launcher);
421 if (launcher->source == NULL) {
422 free(launcher);
423 return NULL;
424 }
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700425 } else {
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200426 r = weston_logind_connect(&launcher->logind, compositor,
David Herrmann2ecb84a2014-12-30 14:33:22 +0100427 seat_id, tty, sync_drm);
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200428 if (r < 0) {
429 launcher->logind = NULL;
430 if (geteuid() == 0) {
431 if (setup_tty(launcher, tty) == -1) {
432 free(launcher);
433 return NULL;
434 }
435 } else {
436 free(launcher);
437 return NULL;
438 }
439 }
Kristian Høgsberg1eb482d2013-09-17 22:15:37 -0700440 }
441
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700442 return launcher;
443}
444
445void
446weston_launcher_destroy(struct weston_launcher *launcher)
447{
Kristian Høgsbergd4c1cd72013-10-22 13:19:23 -0700448 if (launcher->logind) {
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200449 weston_logind_destroy(launcher->logind);
Kristian Høgsbergd4c1cd72013-10-22 13:19:23 -0700450 } else if (launcher->fd != -1) {
Kristian Høgsberg3f495872013-09-18 23:00:17 -0700451 close(launcher->fd);
452 wl_event_source_remove(launcher->source);
453 } else {
454 weston_launcher_restore(launcher);
455 wl_event_source_remove(launcher->vt_source);
456 }
457
David Herrmanncc5b2ed2013-10-22 00:28:09 +0200458 if (launcher->tty >= 0)
459 close(launcher->tty);
460
Kristian Høgsberg05ad1e42013-09-17 14:41:03 -0700461 free(launcher);
462}