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