All of lore.kernel.org
 help / color / mirror / Atom feed
* netfilter 00/11: netfilter -next update
@ 2008-06-06 15:17 Patrick McHardy
  2008-06-06 15:17 ` netfilter 01/11: ebtables: add IPv6 support Patrick McHardy
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Patrick McHardy @ 2008-06-06 15:17 UTC (permalink / raw)
  To: davem; +Cc: Patrick McHardy, netfilter-devel

Hi Dave,

following is a first netfilter update for net-next-2.6.git, including:

- conntrack accounting fixes
- a new IPv4/IPv6 security table for SELinux
- IPv6 support for ebtables
- ctnetlink cleanups and SCTP support
- removal of ksize "abuse" in ct_extend
- minor queuing cleanups

Please apply, thanks.


 include/linux/netfilter/nfnetlink_conntrack.h  |   10 ++
 include/linux/netfilter_bridge/ebt_ip6.h       |   40 ++++++
 include/linux/netfilter_bridge/ebt_log.h       |    3 +-
 include/linux/netfilter_ipv4.h                 |    1 +
 include/linux/netfilter_ipv6.h                 |    1 +
 include/net/netfilter/ipv4/nf_conntrack_ipv4.h |    2 -
 include/net/netfilter/nf_conntrack.h           |   19 +++
 include/net/netns/ipv4.h                       |    1 +
 include/net/netns/ipv6.h                       |    1 +
 net/bridge/netfilter/Kconfig                   |    9 ++
 net/bridge/netfilter/Makefile                  |    1 +
 net/bridge/netfilter/ebt_ip6.c                 |  144 +++++++++++++++++++
 net/bridge/netfilter/ebt_log.c                 |   64 +++++++--
 net/ipv4/netfilter/Kconfig                     |   12 ++
 net/ipv4/netfilter/Makefile                    |    1 +
 net/ipv4/netfilter/ip_queue.c                  |    3 -
 net/ipv4/netfilter/iptable_security.c          |  180 ++++++++++++++++++++++++
 net/ipv4/netfilter/nf_conntrack_proto_icmp.c   |    5 +-
 net/ipv6/netfilter/Kconfig                     |   12 ++
 net/ipv6/netfilter/Makefile                    |    1 +
 net/ipv6/netfilter/ip6_queue.c                 |    3 -
 net/ipv6/netfilter/ip6table_security.c         |  172 ++++++++++++++++++++++
 net/ipv6/netfilter/nf_conntrack_proto_icmpv6.c |    5 +-
 net/netfilter/nf_conntrack_core.c              |   19 +++
 net/netfilter/nf_conntrack_extend.c            |   10 +-
 net/netfilter/nf_conntrack_netlink.c           |   30 ++--
 net/netfilter/nf_conntrack_proto_dccp.c        |    3 +-
 net/netfilter/nf_conntrack_proto_sctp.c        |   80 +++++++++++
 net/netfilter/nf_conntrack_proto_tcp.c         |    9 +-
 net/netfilter/nfnetlink_queue.c                |    1 -
 net/netfilter/xt_CONNSECMARK.c                 |   10 +-
 net/netfilter/xt_SECMARK.c                     |   10 +-
 32 files changed, 794 insertions(+), 68 deletions(-)
 create mode 100644 include/linux/netfilter_bridge/ebt_ip6.h
 create mode 100644 net/bridge/netfilter/ebt_ip6.c
 create mode 100644 net/ipv4/netfilter/iptable_security.c
 create mode 100644 net/ipv6/netfilter/ip6table_security.c

Fabian Hugelshofer (2):
      netfilter: nf_conntrack: properly account terminating packets
      netfilter: ctnetlink: include conntrack status in destroy event message

James Morris (2):
      netfilter: ip_tables: add iptables security table for mandatory access control rules
      netfilter: ip6_tables: add ip6tables security table

Kuo-lang Tseng (1):
      netfilter: ebtables: add IPv6 support

Pablo Neira Ayuso (2):
      netfilter: ctnetlink: group errors into logical errno sets
      netfilter: ctnetlink: add full support for SCTP to ctnetlink

Patrick McHardy (1):
      netfilter: nf_conntrack: add nf_ct_kill()

Pekka Enberg (1):
      netfilter: nf_conntrack_extend: use krealloc() in nf_conntrack_extend.c V2

Rami Rosen (2):
      netfilter: nf_conntrack: remove unnecessary function declaration
      netfilter: {ip,ip6,nfnetlink}_queue: misc cleanups

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

end of thread, other threads:[~2008-06-09 23:09 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-06 15:17 netfilter 00/11: netfilter -next update Patrick McHardy
2008-06-06 15:17 ` netfilter 01/11: ebtables: add IPv6 support Patrick McHardy
2008-06-06 15:17 ` netfilter 02/11: ctnetlink: group errors into logical errno sets Patrick McHardy
2008-06-06 15:17 ` netfilter 03/11: ctnetlink: add full support for SCTP to ctnetlink Patrick McHardy
2008-06-06 15:17 ` netfilter 04/11: ip_tables: add iptables security table for mandatory access control rules Patrick McHardy
2008-06-06 15:17 ` netfilter 05/11: ip6_tables: add ip6tables security table Patrick McHardy
2008-06-06 15:17 ` netfilter 06/11: nf_conntrack_extend: use krealloc() in nf_conntrack_extend.c V2 Patrick McHardy
2008-06-06 15:17 ` netfilter 07/11: nf_conntrack: add nf_ct_kill() Patrick McHardy
2008-06-06 15:17 ` netfilter 08/11: nf_conntrack: properly account terminating packets Patrick McHardy
2008-06-06 15:17 ` netfilter 09/11: ctnetlink: include conntrack status in destroy event message Patrick McHardy
2008-06-06 15:18 ` netfilter 10/11: nf_conntrack: remove unnecessary function declaration Patrick McHardy
2008-06-06 15:18 ` netfilter 11/11: {ip,ip6,nfnetlink}_queue: misc cleanups Patrick McHardy
2008-06-09 23:09 ` netfilter 00/11: netfilter -next update 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.