All of lore.kernel.org
 help / color / mirror / Atom feed
* [NETFILTER 00/04]: Netfilter fixes
@ 2006-11-27 18:20 Patrick McHardy
  2006-11-27 18:20 ` [NETFILTER 01/04]: nfctnetlink: assign helper to newly created conntrack Patrick McHardy
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Patrick McHardy @ 2006-11-27 18:20 UTC (permalink / raw)
  To: davem; +Cc: netfilter-devel, Patrick McHardy

Hi Dave,

following are a few small netfilter fixes for 2.6.19, fixing multiple
refcount leaks and a nf_conntrack helper assignment race which can
lead to use-after-free.

Please apply, thanks.


 net/ipv4/netfilter/ip_conntrack_core.c    |    6 +++---
 net/ipv4/netfilter/ip_conntrack_netlink.c |    1 +
 net/netfilter/nf_conntrack_core.c         |   19 +++++++++----------
 net/netfilter/nf_conntrack_netlink.c      |    9 +++++++++
 4 files changed, 22 insertions(+), 13 deletions(-)

Patrick McHardy:
      [NETFILTER]: ctnetlink: fix reference count leak

Yasuyuki Kozakai:
      [NETFILTER]: nfctnetlink: assign helper to newly created conntrack
      [NETFILTER]: nf_conntrack: fix the race on assign helper to new conntrack
      [NETFILTER]: conntrack: fix refcount leak when finding expectation

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [NETFILTER 00/04]: Netfilter fixes
@ 2008-02-06 13:33 Patrick McHardy
  2008-02-08  1:57 ` David Miller
  0 siblings, 1 reply; 14+ messages in thread
From: Patrick McHardy @ 2008-02-06 13:33 UTC (permalink / raw)
  To: davem; +Cc: Patrick McHardy, netfilter-devel

These patches fix a couple of bugs in netfilter: a bug in ct_extend,
causing invalid memory accesses when DNATing a connection to a port
using a connection tracking helper, the TCP connection reopening bug,
causing slowdowns by dropping connection reopening attempts, and
a typo and missing #include in xt_iprange.

Please apply, thanks.


 include/net/netfilter/nf_conntrack_extend.h |    2 +-
 net/ipv4/netfilter/nf_nat_core.c            |    6 ++--
 net/netfilter/nf_conntrack_extend.c         |    3 +-
 net/netfilter/nf_conntrack_proto_tcp.c      |   32 +++++++++++++++++++++-----
 net/netfilter/xt_iprange.c                  |    3 +-
 5 files changed, 34 insertions(+), 12 deletions(-)

Jan Engelhardt (1):
      [NETFILTER]: xt_iprange: add missing #include

Jozsef Kadlecsik (1):
      [NETFILTER]: nf_conntrack: TCP conntrack reopening fix

Patrick McHardy (2):
      [NETFILTER]: nf_conntrack: fix ct_extend ->move operation
      [NETFILTER]: xt_iprange: fix typo in address family

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [NETFILTER 00/04]: Netfilter fixes
@ 2007-08-14 16:40 Patrick McHardy
  2007-08-14 20:15 ` David Miller
  0 siblings, 1 reply; 14+ messages in thread
From: Patrick McHardy @ 2007-08-14 16:40 UTC (permalink / raw)
  To: davem; +Cc: netfilter-devel, Patrick McHardy

Hi Dave,

these patches fix an extraneous ";" in the new u32 match and three minor
bugs in the SIP conntrack helper. Please apply, thanks.


 net/ipv4/netfilter/nf_nat_sip.c  |    2 +-
 net/netfilter/nf_conntrack_sip.c |    8 ++++++--
 net/netfilter/xt_u32.c           |    2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)

Eric Dumazet (1):
      [NETFILTER]: netfilter: xt_u32 bug correction

Patrick McHardy (3):
      [NETFILTER]: nf_conntrack_sip: check sname != NULL before calling strncmp
      [NETFILTER]: nf_conntrack_sip: fix SIP-URI parsing
      [NETFILTER]: nf_nat_sip: don't drop short packets

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [NETFILTER 00/04]: Netfilter fixes
@ 2007-01-09 16:29 Patrick McHardy
  2007-01-09 22:35 ` David Miller
  0 siblings, 1 reply; 14+ messages in thread
From: Patrick McHardy @ 2007-01-09 16:29 UTC (permalink / raw)
  To: davem; +Cc: netfilter-devel, Patrick McHardy

Hi Dave,

following are a few more netfilter fixes for 2.6.20, fixing a
nf_conntrack_ipv6 crash when dealing with fragments, hanging
connections when loading the nf_nat module, an incorrect value
for a TCP connection tracking flag and compilation of arp_tables
userspace. I'll also pass on the relevant ones to -stable.

Please apply, thanks.


 include/linux/netfilter/nf_conntrack_tcp.h |    2 +-
 include/linux/netfilter_arp/arp_tables.h   |    1 +
 net/ipv4/netfilter/nf_nat_standalone.c     |    2 +-
 net/ipv6/netfilter/nf_conntrack_reasm.c    |    2 ++
 4 files changed, 5 insertions(+), 2 deletions(-)

Bart De Schuymer:
      [NETFILTER]: arp_tables: fix userspace compilation

Patrick McHardy:
      [NETFILTER]: nf_conntrack_ipv6: fix crash when handling fragments
      [NETFILTER]: nf_nat: fix hanging connections when loading the NAT module
      [NETFILTER]: tcp conntrack: fix IP_CT_TCP_FLAG_CLOSE_INIT value

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [NETFILTER 00/04]: Netfilter fixes
@ 2006-11-14  7:03 Patrick McHardy
  2006-11-15  3:49 ` David Miller
  0 siblings, 1 reply; 14+ messages in thread
From: Patrick McHardy @ 2006-11-14  7:03 UTC (permalink / raw)
  To: davem; +Cc: netfilter-devel, Patrick McHardy

Hi Dave,

following a few netfilter fixes for 2.6.19, fixing invalid use of skb_trim
in netfilter userspace queueing, conflicting optname values for ip6tables
revision support and another byteorder problem in nfnetlink_log.

Please apply, thanks.


 include/linux/in6.h                       |   12 +++++++++++-
 include/linux/netfilter/x_tables.h        |   16 ----------------
 include/linux/netfilter_arp/arp_tables.h  |   25 +++++++++++++------------
 include/linux/netfilter_ipv4/ip_tables.h  |   27 +++++++++++++++------------
 include/linux/netfilter_ipv6/ip6_tables.h |   27 +++++++++++++++------------
 net/ipv4/netfilter/ip_queue.c             |    7 ++++---
 net/ipv6/netfilter/ip6_queue.c            |    7 ++++---
 net/ipv6/netfilter/ip6_tables.c           |    2 +-
 net/netfilter/nfnetlink_log.c             |    2 +-
 net/netfilter/nfnetlink_queue.c           |    7 ++++---
 10 files changed, 68 insertions(+), 64 deletions(-)

Patrick McHardy:
      [NETFILTER]: nfnetlink_log: fix byteorder of NFULA_SEQ_GLOBAL
      [NETFILTER]: Use pskb_trim in {ip,ip6,nfnetlink}_queue
      [NETFILTER]: ip6_tables: use correct nexthdr value in ipv6_find_hdr()

Yasuyuki Kozakai:
      [NETFILTER]: ip6_tables: fixed conflicted optname for getsockopt

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

end of thread, other threads:[~2008-02-08  1:56 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-27 18:20 [NETFILTER 00/04]: Netfilter fixes Patrick McHardy
2006-11-27 18:20 ` [NETFILTER 01/04]: nfctnetlink: assign helper to newly created conntrack Patrick McHardy
2006-11-27 18:20 ` [NETFILTER 02/04]: nf_conntrack: fix the race on assign helper to new conntrack Patrick McHardy
2006-11-27 18:20 ` [NETFILTER 03/04]: ctnetlink: fix reference count leak Patrick McHardy
2006-11-27 18:20 ` [NETFILTER 04/04]: conntrack: fix refcount leak when finding expectation Patrick McHardy
2006-11-27 18:27 ` [NETFILTER 00/04]: Netfilter fixes David Miller
  -- strict thread matches above, loose matches on Subject: below --
2008-02-06 13:33 Patrick McHardy
2008-02-08  1:57 ` David Miller
2007-08-14 16:40 Patrick McHardy
2007-08-14 20:15 ` David Miller
2007-01-09 16:29 Patrick McHardy
2007-01-09 22:35 ` David Miller
2006-11-14  7:03 Patrick McHardy
2006-11-15  3:49 ` David Miller

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.