4ea5f2ce9eb40a3e799ec73cc34e0a5e4680e5c3
[project/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 = 1000 * strtol(optarg, NULL, 0);
78 break;
79
80 default:
81 break;
82 }
83 }
84
85 if (exec_timeout < 1000 || exec_timeout > 600000) {
86 fprintf(stderr, "Invalid execution timeout specified\n");
87 return -1;
88 }
89
90 if (stat(RPC_UCI_DIR_PREFIX, &s))
91 mkdir(RPC_UCI_DIR_PREFIX, 0700);
92
93 umask(0077);
94
95 signal(SIGPIPE, SIG_IGN);
96 signal(SIGHUP, handle_signal);
97 signal(SIGUSR1, handle_signal);
98
99 uloop_init();
100
101 ctx = ubus_connect(ubus_socket);
102 if (!ctx) {
103 fprintf(stderr, "Failed to connect to ubus\n");
104 return -1;
105 }
106
107 ubus_add_uloop(ctx);
108
109 rpc_session_api_init(ctx);
110 rpc_uci_api_init(ctx);
111 rpc_plugin_api_init(ctx);
112
113 hangup = getenv("RPC_HANGUP");
114
115 if (!hangup || strcmp(hangup, "1"))
116 rpc_uci_purge_savedirs();
117 else
118 rpc_session_thaw();
119
120 uloop_run();
121 ubus_free(ctx);
122 uloop_done();
123
124 if (respawn)
125 exec_self(argc, argv);
126
127 return 0;
128 }