X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=iptables.h;h=8ec7add695cbdfc012cc9b3d4e8cd1ba2e42a653;hp=fabefa8abea870ff0331f29a8da9fb96786aff49;hb=c1a295a500f0d113bacc5455af6444eb18cb482f;hpb=980b7859bbd1db1e5e46422fccccbce38f9809ab diff --git a/iptables.h b/iptables.h index fabefa8..8ec7add 100644 --- a/iptables.h +++ b/iptables.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 @@ -19,30 +19,16 @@ #ifndef __FW3_IPTABLES_H #define __FW3_IPTABLES_H -#include -#include -#include - -#include -#include -#include -#include - -#include "options.h" - -/* xtables interface */ -#if (XTABLES_VERSION_CODE == 10) -# include "xtables-10.h" -#elif (XTABLES_VERSION_CODE == 5) -# include "xtables-5.h" -#else -# error "Unsupported xtables version" -#endif - +#ifndef DISABLE_STATIC_EXTENSIONS /* libipt*ext.so interfaces */ extern void init_extensions(void); extern void init_extensions4(void); extern void init_extensions6(void); +#else +static inline void init_extensions(void) { } +static inline void init_extensions4(void) { } +static inline void init_extensions6(void) { } +#endif /* Required by certain extensions like SNAT and DNAT */ extern int kernel_version; @@ -52,28 +38,9 @@ struct fw3_ipt_handle { enum fw3_family family; enum fw3_table table; void *handle; - - int libc; - void **libv; }; -struct fw3_ipt_rule { - struct fw3_ipt_handle *h; - - union { - struct ipt_entry e; - struct ip6t_entry e6; - }; - - struct xtables_rule_match *matches; - struct xtables_target *target; - - int argc; - char **argv; - - uint32_t protocol; - bool protocol_loaded; -}; +struct fw3_ipt_rule; struct fw3_ipt_handle *fw3_ipt_open(enum fw3_family family, enum fw3_table table); @@ -85,10 +52,14 @@ void fw3_ipt_set_policy(struct fw3_ipt_handle *h, const char *chain, void fw3_ipt_flush_chain(struct fw3_ipt_handle *h, const char *chain); void fw3_ipt_delete_chain(struct fw3_ipt_handle *h, const char *chain); +void fw3_ipt_delete_id_rules(struct fw3_ipt_handle *h, const char *chain); + void fw3_ipt_create_chain(struct fw3_ipt_handle *h, const char *fmt, ...); void fw3_ipt_flush(struct fw3_ipt_handle *h); +void fw3_ipt_gc(struct fw3_ipt_handle *h); + void fw3_ipt_commit(struct fw3_ipt_handle *h); void fw3_ipt_close(struct fw3_ipt_handle *h); @@ -116,6 +87,8 @@ void fw3_ipt_rule_limit(struct fw3_ipt_rule *r, struct fw3_limit *limit); void fw3_ipt_rule_ipset(struct fw3_ipt_rule *r, struct fw3_setmatch *match); +void fw3_ipt_rule_helper(struct fw3_ipt_rule *r, struct fw3_cthelpermatch *match); + void fw3_ipt_rule_time(struct fw3_ipt_rule *r, struct fw3_time *time); void fw3_ipt_rule_mark(struct fw3_ipt_rule *r, struct fw3_mark *mark);