X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=utils.h;h=834d97932b1c240e1fafc24c988f0d8ff091e981;hp=43e2a22428d52774d7a130aab7509d629b30e3e8;hb=c03e20d7f594058ff223f30cf34de1b5e8210b8d;hpb=5df8137ebc5db2bc9c6e71b2d154a5f77679d9d8 diff --git a/utils.h b/utils.h index 43e2a22..834d979 100644 --- a/utils.h +++ b/utils.h @@ -24,9 +24,12 @@ #include #include #include +#include #include #include #include +#include +#include #include #include @@ -34,6 +37,9 @@ #define FW3_STATEFILE "/var/run/fw3.state" #define FW3_LOCKFILE "/var/run/fw3.lock" +#define FW3_HOTPLUG "/sbin/hotplug-call" + +extern bool fw3_pr_debug; void warn_elem(struct uci_element *e, const char *format, ...); void warn(const char *format, ...); @@ -44,27 +50,30 @@ void info(const char *format, ...); #define delbit(field, flag) field &= ~(1 << (flag)) #define hasbit(field, flag) (field & (1 << (flag))) +#define set(field, family, flag) setbit(field[family == FW3_FAMILY_V6], flag) +#define del(field, family, flag) delbit(field[family == FW3_FAMILY_V6], flag) +#define has(field, family, flag) hasbit(field[family == FW3_FAMILY_V6], flag) + #define fw3_foreach(p, h) \ for (p = list_empty(h) ? NULL : list_first_entry(h, typeof(*p), list); \ list_empty(h) ? (p == NULL) : (&p->list != (h)); \ p = list_empty(h) ? list_first_entry(h, typeof(*p), list) \ : list_entry(p->list.next, typeof(*p), list)) -static inline void -fw3_free_list(struct list_head *list) -{ - struct list_head *cur, *tmp; - - list_for_each_safe(cur, tmp, list) - { - list_del(cur); - free(cur); - } -} - #define fw3_is_family(p, f) \ (!p || (p)->family == FW3_FAMILY_ANY || (p)->family == f) +#define fw3_no_family(flags) \ + (!(flags & ((1 << FW3_FAMILY_V4) | (1 << FW3_FAMILY_V6)))) + +#define fw3_no_table(flags) \ + (!(flags & ((1<