libubus: remove ubus_msghdr_data() by passing in the right data structure pointer
[project/ubus.git] / libubus-obj.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 static void
18 ubus_process_unsubscribe(struct ubus_context *ctx, struct ubus_msghdr *hdr,
19 struct ubus_object *obj, struct blob_attr **attrbuf)
20 {
21 struct ubus_subscriber *s;
22
23 if (!obj || !attrbuf[UBUS_ATTR_TARGET])
24 return;
25
26 if (obj->methods != &watch_method)
27 return;
28
29 s = container_of(obj, struct ubus_subscriber, obj);
30 if (s->remove_cb)
31 s->remove_cb(ctx, s, blob_get_u32(attrbuf[UBUS_ATTR_TARGET]));
32 }
33
34 static void
35 ubus_process_notify(struct ubus_context *ctx, struct ubus_msghdr *hdr,
36 struct ubus_object *obj, struct blob_attr **attrbuf)
37 {
38 if (!obj || !attrbuf[UBUS_ATTR_ACTIVE])
39 return;
40
41 obj->has_subscribers = blob_get_u8(attrbuf[UBUS_ATTR_ACTIVE]);
42 if (obj->subscribe_cb)
43 obj->subscribe_cb(ctx, obj);
44 }
45 static void
46 ubus_process_invoke(struct ubus_context *ctx, struct ubus_msghdr *hdr,
47 struct ubus_object *obj, struct blob_attr **attrbuf)
48 {
49 struct ubus_request_data req = {
50 .fd = -1,
51 };
52 int method;
53 int ret;
54 bool no_reply = false;
55
56 if (!obj) {
57 ret = UBUS_STATUS_NOT_FOUND;
58 goto send;
59 }
60
61 if (!attrbuf[UBUS_ATTR_METHOD]) {
62 ret = UBUS_STATUS_INVALID_ARGUMENT;
63 goto send;
64 }
65
66 if (attrbuf[UBUS_ATTR_NO_REPLY])
67 no_reply = blob_get_int8(attrbuf[UBUS_ATTR_NO_REPLY]);
68
69 req.peer = hdr->peer;
70 req.seq = hdr->seq;
71 req.object = obj->id;
72
73 for (method = 0; method < obj->n_methods; method++)
74 if (!obj->methods[method].name ||
75 !strcmp(obj->methods[method].name,
76 blob_data(attrbuf[UBUS_ATTR_METHOD])))
77 goto found;
78
79 /* not found */
80 ret = UBUS_STATUS_METHOD_NOT_FOUND;
81 goto send;
82
83 found:
84 ret = obj->methods[method].handler(ctx, obj, &req,
85 blob_data(attrbuf[UBUS_ATTR_METHOD]),
86 attrbuf[UBUS_ATTR_DATA]);
87 if (req.deferred || no_reply)
88 return;
89
90 send:
91 ubus_complete_deferred_request(ctx, &req, ret);
92 }
93
94 void __hidden ubus_process_obj_msg(struct ubus_context *ctx, struct ubus_msghdr_buf *buf)
95 {
96 void (*cb)(struct ubus_context *, struct ubus_msghdr *,
97 struct ubus_object *, struct blob_attr **);
98 struct ubus_msghdr *hdr = &buf->hdr;
99 struct blob_attr **attrbuf;
100 struct ubus_object *obj;
101 uint32_t objid;
102
103 attrbuf = ubus_parse_msg(buf->data);
104 if (!attrbuf[UBUS_ATTR_OBJID])
105 return;
106
107 objid = blob_get_u32(attrbuf[UBUS_ATTR_OBJID]);
108 obj = avl_find_element(&ctx->objects, &objid, obj, avl);
109
110 switch (hdr->type) {
111 case UBUS_MSG_INVOKE:
112 cb = ubus_process_invoke;
113 break;
114 case UBUS_MSG_UNSUBSCRIBE:
115 cb = ubus_process_unsubscribe;
116 break;
117 case UBUS_MSG_NOTIFY:
118 cb = ubus_process_notify;
119 break;
120 default:
121 return;
122 }
123 cb(ctx, hdr, obj, attrbuf);
124 }
125
126 static void ubus_add_object_cb(struct ubus_request *req, int type, struct blob_attr *msg)
127 {
128 struct ubus_object *obj = req->priv;
129 struct blob_attr **attrbuf = ubus_parse_msg(msg);
130
131 if (!attrbuf[UBUS_ATTR_OBJID])
132 return;
133
134 obj->id = blob_get_u32(attrbuf[UBUS_ATTR_OBJID]);
135
136 if (attrbuf[UBUS_ATTR_OBJTYPE])
137 obj->type->id = blob_get_u32(attrbuf[UBUS_ATTR_OBJTYPE]);
138
139 obj->avl.key = &obj->id;
140 avl_insert(&req->ctx->objects, &obj->avl);
141 }
142
143 static void ubus_push_method_data(const struct ubus_method *m)
144 {
145 void *mtbl;
146 int i;
147
148 mtbl = blobmsg_open_table(&b, m->name);
149
150 for (i = 0; i < m->n_policy; i++) {
151 if (m->mask && !(m->mask & (1 << i)))
152 continue;
153
154 blobmsg_add_u32(&b, m->policy[i].name, m->policy[i].type);
155 }
156
157 blobmsg_close_table(&b, mtbl);
158 }
159
160 static bool ubus_push_object_type(const struct ubus_object_type *type)
161 {
162 void *s;
163 int i;
164
165 s = blob_nest_start(&b, UBUS_ATTR_SIGNATURE);
166
167 for (i = 0; i < type->n_methods; i++)
168 ubus_push_method_data(&type->methods[i]);
169
170 blob_nest_end(&b, s);
171
172 return true;
173 }
174
175 int ubus_add_object(struct ubus_context *ctx, struct ubus_object *obj)
176 {
177 struct ubus_request req;
178 int ret;
179
180 blob_buf_init(&b, 0);
181
182 if (obj->name && obj->type) {
183 blob_put_string(&b, UBUS_ATTR_OBJPATH, obj->name);
184
185 if (obj->type->id)
186 blob_put_int32(&b, UBUS_ATTR_OBJTYPE, obj->type->id);
187 else if (!ubus_push_object_type(obj->type))
188 return UBUS_STATUS_INVALID_ARGUMENT;
189 }
190
191 if (ubus_start_request(ctx, &req, b.head, UBUS_MSG_ADD_OBJECT, 0) < 0)
192 return UBUS_STATUS_INVALID_ARGUMENT;
193
194 req.raw_data_cb = ubus_add_object_cb;
195 req.priv = obj;
196 ret = ubus_complete_request(ctx, &req, 0);
197 if (ret)
198 return ret;
199
200 if (!obj->id)
201 return UBUS_STATUS_NO_DATA;
202
203 return 0;
204 }
205
206 static void ubus_remove_object_cb(struct ubus_request *req, int type, struct blob_attr *msg)
207 {
208 struct ubus_object *obj = req->priv;
209 struct blob_attr **attrbuf = ubus_parse_msg(msg);
210
211 if (!attrbuf[UBUS_ATTR_OBJID])
212 return;
213
214 obj->id = 0;
215
216 if (attrbuf[UBUS_ATTR_OBJTYPE] && obj->type)
217 obj->type->id = 0;
218
219 avl_delete(&req->ctx->objects, &obj->avl);
220 }
221
222 int ubus_remove_object(struct ubus_context *ctx, struct ubus_object *obj)
223 {
224 struct ubus_request req;
225 int ret;
226
227 blob_buf_init(&b, 0);
228 blob_put_int32(&b, UBUS_ATTR_OBJID, obj->id);
229
230 if (ubus_start_request(ctx, &req, b.head, UBUS_MSG_REMOVE_OBJECT, 0) < 0)
231 return UBUS_STATUS_INVALID_ARGUMENT;
232
233 req.raw_data_cb = ubus_remove_object_cb;
234 req.priv = obj;
235 ret = ubus_complete_request(ctx, &req, 0);
236 if (ret)
237 return ret;
238
239 if (obj->id)
240 return UBUS_STATUS_NO_DATA;
241
242 return 0;
243 }