libubus: fix logic inversion for cancelling requests
[project/ubus.git] / libubus-req.c
1 /*
2 * Copyright (C) 2011-2012 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 "libubus.h"
15 #include "libubus-internal.h"
16
17 struct ubus_pending_data {
18 struct list_head list;
19 int type;
20 struct blob_attr data[];
21 };
22
23 static void req_data_cb(struct ubus_request *req, int type, struct blob_attr *data)
24 {
25 struct blob_attr **attr;
26
27 if (req->raw_data_cb)
28 req->raw_data_cb(req, type, data);
29
30 if (!req->data_cb)
31 return;
32
33 attr = ubus_parse_msg(data);
34 req->data_cb(req, type, attr[UBUS_ATTR_DATA]);
35 }
36
37 static void __ubus_process_req_data(struct ubus_request *req)
38 {
39 struct ubus_pending_data *data;
40
41 while (!list_empty(&req->pending)) {
42 data = list_first_entry(&req->pending,
43 struct ubus_pending_data, list);
44 list_del(&data->list);
45 if (!req->cancelled)
46 req_data_cb(req, data->type, data->data);
47 free(data);
48 }
49 }
50
51 int __hidden ubus_start_request(struct ubus_context *ctx, struct ubus_request *req,
52 struct blob_attr *msg, int cmd, uint32_t peer)
53 {
54 memset(req, 0, sizeof(*req));
55
56 if (msg && blob_pad_len(msg) > UBUS_MAX_MSGLEN)
57 return -1;
58
59 INIT_LIST_HEAD(&req->list);
60 INIT_LIST_HEAD(&req->pending);
61 req->ctx = ctx;
62 req->peer = peer;
63 req->seq = ++ctx->request_seq;
64 return ubus_send_msg(ctx, req->seq, msg, cmd, peer);
65 }
66
67 void ubus_abort_request(struct ubus_context *ctx, struct ubus_request *req)
68 {
69 if (list_empty(&req->list))
70 return;
71
72 req->cancelled = true;
73 __ubus_process_req_data(req);
74 list_del_init(&req->list);
75 }
76
77 void ubus_complete_request_async(struct ubus_context *ctx, struct ubus_request *req)
78 {
79 if (!list_empty(&req->list))
80 return;
81
82 list_add(&req->list, &ctx->requests);
83 }
84
85 static void
86 ubus_req_complete_cb(struct ubus_request *req)
87 {
88 ubus_complete_handler_t cb = req->complete_cb;
89
90 if (!cb)
91 return;
92
93 req->complete_cb = NULL;
94 cb(req, req->status_code);
95 }
96
97 static void
98 ubus_set_req_status(struct ubus_request *req, int ret)
99 {
100 if (!list_empty(&req->list))
101 list_del_init(&req->list);
102
103 req->status_msg = true;
104 req->status_code = ret;
105 if (!req->blocked)
106 ubus_req_complete_cb(req);
107 }
108
109 static void ubus_sync_req_cb(struct ubus_request *req, int ret)
110 {
111 req->status_msg = true;
112 req->status_code = ret;
113 uloop_end();
114 }
115
116 struct ubus_sync_req_cb {
117 struct uloop_timeout timeout;
118 struct ubus_request *req;
119 };
120
121 static void ubus_sync_req_timeout_cb(struct uloop_timeout *timeout)
122 {
123 struct ubus_sync_req_cb *cb;
124
125 cb = container_of(timeout, struct ubus_sync_req_cb, timeout);
126 ubus_set_req_status(cb->req, UBUS_STATUS_TIMEOUT);
127 }
128
129 int ubus_complete_request(struct ubus_context *ctx, struct ubus_request *req,
130 int timeout)
131 {
132 struct ubus_sync_req_cb cb;
133 ubus_complete_handler_t complete_cb = req->complete_cb;
134 bool registered = ctx->sock.registered;
135 int status = UBUS_STATUS_NO_DATA;
136
137 if (!registered) {
138 uloop_init();
139 ubus_add_uloop(ctx);
140 }
141
142 if (timeout) {
143 memset(&cb, 0, sizeof(cb));
144 cb.req = req;
145 cb.timeout.cb = ubus_sync_req_timeout_cb;
146 uloop_timeout_set(&cb.timeout, timeout);
147 }
148
149 ubus_complete_request_async(ctx, req);
150 req->complete_cb = ubus_sync_req_cb;
151
152 ctx->stack_depth++;
153 while (!req->status_msg) {
154 bool cancelled = uloop_cancelled;
155 uloop_cancelled = false;
156 uloop_run();
157 uloop_cancelled = cancelled;
158 }
159 ctx->stack_depth--;
160 if (ctx->stack_depth)
161 uloop_cancelled = true;
162
163 if (timeout)
164 uloop_timeout_cancel(&cb.timeout);
165
166 if (req->status_msg)
167 status = req->status_code;
168
169 req->complete_cb = complete_cb;
170 if (req->complete_cb)
171 req->complete_cb(req, status);
172
173 if (!registered)
174 uloop_fd_delete(&ctx->sock);
175
176 if (!ctx->stack_depth)
177 ubus_process_pending_msg(ctx);
178
179 return status;
180 }
181
182 void ubus_complete_deferred_request(struct ubus_context *ctx, struct ubus_request_data *req, int ret)
183 {
184 blob_buf_init(&b, 0);
185 blob_put_int32(&b, UBUS_ATTR_STATUS, ret);
186 blob_put_int32(&b, UBUS_ATTR_OBJID, req->object);
187 ubus_send_msg(ctx, req->seq, b.head, UBUS_MSG_STATUS, req->peer);
188 }
189
190 int ubus_send_reply(struct ubus_context *ctx, struct ubus_request_data *req,
191 struct blob_attr *msg)
192 {
193 int ret;
194
195 blob_buf_init(&b, 0);
196 blob_put_int32(&b, UBUS_ATTR_OBJID, req->object);
197 blob_put(&b, UBUS_ATTR_DATA, blob_data(msg), blob_len(msg));
198 ret = ubus_send_msg(ctx, req->seq, b.head, UBUS_MSG_DATA, req->peer);
199 if (ret < 0)
200 return UBUS_STATUS_NO_DATA;
201
202 return 0;
203 }
204
205 int ubus_invoke_async(struct ubus_context *ctx, uint32_t obj, const char *method,
206 struct blob_attr *msg, struct ubus_request *req)
207 {
208 blob_buf_init(&b, 0);
209 blob_put_int32(&b, UBUS_ATTR_OBJID, obj);
210 blob_put_string(&b, UBUS_ATTR_METHOD, method);
211 if (msg)
212 blob_put(&b, UBUS_ATTR_DATA, blob_data(msg), blob_len(msg));
213
214 if (ubus_start_request(ctx, req, b.head, UBUS_MSG_INVOKE, obj) < 0)
215 return UBUS_STATUS_INVALID_ARGUMENT;
216
217 return 0;
218 }
219
220 int ubus_invoke(struct ubus_context *ctx, uint32_t obj, const char *method,
221 struct blob_attr *msg, ubus_data_handler_t cb, void *priv,
222 int timeout)
223 {
224 struct ubus_request req;
225
226 ubus_invoke_async(ctx, obj, method, msg, &req);
227 req.data_cb = cb;
228 req.priv = priv;
229 return ubus_complete_request(ctx, &req, timeout);
230 }
231
232 static void
233 ubus_notify_complete_cb(struct ubus_request *req, int ret)
234 {
235 struct ubus_notify_request *nreq;
236
237 nreq = container_of(req, struct ubus_notify_request, req);
238 if (!nreq->complete_cb)
239 return;
240
241 nreq->complete_cb(nreq, 0, 0);
242 }
243
244 static int
245 __ubus_notify_async(struct ubus_context *ctx, struct ubus_object *obj,
246 const char *type, struct blob_attr *msg,
247 struct ubus_notify_request *req, bool reply)
248 {
249 memset(req, 0, sizeof(*req));
250
251 blob_buf_init(&b, 0);
252 blob_put_int32(&b, UBUS_ATTR_OBJID, obj->id);
253 blob_put_string(&b, UBUS_ATTR_METHOD, type);
254
255 if (!reply)
256 blob_put_int8(&b, UBUS_ATTR_NO_REPLY, true);
257
258 if (msg)
259 blob_put(&b, UBUS_ATTR_DATA, blob_data(msg), blob_len(msg));
260
261 if (ubus_start_request(ctx, &req->req, b.head, UBUS_MSG_NOTIFY, obj->id) < 0)
262 return UBUS_STATUS_INVALID_ARGUMENT;
263
264 /* wait for status message from ubusd first */
265 req->req.notify = true;
266 req->pending = 1;
267 req->id[0] = obj->id;
268 req->req.complete_cb = ubus_notify_complete_cb;
269
270 return 0;
271 }
272
273 int ubus_notify_async(struct ubus_context *ctx, struct ubus_object *obj,
274 const char *type, struct blob_attr *msg,
275 struct ubus_notify_request *req)
276 {
277 return __ubus_notify_async(ctx, obj, type, msg, req, true);
278 }
279
280 int ubus_notify(struct ubus_context *ctx, struct ubus_object *obj,
281 const char *type, struct blob_attr *msg, int timeout)
282 {
283 struct ubus_notify_request req;
284 int ret;
285
286 ret = __ubus_notify_async(ctx, obj, type, msg, &req, timeout >= 0);
287 if (ret < 0)
288 return ret;
289
290 if (timeout < 0) {
291 ubus_abort_request(ctx, &req.req);
292 return 0;
293 }
294
295 return ubus_complete_request(ctx, &req.req, timeout);
296 }
297
298 static bool ubus_get_status(struct ubus_msghdr *hdr, int *ret)
299 {
300 struct blob_attr **attrbuf = ubus_parse_msg(hdr->data);
301
302 if (!attrbuf[UBUS_ATTR_STATUS])
303 return false;
304
305 *ret = blob_get_u32(attrbuf[UBUS_ATTR_STATUS]);
306 return true;
307 }
308
309 static int
310 ubus_process_req_status(struct ubus_request *req, struct ubus_msghdr *hdr)
311 {
312 int ret = UBUS_STATUS_INVALID_ARGUMENT;
313
314 ubus_get_status(hdr, &ret);
315 req->peer = hdr->peer;
316 ubus_set_req_status(req, ret);
317
318 return ret;
319 }
320
321 static void
322 ubus_process_req_data(struct ubus_request *req, struct ubus_msghdr *hdr)
323 {
324 struct ubus_pending_data *data;
325 int len;
326
327 if (!req->blocked) {
328 req->blocked = true;
329 req_data_cb(req, hdr->type, hdr->data);
330 __ubus_process_req_data(req);
331 req->blocked = false;
332
333 if (req->status_msg)
334 ubus_req_complete_cb(req);
335
336 return;
337 }
338
339 len = blob_raw_len(hdr->data);
340 data = calloc(1, sizeof(*data) + len);
341 if (!data)
342 return;
343
344 data->type = hdr->type;
345 memcpy(data->data, hdr->data, len);
346 list_add(&data->list, &req->pending);
347 }
348
349 static int
350 ubus_find_notify_id(struct ubus_notify_request *n, uint32_t objid)
351 {
352 uint32_t pending = n->pending;
353 int i;
354
355 for (i = 0; pending; i++, pending >>= 1) {
356 if (!(pending & 1))
357 continue;
358
359 if (n->id[i] == objid)
360 return i;
361 }
362
363 return -1;
364 }
365
366 static struct ubus_request *
367 ubus_find_request(struct ubus_context *ctx, uint32_t seq, uint32_t peer, int *id)
368 {
369 struct ubus_request *req;
370
371 list_for_each_entry(req, &ctx->requests, list) {
372 struct ubus_notify_request *nreq;
373 nreq = container_of(req, struct ubus_notify_request, req);
374
375 if (seq != req->seq)
376 continue;
377
378 if (req->notify) {
379 if (!nreq->pending)
380 continue;
381
382 *id = ubus_find_notify_id(nreq, peer);
383 if (*id < 0)
384 continue;
385 } else if (peer != req->peer)
386 continue;
387
388 return req;
389 }
390 return NULL;
391 }
392
393 static void ubus_process_notify_status(struct ubus_request *req, int id, struct ubus_msghdr *hdr)
394 {
395 struct ubus_notify_request *nreq;
396 struct blob_attr **tb;
397 struct blob_attr *cur;
398 int rem, idx = 1;
399 int ret = 0;
400
401 nreq = container_of(req, struct ubus_notify_request, req);
402 nreq->pending &= ~(1 << id);
403
404 if (!id) {
405 /* first id: ubusd's status message with a list of ids */
406 tb = ubus_parse_msg(hdr->data);
407 if (tb[UBUS_ATTR_SUBSCRIBERS]) {
408 blob_for_each_attr(cur, tb[UBUS_ATTR_SUBSCRIBERS], rem) {
409 if (!blob_check_type(blob_data(cur), blob_len(cur), BLOB_ATTR_INT32))
410 continue;
411
412 nreq->pending |= (1 << idx);
413 nreq->id[idx] = blob_get_int32(cur);
414 idx++;
415
416 if (idx == UBUS_MAX_NOTIFY_PEERS + 1)
417 break;
418 }
419 }
420 } else {
421 ubus_get_status(hdr, &ret);
422 if (nreq->status_cb)
423 nreq->status_cb(nreq, id, ret);
424 }
425
426 if (!nreq->pending)
427 ubus_set_req_status(req, 0);
428 }
429
430 void __hidden ubus_process_req_msg(struct ubus_context *ctx, struct ubus_msghdr *hdr)
431 {
432 struct ubus_request *req;
433 int id = -1;
434
435 switch(hdr->type) {
436 case UBUS_MSG_STATUS:
437 req = ubus_find_request(ctx, hdr->seq, hdr->peer, &id);
438 if (!req)
439 break;
440
441 if (id >= 0)
442 ubus_process_notify_status(req, id, hdr);
443 else
444 ubus_process_req_status(req, hdr);
445 break;
446
447 case UBUS_MSG_DATA:
448 req = ubus_find_request(ctx, hdr->seq, hdr->peer, &id);
449 if (req && (req->data_cb || req->raw_data_cb))
450 ubus_process_req_data(req, hdr);
451 break;
452 }
453 }