Commit dc808fe2 authored by Harald Welte's avatar Harald Welte Committed by David S. Miller

[NETFILTER] nf_conntrack: clean up to reduce size of 'struct nf_conn'

This patch moves all helper related data fields of 'struct nf_conn'
into a separate structure 'struct nf_conn_help'.  This new structure
is only present in conntrack entries for which we actually have a
helper loaded.

Also, this patch cleans up the nf_conntrack 'features' mechanism to
resemble what the original idea was: Just glue the feature-specific
data structures at the end of 'struct nf_conn', and explicitly
re-calculate the pointer to it when needed rather than keeping
pointers around.

Saves 20 bytes per conntrack on my x86_64 box. A non-helped conntrack
is 276 bytes. We still need to save another 20 bytes in order to fit
into to target of 256bytes.
Signed-off-by: default avatarHarald Welte <laforge@netfilter.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0d36f37b
...@@ -67,6 +67,18 @@ do { \ ...@@ -67,6 +67,18 @@ do { \
struct nf_conntrack_helper; struct nf_conntrack_helper;
/* nf_conn feature for connections that have a helper */
struct nf_conn_help {
/* Helper. if any */
struct nf_conntrack_helper *helper;
union nf_conntrack_help help;
/* Current number of expected connections */
unsigned int expecting;
};
#include <net/netfilter/ipv4/nf_conntrack_ipv4.h> #include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
struct nf_conn struct nf_conn
{ {
...@@ -81,6 +93,9 @@ struct nf_conn ...@@ -81,6 +93,9 @@ struct nf_conn
/* Have we seen traffic both ways yet? (bitset) */ /* Have we seen traffic both ways yet? (bitset) */
unsigned long status; unsigned long status;
/* If we were expected by an expectation, this will be it */
struct nf_conn *master;
/* Timer function; drops refcnt when it goes off. */ /* Timer function; drops refcnt when it goes off. */
struct timer_list timeout; struct timer_list timeout;
...@@ -88,38 +103,22 @@ struct nf_conn ...@@ -88,38 +103,22 @@ struct nf_conn
/* Accounting Information (same cache line as other written members) */ /* Accounting Information (same cache line as other written members) */
struct ip_conntrack_counter counters[IP_CT_DIR_MAX]; struct ip_conntrack_counter counters[IP_CT_DIR_MAX];
#endif #endif
/* If we were expected by an expectation, this will be it */
struct nf_conn *master;
/* Current number of expected connections */
unsigned int expecting;
/* Unique ID that identifies this conntrack*/ /* Unique ID that identifies this conntrack*/
unsigned int id; unsigned int id;
/* Helper. if any */
struct nf_conntrack_helper *helper;
/* features - nat, helper, ... used by allocating system */ /* features - nat, helper, ... used by allocating system */
u_int32_t features; u_int32_t features;
/* Storage reserved for other modules: */
union nf_conntrack_proto proto;
#if defined(CONFIG_NF_CONNTRACK_MARK) #if defined(CONFIG_NF_CONNTRACK_MARK)
u_int32_t mark; u_int32_t mark;
#endif #endif
/* These members are dynamically allocated. */ /* Storage reserved for other modules: */
union nf_conntrack_proto proto;
union nf_conntrack_help *help;
/* Layer 3 dependent members. (ex: NAT) */ /* features dynamically at the end: helper, nat (both optional) */
union { char data[0];
struct nf_conntrack_ipv4 *ipv4;
} l3proto;
void *data[0];
}; };
struct nf_conntrack_expect struct nf_conntrack_expect
...@@ -373,10 +372,23 @@ nf_conntrack_expect_event(enum ip_conntrack_expect_events event, ...@@ -373,10 +372,23 @@ nf_conntrack_expect_event(enum ip_conntrack_expect_events event,
#define NF_CT_F_NUM 4 #define NF_CT_F_NUM 4
extern int extern int
nf_conntrack_register_cache(u_int32_t features, const char *name, size_t size, nf_conntrack_register_cache(u_int32_t features, const char *name, size_t size);
int (*init_conntrack)(struct nf_conn *, u_int32_t));
extern void extern void
nf_conntrack_unregister_cache(u_int32_t features); nf_conntrack_unregister_cache(u_int32_t features);
/* valid combinations:
* basic: nf_conn, nf_conn .. nf_conn_help
* nat: nf_conn .. nf_conn_nat, nf_conn .. nf_conn_nat, nf_conn help
*/
static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
{
unsigned int offset = sizeof(struct nf_conn);
if (!(ct->features & NF_CT_F_HELP))
return NULL;
return (struct nf_conn_help *) ((void *)ct + offset);
}
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
#endif /* _NF_CONNTRACK_H */ #endif /* _NF_CONNTRACK_H */
...@@ -141,19 +141,21 @@ static unsigned int ipv4_conntrack_help(unsigned int hooknum, ...@@ -141,19 +141,21 @@ static unsigned int ipv4_conntrack_help(unsigned int hooknum,
{ {
struct nf_conn *ct; struct nf_conn *ct;
enum ip_conntrack_info ctinfo; enum ip_conntrack_info ctinfo;
struct nf_conn_help *help;
/* This is where we call the helper: as the packet goes out. */ /* This is where we call the helper: as the packet goes out. */
ct = nf_ct_get(*pskb, &ctinfo); ct = nf_ct_get(*pskb, &ctinfo);
if (ct && ct->helper) { if (!ct)
unsigned int ret; return NF_ACCEPT;
ret = ct->helper->help(pskb,
(*pskb)->nh.raw - (*pskb)->data help = nfct_help(ct);
+ (*pskb)->nh.iph->ihl*4, if (!help || !help->helper)
ct, ctinfo); return NF_ACCEPT;
if (ret != NF_ACCEPT)
return ret; return help->helper->help(pskb,
} (*pskb)->nh.raw - (*pskb)->data
return NF_ACCEPT; + (*pskb)->nh.iph->ihl*4,
ct, ctinfo);
} }
static unsigned int ipv4_conntrack_defrag(unsigned int hooknum, static unsigned int ipv4_conntrack_defrag(unsigned int hooknum,
......
...@@ -179,31 +179,36 @@ static unsigned int ipv6_confirm(unsigned int hooknum, ...@@ -179,31 +179,36 @@ static unsigned int ipv6_confirm(unsigned int hooknum,
int (*okfn)(struct sk_buff *)) int (*okfn)(struct sk_buff *))
{ {
struct nf_conn *ct; struct nf_conn *ct;
struct nf_conn_help *help;
enum ip_conntrack_info ctinfo; enum ip_conntrack_info ctinfo;
unsigned int ret, protoff;
unsigned int extoff = (u8*)((*pskb)->nh.ipv6h + 1)
- (*pskb)->data;
unsigned char pnum = (*pskb)->nh.ipv6h->nexthdr;
/* This is where we call the helper: as the packet goes out. */ /* This is where we call the helper: as the packet goes out. */
ct = nf_ct_get(*pskb, &ctinfo); ct = nf_ct_get(*pskb, &ctinfo);
if (ct && ct->helper) { if (!ct)
unsigned int ret, protoff; goto out;
unsigned int extoff = (u8*)((*pskb)->nh.ipv6h + 1)
- (*pskb)->data;
unsigned char pnum = (*pskb)->nh.ipv6h->nexthdr;
protoff = nf_ct_ipv6_skip_exthdr(*pskb, extoff, &pnum,
(*pskb)->len - extoff);
if (protoff < 0 || protoff > (*pskb)->len ||
pnum == NEXTHDR_FRAGMENT) {
DEBUGP("proto header not found\n");
return NF_ACCEPT;
}
ret = ct->helper->help(pskb, protoff, ct, ctinfo); help = nfct_help(ct);
if (ret != NF_ACCEPT) if (!help || !help->helper)
return ret; goto out;
protoff = nf_ct_ipv6_skip_exthdr(*pskb, extoff, &pnum,
(*pskb)->len - extoff);
if (protoff < 0 || protoff > (*pskb)->len ||
pnum == NEXTHDR_FRAGMENT) {
DEBUGP("proto header not found\n");
return NF_ACCEPT;
} }
ret = help->helper->help(pskb, protoff, ct, ctinfo);
if (ret != NF_ACCEPT)
return ret;
out:
/* We've seen it coming out the other side: confirm it */ /* We've seen it coming out the other side: confirm it */
return nf_conntrack_confirm(pskb); return nf_conntrack_confirm(pskb);
} }
......
This diff is collapsed.
...@@ -440,7 +440,7 @@ static int help(struct sk_buff **pskb, ...@@ -440,7 +440,7 @@ static int help(struct sk_buff **pskb,
u32 seq; u32 seq;
int dir = CTINFO2DIR(ctinfo); int dir = CTINFO2DIR(ctinfo);
unsigned int matchlen, matchoff; unsigned int matchlen, matchoff;
struct ip_ct_ftp_master *ct_ftp_info = &ct->help->ct_ftp_info; struct ip_ct_ftp_master *ct_ftp_info = &nfct_help(ct)->help.ct_ftp_info;
struct nf_conntrack_expect *exp; struct nf_conntrack_expect *exp;
struct nf_conntrack_man cmd = {}; struct nf_conntrack_man cmd = {};
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* protocol helpers and general trouble making from userspace. * protocol helpers and general trouble making from userspace.
* *
* (C) 2001 by Jay Schulist <jschlst@samba.org> * (C) 2001 by Jay Schulist <jschlst@samba.org>
* (C) 2002-2005 by Harald Welte <laforge@gnumonks.org> * (C) 2002-2006 by Harald Welte <laforge@gnumonks.org>
* (C) 2003 by Patrick Mchardy <kaber@trash.net> * (C) 2003 by Patrick Mchardy <kaber@trash.net>
* (C) 2005 by Pablo Neira Ayuso <pablo@eurodev.net> * (C) 2005 by Pablo Neira Ayuso <pablo@eurodev.net>
* *
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
static char __initdata version[] = "0.92"; static char __initdata version[] = "0.93";
#if 0 #if 0
#define DEBUGP printk #define DEBUGP printk
...@@ -165,15 +165,16 @@ static inline int ...@@ -165,15 +165,16 @@ static inline int
ctnetlink_dump_helpinfo(struct sk_buff *skb, const struct nf_conn *ct) ctnetlink_dump_helpinfo(struct sk_buff *skb, const struct nf_conn *ct)
{ {
struct nfattr *nest_helper; struct nfattr *nest_helper;
const struct nf_conn_help *help = nfct_help(ct);
if (!ct->helper) if (!help || !help->helper)
return 0; return 0;
nest_helper = NFA_NEST(skb, CTA_HELP); nest_helper = NFA_NEST(skb, CTA_HELP);
NFA_PUT(skb, CTA_HELP_NAME, strlen(ct->helper->name), ct->helper->name); NFA_PUT(skb, CTA_HELP_NAME, strlen(help->helper->name), help->helper->name);
if (ct->helper->to_nfattr) if (help->helper->to_nfattr)
ct->helper->to_nfattr(skb, ct); help->helper->to_nfattr(skb, ct);
NFA_NEST_END(skb, nest_helper); NFA_NEST_END(skb, nest_helper);
...@@ -903,11 +904,17 @@ static inline int ...@@ -903,11 +904,17 @@ static inline int
ctnetlink_change_helper(struct nf_conn *ct, struct nfattr *cda[]) ctnetlink_change_helper(struct nf_conn *ct, struct nfattr *cda[])
{ {
struct nf_conntrack_helper *helper; struct nf_conntrack_helper *helper;
struct nf_conn_help *help = nfct_help(ct);
char *helpname; char *helpname;
int err; int err;
DEBUGP("entered %s\n", __FUNCTION__); DEBUGP("entered %s\n", __FUNCTION__);
if (!help) {
/* FIXME: we need to reallocate and rehash */
return -EBUSY;
}
/* don't change helper of sibling connections */ /* don't change helper of sibling connections */
if (ct->master) if (ct->master)
return -EINVAL; return -EINVAL;
...@@ -924,18 +931,18 @@ ctnetlink_change_helper(struct nf_conn *ct, struct nfattr *cda[]) ...@@ -924,18 +931,18 @@ ctnetlink_change_helper(struct nf_conn *ct, struct nfattr *cda[])
return -EINVAL; return -EINVAL;
} }
if (ct->helper) { if (help->helper) {
if (!helper) { if (!helper) {
/* we had a helper before ... */ /* we had a helper before ... */
nf_ct_remove_expectations(ct); nf_ct_remove_expectations(ct);
ct->helper = NULL; help->helper = NULL;
} else { } else {
/* need to zero data of old helper */ /* need to zero data of old helper */
memset(&ct->help, 0, sizeof(ct->help)); memset(&help->help, 0, sizeof(help->help));
} }
} }
ct->helper = helper; help->helper = helper;
return 0; return 0;
} }
...@@ -1050,14 +1057,9 @@ ctnetlink_create_conntrack(struct nfattr *cda[], ...@@ -1050,14 +1057,9 @@ ctnetlink_create_conntrack(struct nfattr *cda[],
ct->mark = ntohl(*(u_int32_t *)NFA_DATA(cda[CTA_MARK-1])); ct->mark = ntohl(*(u_int32_t *)NFA_DATA(cda[CTA_MARK-1]));
#endif #endif
ct->helper = nf_ct_helper_find_get(rtuple);
add_timer(&ct->timeout); add_timer(&ct->timeout);
nf_conntrack_hash_insert(ct); nf_conntrack_hash_insert(ct);
if (ct->helper)
nf_ct_helper_put(ct->helper);
DEBUGP("conntrack with id %u inserted\n", ct->id); DEBUGP("conntrack with id %u inserted\n", ct->id);
return 0; return 0;
...@@ -1417,7 +1419,8 @@ ctnetlink_del_expect(struct sock *ctnl, struct sk_buff *skb, ...@@ -1417,7 +1419,8 @@ ctnetlink_del_expect(struct sock *ctnl, struct sk_buff *skb,
} }
list_for_each_entry_safe(exp, tmp, &nf_conntrack_expect_list, list_for_each_entry_safe(exp, tmp, &nf_conntrack_expect_list,
list) { list) {
if (exp->master->helper == h struct nf_conn_help *m_help = nfct_help(exp->master);
if (m_help->helper == h
&& del_timer(&exp->timeout)) { && del_timer(&exp->timeout)) {
nf_ct_unlink_expect(exp); nf_ct_unlink_expect(exp);
nf_conntrack_expect_put(exp); nf_conntrack_expect_put(exp);
...@@ -1452,6 +1455,7 @@ ctnetlink_create_expect(struct nfattr *cda[], u_int8_t u3) ...@@ -1452,6 +1455,7 @@ ctnetlink_create_expect(struct nfattr *cda[], u_int8_t u3)
struct nf_conntrack_tuple_hash *h = NULL; struct nf_conntrack_tuple_hash *h = NULL;
struct nf_conntrack_expect *exp; struct nf_conntrack_expect *exp;
struct nf_conn *ct; struct nf_conn *ct;
struct nf_conn_help *help;
int err = 0; int err = 0;
DEBUGP("entered %s\n", __FUNCTION__); DEBUGP("entered %s\n", __FUNCTION__);
...@@ -1472,8 +1476,9 @@ ctnetlink_create_expect(struct nfattr *cda[], u_int8_t u3) ...@@ -1472,8 +1476,9 @@ ctnetlink_create_expect(struct nfattr *cda[], u_int8_t u3)
if (!h) if (!h)
return -ENOENT; return -ENOENT;
ct = nf_ct_tuplehash_to_ctrack(h); ct = nf_ct_tuplehash_to_ctrack(h);
help = nfct_help(ct);
if (!ct->helper) { if (!help || !help->helper) {
/* such conntrack hasn't got any helper, abort */ /* such conntrack hasn't got any helper, abort */
err = -EINVAL; err = -EINVAL;
goto out; goto out;
......
...@@ -839,7 +839,6 @@ EXPORT_SYMBOL(nf_conntrack_l3proto_unregister); ...@@ -839,7 +839,6 @@ EXPORT_SYMBOL(nf_conntrack_l3proto_unregister);
EXPORT_SYMBOL(nf_conntrack_protocol_register); EXPORT_SYMBOL(nf_conntrack_protocol_register);
EXPORT_SYMBOL(nf_conntrack_protocol_unregister); EXPORT_SYMBOL(nf_conntrack_protocol_unregister);
EXPORT_SYMBOL(nf_ct_invert_tuplepr); EXPORT_SYMBOL(nf_ct_invert_tuplepr);
EXPORT_SYMBOL(nf_conntrack_alter_reply);
EXPORT_SYMBOL(nf_conntrack_destroyed); EXPORT_SYMBOL(nf_conntrack_destroyed);
EXPORT_SYMBOL(need_conntrack); EXPORT_SYMBOL(need_conntrack);
EXPORT_SYMBOL(nf_conntrack_helper_register); EXPORT_SYMBOL(nf_conntrack_helper_register);
......
...@@ -96,6 +96,7 @@ match(const struct sk_buff *skb, ...@@ -96,6 +96,7 @@ match(const struct sk_buff *skb,
{ {
const struct xt_helper_info *info = matchinfo; const struct xt_helper_info *info = matchinfo;
struct nf_conn *ct; struct nf_conn *ct;
struct nf_conn_help *master_help;
enum ip_conntrack_info ctinfo; enum ip_conntrack_info ctinfo;
int ret = info->invert; int ret = info->invert;
...@@ -111,7 +112,8 @@ match(const struct sk_buff *skb, ...@@ -111,7 +112,8 @@ match(const struct sk_buff *skb,
} }
read_lock_bh(&nf_conntrack_lock); read_lock_bh(&nf_conntrack_lock);
if (!ct->master->helper) { master_help = nfct_help(ct->master);
if (!master_help || !master_help->helper) {
DEBUGP("xt_helper: master ct %p has no helper\n", DEBUGP("xt_helper: master ct %p has no helper\n",
exp->expectant); exp->expectant);
goto out_unlock; goto out_unlock;
...@@ -123,8 +125,8 @@ match(const struct sk_buff *skb, ...@@ -123,8 +125,8 @@ match(const struct sk_buff *skb,
if (info->name[0] == '\0') if (info->name[0] == '\0')
ret ^= 1; ret ^= 1;
else else
ret ^= !strncmp(ct->master->helper->name, info->name, ret ^= !strncmp(master_help->helper->name, info->name,
strlen(ct->master->helper->name)); strlen(master_help->helper->name));
out_unlock: out_unlock:
read_unlock_bh(&nf_conntrack_lock); read_unlock_bh(&nf_conntrack_lock);
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment