blob: 4407059719090b787552b807b06a4489eee1f2be [file] [log] [blame]
Egor Starkov7ce2e972015-09-25 18:00:27 +03001/*
2 * Copyright (c) 2015 General Electric Company. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26#include "config.h"
27
28#include <errno.h>
29#include <stdlib.h>
30#include <systemd/sd-daemon.h>
Friedrich, Eugen (ADITG/SW1)265aeb32016-04-05 20:43:29 +000031#include <sys/socket.h>
Egor Starkov7ce2e972015-09-25 18:00:27 +030032#include <wayland-server.h>
33#include "shared/helpers.h"
34#include "shared/zalloc.h"
35#include "compositor.h"
36
37struct systemd_notifier {
38 int watchdog_time;
39 struct wl_event_source *watchdog_source;
40 struct wl_listener compositor_destroy_listener;
41};
42
43static int
Friedrich, Eugen (ADITG/SW1)265aeb32016-04-05 20:43:29 +000044add_systemd_sockets(struct weston_compositor *compositor)
45{
46 int fd;
47 int cnt_systemd_sockets;
48 int current_fd = 0;
49
50 cnt_systemd_sockets = sd_listen_fds(1);
51
52 if (cnt_systemd_sockets < 0) {
53 weston_log("sd_listen_fds failed with: %d\n",
54 cnt_systemd_sockets);
55 return -1;
56 }
57
58 /* socket-based activation not used, return silently */
59 if (cnt_systemd_sockets == 0)
60 return 0;
61
62 while (current_fd < cnt_systemd_sockets) {
63 fd = SD_LISTEN_FDS_START + current_fd;
64
65 if (sd_is_socket(fd, AF_UNIX, SOCK_STREAM,1) <= 0) {
66 weston_log("invalid socket provided from systemd\n");
67 return -1;
68 }
69
70 if (wl_display_add_socket_fd(compositor->wl_display, fd)) {
71 weston_log("wl_display_add_socket_fd failed"
72 "for systemd provided socket\n");
73 return -1;
74 }
75 current_fd++;
76 }
77
78 weston_log("info: add %d socket(s) provided by systemd\n",
79 current_fd);
80
81 return current_fd;
82}
83
84static int
Egor Starkov7ce2e972015-09-25 18:00:27 +030085watchdog_handler(void *data)
86{
87 struct systemd_notifier *notifier = data;
88
89 wl_event_source_timer_update(notifier->watchdog_source,
90 notifier->watchdog_time);
91
92 sd_notify(0, "WATCHDOG=1");
93
94 return 1;
95}
96
97static void
98weston_compositor_destroy_listener(struct wl_listener *listener, void *data)
99{
100 struct systemd_notifier *notifier;
101
102 sd_notify(0, "STOPPING=1");
103
104 notifier = container_of(listener,
105 struct systemd_notifier,
106 compositor_destroy_listener);
107
108 if (notifier->watchdog_source)
109 wl_event_source_remove(notifier->watchdog_source);
110
111 wl_list_remove(&notifier->compositor_destroy_listener.link);
112 free(notifier);
113}
114
115WL_EXPORT int
116module_init(struct weston_compositor *compositor,
117 int *argc, char *argv[])
118{
119 char *tail;
120 char *watchdog_time_env;
121 struct wl_event_loop *loop;
122 long watchdog_time_conv;
123 struct systemd_notifier *notifier;
124
125 notifier = zalloc(sizeof *notifier);
126 if (notifier == NULL)
127 return -1;
128
129 notifier->compositor_destroy_listener.notify =
130 weston_compositor_destroy_listener;
131 wl_signal_add(&compositor->destroy_signal,
132 &notifier->compositor_destroy_listener);
133
Friedrich, Eugen (ADITG/SW1)265aeb32016-04-05 20:43:29 +0000134 if (add_systemd_sockets(compositor) < 0)
135 return -1;
136
Egor Starkov7ce2e972015-09-25 18:00:27 +0300137 sd_notify(0, "READY=1");
138
139 /* 'WATCHDOG_USEC' is environment variable that is set
140 * by systemd to transfer 'WatchdogSec' watchdog timeout
141 * setting from service file.*/
142 watchdog_time_env = getenv("WATCHDOG_USEC");
143
144 if (!watchdog_time_env)
145 return 0;
146
147 errno = 0;
148 watchdog_time_conv = strtol(watchdog_time_env, &tail, 0);
149 if ((errno != 0) || (*tail != '\0'))
150 return 0;
151
152 /* Convert 'WATCHDOG_USEC' to milliseconds and notify
153 * systemd every half of that time.*/
154 watchdog_time_conv /= 1000 * 2;
155 if (watchdog_time_conv <= 0)
156 return 0;
157
158 notifier->watchdog_time = watchdog_time_conv;
159
160 loop = wl_display_get_event_loop(compositor->wl_display);
161 notifier->watchdog_source =
162 wl_event_loop_add_timer(loop, watchdog_handler, notifier);
163 wl_event_source_timer_update(notifier->watchdog_source,
164 notifier->watchdog_time);
165
166 return 0;
167}
168