uci: clear ptr.value in rpc_uci_merge_set(), this fixes missing delete deltas if...
[project/rpcd.git] / uci.c
1 /*
2 * rpcd - UBUS RPC server
3 *
4 * Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19 #include <libgen.h>
20 #include <glob.h>
21
22 #include <libubox/blobmsg.h>
23 #include <libubox/blobmsg_json.h>
24
25 #include <rpcd/uci.h>
26 #include <rpcd/session.h>
27
28 static struct blob_buf buf;
29 static struct uci_context *cursor;
30 static struct uloop_timeout apply_timer;
31 static struct ubus_context *apply_ctx;
32 static bool apply_running;
33
34 enum {
35 RPC_G_CONFIG,
36 RPC_G_SECTION,
37 RPC_G_OPTION,
38 RPC_G_TYPE,
39 RPC_G_MATCH,
40 RPC_G_SESSION,
41 __RPC_G_MAX,
42 };
43
44 static const struct blobmsg_policy rpc_uci_get_policy[__RPC_G_MAX] = {
45 [RPC_G_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
46 [RPC_G_SECTION] = { .name = "section", .type = BLOBMSG_TYPE_STRING },
47 [RPC_G_OPTION] = { .name = "option", .type = BLOBMSG_TYPE_STRING },
48 [RPC_G_TYPE] = { .name = "type", .type = BLOBMSG_TYPE_STRING },
49 [RPC_G_MATCH] = { .name = "match", .type = BLOBMSG_TYPE_TABLE },
50 [RPC_G_SESSION] = { .name = "ubus_rpc_session",
51 .type = BLOBMSG_TYPE_STRING },
52 };
53
54 enum {
55 RPC_A_CONFIG,
56 RPC_A_TYPE,
57 RPC_A_NAME,
58 RPC_A_VALUES,
59 RPC_A_SESSION,
60 __RPC_A_MAX,
61 };
62
63 static const struct blobmsg_policy rpc_uci_add_policy[__RPC_A_MAX] = {
64 [RPC_A_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
65 [RPC_A_TYPE] = { .name = "type", .type = BLOBMSG_TYPE_STRING },
66 [RPC_A_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
67 [RPC_A_VALUES] = { .name = "values", .type = BLOBMSG_TYPE_TABLE },
68 [RPC_A_SESSION] = { .name = "ubus_rpc_session",
69 .type = BLOBMSG_TYPE_STRING },
70 };
71
72 enum {
73 RPC_S_CONFIG,
74 RPC_S_SECTION,
75 RPC_S_TYPE,
76 RPC_S_MATCH,
77 RPC_S_VALUES,
78 RPC_S_SESSION,
79 __RPC_S_MAX,
80 };
81
82 static const struct blobmsg_policy rpc_uci_set_policy[__RPC_S_MAX] = {
83 [RPC_S_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
84 [RPC_S_SECTION] = { .name = "section", .type = BLOBMSG_TYPE_STRING },
85 [RPC_S_TYPE] = { .name = "type", .type = BLOBMSG_TYPE_STRING },
86 [RPC_S_MATCH] = { .name = "match", .type = BLOBMSG_TYPE_TABLE },
87 [RPC_S_VALUES] = { .name = "values", .type = BLOBMSG_TYPE_TABLE },
88 [RPC_S_SESSION] = { .name = "ubus_rpc_session",
89 .type = BLOBMSG_TYPE_STRING },
90 };
91
92 enum {
93 RPC_D_CONFIG,
94 RPC_D_SECTION,
95 RPC_D_TYPE,
96 RPC_D_MATCH,
97 RPC_D_OPTION,
98 RPC_D_OPTIONS,
99 RPC_D_SESSION,
100 __RPC_D_MAX,
101 };
102
103 static const struct blobmsg_policy rpc_uci_delete_policy[__RPC_D_MAX] = {
104 [RPC_D_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
105 [RPC_D_SECTION] = { .name = "section", .type = BLOBMSG_TYPE_STRING },
106 [RPC_D_TYPE] = { .name = "type", .type = BLOBMSG_TYPE_STRING },
107 [RPC_D_MATCH] = { .name = "match", .type = BLOBMSG_TYPE_TABLE },
108 [RPC_D_OPTION] = { .name = "option", .type = BLOBMSG_TYPE_STRING },
109 [RPC_D_OPTIONS] = { .name = "options", .type = BLOBMSG_TYPE_ARRAY },
110 [RPC_D_SESSION] = { .name = "ubus_rpc_session",
111 .type = BLOBMSG_TYPE_STRING },
112 };
113
114 enum {
115 RPC_R_CONFIG,
116 RPC_R_SECTION,
117 RPC_R_OPTION,
118 RPC_R_NAME,
119 RPC_R_SESSION,
120 __RPC_R_MAX,
121 };
122
123 static const struct blobmsg_policy rpc_uci_rename_policy[__RPC_R_MAX] = {
124 [RPC_R_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
125 [RPC_R_SECTION] = { .name = "section", .type = BLOBMSG_TYPE_STRING },
126 [RPC_R_OPTION] = { .name = "option", .type = BLOBMSG_TYPE_STRING },
127 [RPC_R_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
128 [RPC_R_SESSION] = { .name = "ubus_rpc_session",
129 .type = BLOBMSG_TYPE_STRING },
130 };
131
132 enum {
133 RPC_O_CONFIG,
134 RPC_O_SECTIONS,
135 RPC_O_SESSION,
136 __RPC_O_MAX,
137 };
138
139 static const struct blobmsg_policy rpc_uci_order_policy[__RPC_O_MAX] = {
140 [RPC_O_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
141 [RPC_O_SECTIONS] = { .name = "sections", .type = BLOBMSG_TYPE_ARRAY },
142 [RPC_O_SESSION] = { .name = "ubus_rpc_session",
143 .type = BLOBMSG_TYPE_STRING },
144 };
145
146 enum {
147 RPC_C_CONFIG,
148 RPC_C_SESSION,
149 __RPC_C_MAX,
150 };
151
152 static const struct blobmsg_policy rpc_uci_config_policy[__RPC_C_MAX] = {
153 [RPC_C_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
154 [RPC_C_SESSION] = { .name = "ubus_rpc_session",
155 .type = BLOBMSG_TYPE_STRING },
156 };
157
158 enum {
159 RPC_T_COMMIT,
160 RPC_T_TIMEOUT,
161 RPC_T_SESSION,
162 __RPC_T_MAX,
163 };
164
165 static const struct blobmsg_policy rpc_uci_apply_policy[__RPC_T_MAX] = {
166 [RPC_T_COMMIT] = { .name = "commit", .type = BLOBMSG_TYPE_BOOL },
167 [RPC_T_TIMEOUT] = { .name = "timeout", .type = BLOBMSG_TYPE_INT32 },
168 [RPC_T_SESSION] = { .name = "ubus_rpc_session",
169 .type = BLOBMSG_TYPE_STRING },
170 };
171
172 enum {
173 RPC_B_SESSION,
174 __RPC_B_MAX,
175 };
176
177 static const struct blobmsg_policy rpc_uci_rollback_policy[__RPC_B_MAX] = {
178 [RPC_B_SESSION] = { .name = "ubus_rpc_session",
179 .type = BLOBMSG_TYPE_STRING },
180 };
181
182 /*
183 * Turn uci error state into ubus return code
184 */
185 static int
186 rpc_uci_status(void)
187 {
188 switch (cursor->err)
189 {
190 case UCI_OK:
191 return UBUS_STATUS_OK;
192
193 case UCI_ERR_INVAL:
194 return UBUS_STATUS_INVALID_ARGUMENT;
195
196 case UCI_ERR_NOTFOUND:
197 return UBUS_STATUS_NOT_FOUND;
198
199 default:
200 return UBUS_STATUS_UNKNOWN_ERROR;
201 }
202 }
203
204 /*
205 * Setup per-session delta save directory. If the passed "sid" blob attribute
206 * pointer is NULL then the precedure was not invoked through the ubus-rpc so
207 * we do not perform session isolation and use the default save directory.
208 */
209 static void
210 rpc_uci_set_savedir(struct blob_attr *sid)
211 {
212 char path[PATH_MAX];
213
214 if (!sid)
215 {
216 uci_set_savedir(cursor, "/tmp/.uci");
217 return;
218 }
219
220 snprintf(path, sizeof(path) - 1,
221 RPC_UCI_SAVEDIR_PREFIX "%s", blobmsg_get_string(sid));
222
223 uci_set_savedir(cursor, path);
224 }
225
226 /*
227 * Test read access to given config. If the passed "sid" blob attribute pointer
228 * is NULL then the precedure was not invoked through the ubus-rpc so we do not
229 * perform access control and always assume true.
230 */
231 static bool
232 rpc_uci_read_access(struct blob_attr *sid, struct blob_attr *config)
233 {
234 rpc_uci_set_savedir(sid);
235
236 if (!sid)
237 return true;
238
239 return rpc_session_access(blobmsg_data(sid), "uci",
240 blobmsg_data(config), "read");
241 }
242
243 /*
244 * Test write access to given config. If the passed "sid" blob attribute pointer
245 * is NULL then the precedure was not invoked through the ubus-rpc so we do not
246 * perform access control and always assume true.
247 */
248 static bool
249 rpc_uci_write_access(struct blob_attr *sid, struct blob_attr *config)
250 {
251 rpc_uci_set_savedir(sid);
252
253 if (!sid)
254 return true;
255
256 return rpc_session_access(blobmsg_data(sid), "uci",
257 blobmsg_data(config), "write");
258 }
259
260 /*
261 * Format applicable blob value as string and place a pointer to the string
262 * buffer in "p". Uses a static string buffer.
263 */
264 static bool
265 rpc_uci_format_blob(struct blob_attr *v, const char **p)
266 {
267 static char buf[21];
268
269 *p = NULL;
270
271 switch (blobmsg_type(v))
272 {
273 case BLOBMSG_TYPE_STRING:
274 if (blobmsg_data_len(v) > 1)
275 *p = blobmsg_data(v);
276 break;
277
278 case BLOBMSG_TYPE_INT64:
279 snprintf(buf, sizeof(buf), "%"PRIu64, blobmsg_get_u64(v));
280 *p = buf;
281 break;
282
283 case BLOBMSG_TYPE_INT32:
284 snprintf(buf, sizeof(buf), "%u", blobmsg_get_u32(v));
285 *p = buf;
286 break;
287
288 case BLOBMSG_TYPE_INT16:
289 snprintf(buf, sizeof(buf), "%u", blobmsg_get_u16(v));
290 *p = buf;
291 break;
292
293 case BLOBMSG_TYPE_INT8:
294 snprintf(buf, sizeof(buf), "%u", !!blobmsg_get_u8(v));
295 *p = buf;
296 break;
297
298 default:
299 break;
300 }
301
302 return !!*p;
303 }
304
305 /*
306 * Lookup the given uci_ptr and enable extended lookup format if the .section
307 * value of the uci_ptr looks like extended syntax. Uses an internal copy
308 * of the given uci_ptr to perform the lookup as failing extended section
309 * lookup operations in libuci will zero our the uci_ptr struct.
310 * Copies the internal uci_ptr back to given the uci_ptr on success.
311 */
312 static int
313 rpc_uci_lookup(struct uci_ptr *ptr)
314 {
315 int rv;
316 struct uci_ptr lookup = *ptr;
317
318 if (!lookup.s && lookup.section && *lookup.section == '@')
319 lookup.flags |= UCI_LOOKUP_EXTENDED;
320
321 rv = uci_lookup_ptr(cursor, &lookup, NULL, true);
322
323 if (!rv)
324 *ptr = lookup;
325
326 return rv;
327 }
328
329 /*
330 * Checks whether the given uci_option object matches the given string value.
331 * 1) If the uci_option is of type list, check whether any of the list elements
332 * equals to the given string
333 * 2) If the uci_option is of type string, parse it into space separated tokens
334 * and check if any of the tokens equals to the given string.
335 * Returns true if a list element or token matched the given string.
336 */
337 static bool
338 rpc_uci_match_option(struct uci_option *o, const char *cmp)
339 {
340 struct uci_element *e;
341 char *s, *p;
342
343 if (o->type == UCI_TYPE_LIST)
344 {
345 uci_foreach_element(&o->v.list, e)
346 if (e->name && !strcmp(e->name, cmp))
347 return true;
348
349 return false;
350 }
351
352 if (!o->v.string)
353 return false;
354
355 s = strdup(o->v.string);
356
357 if (!s)
358 return false;
359
360 for (p = strtok(s, " \t"); p; p = strtok(NULL, " \t"))
361 {
362 if (!strcmp(p, cmp))
363 {
364 free(s);
365 return true;
366 }
367 }
368
369 free(s);
370 return false;
371 }
372
373 /*
374 * Checks whether the given uci_section matches the type and value blob attrs.
375 * 1) Returns false if "type" is given and the section type does not match
376 * the value specified in the "type" string blob attribute, else continue.
377 * 2) Tests whether any key in the "matches" table blob attribute exists in
378 * the given uci_section and whether each value is contained in the
379 * corresponding uci option value (see rpc_uci_match_option()).
380 * 3) A missing or empty "matches" table blob attribute is always considered
381 * to be a match.
382 * Returns true if "type" matches or is NULL and "matches" matches or is NULL.
383 */
384 static bool
385 rpc_uci_match_section(struct uci_section *s,
386 struct blob_attr *type, struct blob_attr *matches)
387 {
388 struct uci_element *e;
389 struct blob_attr *cur;
390 const char *cmp;
391 bool match = false;
392 bool empty = true;
393 int rem;
394
395 if (type && strcmp(s->type, blobmsg_data(type)))
396 return false;
397
398 if (!matches)
399 return true;
400
401 blobmsg_for_each_attr(cur, matches, rem)
402 {
403 if (!rpc_uci_format_blob(cur, &cmp))
404 continue;
405
406 uci_foreach_element(&s->options, e)
407 {
408 if (strcmp(e->name, blobmsg_name(cur)))
409 continue;
410
411 if (!rpc_uci_match_option(uci_to_option(e), cmp))
412 return false;
413
414 match = true;
415 }
416
417 empty = false;
418 }
419
420 return (empty || match);
421 }
422
423 /*
424 * Dump the given uci_option value into the global blobmsg buffer and use
425 * given "name" as key.
426 * 1) If the uci_option is of type list, put a table into the blob buffer and
427 * add each list item as string to it.
428 * 2) If the uci_option is of type string, put its value directly into the blob
429 * buffer.
430 */
431 static void
432 rpc_uci_dump_option(struct uci_option *o, const char *name)
433 {
434 void *c;
435 struct uci_element *e;
436
437 switch (o->type)
438 {
439 case UCI_TYPE_STRING:
440 blobmsg_add_string(&buf, name, o->v.string);
441 break;
442
443 case UCI_TYPE_LIST:
444 c = blobmsg_open_array(&buf, name);
445
446 uci_foreach_element(&o->v.list, e)
447 blobmsg_add_string(&buf, NULL, e->name);
448
449 blobmsg_close_array(&buf, c);
450 break;
451
452 default:
453 break;
454 }
455 }
456
457 /*
458 * Dump the given uci_section object into the global blobmsg buffer and use
459 * given "name" as key.
460 * Puts a table into the blob buffer and puts each section option member value
461 * as value into the table using the option name as key.
462 * Adds three special keys ".anonymous", ".type" and ".name" which specify the
463 * corresponding section properties.
464 */
465 static void
466 rpc_uci_dump_section(struct uci_section *s, const char *name, int index)
467 {
468 void *c;
469 struct uci_option *o;
470 struct uci_element *e;
471
472 c = blobmsg_open_table(&buf, name);
473
474 blobmsg_add_u8(&buf, ".anonymous", s->anonymous);
475 blobmsg_add_string(&buf, ".type", s->type);
476 blobmsg_add_string(&buf, ".name", s->e.name);
477
478 if (index >= 0)
479 blobmsg_add_u32(&buf, ".index", index);
480
481 uci_foreach_element(&s->options, e)
482 {
483 o = uci_to_option(e);
484 rpc_uci_dump_option(o, o->e.name);
485 }
486
487 blobmsg_close_table(&buf, c);
488 }
489
490 /*
491 * Dump the given uci_package object into the global blobmsg buffer and use
492 * given "name" as key.
493 * Puts a table into the blob buffer and puts each package section member as
494 * value into the table using the section name as key.
495 * Only dumps sections matching the given "type" and "matches", see explaination
496 * of rpc_uci_match_section() for details.
497 */
498 static void
499 rpc_uci_dump_package(struct uci_package *p, const char *name,
500 struct blob_attr *type, struct blob_attr *matches)
501 {
502 void *c;
503 struct uci_element *e;
504 int i = -1;
505
506 c = blobmsg_open_table(&buf, name);
507
508 uci_foreach_element(&p->sections, e)
509 {
510 i++;
511
512 if (!rpc_uci_match_section(uci_to_section(e), type, matches))
513 continue;
514
515 rpc_uci_dump_section(uci_to_section(e), e->name, i);
516 }
517
518 blobmsg_close_table(&buf, c);
519 }
520
521
522 static int
523 rpc_uci_get(struct ubus_context *ctx, struct ubus_object *obj,
524 struct ubus_request_data *req, const char *method,
525 struct blob_attr *msg)
526 {
527 struct blob_attr *tb[__RPC_G_MAX];
528 struct uci_package *p = NULL;
529 struct uci_ptr ptr = { 0 };
530
531 blobmsg_parse(rpc_uci_get_policy, __RPC_G_MAX, tb,
532 blob_data(msg), blob_len(msg));
533
534 if (!tb[RPC_G_CONFIG])
535 return UBUS_STATUS_INVALID_ARGUMENT;
536
537 if (!rpc_uci_read_access(tb[RPC_G_SESSION], tb[RPC_G_CONFIG]))
538 return UBUS_STATUS_PERMISSION_DENIED;
539
540 ptr.package = blobmsg_data(tb[RPC_G_CONFIG]);
541
542 if (uci_load(cursor, ptr.package, &p))
543 return rpc_uci_status();
544
545 if (tb[RPC_G_SECTION])
546 {
547 ptr.section = blobmsg_data(tb[RPC_G_SECTION]);
548
549 if (tb[RPC_G_OPTION])
550 ptr.option = blobmsg_data(tb[RPC_G_OPTION]);
551 }
552
553 if (rpc_uci_lookup(&ptr) || !(ptr.flags & UCI_LOOKUP_COMPLETE))
554 goto out;
555
556 blob_buf_init(&buf, 0);
557
558 switch (ptr.last->type)
559 {
560 case UCI_TYPE_PACKAGE:
561 rpc_uci_dump_package(ptr.p, "values", tb[RPC_G_TYPE], tb[RPC_G_MATCH]);
562 break;
563
564 case UCI_TYPE_SECTION:
565 rpc_uci_dump_section(ptr.s, "values", -1);
566 break;
567
568 case UCI_TYPE_OPTION:
569 rpc_uci_dump_option(ptr.o, "value");
570 break;
571
572 default:
573 break;
574 }
575
576 ubus_send_reply(ctx, req, buf.head);
577
578 out:
579 uci_unload(cursor, p);
580
581 return rpc_uci_status();
582 }
583
584 static int
585 rpc_uci_add(struct ubus_context *ctx, struct ubus_object *obj,
586 struct ubus_request_data *req, const char *method,
587 struct blob_attr *msg)
588 {
589 struct blob_attr *tb[__RPC_A_MAX];
590 struct blob_attr *cur, *elem;
591 struct uci_package *p = NULL;
592 struct uci_section *s;
593 struct uci_ptr ptr = { 0 };
594 int rem, rem2;
595
596 blobmsg_parse(rpc_uci_add_policy, __RPC_A_MAX, tb,
597 blob_data(msg), blob_len(msg));
598
599 if (!tb[RPC_A_CONFIG] || !tb[RPC_A_TYPE])
600 return UBUS_STATUS_INVALID_ARGUMENT;
601
602 if (!rpc_uci_write_access(tb[RPC_A_SESSION], tb[RPC_A_CONFIG]))
603 return UBUS_STATUS_PERMISSION_DENIED;
604
605 ptr.package = blobmsg_data(tb[RPC_A_CONFIG]);
606
607 if (uci_load(cursor, ptr.package, &p))
608 return rpc_uci_status();
609
610 /* add named section */
611 if (tb[RPC_A_NAME])
612 {
613 ptr.section = blobmsg_data(tb[RPC_A_NAME]);
614 ptr.value = blobmsg_data(tb[RPC_A_TYPE]);
615 ptr.option = NULL;
616
617 if (rpc_uci_lookup(&ptr) || uci_set(cursor, &ptr))
618 goto out;
619 }
620
621 /* add anon section */
622 else
623 {
624 if (uci_add_section(cursor, p, blobmsg_data(tb[RPC_A_TYPE]), &s) || !s)
625 goto out;
626
627 ptr.section = s->e.name;
628 }
629
630 if (tb[RPC_A_VALUES])
631 {
632 blobmsg_for_each_attr(cur, tb[RPC_A_VALUES], rem)
633 {
634 ptr.o = NULL;
635 ptr.option = blobmsg_name(cur);
636
637 if (rpc_uci_lookup(&ptr) || !ptr.s)
638 continue;
639
640 switch (blobmsg_type(cur))
641 {
642 case BLOBMSG_TYPE_ARRAY:
643 blobmsg_for_each_attr(elem, cur, rem2)
644 if (rpc_uci_format_blob(elem, &ptr.value))
645 uci_add_list(cursor, &ptr);
646 break;
647
648 default:
649 if (rpc_uci_format_blob(cur, &ptr.value))
650 uci_set(cursor, &ptr);
651 break;
652 }
653 }
654 }
655
656 uci_save(cursor, p);
657
658 blob_buf_init(&buf, 0);
659 blobmsg_add_string(&buf, "section", ptr.section);
660 ubus_send_reply(ctx, req, buf.head);
661
662 out:
663 uci_unload(cursor, p);
664
665 return rpc_uci_status();
666 }
667
668 /*
669 * Turn value from a blob attribute into uci set operation
670 * 1) if the blob is of type array, delete existing option (if any) and
671 * emit uci add_list operations for each element
672 * 2) if the blob is not an array but an option of type list exists,
673 * delete existing list and emit uci set operation for the blob value
674 * 3) in all other cases only emit a set operation if there is no existing
675 * option of if the existing options value differs from the blob value
676 */
677 static void
678 rpc_uci_merge_set(struct blob_attr *opt, struct uci_ptr *ptr)
679 {
680 struct blob_attr *cur;
681 int rem;
682
683 ptr->o = NULL;
684 ptr->option = blobmsg_name(opt);
685 ptr->value = NULL;
686
687 if (rpc_uci_lookup(ptr) || !ptr->s)
688 return;
689
690 if (blobmsg_type(opt) == BLOBMSG_TYPE_ARRAY)
691 {
692 if (ptr->o)
693 uci_delete(cursor, ptr);
694
695 blobmsg_for_each_attr(cur, opt, rem)
696 if (rpc_uci_format_blob(cur, &ptr->value))
697 uci_add_list(cursor, ptr);
698 }
699 else if (ptr->o && ptr->o->type == UCI_TYPE_LIST)
700 {
701 uci_delete(cursor, ptr);
702
703 if (rpc_uci_format_blob(opt, &ptr->value))
704 uci_set(cursor, ptr);
705 }
706 else if (rpc_uci_format_blob(opt, &ptr->value))
707 {
708 if (!ptr->o || !ptr->o->v.string || strcmp(ptr->o->v.string, ptr->value))
709 uci_set(cursor, ptr);
710 }
711 }
712
713 static int
714 rpc_uci_set(struct ubus_context *ctx, struct ubus_object *obj,
715 struct ubus_request_data *req, const char *method,
716 struct blob_attr *msg)
717 {
718 struct blob_attr *tb[__RPC_S_MAX];
719 struct blob_attr *cur;
720 struct uci_package *p = NULL;
721 struct uci_element *e;
722 struct uci_ptr ptr = { 0 };
723 int rem;
724
725 blobmsg_parse(rpc_uci_set_policy, __RPC_S_MAX, tb,
726 blob_data(msg), blob_len(msg));
727
728 if (!tb[RPC_S_CONFIG] || !tb[RPC_S_VALUES] ||
729 (!tb[RPC_S_SECTION] && !tb[RPC_S_TYPE] && !tb[RPC_S_MATCH]))
730 return UBUS_STATUS_INVALID_ARGUMENT;
731
732 if (!rpc_uci_write_access(tb[RPC_S_SESSION], tb[RPC_S_CONFIG]))
733 return UBUS_STATUS_PERMISSION_DENIED;
734
735 ptr.package = blobmsg_data(tb[RPC_S_CONFIG]);
736
737 if (uci_load(cursor, ptr.package, &p))
738 return rpc_uci_status();
739
740 if (tb[RPC_S_SECTION])
741 {
742 ptr.section = blobmsg_data(tb[RPC_S_SECTION]);
743 blobmsg_for_each_attr(cur, tb[RPC_S_VALUES], rem)
744 rpc_uci_merge_set(cur, &ptr);
745 }
746 else
747 {
748 uci_foreach_element(&p->sections, e)
749 {
750 if (!rpc_uci_match_section(uci_to_section(e),
751 tb[RPC_S_TYPE], tb[RPC_S_MATCH]))
752 continue;
753
754 ptr.s = NULL;
755 ptr.section = e->name;
756
757 blobmsg_for_each_attr(cur, tb[RPC_S_VALUES], rem)
758 rpc_uci_merge_set(cur, &ptr);
759 }
760 }
761
762 uci_save(cursor, p);
763 uci_unload(cursor, p);
764
765 return rpc_uci_status();
766 }
767
768 /*
769 * Delete option or section from uci specified by given blob attribute pointer
770 * 1) if the blob is of type array, delete any option named after each element
771 * 2) if the blob is of type string, delete the option named after its value
772 * 3) if the blob is NULL, delete entire section
773 */
774 static void
775 rpc_uci_merge_delete(struct blob_attr *opt, struct uci_ptr *ptr)
776 {
777 struct blob_attr *cur;
778 int rem;
779
780 if (rpc_uci_lookup(ptr) || !ptr->s)
781 return;
782
783 if (!opt)
784 {
785 ptr->o = NULL;
786 ptr->option = NULL;
787
788 uci_delete(cursor, ptr);
789 }
790 else if (blobmsg_type(opt) == BLOBMSG_TYPE_ARRAY)
791 {
792 blobmsg_for_each_attr(cur, opt, rem)
793 {
794 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
795 continue;
796
797 ptr->o = NULL;
798 ptr->option = blobmsg_data(cur);
799
800 if (rpc_uci_lookup(ptr) || !ptr->o)
801 continue;
802
803 uci_delete(cursor, ptr);
804 }
805 }
806 else if (blobmsg_type(opt) == BLOBMSG_TYPE_STRING)
807 {
808 ptr->o = NULL;
809 ptr->option = blobmsg_data(opt);
810
811 if (rpc_uci_lookup(ptr) || !ptr->o)
812 return;
813
814 uci_delete(cursor, ptr);
815 }
816 }
817
818 static int
819 rpc_uci_delete(struct ubus_context *ctx, struct ubus_object *obj,
820 struct ubus_request_data *req, const char *method,
821 struct blob_attr *msg)
822 {
823 struct blob_attr *tb[__RPC_D_MAX];
824 struct uci_package *p = NULL;
825 struct uci_element *e, *tmp;
826 struct uci_ptr ptr = { 0 };
827
828 blobmsg_parse(rpc_uci_delete_policy, __RPC_D_MAX, tb,
829 blob_data(msg), blob_len(msg));
830
831 if (!tb[RPC_D_CONFIG] ||
832 (!tb[RPC_D_SECTION] && !tb[RPC_D_TYPE] && !tb[RPC_D_MATCH]))
833 return UBUS_STATUS_INVALID_ARGUMENT;
834
835 if (!rpc_uci_write_access(tb[RPC_D_SESSION], tb[RPC_D_CONFIG]))
836 return UBUS_STATUS_PERMISSION_DENIED;
837
838 ptr.package = blobmsg_data(tb[RPC_D_CONFIG]);
839
840 if (uci_load(cursor, ptr.package, &p))
841 return rpc_uci_status();
842
843 if (tb[RPC_D_SECTION])
844 {
845 ptr.section = blobmsg_data(tb[RPC_D_SECTION]);
846
847 if (tb[RPC_D_OPTIONS])
848 rpc_uci_merge_delete(tb[RPC_D_OPTIONS], &ptr);
849 else
850 rpc_uci_merge_delete(tb[RPC_D_OPTION], &ptr);
851 }
852 else
853 {
854 uci_foreach_element_safe(&p->sections, tmp, e)
855 {
856 if (!rpc_uci_match_section(uci_to_section(e),
857 tb[RPC_D_TYPE], tb[RPC_D_MATCH]))
858 continue;
859
860 ptr.s = NULL;
861 ptr.section = e->name;
862
863 if (tb[RPC_D_OPTIONS])
864 rpc_uci_merge_delete(tb[RPC_D_OPTIONS], &ptr);
865 else
866 rpc_uci_merge_delete(tb[RPC_D_OPTION], &ptr);
867 }
868 }
869
870 uci_save(cursor, p);
871 uci_unload(cursor, p);
872
873 return rpc_uci_status();
874 }
875
876 static int
877 rpc_uci_rename(struct ubus_context *ctx, struct ubus_object *obj,
878 struct ubus_request_data *req, const char *method,
879 struct blob_attr *msg)
880 {
881 struct blob_attr *tb[__RPC_R_MAX];
882 struct uci_package *p = NULL;
883 struct uci_ptr ptr = { 0 };
884
885 blobmsg_parse(rpc_uci_rename_policy, __RPC_R_MAX, tb,
886 blob_data(msg), blob_len(msg));
887
888 if (!tb[RPC_R_CONFIG] || !tb[RPC_R_SECTION] || !tb[RPC_R_NAME])
889 return UBUS_STATUS_INVALID_ARGUMENT;
890
891 if (!rpc_uci_write_access(tb[RPC_R_SESSION], tb[RPC_R_CONFIG]))
892 return UBUS_STATUS_PERMISSION_DENIED;
893
894 ptr.package = blobmsg_data(tb[RPC_R_CONFIG]);
895 ptr.section = blobmsg_data(tb[RPC_R_SECTION]);
896 ptr.value = blobmsg_data(tb[RPC_R_NAME]);
897
898 if (tb[RPC_R_OPTION])
899 ptr.option = blobmsg_data(tb[RPC_R_OPTION]);
900
901 if (uci_load(cursor, ptr.package, &p))
902 return rpc_uci_status();
903
904 if (uci_lookup_ptr(cursor, &ptr, NULL, true))
905 goto out;
906
907 if ((ptr.option && !ptr.o) || !ptr.s)
908 {
909 cursor->err = UCI_ERR_NOTFOUND;
910 goto out;
911 }
912
913 if (uci_rename(cursor, &ptr))
914 goto out;
915
916 uci_save(cursor, p);
917
918 out:
919 uci_unload(cursor, p);
920
921 return rpc_uci_status();
922 }
923
924 static int
925 rpc_uci_order(struct ubus_context *ctx, struct ubus_object *obj,
926 struct ubus_request_data *req, const char *method,
927 struct blob_attr *msg)
928 {
929 struct blob_attr *tb[__RPC_O_MAX];
930 struct blob_attr *cur;
931 struct uci_package *p = NULL;
932 struct uci_ptr ptr = { 0 };
933 int rem, i = 1;
934
935 blobmsg_parse(rpc_uci_order_policy, __RPC_O_MAX, tb,
936 blob_data(msg), blob_len(msg));
937
938 if (!tb[RPC_O_CONFIG] || !tb[RPC_O_SECTIONS])
939 return UBUS_STATUS_INVALID_ARGUMENT;
940
941 if (!rpc_uci_write_access(tb[RPC_O_SESSION], tb[RPC_O_CONFIG]))
942 return UBUS_STATUS_PERMISSION_DENIED;
943
944 ptr.package = blobmsg_data(tb[RPC_O_CONFIG]);
945
946 if (uci_load(cursor, ptr.package, &p))
947 return rpc_uci_status();
948
949 blobmsg_for_each_attr(cur, tb[RPC_O_SECTIONS], rem)
950 {
951 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
952 continue;
953
954 ptr.s = NULL;
955 ptr.section = blobmsg_data(cur);
956
957 if (uci_lookup_ptr(cursor, &ptr, NULL, true) || !ptr.s)
958 continue;
959
960 uci_reorder_section(cursor, ptr.s, i++);
961 }
962
963 uci_save(cursor, p);
964 uci_unload(cursor, p);
965
966 return rpc_uci_status();
967 }
968
969 static void
970 rpc_uci_dump_change(struct uci_delta *d)
971 {
972 void *c;
973 const char *types[] = {
974 [UCI_CMD_REORDER] = "order",
975 [UCI_CMD_REMOVE] = "remove",
976 [UCI_CMD_RENAME] = "rename",
977 [UCI_CMD_ADD] = "add",
978 [UCI_CMD_LIST_ADD] = "list-add",
979 [UCI_CMD_LIST_DEL] = "list-del",
980 [UCI_CMD_CHANGE] = "set",
981 };
982
983 if (!d->section)
984 return;
985
986 c = blobmsg_open_array(&buf, NULL);
987
988 blobmsg_add_string(&buf, NULL, types[d->cmd]);
989 blobmsg_add_string(&buf, NULL, d->section);
990
991 if (d->e.name)
992 blobmsg_add_string(&buf, NULL, d->e.name);
993
994 if (d->value)
995 {
996 if (d->cmd == UCI_CMD_REORDER)
997 blobmsg_add_u32(&buf, NULL, strtoul(d->value, NULL, 10));
998 else
999 blobmsg_add_string(&buf, NULL, d->value);
1000 }
1001
1002 blobmsg_close_array(&buf, c);
1003 }
1004
1005 static int
1006 rpc_uci_changes(struct ubus_context *ctx, struct ubus_object *obj,
1007 struct ubus_request_data *req, const char *method,
1008 struct blob_attr *msg)
1009 {
1010 struct blob_attr *tb[__RPC_C_MAX];
1011 struct uci_package *p = NULL;
1012 struct uci_element *e;
1013 void *c;
1014
1015 blobmsg_parse(rpc_uci_config_policy, __RPC_C_MAX, tb,
1016 blob_data(msg), blob_len(msg));
1017
1018 if (!tb[RPC_C_CONFIG])
1019 return UBUS_STATUS_INVALID_ARGUMENT;
1020
1021 if (!rpc_uci_read_access(tb[RPC_C_SESSION], tb[RPC_C_CONFIG]))
1022 return UBUS_STATUS_PERMISSION_DENIED;
1023
1024 if (uci_load(cursor, blobmsg_data(tb[RPC_C_CONFIG]), &p))
1025 return rpc_uci_status();
1026
1027 blob_buf_init(&buf, 0);
1028 c = blobmsg_open_array(&buf, "changes");
1029
1030 uci_foreach_element(&p->saved_delta, e)
1031 rpc_uci_dump_change(uci_to_delta(e));
1032
1033 blobmsg_close_array(&buf, c);
1034
1035 ubus_send_reply(ctx, req, buf.head);
1036
1037 uci_unload(cursor, p);
1038
1039 return rpc_uci_status();
1040 }
1041
1042 static void
1043 rpc_uci_trigger_event(struct ubus_context *ctx, const char *config)
1044 {
1045 char *pkg = strdup(config);
1046 static struct blob_buf b;
1047 uint32_t id;
1048
1049 if (!ubus_lookup_id(ctx, "service", &id)) {
1050 void *c;
1051
1052 blob_buf_init(&b, 0);
1053 blobmsg_add_string(&b, "type", "config.change");
1054 c = blobmsg_open_table(&b, "data");
1055 blobmsg_add_string(&b, "package", pkg);
1056 blobmsg_close_table(&b, c);
1057 ubus_invoke(ctx, id, "event", b.head, NULL, 0, 1000);
1058 }
1059 free(pkg);
1060 }
1061
1062 static int
1063 rpc_uci_revert_commit(struct ubus_context *ctx, struct blob_attr *msg, bool commit)
1064 {
1065 struct blob_attr *tb[__RPC_C_MAX];
1066 struct uci_package *p = NULL;
1067 struct uci_ptr ptr = { 0 };
1068
1069 if (!apply_running)
1070 return UBUS_STATUS_PERMISSION_DENIED;
1071
1072 blobmsg_parse(rpc_uci_config_policy, __RPC_C_MAX, tb,
1073 blob_data(msg), blob_len(msg));
1074
1075 if (!tb[RPC_C_CONFIG])
1076 return UBUS_STATUS_INVALID_ARGUMENT;
1077
1078 if (!rpc_uci_write_access(tb[RPC_C_SESSION], tb[RPC_C_CONFIG]))
1079 return UBUS_STATUS_PERMISSION_DENIED;
1080
1081 ptr.package = blobmsg_data(tb[RPC_C_CONFIG]);
1082
1083 if (commit)
1084 {
1085 if (!uci_load(cursor, ptr.package, &p))
1086 {
1087 uci_commit(cursor, &p, false);
1088 uci_unload(cursor, p);
1089 }
1090 rpc_uci_trigger_event(ctx, blobmsg_get_string(tb[RPC_C_CONFIG]));
1091 }
1092 else
1093 {
1094 if (!uci_lookup_ptr(cursor, &ptr, NULL, true) && ptr.p)
1095 uci_revert(cursor, &ptr);
1096 }
1097
1098 return rpc_uci_status();
1099 }
1100
1101 static int
1102 rpc_uci_revert(struct ubus_context *ctx, struct ubus_object *obj,
1103 struct ubus_request_data *req, const char *method,
1104 struct blob_attr *msg)
1105 {
1106 return rpc_uci_revert_commit(ctx, msg, false);
1107 }
1108
1109 static int
1110 rpc_uci_commit(struct ubus_context *ctx, struct ubus_object *obj,
1111 struct ubus_request_data *req, const char *method,
1112 struct blob_attr *msg)
1113 {
1114 return rpc_uci_revert_commit(ctx, msg, true);
1115 }
1116
1117 static int
1118 rpc_uci_configs(struct ubus_context *ctx, struct ubus_object *obj,
1119 struct ubus_request_data *req, const char *method,
1120 struct blob_attr *msg)
1121 {
1122 char **configs;
1123 void *c;
1124 int i;
1125
1126 if (uci_list_configs(cursor, &configs))
1127 goto out;
1128
1129 blob_buf_init(&buf, 0);
1130
1131 c = blobmsg_open_array(&buf, "configs");
1132
1133 for (i = 0; configs[i]; i++)
1134 blobmsg_add_string(&buf, NULL, configs[i]);
1135
1136 blobmsg_close_array(&buf, c);
1137
1138 ubus_send_reply(ctx, req, buf.head);
1139
1140 out:
1141 return rpc_uci_status();
1142 }
1143
1144
1145 /*
1146 * Remove given delta save directory (if any).
1147 */
1148 static void
1149 rpc_uci_purge_dir(const char *path)
1150 {
1151 DIR *d;
1152 struct stat s;
1153 struct dirent *e;
1154 char file[PATH_MAX];
1155
1156 if (stat(path, &s) || !S_ISDIR(s.st_mode))
1157 return;
1158
1159 if ((d = opendir(path)) != NULL)
1160 {
1161 while ((e = readdir(d)) != NULL)
1162 {
1163 snprintf(file, sizeof(file) - 1, "%s/%s", path, e->d_name);
1164
1165 if (stat(file, &s) || !S_ISREG(s.st_mode))
1166 continue;
1167
1168 unlink(file);
1169 }
1170
1171 closedir(d);
1172
1173 rmdir(path);
1174 }
1175 }
1176
1177 static int
1178 rpc_uci_apply_config(struct ubus_context *ctx, char *config)
1179 {
1180 struct uci_package *p = NULL;
1181 struct uci_ptr ptr = { 0 };
1182
1183 ptr.package = config;
1184
1185 if (!uci_load(cursor, ptr.package, &p)) {
1186 uci_commit(cursor, &p, false);
1187 uci_unload(cursor, p);
1188 }
1189 rpc_uci_trigger_event(ctx, config);
1190
1191 return 0;
1192 }
1193
1194 static void
1195 rpc_uci_copy_file(const char *src, const char *target, const char *file)
1196 {
1197 char tmp[256];
1198 FILE *in, *out;
1199
1200 snprintf(tmp, sizeof(tmp), "%s%s", src, file);
1201 in = fopen(tmp, "rb");
1202 snprintf(tmp, sizeof(tmp), "%s%s", target, file);
1203 out = fopen(tmp, "wb+");
1204 if (in && out)
1205 while (!feof(in)) {
1206 int len = fread(tmp, 1, sizeof(tmp), in);
1207
1208 if(len > 0)
1209 fwrite(tmp, 1, len, out);
1210 }
1211 if(in)
1212 fclose(in);
1213 if(out)
1214 fclose(out);
1215 }
1216
1217 static void
1218 rpc_uci_do_rollback(struct ubus_context *ctx, const char *sid, glob_t *gl)
1219 {
1220 int i;
1221 char tmp[PATH_MAX];
1222
1223 if (sid) {
1224 snprintf(tmp, sizeof(tmp), RPC_UCI_SAVEDIR_PREFIX "%s/", sid);
1225 mkdir(tmp, 0700);
1226 }
1227
1228 for (i = 0; i < gl->gl_pathc; i++) {
1229 char *config = basename(gl->gl_pathv[i]);
1230
1231 if (*config == '.')
1232 continue;
1233
1234 rpc_uci_copy_file(RPC_SNAPSHOT_FILES, RPC_UCI_DIR, config);
1235 rpc_uci_apply_config(ctx, config);
1236 if (sid)
1237 rpc_uci_copy_file(RPC_SNAPSHOT_DELTA, tmp, config);
1238 }
1239
1240 rpc_uci_purge_dir(RPC_SNAPSHOT_FILES);
1241 rpc_uci_purge_dir(RPC_SNAPSHOT_DELTA);
1242
1243 uloop_timeout_cancel(&apply_timer);
1244 apply_running = false;
1245 apply_ctx = NULL;
1246 }
1247
1248 static void
1249 rpc_uci_apply_timeout(struct uloop_timeout *t)
1250 {
1251 glob_t gl;
1252 char tmp[PATH_MAX];
1253
1254 snprintf(tmp, sizeof(tmp), "%s/*", RPC_SNAPSHOT_FILES);
1255 if (glob(tmp, GLOB_PERIOD, NULL, &gl) < 0)
1256 return;
1257
1258 rpc_uci_do_rollback(apply_ctx, NULL, &gl);
1259 }
1260
1261 static int
1262 rpc_uci_apply_access(const char *sid, glob_t *gl)
1263 {
1264 struct stat s;
1265 int i, c = 0;
1266
1267 if (gl->gl_pathc < 3)
1268 return UBUS_STATUS_NO_DATA;
1269
1270 for (i = 0; i < gl->gl_pathc; i++) {
1271 char *config = basename(gl->gl_pathv[i]);
1272
1273 if (*config == '.')
1274 continue;
1275 if (stat(gl->gl_pathv[i], &s) || !s.st_size)
1276 continue;
1277 if (!rpc_session_access(sid, "uci", config, "write"))
1278 return UBUS_STATUS_PERMISSION_DENIED;
1279 c++;
1280 }
1281
1282 if (!c)
1283 return UBUS_STATUS_NO_DATA;
1284
1285 return 0;
1286 }
1287
1288 static int
1289 rpc_uci_apply(struct ubus_context *ctx, struct ubus_object *obj,
1290 struct ubus_request_data *req, const char *method,
1291 struct blob_attr *msg)
1292 {
1293 struct blob_attr *tb[__RPC_T_MAX];
1294 int timeout = RPC_APPLY_TIMEOUT;
1295 char tmp[PATH_MAX];
1296 bool commit = false;
1297 int ret, i;
1298 char *sid;
1299 glob_t gl;
1300
1301 blobmsg_parse(rpc_uci_apply_policy, __RPC_T_MAX, tb,
1302 blob_data(msg), blob_len(msg));
1303
1304 if (tb[RPC_T_COMMIT])
1305 commit = blobmsg_get_bool(tb[RPC_T_COMMIT]);
1306
1307 if (apply_running && !commit)
1308 return UBUS_STATUS_PERMISSION_DENIED;
1309
1310 if (!tb[RPC_T_SESSION])
1311 return UBUS_STATUS_INVALID_ARGUMENT;
1312
1313 sid = blobmsg_data(tb[RPC_T_SESSION]);
1314
1315 if (tb[RPC_T_TIMEOUT])
1316 timeout = blobmsg_get_u32(tb[RPC_T_TIMEOUT]);
1317
1318 rpc_uci_purge_dir(RPC_SNAPSHOT_FILES);
1319 rpc_uci_purge_dir(RPC_SNAPSHOT_DELTA);
1320
1321 if (!apply_running) {
1322 mkdir(RPC_SNAPSHOT_FILES, 0700);
1323 mkdir(RPC_SNAPSHOT_DELTA, 0700);
1324
1325 snprintf(tmp, sizeof(tmp), RPC_UCI_SAVEDIR_PREFIX "%s/*", sid);
1326 if (glob(tmp, GLOB_PERIOD, NULL, &gl) < 0)
1327 return -1;
1328
1329 snprintf(tmp, sizeof(tmp), RPC_UCI_SAVEDIR_PREFIX "%s/", sid);
1330
1331 ret = rpc_uci_apply_access(sid, &gl);
1332 if (ret) {
1333 globfree(&gl);
1334 return ret;
1335 }
1336
1337 for (i = 0; i < gl.gl_pathc; i++) {
1338 char *config = basename(gl.gl_pathv[i]);
1339 struct stat s;
1340
1341 if (*config == '.')
1342 continue;
1343
1344 if (stat(gl.gl_pathv[i], &s) || !s.st_size)
1345 continue;
1346
1347 rpc_uci_copy_file(RPC_UCI_DIR, RPC_SNAPSHOT_FILES, config);
1348 rpc_uci_copy_file(tmp, RPC_SNAPSHOT_DELTA, config);
1349 rpc_uci_apply_config(ctx, config);
1350 }
1351
1352 globfree(&gl);
1353
1354 apply_running = true;
1355 apply_timer.cb = rpc_uci_apply_timeout;
1356 uloop_timeout_set(&apply_timer, timeout * 1000);
1357 apply_ctx = ctx;
1358 }
1359
1360 if (apply_running && commit) {
1361 rpc_uci_purge_dir(RPC_SNAPSHOT_FILES);
1362 rpc_uci_purge_dir(RPC_SNAPSHOT_DELTA);
1363
1364 uloop_timeout_cancel(&apply_timer);
1365 apply_running = false;
1366 apply_ctx = NULL;
1367 }
1368
1369 return 0;
1370 }
1371
1372 static int
1373 rpc_uci_rollback(struct ubus_context *ctx, struct ubus_object *obj,
1374 struct ubus_request_data *req, const char *method,
1375 struct blob_attr *msg)
1376 {
1377 struct blob_attr *tb[__RPC_B_MAX];
1378 char tmp[PATH_MAX];
1379 glob_t gl;
1380 char *sid;
1381 int ret;
1382
1383 blobmsg_parse(rpc_uci_rollback_policy, __RPC_B_MAX, tb,
1384 blob_data(msg), blob_len(msg));
1385
1386 if (!apply_running)
1387 return UBUS_STATUS_PERMISSION_DENIED;
1388
1389 if (!tb[RPC_B_SESSION])
1390 return UBUS_STATUS_INVALID_ARGUMENT;
1391
1392 sid = blobmsg_data(tb[RPC_B_SESSION]);
1393
1394 snprintf(tmp, sizeof(tmp), "%s/*", RPC_SNAPSHOT_FILES);
1395 if (glob(tmp, GLOB_PERIOD, NULL, &gl) < 0)
1396 return -1;
1397
1398 ret = rpc_uci_apply_access(sid, &gl);
1399 if (ret) {
1400 globfree(&gl);
1401 return ret;
1402 }
1403
1404 rpc_uci_do_rollback(ctx, sid, &gl);
1405
1406 globfree(&gl);
1407
1408 return 0;
1409 }
1410
1411
1412 /*
1413 * Session destroy callback to purge associated delta directory.
1414 */
1415 static void
1416 rpc_uci_purge_savedir_cb(struct rpc_session *ses, void *priv)
1417 {
1418 char path[PATH_MAX];
1419
1420 snprintf(path, sizeof(path) - 1, RPC_UCI_SAVEDIR_PREFIX "%s", ses->id);
1421 rpc_uci_purge_dir(path);
1422 }
1423
1424 /*
1425 * Removes all delta directories which match the RPC_UCI_SAVEDIR_PREFIX.
1426 * This is used to clean up garbage when starting rpcd.
1427 */
1428 void rpc_uci_purge_savedirs(void)
1429 {
1430 int i;
1431 glob_t gl;
1432
1433 if (!glob(RPC_UCI_SAVEDIR_PREFIX "*", 0, NULL, &gl))
1434 {
1435 for (i = 0; i < gl.gl_pathc; i++)
1436 rpc_uci_purge_dir(gl.gl_pathv[i]);
1437
1438 globfree(&gl);
1439 }
1440 }
1441
1442 int rpc_uci_api_init(struct ubus_context *ctx)
1443 {
1444 static const struct ubus_method uci_methods[] = {
1445 { .name = "configs", .handler = rpc_uci_configs },
1446 UBUS_METHOD("get", rpc_uci_get, rpc_uci_get_policy),
1447 UBUS_METHOD("add", rpc_uci_add, rpc_uci_add_policy),
1448 UBUS_METHOD("set", rpc_uci_set, rpc_uci_set_policy),
1449 UBUS_METHOD("delete", rpc_uci_delete, rpc_uci_delete_policy),
1450 UBUS_METHOD("rename", rpc_uci_rename, rpc_uci_rename_policy),
1451 UBUS_METHOD("order", rpc_uci_order, rpc_uci_order_policy),
1452 UBUS_METHOD("changes", rpc_uci_changes, rpc_uci_config_policy),
1453 UBUS_METHOD("revert", rpc_uci_revert, rpc_uci_config_policy),
1454 UBUS_METHOD("commit", rpc_uci_commit, rpc_uci_config_policy),
1455 UBUS_METHOD("apply", rpc_uci_apply, rpc_uci_apply_policy),
1456 UBUS_METHOD("rollback", rpc_uci_rollback, rpc_uci_rollback_policy),
1457 };
1458
1459 static struct ubus_object_type uci_type =
1460 UBUS_OBJECT_TYPE("luci-rpc-uci", uci_methods);
1461
1462 static struct ubus_object obj = {
1463 .name = "uci",
1464 .type = &uci_type,
1465 .methods = uci_methods,
1466 .n_methods = ARRAY_SIZE(uci_methods),
1467 };
1468
1469 static struct rpc_session_cb cb = {
1470 .cb = rpc_uci_purge_savedir_cb
1471 };
1472
1473 cursor = uci_alloc_context();
1474
1475 if (!cursor)
1476 return UBUS_STATUS_UNKNOWN_ERROR;
1477
1478 rpc_session_destroy_cb(&cb);
1479
1480 return ubus_add_object(ctx, &obj);
1481 }