* init_conntrack optimization
@ 2004-02-25 12:40 Pablo Neira
2004-02-25 14:40 ` Harald Welte
0 siblings, 1 reply; 3+ messages in thread
From: Pablo Neira @ 2004-02-25 12:40 UTC (permalink / raw)
To: Harald Welte, netfilter-devel
[-- Attachment #1: Type: text/plain, Size: 778 bytes --]
Hi Harald and list!
I patched the init_conntrack function to optimize the expectation handling.
With this patch, if an expectation is not found for the conntrack, it
will look for an helper and go out, this way we save three "if's". By
other hand, if an expectation is found we save one "if".
I consider that the general case is that an expectation is not found,
isn't it? because most connection tracked by the system don't need a
helper, so they not need to handle expectations.
BTW, can we consider that if there's no helper for a given tuple, it
won't have expectations? because while writing the patch i had more
ideas, maybe this could be optimized a bit more. Well, I'm not sure...
hope that i'm not missing anything! if so, please let me know.
cheers,
Pablo
[-- Attachment #2: init_conntrack-optimize.patch --]
[-- Type: text/plain, Size: 3644 bytes --]
diff -Nru --exclude .depend --exclude '*.o' --exclude '*.ko' --exclude '*.ver' --exclude '.*.flags' --exclude '*.orig' --exclude '*.rej' --exclude '*.cmd' --exclude '*.mod.c' --exclude '*~' linux-2.6.3-old/net/ipv4/netfilter/ip_conntrack_core.c old-compiled/linux-2.6.3/net/ipv4/netfilter/ip_conntrack_core.c
--- linux-2.6.3-old/net/ipv4/netfilter/ip_conntrack_core.c 2004-02-22 13:29:30.000000000 +0100
+++ old-compiled/linux-2.6.3/net/ipv4/netfilter/ip_conntrack_core.c 2004-02-25 13:02:35.000000000 +0100
@@ -691,42 +691,50 @@
struct ip_conntrack_expect *, tuple);
READ_UNLOCK(&ip_conntrack_expect_tuple_lock);
- /* If master is not in hash table yet (ie. packet hasn't left
- this machine yet), how can other end know about expected?
- Hence these are not the droids you are looking for (if
- master ct never got confirmed, we'd hold a reference to it
- and weird things would happen to future packets). */
- if (expected && !is_confirmed(expected->expectant))
- expected = NULL;
-
- /* Look up the conntrack helper for master connections only */
- if (!expected)
- conntrack->helper = ip_ct_find_helper(&repl_tuple);
-
- /* If the expectation is dying, then this is a loser. */
- if (expected
- && expected->expectant->helper->timeout
- && ! del_timer(&expected->timeout))
- expected = NULL;
-
if (expected) {
- DEBUGP("conntrack: expectation arrives ct=%p exp=%p\n",
- conntrack, expected);
- /* Welcome, Mr. Bond. We've been expecting you... */
- IP_NF_ASSERT(master_ct(conntrack));
- __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
- conntrack->master = expected;
- expected->sibling = conntrack;
- LIST_DELETE(&ip_conntrack_expect_list, expected);
- expected->expectant->expecting--;
- nf_conntrack_get(&master_ct(conntrack)->infos[0]);
- }
- atomic_inc(&ip_conntrack_count);
+ /* If master is not in hash table yet (ie. packet hasn't left
+ this machine yet), how can other end know about expected?
+ Hence these are not the droids you are looking for (if
+ master ct never got confirmed, we'd hold a reference to it
+ and weird things would happen to future packets). */
+ if (!is_confirmed(expected->expectant)) {
+
+ conntrack->helper = ip_ct_find_helper(&repl_tuple);
+ goto end;
+ }
+
+ /* Expectation is dying... */
+ if (expected->expectant->helper->timeout
+ && ! del_timer(&expected->timeout)) {
+ goto end;
+ }
+
+ DEBUGP("conntrack: expectation arrives ct=%p exp=%p\n",
+ conntrack, expected);
+ /* Welcome, Mr. Bond. We've been expecting you... */
+ IP_NF_ASSERT(master_ct(conntrack));
+ __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
+ conntrack->master = expected;
+ expected->sibling = conntrack;
+ LIST_DELETE(&ip_conntrack_expect_list, expected);
+ expected->expectant->expecting--;
+ nf_conntrack_get(&master_ct(conntrack)->infos[0]);
+
+ /* this is a braindead... --pablo */
+ atomic_inc(&ip_conntrack_count);
+ WRITE_UNLOCK(&ip_conntrack_lock);
+
+ if (expected->expectfn)
+ expected->expectfn(conntrack);
+
+ goto ret;
+ } else
+ conntrack->helper = ip_ct_find_helper(&repl_tuple);
+
+end: atomic_inc(&ip_conntrack_count);
WRITE_UNLOCK(&ip_conntrack_lock);
- if (expected && expected->expectfn)
- expected->expectfn(conntrack);
- return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
+ret: return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
}
/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: init_conntrack optimization
2004-02-25 12:40 init_conntrack optimization Pablo Neira
@ 2004-02-25 14:40 ` Harald Welte
2004-02-25 15:58 ` Pablo Neira
0 siblings, 1 reply; 3+ messages in thread
From: Harald Welte @ 2004-02-25 14:40 UTC (permalink / raw)
To: Pablo Neira; +Cc: netfilter-devel
[-- Attachment #1: Type: text/plain, Size: 1889 bytes --]
On Wed, Feb 25, 2004 at 01:40:05PM +0100, Pablo Neira wrote:
> Hi Harald and list!
>
> I patched the init_conntrack function to optimize the expectation handling.
>
> With this patch, if an expectation is not found for the conntrack, it
> will look for an helper and go out, this way we save three "if's". By
> other hand, if an expectation is found we save one "if".
yes, thanks for the patch. It definitely makes the code more readable.
If it really makes a difference in performance - I don't know.
The compiler will certainly not recompute the value of 'expected', and
since it also knows that expected is not written to, it could actually
optimize here. Whether gcc is smart enough to do so, I don't know.. one
would have to look at the generated assembly code.
> I consider that the general case is that an expectation is not found,
> isn't it? because most connection tracked by the system don't need a
> helper, so they not need to handle expectations.
yes. Maybe it's even worth using 'if (unlikely(expected))' in that
case.
> BTW, can we consider that if there's no helper for a given tuple, it
> won't have expectations? because while writing the patch i had more
> ideas, maybe this could be optimized a bit more. Well, I'm not sure...
No, this is an invalid assumption.
> hope that i'm not missing anything! if so, please let me know.
looks fine to me. would you mind submitting a patch syncing 2.4.x to
your changes? Thanks.
> cheers,
> Pablo
--
- Harald Welte <laforge@netfilter.org> http://www.netfilter.org/
============================================================================
"Fragmentation is like classful addressing -- an interesting early
architectural error that shows how much experimentation was going
on while IP was being designed." -- Paul Vixie
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: init_conntrack optimization
2004-02-25 14:40 ` Harald Welte
@ 2004-02-25 15:58 ` Pablo Neira
0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira @ 2004-02-25 15:58 UTC (permalink / raw)
To: Harald Welte, netfilter-devel
[-- Attachment #1: Type: text/plain, Size: 1678 bytes --]
Hi again Harald,
Harald Welte wrote:
>>With this patch, if an expectation is not found for the conntrack, it
>>will look for an helper and go out, this way we save three "if's". By
>>other hand, if an expectation is found we save one "if".
>>
>>
>
>yes, thanks for the patch. It definitely makes the code more readable.
>If it really makes a difference in performance - I don't know.
>
>The compiler will certainly not recompute the value of 'expected', and
>since it also knows that expected is not written to, it could actually
>optimize here. Whether gcc is smart enough to do so, I don't know.. one
>would have to look at the generated assembly code.
>
>
>
well, I'm not a compiler geek so I don't know either. But it's true,
it's more readable :-). So maybe "optimization" wasn't the correct subject.
>>I consider that the general case is that an expectation is not found,
>>isn't it? because most connection tracked by the system don't need a
>>helper, so they not need to handle expectations.
>>
>>
>
>yes. Maybe it's even worth using 'if (unlikely(expected))' in that
>case.
>
>
>
I didn't modify the patch, well I think it's ok anyway.
>>BTW, can we consider that if there's no helper for a given tuple, it
>>won't have expectations? because while writing the patch i had more
>>ideas, maybe this could be optimized a bit more. Well, I'm not sure...
>>
>>
>
>No, this is an invalid assumption.
>
>
ok, thanks!
>>hope that i'm not missing anything! if so, please let me know.
>>
>>
>
>looks fine to me. would you mind submitting a patch syncing 2.4.x to
>your changes? Thanks.
>
>
I attached the patch for the 2.4.x tree.
Pablo
[-- Attachment #2: init_conntrack.patch --]
[-- Type: text/plain, Size: 3335 bytes --]
--- ../linux-2.4.25-old/net/ipv4/netfilter/ip_conntrack_core.c 2004-02-18 14:36:32.000000000 +0100
+++ net/ipv4/netfilter/ip_conntrack_core.c 2004-02-25 16:46:30.000000000 +0100
@@ -708,42 +708,50 @@
struct ip_conntrack_expect *, tuple);
READ_UNLOCK(&ip_conntrack_expect_tuple_lock);
- /* If master is not in hash table yet (ie. packet hasn't left
- this machine yet), how can other end know about expected?
- Hence these are not the droids you are looking for (if
- master ct never got confirmed, we'd hold a reference to it
- and weird things would happen to future packets). */
- if (expected && !is_confirmed(expected->expectant))
- expected = NULL;
-
- /* Look up the conntrack helper for master connections only */
- if (!expected)
- conntrack->helper = ip_ct_find_helper(&repl_tuple);
-
- /* If the expectation is dying, then this is a looser. */
- if (expected
- && expected->expectant->helper->timeout
- && ! del_timer(&expected->timeout))
- expected = NULL;
-
if (expected) {
- DEBUGP("conntrack: expectation arrives ct=%p exp=%p\n",
- conntrack, expected);
- /* Welcome, Mr. Bond. We've been expecting you... */
- IP_NF_ASSERT(master_ct(conntrack));
- __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
- conntrack->master = expected;
- expected->sibling = conntrack;
- LIST_DELETE(&ip_conntrack_expect_list, expected);
- expected->expectant->expecting--;
- nf_conntrack_get(&master_ct(conntrack)->infos[0]);
- }
- atomic_inc(&ip_conntrack_count);
+ /* If master is not in hash table yet (ie. packet hasn't left
+ this machine yet), how can other end know about expected?
+ Hence these are not the droids you are looking for (if
+ master ct never got confirmed, we'd hold a reference to it
+ and weird things would happen to future packets). */
+ if (!is_confirmed(expected->expectant)) {
+
+ conntrack->helper = ip_ct_find_helper(&repl_tuple);
+ goto end;
+ }
+
+ /* Expectation is dying... */
+ if (expected->expectant->helper->timeout
+ && ! del_timer(&expected->timeout)) {
+ goto end;
+ }
+
+ DEBUGP("conntrack: expectation arrives ct=%p exp=%p\n",
+ conntrack, expected);
+ /* Welcome, Mr. Bond. We've been expecting you... */
+ IP_NF_ASSERT(master_ct(conntrack));
+ __set_bit(IPS_EXPECTED_BIT, &conntrack->status);
+ conntrack->master = expected;
+ expected->sibling = conntrack;
+ LIST_DELETE(&ip_conntrack_expect_list, expected);
+ expected->expectant->expecting--;
+ nf_conntrack_get(&master_ct(conntrack)->infos[0]);
+
+ /* this is a braindead... */
+ atomic_inc(&ip_conntrack_count);
+ WRITE_UNLOCK(&ip_conntrack_lock);
+
+ if (expected->expectfn)
+ expected->expectfn(conntrack);
+
+ goto ret;
+ } else
+ conntrack->helper = ip_ct_find_helper(&repl_tuple);
+
+end: atomic_inc(&ip_conntrack_count);
WRITE_UNLOCK(&ip_conntrack_lock);
- if (expected && expected->expectfn)
- expected->expectfn(conntrack);
- return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
+ret: return &conntrack->tuplehash[IP_CT_DIR_ORIGINAL];
}
/* On success, returns conntrack ptr, sets skb->nfct and ctinfo */
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-02-25 15:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-25 12:40 init_conntrack optimization Pablo Neira
2004-02-25 14:40 ` Harald Welte
2004-02-25 15:58 ` Pablo Neira
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.