X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=ubus.c;h=f353d015fefc4bb54322752a391692eb3ba255a2;hb=1d0564c3558a115d90fe266e668221135bcb3221;hp=3031e84e9f8158da421ee1468c881549d11d636f;hpb=bba31cce0521e014109fc805671d4cff7ee9dbf6;p=project%2Ffirewall3.git diff --git a/ubus.c b/ubus.c index 3031e84..f353d01 100644 --- a/ubus.c +++ b/ubus.c @@ -1,7 +1,7 @@ /* * firewall3 - 3rd OpenWrt UCI firewall implementation * - * Copyright (C) 2013 Jo-Philipp Wich + * Copyright (C) 2013 Jo-Philipp Wich * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -246,15 +246,22 @@ fw3_ubus_rules(struct blob_buf *b) blob_buf_init(b, 0); struct blob_attr *c, *cur, *dcur, *rule, *ropt; - unsigned r, rem, drem, rrem, orem; + unsigned n, r, rem, drem, rrem, orem; + char comment[256]; blobmsg_for_each_attr(c, interfaces, r) { const char *l3_device = NULL; + const char *iface_proto = "unknown"; + const char *iface_name = "unknown"; struct blob_attr *data = NULL; blobmsg_for_each_attr(cur, c, rem) { if (!strcmp(blobmsg_name(cur), "l3_device")) l3_device = blobmsg_get_string(cur); + else if (!strcmp(blobmsg_name(cur), "interface")) + iface_name = blobmsg_get_string(cur); + else if (!strcmp(blobmsg_name(cur), "proto")) + iface_proto = blobmsg_get_string(cur); else if (!strcmp(blobmsg_name(cur), "data")) data = cur; } @@ -266,13 +273,22 @@ fw3_ubus_rules(struct blob_buf *b) if (strcmp(blobmsg_name(dcur), "firewall")) continue; + n = 0; + blobmsg_for_each_attr(rule, dcur, rrem) { void *k = blobmsg_open_table(b, ""); - blobmsg_for_each_attr(ropt, rule, orem) - if (strcmp(blobmsg_name(ropt), "device")) + snprintf(comment, sizeof(comment), "ubus:%s[%s] rule %d", + iface_name, iface_proto, n++); + + blobmsg_for_each_attr(ropt, rule, orem) { + if (!strcmp(blobmsg_name(ropt), "device")) + l3_device = blobmsg_get_string(ropt); + else if (strcmp(blobmsg_name(ropt), "name")) blobmsg_add_blob(b, ropt); + } + blobmsg_add_string(b, "name", comment); blobmsg_add_string(b, "device", l3_device); blobmsg_close_table(b, k); } @@ -297,8 +313,21 @@ fw3_ubus_rules(struct blob_buf *b) if (!blobmsg_check_attr(dcur, true)) continue; - blobmsg_for_each_attr(rule, dcur, rrem) - blobmsg_add_blob(b, rule); + n = 0; + + blobmsg_for_each_attr(rule, dcur, rrem) { + void *k = blobmsg_open_table(b, ""); + + snprintf(comment, sizeof(comment), "ubus:%s[%s] rule %d", + blobmsg_name(c), blobmsg_name(cur), n++); + + blobmsg_for_each_attr(ropt, rule, orem) + if (strcmp(blobmsg_name(ropt), "name")) + blobmsg_add_blob(b, ropt); + + blobmsg_add_string(b, "name", comment); + blobmsg_close_table(b, k); + } } } }