service: allow setting a dedicated group id
[oweals/procd.git] / service / instance.h
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 #ifndef __PROCD_INSTANCE_H
16 #define __PROCD_INSTANCE_H
17
18 #include <libubox/vlist.h>
19 #include <libubox/uloop.h>
20 #include <libubox/ustream.h>
21 #include "../utils/utils.h"
22
23 #define RESPAWN_ERROR   (5 * 60)
24
25 struct jail {
26         bool procfs;
27         bool sysfs;
28         bool ubus;
29         bool log;
30         bool ronly;
31         char *name;
32         char *hostname;
33         struct blobmsg_list mount;
34         int argc;
35 };
36
37 struct service_instance {
38         struct vlist_node node;
39         struct service *srv;
40         const char *name;
41
42         int8_t nice;
43         bool valid;
44
45         char *user;
46         uid_t uid;
47         gid_t pw_gid;
48         char *group;
49         gid_t gr_gid;
50
51         bool halt;
52         bool restart;
53         bool respawn;
54         int respawn_count;
55         int reload_signal;
56         struct timespec start;
57
58         bool trace;
59         bool has_jail;
60         bool no_new_privs;
61         struct jail jail;
62         char *seccomp;
63         char *pidfile;
64         int syslog_facility;
65
66         uint32_t term_timeout;
67         uint32_t respawn_timeout;
68         uint32_t respawn_threshold;
69         uint32_t respawn_retry;
70
71         struct blob_attr *config;
72         struct uloop_process proc;
73         struct uloop_timeout timeout;
74         struct ustream_fd _stdout;
75         struct ustream_fd _stderr;
76
77         struct blob_attr *command;
78         struct blob_attr *trigger;
79         struct blobmsg_list env;
80         struct blobmsg_list data;
81         struct blobmsg_list netdev;
82         struct blobmsg_list file;
83         struct blobmsg_list limits;
84         struct blobmsg_list errors;
85 };
86
87 void instance_start(struct service_instance *in);
88 void instance_stop(struct service_instance *in, bool halt);
89 void instance_update(struct service_instance *in, struct service_instance *in_new);
90 void instance_init(struct service_instance *in, struct service *s, struct blob_attr *config);
91 void instance_free(struct service_instance *in);
92 void instance_dump(struct blob_buf *b, struct service_instance *in, int debug);
93
94 #endif