]> git.proxmox.com Git - pve-ha-manager.git/blame_incremental - src/watchdog-mux.c
watchdog mux: fix comment, there's no systemd .socket anymore
[pve-ha-manager.git] / src / watchdog-mux.c
... / ...
CommitLineData
1#define _GNU_SOURCE
2#include <stdio.h>
3#include <stdlib.h>
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
7#include <errno.h>
8#include <time.h>
9#include <sys/ioctl.h>
10#include <sys/types.h>
11#include <sys/stat.h>
12#include <sys/socket.h>
13#include <sys/un.h>
14#include <sys/epoll.h>
15#include <signal.h>
16#include <sys/signalfd.h>
17
18#include <linux/types.h>
19#include <linux/watchdog.h>
20
21#define WD_SOCK_PATH "/run/watchdog-mux.sock"
22#define WD_ACTIVE_MARKER "/run/watchdog-mux.active"
23
24#define LISTEN_BACKLOG 32
25
26#define MAX_EVENTS 10
27
28#define WATCHDOG_DEV "/dev/watchdog"
29
30#define JOURNALCTL_BIN "/bin/journalctl"
31
32int watchdog_fd = -1;
33int watchdog_timeout = 10;
34int client_watchdog_timeout = 60;
35int update_watchdog = 1;
36
37typedef struct {
38 int fd;
39 time_t time;
40 int magic_close;
41} wd_client_t;
42
43#define MAX_CLIENTS 100
44
45static wd_client_t client_list[MAX_CLIENTS];
46
47static wd_client_t *
48alloc_client(int fd, time_t time)
49{
50 int i;
51
52 for (i = 0; i < MAX_CLIENTS; i++) {
53 if (client_list[i].fd == 0) {
54 client_list[i].fd = fd;
55 client_list[i].time = time;
56 client_list[i].magic_close = 0;
57 return &client_list[i];
58 }
59 }
60
61 return NULL;
62}
63
64static void
65free_client(wd_client_t *wd_client)
66{
67 if (!wd_client)
68 return;
69
70 wd_client->time = 0;
71 wd_client->fd = 0;
72 wd_client->magic_close = 0;
73}
74
75static int
76active_client_count(void)
77{
78 int i, count = 0;
79
80 for (i = 0; i < MAX_CLIENTS; i++) {
81 if (client_list[i].fd != 0 && client_list[i].time != 0) {
82 count++;
83 }
84 }
85
86 return count;
87}
88
89static void
90watchdog_close(void)
91{
92 if (watchdog_fd != -1) {
93 if (write(watchdog_fd, "V", 1) == -1) {
94 perror("write magic watchdog close");
95 }
96 if (close(watchdog_fd) == -1) {
97 perror("write magic watchdog close");
98 }
99 }
100
101 watchdog_fd = -1;
102}
103
104static void
105sync_journal_unsafe(void)
106{
107
108 pid_t child = fork();
109
110 // do not care about fork error or collecting the childs exit status,
111 // we are resetting soon anyway and just want to sync out the journal
112 if (child == 0) {
113 execl(JOURNALCTL_BIN, JOURNALCTL_BIN, "--sync", NULL);
114 exit(-1);
115 }
116}
117
118int
119main(void)
120{
121 struct sockaddr_un my_addr, peer_addr;
122 socklen_t peer_addr_size;
123 struct epoll_event ev, events[MAX_EVENTS];
124 int listen_sock, nfds, epollfd, sigfd;
125
126 struct stat fs;
127
128 if (stat(WD_ACTIVE_MARKER, &fs) == 0) {
129 fprintf(stderr, "watchdog active - unable to restart watchdog-mux\n");
130 exit(EXIT_FAILURE);
131 }
132
133 /* if you want to debug, set options in /lib/modprobe.d/aliases.conf
134 * options softdog soft_noboot=1
135 */
136 if (stat(WATCHDOG_DEV, &fs) == -1) {
137 char *wd_module = getenv("WATCHDOG_MODULE");
138 if (wd_module) {
139 char *cmd = NULL;
140 if ((asprintf(&cmd, "modprobe -q %s", wd_module) == -1)) {
141 perror("assemble modprobe command failed");
142 exit(EXIT_FAILURE);
143 }
144 fprintf(stderr, "Loading watchdog module '%s'\n", wd_module);
145 system(cmd);
146 free(cmd);
147 } else {
148 system("modprobe -q softdog"); // load softdog by default
149 }
150 }
151
152 if ((watchdog_fd = open(WATCHDOG_DEV, O_WRONLY)) == -1) {
153 perror("watchdog open");
154 exit(EXIT_FAILURE);
155 }
156
157 if (ioctl(watchdog_fd, WDIOC_SETTIMEOUT, &watchdog_timeout) == -1) {
158 perror("watchdog set timeout");
159 watchdog_close();
160 exit(EXIT_FAILURE);
161 }
162
163 /* read and log watchdog identity */
164 struct watchdog_info wdinfo;
165 if (ioctl(watchdog_fd, WDIOC_GETSUPPORT, &wdinfo) == -1) {
166 perror("read watchdog info");
167 watchdog_close();
168 exit(EXIT_FAILURE);
169 }
170
171 wdinfo.identity[sizeof(wdinfo.identity) - 1] = 0; // just to be sure
172 fprintf(stderr, "Watchdog driver '%s', version %x\n",
173 wdinfo.identity, wdinfo.firmware_version);
174
175 /* always unlink socket path then create socket */
176 unlink(WD_SOCK_PATH);
177
178 listen_sock = socket(AF_UNIX, SOCK_STREAM, 0);
179 if (listen_sock == -1) {
180 perror("socket create");
181 exit(EXIT_FAILURE);
182 }
183 memset(&my_addr, 0, sizeof(struct sockaddr_un));
184 my_addr.sun_family = AF_UNIX;
185 strncpy(my_addr.sun_path, WD_SOCK_PATH, sizeof(my_addr.sun_path) - 1);
186
187 if (bind(listen_sock, (struct sockaddr *) &my_addr,
188 sizeof(struct sockaddr_un)) == -1) {
189 perror("socket bind");
190 exit(EXIT_FAILURE);
191 }
192
193 if (listen(listen_sock, LISTEN_BACKLOG) == -1) {
194 perror("socket listen");
195 goto err;
196 }
197
198 epollfd = epoll_create(10);
199 if (epollfd == -1) {
200 perror("epoll_create");
201 goto err;
202 }
203
204 ev.events = EPOLLIN;
205 ev.data.ptr = alloc_client(listen_sock, 0);
206 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, listen_sock, &ev) == -1) {
207 perror("epoll_ctl add listen_sock");
208 goto err;
209 }
210
211 sigset_t mask;
212 sigemptyset(&mask);
213 sigaddset(&mask, SIGINT);
214 sigaddset(&mask, SIGTERM);
215 sigaddset(&mask, SIGHUP);
216
217 sigprocmask(SIG_BLOCK, &mask, NULL);
218
219 if ((sigfd = signalfd(-1, &mask, SFD_NONBLOCK)) < 0) {
220 perror("unable to open signalfd");
221 goto err;
222 }
223
224 ev.events = EPOLLIN;
225 ev.data.ptr = alloc_client(sigfd, 0);
226 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, sigfd, &ev) == -1) {
227 perror("epoll_ctl add sigfd");
228 goto err;
229 }
230
231 for (;;) {
232 nfds = epoll_wait(epollfd, events, MAX_EVENTS, 1000);
233 if (nfds == -1) {
234 if (errno == EINTR)
235 continue;
236
237 perror("epoll_pwait");
238 goto err;
239 }
240
241 if (nfds == 0) { // timeout
242
243 // check for timeouts
244 if (update_watchdog) {
245 int i;
246 time_t ctime = time(NULL);
247 for (i = 0; i < MAX_CLIENTS; i++) {
248 if (client_list[i].fd != 0 && client_list[i].time != 0 &&
249 ((ctime - client_list[i].time) > client_watchdog_timeout)) {
250 update_watchdog = 0;
251 fprintf(stderr, "client watchdog expired - disable watchdog updates\n");
252 }
253 }
254 }
255
256 if (update_watchdog) {
257 if (ioctl(watchdog_fd, WDIOC_KEEPALIVE, 0) == -1) {
258 perror("watchdog update failed");
259 }
260 }
261
262 continue;
263 }
264
265 if (!update_watchdog)
266 break;
267
268 int terminate = 0;
269
270 int n;
271 for (n = 0; n < nfds; ++n) {
272 wd_client_t *wd_client = events[n].data.ptr;
273 if (wd_client->fd == listen_sock) {
274 int conn_sock = accept(listen_sock, (struct sockaddr *) &peer_addr, &peer_addr_size);
275 if (conn_sock == -1) {
276 perror("accept");
277 goto err; // fixme
278 }
279 if (fcntl(conn_sock, F_SETFL, O_NONBLOCK) == -1) {
280 perror("setnonblocking");
281 goto err; // fixme
282 }
283
284 wd_client_t *new_client = alloc_client(conn_sock, time(NULL));
285 if (new_client == NULL) {
286 fprintf(stderr, "unable to alloc wd_client structure\n");
287 goto err; // fixme;
288 }
289
290 mkdir(WD_ACTIVE_MARKER, 0600);
291
292 ev.events = EPOLLIN;
293 ev.data.ptr = new_client;
294 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, conn_sock, &ev) == -1) {
295 perror("epoll_ctl: add conn_sock");
296 goto err; // fixme
297 }
298 } else if (wd_client->fd == sigfd) {
299
300 /* signal handling */
301
302 int rv = 0;
303 struct signalfd_siginfo si;
304
305 if ((rv = read(sigfd, &si, sizeof(si))) && rv >= 0) {
306 if (si.ssi_signo == SIGHUP) {
307 perror("got SIGHUP - ignored");
308 } else {
309 terminate = 1;
310 fprintf(stderr, "got terminate request\n");
311 }
312 }
313
314 } else {
315 char buf[4096];
316 int cfd = wd_client->fd;
317
318 ssize_t bytes = read(cfd, buf, sizeof(buf));
319 if (bytes == -1) {
320 perror("read");
321 goto err; // fixme
322 } else if (bytes > 0) {
323 int i;
324 for (i = 0; i < bytes; i++) {
325 if (buf[i] == 'V') {
326 wd_client->magic_close = 1;
327 } else {
328 wd_client->magic_close = 0;
329 }
330 }
331 wd_client->time = time(NULL);
332 } else {
333 if (events[n].events & EPOLLHUP || events[n].events & EPOLLERR) {
334 //printf("GOT %016x event\n", events[n].events);
335 if (epoll_ctl(epollfd, EPOLL_CTL_DEL, cfd, NULL) == -1) {
336 perror("epoll_ctl: del conn_sock");
337 goto err; // fixme
338 }
339 if (close(cfd) == -1) {
340 perror("close conn_sock");
341 goto err; // fixme
342 }
343
344 if (!wd_client->magic_close) {
345 fprintf(stderr, "client did not stop watchdog - disable watchdog updates\n");
346 sync_journal_unsafe();
347 update_watchdog = 0;
348 } else {
349 free_client(wd_client);
350 }
351
352 if (!active_client_count()) {
353 rmdir(WD_ACTIVE_MARKER);
354 }
355 }
356 }
357 }
358 }
359 if (terminate)
360 break;
361 }
362
363 int active_count = active_client_count();
364 if (active_count > 0) {
365 fprintf(stderr, "exit watchdog-mux with active connections\n");
366 sync_journal_unsafe();
367 } else {
368 fprintf(stderr, "clean exit\n");
369 watchdog_close();
370 }
371
372 unlink(WD_SOCK_PATH);
373
374 exit(EXIT_SUCCESS);
375
376err:
377 unlink(WD_SOCK_PATH);
378
379 exit(EXIT_FAILURE);
380}