2 * luci-rpcd - LuCI UBUS RPC server
4 * Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
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.
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.
27 #include <sys/types.h>
28 #include <sys/statvfs.h>
30 #include <arpa/inet.h>
36 static struct blob_buf buf;
37 static struct uci_context *cursor;
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 },
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 },
66 static const struct blobmsg_policy rpc_data_policy[__RPC_D_MAX] = {
67 [RPC_D_DATA] = { .name = "data", .type = BLOBMSG_TYPE_STRING },
75 static const struct blobmsg_policy rpc_sshkey_policy[__RPC_K_MAX] = {
76 [RPC_K_KEYS] = { .name = "keys", .type = BLOBMSG_TYPE_ARRAY },
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 },
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 },
108 static const struct blobmsg_policy rpc_opkg_package_policy[__RPC_OP_MAX] = {
109 [RPC_OP_PACKAGE] = { .name = "package", .type = BLOBMSG_TYPE_STRING },
117 static const struct blobmsg_policy rpc_opkg_config_policy[__RPC_OC_MAX] = {
118 [RPC_OC_CONFIG] = { .name = "config", .type = BLOBMSG_TYPE_STRING },
123 rpc_errno_status(void)
128 return UBUS_STATUS_PERMISSION_DENIED;
131 return UBUS_STATUS_INVALID_ARGUMENT;
134 return UBUS_STATUS_NOT_FOUND;
137 return UBUS_STATUS_INVALID_ARGUMENT;
140 return UBUS_STATUS_UNKNOWN_ERROR;
145 log_read(FILE *log, int logsize)
151 logsize = RPC_LUCI2_DEF_LOGSIZE;
153 len = (logsize > RPC_LUCI2_MAX_LOGSIZE) ? RPC_LUCI2_MAX_LOGSIZE : logsize;
154 logbuf = blobmsg_alloc_string_buffer(&buf, "log", len + 1);
159 while (logsize > RPC_LUCI2_MAX_LOGSIZE)
161 len = logsize % RPC_LUCI2_MAX_LOGSIZE;
164 len = RPC_LUCI2_MAX_LOGSIZE;
166 fread(logbuf, 1, len, log);
170 len = fread(logbuf, 1, logsize, log);
173 blobmsg_add_string_buffer(&buf);
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)
183 const char *logfile = NULL;
185 struct uci_package *p;
186 struct uci_element *e;
187 struct uci_section *s;
188 struct uci_ptr ptr = { .package = "system" };
190 uci_load(cursor, ptr.package, &p);
193 return UBUS_STATUS_NOT_FOUND;
195 uci_foreach_element(&p->sections, e)
197 s = uci_to_section(e);
199 if (strcmp(s->type, "system"))
203 ptr.option = "log_type";
204 ptr.section = e->name;
205 uci_lookup_ptr(cursor, &ptr, NULL, true);
209 if (ptr.o && ptr.o->type == UCI_TYPE_STRING &&
210 !strcmp(ptr.o->v.string, "file"))
213 ptr.option = "log_file";
214 uci_lookup_ptr(cursor, &ptr, NULL, true);
216 if (ptr.o && ptr.o->type == UCI_TYPE_STRING)
217 logfile = ptr.o->v.string;
219 logfile = "/var/log/messages";
221 if (stat(logfile, &st) || !(log = fopen(logfile, "r")))
224 logsize = st.st_size;
229 ptr.option = "log_size";
230 uci_lookup_ptr(cursor, &ptr, NULL, true);
232 if (ptr.o && ptr.o->type == UCI_TYPE_STRING)
233 logsize = atoi(ptr.o->v.string) * 1024;
235 if (!(log = popen("logread", "r")))
239 blob_buf_init(&buf, 0);
241 log_read(log, logsize);
244 uci_unload(cursor, p);
245 ubus_send_reply(ctx, req, buf.head);
249 uci_unload(cursor, p);
250 return rpc_errno_status();
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)
260 if (!(log = popen("dmesg", "r")))
261 return rpc_errno_status();
263 blob_buf_init(&buf, 0);
265 log_read(log, RPC_LUCI2_MAX_LOGSIZE);
268 ubus_send_reply(ctx, req, buf.head);
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)
280 const char *fslist[] = {
285 blob_buf_init(&buf, 0);
287 for (i = 0; i < sizeof(fslist) / sizeof(fslist[0]); i += 2)
289 if (statvfs(fslist[i], &s))
292 c = blobmsg_open_table(&buf, fslist[i+1]);
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);
298 blobmsg_close_table(&buf, c);
301 ubus_send_reply(ctx, req, buf.head);
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)
313 char *pid, *ppid, *user, *stat, *vsz, *pvsz, *pcpu, *cmd;
315 if (!(top = popen("/bin/busybox top -bn1", "r")))
316 return rpc_errno_status();
318 blob_buf_init(&buf, 0);
319 c = blobmsg_open_array(&buf, "processes");
321 while (fgets(line, sizeof(line) - 1, top))
323 pid = strtok(line, " ");
325 if (*pid < '0' || *pid > '9')
328 ppid = strtok(NULL, " ");
329 user = strtok(NULL, " ");
330 stat = strtok(NULL, " ");
343 vsz = strtok(stat + 4, " ");
344 pvsz = strtok(NULL, " ");
345 pcpu = strtok(NULL, " ");
346 cmd = strtok(NULL, "\n");
351 d = blobmsg_open_table(&buf, NULL);
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);
362 blobmsg_close_table(&buf, d);
366 blobmsg_close_array(&buf, c);
368 ubus_send_reply(ctx, req, buf.head);
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)
378 struct blob_attr *tb[__RPC_S_MAX];
380 blobmsg_parse(rpc_signal_policy, __RPC_S_MAX, tb,
381 blob_data(msg), blob_len(msg));
383 if (!tb[RPC_S_SIGNAL] || !tb[RPC_S_PID])
386 return rpc_errno_status();
389 pid = blobmsg_get_u32(tb[RPC_S_PID]);
390 sig = blobmsg_get_u32(tb[RPC_S_SIGNAL]);
393 return rpc_errno_status();
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)
405 char *p, path[PATH_MAX];
411 if (!(d = opendir("/etc/init.d")))
412 return rpc_errno_status();
414 blob_buf_init(&buf, 0);
415 c = blobmsg_open_array(&buf, "initscripts");
417 while ((e = readdir(d)) != NULL)
419 snprintf(path, sizeof(path) - 1, "/etc/init.d/%s", e->d_name);
421 if (stat(path, &s) || !S_ISREG(s.st_mode) || !(s.st_mode & S_IXUSR))
424 if ((f = fopen(path, "r")) != NULL)
427 p = fgets(path, sizeof(path) - 1, f);
429 if (!p || !strstr(p, "/etc/rc.common"))
432 t = blobmsg_open_table(&buf, NULL);
434 blobmsg_add_string(&buf, "name", e->d_name);
436 while (fgets(path, sizeof(path) - 1, f))
438 p = strtok(path, "= \t");
440 if (!strcmp(p, "START") && !!(p = strtok(NULL, "= \t\n")))
443 blobmsg_add_u32(&buf, "start", n);
445 else if (!strcmp(p, "STOP") && !!(p = strtok(NULL, "= \t\n")))
447 blobmsg_add_u32(&buf, "stop", atoi(p));
454 snprintf(path, sizeof(path) - 1, "/etc/rc.d/S%02d%s",
457 blobmsg_add_u8(&buf, "enabled",
458 (!stat(path, &s) && (s.st_mode & S_IXUSR)));
462 blobmsg_add_u8(&buf, "enabled", 0);
465 blobmsg_close_table(&buf, t);
473 blobmsg_close_array(&buf, c);
475 ubus_send_reply(ctx, req, buf.head);
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)
489 struct blob_attr *tb[__RPC_I_MAX];
491 blobmsg_parse(rpc_init_policy, __RPC_I_MAX, tb,
492 blob_data(msg), blob_len(msg));
494 if (!tb[RPC_I_NAME] || !tb[RPC_I_ACTION])
495 return UBUS_STATUS_INVALID_ARGUMENT;
497 action = blobmsg_data(tb[RPC_I_ACTION]);
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;
504 snprintf(path, sizeof(path) - 1, "/etc/init.d/%s",
505 (char *)blobmsg_data(tb[RPC_I_NAME]));
508 return rpc_errno_status();
510 if (!(s.st_mode & S_IXUSR))
511 return UBUS_STATUS_PERMISSION_DENIED;
513 switch ((pid = fork()))
516 return rpc_errno_status();
521 if ((fd = open("/dev/null", O_RDWR)) > -1)
532 if (execl(path, path, action, NULL))
533 return rpc_errno_status();
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)
546 char data[4096] = { 0 };
548 if (!(f = fopen("/etc/rc.local", "r")))
549 return rpc_errno_status();
551 fread(data, sizeof(data) - 1, 1, f);
554 blob_buf_init(&buf, 0);
555 blobmsg_add_string(&buf, "data", data);
557 ubus_send_reply(ctx, req, buf.head);
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)
567 struct blob_attr *tb[__RPC_D_MAX];
569 blobmsg_parse(rpc_data_policy, __RPC_D_MAX, tb,
570 blob_data(msg), blob_len(msg));
572 if (!tb[RPC_D_DATA] || blobmsg_data_len(tb[RPC_D_DATA]) >= 4096)
573 return UBUS_STATUS_INVALID_ARGUMENT;
575 if (!(f = fopen("/etc/rc.local", "w")))
576 return rpc_errno_status();
578 fwrite(blobmsg_data(tb[RPC_D_DATA]),
579 blobmsg_data_len(tb[RPC_D_DATA]) - 1, 1, f);
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)
591 char data[4096] = { 0 };
593 if (!(f = fopen("/etc/crontabs/root", "r")))
594 return rpc_errno_status();
596 fread(data, sizeof(data) - 1, 1, f);
599 blob_buf_init(&buf, 0);
600 blobmsg_add_string(&buf, "data", data);
602 ubus_send_reply(ctx, req, buf.head);
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)
613 struct blob_attr *tb[__RPC_D_MAX];
615 blobmsg_parse(rpc_data_policy, __RPC_D_MAX, tb,
616 blob_data(msg), blob_len(msg));
618 if (!tb[RPC_D_DATA] || blobmsg_data_len(tb[RPC_D_DATA]) >= 4096)
619 return UBUS_STATUS_INVALID_ARGUMENT;
621 if (stat("/etc/crontabs", &s) && mkdir("/etc/crontabs", 0755))
622 return rpc_errno_status();
624 if (!(f = fopen("/etc/crontabs/root", "w")))
625 return rpc_errno_status();
627 fwrite(blobmsg_data(tb[RPC_D_DATA]),
628 blobmsg_data_len(tb[RPC_D_DATA]) - 1, 1, f);
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)
643 if (!(f = fopen("/etc/dropbear/authorized_keys", "r")))
644 return rpc_errno_status();
646 blob_buf_init(&buf, 0);
647 c = blobmsg_open_array(&buf, "keys");
649 while (fgets(line, sizeof(line) - 1, f))
651 for (p = line + strlen(line) - 1; (p > line) && isspace(*p); p--)
654 for (p = line; isspace(*p); p++)
658 blobmsg_add_string(&buf, NULL, p);
661 blobmsg_close_array(&buf, c);
664 ubus_send_reply(ctx, req, buf.head);
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)
675 struct blob_attr *cur, *tb[__RPC_K_MAX];
677 blobmsg_parse(rpc_sshkey_policy, __RPC_K_MAX, tb,
678 blob_data(msg), blob_len(msg));
681 return UBUS_STATUS_INVALID_ARGUMENT;
683 if (!(f = fopen("/etc/dropbear/authorized_keys", "w")))
684 return rpc_errno_status();
686 blobmsg_for_each_attr(cur, tb[RPC_K_KEYS], rem)
688 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
691 fwrite(blobmsg_data(cur), blobmsg_data_len(cur) - 1, 1, f);
692 fwrite("\n", 1, 1, f);
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)
707 struct blob_attr *tb[__RPC_P_MAX];
709 blobmsg_parse(rpc_password_policy, __RPC_P_MAX, tb,
710 blob_data(msg), blob_len(msg));
712 if (!tb[RPC_P_USER] || !tb[RPC_P_PASSWORD])
713 return UBUS_STATUS_INVALID_ARGUMENT;
715 if (stat("/usr/bin/passwd", &s))
716 return UBUS_STATUS_NOT_FOUND;
718 if (!(s.st_mode & S_IXUSR))
719 return UBUS_STATUS_PERMISSION_DENIED;
722 return rpc_errno_status();
724 switch ((pid = fork()))
729 return rpc_errno_status();
738 if ((fd = open("/dev/null", O_RDWR)) > -1)
747 if (execl("/usr/bin/passwd", "/usr/bin/passwd",
748 blobmsg_data(tb[RPC_P_USER]), NULL))
749 return rpc_errno_status();
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);
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);
766 waitpid(pid, NULL, 0);
773 rpc_luci2_led_list(struct ubus_context *ctx, struct ubus_object *obj,
774 struct ubus_request_data *req, const char *method,
775 struct blob_attr *msg)
779 void *list, *led, *trigger;
780 char *p, *active_trigger, line[512];
783 if (!(d = opendir("/sys/class/leds")))
784 return rpc_errno_status();
786 blob_buf_init(&buf, 0);
787 list = blobmsg_open_array(&buf, "leds");
789 while ((e = readdir(d)) != NULL)
791 snprintf(line, sizeof(line) - 1, "/sys/class/leds/%s/trigger",
794 if (!(f = fopen(line, "r")))
797 led = blobmsg_open_table(&buf, NULL);
799 blobmsg_add_string(&buf, "name", e->d_name);
801 if (fgets(line, sizeof(line) - 1, f))
803 trigger = blobmsg_open_array(&buf, "triggers");
805 for (p = strtok(line, " \n"), active_trigger = NULL;
807 p = strtok(NULL, " \n"))
811 *(p + strlen(p) - 1) = 0;
816 blobmsg_add_string(&buf, NULL, p);
819 blobmsg_close_array(&buf, trigger);
822 blobmsg_add_string(&buf, "active_trigger", active_trigger);
827 snprintf(line, sizeof(line) - 1, "/sys/class/leds/%s/brightness",
830 if ((f = fopen(line, "r")) != NULL)
832 if (fgets(line, sizeof(line) - 1, f))
833 blobmsg_add_u32(&buf, "brightness", atoi(line));
838 snprintf(line, sizeof(line) - 1, "/sys/class/leds/%s/max_brightness",
841 if ((f = fopen(line, "r")) != NULL)
843 if (fgets(line, sizeof(line) - 1, f))
844 blobmsg_add_u32(&buf, "max_brightness", atoi(line));
849 blobmsg_close_table(&buf, led);
854 blobmsg_close_array(&buf, list);
855 ubus_send_reply(ctx, req, buf.head);
861 rpc_luci2_usb_list(struct ubus_context *ctx, struct ubus_object *obj,
862 struct ubus_request_data *req, const char *method,
863 struct blob_attr *msg)
873 const char *attributes[] = {
874 "manufacturer", "vendor_name", "s",
875 "product", "product_name", "s",
876 "idVendor", "vendor_id", "x",
877 "idProduct", "product_id", "x",
878 "serial", "serial", "s",
879 "speed", "speed", "d",
882 if (!(d = opendir("/sys/bus/usb/devices")))
883 return rpc_errno_status();
885 blob_buf_init(&buf, 0);
886 list = blobmsg_open_array(&buf, "devices");
888 while ((e = readdir(d)) != NULL)
890 if (e->d_name[0] < '0' || e->d_name[0] > '9')
893 snprintf(line, sizeof(line) - 1,
894 "/sys/bus/usb/devices/%s/%s", e->d_name, attributes[0]);
899 device = blobmsg_open_table(&buf, NULL);
901 blobmsg_add_string(&buf, "name", e->d_name);
903 for (i = 0; i < sizeof(attributes) / sizeof(attributes[0]); i += 3)
905 snprintf(line, sizeof(line) - 1,
906 "/sys/bus/usb/devices/%s/%s", e->d_name, attributes[i]);
908 if (!(f = fopen(line, "r")))
911 if (fgets(line, sizeof(line) - 1, f))
913 switch (*attributes[i+2])
916 blobmsg_add_u32(&buf, attributes[i+1],
917 strtoul(line, NULL, 16));
921 blobmsg_add_u32(&buf, attributes[i+1],
922 strtoul(line, NULL, 10));
926 if ((p = strchr(line, '\n')) != NULL)
927 while (p > line && isspace(*p))
930 blobmsg_add_string(&buf, attributes[i+1], line);
938 blobmsg_close_table(&buf, device);
943 blobmsg_close_array(&buf, list);
944 ubus_send_reply(ctx, req, buf.head);
951 dnsmasq_leasefile(void)
954 struct uci_package *p;
955 struct uci_element *e;
956 struct uci_section *s;
957 struct uci_ptr ptr = {
960 .option = "leasefile"
963 uci_load(cursor, ptr.package, &p);
968 uci_foreach_element(&p->sections, e)
970 s = uci_to_section(e);
972 if (strcmp(s->type, "dnsmasq"))
975 ptr.section = e->name;
976 uci_lookup_ptr(cursor, &ptr, NULL, true);
980 if (ptr.o && ptr.o->type == UCI_TYPE_STRING)
981 leases = fopen(ptr.o->v.string, "r");
983 uci_unload(cursor, p);
989 rpc_luci2_network_leases(struct ubus_context *ctx, struct ubus_object *obj,
990 struct ubus_request_data *req, const char *method,
991 struct blob_attr *msg)
996 char *ts, *mac, *addr, *name;
997 time_t now = time(NULL);
999 blob_buf_init(&buf, 0);
1000 c = blobmsg_open_array(&buf, "leases");
1002 leases = dnsmasq_leasefile();
1007 while (fgets(line, sizeof(line) - 1, leases))
1009 ts = strtok(line, " \t");
1010 mac = strtok(NULL, " \t");
1011 addr = strtok(NULL, " \t");
1012 name = strtok(NULL, " \t");
1014 if (!ts || !mac || !addr || !name)
1017 if (strchr(addr, ':'))
1020 d = blobmsg_open_table(&buf, NULL);
1022 blobmsg_add_u32(&buf, "expires", atoi(ts) - now);
1023 blobmsg_add_string(&buf, "macaddr", mac);
1024 blobmsg_add_string(&buf, "ipaddr", addr);
1026 if (strcmp(name, "*"))
1027 blobmsg_add_string(&buf, "hostname", name);
1029 blobmsg_close_table(&buf, d);
1035 blobmsg_close_array(&buf, c);
1036 ubus_send_reply(ctx, req, buf.head);
1042 rpc_luci2_network_leases6(struct ubus_context *ctx, struct ubus_object *obj,
1043 struct ubus_request_data *req, const char *method,
1044 struct blob_attr *msg)
1049 char *ts, *mac, *addr, *name, *duid;
1050 time_t now = time(NULL);
1052 blob_buf_init(&buf, 0);
1053 c = blobmsg_open_array(&buf, "leases");
1055 leases = fopen("/tmp/hosts/6relayd", "r");
1059 while (fgets(line, sizeof(line) - 1, leases))
1061 if (strncmp(line, "# ", 2))
1064 strtok(line + 2, " \t"); /* iface */
1066 duid = strtok(NULL, " \t");
1068 strtok(NULL, " \t"); /* iaid */
1070 name = strtok(NULL, " \t");
1071 ts = strtok(NULL, " \t");
1073 strtok(NULL, " \t"); /* id */
1074 strtok(NULL, " \t"); /* length */
1076 addr = strtok(NULL, " \t\n");
1081 d = blobmsg_open_table(&buf, NULL);
1083 blobmsg_add_u32(&buf, "expires", atoi(ts) - now);
1084 blobmsg_add_string(&buf, "duid", duid);
1085 blobmsg_add_string(&buf, "ip6addr", addr);
1087 if (strcmp(name, "-"))
1088 blobmsg_add_string(&buf, "hostname", name);
1090 blobmsg_close_array(&buf, d);
1097 leases = dnsmasq_leasefile();
1102 while (fgets(line, sizeof(line) - 1, leases))
1104 ts = strtok(line, " \t");
1105 mac = strtok(NULL, " \t");
1106 addr = strtok(NULL, " \t");
1107 name = strtok(NULL, " \t");
1108 duid = strtok(NULL, " \t\n");
1110 if (!ts || !mac || !addr || !duid)
1113 if (!strchr(addr, ':'))
1116 d = blobmsg_open_table(&buf, NULL);
1118 blobmsg_add_u32(&buf, "expires", atoi(ts) - now);
1119 blobmsg_add_string(&buf, "macaddr", mac);
1120 blobmsg_add_string(&buf, "ip6addr", addr);
1122 if (strcmp(name, "*"))
1123 blobmsg_add_string(&buf, "hostname", name);
1125 if (strcmp(duid, "*"))
1126 blobmsg_add_string(&buf, "duid", name);
1128 blobmsg_close_table(&buf, d);
1135 blobmsg_close_array(&buf, c);
1136 ubus_send_reply(ctx, req, buf.head);
1142 rpc_luci2_network_ct_count(struct ubus_context *ctx, struct ubus_object *obj,
1143 struct ubus_request_data *req, const char *method,
1144 struct blob_attr *msg)
1149 blob_buf_init(&buf, 0);
1151 if ((f = fopen("/proc/sys/net/netfilter/nf_conntrack_count", "r")) != NULL)
1153 if (fgets(line, sizeof(line) - 1, f))
1154 blobmsg_add_u32(&buf, "count", atoi(line));
1159 if ((f = fopen("/proc/sys/net/netfilter/nf_conntrack_max", "r")) != NULL)
1161 if (fgets(line, sizeof(line) - 1, f))
1162 blobmsg_add_u32(&buf, "limit", atoi(line));
1167 ubus_send_reply(ctx, req, buf.head);
1173 rpc_luci2_network_ct_table(struct ubus_context *ctx, struct ubus_object *obj,
1174 struct ubus_request_data *req, const char *method,
1175 struct blob_attr *msg)
1183 blob_buf_init(&buf, 0);
1184 c = blobmsg_open_array(&buf, "entries");
1186 if ((f = fopen("/proc/net/nf_conntrack", "r")) != NULL)
1188 while (fgets(line, sizeof(line) - 1, f))
1190 d = blobmsg_open_table(&buf, NULL);
1191 memset(seen, 0, sizeof(seen));
1193 for (i = 0, p = strtok(line, " "); p; i++, p = strtok(NULL, " "))
1196 blobmsg_add_u8(&buf, "ipv6", !strcmp(p, "ipv6"));
1198 blobmsg_add_u32(&buf, "protocol", atoi(p));
1200 blobmsg_add_u32(&buf, "expires", atoi(p));
1206 if (!seen[0] && !strncmp(p, "src=", 4))
1208 blobmsg_add_string(&buf, "src", p + 4);
1211 else if (!seen[1] && !strncmp(p, "dst=", 4))
1213 blobmsg_add_string(&buf, "dest", p + 4);
1216 else if (!seen[2] && !strncmp(p, "sport=", 6))
1218 blobmsg_add_u32(&buf, "sport", atoi(p + 6));
1221 else if (!seen[3] && !strncmp(p, "dport=", 6))
1223 blobmsg_add_u32(&buf, "dport", atoi(p + 6));
1226 else if (!strncmp(p, "packets=", 8))
1228 blobmsg_add_u32(&buf,
1229 seen[4] ? "tx_packets" : "rx_packets",
1233 else if (!strncmp(p, "bytes=", 6))
1235 blobmsg_add_u32(&buf,
1236 seen[5] ? "tx_bytes" : "rx_bytes",
1243 blobmsg_close_table(&buf, d);
1249 blobmsg_close_array(&buf, c);
1250 ubus_send_reply(ctx, req, buf.head);
1256 rpc_luci2_network_arp_table(struct ubus_context *ctx, struct ubus_object *obj,
1257 struct ubus_request_data *req, const char *method,
1258 struct blob_attr *msg)
1262 char *addr, *mac, *dev, line[128];
1264 blob_buf_init(&buf, 0);
1265 c = blobmsg_open_array(&buf, "entries");
1267 if ((f = fopen("/proc/net/arp", "r")) != NULL)
1269 /* skip header line */
1270 fgets(line, sizeof(line) - 1, f);
1272 while (fgets(line, sizeof(line) - 1, f))
1274 addr = strtok(line, " \t");
1276 strtok(NULL, " \t"); /* HW type */
1277 strtok(NULL, " \t"); /* Flags */
1279 mac = strtok(NULL, " \t");
1281 strtok(NULL, " \t"); /* Mask */
1283 dev = strtok(NULL, " \t\n");
1288 d = blobmsg_open_table(&buf, NULL);
1289 blobmsg_add_string(&buf, "ipaddr", addr);
1290 blobmsg_add_string(&buf, "macaddr", mac);
1291 blobmsg_add_string(&buf, "device", dev);
1292 blobmsg_close_table(&buf, d);
1298 blobmsg_close_array(&buf, c);
1299 ubus_send_reply(ctx, req, buf.head);
1305 put_hexaddr(const char *name, const char *s, const char *m)
1309 char as[sizeof("255.255.255.255/32\0")];
1311 a.s_addr = strtoul(s, NULL, 16);
1312 inet_ntop(AF_INET, &a, as, sizeof(as));
1316 for (a.s_addr = ntohl(strtoul(m, NULL, 16)), bits = 0;
1317 a.s_addr & 0x80000000;
1321 sprintf(as + strlen(as), "/%u", bits);
1324 blobmsg_add_string(&buf, name, as);
1328 rpc_luci2_network_routes(struct ubus_context *ctx, struct ubus_object *obj,
1329 struct ubus_request_data *req, const char *method,
1330 struct blob_attr *msg)
1334 char *dst, *dmask, *next, *metric, *device;
1338 if (!(routes = fopen("/proc/net/route", "r")))
1339 return rpc_errno_status();
1341 blob_buf_init(&buf, 0);
1342 c = blobmsg_open_array(&buf, "routes");
1344 /* skip header line */
1345 fgets(line, sizeof(line) - 1, routes);
1347 while (fgets(line, sizeof(line) - 1, routes))
1349 device = strtok(line, "\t ");
1350 dst = strtok(NULL, "\t ");
1351 next = strtok(NULL, "\t ");
1353 strtok(NULL, "\t "); /* flags */
1354 strtok(NULL, "\t "); /* refcount */
1355 strtok(NULL, "\t "); /* usecount */
1357 metric = strtok(NULL, "\t ");
1358 dmask = strtok(NULL, "\t ");
1363 d = blobmsg_open_table(&buf, NULL);
1365 put_hexaddr("target", dst, dmask);
1366 put_hexaddr("nexthop", next, NULL);
1368 n = strtoul(metric, NULL, 10);
1369 blobmsg_add_u32(&buf, "metric", n);
1371 blobmsg_add_string(&buf, "device", device);
1373 blobmsg_close_table(&buf, d);
1376 blobmsg_close_array(&buf, c);
1379 ubus_send_reply(ctx, req, buf.head);
1384 put_hex6addr(const char *name, const char *s, const char *m)
1388 char as[INET6_ADDRSTRLEN + sizeof("/128")];
1391 (((x) <= '9') ? ((x) - '0') : \
1392 (((x) <= 'F') ? ((x) - 'A' + 10) : \
1395 for (i = 0; i < 16; i++, s += 2)
1396 a.s6_addr[i] = (16 * hex(*s)) + hex(*(s+1));
1398 inet_ntop(AF_INET6, &a, as, sizeof(as));
1401 sprintf(as + strlen(as), "/%lu", strtoul(m, NULL, 16));
1403 blobmsg_add_string(&buf, name, as);
1407 rpc_luci2_network_routes6(struct ubus_context *ctx, struct ubus_object *obj,
1408 struct ubus_request_data *req, const char *method,
1409 struct blob_attr *msg)
1413 char *src, *smask, *dst, *dmask, *next, *metric, *flags, *device;
1417 if (!(routes = fopen("/proc/net/ipv6_route", "r")))
1418 return rpc_errno_status();
1420 blob_buf_init(&buf, 0);
1421 c = blobmsg_open_array(&buf, "routes");
1423 while (fgets(line, sizeof(line) - 1, routes))
1425 dst = strtok(line, " ");
1426 dmask = strtok(NULL, " ");
1427 src = strtok(NULL, " ");
1428 smask = strtok(NULL, " ");
1429 next = strtok(NULL, " ");
1430 metric = strtok(NULL, " ");
1432 strtok(NULL, " "); /* refcount */
1433 strtok(NULL, " "); /* usecount */
1435 flags = strtok(NULL, " ");
1436 device = strtok(NULL, " \n");
1441 n = strtoul(flags, NULL, 16);
1446 d = blobmsg_open_table(&buf, NULL);
1448 put_hex6addr("target", dst, dmask);
1449 put_hex6addr("source", src, smask);
1450 put_hex6addr("nexthop", next, NULL);
1452 n = strtoul(metric, NULL, 16);
1453 blobmsg_add_u32(&buf, "metric", n);
1455 blobmsg_add_string(&buf, "device", device);
1457 blobmsg_close_table(&buf, d);
1460 blobmsg_close_array(&buf, c);
1463 ubus_send_reply(ctx, req, buf.head);
1479 opkg_parse_list(struct blob_buf *blob, char *buf, int len, void *priv)
1481 struct opkg_state *s = priv;
1484 char *nl = strchr(buf, '\n');
1485 char *name = NULL, *vers = NULL, *desc = NULL;
1493 if (s->cur_offset++ < s->req_offset)
1496 if (s->cur_count++ >= s->req_count)
1502 s->array = blobmsg_open_array(blob, "packages");
1505 for (ptr = buf, last = buf, *nl = 0; ptr <= nl; ptr++)
1507 if (!*ptr || (*ptr == ' ' && *(ptr+1) == '-' && *(ptr+2) == ' '))
1519 desc = *ptr ? (ptr + 3) : NULL;
1528 c = blobmsg_open_array(blob, NULL);
1530 blobmsg_add_string(blob, NULL, name);
1531 blobmsg_add_string(blob, NULL, vers);
1534 blobmsg_add_string(blob, NULL, desc);
1536 blobmsg_close_array(blob, c);
1540 return (nl - buf + 1);
1544 opkg_finish_list(struct blob_buf *blob, int status, void *priv)
1546 struct opkg_state *s = priv;
1551 blobmsg_close_array(blob, s->array);
1552 blobmsg_add_u32(blob, "total", s->total);
1556 opkg_exec_list(const char *action, struct blob_attr *msg,
1557 struct ubus_context *ctx, struct ubus_request_data *req)
1559 struct opkg_state *state = NULL;
1560 struct blob_attr *tb[__RPC_OM_MAX];
1561 const char *cmd[5] = { "opkg", action, "-nocase", NULL, NULL };
1563 blobmsg_parse(rpc_opkg_match_policy, __RPC_OM_MAX, tb,
1564 blob_data(msg), blob_len(msg));
1566 state = malloc(sizeof(*state));
1569 return UBUS_STATUS_UNKNOWN_ERROR;
1571 memset(state, 0, sizeof(*state));
1573 if (tb[RPC_OM_PATTERN])
1574 cmd[3] = blobmsg_data(tb[RPC_OM_PATTERN]);
1576 if (tb[RPC_OM_LIMIT])
1577 state->req_count = blobmsg_get_u32(tb[RPC_OM_LIMIT]);
1579 if (tb[RPC_OM_OFFSET])
1580 state->req_offset = blobmsg_get_u32(tb[RPC_OM_OFFSET]);
1582 if (state->req_offset < 0)
1583 state->req_offset = 0;
1585 if (state->req_count <= 0 || state->req_count > 100)
1586 state->req_count = 100;
1588 return rpc_exec(cmd, opkg_parse_list, NULL, opkg_finish_list,
1594 rpc_luci2_opkg_list(struct ubus_context *ctx, struct ubus_object *obj,
1595 struct ubus_request_data *req, const char *method,
1596 struct blob_attr *msg)
1598 return opkg_exec_list("list", msg, ctx, req);
1602 rpc_luci2_opkg_list_installed(struct ubus_context *ctx, struct ubus_object *obj,
1603 struct ubus_request_data *req, const char *method,
1604 struct blob_attr *msg)
1606 return opkg_exec_list("list-installed", msg, ctx, req);
1610 rpc_luci2_opkg_find(struct ubus_context *ctx, struct ubus_object *obj,
1611 struct ubus_request_data *req, const char *method,
1612 struct blob_attr *msg)
1614 return opkg_exec_list("find", msg, ctx, req);
1618 rpc_luci2_opkg_update(struct ubus_context *ctx, struct ubus_object *obj,
1619 struct ubus_request_data *req, const char *method,
1620 struct blob_attr *msg)
1622 const char *cmd[3] = { "opkg", "update", NULL };
1623 return rpc_exec(cmd, NULL, NULL, NULL, NULL, ctx, req);
1627 rpc_luci2_opkg_install(struct ubus_context *ctx, struct ubus_object *obj,
1628 struct ubus_request_data *req, const char *method,
1629 struct blob_attr *msg)
1631 struct blob_attr *tb[__RPC_OP_MAX];
1632 const char *cmd[5] = { "opkg", "--force-overwrite",
1633 "install", NULL, NULL };
1635 blobmsg_parse(rpc_opkg_package_policy, __RPC_OP_MAX, tb,
1636 blob_data(msg), blob_len(msg));
1638 if (!tb[RPC_OP_PACKAGE])
1639 return UBUS_STATUS_INVALID_ARGUMENT;
1641 cmd[3] = blobmsg_data(tb[RPC_OP_PACKAGE]);
1643 return rpc_exec(cmd, NULL, NULL, NULL, NULL, ctx, req);
1647 rpc_luci2_opkg_remove(struct ubus_context *ctx, struct ubus_object *obj,
1648 struct ubus_request_data *req, const char *method,
1649 struct blob_attr *msg)
1651 struct blob_attr *tb[__RPC_OP_MAX];
1652 const char *cmd[5] = { "opkg", "--force-removal-of-dependent-packages",
1653 "remove", NULL, NULL };
1655 blobmsg_parse(rpc_opkg_package_policy, __RPC_OP_MAX, tb,
1656 blob_data(msg), blob_len(msg));
1658 if (!tb[RPC_OP_PACKAGE])
1659 return UBUS_STATUS_INVALID_ARGUMENT;
1661 cmd[3] = blobmsg_data(tb[RPC_OP_PACKAGE]);
1663 return rpc_exec(cmd, NULL, NULL, NULL, NULL, ctx, req);
1667 rpc_luci2_opkg_config_get(struct ubus_context *ctx, struct ubus_object *obj,
1668 struct ubus_request_data *req, const char *method,
1669 struct blob_attr *msg)
1672 char conf[2048] = { 0 };
1674 if (!(f = fopen("/etc/opkg.conf", "r")))
1675 return rpc_errno_status();
1677 fread(conf, sizeof(conf) - 1, 1, f);
1680 blob_buf_init(&buf, 0);
1681 blobmsg_add_string(&buf, "config", conf);
1683 ubus_send_reply(ctx, req, buf.head);
1688 rpc_luci2_opkg_config_set(struct ubus_context *ctx, struct ubus_object *obj,
1689 struct ubus_request_data *req, const char *method,
1690 struct blob_attr *msg)
1693 struct blob_attr *tb[__RPC_OC_MAX];
1695 blobmsg_parse(rpc_opkg_package_policy, __RPC_OC_MAX, tb,
1696 blob_data(msg), blob_len(msg));
1698 if (!tb[RPC_OC_CONFIG])
1699 return UBUS_STATUS_INVALID_ARGUMENT;
1701 if (blobmsg_type(tb[RPC_OC_CONFIG]) != BLOBMSG_TYPE_STRING)
1702 return UBUS_STATUS_INVALID_ARGUMENT;
1704 if (blobmsg_data_len(tb[RPC_OC_CONFIG]) >= 2048)
1705 return UBUS_STATUS_NOT_SUPPORTED;
1707 if (!(f = fopen("/etc/opkg.conf", "w")))
1708 return rpc_errno_status();
1710 fwrite(blobmsg_data(tb[RPC_OC_CONFIG]),
1711 blobmsg_data_len(tb[RPC_OC_CONFIG]), 1, f);
1718 int rpc_luci2_api_init(struct ubus_context *ctx)
1722 static const struct ubus_method luci2_system_methods[] = {
1723 UBUS_METHOD_NOARG("syslog", rpc_luci2_system_log),
1724 UBUS_METHOD_NOARG("dmesg", rpc_luci2_system_dmesg),
1725 UBUS_METHOD_NOARG("diskfree", rpc_luci2_system_diskfree),
1726 UBUS_METHOD_NOARG("process_list", rpc_luci2_process_list),
1727 UBUS_METHOD("process_signal", rpc_luci2_process_signal,
1729 UBUS_METHOD_NOARG("init_list", rpc_luci2_init_list),
1730 UBUS_METHOD("init_action", rpc_luci2_init_action,
1732 UBUS_METHOD_NOARG("rclocal_get", rpc_luci2_rclocal_get),
1733 UBUS_METHOD("rclocal_set", rpc_luci2_rclocal_set,
1735 UBUS_METHOD_NOARG("crontab_get", rpc_luci2_crontab_get),
1736 UBUS_METHOD("crontab_set", rpc_luci2_crontab_set,
1738 UBUS_METHOD_NOARG("sshkeys_get", rpc_luci2_sshkeys_get),
1739 UBUS_METHOD("sshkeys_set", rpc_luci2_sshkeys_set,
1741 UBUS_METHOD("password_set", rpc_luci2_password_set,
1742 rpc_password_policy),
1743 UBUS_METHOD_NOARG("led_list", rpc_luci2_led_list),
1744 UBUS_METHOD_NOARG("usb_list", rpc_luci2_usb_list)
1747 static struct ubus_object_type luci2_system_type =
1748 UBUS_OBJECT_TYPE("luci-rpc-luci2-system", luci2_system_methods);
1750 static struct ubus_object system_obj = {
1751 .name = "luci2.system",
1752 .type = &luci2_system_type,
1753 .methods = luci2_system_methods,
1754 .n_methods = ARRAY_SIZE(luci2_system_methods),
1758 static const struct ubus_method luci2_network_methods[] = {
1759 UBUS_METHOD_NOARG("conntrack_count", rpc_luci2_network_ct_count),
1760 UBUS_METHOD_NOARG("conntrack_table", rpc_luci2_network_ct_table),
1761 UBUS_METHOD_NOARG("arp_table", rpc_luci2_network_arp_table),
1762 UBUS_METHOD_NOARG("dhcp_leases", rpc_luci2_network_leases),
1763 UBUS_METHOD_NOARG("dhcp6_leases", rpc_luci2_network_leases6),
1764 UBUS_METHOD_NOARG("routes", rpc_luci2_network_routes),
1765 UBUS_METHOD_NOARG("routes6", rpc_luci2_network_routes6),
1768 static struct ubus_object_type luci2_network_type =
1769 UBUS_OBJECT_TYPE("luci-rpc-luci2-network", luci2_network_methods);
1771 static struct ubus_object network_obj = {
1772 .name = "luci2.network",
1773 .type = &luci2_network_type,
1774 .methods = luci2_network_methods,
1775 .n_methods = ARRAY_SIZE(luci2_network_methods),
1779 static const struct ubus_method luci2_opkg_methods[] = {
1780 UBUS_METHOD("list", rpc_luci2_opkg_list,
1781 rpc_opkg_match_policy),
1782 UBUS_METHOD("list_installed", rpc_luci2_opkg_list_installed,
1783 rpc_opkg_match_policy),
1784 UBUS_METHOD("find", rpc_luci2_opkg_find,
1785 rpc_opkg_match_policy),
1786 UBUS_METHOD("install", rpc_luci2_opkg_install,
1787 rpc_opkg_package_policy),
1788 UBUS_METHOD("remove", rpc_luci2_opkg_remove,
1789 rpc_opkg_package_policy),
1790 UBUS_METHOD_NOARG("update", rpc_luci2_opkg_update),
1791 UBUS_METHOD_NOARG("config_get", rpc_luci2_opkg_config_get),
1792 UBUS_METHOD("config_set", rpc_luci2_opkg_config_set,
1793 rpc_opkg_config_policy)
1796 static struct ubus_object_type luci2_opkg_type =
1797 UBUS_OBJECT_TYPE("luci-rpc-luci2-network", luci2_opkg_methods);
1799 static struct ubus_object opkg_obj = {
1800 .name = "luci2.opkg",
1801 .type = &luci2_opkg_type,
1802 .methods = luci2_opkg_methods,
1803 .n_methods = ARRAY_SIZE(luci2_opkg_methods),
1806 cursor = uci_alloc_context();
1809 return UBUS_STATUS_UNKNOWN_ERROR;
1811 rv |= ubus_add_object(ctx, &system_obj);
1812 rv |= ubus_add_object(ctx, &network_obj);
1813 rv |= ubus_add_object(ctx, &opkg_obj);