X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=utils.h;h=cd478f9d80886855ecf88e3df3319130c50233f0;hp=590895a575278aa897e17f9fd1f4605d71723213;hb=d1a450f7f29b68c314b92cde4f8cd34d4766302b;hpb=5b051a66fad3c208380d69b4b13d09929fcfe101 diff --git a/utils.h b/utils.h index 590895a..cd478f9 100644 --- a/utils.h +++ b/utils.h @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -34,6 +35,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,26 +48,29 @@ 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; +#define fw3_is_family(p, f) \ + (!p || (p)->family == FW3_FAMILY_ANY || (p)->family == f) - list_for_each_safe(cur, tmp, list) - { - list_del(cur); - free(cur); - } -} +#define fw3_no_family(flags) \ + (!(flags & ((1 << FW3_FAMILY_V4) | (1 << FW3_FAMILY_V6)))) + +#define fw3_no_table(flags) \ + (!(flags & ((1<family == FW3_FAMILY_ANY || p->family == f) + +void * fw3_alloc(size_t size); +char * fw3_strdup(const char *s); const char * fw3_find_command(const char *cmd); @@ -80,23 +87,12 @@ bool fw3_lock(void); void fw3_unlock(void); -enum fw3_statefile_type -{ - FW3_TYPE_DEFAULTS = 0, - FW3_TYPE_ZONE = 1, - FW3_TYPE_IPSET = 2, -}; +void fw3_write_statefile(void *state); + +void fw3_free_object(void *obj, const void *opts); -struct fw3_statefile_entry -{ - struct list_head list; - enum fw3_statefile_type type; - char *name; - uint32_t flags[2]; -}; +void fw3_free_list(struct list_head *head); -struct list_head * fw3_read_statefile(void); -void fw3_write_statefile(void *state); -void fw3_free_statefile(struct list_head *statefile); +bool fw3_hotplug(bool add, void *zone, void *device); #endif