netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC
@ 2008-12-10 20:06 Pablo Neira Ayuso
  2008-12-11 13:00 ` Patrick McHardy
  0 siblings, 1 reply; 4+ messages in thread
From: Pablo Neira Ayuso @ 2008-12-10 20:06 UTC (permalink / raw)
  To: netfilter-devel; +Cc: kaber

This patch fixes an inconsistency in nfnetlink_conntrack.h that
I introduced myself. The problem is that CTA_NAT_SEQ_UNSPEC is
missing from enum ctattr_natseq. This inconsistency may lead to
problems in the message parsing in userspace (if the message
contains the CTA_NAT_SEQ_* attributes, of course).

This patch breaks backward compatibility, however, the only known
client of this code is libnetfilter_conntrack which indeed crashes
because it assumes the existence of CTA_NAT_SEQ_UNSPEC to do
the parsing.

The CTA_NAT_SEQ_* attributes were introduced in 2.6.25.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---

 include/linux/netfilter/nfnetlink_conntrack.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/linux/netfilter/nfnetlink_conntrack.h b/include/linux/netfilter/nfnetlink_conntrack.h
index c19595c..29fe9ea 100644
--- a/include/linux/netfilter/nfnetlink_conntrack.h
+++ b/include/linux/netfilter/nfnetlink_conntrack.h
@@ -141,6 +141,7 @@ enum ctattr_protonat {
 #define CTA_PROTONAT_MAX (__CTA_PROTONAT_MAX - 1)
 
 enum ctattr_natseq {
+	CTA_NAT_SEQ_UNSPEC,
 	CTA_NAT_SEQ_CORRECTION_POS,
 	CTA_NAT_SEQ_OFFSET_BEFORE,
 	CTA_NAT_SEQ_OFFSET_AFTER,


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC
  2008-12-10 20:06 [PATCH] netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC Pablo Neira Ayuso
@ 2008-12-11 13:00 ` Patrick McHardy
  2008-12-11 21:44   ` Pablo Neira Ayuso
  0 siblings, 1 reply; 4+ messages in thread
From: Patrick McHardy @ 2008-12-11 13:00 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: netfilter-devel

Pablo Neira Ayuso wrote:
> This patch fixes an inconsistency in nfnetlink_conntrack.h that
> I introduced myself. The problem is that CTA_NAT_SEQ_UNSPEC is
> missing from enum ctattr_natseq. This inconsistency may lead to
> problems in the message parsing in userspace (if the message
> contains the CTA_NAT_SEQ_* attributes, of course).
> 
> This patch breaks backward compatibility, however, the only known
> client of this code is libnetfilter_conntrack which indeed crashes
> because it assumes the existence of CTA_NAT_SEQ_UNSPEC to do
> the parsing.
> 
> The CTA_NAT_SEQ_* attributes were introduced in 2.6.25.

Applied, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC
  2008-12-11 13:00 ` Patrick McHardy
@ 2008-12-11 21:44   ` Pablo Neira Ayuso
  2008-12-15 12:12     ` Patrick McHardy
  0 siblings, 1 reply; 4+ messages in thread
From: Pablo Neira Ayuso @ 2008-12-11 21:44 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: netfilter-devel

Patrick McHardy wrote:
> Pablo Neira Ayuso wrote:
>> This patch fixes an inconsistency in nfnetlink_conntrack.h that
>> I introduced myself. The problem is that CTA_NAT_SEQ_UNSPEC is
>> missing from enum ctattr_natseq. This inconsistency may lead to
>> problems in the message parsing in userspace (if the message
>> contains the CTA_NAT_SEQ_* attributes, of course).
>>
>> This patch breaks backward compatibility, however, the only known
>> client of this code is libnetfilter_conntrack which indeed crashes
>> because it assumes the existence of CTA_NAT_SEQ_UNSPEC to do
>> the parsing.
>>
>> The CTA_NAT_SEQ_* attributes were introduced in 2.6.25.
> 
> Applied, thanks.

Thanks Patrick. This one should go to 2.6.28 as bugfix I think. Do you
plan to pass it to David?

-- 
"Los honestos son inadaptados sociales" -- Les Luthiers

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC
  2008-12-11 21:44   ` Pablo Neira Ayuso
@ 2008-12-15 12:12     ` Patrick McHardy
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick McHardy @ 2008-12-15 12:12 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: netfilter-devel

Pablo Neira Ayuso wrote:
> Patrick McHardy wrote:
>> Pablo Neira Ayuso wrote:
>>> This patch fixes an inconsistency in nfnetlink_conntrack.h that
>>> I introduced myself. The problem is that CTA_NAT_SEQ_UNSPEC is
>>> missing from enum ctattr_natseq. This inconsistency may lead to
>>> problems in the message parsing in userspace (if the message
>>> contains the CTA_NAT_SEQ_* attributes, of course).
>>>
>>> This patch breaks backward compatibility, however, the only known
>>> client of this code is libnetfilter_conntrack which indeed crashes
>>> because it assumes the existence of CTA_NAT_SEQ_UNSPEC to do
>>> the parsing.
>>>
>>> The CTA_NAT_SEQ_* attributes were introduced in 2.6.25.
>> Applied, thanks.
> 
> Thanks Patrick. This one should go to 2.6.28 as bugfix I think. Do you
> plan to pass it to David?

Yes, I'll send it to Dave tonight.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-12-15 12:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-10 20:06 [PATCH] netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC Pablo Neira Ayuso
2008-12-11 13:00 ` Patrick McHardy
2008-12-11 21:44   ` Pablo Neira Ayuso
2008-12-15 12:12     ` Patrick McHardy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).