27e35b1aeddc50c86f8dbdaa38ec797484afe26a
[project/procd.git] / service / instance.c
1 /*
2 * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15 #define _GNU_SOURCE
16 #include <sys/resource.h>
17 #include <sys/types.h>
18 #include <sys/socket.h>
19 #include <sys/stat.h>
20 #include <grp.h>
21 #include <net/if.h>
22 #include <unistd.h>
23 #include <stdint.h>
24 #include <stdio.h>
25 #include <fcntl.h>
26 #include <pwd.h>
27 #include <libgen.h>
28 #include <unistd.h>
29
30 #include <libubox/md5.h>
31
32 #include "../procd.h"
33
34 #include "service.h"
35 #include "instance.h"
36
37
38 enum {
39 INSTANCE_ATTR_COMMAND,
40 INSTANCE_ATTR_ENV,
41 INSTANCE_ATTR_DATA,
42 INSTANCE_ATTR_NETDEV,
43 INSTANCE_ATTR_FILE,
44 INSTANCE_ATTR_TRIGGER,
45 INSTANCE_ATTR_RESPAWN,
46 INSTANCE_ATTR_NICE,
47 INSTANCE_ATTR_LIMITS,
48 INSTANCE_ATTR_WATCH,
49 INSTANCE_ATTR_ERROR,
50 INSTANCE_ATTR_USER,
51 INSTANCE_ATTR_STDOUT,
52 INSTANCE_ATTR_STDERR,
53 INSTANCE_ATTR_NO_NEW_PRIVS,
54 INSTANCE_ATTR_JAIL,
55 INSTANCE_ATTR_TRACE,
56 INSTANCE_ATTR_SECCOMP,
57 INSTANCE_ATTR_PIDFILE,
58 INSTANCE_ATTR_RELOADSIG,
59 INSTANCE_ATTR_TERMTIMEOUT,
60 __INSTANCE_ATTR_MAX
61 };
62
63 static const struct blobmsg_policy instance_attr[__INSTANCE_ATTR_MAX] = {
64 [INSTANCE_ATTR_COMMAND] = { "command", BLOBMSG_TYPE_ARRAY },
65 [INSTANCE_ATTR_ENV] = { "env", BLOBMSG_TYPE_TABLE },
66 [INSTANCE_ATTR_DATA] = { "data", BLOBMSG_TYPE_TABLE },
67 [INSTANCE_ATTR_NETDEV] = { "netdev", BLOBMSG_TYPE_ARRAY },
68 [INSTANCE_ATTR_FILE] = { "file", BLOBMSG_TYPE_ARRAY },
69 [INSTANCE_ATTR_TRIGGER] = { "triggers", BLOBMSG_TYPE_ARRAY },
70 [INSTANCE_ATTR_RESPAWN] = { "respawn", BLOBMSG_TYPE_ARRAY },
71 [INSTANCE_ATTR_NICE] = { "nice", BLOBMSG_TYPE_INT32 },
72 [INSTANCE_ATTR_LIMITS] = { "limits", BLOBMSG_TYPE_TABLE },
73 [INSTANCE_ATTR_WATCH] = { "watch", BLOBMSG_TYPE_ARRAY },
74 [INSTANCE_ATTR_ERROR] = { "error", BLOBMSG_TYPE_ARRAY },
75 [INSTANCE_ATTR_USER] = { "user", BLOBMSG_TYPE_STRING },
76 [INSTANCE_ATTR_STDOUT] = { "stdout", BLOBMSG_TYPE_BOOL },
77 [INSTANCE_ATTR_STDERR] = { "stderr", BLOBMSG_TYPE_BOOL },
78 [INSTANCE_ATTR_NO_NEW_PRIVS] = { "no_new_privs", BLOBMSG_TYPE_BOOL },
79 [INSTANCE_ATTR_JAIL] = { "jail", BLOBMSG_TYPE_TABLE },
80 [INSTANCE_ATTR_TRACE] = { "trace", BLOBMSG_TYPE_BOOL },
81 [INSTANCE_ATTR_SECCOMP] = { "seccomp", BLOBMSG_TYPE_STRING },
82 [INSTANCE_ATTR_PIDFILE] = { "pidfile", BLOBMSG_TYPE_STRING },
83 [INSTANCE_ATTR_RELOADSIG] = { "reload_signal", BLOBMSG_TYPE_INT32 },
84 [INSTANCE_ATTR_TERMTIMEOUT] = { "term_timeout", BLOBMSG_TYPE_INT32 },
85 };
86
87 enum {
88 JAIL_ATTR_NAME,
89 JAIL_ATTR_HOSTNAME,
90 JAIL_ATTR_PROCFS,
91 JAIL_ATTR_SYSFS,
92 JAIL_ATTR_UBUS,
93 JAIL_ATTR_LOG,
94 JAIL_ATTR_RONLY,
95 JAIL_ATTR_MOUNT,
96 __JAIL_ATTR_MAX,
97 };
98
99 static const struct blobmsg_policy jail_attr[__JAIL_ATTR_MAX] = {
100 [JAIL_ATTR_NAME] = { "name", BLOBMSG_TYPE_STRING },
101 [JAIL_ATTR_HOSTNAME] = { "hostname", BLOBMSG_TYPE_STRING },
102 [JAIL_ATTR_PROCFS] = { "procfs", BLOBMSG_TYPE_BOOL },
103 [JAIL_ATTR_SYSFS] = { "sysfs", BLOBMSG_TYPE_BOOL },
104 [JAIL_ATTR_UBUS] = { "ubus", BLOBMSG_TYPE_BOOL },
105 [JAIL_ATTR_LOG] = { "log", BLOBMSG_TYPE_BOOL },
106 [JAIL_ATTR_RONLY] = { "ronly", BLOBMSG_TYPE_BOOL },
107 [JAIL_ATTR_MOUNT] = { "mount", BLOBMSG_TYPE_TABLE },
108 };
109
110 struct instance_netdev {
111 struct blobmsg_list_node node;
112 int ifindex;
113 };
114
115 struct instance_file {
116 struct blobmsg_list_node node;
117 uint32_t md5[4];
118 };
119
120 struct rlimit_name {
121 const char *name;
122 int resource;
123 };
124
125 static const struct rlimit_name rlimit_names[] = {
126 { "as", RLIMIT_AS },
127 { "core", RLIMIT_CORE },
128 { "cpu", RLIMIT_CPU },
129 { "data", RLIMIT_DATA },
130 { "fsize", RLIMIT_FSIZE },
131 { "memlock", RLIMIT_MEMLOCK },
132 { "nofile", RLIMIT_NOFILE },
133 { "nproc", RLIMIT_NPROC },
134 { "rss", RLIMIT_RSS },
135 { "stack", RLIMIT_STACK },
136 #ifdef linux
137 { "nice", RLIMIT_NICE },
138 { "rtprio", RLIMIT_RTPRIO },
139 { "msgqueue", RLIMIT_MSGQUEUE },
140 { "sigpending", RLIMIT_SIGPENDING },
141 #endif
142 { NULL, 0 }
143 };
144
145 static void closefd(int fd)
146 {
147 if (fd > STDERR_FILENO)
148 close(fd);
149 }
150
151 static void
152 instance_limits(const char *limit, const char *value)
153 {
154 int i;
155 struct rlimit rlim;
156 unsigned long cur, max;
157
158 for (i = 0; rlimit_names[i].name != NULL; i++) {
159 if (strcmp(rlimit_names[i].name, limit))
160 continue;
161 if (!strcmp(value, "unlimited")) {
162 rlim.rlim_cur = RLIM_INFINITY;
163 rlim.rlim_max = RLIM_INFINITY;
164 } else {
165 if (getrlimit(rlimit_names[i].resource, &rlim))
166 return;
167
168 cur = rlim.rlim_cur;
169 max = rlim.rlim_max;
170
171 if (sscanf(value, "%lu %lu", &cur, &max) < 1)
172 return;
173
174 rlim.rlim_cur = cur;
175 rlim.rlim_max = max;
176 }
177
178 setrlimit(rlimit_names[i].resource, &rlim);
179 return;
180 }
181 }
182
183 static inline int
184 jail_run(struct service_instance *in, char **argv)
185 {
186 struct blobmsg_list_node *var;
187 struct jail *jail = &in->jail;
188 int argc = 0;
189
190 argv[argc++] = "/sbin/ujail";
191
192 if (jail->name) {
193 argv[argc++] = "-n";
194 argv[argc++] = jail->name;
195 }
196
197 if (jail->hostname) {
198 argv[argc++] = "-h";
199 argv[argc++] = jail->hostname;
200 }
201
202 if (in->seccomp) {
203 argv[argc++] = "-S";
204 argv[argc++] = in->seccomp;
205 }
206
207 if (in->no_new_privs)
208 argv[argc++] = "-c";
209
210 if (jail->procfs)
211 argv[argc++] = "-p";
212
213 if (jail->sysfs)
214 argv[argc++] = "-s";
215
216 if (jail->ubus)
217 argv[argc++] = "-u";
218
219 if (jail->log)
220 argv[argc++] = "-l";
221
222 if (jail->ronly)
223 argv[argc++] = "-o";
224
225 blobmsg_list_for_each(&jail->mount, var) {
226 const char *type = blobmsg_data(var->data);
227
228 if (*type == '1')
229 argv[argc++] = "-w";
230 else
231 argv[argc++] = "-r";
232 argv[argc++] = (char *) blobmsg_name(var->data);
233 }
234
235 argv[argc++] = "--";
236
237 return argc;
238 }
239
240 static int
241 instance_removepid(struct service_instance *in) {
242 if (!in->pidfile)
243 return 0;
244 if (unlink(in->pidfile)) {
245 ERROR("Failed to removed pidfile: %s: %m\n", in->pidfile);
246 return 1;
247 }
248 return 0;
249 }
250
251 static int
252 instance_writepid(struct service_instance *in)
253 {
254 FILE *_pidfile;
255
256 if (!in->pidfile) {
257 return 0;
258 }
259 _pidfile = fopen(in->pidfile, "w");
260 if (_pidfile == NULL) {
261 ERROR("failed to open pidfile for writing: %s: %m", in->pidfile);
262 return 1;
263 }
264 if (fprintf(_pidfile, "%d\n", in->proc.pid) < 0) {
265 ERROR("failed to write pidfile: %s: %m", in->pidfile);
266 fclose(_pidfile);
267 return 2;
268 }
269 if (fclose(_pidfile)) {
270 ERROR("failed to close pidfile: %s: %m", in->pidfile);
271 return 3;
272 }
273
274 return 0;
275 }
276
277 static void
278 instance_run(struct service_instance *in, int _stdout, int _stderr)
279 {
280 struct blobmsg_list_node *var;
281 struct blob_attr *cur;
282 char **argv;
283 int argc = 1; /* NULL terminated */
284 int rem, _stdin;
285 bool seccomp = !in->trace && !in->has_jail && in->seccomp;
286 bool setlbf = _stdout >= 0;
287
288 if (in->nice)
289 setpriority(PRIO_PROCESS, 0, in->nice);
290
291 blobmsg_for_each_attr(cur, in->command, rem)
292 argc++;
293
294 blobmsg_list_for_each(&in->env, var)
295 setenv(blobmsg_name(var->data), blobmsg_data(var->data), 1);
296
297 if (seccomp)
298 setenv("SECCOMP_FILE", in->seccomp, 1);
299
300 if (setlbf)
301 setenv("LD_PRELOAD", "/lib/libsetlbf.so", 1);
302
303 blobmsg_list_for_each(&in->limits, var)
304 instance_limits(blobmsg_name(var->data), blobmsg_data(var->data));
305
306 if (in->trace || seccomp)
307 argc += 1;
308
309 argv = alloca(sizeof(char *) * (argc + in->jail.argc));
310 argc = 0;
311
312 #ifdef SECCOMP_SUPPORT
313 if (in->trace)
314 argv[argc++] = "/sbin/utrace";
315 else if (seccomp)
316 argv[argc++] = "/sbin/seccomp-trace";
317 #else
318 if (in->trace || seccomp)
319 ULOG_WARN("Seccomp support for %s::%s not available\n", in->srv->name, in->name);
320 #endif
321
322 if (in->has_jail)
323 argc = jail_run(in, argv);
324
325 blobmsg_for_each_attr(cur, in->command, rem)
326 argv[argc++] = blobmsg_data(cur);
327
328 argv[argc] = NULL;
329
330 _stdin = open("/dev/null", O_RDONLY);
331
332 if (_stdout == -1)
333 _stdout = open("/dev/null", O_WRONLY);
334
335 if (_stderr == -1)
336 _stderr = open("/dev/null", O_WRONLY);
337
338 if (_stdin > -1) {
339 dup2(_stdin, STDIN_FILENO);
340 closefd(_stdin);
341 }
342 if (_stdout > -1) {
343 dup2(_stdout, STDOUT_FILENO);
344 closefd(_stdout);
345 }
346 if (_stderr > -1) {
347 dup2(_stderr, STDERR_FILENO);
348 closefd(_stderr);
349 }
350
351 if (in->user && in->gid && initgroups(in->user, in->gid)) {
352 ERROR("failed to initgroups() for user %s: %m\n", in->user);
353 exit(127);
354 }
355 if (in->gid && setgid(in->gid)) {
356 ERROR("failed to set group id %d: %m\n", in->gid);
357 exit(127);
358 }
359 if (in->uid && setuid(in->uid)) {
360 ERROR("failed to set user id %d: %m\n", in->uid);
361 exit(127);
362 }
363
364 execvp(argv[0], argv);
365 exit(127);
366 }
367
368 static void
369 instance_free_stdio(struct service_instance *in)
370 {
371 if (in->_stdout.fd.fd > -1) {
372 ustream_free(&in->_stdout.stream);
373 close(in->_stdout.fd.fd);
374 in->_stdout.fd.fd = -1;
375 }
376
377 if (in->_stderr.fd.fd > -1) {
378 ustream_free(&in->_stderr.stream);
379 close(in->_stderr.fd.fd);
380 in->_stderr.fd.fd = -1;
381 }
382 }
383
384 void
385 instance_start(struct service_instance *in)
386 {
387 int pid;
388 int opipe[2] = { -1, -1 };
389 int epipe[2] = { -1, -1 };
390
391 if (!avl_is_empty(&in->errors.avl)) {
392 LOG("Not starting instance %s::%s, an error was indicated\n", in->srv->name, in->name);
393 return;
394 }
395
396 if (!in->command) {
397 LOG("Not starting instance %s::%s, command not set\n", in->srv->name, in->name);
398 return;
399 }
400
401 if (in->proc.pending) {
402 if (in->halt)
403 in->restart = true;
404 return;
405 }
406
407 instance_free_stdio(in);
408 if (in->_stdout.fd.fd > -2) {
409 if (pipe(opipe)) {
410 ULOG_WARN("pipe() failed: %m\n");
411 opipe[0] = opipe[1] = -1;
412 }
413 }
414
415 if (in->_stderr.fd.fd > -2) {
416 if (pipe(epipe)) {
417 ULOG_WARN("pipe() failed: %m\n");
418 epipe[0] = epipe[1] = -1;
419 }
420 }
421
422 in->restart = false;
423 in->halt = false;
424
425 if (!in->valid)
426 return;
427
428 pid = fork();
429 if (pid < 0)
430 return;
431
432 if (!pid) {
433 uloop_done();
434 closefd(opipe[0]);
435 closefd(epipe[0]);
436 instance_run(in, opipe[1], epipe[1]);
437 return;
438 }
439
440 DEBUG(2, "Started instance %s::%s[%d]\n", in->srv->name, in->name, pid);
441 in->proc.pid = pid;
442 instance_writepid(in);
443 clock_gettime(CLOCK_MONOTONIC, &in->start);
444 uloop_process_add(&in->proc);
445
446 if (opipe[0] > -1) {
447 ustream_fd_init(&in->_stdout, opipe[0]);
448 closefd(opipe[1]);
449 fcntl(opipe[0], F_SETFD, FD_CLOEXEC);
450 }
451
452 if (epipe[0] > -1) {
453 ustream_fd_init(&in->_stderr, epipe[0]);
454 closefd(epipe[1]);
455 fcntl(epipe[0], F_SETFD, FD_CLOEXEC);
456 }
457
458 service_event("instance.start", in->srv->name, in->name);
459 }
460
461 static void
462 instance_stdio(struct ustream *s, int prio, struct service_instance *in)
463 {
464 char *newline, *str, *arg0, ident[32];
465 int len;
466
467 arg0 = basename(blobmsg_data(blobmsg_data(in->command)));
468 snprintf(ident, sizeof(ident), "%s[%d]", arg0, in->proc.pid);
469 ulog_open(ULOG_SYSLOG, LOG_DAEMON, ident);
470
471 do {
472 str = ustream_get_read_buf(s, &len);
473 if (!str)
474 break;
475
476 newline = memchr(str, '\n', len);
477 if (!newline && (s->r.buffer_len != len))
478 break;
479
480 if (newline) {
481 *newline = 0;
482 len = newline + 1 - str;
483 }
484 ulog(prio, "%s\n", str);
485
486 ustream_consume(s, len);
487 } while (1);
488
489 ulog_open(ULOG_SYSLOG, LOG_DAEMON, "procd");
490 }
491
492 static void
493 instance_stdout(struct ustream *s, int bytes)
494 {
495 instance_stdio(s, LOG_INFO,
496 container_of(s, struct service_instance, _stdout.stream));
497 }
498
499 static void
500 instance_stderr(struct ustream *s, int bytes)
501 {
502 instance_stdio(s, LOG_ERR,
503 container_of(s, struct service_instance, _stderr.stream));
504 }
505
506 static void
507 instance_timeout(struct uloop_timeout *t)
508 {
509 struct service_instance *in;
510
511 in = container_of(t, struct service_instance, timeout);
512
513 if (in->halt) {
514 LOG("Instance %s::%s pid %d not stopped on SIGTERM, sending SIGKILL instead\n",
515 in->srv->name, in->name, in->proc.pid);
516 kill(in->proc.pid, SIGKILL);
517 } else if (in->restart || in->respawn)
518 instance_start(in);
519 }
520
521 static void
522 instance_exit(struct uloop_process *p, int ret)
523 {
524 struct service_instance *in;
525 struct timespec tp;
526 long runtime;
527
528 in = container_of(p, struct service_instance, proc);
529
530 clock_gettime(CLOCK_MONOTONIC, &tp);
531 runtime = tp.tv_sec - in->start.tv_sec;
532
533 DEBUG(2, "Instance %s::%s exit with error code %d after %ld seconds\n", in->srv->name, in->name, ret, runtime);
534
535 uloop_timeout_cancel(&in->timeout);
536 service_event("instance.stop", in->srv->name, in->name);
537
538 if (in->halt) {
539 instance_removepid(in);
540 if (in->restart)
541 instance_start(in);
542 else {
543 struct service *s = in->srv;
544
545 avl_delete(&s->instances.avl, &in->node.avl);
546 instance_free(in);
547 service_stopped(s);
548 }
549 } else if (in->restart) {
550 instance_start(in);
551 } else if (in->respawn) {
552 if (runtime < in->respawn_threshold)
553 in->respawn_count++;
554 else
555 in->respawn_count = 0;
556 if (in->respawn_count > in->respawn_retry && in->respawn_retry > 0 ) {
557 LOG("Instance %s::%s s in a crash loop %d crashes, %ld seconds since last crash\n",
558 in->srv->name, in->name, in->respawn_count, runtime);
559 in->restart = in->respawn = 0;
560 in->halt = 1;
561 service_event("instance.fail", in->srv->name, in->name);
562 } else {
563 service_event("instance.respawn", in->srv->name, in->name);
564 uloop_timeout_set(&in->timeout, in->respawn_timeout * 1000);
565 }
566 }
567 }
568
569 void
570 instance_stop(struct service_instance *in, bool halt)
571 {
572 if (!in->proc.pending)
573 return;
574 in->halt = halt;
575 in->restart = in->respawn = false;
576 kill(in->proc.pid, SIGTERM);
577 uloop_timeout_set(&in->timeout, in->term_timeout * 1000);
578 }
579
580 static void
581 instance_restart(struct service_instance *in)
582 {
583 if (!in->proc.pending)
584 return;
585
586 if (in->reload_signal) {
587 kill(in->proc.pid, in->reload_signal);
588 return;
589 }
590
591 in->halt = true;
592 in->restart = true;
593 kill(in->proc.pid, SIGTERM);
594 uloop_timeout_set(&in->timeout, in->term_timeout * 1000);
595 }
596
597 static bool string_changed(const char *a, const char *b)
598 {
599 return !((!a && !b) || (a && b && !strcmp(a, b)));
600 }
601
602 static bool
603 instance_config_changed(struct service_instance *in, struct service_instance *in_new)
604 {
605 if (!in->valid)
606 return true;
607
608 if (!blob_attr_equal(in->command, in_new->command))
609 return true;
610
611 if (!blobmsg_list_equal(&in->env, &in_new->env))
612 return true;
613
614 if (!blobmsg_list_equal(&in->netdev, &in_new->netdev))
615 return true;
616
617 if (!blobmsg_list_equal(&in->file, &in_new->file))
618 return true;
619
620 if (in->nice != in_new->nice)
621 return true;
622
623 if (string_changed(in->user, in_new->user))
624 return true;
625
626 if (in->uid != in_new->uid)
627 return true;
628
629 if (in->gid != in_new->gid)
630 return true;
631
632 if (string_changed(in->pidfile, in_new->pidfile))
633 return true;
634
635 if (in->respawn_retry != in_new->respawn_retry)
636 return true;
637 if (in->respawn_threshold != in_new->respawn_threshold)
638 return true;
639 if (in->respawn_timeout != in_new->respawn_timeout)
640 return true;
641
642 if (!blobmsg_list_equal(&in->limits, &in_new->limits))
643 return true;
644
645 if (!blobmsg_list_equal(&in->jail.mount, &in_new->jail.mount))
646 return true;
647
648 if (!blobmsg_list_equal(&in->errors, &in_new->errors))
649 return true;
650
651 return false;
652 }
653
654 static bool
655 instance_netdev_cmp(struct blobmsg_list_node *l1, struct blobmsg_list_node *l2)
656 {
657 struct instance_netdev *n1 = container_of(l1, struct instance_netdev, node);
658 struct instance_netdev *n2 = container_of(l2, struct instance_netdev, node);
659
660 return n1->ifindex == n2->ifindex;
661 }
662
663 static void
664 instance_netdev_update(struct blobmsg_list_node *l)
665 {
666 struct instance_netdev *n = container_of(l, struct instance_netdev, node);
667
668 n->ifindex = if_nametoindex(n->node.avl.key);
669 }
670
671 static bool
672 instance_file_cmp(struct blobmsg_list_node *l1, struct blobmsg_list_node *l2)
673 {
674 struct instance_file *f1 = container_of(l1, struct instance_file, node);
675 struct instance_file *f2 = container_of(l2, struct instance_file, node);
676
677 return !memcmp(f1->md5, f2->md5, sizeof(f1->md5));
678 }
679
680 static void
681 instance_file_update(struct blobmsg_list_node *l)
682 {
683 struct instance_file *f = container_of(l, struct instance_file, node);
684 md5_ctx_t md5;
685 char buf[256];
686 int len, fd;
687
688 memset(f->md5, 0, sizeof(f->md5));
689
690 fd = open(l->avl.key, O_RDONLY);
691 if (fd < 0)
692 return;
693
694 md5_begin(&md5);
695 do {
696 len = read(fd, buf, sizeof(buf));
697 if (len < 0) {
698 if (errno == EINTR)
699 continue;
700
701 break;
702 }
703 if (!len)
704 break;
705
706 md5_hash(buf, len, &md5);
707 } while(1);
708
709 md5_end(f->md5, &md5);
710 close(fd);
711 }
712
713 static void
714 instance_fill_any(struct blobmsg_list *l, struct blob_attr *cur)
715 {
716 if (!cur)
717 return;
718
719 blobmsg_list_fill(l, blobmsg_data(cur), blobmsg_data_len(cur), false);
720 }
721
722 static bool
723 instance_fill_array(struct blobmsg_list *l, struct blob_attr *cur, blobmsg_update_cb cb, bool array)
724 {
725 struct blobmsg_list_node *node;
726
727 if (!cur)
728 return true;
729
730 if (!blobmsg_check_attr_list(cur, BLOBMSG_TYPE_STRING))
731 return false;
732
733 blobmsg_list_fill(l, blobmsg_data(cur), blobmsg_data_len(cur), array);
734 if (cb) {
735 blobmsg_list_for_each(l, node)
736 cb(node);
737 }
738 return true;
739 }
740
741 static int
742 instance_jail_parse(struct service_instance *in, struct blob_attr *attr)
743 {
744 struct blob_attr *tb[__JAIL_ATTR_MAX];
745 struct jail *jail = &in->jail;
746 struct stat s;
747
748 if (stat("/sbin/ujail", &s))
749 return 0;
750
751 blobmsg_parse(jail_attr, __JAIL_ATTR_MAX, tb,
752 blobmsg_data(attr), blobmsg_data_len(attr));
753
754 jail->argc = 2;
755
756 if (tb[JAIL_ATTR_NAME]) {
757 jail->name = blobmsg_get_string(tb[JAIL_ATTR_NAME]);
758 jail->argc += 2;
759 }
760 if (tb[JAIL_ATTR_HOSTNAME]) {
761 jail->hostname = blobmsg_get_string(tb[JAIL_ATTR_HOSTNAME]);
762 jail->argc += 2;
763 }
764 if (tb[JAIL_ATTR_PROCFS]) {
765 jail->procfs = blobmsg_get_bool(tb[JAIL_ATTR_PROCFS]);
766 jail->argc++;
767 }
768 if (tb[JAIL_ATTR_SYSFS]) {
769 jail->sysfs = blobmsg_get_bool(tb[JAIL_ATTR_SYSFS]);
770 jail->argc++;
771 }
772 if (tb[JAIL_ATTR_UBUS]) {
773 jail->ubus = blobmsg_get_bool(tb[JAIL_ATTR_UBUS]);
774 jail->argc++;
775 }
776 if (tb[JAIL_ATTR_LOG]) {
777 jail->log = blobmsg_get_bool(tb[JAIL_ATTR_LOG]);
778 jail->argc++;
779 }
780 if (tb[JAIL_ATTR_RONLY]) {
781 jail->ronly = blobmsg_get_bool(tb[JAIL_ATTR_RONLY]);
782 jail->argc++;
783 }
784 if (tb[JAIL_ATTR_MOUNT]) {
785 struct blob_attr *cur;
786 int rem;
787
788 blobmsg_for_each_attr(cur, tb[JAIL_ATTR_MOUNT], rem)
789 jail->argc += 2;
790 instance_fill_array(&jail->mount, tb[JAIL_ATTR_MOUNT], NULL, false);
791 }
792 if (in->seccomp)
793 jail->argc += 2;
794
795 return 1;
796 }
797
798 static bool
799 instance_config_parse_command(struct service_instance *in, struct blob_attr **tb)
800 {
801 struct blob_attr *cur, *cur2;
802 bool ret = false;
803 int rem;
804
805 cur = tb[INSTANCE_ATTR_COMMAND];
806 if (!cur) {
807 in->command = NULL;
808 return true;
809 }
810
811 if (!blobmsg_check_attr_list(cur, BLOBMSG_TYPE_STRING))
812 return false;
813
814 blobmsg_for_each_attr(cur2, cur, rem) {
815 ret = true;
816 break;
817 }
818
819 in->command = cur;
820 return ret;
821 }
822
823 static bool
824 instance_config_parse(struct service_instance *in)
825 {
826 struct blob_attr *tb[__INSTANCE_ATTR_MAX];
827 struct blob_attr *cur, *cur2;
828 int rem;
829
830 blobmsg_parse(instance_attr, __INSTANCE_ATTR_MAX, tb,
831 blobmsg_data(in->config), blobmsg_data_len(in->config));
832
833 if (!instance_config_parse_command(in, tb))
834 return false;
835
836 if (tb[INSTANCE_ATTR_TERMTIMEOUT])
837 in->term_timeout = blobmsg_get_u32(tb[INSTANCE_ATTR_TERMTIMEOUT]);
838 if (tb[INSTANCE_ATTR_RESPAWN]) {
839 int i = 0;
840 uint32_t vals[3] = { 3600, 5, 5};
841
842 blobmsg_for_each_attr(cur2, tb[INSTANCE_ATTR_RESPAWN], rem) {
843 if ((i >= 3) && (blobmsg_type(cur2) == BLOBMSG_TYPE_STRING))
844 continue;
845 vals[i] = atoi(blobmsg_get_string(cur2));
846 i++;
847 }
848 in->respawn = true;
849 in->respawn_count = 0;
850 in->respawn_threshold = vals[0];
851 in->respawn_timeout = vals[1];
852 in->respawn_retry = vals[2];
853 }
854 if (tb[INSTANCE_ATTR_TRIGGER]) {
855 in->trigger = tb[INSTANCE_ATTR_TRIGGER];
856 trigger_add(in->trigger, in);
857 }
858
859 if (tb[INSTANCE_ATTR_WATCH]) {
860 blobmsg_for_each_attr(cur2, tb[INSTANCE_ATTR_WATCH], rem) {
861 if (blobmsg_type(cur2) != BLOBMSG_TYPE_STRING)
862 continue;
863 DEBUG(3, "watch for %s\n", blobmsg_get_string(cur2));
864 watch_add(blobmsg_get_string(cur2), in);
865 }
866 }
867
868 if ((cur = tb[INSTANCE_ATTR_NICE])) {
869 in->nice = (int8_t) blobmsg_get_u32(cur);
870 if (in->nice < -20 || in->nice > 20)
871 return false;
872 }
873
874 if (tb[INSTANCE_ATTR_USER]) {
875 const char *user = blobmsg_get_string(tb[INSTANCE_ATTR_USER]);
876 struct passwd *p = getpwnam(user);
877 if (p) {
878 in->user = strdup(user);
879 in->uid = p->pw_uid;
880 in->gid = p->pw_gid;
881 }
882 }
883
884 if (tb[INSTANCE_ATTR_TRACE])
885 in->trace = blobmsg_get_bool(tb[INSTANCE_ATTR_TRACE]);
886
887 if (tb[INSTANCE_ATTR_NO_NEW_PRIVS])
888 in->no_new_privs = blobmsg_get_bool(tb[INSTANCE_ATTR_NO_NEW_PRIVS]);
889
890 if (!in->trace && tb[INSTANCE_ATTR_SECCOMP])
891 in->seccomp = blobmsg_get_string(tb[INSTANCE_ATTR_SECCOMP]);
892
893 if (tb[INSTANCE_ATTR_PIDFILE]) {
894 char *pidfile = blobmsg_get_string(tb[INSTANCE_ATTR_PIDFILE]);
895 if (pidfile)
896 in->pidfile = pidfile;
897 }
898
899 if (tb[INSTANCE_ATTR_RELOADSIG])
900 in->reload_signal = blobmsg_get_u32(tb[INSTANCE_ATTR_RELOADSIG]);
901
902 if (!in->trace && tb[INSTANCE_ATTR_JAIL])
903 in->has_jail = instance_jail_parse(in, tb[INSTANCE_ATTR_JAIL]);
904
905 if (tb[INSTANCE_ATTR_STDOUT] && blobmsg_get_bool(tb[INSTANCE_ATTR_STDOUT]))
906 in->_stdout.fd.fd = -1;
907
908 if (tb[INSTANCE_ATTR_STDERR] && blobmsg_get_bool(tb[INSTANCE_ATTR_STDERR]))
909 in->_stderr.fd.fd = -1;
910
911 instance_fill_any(&in->data, tb[INSTANCE_ATTR_DATA]);
912
913 if (!instance_fill_array(&in->env, tb[INSTANCE_ATTR_ENV], NULL, false))
914 return false;
915
916 if (!instance_fill_array(&in->netdev, tb[INSTANCE_ATTR_NETDEV], instance_netdev_update, true))
917 return false;
918
919 if (!instance_fill_array(&in->file, tb[INSTANCE_ATTR_FILE], instance_file_update, true))
920 return false;
921
922 if (!instance_fill_array(&in->limits, tb[INSTANCE_ATTR_LIMITS], NULL, false))
923 return false;
924
925 if (!instance_fill_array(&in->errors, tb[INSTANCE_ATTR_ERROR], NULL, true))
926 return false;
927
928 return true;
929 }
930
931 static void
932 instance_config_cleanup(struct service_instance *in)
933 {
934 blobmsg_list_free(&in->env);
935 blobmsg_list_free(&in->data);
936 blobmsg_list_free(&in->netdev);
937 blobmsg_list_free(&in->file);
938 blobmsg_list_free(&in->limits);
939 blobmsg_list_free(&in->errors);
940 blobmsg_list_free(&in->jail.mount);
941 }
942
943 static void
944 instance_config_move(struct service_instance *in, struct service_instance *in_src)
945 {
946 instance_config_cleanup(in);
947 blobmsg_list_move(&in->env, &in_src->env);
948 blobmsg_list_move(&in->data, &in_src->data);
949 blobmsg_list_move(&in->netdev, &in_src->netdev);
950 blobmsg_list_move(&in->file, &in_src->file);
951 blobmsg_list_move(&in->limits, &in_src->limits);
952 blobmsg_list_move(&in->errors, &in_src->errors);
953 blobmsg_list_move(&in->jail.mount, &in_src->jail.mount);
954 in->trigger = in_src->trigger;
955 in->command = in_src->command;
956 in->pidfile = in_src->pidfile;
957 in->respawn_retry = in_src->respawn_retry;
958 in->respawn_threshold = in_src->respawn_threshold;
959 in->respawn_timeout = in_src->respawn_timeout;
960 in->name = in_src->name;
961 in->trace = in_src->trace;
962 in->node.avl.key = in_src->node.avl.key;
963
964 free(in->config);
965 in->config = in_src->config;
966 in_src->config = NULL;
967 }
968
969 void
970 instance_update(struct service_instance *in, struct service_instance *in_new)
971 {
972 bool changed = instance_config_changed(in, in_new);
973 bool running = in->proc.pending;
974 bool stopping = in->halt;
975
976 if (!running || stopping) {
977 instance_config_move(in, in_new);
978 instance_start(in);
979 } else {
980 if (changed)
981 instance_restart(in);
982 instance_config_move(in, in_new);
983 /* restart happens in the child callback handler */
984 }
985 }
986
987 void
988 instance_free(struct service_instance *in)
989 {
990 instance_free_stdio(in);
991 uloop_process_delete(&in->proc);
992 uloop_timeout_cancel(&in->timeout);
993 trigger_del(in);
994 watch_del(in);
995 instance_config_cleanup(in);
996 free(in->config);
997 free(in->user);
998 free(in);
999 }
1000
1001 void
1002 instance_init(struct service_instance *in, struct service *s, struct blob_attr *config)
1003 {
1004 config = blob_memdup(config);
1005 in->srv = s;
1006 in->name = blobmsg_name(config);
1007 in->config = config;
1008 in->timeout.cb = instance_timeout;
1009 in->proc.cb = instance_exit;
1010 in->term_timeout = 5;
1011
1012 in->_stdout.fd.fd = -2;
1013 in->_stdout.stream.string_data = true;
1014 in->_stdout.stream.notify_read = instance_stdout;
1015
1016 in->_stderr.fd.fd = -2;
1017 in->_stderr.stream.string_data = true;
1018 in->_stderr.stream.notify_read = instance_stderr;
1019
1020 blobmsg_list_init(&in->netdev, struct instance_netdev, node, instance_netdev_cmp);
1021 blobmsg_list_init(&in->file, struct instance_file, node, instance_file_cmp);
1022 blobmsg_list_simple_init(&in->env);
1023 blobmsg_list_simple_init(&in->data);
1024 blobmsg_list_simple_init(&in->limits);
1025 blobmsg_list_simple_init(&in->errors);
1026 blobmsg_list_simple_init(&in->jail.mount);
1027 in->valid = instance_config_parse(in);
1028 }
1029
1030 void instance_dump(struct blob_buf *b, struct service_instance *in, int verbose)
1031 {
1032 void *i;
1033
1034 if (!in->valid)
1035 return;
1036
1037 i = blobmsg_open_table(b, in->name);
1038 blobmsg_add_u8(b, "running", in->proc.pending);
1039 if (in->proc.pending)
1040 blobmsg_add_u32(b, "pid", in->proc.pid);
1041 if (in->command)
1042 blobmsg_add_blob(b, in->command);
1043 blobmsg_add_u32(b, "term_timeout", in->term_timeout);
1044
1045 if (!avl_is_empty(&in->errors.avl)) {
1046 struct blobmsg_list_node *var;
1047 void *e = blobmsg_open_array(b, "errors");
1048 blobmsg_list_for_each(&in->errors, var)
1049 blobmsg_add_string(b, NULL, blobmsg_data(var->data));
1050 blobmsg_close_table(b, e);
1051 }
1052
1053 if (!avl_is_empty(&in->env.avl)) {
1054 struct blobmsg_list_node *var;
1055 void *e = blobmsg_open_table(b, "env");
1056 blobmsg_list_for_each(&in->env, var)
1057 blobmsg_add_string(b, blobmsg_name(var->data), blobmsg_data(var->data));
1058 blobmsg_close_table(b, e);
1059 }
1060
1061 if (!avl_is_empty(&in->data.avl)) {
1062 struct blobmsg_list_node *var;
1063 void *e = blobmsg_open_table(b, "data");
1064 blobmsg_list_for_each(&in->data, var)
1065 blobmsg_add_blob(b, var->data);
1066 blobmsg_close_table(b, e);
1067 }
1068
1069 if (!avl_is_empty(&in->limits.avl)) {
1070 struct blobmsg_list_node *var;
1071 void *e = blobmsg_open_table(b, "limits");
1072 blobmsg_list_for_each(&in->limits, var)
1073 blobmsg_add_string(b, blobmsg_name(var->data), blobmsg_data(var->data));
1074 blobmsg_close_table(b, e);
1075 }
1076
1077 if (in->reload_signal)
1078 blobmsg_add_u32(b, "reload_signal", in->reload_signal);
1079
1080 if (in->respawn) {
1081 void *r = blobmsg_open_table(b, "respawn");
1082 blobmsg_add_u32(b, "threshold", in->respawn_threshold);
1083 blobmsg_add_u32(b, "timeout", in->respawn_timeout);
1084 blobmsg_add_u32(b, "retry", in->respawn_retry);
1085 blobmsg_close_table(b, r);
1086 }
1087
1088 if (in->trace)
1089 blobmsg_add_u8(b, "trace", true);
1090
1091 if (in->no_new_privs)
1092 blobmsg_add_u8(b, "no_new_privs", true);
1093
1094 if (in->seccomp)
1095 blobmsg_add_string(b, "seccomp", in->seccomp);
1096
1097 if (in->pidfile)
1098 blobmsg_add_string(b, "pidfile", in->pidfile);
1099
1100 if (in->has_jail) {
1101 void *r = blobmsg_open_table(b, "jail");
1102 if (in->jail.name)
1103 blobmsg_add_string(b, "name", in->jail.name);
1104 if (in->jail.hostname)
1105 blobmsg_add_string(b, "hostname", in->jail.hostname);
1106 blobmsg_add_u8(b, "procfs", in->jail.procfs);
1107 blobmsg_add_u8(b, "sysfs", in->jail.sysfs);
1108 blobmsg_add_u8(b, "ubus", in->jail.ubus);
1109 blobmsg_add_u8(b, "log", in->jail.log);
1110 blobmsg_add_u8(b, "ronly", in->jail.ronly);
1111 blobmsg_close_table(b, r);
1112 if (!avl_is_empty(&in->jail.mount.avl)) {
1113 struct blobmsg_list_node *var;
1114 void *e = blobmsg_open_table(b, "mount");
1115 blobmsg_list_for_each(&in->jail.mount, var)
1116 blobmsg_add_string(b, blobmsg_name(var->data), blobmsg_data(var->data));
1117 blobmsg_close_table(b, e);
1118 }
1119 }
1120
1121 if (verbose && in->trigger)
1122 blobmsg_add_blob(b, in->trigger);
1123
1124 blobmsg_close_table(b, i);
1125 }