c8b6d41bca5fcfc01a7e314ceb3a99370fcb1c74
[project/rpcd.git] / main.c
1 /*
2  * luci-rpcd - LuCI 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 "session.h"
27 #include "file.h"
28 #include "uci.h"
29 #include "iwinfo.h"
30 #include "luci2.h"
31 #include "plugin.h"
32
33 static struct ubus_context *ctx;
34
35 int main(int argc, char **argv)
36 {
37         const char *ubus_socket = NULL;
38         int ch;
39
40         while ((ch = getopt(argc, argv, "s:")) != -1) {
41                 switch (ch) {
42                 case 's':
43                         ubus_socket = optarg;
44                         break;
45                 default:
46                         break;
47                 }
48         }
49
50         signal(SIGPIPE, SIG_IGN);
51
52         argc -= optind;
53         argv += optind;
54
55         uloop_init();
56
57         ctx = ubus_connect(ubus_socket);
58         if (!ctx) {
59                 fprintf(stderr, "Failed to connect to ubus\n");
60                 return -1;
61         }
62
63         ubus_add_uloop(ctx);
64
65         rpc_session_api_init(ctx);
66         rpc_file_api_init(ctx);
67         rpc_uci_api_init(ctx);
68         rpc_iwinfo_api_init(ctx);
69         rpc_luci2_api_init(ctx);
70         rpc_plugin_api_init(ctx);
71
72         uloop_run();
73         ubus_free(ctx);
74         uloop_done();
75
76         return 0;
77 }