From: Pablo Neira Ayuso <pablo@netfilter.org>
To: netfilter-devel@vger.kernel.org
Cc: davem@davemloft.net, netdev@vger.kernel.org, kuba@kernel.org
Subject: [PATCH net-next 00/14] Netfilter updates for net-next
Date: Wed, 9 Feb 2022 14:36:02 +0100 [thread overview]
Message-ID: <20220209133616.165104-1-pablo@netfilter.org> (raw)
Hi,
The following patchset contains Netfilter updates for net-next:
1) Conntrack sets on CHECKSUM_UNNECESSARY for UDP packet with no checksum,
from Kevin Mitchell.
2) skb->priority support for nfqueue, from Nicolas Dichtel.
3) Remove conntrack extension register API, from Florian Westphal.
4) Move nat destroy hook to nf_nat_hook instead, to remove
nf_ct_ext_destroy(), also from Florian.
5) Wrap pptp conntrack NAT hooks into single structure, from Florian Westphal.
6) Support for tcp option set to noop for nf_tables, also from Florian.
7) Do not run x_tables comment match from packet path in nf_tables,
from Florian Westphal.
8) Replace spinlock by cmpxchg() loop to update missed ct event,
from Florian Westphal.
9) Wrap cttimeout hooks into single structure, from Florian.
10) Add fast nft_cmp expression for up to 16-bytes.
11) Use cb->ctx to store context in ctnetlink dump, instead of using
cb->args[], from Florian Westphal.
Please, pull these changes from:
git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
Thanks.
----------------------------------------------------------------
The following changes since commit 41414c9bdbb87cc5fbeee7dfc33137a96710fcac:
net: lan966x: use .mac_select_pcs() interface (2022-02-03 19:11:21 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git HEAD
for you to fetch changes up to 5948ed297eefe927628e43b5142ccde691a130fd:
netfilter: ctnetlink: use dump structure instead of raw args (2022-02-09 12:07:16 +0100)
----------------------------------------------------------------
Florian Westphal (10):
netfilter: conntrack: make all extensions 8-byte alignned
netfilter: conntrack: move extension sizes into core
netfilter: conntrack: handle ->destroy hook via nat_ops instead
netfilter: conntrack: remove extension register api
netfilter: conntrack: pptp: use single option structure
netfilter: exthdr: add support for tcp option removal
netfilter: nft_compat: suppress comment match
netfilter: ecache: don't use nf_conn spinlock
netfilter: cttimeout: use option structure
netfilter: ctnetlink: use dump structure instead of raw args
Kevin Mitchell (1):
netfilter: conntrack: mark UDP zero checksum as CHECKSUM_UNNECESSARY
Nicolas Dichtel (2):
netfilter: nfqueue: enable to get skb->priority
nfqueue: enable to set skb->priority
Pablo Neira Ayuso (1):
netfilter: nft_cmp: optimize comparison for 16-bytes
include/linux/netfilter.h | 1 +
include/linux/netfilter/nf_conntrack_pptp.h | 38 ++++---
include/net/netfilter/nf_conntrack_acct.h | 1 -
include/net/netfilter/nf_conntrack_ecache.h | 15 +--
include/net/netfilter/nf_conntrack_extend.h | 18 +---
include/net/netfilter/nf_conntrack_labels.h | 3 -
include/net/netfilter/nf_conntrack_seqadj.h | 3 -
include/net/netfilter/nf_conntrack_timeout.h | 20 ++--
include/net/netfilter/nf_conntrack_timestamp.h | 13 ---
include/net/netfilter/nf_tables_core.h | 9 ++
include/uapi/linux/netfilter/nfnetlink_queue.h | 1 +
net/ipv4/netfilter/nf_nat_pptp.c | 24 ++---
net/netfilter/nf_conntrack_acct.c | 19 ----
net/netfilter/nf_conntrack_core.c | 94 +++---------------
net/netfilter/nf_conntrack_ecache.c | 47 +++------
net/netfilter/nf_conntrack_extend.c | 132 ++++++++++++++-----------
net/netfilter/nf_conntrack_helper.c | 17 ----
net/netfilter/nf_conntrack_labels.c | 20 +---
net/netfilter/nf_conntrack_netlink.c | 36 ++++---
net/netfilter/nf_conntrack_pptp.c | 60 ++++-------
net/netfilter/nf_conntrack_proto_udp.c | 4 +-
net/netfilter/nf_conntrack_seqadj.c | 16 ---
net/netfilter/nf_conntrack_timeout.c | 50 +++-------
net/netfilter/nf_conntrack_timestamp.c | 20 ----
net/netfilter/nf_nat_core.c | 28 +-----
net/netfilter/nf_synproxy_core.c | 24 +----
net/netfilter/nf_tables_core.c | 16 +++
net/netfilter/nfnetlink_cttimeout.c | 11 ++-
net/netfilter/nfnetlink_queue.c | 13 +++
net/netfilter/nft_cmp.c | 102 ++++++++++++++++++-
net/netfilter/nft_compat.c | 9 ++
net/netfilter/nft_exthdr.c | 96 +++++++++++++++++-
net/sched/act_ct.c | 13 ---
33 files changed, 449 insertions(+), 524 deletions(-)
next reply other threads:[~2022-02-09 13:36 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-09 13:36 Pablo Neira Ayuso [this message]
2022-02-09 13:36 ` [PATCH net-next 01/14] netfilter: conntrack: mark UDP zero checksum as CHECKSUM_UNNECESSARY Pablo Neira Ayuso
2022-02-10 5:50 ` patchwork-bot+netdevbpf
2022-02-16 14:10 ` Gal Pressman
2022-02-16 15:28 ` Florian Westphal
2022-02-16 16:04 ` Pablo Neira Ayuso
2022-02-16 18:52 ` Gal Pressman
2022-02-16 19:26 ` Florian Westphal
2022-02-09 13:36 ` [PATCH net-next 02/14] netfilter: nfqueue: enable to get skb->priority Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 03/14] netfilter: conntrack: make all extensions 8-byte alignned Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 04/14] netfilter: conntrack: move extension sizes into core Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 05/14] netfilter: conntrack: handle ->destroy hook via nat_ops instead Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 06/14] netfilter: conntrack: remove extension register api Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 07/14] netfilter: conntrack: pptp: use single option structure Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 08/14] netfilter: exthdr: add support for tcp option removal Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 09/14] netfilter: nft_compat: suppress comment match Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 10/14] netfilter: ecache: don't use nf_conn spinlock Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 11/14] netfilter: cttimeout: use option structure Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 12/14] netfilter: nft_cmp: optimize comparison for 16-bytes Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 13/14] nfqueue: enable to set skb->priority Pablo Neira Ayuso
2022-02-09 13:36 ` [PATCH net-next 14/14] netfilter: ctnetlink: use dump structure instead of raw args Pablo Neira Ayuso
-- strict thread matches above, loose matches on Subject: below --
2025-01-16 17:18 [PATCH net-next 00/14] Netfilter updates for net-next Pablo Neira Ayuso
2024-11-15 13:31 Pablo Neira Ayuso
2021-04-18 21:04 Pablo Neira Ayuso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220209133616.165104-1-pablo@netfilter.org \
--to=pablo@netfilter.org \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).