exec: increase maximum execution time to 120s
[oweals/rpcd.git] / main.c
1 /*
2  * rpcd - UBUS RPC server
3  *
4  *   Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
5  *   Copyright (C) 2013-2014 Jo-Philipp Wich <jow@openwrt.org>
6  *
7  * Permission to use, copy, modify, and/or distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19
20 #include <unistd.h>
21 #include <stdlib.h>
22
23 #include <libubox/blobmsg_json.h>
24 #include <libubus.h>
25 #include <signal.h>
26 #include <sys/stat.h>
27
28 #include <rpcd/session.h>
29 #include <rpcd/uci.h>
30 #include <rpcd/plugin.h>
31 #include <rpcd/exec.h>
32
33 static struct ubus_context *ctx;
34 static bool respawn = false;
35
36 int exec_timeout = RPC_EXEC_DEFAULT_TIMEOUT;
37
38 static void
39 handle_signal(int sig)
40 {
41         rpc_session_freeze();
42         uloop_cancelled = true;
43         respawn = (sig == SIGHUP);
44 }
45
46 static void
47 exec_self(int argc, char **argv)
48 {
49         int i;
50         const char *cmd = rpc_exec_lookup(argv[0]);
51         char **args = calloc(argc + 1, sizeof(char *));
52
53         if (!cmd || !args)
54                 return;
55
56         for (i = 0; i < argc; i++)
57                 args[i] = argv[i];
58
59         setenv("RPC_HANGUP", "1", 1);
60         execv(cmd, (char * const *)args);
61 }
62
63 int main(int argc, char **argv)
64 {
65         struct stat s;
66         const char *hangup;
67         const char *ubus_socket = NULL;
68         int ch;
69
70         while ((ch = getopt(argc, argv, "s:t:")) != -1) {
71                 switch (ch) {
72                 case 's':
73                         ubus_socket = optarg;
74                         break;
75
76                 case 't':
77                         exec_timeout = strtol(optarg, NULL, 0);
78                         break;
79
80                 default:
81                         break;
82                 }
83         }
84
85         if (exec_timeout < 1 || exec_timeout > 600) {
86                 fprintf(stderr, "Invalid execution timeout specified\n");
87                 return -1;
88         }
89
90         exec_timeout *= 1000;
91
92         if (stat(RPC_UCI_DIR_PREFIX, &s))
93                 mkdir(RPC_UCI_DIR_PREFIX, 0700);
94
95         umask(0077);
96
97         signal(SIGPIPE, SIG_IGN);
98         signal(SIGHUP,  handle_signal);
99         signal(SIGUSR1, handle_signal);
100
101         uloop_init();
102
103         ctx = ubus_connect(ubus_socket);
104         if (!ctx) {
105                 fprintf(stderr, "Failed to connect to ubus\n");
106                 return -1;
107         }
108
109         ubus_add_uloop(ctx);
110
111         rpc_session_api_init(ctx);
112         rpc_uci_api_init(ctx);
113         rpc_plugin_api_init(ctx);
114
115         hangup = getenv("RPC_HANGUP");
116
117         if (!hangup || strcmp(hangup, "1"))
118                 rpc_uci_purge_savedirs();
119         else
120                 rpc_session_thaw();
121
122         uloop_run();
123         ubus_free(ctx);
124         uloop_done();
125
126         if (respawn)
127                 exec_self(argc, argv);
128
129         return 0;
130 }