file: add exec method, rework read method
[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
29 static struct ubus_context *ctx;
30
31 int main(int argc, char **argv)
32 {
33 const char *ubus_socket = NULL;
34 int ch;
35
36 while ((ch = getopt(argc, argv, "s:")) != -1) {
37 switch (ch) {
38 case 's':
39 ubus_socket = optarg;
40 break;
41 default:
42 break;
43 }
44 }
45
46 signal(SIGPIPE, SIG_IGN);
47
48 argc -= optind;
49 argv += optind;
50
51 uloop_init();
52
53 ctx = ubus_connect(ubus_socket);
54 if (!ctx) {
55 fprintf(stderr, "Failed to connect to ubus\n");
56 return -1;
57 }
58
59 ubus_add_uloop(ctx);
60
61 rpc_session_api_init(ctx);
62 rpc_file_api_init(ctx);
63
64 uloop_run();
65 ubus_free(ctx);
66 uloop_done();
67
68 return 0;
69 }