#ifndef _COMPAT_XTNU_H #define _COMPAT_XTNU_H 1 #include #include #include #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 18) typedef _Bool bool; enum { false = 0, true = 1, }; #endif struct flowi; struct hh_cache; struct module; struct net_device; struct rtable; struct sk_buff; #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 27) enum { NFPROTO_UNSPEC = 0, NFPROTO_IPV4 = 2, NFPROTO_ARP = 3, NFPROTO_BRIDGE = 7, NFPROTO_IPV6 = 10, NFPROTO_DECNET = 12, NFPROTO_NUMPROTO, }; struct xt_match_param { const struct net_device *in, *out; const struct xt_match *match; const void *matchinfo; int fragoff; unsigned int thoff; bool *hotdrop; u_int8_t family; }; struct xt_mtchk_param { const char *table; const void *entryinfo; const struct xt_match *match; void *matchinfo; unsigned int hook_mask; u_int8_t family; }; struct xt_mtdtor_param { const struct xt_match *match; void *matchinfo; u_int8_t family; }; struct xt_target_param { const struct net_device *in, *out; unsigned int hooknum; const struct xt_target *target; const void *targinfo; u_int8_t family; }; struct xt_tgchk_param { const char *table; const void *entryinfo; const struct xt_target *target; void *targinfo; unsigned int hook_mask; u_int8_t family; }; struct xt_tgdtor_param { const struct xt_target *target; void *targinfo; u_int8_t family; }; #endif struct xtnu_match { struct list_head list; char name[XT_FUNCTION_MAXNAMELEN - 1 - sizeof(void *)]; bool (*match)(const struct sk_buff *, const struct xt_match_param *); bool (*checkentry)(const struct xt_mtchk_param *); void (*destroy)(const struct xt_mtdtor_param *); struct module *me; const char *table; unsigned int matchsize, hooks; unsigned short proto, family; uint8_t revision; void *__compat_match; }; struct xtnu_target { struct list_head list; char name[XT_FUNCTION_MAXNAMELEN - 1 - sizeof(void *)]; unsigned int (*target)(struct sk_buff **, const struct xt_target_param *); bool (*checkentry)(const struct xt_tgchk_param *); void (*destroy)(const struct xt_tgdtor_param *); struct module *me; const char *table; unsigned int targetsize, hooks; unsigned short proto, family; uint8_t revision; void *__compat_target; }; static inline struct xtnu_match *xtcompat_numatch(const struct xt_match *m) { void *q; memcpy(&q, m->name + sizeof(m->name) - sizeof(void *), sizeof(void *)); return q; } static inline struct xtnu_target *xtcompat_nutarget(const struct xt_target *t) { void *q; memcpy(&q, t->name + sizeof(t->name) - sizeof(void *), sizeof(void *)); return q; } extern int xtnu_ip_local_out(struct sk_buff *); extern int xtnu_ip_route_me_harder(struct sk_buff **, unsigned int); extern int xtnu_skb_make_writable(struct sk_buff **, unsigned int); extern int xtnu_register_match(struct xtnu_match *); extern int xtnu_ip_route_output_key(void *, struct rtable **, struct flowi *); extern void xtnu_unregister_match(struct xtnu_match *); extern int xtnu_register_matches(struct xtnu_match *, unsigned int); extern void xtnu_unregister_matches(struct xtnu_match *, unsigned int); extern int xtnu_register_target(struct xtnu_target *); extern void xtnu_unregister_target(struct xtnu_target *); extern int xtnu_register_targets(struct xtnu_target *, unsigned int); extern void xtnu_unregister_targets(struct xtnu_target *, unsigned int); extern struct xt_match *xtnu_request_find_match(unsigned int, const char *, uint8_t); extern int xtnu_neigh_hh_output(struct hh_cache *, struct sk_buff *); extern void xtnu_csum_replace2(__u16 __bitwise *, __be16, __be16); extern int xtnu_skb_linearize(struct sk_buff *); #endif /* _COMPAT_XTNU_H */