luci2: add crontab_get and crontab_set calls, rename rpc_rclocal_policy to rpc_data_p...
[project/rpcd.git] / luci2.c
1 /*
2  * luci-rpcd - LuCI 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 <fcntl.h>
20 #include <errno.h>
21 #include <unistd.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <ctype.h>
25 #include <sys/wait.h>
26 #include <sys/stat.h>
27 #include <sys/types.h>
28 #include <sys/statvfs.h>
29 #include <dirent.h>
30 #include <arpa/inet.h>
31 #include <signal.h>
32
33 #include "luci2.h"
34 #include "exec.h"
35
36 static struct blob_buf buf;
37 static struct uci_context *cursor;
38
39 enum {
40         RPC_S_PID,
41         RPC_S_SIGNAL,
42         __RPC_S_MAX,
43 };
44
45 static const struct blobmsg_policy rpc_signal_policy[__RPC_S_MAX] = {
46         [RPC_S_PID]    = { .name = "pid",    .type = BLOBMSG_TYPE_INT32 },
47         [RPC_S_SIGNAL] = { .name = "signal", .type = BLOBMSG_TYPE_INT32 },
48 };
49
50 enum {
51         RPC_I_NAME,
52         RPC_I_ACTION,
53         __RPC_I_MAX,
54 };
55
56 static const struct blobmsg_policy rpc_init_policy[__RPC_I_MAX] = {
57         [RPC_I_NAME]   = { .name = "name",   .type = BLOBMSG_TYPE_STRING },
58         [RPC_I_ACTION] = { .name = "action", .type = BLOBMSG_TYPE_STRING },
59 };
60
61 enum {
62         RPC_D_DATA,
63         __RPC_D_MAX
64 };
65
66 static const struct blobmsg_policy rpc_data_policy[__RPC_D_MAX] = {
67         [RPC_D_DATA]   = { .name = "data",  .type = BLOBMSG_TYPE_STRING },
68 };
69
70 enum {
71         RPC_K_KEYS,
72         __RPC_K_MAX
73 };
74
75 static const struct blobmsg_policy rpc_sshkey_policy[__RPC_K_MAX] = {
76         [RPC_K_KEYS]   = { .name = "keys",   .type = BLOBMSG_TYPE_ARRAY },
77 };
78
79 enum {
80         RPC_P_USER,
81         RPC_P_PASSWORD,
82         __RPC_P_MAX
83 };
84
85 static const struct blobmsg_policy rpc_password_policy[__RPC_P_MAX] = {
86         [RPC_P_USER]     = { .name = "user",     .type = BLOBMSG_TYPE_STRING },
87         [RPC_P_PASSWORD] = { .name = "password", .type = BLOBMSG_TYPE_STRING },
88 };
89
90 enum {
91         RPC_OM_LIMIT,
92         RPC_OM_OFFSET,
93         RPC_OM_PATTERN,
94         __RPC_OM_MAX
95 };
96
97 static const struct blobmsg_policy rpc_opkg_match_policy[__RPC_OM_MAX] = {
98         [RPC_OM_LIMIT]    = { .name = "limit",    .type = BLOBMSG_TYPE_INT32  },
99         [RPC_OM_OFFSET]   = { .name = "offset",   .type = BLOBMSG_TYPE_INT32  },
100         [RPC_OM_PATTERN]  = { .name = "pattern",  .type = BLOBMSG_TYPE_STRING },
101 };
102
103 enum {
104         RPC_OP_PACKAGE,
105         __RPC_OP_MAX
106 };
107
108 static const struct blobmsg_policy rpc_opkg_package_policy[__RPC_OP_MAX] = {
109         [RPC_OP_PACKAGE]  = { .name = "package",  .type = BLOBMSG_TYPE_STRING },
110 };
111
112 enum {
113         RPC_OC_CONFIG,
114         __RPC_OC_MAX
115 };
116
117 static const struct blobmsg_policy rpc_opkg_config_policy[__RPC_OC_MAX] = {
118         [RPC_OC_CONFIG]     = { .name = "config", .type = BLOBMSG_TYPE_STRING },
119 };
120
121
122 static int
123 rpc_errno_status(void)
124 {
125         switch (errno)
126         {
127         case EACCES:
128                 return UBUS_STATUS_PERMISSION_DENIED;
129
130         case ENOTDIR:
131                 return UBUS_STATUS_INVALID_ARGUMENT;
132
133         case ENOENT:
134                 return UBUS_STATUS_NOT_FOUND;
135
136         case EINVAL:
137                 return UBUS_STATUS_INVALID_ARGUMENT;
138
139         default:
140                 return UBUS_STATUS_UNKNOWN_ERROR;
141         }
142 }
143
144 static void
145 log_read(FILE *log, int logsize)
146 {
147         int len;
148         char *logbuf;
149
150         if (logsize == 0)
151                 logsize = RPC_LUCI2_DEF_LOGSIZE;
152
153         len = (logsize > RPC_LUCI2_MAX_LOGSIZE) ? RPC_LUCI2_MAX_LOGSIZE : logsize;
154         logbuf = blobmsg_alloc_string_buffer(&buf, "log", len + 1);
155
156         if (!logbuf)
157                 return;
158
159         while (logsize > RPC_LUCI2_MAX_LOGSIZE)
160         {
161                 len = logsize % RPC_LUCI2_MAX_LOGSIZE;
162
163                 if (len == 0)
164                         len = RPC_LUCI2_MAX_LOGSIZE;
165
166                 fread(logbuf, 1, len, log);
167                 logsize -= len;
168         }
169
170         len = fread(logbuf, 1, logsize, log);
171         *(logbuf + len) = 0;
172
173         blobmsg_add_string_buffer(&buf);
174 }
175
176 static int
177 rpc_luci2_system_log(struct ubus_context *ctx, struct ubus_object *obj,
178                      struct ubus_request_data *req, const char *method,
179                      struct blob_attr *msg)
180 {
181         FILE *log;
182         int logsize = 0;
183         const char *logfile = NULL;
184         struct stat st;
185         struct uci_package *p;
186         struct uci_element *e;
187         struct uci_section *s;
188         struct uci_ptr ptr = { .package = "system" };
189
190         uci_load(cursor, ptr.package, &p);
191
192         if (!p)
193                 return UBUS_STATUS_NOT_FOUND;
194
195         uci_foreach_element(&p->sections, e)
196         {
197                 s = uci_to_section(e);
198
199                 if (strcmp(s->type, "system"))
200                         continue;
201
202                 ptr.o = NULL;
203                 ptr.option = "log_type";
204                 ptr.section = e->name;
205                 uci_lookup_ptr(cursor, &ptr, NULL, true);
206                 break;
207         }
208
209         if (ptr.o && ptr.o->type == UCI_TYPE_STRING &&
210             !strcmp(ptr.o->v.string, "file"))
211         {
212                 ptr.o = NULL;
213                 ptr.option = "log_file";
214                 uci_lookup_ptr(cursor, &ptr, NULL, true);
215
216                 if (ptr.o && ptr.o->type == UCI_TYPE_STRING)
217                         logfile = ptr.o->v.string;
218                 else
219                         logfile = "/var/log/messages";
220
221                 if (stat(logfile, &st) || !(log = fopen(logfile, "r")))
222                         goto fail;
223
224                 logsize = st.st_size;
225         }
226         else
227         {
228                 ptr.o = NULL;
229                 ptr.option = "log_size";
230                 uci_lookup_ptr(cursor, &ptr, NULL, true);
231
232                 if (ptr.o && ptr.o->type == UCI_TYPE_STRING)
233                         logsize = atoi(ptr.o->v.string) * 1024;
234
235                 if (!(log = popen("logread", "r")))
236                         goto fail;
237         }
238
239         blob_buf_init(&buf, 0);
240
241         log_read(log, logsize);
242         fclose(log);
243
244         uci_unload(cursor, p);
245         ubus_send_reply(ctx, req, buf.head);
246         return 0;
247
248 fail:
249         uci_unload(cursor, p);
250         return rpc_errno_status();
251 }
252
253 static int
254 rpc_luci2_system_dmesg(struct ubus_context *ctx, struct ubus_object *obj,
255                        struct ubus_request_data *req, const char *method,
256                        struct blob_attr *msg)
257 {
258         FILE *log;
259
260         if (!(log = popen("dmesg", "r")))
261                 return rpc_errno_status();
262
263         blob_buf_init(&buf, 0);
264
265         log_read(log, RPC_LUCI2_MAX_LOGSIZE);
266         fclose(log);
267
268         ubus_send_reply(ctx, req, buf.head);
269         return 0;
270 }
271
272 static int
273 rpc_luci2_system_diskfree(struct ubus_context *ctx, struct ubus_object *obj,
274                           struct ubus_request_data *req, const char *method,
275                           struct blob_attr *msg)
276 {
277         int i;
278         void *c;
279         struct statvfs s;
280         const char *fslist[] = {
281                 "/",    "root",
282                 "/tmp", "tmp",
283         };
284
285         blob_buf_init(&buf, 0);
286
287         for (i = 0; i < sizeof(fslist) / sizeof(fslist[0]); i += 2)
288         {
289                 if (statvfs(fslist[i], &s))
290                         continue;
291
292                 c = blobmsg_open_table(&buf, fslist[i+1]);
293
294                 blobmsg_add_u32(&buf, "total", s.f_blocks * s.f_frsize);
295                 blobmsg_add_u32(&buf, "free",  s.f_bfree  * s.f_frsize);
296                 blobmsg_add_u32(&buf, "used", (s.f_blocks - s.f_bfree) * s.f_frsize);
297
298                 blobmsg_close_table(&buf, c);
299         }
300
301         ubus_send_reply(ctx, req, buf.head);
302         return 0;
303 }
304
305 static int
306 rpc_luci2_process_list(struct ubus_context *ctx, struct ubus_object *obj,
307                        struct ubus_request_data *req, const char *method,
308                        struct blob_attr *msg)
309 {
310         FILE *top;
311         void *c, *d;
312         char line[1024];
313         char *pid, *ppid, *user, *stat, *vsz, *pvsz, *pcpu, *cmd;
314
315         if (!(top = popen("/bin/busybox top -bn1", "r")))
316                 return rpc_errno_status();
317
318         blob_buf_init(&buf, 0);
319         c = blobmsg_open_array(&buf, "processes");
320
321         while (fgets(line, sizeof(line) - 1, top))
322         {
323                 pid  = strtok(line, " ");
324
325                 if (*pid < '0' || *pid > '9')
326                         continue;
327
328                 ppid = strtok(NULL, " ");
329                 user = strtok(NULL, " ");
330                 stat = strtok(NULL, " ");
331
332                 if (!stat)
333                         continue;
334
335                 if (!*(stat + 1))
336                         *(stat + 1) = ' ';
337
338                 if (!*(stat + 2))
339                         *(stat + 2) = ' ';
340
341                 *(stat + 3) = 0;
342
343                 vsz  = strtok(stat + 4, " ");
344                 pvsz = strtok(NULL, " ");
345                 pcpu = strtok(NULL, " ");
346                 cmd  = strtok(NULL, "\n");
347
348                 if (!cmd)
349                         continue;
350
351                 d = blobmsg_open_table(&buf, NULL);
352
353                 blobmsg_add_u32(&buf, "pid", atoi(pid));
354                 blobmsg_add_u32(&buf, "ppid", atoi(ppid));
355                 blobmsg_add_string(&buf, "user", user);
356                 blobmsg_add_string(&buf, "stat", stat);
357                 blobmsg_add_u32(&buf, "vsize", atoi(vsz) * 1024);
358                 blobmsg_add_u32(&buf, "vsize_percent", atoi(pvsz));
359                 blobmsg_add_u32(&buf, "cpu_percent", atoi(pcpu));
360                 blobmsg_add_string(&buf, "command", cmd);
361
362                 blobmsg_close_table(&buf, d);
363         }
364
365         fclose(top);
366         blobmsg_close_array(&buf, c);
367
368         ubus_send_reply(ctx, req, buf.head);
369         return 0;
370 }
371
372 static int
373 rpc_luci2_process_signal(struct ubus_context *ctx, struct ubus_object *obj,
374                          struct ubus_request_data *req, const char *method,
375                          struct blob_attr *msg)
376 {
377         int pid, sig;
378         struct blob_attr *tb[__RPC_S_MAX];
379
380         blobmsg_parse(rpc_signal_policy, __RPC_S_MAX, tb,
381                       blob_data(msg), blob_len(msg));
382
383         if (!tb[RPC_S_SIGNAL] || !tb[RPC_S_PID])
384         {
385                 errno = EINVAL;
386                 return rpc_errno_status();
387         }
388
389         pid = blobmsg_get_u32(tb[RPC_S_PID]);
390         sig = blobmsg_get_u32(tb[RPC_S_SIGNAL]);
391
392         if (kill(pid, sig))
393                 return rpc_errno_status();
394
395         return 0;
396 }
397
398 static int
399 rpc_luci2_init_list(struct ubus_context *ctx, struct ubus_object *obj,
400                     struct ubus_request_data *req, const char *method,
401                     struct blob_attr *msg)
402 {
403         int n;
404         void *c, *t;
405         char *p, path[PATH_MAX];
406         struct stat s;
407         struct dirent *e;
408         FILE *f;
409         DIR *d;
410
411         if (!(d = opendir("/etc/init.d")))
412                 return rpc_errno_status();
413
414         blob_buf_init(&buf, 0);
415         c = blobmsg_open_array(&buf, "initscripts");
416
417         while ((e = readdir(d)) != NULL)
418         {
419                 snprintf(path, sizeof(path) - 1, "/etc/init.d/%s", e->d_name);
420
421                 if (stat(path, &s) || !S_ISREG(s.st_mode) || !(s.st_mode & S_IXUSR))
422                         continue;
423
424                 if ((f = fopen(path, "r")) != NULL)
425                 {
426                         n = -1;
427                         p = fgets(path, sizeof(path) - 1, f);
428
429                         if (!p || !strstr(p, "/etc/rc.common"))
430                                 goto skip;
431
432                         t = blobmsg_open_table(&buf, NULL);
433
434                         blobmsg_add_string(&buf, "name", e->d_name);
435
436                         while (fgets(path, sizeof(path) - 1, f))
437                         {
438                                 p = strtok(path, "= \t");
439
440                                 if (!strcmp(p, "START") && !!(p = strtok(NULL, "= \t\n")))
441                                 {
442                                         n = atoi(p);
443                                         blobmsg_add_u32(&buf, "start", n);
444                                 }
445                                 else if (!strcmp(p, "STOP") && !!(p = strtok(NULL, "= \t\n")))
446                                 {
447                                         blobmsg_add_u32(&buf, "stop", atoi(p));
448                                         break;
449                                 }
450                         }
451
452                         if (n > -1)
453                         {
454                                 snprintf(path, sizeof(path) - 1, "/etc/rc.d/S%02d%s",
455                                          n, e->d_name);
456
457                                 blobmsg_add_u8(&buf, "enabled",
458                                                (!stat(path, &s) && (s.st_mode & S_IXUSR)));
459                         }
460                         else
461                         {
462                                 blobmsg_add_u8(&buf, "enabled", 0);
463                         }
464
465                         blobmsg_close_table(&buf, t);
466
467 skip:
468                         fclose(f);
469                 }
470         }
471
472         closedir(d);
473         blobmsg_close_array(&buf, c);
474
475         ubus_send_reply(ctx, req, buf.head);
476         return 0;
477 }
478
479 static int
480 rpc_luci2_init_action(struct ubus_context *ctx, struct ubus_object *obj,
481                       struct ubus_request_data *req, const char *method,
482                       struct blob_attr *msg)
483 {
484         int fd;
485         pid_t pid;
486         struct stat s;
487         char path[PATH_MAX];
488         const char *action;
489         struct blob_attr *tb[__RPC_I_MAX];
490
491         blobmsg_parse(rpc_init_policy, __RPC_I_MAX, tb,
492                       blob_data(msg), blob_len(msg));
493
494         if (!tb[RPC_I_NAME] || !tb[RPC_I_ACTION])
495                 return UBUS_STATUS_INVALID_ARGUMENT;
496
497         action = blobmsg_data(tb[RPC_I_ACTION]);
498
499         if (strcmp(action, "start") && strcmp(action, "stop") &&
500             strcmp(action, "reload") && strcmp(action, "restart") &&
501             strcmp(action, "enable") && strcmp(action, "disable"))
502                 return UBUS_STATUS_INVALID_ARGUMENT;
503
504         snprintf(path, sizeof(path) - 1, "/etc/init.d/%s",
505                  (char *)blobmsg_data(tb[RPC_I_NAME]));
506
507         if (stat(path, &s))
508                 return rpc_errno_status();
509
510         if (!(s.st_mode & S_IXUSR))
511                 return UBUS_STATUS_PERMISSION_DENIED;
512
513         switch ((pid = fork()))
514         {
515         case -1:
516                 return rpc_errno_status();
517
518         case 0:
519                 uloop_done();
520
521                 if ((fd = open("/dev/null", O_RDWR)) > -1)
522                 {
523                         dup2(fd, 0);
524                         dup2(fd, 1);
525                         dup2(fd, 2);
526
527                         close(fd);
528                 }
529
530                 chdir("/");
531
532                 if (execl(path, path, action, NULL))
533                         return rpc_errno_status();
534
535         default:
536                 return 0;
537         }
538 }
539
540 static int
541 rpc_luci2_rclocal_get(struct ubus_context *ctx, struct ubus_object *obj,
542                       struct ubus_request_data *req, const char *method,
543                       struct blob_attr *msg)
544 {
545         FILE *f;
546         char data[4096] = { 0 };
547
548         if (!(f = fopen("/etc/rc.local", "r")))
549                 return rpc_errno_status();
550
551         fread(data, sizeof(data) - 1, 1, f);
552         fclose(f);
553
554         blob_buf_init(&buf, 0);
555         blobmsg_add_string(&buf, "data", data);
556
557         ubus_send_reply(ctx, req, buf.head);
558         return 0;
559 }
560
561 static int
562 rpc_luci2_rclocal_set(struct ubus_context *ctx, struct ubus_object *obj,
563                       struct ubus_request_data *req, const char *method,
564                       struct blob_attr *msg)
565 {
566         FILE *f;
567         struct blob_attr *tb[__RPC_D_MAX];
568
569         blobmsg_parse(rpc_data_policy, __RPC_D_MAX, tb,
570                       blob_data(msg), blob_len(msg));
571
572         if (!tb[RPC_D_DATA] || blobmsg_data_len(tb[RPC_D_DATA]) >= 4096)
573                 return UBUS_STATUS_INVALID_ARGUMENT;
574
575         if (!(f = fopen("/etc/rc.local", "w")))
576                 return rpc_errno_status();
577
578         fwrite(blobmsg_data(tb[RPC_D_DATA]),
579                blobmsg_data_len(tb[RPC_D_DATA]) - 1, 1, f);
580
581         fclose(f);
582         return 0;
583 }
584
585 static int
586 rpc_luci2_crontab_get(struct ubus_context *ctx, struct ubus_object *obj,
587                       struct ubus_request_data *req, const char *method,
588                       struct blob_attr *msg)
589 {
590         FILE *f;
591         char data[4096] = { 0 };
592
593         if (!(f = fopen("/etc/crontabs/root", "r")))
594                 return rpc_errno_status();
595
596         fread(data, sizeof(data) - 1, 1, f);
597         fclose(f);
598
599         blob_buf_init(&buf, 0);
600         blobmsg_add_string(&buf, "data", data);
601
602         ubus_send_reply(ctx, req, buf.head);
603         return 0;
604 }
605
606 static int
607 rpc_luci2_crontab_set(struct ubus_context *ctx, struct ubus_object *obj,
608                       struct ubus_request_data *req, const char *method,
609                       struct blob_attr *msg)
610 {
611         FILE *f;
612         struct stat s;
613         struct blob_attr *tb[__RPC_D_MAX];
614
615         blobmsg_parse(rpc_data_policy, __RPC_D_MAX, tb,
616                       blob_data(msg), blob_len(msg));
617
618         if (!tb[RPC_D_DATA] || blobmsg_data_len(tb[RPC_D_DATA]) >= 4096)
619                 return UBUS_STATUS_INVALID_ARGUMENT;
620
621         if (stat("/etc/crontabs", &s) && mkdir("/etc/crontabs", 0755))
622                 return rpc_errno_status();
623
624         if (!(f = fopen("/etc/crontabs/root", "w")))
625                 return rpc_errno_status();
626
627         fwrite(blobmsg_data(tb[RPC_D_DATA]),
628                blobmsg_data_len(tb[RPC_D_DATA]) - 1, 1, f);
629
630         fclose(f);
631         return 0;
632 }
633
634 static int
635 rpc_luci2_sshkeys_get(struct ubus_context *ctx, struct ubus_object *obj,
636                       struct ubus_request_data *req, const char *method,
637                       struct blob_attr *msg)
638 {
639         FILE *f;
640         void *c;
641         char *p, line[4096];
642
643         if (!(f = fopen("/etc/dropbear/authorized_keys", "r")))
644                 return rpc_errno_status();
645
646         blob_buf_init(&buf, 0);
647         c = blobmsg_open_array(&buf, "keys");
648
649         while (fgets(line, sizeof(line) - 1, f))
650         {
651                 for (p = line + strlen(line) - 1; (p > line) && isspace(*p); p--)
652                         *p = 0;
653
654                 for (p = line; isspace(*p); p++)
655                         *p = 0;
656
657                 if (*p)
658                         blobmsg_add_string(&buf, NULL, p);
659         }
660
661         blobmsg_close_array(&buf, c);
662         fclose(f);
663
664         ubus_send_reply(ctx, req, buf.head);
665         return 0;
666 }
667
668 static int
669 rpc_luci2_sshkeys_set(struct ubus_context *ctx, struct ubus_object *obj,
670                       struct ubus_request_data *req, const char *method,
671                       struct blob_attr *msg)
672 {
673         FILE *f;
674         int rem;
675         struct blob_attr *cur, *tb[__RPC_K_MAX];
676
677         blobmsg_parse(rpc_sshkey_policy, __RPC_K_MAX, tb,
678                       blob_data(msg), blob_len(msg));
679
680         if (!tb[RPC_K_KEYS])
681                 return UBUS_STATUS_INVALID_ARGUMENT;
682
683         if (!(f = fopen("/etc/dropbear/authorized_keys", "w")))
684                 return rpc_errno_status();
685
686         blobmsg_for_each_attr(cur, tb[RPC_K_KEYS], rem)
687         {
688                 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
689                         continue;
690
691                 fwrite(blobmsg_data(cur), blobmsg_data_len(cur) - 1, 1, f);
692                 fwrite("\n", 1, 1, f);
693         }
694
695         fclose(f);
696         return 0;
697 }
698
699 static int
700 rpc_luci2_password_set(struct ubus_context *ctx, struct ubus_object *obj,
701                        struct ubus_request_data *req, const char *method,
702                        struct blob_attr *msg)
703 {
704         pid_t pid;
705         int fd, fds[2];
706         struct stat s;
707         struct blob_attr *tb[__RPC_P_MAX];
708
709         blobmsg_parse(rpc_password_policy, __RPC_P_MAX, tb,
710                       blob_data(msg), blob_len(msg));
711
712         if (!tb[RPC_P_USER] || !tb[RPC_P_PASSWORD])
713                 return UBUS_STATUS_INVALID_ARGUMENT;
714
715         if (stat("/usr/bin/passwd", &s))
716                 return UBUS_STATUS_NOT_FOUND;
717
718         if (!(s.st_mode & S_IXUSR))
719                 return UBUS_STATUS_PERMISSION_DENIED;
720
721         if (pipe(fds))
722                 return rpc_errno_status();
723
724         switch ((pid = fork()))
725         {
726         case -1:
727                 close(fds[0]);
728                 close(fds[1]);
729                 return rpc_errno_status();
730
731         case 0:
732                 uloop_done();
733
734                 dup2(fds[0], 0);
735                 close(fds[0]);
736                 close(fds[1]);
737
738                 if ((fd = open("/dev/null", O_RDWR)) > -1)
739                 {
740                         dup2(fd, 1);
741                         dup2(fd, 2);
742                         close(fd);
743                 }
744
745                 chdir("/");
746
747                 if (execl("/usr/bin/passwd", "/usr/bin/passwd",
748                           blobmsg_data(tb[RPC_P_USER]), NULL))
749                         return rpc_errno_status();
750
751         default:
752                 close(fds[0]);
753
754                 write(fds[1], blobmsg_data(tb[RPC_P_PASSWORD]),
755                               blobmsg_data_len(tb[RPC_P_PASSWORD]) - 1);
756                 write(fds[1], "\n", 1);
757
758                 usleep(100 * 1000);
759
760                 write(fds[1], blobmsg_data(tb[RPC_P_PASSWORD]),
761                               blobmsg_data_len(tb[RPC_P_PASSWORD]) - 1);
762                 write(fds[1], "\n", 1);
763
764                 close(fds[1]);
765
766                 waitpid(pid, NULL, 0);
767
768                 return 0;
769         }
770 }
771
772
773 static FILE *
774 dnsmasq_leasefile(void)
775 {
776         FILE *leases = NULL;
777         struct uci_package *p;
778         struct uci_element *e;
779         struct uci_section *s;
780         struct uci_ptr ptr = {
781                 .package = "dhcp",
782                 .section = NULL,
783                 .option  = "leasefile"
784         };
785
786         uci_load(cursor, ptr.package, &p);
787
788         if (!p)
789                 return NULL;
790
791         uci_foreach_element(&p->sections, e)
792         {
793                 s = uci_to_section(e);
794
795                 if (strcmp(s->type, "dnsmasq"))
796                         continue;
797
798                 ptr.section = e->name;
799                 uci_lookup_ptr(cursor, &ptr, NULL, true);
800                 break;
801         }
802
803         if (ptr.o && ptr.o->type == UCI_TYPE_STRING)
804                 leases = fopen(ptr.o->v.string, "r");
805
806         uci_unload(cursor, p);
807
808         return leases;
809 }
810
811 static int
812 rpc_luci2_network_leases(struct ubus_context *ctx, struct ubus_object *obj,
813                          struct ubus_request_data *req, const char *method,
814                          struct blob_attr *msg)
815 {
816         FILE *leases;
817         void *c, *d;
818         char line[128];
819         char *ts, *mac, *addr, *name;
820         time_t now = time(NULL);
821
822         blob_buf_init(&buf, 0);
823         c = blobmsg_open_array(&buf, "leases");
824
825         leases = dnsmasq_leasefile();
826
827         if (!leases)
828                 goto out;
829
830         while (fgets(line, sizeof(line) - 1, leases))
831         {
832                 ts   = strtok(line, " \t");
833                 mac  = strtok(NULL, " \t");
834                 addr = strtok(NULL, " \t");
835                 name = strtok(NULL, " \t");
836
837                 if (!ts || !mac || !addr || !name)
838                         continue;
839
840                 if (strchr(addr, ':'))
841                         continue;
842
843                 d = blobmsg_open_table(&buf, NULL);
844
845                 blobmsg_add_u32(&buf, "expires", atoi(ts) - now);
846                 blobmsg_add_string(&buf, "macaddr", mac);
847                 blobmsg_add_string(&buf, "ipaddr", addr);
848
849                 if (strcmp(name, "*"))
850                         blobmsg_add_string(&buf, "hostname", name);
851
852                 blobmsg_close_table(&buf, d);
853         }
854
855         fclose(leases);
856
857 out:
858         blobmsg_close_array(&buf, c);
859         ubus_send_reply(ctx, req, buf.head);
860
861         return 0;
862 }
863
864 static int
865 rpc_luci2_network_leases6(struct ubus_context *ctx, struct ubus_object *obj,
866                           struct ubus_request_data *req, const char *method,
867                           struct blob_attr *msg)
868 {
869         FILE *leases;
870         void *c, *d;
871         char line[128];
872         char *ts, *mac, *addr, *name, *duid;
873         time_t now = time(NULL);
874
875         blob_buf_init(&buf, 0);
876         c = blobmsg_open_array(&buf, "leases");
877
878         leases = fopen("/tmp/hosts/6relayd", "r");
879
880         if (leases)
881         {
882                 while (fgets(line, sizeof(line) - 1, leases))
883                 {
884                         if (strncmp(line, "# ", 2))
885                                 continue;
886
887                         strtok(line + 2, " \t"); /* iface */
888
889                         duid = strtok(NULL, " \t");
890
891                         strtok(NULL, " \t"); /* iaid */
892
893                         name = strtok(NULL, " \t");
894                         ts   = strtok(NULL, " \t");
895
896                         strtok(NULL, " \t"); /* id */
897                         strtok(NULL, " \t"); /* length */
898
899                         addr = strtok(NULL, " \t\n");
900
901                         if (!addr)
902                                 continue;
903
904                         d = blobmsg_open_table(&buf, NULL);
905
906                         blobmsg_add_u32(&buf, "expires", atoi(ts) - now);
907                         blobmsg_add_string(&buf, "duid", duid);
908                         blobmsg_add_string(&buf, "ip6addr", addr);
909
910                         if (strcmp(name, "-"))
911                                 blobmsg_add_string(&buf, "hostname", name);
912
913                         blobmsg_close_array(&buf, d);
914                 }
915
916                 fclose(leases);
917         }
918         else
919         {
920                 leases = dnsmasq_leasefile();
921
922                 if (!leases)
923                         goto out;
924
925                 while (fgets(line, sizeof(line) - 1, leases))
926                 {
927                         ts   = strtok(line, " \t");
928                         mac  = strtok(NULL, " \t");
929                         addr = strtok(NULL, " \t");
930                         name = strtok(NULL, " \t");
931                         duid = strtok(NULL, " \t\n");
932
933                         if (!ts || !mac || !addr || !duid)
934                                 continue;
935
936                         if (!strchr(addr, ':'))
937                                 continue;
938
939                         d = blobmsg_open_table(&buf, NULL);
940
941                         blobmsg_add_u32(&buf, "expires", atoi(ts) - now);
942                         blobmsg_add_string(&buf, "macaddr", mac);
943                         blobmsg_add_string(&buf, "ip6addr", addr);
944
945                         if (strcmp(name, "*"))
946                                 blobmsg_add_string(&buf, "hostname", name);
947
948                         if (strcmp(duid, "*"))
949                                 blobmsg_add_string(&buf, "duid", name);
950
951                         blobmsg_close_table(&buf, d);
952                 }
953
954                 fclose(leases);
955         }
956
957 out:
958         blobmsg_close_array(&buf, c);
959         ubus_send_reply(ctx, req, buf.head);
960
961         return 0;
962 }
963
964 static int
965 rpc_luci2_network_ct_count(struct ubus_context *ctx, struct ubus_object *obj,
966                            struct ubus_request_data *req, const char *method,
967                            struct blob_attr *msg)
968 {
969         FILE *f;
970         char line[128];
971
972         blob_buf_init(&buf, 0);
973
974         if ((f = fopen("/proc/sys/net/netfilter/nf_conntrack_count", "r")) != NULL)
975         {
976                 if (fgets(line, sizeof(line) - 1, f))
977                         blobmsg_add_u32(&buf, "count", atoi(line));
978
979                 fclose(f);
980         }
981
982         if ((f = fopen("/proc/sys/net/netfilter/nf_conntrack_max", "r")) != NULL)
983         {
984                 if (fgets(line, sizeof(line) - 1, f))
985                         blobmsg_add_u32(&buf, "limit", atoi(line));
986
987                 fclose(f);
988         }
989
990         ubus_send_reply(ctx, req, buf.head);
991
992         return 0;
993 }
994
995 static int
996 rpc_luci2_network_ct_table(struct ubus_context *ctx, struct ubus_object *obj,
997                            struct ubus_request_data *req, const char *method,
998                            struct blob_attr *msg)
999 {
1000         FILE *f;
1001         int i;
1002         void *c, *d;
1003         char *p, line[512];
1004         bool seen[6];
1005
1006         blob_buf_init(&buf, 0);
1007         c = blobmsg_open_array(&buf, "entries");
1008
1009         if ((f = fopen("/proc/net/nf_conntrack", "r")) != NULL)
1010         {
1011                 while (fgets(line, sizeof(line) - 1, f))
1012                 {
1013                         d = blobmsg_open_table(&buf, NULL);
1014                         memset(seen, 0, sizeof(seen));
1015
1016                         for (i = 0, p = strtok(line, " "); p; i++, p = strtok(NULL, " "))
1017                         {
1018                                 if (i == 0)
1019                                         blobmsg_add_u8(&buf, "ipv6", !strcmp(p, "ipv6"));
1020                                 else if (i == 3)
1021                                         blobmsg_add_u32(&buf, "protocol", atoi(p));
1022                                 else if (i == 4)
1023                                         blobmsg_add_u32(&buf, "expires", atoi(p));
1024                                 else if (i >= 5)
1025                                 {
1026                                         if (*p == '[')
1027                                                 continue;
1028
1029                                         if (!seen[0] && !strncmp(p, "src=", 4))
1030                                         {
1031                                                 blobmsg_add_string(&buf, "src", p + 4);
1032                                                 seen[0] = true;
1033                                         }
1034                                         else if (!seen[1] && !strncmp(p, "dst=", 4))
1035                                         {
1036                                                 blobmsg_add_string(&buf, "dest", p + 4);
1037                                                 seen[1] = true;
1038                                         }
1039                                         else if (!seen[2] && !strncmp(p, "sport=", 6))
1040                                         {
1041                                                 blobmsg_add_u32(&buf, "sport", atoi(p + 6));
1042                                                 seen[2] = true;
1043                                         }
1044                                         else if (!seen[3] && !strncmp(p, "dport=", 6))
1045                                         {
1046                                                 blobmsg_add_u32(&buf, "dport", atoi(p + 6));
1047                                                 seen[3] = true;
1048                                         }
1049                                         else if (!strncmp(p, "packets=", 8))
1050                                         {
1051                                                 blobmsg_add_u32(&buf,
1052                                                                 seen[4] ? "tx_packets" : "rx_packets",
1053                                                                 atoi(p + 8));
1054                                                 seen[4] = true;
1055                                         }
1056                                         else if (!strncmp(p, "bytes=", 6))
1057                                         {
1058                                                 blobmsg_add_u32(&buf,
1059                                                                                 seen[5] ? "tx_bytes" : "rx_bytes",
1060                                                                 atoi(p + 6));
1061                                                 seen[5] = true;
1062                                         }
1063                                 }
1064                         }
1065
1066                         blobmsg_close_table(&buf, d);
1067                 }
1068
1069                 fclose(f);
1070         }
1071
1072         blobmsg_close_array(&buf, c);
1073         ubus_send_reply(ctx, req, buf.head);
1074
1075         return 0;
1076 }
1077
1078 static int
1079 rpc_luci2_network_arp_table(struct ubus_context *ctx, struct ubus_object *obj,
1080                             struct ubus_request_data *req, const char *method,
1081                             struct blob_attr *msg)
1082 {
1083         FILE *f;
1084         void *c, *d;
1085         char *addr, *mac, *dev, line[128];
1086
1087         blob_buf_init(&buf, 0);
1088         c = blobmsg_open_array(&buf, "entries");
1089
1090         if ((f = fopen("/proc/net/arp", "r")) != NULL)
1091         {
1092                 /* skip header line */
1093                 fgets(line, sizeof(line) - 1, f);
1094
1095                 while (fgets(line, sizeof(line) - 1, f))
1096                 {
1097                         addr = strtok(line, " \t");
1098
1099                         strtok(NULL, " \t"); /* HW type */
1100                         strtok(NULL, " \t"); /* Flags */
1101
1102                         mac = strtok(NULL, " \t");
1103
1104                         strtok(NULL, " \t"); /* Mask */
1105
1106                         dev = strtok(NULL, " \t\n");
1107
1108                         if (!dev)
1109                                 continue;
1110
1111                         d = blobmsg_open_table(&buf, NULL);
1112                         blobmsg_add_string(&buf, "ipaddr", addr);
1113                         blobmsg_add_string(&buf, "macaddr", mac);
1114                         blobmsg_add_string(&buf, "device", dev);
1115                         blobmsg_close_table(&buf, d);
1116                 }
1117
1118                 fclose(f);
1119         }
1120
1121         blobmsg_close_array(&buf, c);
1122         ubus_send_reply(ctx, req, buf.head);
1123
1124         return 0;
1125 }
1126
1127 static void
1128 put_hexaddr(const char *name, const char *s, const char *m)
1129 {
1130         int bits;
1131         struct in_addr a;
1132         char as[sizeof("255.255.255.255/32\0")];
1133
1134         a.s_addr = strtoul(s, NULL, 16);
1135         inet_ntop(AF_INET, &a, as, sizeof(as));
1136
1137         if (m)
1138         {
1139                 for (a.s_addr = ntohl(strtoul(m, NULL, 16)), bits = 0;
1140                      a.s_addr & 0x80000000;
1141                      a.s_addr <<= 1)
1142                         bits++;
1143
1144                 sprintf(as + strlen(as), "/%u", bits);
1145         }
1146
1147         blobmsg_add_string(&buf, name, as);
1148 }
1149
1150 static int
1151 rpc_luci2_network_routes(struct ubus_context *ctx, struct ubus_object *obj,
1152                          struct ubus_request_data *req, const char *method,
1153                          struct blob_attr *msg)
1154 {
1155         FILE *routes;
1156         void *c, *d;
1157         char *dst, *dmask, *next, *metric, *device;
1158         char line[256];
1159         unsigned int n;
1160
1161         if (!(routes = fopen("/proc/net/route", "r")))
1162                 return rpc_errno_status();
1163
1164         blob_buf_init(&buf, 0);
1165         c = blobmsg_open_array(&buf, "routes");
1166
1167         /* skip header line */
1168         fgets(line, sizeof(line) - 1, routes);
1169
1170         while (fgets(line, sizeof(line) - 1, routes))
1171         {
1172                 device = strtok(line, "\t ");
1173                 dst    = strtok(NULL, "\t ");
1174                 next   = strtok(NULL, "\t ");
1175
1176                 strtok(NULL, "\t "); /* flags */
1177                 strtok(NULL, "\t "); /* refcount */
1178                 strtok(NULL, "\t "); /* usecount */
1179
1180                 metric = strtok(NULL, "\t ");
1181                 dmask  = strtok(NULL, "\t ");
1182
1183                 if (!dmask)
1184                         continue;
1185
1186                 d = blobmsg_open_table(&buf, NULL);
1187
1188                 put_hexaddr("target", dst, dmask);
1189                 put_hexaddr("nexthop", next, NULL);
1190
1191                 n = strtoul(metric, NULL, 10);
1192                 blobmsg_add_u32(&buf, "metric", n);
1193
1194                 blobmsg_add_string(&buf, "device", device);
1195
1196                 blobmsg_close_table(&buf, d);
1197         }
1198
1199         blobmsg_close_array(&buf, c);
1200         fclose(routes);
1201
1202         ubus_send_reply(ctx, req, buf.head);
1203         return 0;
1204 }
1205
1206 static void
1207 put_hex6addr(const char *name, const char *s, const char *m)
1208 {
1209         int i;
1210         struct in6_addr a;
1211         char as[INET6_ADDRSTRLEN + sizeof("/128")];
1212
1213 #define hex(x) \
1214         (((x) <= '9') ? ((x) - '0') : \
1215                 (((x) <= 'F') ? ((x) - 'A' + 10) : \
1216                         ((x) - 'a' + 10)))
1217
1218         for (i = 0; i < 16; i++, s += 2)
1219                 a.s6_addr[i] = (16 * hex(*s)) + hex(*(s+1));
1220
1221         inet_ntop(AF_INET6, &a, as, sizeof(as));
1222
1223         if (m)
1224                 sprintf(as + strlen(as), "/%lu", strtoul(m, NULL, 16));
1225
1226         blobmsg_add_string(&buf, name, as);
1227 }
1228
1229 static int
1230 rpc_luci2_network_routes6(struct ubus_context *ctx, struct ubus_object *obj,
1231                           struct ubus_request_data *req, const char *method,
1232                           struct blob_attr *msg)
1233 {
1234         FILE *routes;
1235         void *c, *d;
1236         char *src, *smask, *dst, *dmask, *next, *metric, *flags, *device;
1237         char line[256];
1238         unsigned int n;
1239
1240         if (!(routes = fopen("/proc/net/ipv6_route", "r")))
1241                 return rpc_errno_status();
1242
1243         blob_buf_init(&buf, 0);
1244         c = blobmsg_open_array(&buf, "routes");
1245
1246         while (fgets(line, sizeof(line) - 1, routes))
1247         {
1248                 dst    = strtok(line, " ");
1249                 dmask  = strtok(NULL, " ");
1250                 src    = strtok(NULL, " ");
1251                 smask  = strtok(NULL, " ");
1252                 next   = strtok(NULL, " ");
1253                 metric = strtok(NULL, " ");
1254
1255                 strtok(NULL, " "); /* refcount */
1256                 strtok(NULL, " "); /* usecount */
1257
1258                 flags  = strtok(NULL, " ");
1259                 device = strtok(NULL, " \n");
1260
1261                 if (!device)
1262                         continue;
1263
1264                 n = strtoul(flags, NULL, 16);
1265
1266                 if (!(n & 1))
1267                         continue;
1268
1269                 d = blobmsg_open_table(&buf, NULL);
1270
1271                 put_hex6addr("target", dst, dmask);
1272                 put_hex6addr("source", src, smask);
1273                 put_hex6addr("nexthop", next, NULL);
1274
1275                 n = strtoul(metric, NULL, 16);
1276                 blobmsg_add_u32(&buf, "metric", n);
1277
1278                 blobmsg_add_string(&buf, "device", device);
1279
1280                 blobmsg_close_table(&buf, d);
1281         }
1282
1283         blobmsg_close_array(&buf, c);
1284         fclose(routes);
1285
1286         ubus_send_reply(ctx, req, buf.head);
1287         return 0;
1288 }
1289
1290
1291 struct opkg_state {
1292         int cur_offset;
1293         int cur_count;
1294         int req_offset;
1295         int req_count;
1296         int total;
1297         bool open;
1298         void *array;
1299 };
1300
1301 static int
1302 opkg_parse_list(struct blob_buf *blob, char *buf, int len, void *priv)
1303 {
1304         struct opkg_state *s = priv;
1305
1306         char *ptr, *last;
1307         char *nl = strchr(buf, '\n');
1308         char *name = NULL, *vers = NULL, *desc = NULL;
1309         void *c;
1310
1311         if (!nl)
1312                 return 0;
1313
1314         s->total++;
1315
1316         if (s->cur_offset++ < s->req_offset)
1317                 goto skip;
1318
1319         if (s->cur_count++ >= s->req_count)
1320                 goto skip;
1321
1322         if (!s->open)
1323         {
1324                 s->open  = true;
1325                 s->array = blobmsg_open_array(blob, "packages");
1326         }
1327
1328         for (ptr = buf, last = buf, *nl = 0; ptr <= nl; ptr++)
1329         {
1330                 if (!*ptr || (*ptr == ' ' && *(ptr+1) == '-' && *(ptr+2) == ' '))
1331                 {
1332                         if (!name)
1333                         {
1334                                 name = last;
1335                                 last = ptr + 3;
1336                                 *ptr = 0;
1337                                 ptr += 2;
1338                         }
1339                         else if (!vers)
1340                         {
1341                                 vers = last;
1342                                 desc = *ptr ? (ptr + 3) : NULL;
1343                                 *ptr = 0;
1344                                 break;
1345                         }
1346                 }
1347         }
1348
1349         if (name && vers)
1350         {
1351                 c = blobmsg_open_array(blob, NULL);
1352
1353                 blobmsg_add_string(blob, NULL, name);
1354                 blobmsg_add_string(blob, NULL, vers);
1355
1356                 if (desc && *desc)
1357                         blobmsg_add_string(blob, NULL, desc);
1358
1359                 blobmsg_close_array(blob, c);
1360         }
1361
1362 skip:
1363         return (nl - buf + 1);
1364 }
1365
1366 static void
1367 opkg_finish_list(struct blob_buf *blob, int status, void *priv)
1368 {
1369         struct opkg_state *s = priv;
1370
1371         if (!s->open)
1372                 return;
1373
1374         blobmsg_close_array(blob, s->array);
1375         blobmsg_add_u32(blob, "total", s->total);
1376 }
1377
1378 static int
1379 opkg_exec_list(const char *action, struct blob_attr *msg,
1380                struct ubus_context *ctx, struct ubus_request_data *req)
1381 {
1382         struct opkg_state *state = NULL;
1383         struct blob_attr *tb[__RPC_OM_MAX];
1384         const char *cmd[5] = { "opkg", action, "-nocase", NULL, NULL };
1385
1386         blobmsg_parse(rpc_opkg_match_policy, __RPC_OM_MAX, tb,
1387                       blob_data(msg), blob_len(msg));
1388
1389         state = malloc(sizeof(*state));
1390
1391         if (!state)
1392                 return UBUS_STATUS_UNKNOWN_ERROR;
1393
1394         memset(state, 0, sizeof(*state));
1395
1396         if (tb[RPC_OM_PATTERN])
1397                 cmd[3] = blobmsg_data(tb[RPC_OM_PATTERN]);
1398
1399         if (tb[RPC_OM_LIMIT])
1400                 state->req_count = blobmsg_get_u32(tb[RPC_OM_LIMIT]);
1401
1402         if (tb[RPC_OM_OFFSET])
1403                 state->req_offset = blobmsg_get_u32(tb[RPC_OM_OFFSET]);
1404
1405         if (state->req_offset < 0)
1406                 state->req_offset = 0;
1407
1408         if (state->req_count <= 0 || state->req_count > 100)
1409                 state->req_count = 100;
1410
1411         return rpc_exec(cmd, opkg_parse_list, NULL, opkg_finish_list,
1412                         state, ctx, req);
1413 }
1414
1415
1416 static int
1417 rpc_luci2_opkg_list(struct ubus_context *ctx, struct ubus_object *obj,
1418                     struct ubus_request_data *req, const char *method,
1419                     struct blob_attr *msg)
1420 {
1421         return opkg_exec_list("list", msg, ctx, req);
1422 }
1423
1424 static int
1425 rpc_luci2_opkg_list_installed(struct ubus_context *ctx, struct ubus_object *obj,
1426                               struct ubus_request_data *req, const char *method,
1427                               struct blob_attr *msg)
1428 {
1429         return opkg_exec_list("list-installed", msg, ctx, req);
1430 }
1431
1432 static int
1433 rpc_luci2_opkg_find(struct ubus_context *ctx, struct ubus_object *obj,
1434                     struct ubus_request_data *req, const char *method,
1435                     struct blob_attr *msg)
1436 {
1437         return opkg_exec_list("find", msg, ctx, req);
1438 }
1439
1440 static int
1441 rpc_luci2_opkg_update(struct ubus_context *ctx, struct ubus_object *obj,
1442                       struct ubus_request_data *req, const char *method,
1443                       struct blob_attr *msg)
1444 {
1445         const char *cmd[3] = { "opkg", "update", NULL };
1446         return rpc_exec(cmd, NULL, NULL, NULL, NULL, ctx, req);
1447 }
1448
1449 static int
1450 rpc_luci2_opkg_install(struct ubus_context *ctx, struct ubus_object *obj,
1451                        struct ubus_request_data *req, const char *method,
1452                        struct blob_attr *msg)
1453 {
1454         struct blob_attr *tb[__RPC_OP_MAX];
1455         const char *cmd[5] = { "opkg", "--force-overwrite",
1456                                "install", NULL, NULL };
1457
1458         blobmsg_parse(rpc_opkg_package_policy, __RPC_OP_MAX, tb,
1459                       blob_data(msg), blob_len(msg));
1460
1461         if (!tb[RPC_OP_PACKAGE])
1462                 return UBUS_STATUS_INVALID_ARGUMENT;
1463
1464         cmd[3] = blobmsg_data(tb[RPC_OP_PACKAGE]);
1465
1466         return rpc_exec(cmd, NULL, NULL, NULL, NULL, ctx, req);
1467 }
1468
1469 static int
1470 rpc_luci2_opkg_remove(struct ubus_context *ctx, struct ubus_object *obj,
1471                       struct ubus_request_data *req, const char *method,
1472                       struct blob_attr *msg)
1473 {
1474         struct blob_attr *tb[__RPC_OP_MAX];
1475         const char *cmd[5] = { "opkg", "--force-removal-of-dependent-packages",
1476                                "remove", NULL, NULL };
1477
1478         blobmsg_parse(rpc_opkg_package_policy, __RPC_OP_MAX, tb,
1479                       blob_data(msg), blob_len(msg));
1480
1481         if (!tb[RPC_OP_PACKAGE])
1482                 return UBUS_STATUS_INVALID_ARGUMENT;
1483
1484         cmd[3] = blobmsg_data(tb[RPC_OP_PACKAGE]);
1485
1486         return rpc_exec(cmd, NULL, NULL, NULL, NULL, ctx, req);
1487 }
1488
1489 static int
1490 rpc_luci2_opkg_config_get(struct ubus_context *ctx, struct ubus_object *obj,
1491                           struct ubus_request_data *req, const char *method,
1492                           struct blob_attr *msg)
1493 {
1494         FILE *f;
1495         char conf[2048] = { 0 };
1496
1497         if (!(f = fopen("/etc/opkg.conf", "r")))
1498                 return rpc_errno_status();
1499
1500         fread(conf, sizeof(conf) - 1, 1, f);
1501         fclose(f);
1502
1503         blob_buf_init(&buf, 0);
1504         blobmsg_add_string(&buf, "config", conf);
1505
1506         ubus_send_reply(ctx, req, buf.head);
1507         return 0;
1508 }
1509
1510 static int
1511 rpc_luci2_opkg_config_set(struct ubus_context *ctx, struct ubus_object *obj,
1512                           struct ubus_request_data *req, const char *method,
1513                           struct blob_attr *msg)
1514 {
1515         FILE *f;
1516         struct blob_attr *tb[__RPC_OC_MAX];
1517
1518         blobmsg_parse(rpc_opkg_package_policy, __RPC_OC_MAX, tb,
1519                       blob_data(msg), blob_len(msg));
1520
1521         if (!tb[RPC_OC_CONFIG])
1522                 return UBUS_STATUS_INVALID_ARGUMENT;
1523
1524         if (blobmsg_type(tb[RPC_OC_CONFIG]) != BLOBMSG_TYPE_STRING)
1525                 return UBUS_STATUS_INVALID_ARGUMENT;
1526
1527         if (blobmsg_data_len(tb[RPC_OC_CONFIG]) >= 2048)
1528                 return UBUS_STATUS_NOT_SUPPORTED;
1529
1530         if (!(f = fopen("/etc/opkg.conf", "w")))
1531                 return rpc_errno_status();
1532
1533         fwrite(blobmsg_data(tb[RPC_OC_CONFIG]),
1534                blobmsg_data_len(tb[RPC_OC_CONFIG]), 1, f);
1535
1536         fclose(f);
1537         return 0;
1538 }
1539
1540
1541 int rpc_luci2_api_init(struct ubus_context *ctx)
1542 {
1543         int rv = 0;
1544
1545         static const struct ubus_method luci2_system_methods[] = {
1546                 UBUS_METHOD_NOARG("syslog",       rpc_luci2_system_log),
1547                 UBUS_METHOD_NOARG("dmesg",        rpc_luci2_system_dmesg),
1548                 UBUS_METHOD_NOARG("diskfree",     rpc_luci2_system_diskfree),
1549                 UBUS_METHOD_NOARG("process_list", rpc_luci2_process_list),
1550                 UBUS_METHOD("process_signal",     rpc_luci2_process_signal,
1551                                                   rpc_signal_policy),
1552                 UBUS_METHOD_NOARG("init_list",    rpc_luci2_init_list),
1553                 UBUS_METHOD("init_action",        rpc_luci2_init_action,
1554                                                   rpc_init_policy),
1555                 UBUS_METHOD_NOARG("rclocal_get",  rpc_luci2_rclocal_get),
1556                 UBUS_METHOD("rclocal_set",        rpc_luci2_rclocal_set,
1557                                                   rpc_data_policy),
1558                 UBUS_METHOD_NOARG("crontab_get",  rpc_luci2_crontab_get),
1559                 UBUS_METHOD("crontab_set",        rpc_luci2_crontab_set,
1560                                                   rpc_data_policy),
1561                 UBUS_METHOD_NOARG("sshkeys_get",  rpc_luci2_sshkeys_get),
1562                 UBUS_METHOD("sshkeys_set",        rpc_luci2_sshkeys_set,
1563                                                   rpc_sshkey_policy),
1564                 UBUS_METHOD("password_set",       rpc_luci2_password_set,
1565                                                   rpc_password_policy)
1566         };
1567
1568         static struct ubus_object_type luci2_system_type =
1569                 UBUS_OBJECT_TYPE("luci-rpc-luci2-system", luci2_system_methods);
1570
1571         static struct ubus_object system_obj = {
1572                 .name = "luci2.system",
1573                 .type = &luci2_system_type,
1574                 .methods = luci2_system_methods,
1575                 .n_methods = ARRAY_SIZE(luci2_system_methods),
1576         };
1577
1578
1579         static const struct ubus_method luci2_network_methods[] = {
1580                 UBUS_METHOD_NOARG("conntrack_count", rpc_luci2_network_ct_count),
1581                 UBUS_METHOD_NOARG("conntrack_table", rpc_luci2_network_ct_table),
1582                 UBUS_METHOD_NOARG("arp_table",       rpc_luci2_network_arp_table),
1583                 UBUS_METHOD_NOARG("dhcp_leases",     rpc_luci2_network_leases),
1584                 UBUS_METHOD_NOARG("dhcp6_leases",    rpc_luci2_network_leases6),
1585                 UBUS_METHOD_NOARG("routes",          rpc_luci2_network_routes),
1586                 UBUS_METHOD_NOARG("routes6",         rpc_luci2_network_routes6),
1587         };
1588
1589         static struct ubus_object_type luci2_network_type =
1590                 UBUS_OBJECT_TYPE("luci-rpc-luci2-network", luci2_network_methods);
1591
1592         static struct ubus_object network_obj = {
1593                 .name = "luci2.network",
1594                 .type = &luci2_network_type,
1595                 .methods = luci2_network_methods,
1596                 .n_methods = ARRAY_SIZE(luci2_network_methods),
1597         };
1598
1599
1600         static const struct ubus_method luci2_opkg_methods[] = {
1601                 UBUS_METHOD("list",                  rpc_luci2_opkg_list,
1602                                                      rpc_opkg_match_policy),
1603                 UBUS_METHOD("list_installed",        rpc_luci2_opkg_list_installed,
1604                                                      rpc_opkg_match_policy),
1605                 UBUS_METHOD("find",                  rpc_luci2_opkg_find,
1606                                                      rpc_opkg_match_policy),
1607                 UBUS_METHOD("install",               rpc_luci2_opkg_install,
1608                                                      rpc_opkg_package_policy),
1609                 UBUS_METHOD("remove",                rpc_luci2_opkg_remove,
1610                                                      rpc_opkg_package_policy),
1611                 UBUS_METHOD_NOARG("update",          rpc_luci2_opkg_update),
1612                 UBUS_METHOD_NOARG("config_get",      rpc_luci2_opkg_config_get),
1613                 UBUS_METHOD("config_set",            rpc_luci2_opkg_config_set,
1614                                                      rpc_opkg_config_policy)
1615         };
1616
1617         static struct ubus_object_type luci2_opkg_type =
1618                 UBUS_OBJECT_TYPE("luci-rpc-luci2-network", luci2_opkg_methods);
1619
1620         static struct ubus_object opkg_obj = {
1621                 .name = "luci2.opkg",
1622                 .type = &luci2_opkg_type,
1623                 .methods = luci2_opkg_methods,
1624                 .n_methods = ARRAY_SIZE(luci2_opkg_methods),
1625         };
1626
1627         cursor = uci_alloc_context();
1628
1629         if (!cursor)
1630                 return UBUS_STATUS_UNKNOWN_ERROR;
1631
1632         rv |= ubus_add_object(ctx, &system_obj);
1633         rv |= ubus_add_object(ctx, &network_obj);
1634         rv |= ubus_add_object(ctx, &opkg_obj);
1635
1636         return rv;
1637 }