service: initialize supplementary group ids
[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, NULL);
473                 if (!str)
474                         break;
475
476                 newline = strchr(str, '\n');
477                 if (!newline)
478                         break;
479
480                 *newline = 0;
481                 ulog(prio, "%s\n", str);
482
483                 len = newline + 1 - str;
484                 ustream_consume(s, len);
485         } while (1);
486
487         ulog_open(ULOG_SYSLOG, LOG_DAEMON, "procd");
488 }
489
490 static void
491 instance_stdout(struct ustream *s, int bytes)
492 {
493         instance_stdio(s, LOG_INFO,
494                        container_of(s, struct service_instance, _stdout.stream));
495 }
496
497 static void
498 instance_stderr(struct ustream *s, int bytes)
499 {
500         instance_stdio(s, LOG_ERR,
501                        container_of(s, struct service_instance, _stderr.stream));
502 }
503
504 static void
505 instance_timeout(struct uloop_timeout *t)
506 {
507         struct service_instance *in;
508
509         in = container_of(t, struct service_instance, timeout);
510
511         if (in->halt) {
512                 LOG("Instance %s::%s pid %d not stopped on SIGTERM, sending SIGKILL instead\n",
513                                 in->srv->name, in->name, in->proc.pid);
514                 kill(in->proc.pid, SIGKILL);
515         } else if (in->restart || in->respawn)
516                 instance_start(in);
517 }
518
519 static void
520 instance_exit(struct uloop_process *p, int ret)
521 {
522         struct service_instance *in;
523         struct timespec tp;
524         long runtime;
525
526         in = container_of(p, struct service_instance, proc);
527
528         clock_gettime(CLOCK_MONOTONIC, &tp);
529         runtime = tp.tv_sec - in->start.tv_sec;
530
531         DEBUG(2, "Instance %s::%s exit with error code %d after %ld seconds\n", in->srv->name, in->name, ret, runtime);
532
533         uloop_timeout_cancel(&in->timeout);
534         service_event("instance.stop", in->srv->name, in->name);
535
536         if (in->halt) {
537                 instance_removepid(in);
538                 if (in->restart)
539                         instance_start(in);
540                 else {
541                         struct service *s = in->srv;
542
543                         avl_delete(&s->instances.avl, &in->node.avl);
544                         instance_free(in);
545                         service_stopped(s);
546                 }
547         } else if (in->restart) {
548                 instance_start(in);
549         } else if (in->respawn) {
550                 if (runtime < in->respawn_threshold)
551                         in->respawn_count++;
552                 else
553                         in->respawn_count = 0;
554                 if (in->respawn_count > in->respawn_retry && in->respawn_retry > 0 ) {
555                         LOG("Instance %s::%s s in a crash loop %d crashes, %ld seconds since last crash\n",
556                                                                 in->srv->name, in->name, in->respawn_count, runtime);
557                         in->restart = in->respawn = 0;
558                         in->halt = 1;
559                         service_event("instance.fail", in->srv->name, in->name);
560                 } else {
561                         service_event("instance.respawn", in->srv->name, in->name);
562                         uloop_timeout_set(&in->timeout, in->respawn_timeout * 1000);
563                 }
564         }
565 }
566
567 void
568 instance_stop(struct service_instance *in, bool halt)
569 {
570         if (!in->proc.pending)
571                 return;
572         in->halt = halt;
573         in->restart = in->respawn = false;
574         kill(in->proc.pid, SIGTERM);
575         uloop_timeout_set(&in->timeout, in->term_timeout * 1000);
576 }
577
578 static void
579 instance_restart(struct service_instance *in)
580 {
581         if (!in->proc.pending)
582                 return;
583
584         if (in->reload_signal) {
585                 kill(in->proc.pid, in->reload_signal);
586                 return;
587         }
588
589         in->halt = true;
590         in->restart = true;
591         kill(in->proc.pid, SIGTERM);
592         uloop_timeout_set(&in->timeout, in->term_timeout * 1000);
593 }
594
595 static bool string_changed(const char *a, const char *b)
596 {
597         return !((!a && !b) || (a && b && !strcmp(a, b)));
598 }
599
600 static bool
601 instance_config_changed(struct service_instance *in, struct service_instance *in_new)
602 {
603         if (!in->valid)
604                 return true;
605
606         if (!blob_attr_equal(in->command, in_new->command))
607                 return true;
608
609         if (!blobmsg_list_equal(&in->env, &in_new->env))
610                 return true;
611
612         if (!blobmsg_list_equal(&in->netdev, &in_new->netdev))
613                 return true;
614
615         if (!blobmsg_list_equal(&in->file, &in_new->file))
616                 return true;
617
618         if (in->nice != in_new->nice)
619                 return true;
620
621         if (string_changed(in->user, in_new->user))
622                 return true;
623
624         if (in->uid != in_new->uid)
625                 return true;
626
627         if (in->gid != in_new->gid)
628                 return true;
629
630         if (string_changed(in->pidfile, in_new->pidfile))
631                 return true;
632
633         if (in->respawn_retry != in_new->respawn_retry)
634                 return true;
635         if (in->respawn_threshold != in_new->respawn_threshold)
636                 return true;
637         if (in->respawn_timeout != in_new->respawn_timeout)
638                 return true;
639
640         if (!blobmsg_list_equal(&in->limits, &in_new->limits))
641                 return true;
642
643         if (!blobmsg_list_equal(&in->jail.mount, &in_new->jail.mount))
644                 return true;
645
646         if (!blobmsg_list_equal(&in->errors, &in_new->errors))
647                 return true;
648
649         return false;
650 }
651
652 static bool
653 instance_netdev_cmp(struct blobmsg_list_node *l1, struct blobmsg_list_node *l2)
654 {
655         struct instance_netdev *n1 = container_of(l1, struct instance_netdev, node);
656         struct instance_netdev *n2 = container_of(l2, struct instance_netdev, node);
657
658         return n1->ifindex == n2->ifindex;
659 }
660
661 static void
662 instance_netdev_update(struct blobmsg_list_node *l)
663 {
664         struct instance_netdev *n = container_of(l, struct instance_netdev, node);
665
666         n->ifindex = if_nametoindex(n->node.avl.key);
667 }
668
669 static bool
670 instance_file_cmp(struct blobmsg_list_node *l1, struct blobmsg_list_node *l2)
671 {
672         struct instance_file *f1 = container_of(l1, struct instance_file, node);
673         struct instance_file *f2 = container_of(l2, struct instance_file, node);
674
675         return !memcmp(f1->md5, f2->md5, sizeof(f1->md5));
676 }
677
678 static void
679 instance_file_update(struct blobmsg_list_node *l)
680 {
681         struct instance_file *f = container_of(l, struct instance_file, node);
682         md5_ctx_t md5;
683         char buf[256];
684         int len, fd;
685
686         memset(f->md5, 0, sizeof(f->md5));
687
688         fd = open(l->avl.key, O_RDONLY);
689         if (fd < 0)
690                 return;
691
692         md5_begin(&md5);
693         do {
694                 len = read(fd, buf, sizeof(buf));
695                 if (len < 0) {
696                         if (errno == EINTR)
697                                 continue;
698
699                         break;
700                 }
701                 if (!len)
702                         break;
703
704                 md5_hash(buf, len, &md5);
705         } while(1);
706
707         md5_end(f->md5, &md5);
708         close(fd);
709 }
710
711 static void
712 instance_fill_any(struct blobmsg_list *l, struct blob_attr *cur)
713 {
714         if (!cur)
715                 return;
716
717         blobmsg_list_fill(l, blobmsg_data(cur), blobmsg_data_len(cur), false);
718 }
719
720 static bool
721 instance_fill_array(struct blobmsg_list *l, struct blob_attr *cur, blobmsg_update_cb cb, bool array)
722 {
723         struct blobmsg_list_node *node;
724
725         if (!cur)
726                 return true;
727
728         if (!blobmsg_check_attr_list(cur, BLOBMSG_TYPE_STRING))
729                 return false;
730
731         blobmsg_list_fill(l, blobmsg_data(cur), blobmsg_data_len(cur), array);
732         if (cb) {
733                 blobmsg_list_for_each(l, node)
734                         cb(node);
735         }
736         return true;
737 }
738
739 static int
740 instance_jail_parse(struct service_instance *in, struct blob_attr *attr)
741 {
742         struct blob_attr *tb[__JAIL_ATTR_MAX];
743         struct jail *jail = &in->jail;
744         struct stat s;
745
746         if (stat("/sbin/ujail", &s))
747                 return 0;
748
749         blobmsg_parse(jail_attr, __JAIL_ATTR_MAX, tb,
750                 blobmsg_data(attr), blobmsg_data_len(attr));
751
752         jail->argc = 2;
753
754         if (tb[JAIL_ATTR_NAME]) {
755                 jail->name = blobmsg_get_string(tb[JAIL_ATTR_NAME]);
756                 jail->argc += 2;
757         }
758         if (tb[JAIL_ATTR_HOSTNAME]) {
759                 jail->hostname = blobmsg_get_string(tb[JAIL_ATTR_HOSTNAME]);
760                 jail->argc += 2;
761         }
762         if (tb[JAIL_ATTR_PROCFS]) {
763                 jail->procfs = blobmsg_get_bool(tb[JAIL_ATTR_PROCFS]);
764                 jail->argc++;
765         }
766         if (tb[JAIL_ATTR_SYSFS]) {
767                 jail->sysfs = blobmsg_get_bool(tb[JAIL_ATTR_SYSFS]);
768                 jail->argc++;
769         }
770         if (tb[JAIL_ATTR_UBUS]) {
771                 jail->ubus = blobmsg_get_bool(tb[JAIL_ATTR_UBUS]);
772                 jail->argc++;
773         }
774         if (tb[JAIL_ATTR_LOG]) {
775                 jail->log = blobmsg_get_bool(tb[JAIL_ATTR_LOG]);
776                 jail->argc++;
777         }
778         if (tb[JAIL_ATTR_RONLY]) {
779                 jail->ronly = blobmsg_get_bool(tb[JAIL_ATTR_RONLY]);
780                 jail->argc++;
781         }
782         if (tb[JAIL_ATTR_MOUNT]) {
783                 struct blob_attr *cur;
784                 int rem;
785
786                 blobmsg_for_each_attr(cur, tb[JAIL_ATTR_MOUNT], rem)
787                         jail->argc += 2;
788                 instance_fill_array(&jail->mount, tb[JAIL_ATTR_MOUNT], NULL, false);
789         }
790         if (in->seccomp)
791                 jail->argc += 2;
792
793         return 1;
794 }
795
796 static bool
797 instance_config_parse_command(struct service_instance *in, struct blob_attr **tb)
798 {
799         struct blob_attr *cur, *cur2;
800         bool ret = false;
801         int rem;
802
803         cur = tb[INSTANCE_ATTR_COMMAND];
804         if (!cur) {
805                 in->command = NULL;
806                 return true;
807         }
808
809         if (!blobmsg_check_attr_list(cur, BLOBMSG_TYPE_STRING))
810                 return false;
811
812         blobmsg_for_each_attr(cur2, cur, rem) {
813                 ret = true;
814                 break;
815         }
816
817         in->command = cur;
818         return ret;
819 }
820
821 static bool
822 instance_config_parse(struct service_instance *in)
823 {
824         struct blob_attr *tb[__INSTANCE_ATTR_MAX];
825         struct blob_attr *cur, *cur2;
826         int rem;
827
828         blobmsg_parse(instance_attr, __INSTANCE_ATTR_MAX, tb,
829                 blobmsg_data(in->config), blobmsg_data_len(in->config));
830
831         if (!instance_config_parse_command(in, tb))
832                 return false;
833
834         if (tb[INSTANCE_ATTR_TERMTIMEOUT])
835                 in->term_timeout = blobmsg_get_u32(tb[INSTANCE_ATTR_TERMTIMEOUT]);
836         if (tb[INSTANCE_ATTR_RESPAWN]) {
837                 int i = 0;
838                 uint32_t vals[3] = { 3600, 5, 5};
839
840                 blobmsg_for_each_attr(cur2, tb[INSTANCE_ATTR_RESPAWN], rem) {
841                         if ((i >= 3) && (blobmsg_type(cur2) == BLOBMSG_TYPE_STRING))
842                                 continue;
843                         vals[i] = atoi(blobmsg_get_string(cur2));
844                         i++;
845                 }
846                 in->respawn = true;
847                 in->respawn_count = 0;
848                 in->respawn_threshold = vals[0];
849                 in->respawn_timeout = vals[1];
850                 in->respawn_retry = vals[2];
851         }
852         if (tb[INSTANCE_ATTR_TRIGGER]) {
853                 in->trigger = tb[INSTANCE_ATTR_TRIGGER];
854                 trigger_add(in->trigger, in);
855         }
856
857         if (tb[INSTANCE_ATTR_WATCH]) {
858                 blobmsg_for_each_attr(cur2, tb[INSTANCE_ATTR_WATCH], rem) {
859                         if (blobmsg_type(cur2) != BLOBMSG_TYPE_STRING)
860                                 continue;
861                         DEBUG(3, "watch for %s\n", blobmsg_get_string(cur2));
862                         watch_add(blobmsg_get_string(cur2), in);
863                 }
864         }
865
866         if ((cur = tb[INSTANCE_ATTR_NICE])) {
867                 in->nice = (int8_t) blobmsg_get_u32(cur);
868                 if (in->nice < -20 || in->nice > 20)
869                         return false;
870         }
871
872         if (tb[INSTANCE_ATTR_USER]) {
873                 const char *user = blobmsg_get_string(tb[INSTANCE_ATTR_USER]);
874                 struct passwd *p = getpwnam(user);
875                 if (p) {
876                         in->user = strdup(user);
877                         in->uid = p->pw_uid;
878                         in->gid = p->pw_gid;
879                 }
880         }
881
882         if (tb[INSTANCE_ATTR_TRACE])
883                 in->trace = blobmsg_get_bool(tb[INSTANCE_ATTR_TRACE]);
884
885         if (tb[INSTANCE_ATTR_NO_NEW_PRIVS])
886                 in->no_new_privs = blobmsg_get_bool(tb[INSTANCE_ATTR_NO_NEW_PRIVS]);
887
888         if (!in->trace && tb[INSTANCE_ATTR_SECCOMP])
889                 in->seccomp = blobmsg_get_string(tb[INSTANCE_ATTR_SECCOMP]);
890
891         if (tb[INSTANCE_ATTR_PIDFILE]) {
892                 char *pidfile = blobmsg_get_string(tb[INSTANCE_ATTR_PIDFILE]);
893                 if (pidfile)
894                         in->pidfile = pidfile;
895         }
896
897         if (tb[INSTANCE_ATTR_RELOADSIG])
898                 in->reload_signal = blobmsg_get_u32(tb[INSTANCE_ATTR_RELOADSIG]);
899
900         if (!in->trace && tb[INSTANCE_ATTR_JAIL])
901                 in->has_jail = instance_jail_parse(in, tb[INSTANCE_ATTR_JAIL]);
902
903         if (tb[INSTANCE_ATTR_STDOUT] && blobmsg_get_bool(tb[INSTANCE_ATTR_STDOUT]))
904                 in->_stdout.fd.fd = -1;
905
906         if (tb[INSTANCE_ATTR_STDERR] && blobmsg_get_bool(tb[INSTANCE_ATTR_STDERR]))
907                 in->_stderr.fd.fd = -1;
908
909         instance_fill_any(&in->data, tb[INSTANCE_ATTR_DATA]);
910
911         if (!instance_fill_array(&in->env, tb[INSTANCE_ATTR_ENV], NULL, false))
912                 return false;
913
914         if (!instance_fill_array(&in->netdev, tb[INSTANCE_ATTR_NETDEV], instance_netdev_update, true))
915                 return false;
916
917         if (!instance_fill_array(&in->file, tb[INSTANCE_ATTR_FILE], instance_file_update, true))
918                 return false;
919
920         if (!instance_fill_array(&in->limits, tb[INSTANCE_ATTR_LIMITS], NULL, false))
921                 return false;
922
923         if (!instance_fill_array(&in->errors, tb[INSTANCE_ATTR_ERROR], NULL, true))
924                 return false;
925
926         return true;
927 }
928
929 static void
930 instance_config_cleanup(struct service_instance *in)
931 {
932         blobmsg_list_free(&in->env);
933         blobmsg_list_free(&in->data);
934         blobmsg_list_free(&in->netdev);
935         blobmsg_list_free(&in->file);
936         blobmsg_list_free(&in->limits);
937         blobmsg_list_free(&in->errors);
938         blobmsg_list_free(&in->jail.mount);
939 }
940
941 static void
942 instance_config_move(struct service_instance *in, struct service_instance *in_src)
943 {
944         instance_config_cleanup(in);
945         blobmsg_list_move(&in->env, &in_src->env);
946         blobmsg_list_move(&in->data, &in_src->data);
947         blobmsg_list_move(&in->netdev, &in_src->netdev);
948         blobmsg_list_move(&in->file, &in_src->file);
949         blobmsg_list_move(&in->limits, &in_src->limits);
950         blobmsg_list_move(&in->errors, &in_src->errors);
951         blobmsg_list_move(&in->jail.mount, &in_src->jail.mount);
952         in->trigger = in_src->trigger;
953         in->command = in_src->command;
954         in->pidfile = in_src->pidfile;
955         in->respawn_retry = in_src->respawn_retry;
956         in->respawn_threshold = in_src->respawn_threshold;
957         in->respawn_timeout = in_src->respawn_timeout;
958         in->name = in_src->name;
959         in->trace = in_src->trace;
960         in->node.avl.key = in_src->node.avl.key;
961
962         free(in->config);
963         in->config = in_src->config;
964         in_src->config = NULL;
965 }
966
967 void
968 instance_update(struct service_instance *in, struct service_instance *in_new)
969 {
970         bool changed = instance_config_changed(in, in_new);
971         bool running = in->proc.pending;
972         bool stopping = in->halt;
973
974         if (!running || stopping) {
975                 instance_config_move(in, in_new);
976                 instance_start(in);
977         } else {
978                 if (changed)
979                         instance_restart(in);
980                 instance_config_move(in, in_new);
981                 /* restart happens in the child callback handler */
982         }
983 }
984
985 void
986 instance_free(struct service_instance *in)
987 {
988         instance_free_stdio(in);
989         uloop_process_delete(&in->proc);
990         uloop_timeout_cancel(&in->timeout);
991         trigger_del(in);
992         watch_del(in);
993         instance_config_cleanup(in);
994         free(in->config);
995         free(in->user);
996         free(in);
997 }
998
999 void
1000 instance_init(struct service_instance *in, struct service *s, struct blob_attr *config)
1001 {
1002         config = blob_memdup(config);
1003         in->srv = s;
1004         in->name = blobmsg_name(config);
1005         in->config = config;
1006         in->timeout.cb = instance_timeout;
1007         in->proc.cb = instance_exit;
1008         in->term_timeout = 5;
1009
1010         in->_stdout.fd.fd = -2;
1011         in->_stdout.stream.string_data = true;
1012         in->_stdout.stream.notify_read = instance_stdout;
1013
1014         in->_stderr.fd.fd = -2;
1015         in->_stderr.stream.string_data = true;
1016         in->_stderr.stream.notify_read = instance_stderr;
1017
1018         blobmsg_list_init(&in->netdev, struct instance_netdev, node, instance_netdev_cmp);
1019         blobmsg_list_init(&in->file, struct instance_file, node, instance_file_cmp);
1020         blobmsg_list_simple_init(&in->env);
1021         blobmsg_list_simple_init(&in->data);
1022         blobmsg_list_simple_init(&in->limits);
1023         blobmsg_list_simple_init(&in->errors);
1024         blobmsg_list_simple_init(&in->jail.mount);
1025         in->valid = instance_config_parse(in);
1026 }
1027
1028 void instance_dump(struct blob_buf *b, struct service_instance *in, int verbose)
1029 {
1030         void *i;
1031
1032         if (!in->valid)
1033                 return;
1034
1035         i = blobmsg_open_table(b, in->name);
1036         blobmsg_add_u8(b, "running", in->proc.pending);
1037         if (in->proc.pending)
1038                 blobmsg_add_u32(b, "pid", in->proc.pid);
1039         if (in->command)
1040                 blobmsg_add_blob(b, in->command);
1041         blobmsg_add_u32(b, "term_timeout", in->term_timeout);
1042
1043         if (!avl_is_empty(&in->errors.avl)) {
1044                 struct blobmsg_list_node *var;
1045                 void *e = blobmsg_open_array(b, "errors");
1046                 blobmsg_list_for_each(&in->errors, var)
1047                         blobmsg_add_string(b, NULL, blobmsg_data(var->data));
1048                 blobmsg_close_table(b, e);
1049         }
1050
1051         if (!avl_is_empty(&in->env.avl)) {
1052                 struct blobmsg_list_node *var;
1053                 void *e = blobmsg_open_table(b, "env");
1054                 blobmsg_list_for_each(&in->env, var)
1055                         blobmsg_add_string(b, blobmsg_name(var->data), blobmsg_data(var->data));
1056                 blobmsg_close_table(b, e);
1057         }
1058
1059         if (!avl_is_empty(&in->data.avl)) {
1060                 struct blobmsg_list_node *var;
1061                 void *e = blobmsg_open_table(b, "data");
1062                 blobmsg_list_for_each(&in->data, var)
1063                         blobmsg_add_blob(b, var->data);
1064                 blobmsg_close_table(b, e);
1065         }
1066
1067         if (!avl_is_empty(&in->limits.avl)) {
1068                 struct blobmsg_list_node *var;
1069                 void *e = blobmsg_open_table(b, "limits");
1070                 blobmsg_list_for_each(&in->limits, var)
1071                         blobmsg_add_string(b, blobmsg_name(var->data), blobmsg_data(var->data));
1072                 blobmsg_close_table(b, e);
1073         }
1074
1075         if (in->reload_signal)
1076                 blobmsg_add_u32(b, "reload_signal", in->reload_signal);
1077
1078         if (in->respawn) {
1079                 void *r = blobmsg_open_table(b, "respawn");
1080                 blobmsg_add_u32(b, "threshold", in->respawn_threshold);
1081                 blobmsg_add_u32(b, "timeout", in->respawn_timeout);
1082                 blobmsg_add_u32(b, "retry", in->respawn_retry);
1083                 blobmsg_close_table(b, r);
1084         }
1085
1086         if (in->trace)
1087                 blobmsg_add_u8(b, "trace", true);
1088
1089         if (in->no_new_privs)
1090                 blobmsg_add_u8(b, "no_new_privs", true);
1091
1092         if (in->seccomp)
1093                 blobmsg_add_string(b, "seccomp", in->seccomp);
1094
1095         if (in->pidfile)
1096                 blobmsg_add_string(b, "pidfile", in->pidfile);
1097
1098         if (in->has_jail) {
1099                 void *r = blobmsg_open_table(b, "jail");
1100                 if (in->jail.name)
1101                         blobmsg_add_string(b, "name", in->jail.name);
1102                 if (in->jail.hostname)
1103                         blobmsg_add_string(b, "hostname", in->jail.hostname);
1104                 blobmsg_add_u8(b, "procfs", in->jail.procfs);
1105                 blobmsg_add_u8(b, "sysfs", in->jail.sysfs);
1106                 blobmsg_add_u8(b, "ubus", in->jail.ubus);
1107                 blobmsg_add_u8(b, "log", in->jail.log);
1108                 blobmsg_add_u8(b, "ronly", in->jail.ronly);
1109                 blobmsg_close_table(b, r);
1110                 if (!avl_is_empty(&in->jail.mount.avl)) {
1111                         struct blobmsg_list_node *var;
1112                         void *e = blobmsg_open_table(b, "mount");
1113                         blobmsg_list_for_each(&in->jail.mount, var)
1114                                 blobmsg_add_string(b, blobmsg_name(var->data), blobmsg_data(var->data));
1115                         blobmsg_close_table(b, e);
1116                 }
1117         }
1118
1119         if (verbose && in->trigger)
1120                 blobmsg_add_blob(b, in->trigger);
1121
1122         blobmsg_close_table(b, i);
1123 }