add missing include
[project/ubus.git] / ubusd_event.c
1 #include <arpa/inet.h>
2 #include "ubusd.h"
3
4 static struct avl_tree patterns;
5 static LIST_HEAD(catch_all);
6 static struct ubus_object *event_obj;
7 static int event_seq = 0;
8 static int obj_event_seq = 0;
9
10 enum evs_type {
11 EVS_PATTERN,
12 EVS_CATCHALL
13 };
14
15 struct event_source {
16 struct list_head list;
17 struct ubus_object *obj;
18 enum evs_type type;
19 union {
20 struct {
21 struct avl_node avl;
22 bool partial;
23 } pattern;
24 struct {
25 struct list_head list;
26 } catchall;
27 };
28 };
29
30 static void ubusd_delete_event_source(struct event_source *evs)
31 {
32 list_del(&evs->list);
33 switch (evs->type) {
34 case EVS_PATTERN:
35 avl_delete(&patterns, &evs->pattern.avl);
36 break;
37 case EVS_CATCHALL:
38 list_del(&evs->catchall.list);
39 break;
40 }
41 free(evs);
42 }
43
44 void ubusd_event_cleanup_object(struct ubus_object *obj)
45 {
46 struct event_source *ev;
47
48 while (!list_empty(&obj->events)) {
49 ev = list_first_entry(&obj->events, struct event_source, list);
50 ubusd_delete_event_source(ev);
51 }
52 }
53
54 enum {
55 EVREG_PATTERN,
56 EVREG_OBJECT,
57 EVREG_LAST,
58 };
59
60 static struct blobmsg_policy evr_policy[] = {
61 [EVREG_PATTERN] = { .name = "pattern", .type = BLOBMSG_TYPE_STRING },
62 [EVREG_OBJECT] = { .name = "object", .type = BLOBMSG_TYPE_INT32 },
63 };
64
65
66 static struct event_source *ubusd_alloc_event_source(struct ubus_object *obj, enum evs_type type, int datalen)
67 {
68 struct event_source *evs;
69
70 evs = calloc(1, sizeof(*evs) + datalen);
71 list_add(&evs->list, &obj->events);
72 evs->obj = obj;
73 evs->type = type;
74 return evs;
75 }
76
77 static int ubusd_alloc_catchall(struct ubus_object *obj)
78 {
79 struct event_source *evs;
80
81 evs = ubusd_alloc_event_source(obj, EVS_CATCHALL, 0);
82 list_add(&evs->catchall.list, &catch_all);
83
84 return 0;
85 }
86
87 static int ubusd_alloc_event_pattern(struct ubus_client *cl, struct blob_attr *msg)
88 {
89 struct event_source *ev;
90 struct ubus_object *obj;
91 struct blob_attr *attr[EVREG_LAST];
92 char *pattern;
93 uint32_t id;
94 bool partial = false;
95 int len;
96
97 blobmsg_parse(evr_policy, EVREG_LAST, attr, blob_data(msg), blob_len(msg));
98 if (!attr[EVREG_OBJECT])
99 return UBUS_STATUS_INVALID_ARGUMENT;
100
101 id = blobmsg_get_u32(attr[EVREG_OBJECT]);
102 if (id < UBUS_SYSTEM_OBJECT_MAX)
103 return UBUS_STATUS_PERMISSION_DENIED;
104
105 obj = ubusd_find_object(id);
106 if (!obj)
107 return UBUS_STATUS_NOT_FOUND;
108
109 if (obj->client != cl)
110 return UBUS_STATUS_PERMISSION_DENIED;
111
112 if (!attr[EVREG_PATTERN])
113 return ubusd_alloc_catchall(obj);
114
115 pattern = blobmsg_data(attr[EVREG_PATTERN]);
116
117 len = strlen(pattern);
118 if (pattern[len - 1] == '*') {
119 partial = true;
120 pattern[len - 1] = 0;
121 len--;
122 }
123
124 ev = ubusd_alloc_event_source(obj, EVS_PATTERN, len + 1);
125 ev->pattern.partial = partial;
126 ev->pattern.avl.key = (void *) (ev + 1);
127 strcpy(ev->pattern.avl.key, pattern);
128 avl_insert(&patterns, &ev->pattern.avl);
129
130 return 0;
131 }
132
133 enum {
134 EVMSG_ID,
135 EVMSG_DATA,
136 EVMSG_LAST,
137 };
138
139 static struct blobmsg_policy ev_policy[] = {
140 [EVMSG_ID] = { .name = "id", .type = BLOBMSG_TYPE_STRING },
141 [EVMSG_DATA] = { .name = "data", .type = BLOBMSG_TYPE_TABLE },
142 };
143
144 static void ubusd_send_event_msg(struct ubus_msg_buf **ub, struct ubus_client *cl,
145 struct ubus_object *obj, const char *id,
146 struct blob_attr *msg)
147 {
148 uint32_t *objid_ptr;
149
150 /* do not loop back events */
151 if (obj->client == cl)
152 return;
153
154 /* do not send duplicate events */
155 if (obj->event_seen == obj_event_seq)
156 return;
157
158 obj->event_seen = obj_event_seq;
159
160 if (*ub) {
161 objid_ptr = blob_data(blob_data((*ub)->data));
162 *objid_ptr = htonl(obj->id.id);
163 } else {
164 blob_buf_init(&b, 0);
165 blob_put_int32(&b, UBUS_ATTR_OBJID, obj->id.id);
166 blob_put_string(&b, UBUS_ATTR_METHOD, id);
167 blob_put(&b, UBUS_ATTR_DATA, blobmsg_data(msg), blobmsg_data_len(msg));
168
169 *ub = ubus_msg_new(b.head, blob_raw_len(b.head), true);
170
171 (*ub)->hdr.type = UBUS_MSG_INVOKE;
172 (*ub)->hdr.peer = 0;
173 }
174 (*ub)->hdr.seq = ++event_seq;
175 ubus_msg_send(obj->client, *ub, false);
176 }
177
178 bool strmatch_len(const char *s1, const char *s2, int *len)
179 {
180 for (*len = 0; s1[*len] == s2[*len]; (*len)++)
181 if (!s1[*len])
182 return true;
183
184 return false;
185 }
186
187 static int ubusd_send_event(struct ubus_client *cl, struct blob_attr *msg)
188 {
189 struct ubus_msg_buf *ub = NULL;
190 struct event_source *ev;
191 struct blob_attr *attr[EVMSG_LAST];
192 const char *id;
193 int match_len = 0;
194 void *data;
195
196 blobmsg_parse(ev_policy, EVMSG_LAST, attr, blob_data(msg), blob_len(msg));
197 if (!attr[EVMSG_ID] || !attr[EVMSG_DATA])
198 return UBUS_STATUS_INVALID_ARGUMENT;
199
200 id = blobmsg_data(attr[EVMSG_ID]);
201 data = attr[EVMSG_DATA];
202
203 list_for_each_entry(ev, &catch_all, catchall.list)
204 ubusd_send_event_msg(&ub, cl, ev->obj, id, data);
205
206 obj_event_seq++;
207
208 /*
209 * Since this tree is sorted alphabetically, we can only expect to find
210 * matching entries as long as the number of matching characters
211 * between the pattern string and our string is monotonically increasing.
212 */
213 avl_for_each_element(&patterns, ev, pattern.avl) {
214 const char *key = ev->pattern.avl.key;
215 int cur_match_len;
216 bool full_match;
217
218 full_match = strmatch_len(id, key, &cur_match_len);
219 if (cur_match_len < match_len)
220 break;
221
222 match_len = cur_match_len;
223
224 if (!full_match) {
225 if (!ev->pattern.partial)
226 continue;
227
228 if (match_len != strlen(key))
229 continue;
230 }
231
232 ubusd_send_event_msg(&ub, cl, ev->obj, id, data);
233 }
234
235 if (ub)
236 ubus_msg_free(ub);
237
238 return 0;
239 }
240
241 static int ubusd_event_recv(struct ubus_client *cl, const char *method, struct blob_attr *msg)
242 {
243 if (!strcmp(method, "register"))
244 return ubusd_alloc_event_pattern(cl, msg);
245
246 if (!strcmp(method, "send"))
247 return ubusd_send_event(cl, msg);
248
249 return UBUS_STATUS_INVALID_COMMAND;
250 }
251
252 void ubusd_event_init(void)
253 {
254 ubus_init_string_tree(&patterns, true);
255 event_obj = ubusd_create_object_internal(NULL, UBUS_SYSTEM_OBJECT_EVENT);
256 event_obj->recv_msg = ubusd_event_recv;
257 }
258