X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;ds=sidebyside;f=utils.h;h=c8ab0e5b0b91d82884880a6f8e528647279a08a1;hb=0e77bf296648c5db92c269c678d27f6846de4e9f;hp=efce382a5df616bdfd2147ba7103a540784005e4;hpb=8fee8f9c520c58d07772cc6bd8f65d9eb1776a56;p=project%2Ffirewall3.git diff --git a/utils.h b/utils.h index efce382..c8ab0e5 100644 --- a/utils.h +++ b/utils.h @@ -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 @@ -24,41 +24,68 @@ #include #include #include +#include #include #include #include +#include +#include +#include #include +#include #include -#define FW3_STATEFILE "/var/run/fw3.lock" +#define FW3_STATEFILE "/var/run/fw3.state" +#define FW3_LOCKFILE "/var/run/fw3.lock" +#define FW3_HELPERCONF "/usr/share/fw3/helpers.conf" +#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, ...); void error(const char *format, ...); void info(const char *format, ...); + +#define warn_section(t, r, e, fmt, ...) \ + do { \ + if (e) \ + warn_elem(e, fmt, ##__VA_ARGS__); \ + else \ + warn("Warning: ubus " t " (%s) " fmt, \ + (r && r->name) ? r->name : "?", ##__VA_ARGS__); \ + } while(0) + +#define fw3_setbit(field, flag) field |= (1 << (flag)) +#define fw3_delbit(field, flag) field &= ~(1 << (flag)) +#define fw3_hasbit(field, flag) (field & (1 << (flag))) + +#define set(field, family, flag) fw3_setbit(field[family == FW3_FAMILY_V6], flag) +#define del(field, family, flag) fw3_delbit(field[family == FW3_FAMILY_V6], flag) +#define has(field, family, flag) fw3_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); @@ -71,8 +98,26 @@ void fw3_pr(const char *fmt, ...); bool fw3_has_table(bool ipv6, const char *table); -bool fw3_check_statefile(bool test_exists); -void fw3_remove_statefile(void); -void fw3_close_statefile(void); +bool fw3_lock(void); +void fw3_unlock(void); + + +void fw3_write_statefile(void *state); + +void fw3_free_object(void *obj, const void *opts); + +void fw3_free_list(struct list_head *head); + +bool fw3_hotplug(bool add, void *zone, void *device); + +int fw3_netmask2bitlen(int family, void *mask); + +bool fw3_bitlen2netmask(int family, int bits, void *mask); + +void fw3_flush_conntrack(void *zone); + +bool fw3_attr_parse_name_type(struct blob_attr *entry, const char **name, const char **type); + +const char * fw3_protoname(void *proto); #endif