session: add support for saving and restoring session data to disk
[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 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
22 #include <libubox/blobmsg_json.h>
23 #include <libubus.h>
24 #include <signal.h>
25
26 #include <rpcd/session.h>
27 #include <rpcd/uci.h>
28 #include <rpcd/plugin.h>
29
30 static struct ubus_context *ctx;
31
32 int main(int argc, char **argv)
33 {
34 const char *ubus_socket = NULL;
35 int ch;
36
37 while ((ch = getopt(argc, argv, "s:")) != -1) {
38 switch (ch) {
39 case 's':
40 ubus_socket = optarg;
41 break;
42 default:
43 break;
44 }
45 }
46
47 signal(SIGPIPE, SIG_IGN);
48
49 argc -= optind;
50 argv += optind;
51
52 uloop_init();
53
54 ctx = ubus_connect(ubus_socket);
55 if (!ctx) {
56 fprintf(stderr, "Failed to connect to ubus\n");
57 return -1;
58 }
59
60 ubus_add_uloop(ctx);
61
62 rpc_session_api_init(ctx);
63 rpc_uci_api_init(ctx);
64 rpc_plugin_api_init(ctx);
65
66 uloop_run();
67 ubus_free(ctx);
68 uloop_done();
69
70 return 0;
71 }