b8b751e715a8b82d5f0478a39c5ac73991678ec6
[project/ubus.git] / examples / server.c
1 /*
2 * Copyright (C) 2011-2014 Felix Fietkau <nbd@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2.1
6 * as published by the Free Software Foundation
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 #include <unistd.h>
15 #include <signal.h>
16
17 #include <libubox/blobmsg_json.h>
18 #include "libubus.h"
19 #include "count.h"
20
21 static struct ubus_context *ctx;
22 static struct ubus_subscriber test_event;
23 static struct blob_buf b;
24
25 enum {
26 HELLO_ID,
27 HELLO_MSG,
28 __HELLO_MAX
29 };
30
31 static const struct blobmsg_policy hello_policy[] = {
32 [HELLO_ID] = { .name = "id", .type = BLOBMSG_TYPE_INT32 },
33 [HELLO_MSG] = { .name = "msg", .type = BLOBMSG_TYPE_STRING },
34 };
35
36 struct hello_request {
37 struct ubus_request_data req;
38 struct uloop_timeout timeout;
39 int fd;
40 int idx;
41 char data[];
42 };
43
44 static void test_hello_fd_reply(struct uloop_timeout *t)
45 {
46 struct hello_request *req = container_of(t, struct hello_request, timeout);
47 char *data;
48
49 data = alloca(strlen(req->data) + 32);
50 sprintf(data, "msg%d: %s\n", ++req->idx, req->data);
51 if (write(req->fd, data, strlen(data)) < 0) {
52 close(req->fd);
53 free(req);
54 return;
55 }
56
57 uloop_timeout_set(&req->timeout, 1000);
58 }
59
60 static void test_hello_reply(struct uloop_timeout *t)
61 {
62 struct hello_request *req = container_of(t, struct hello_request, timeout);
63 int fds[2];
64
65 blob_buf_init(&b, 0);
66 blobmsg_add_string(&b, "message", req->data);
67 ubus_send_reply(ctx, &req->req, b.head);
68
69 if (pipe(fds) == -1) {
70 fprintf(stderr, "Failed to create pipe\n");
71 return;
72 }
73 ubus_request_set_fd(ctx, &req->req, fds[0]);
74 ubus_complete_deferred_request(ctx, &req->req, 0);
75 req->fd = fds[1];
76
77 req->timeout.cb = test_hello_fd_reply;
78 test_hello_fd_reply(t);
79 }
80
81 static int test_hello(struct ubus_context *ctx, struct ubus_object *obj,
82 struct ubus_request_data *req, const char *method,
83 struct blob_attr *msg)
84 {
85 struct hello_request *hreq;
86 struct blob_attr *tb[__HELLO_MAX];
87 const char *format = "%s received a message: %s";
88 const char *msgstr = "(unknown)";
89
90 blobmsg_parse(hello_policy, ARRAY_SIZE(hello_policy), tb, blob_data(msg), blob_len(msg));
91
92 if (tb[HELLO_MSG])
93 msgstr = blobmsg_data(tb[HELLO_MSG]);
94
95 hreq = calloc(1, sizeof(*hreq) + strlen(format) + strlen(obj->name) + strlen(msgstr) + 1);
96 sprintf(hreq->data, format, obj->name, msgstr);
97 ubus_defer_request(ctx, req, &hreq->req);
98 hreq->timeout.cb = test_hello_reply;
99 uloop_timeout_set(&hreq->timeout, 1000);
100
101 return 0;
102 }
103
104 enum {
105 WATCH_ID,
106 WATCH_COUNTER,
107 __WATCH_MAX
108 };
109
110 static const struct blobmsg_policy watch_policy[__WATCH_MAX] = {
111 [WATCH_ID] = { .name = "id", .type = BLOBMSG_TYPE_INT32 },
112 [WATCH_COUNTER] = { .name = "counter", .type = BLOBMSG_TYPE_INT32 },
113 };
114
115 static void
116 test_handle_remove(struct ubus_context *ctx, struct ubus_subscriber *s,
117 uint32_t id)
118 {
119 fprintf(stderr, "Object %08x went away\n", id);
120 }
121
122 static int
123 test_notify(struct ubus_context *ctx, struct ubus_object *obj,
124 struct ubus_request_data *req, const char *method,
125 struct blob_attr *msg)
126 {
127 #if 0
128 char *str;
129
130 str = blobmsg_format_json(msg, true);
131 fprintf(stderr, "Received notification '%s': %s\n", method, str);
132 free(str);
133 #endif
134
135 return 0;
136 }
137
138 static int test_watch(struct ubus_context *ctx, struct ubus_object *obj,
139 struct ubus_request_data *req, const char *method,
140 struct blob_attr *msg)
141 {
142 struct blob_attr *tb[__WATCH_MAX];
143 int ret;
144
145 blobmsg_parse(watch_policy, __WATCH_MAX, tb, blob_data(msg), blob_len(msg));
146 if (!tb[WATCH_ID])
147 return UBUS_STATUS_INVALID_ARGUMENT;
148
149 test_event.remove_cb = test_handle_remove;
150 test_event.cb = test_notify;
151 ret = ubus_subscribe(ctx, &test_event, blobmsg_get_u32(tb[WATCH_ID]));
152 fprintf(stderr, "Watching object %08x: %s\n", blobmsg_get_u32(tb[WATCH_ID]), ubus_strerror(ret));
153 return ret;
154 }
155
156 enum {
157 COUNT_TO,
158 COUNT_STRING,
159 __COUNT_MAX
160 };
161
162 static const struct blobmsg_policy count_policy[__COUNT_MAX] = {
163 [COUNT_TO] = { .name = "to", .type = BLOBMSG_TYPE_INT32 },
164 [COUNT_STRING] = { .name = "string", .type = BLOBMSG_TYPE_STRING },
165 };
166
167 static int test_count(struct ubus_context *ctx, struct ubus_object *obj,
168 struct ubus_request_data *req, const char *method,
169 struct blob_attr *msg)
170 {
171 struct blob_attr *tb[__COUNT_MAX];
172 char *s1, *s2;
173 uint32_t num;
174
175 blobmsg_parse(count_policy, __COUNT_MAX, tb, blob_data(msg), blob_len(msg));
176 if (!tb[COUNT_TO] || !tb[COUNT_STRING])
177 return UBUS_STATUS_INVALID_ARGUMENT;
178
179 num = blobmsg_get_u32(tb[COUNT_TO]);
180 s1 = blobmsg_get_string(tb[COUNT_STRING]);
181 s2 = count_to_number(num);
182 if (!s1 || !s2) {
183 free(s2);
184 return UBUS_STATUS_UNKNOWN_ERROR;
185 }
186 blob_buf_init(&b, 0);
187 blobmsg_add_u32(&b, "rc", strcmp(s1, s2));
188 ubus_send_reply(ctx, req, b.head);
189 free(s2);
190
191 return 0;
192 }
193
194 static const struct ubus_method test_methods[] = {
195 UBUS_METHOD("hello", test_hello, hello_policy),
196 UBUS_METHOD("watch", test_watch, watch_policy),
197 UBUS_METHOD("count", test_count, count_policy),
198 };
199
200 static struct ubus_object_type test_object_type =
201 UBUS_OBJECT_TYPE("test", test_methods);
202
203 static struct ubus_object test_object = {
204 .name = "test",
205 .type = &test_object_type,
206 .methods = test_methods,
207 .n_methods = ARRAY_SIZE(test_methods),
208 };
209
210 static void server_main(void)
211 {
212 int ret;
213
214 ret = ubus_add_object(ctx, &test_object);
215 if (ret)
216 fprintf(stderr, "Failed to add object: %s\n", ubus_strerror(ret));
217
218 ret = ubus_register_subscriber(ctx, &test_event);
219 if (ret)
220 fprintf(stderr, "Failed to add watch handler: %s\n", ubus_strerror(ret));
221
222 uloop_run();
223 }
224
225 int main(int argc, char **argv)
226 {
227 const char *ubus_socket = NULL;
228 int ch;
229
230 while ((ch = getopt(argc, argv, "cs:")) != -1) {
231 switch (ch) {
232 case 's':
233 ubus_socket = optarg;
234 break;
235 default:
236 break;
237 }
238 }
239
240 argc -= optind;
241 argv += optind;
242
243 uloop_init();
244 signal(SIGPIPE, SIG_IGN);
245
246 ctx = ubus_connect(ubus_socket);
247 if (!ctx) {
248 fprintf(stderr, "Failed to connect to ubus\n");
249 return -1;
250 }
251
252 ubus_add_uloop(ctx);
253
254 server_main();
255
256 ubus_free(ctx);
257 uloop_done();
258
259 return 0;
260 }