* [PATCH] netfilter: remove CONFIG_NF_CT_ACCT
@ 2009-11-06 9:00 Changli Gao
2009-11-06 14:57 ` Patrick McHardy
0 siblings, 1 reply; 6+ messages in thread
From: Changli Gao @ 2009-11-06 9:00 UTC (permalink / raw)
To: Patrick McHardy; +Cc: netfilter-devel, xiaosuo, Krzysztof Piotr Oledzki
remove CONFIG_NF_CT_ACCT
Accounting can now be enabled/disabled without kernel recompilation.
Currently used only to set a default value for a feature that is also
controlled by a kernel/module/sysfs/sysctl parameter.
Signed-off-by: Changli Gao <xiaosuo@gmail.com>
----
Documentation/feature-removal-schedule.txt | 9 ---------
net/netfilter/Kconfig | 22 ----------------------
net/netfilter/nf_conntrack_acct.c | 10 ----------
net/netfilter/nf_conntrack_netlink.c | 2 --
4 files changed, 43 deletions(-)
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
index 634d14a..5dfe7ec 100644
--- a/net/netfilter/Kconfig
+++ b/net/netfilter/Kconfig
@@ -40,27 +40,6 @@ config NF_CONNTRACK
if NF_CONNTRACK
-config NF_CT_ACCT
- bool "Connection tracking flow accounting"
- depends on NETFILTER_ADVANCED
- help
- If this option is enabled, the connection tracking code will
- keep per-flow packet and byte counters.
-
- Those counters can be used for flow-based accounting or the
- `connbytes' match.
-
- Please note that currently this option only sets a default state.
- You may change it at boot time with nf_conntrack.acct=0/1 kernel
- parameter or by loading the nf_conntrack module with acct=0/1.
-
- You may also disable/enable it on a running system with:
- sysctl net.netfilter.nf_conntrack_acct=0/1
-
- This option will be removed in 2.6.29.
-
- If unsure, say `N'.
-
config NF_CONNTRACK_MARK
bool 'Connection mark tracking support'
depends on NETFILTER_ADVANCED
@@ -557,7 +536,6 @@ config NETFILTER_XT_MATCH_CONNBYTES
tristate '"connbytes" per-connection counter match support'
depends on NF_CONNTRACK
depends on NETFILTER_ADVANCED
- select NF_CT_ACCT
help
This option adds a `connbytes' match, which allows you to match the
number of bytes and/or packets for each direction within a connection.
diff --git a/net/netfilter/nf_conntrack_acct.c b/net/netfilter/nf_conntrack_acct.c
index 4a1d94a..bc25451 100644
--- a/net/netfilter/nf_conntrack_acct.c
+++ b/net/netfilter/nf_conntrack_acct.c
@@ -16,11 +16,7 @@
#include <net/netfilter/nf_conntrack_extend.h>
#include <net/netfilter/nf_conntrack_acct.h>
-#ifdef CONFIG_NF_CT_ACCT
-#define NF_CT_ACCT_DEFAULT 1
-#else
#define NF_CT_ACCT_DEFAULT 0
-#endif
static int nf_ct_acct __read_mostly = NF_CT_ACCT_DEFAULT;
@@ -114,12 +110,6 @@ int nf_conntrack_acct_init(struct net *net)
net->ct.sysctl_acct = nf_ct_acct;
if (net_eq(net, &init_net)) {
-#ifdef CONFIG_NF_CT_ACCT
- printk(KERN_WARNING "CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use\n");
- printk(KERN_WARNING "nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or\n");
- printk(KERN_WARNING "sysctl net.netfilter.nf_conntrack_acct=1 to enable it.\n");
-#endif
-
ret = nf_ct_extend_register(&acct_extend);
if (ret < 0) {
printk(KERN_ERR "nf_conntrack_acct: Unable to register extension\n");
diff --git a/net/netfilter/nf_conntrack_netlink.c b/net/netfilter/nf_conntrack_netlink.c
index 59d8064..d679562 100644
--- a/net/netfilter/nf_conntrack_netlink.c
+++ b/net/netfilter/nf_conntrack_netlink.c
@@ -430,11 +430,9 @@ ctnetlink_nlmsg_size(const struct nf_conn *ct)
+ 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
+ nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
+ nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
-#ifdef CONFIG_NF_CT_ACCT
+ 2 * nla_total_size(0) /* CTA_COUNTERS_ORIG|REPL */
+ 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_PACKETS */
+ 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_BYTES */
-#endif
+ nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
+ nla_total_size(0) /* CTA_PROTOINFO */
+ nla_total_size(0) /* CTA_HELP */
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index bc693ff..a4a8bf8 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@ -345,15 +345,6 @@ Who: Johannes Berg <johannes@sipsolutions.net>
---------------------------
-What: CONFIG_NF_CT_ACCT
-When: 2.6.29
-Why: Accounting can now be enabled/disabled without kernel recompilation.
- Currently used only to set a default value for a feature that is also
- controlled by a kernel/module/sysfs/sysctl parameter.
-Who: Krzysztof Piotr Oledzki <ole@ans.pl>
-
----------------------------
-
What: sysfs ui for changing p4-clockmod parameters
When: September 2009
Why: See commits 129f8ae9b1b5be94517da76009ea956e89104ce8 and
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH] netfilter: remove CONFIG_NF_CT_ACCT
@ 2009-10-22 14:26 Jiri Kosina
2009-10-27 12:39 ` Jiri Kosina
0 siblings, 1 reply; 6+ messages in thread
From: Jiri Kosina @ 2009-10-22 14:26 UTC (permalink / raw)
To: Krzysztof Piotr Oledzki, Patrick McHardy, David S. Miller
Cc: linux-kernel, netfilter-devel, netfilter, coreteam
I can see several issues with CONFIG_NF_CT_ACCT and I think it should be
removed for the following reasons:
1) the netlink seems broken for the (CONFIG_NF_CT_ACCT unset &&
net.netfilter.nf_conntrack_acct set) scenario. In such case,
ctnetlink_nlmsg_size() seems to miscompute the size of the message, as
the CTA_COUNTERS_* are not counted in at all. Seems quite serious on a
first glance.
2) It has been marked as deprecated for quite some time, and was supposed
to be removed in 2.6.29, but is apparently still with us.
3) Spits confusing warnings into dmesg.
All this since commit 584015727a3b ("netfilter: accounting rework:
ct_extend + 64bit counters (v4)").
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
---
Documentation/feature-removal-schedule.txt | 9 ---------
Documentation/kernel-parameters.txt | 3 +--
net/netfilter/Kconfig | 22 ----------------------
net/netfilter/nf_conntrack_acct.c | 10 ----------
net/netfilter/nf_conntrack_netlink.c | 2 --
5 files changed, 1 insertions(+), 45 deletions(-)
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index bc693ff..a4a8bf8 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@ -345,15 +345,6 @@ Who: Johannes Berg <johannes@sipsolutions.net>
---------------------------
-What: CONFIG_NF_CT_ACCT
-When: 2.6.29
-Why: Accounting can now be enabled/disabled without kernel recompilation.
- Currently used only to set a default value for a feature that is also
- controlled by a kernel/module/sysfs/sysctl parameter.
-Who: Krzysztof Piotr Oledzki <ole@ans.pl>
-
----------------------------
-
What: sysfs ui for changing p4-clockmod parameters
When: September 2009
Why: See commits 129f8ae9b1b5be94517da76009ea956e89104ce8 and
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 9107b38..f307b55 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -1534,8 +1534,7 @@ and is between 256 and 4096 characters. It is defined in the file
[NETFILTER] Enable connection tracking flow accounting
0 to disable accounting
1 to enable accounting
- Default value depends on CONFIG_NF_CT_ACCT that is
- going to be removed in 2.6.29.
+ Default value is 0.
nfsaddrs= [NFS]
See Documentation/filesystems/nfsroot.txt.
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
index 634d14a..5dfe7ec 100644
--- a/net/netfilter/Kconfig
+++ b/net/netfilter/Kconfig
@@ -40,27 +40,6 @@ config NF_CONNTRACK
if NF_CONNTRACK
-config NF_CT_ACCT
- bool "Connection tracking flow accounting"
- depends on NETFILTER_ADVANCED
- help
- If this option is enabled, the connection tracking code will
- keep per-flow packet and byte counters.
-
- Those counters can be used for flow-based accounting or the
- `connbytes' match.
-
- Please note that currently this option only sets a default state.
- You may change it at boot time with nf_conntrack.acct=0/1 kernel
- parameter or by loading the nf_conntrack module with acct=0/1.
-
- You may also disable/enable it on a running system with:
- sysctl net.netfilter.nf_conntrack_acct=0/1
-
- This option will be removed in 2.6.29.
-
- If unsure, say `N'.
-
config NF_CONNTRACK_MARK
bool 'Connection mark tracking support'
depends on NETFILTER_ADVANCED
@@ -557,7 +536,6 @@ config NETFILTER_XT_MATCH_CONNBYTES
tristate '"connbytes" per-connection counter match support'
depends on NF_CONNTRACK
depends on NETFILTER_ADVANCED
- select NF_CT_ACCT
help
This option adds a `connbytes' match, which allows you to match the
number of bytes and/or packets for each direction within a connection.
diff --git a/net/netfilter/nf_conntrack_acct.c b/net/netfilter/nf_conntrack_acct.c
index 4a1d94a..bc25451 100644
--- a/net/netfilter/nf_conntrack_acct.c
+++ b/net/netfilter/nf_conntrack_acct.c
@@ -16,11 +16,7 @@
#include <net/netfilter/nf_conntrack_extend.h>
#include <net/netfilter/nf_conntrack_acct.h>
-#ifdef CONFIG_NF_CT_ACCT
-#define NF_CT_ACCT_DEFAULT 1
-#else
#define NF_CT_ACCT_DEFAULT 0
-#endif
static int nf_ct_acct __read_mostly = NF_CT_ACCT_DEFAULT;
@@ -114,12 +110,6 @@ int nf_conntrack_acct_init(struct net *net)
net->ct.sysctl_acct = nf_ct_acct;
if (net_eq(net, &init_net)) {
-#ifdef CONFIG_NF_CT_ACCT
- printk(KERN_WARNING "CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use\n");
- printk(KERN_WARNING "nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or\n");
- printk(KERN_WARNING "sysctl net.netfilter.nf_conntrack_acct=1 to enable it.\n");
-#endif
-
ret = nf_ct_extend_register(&acct_extend);
if (ret < 0) {
printk(KERN_ERR "nf_conntrack_acct: Unable to register extension\n");
diff --git a/net/netfilter/nf_conntrack_netlink.c b/net/netfilter/nf_conntrack_netlink.c
index 59d8064..d679562 100644
--- a/net/netfilter/nf_conntrack_netlink.c
+++ b/net/netfilter/nf_conntrack_netlink.c
@@ -430,11 +430,9 @@ ctnetlink_nlmsg_size(const struct nf_conn *ct)
+ 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
+ nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
+ nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
-#ifdef CONFIG_NF_CT_ACCT
+ 2 * nla_total_size(0) /* CTA_COUNTERS_ORIG|REPL */
+ 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_PACKETS */
+ 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_BYTES */
-#endif
+ nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
+ nla_total_size(0) /* CTA_PROTOINFO */
+ nla_total_size(0) /* CTA_HELP */
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] netfilter: remove CONFIG_NF_CT_ACCT
2009-10-22 14:26 Jiri Kosina
@ 2009-10-27 12:39 ` Jiri Kosina
2009-10-27 13:12 ` Krzysztof Oledzki
2009-10-27 13:17 ` David Miller
0 siblings, 2 replies; 6+ messages in thread
From: Jiri Kosina @ 2009-10-27 12:39 UTC (permalink / raw)
To: Krzysztof Piotr Oledzki, Patrick McHardy, David S. Miller
Cc: linux-kernel, netfilter-devel, netfilter, coreteam
On Thu, 22 Oct 2009, Jiri Kosina wrote:
> I can see several issues with CONFIG_NF_CT_ACCT and I think it should be
> removed for the following reasons:
>
> 1) the netlink seems broken for the (CONFIG_NF_CT_ACCT unset &&
> net.netfilter.nf_conntrack_acct set) scenario. In such case,
> ctnetlink_nlmsg_size() seems to miscompute the size of the message, as
> the CTA_COUNTERS_* are not counted in at all. Seems quite serious on a
> first glance.
> 2) It has been marked as deprecated for quite some time, and was supposed
> to be removed in 2.6.29, but is apparently still with us.
> 3) Spits confusing warnings into dmesg.
>
> All this since commit 584015727a3b ("netfilter: accounting rework:
> ct_extend + 64bit counters (v4)").
>
> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
> ---
> Documentation/feature-removal-schedule.txt | 9 ---------
> Documentation/kernel-parameters.txt | 3 +--
> net/netfilter/Kconfig | 22 ----------------------
> net/netfilter/nf_conntrack_acct.c | 10 ----------
> net/netfilter/nf_conntrack_netlink.c | 2 --
> 5 files changed, 1 insertions(+), 45 deletions(-)
Has this one been lost? (aka "ping").
--
Jiri Kosina
SUSE Labs, Novell Inc.
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] netfilter: remove CONFIG_NF_CT_ACCT
2009-10-27 12:39 ` Jiri Kosina
@ 2009-10-27 13:12 ` Krzysztof Oledzki
2009-10-27 13:17 ` David Miller
1 sibling, 0 replies; 6+ messages in thread
From: Krzysztof Oledzki @ 2009-10-27 13:12 UTC (permalink / raw)
To: Jiri Kosina
Cc: Patrick McHardy, David S. Miller, linux-kernel, netfilter-devel,
netfilter, coreteam
[-- Attachment #1: Type: TEXT/PLAIN, Size: 1914 bytes --]
On Tue, 27 Oct 2009, Jiri Kosina wrote:
> On Thu, 22 Oct 2009, Jiri Kosina wrote:
>
>> I can see several issues with CONFIG_NF_CT_ACCT and I think it should be
>> removed for the following reasons:
>>
>> 1) the netlink seems broken for the (CONFIG_NF_CT_ACCT unset &&
>> net.netfilter.nf_conntrack_acct set) scenario. In such case,
>> ctnetlink_nlmsg_size() seems to miscompute the size of the message, as
>> the CTA_COUNTERS_* are not counted in at all. Seems quite serious on a
>> first glance.
Indeed, but this code was introduced very much later:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff_plain;h=2732c4e45bb67006fdc9ae6669be866762711ab5
>> 2) It has been marked as deprecated for quite some time, and was supposed
>> to be removed in 2.6.29, but is apparently still with us.
Because it was decided that it cannot be simply removed so my initial
patch was rejected.
>> 3) Spits confusing warnings into dmesg.
Yep. :|
>> All this since commit 584015727a3b ("netfilter: accounting rework:
>> ct_extend + 64bit counters (v4)").
>>
>> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
>> ---
>> Documentation/feature-removal-schedule.txt | 9 ---------
>> Documentation/kernel-parameters.txt | 3 +--
>> net/netfilter/Kconfig | 22 ----------------------
>> net/netfilter/nf_conntrack_acct.c | 10 ----------
>> net/netfilter/nf_conntrack_netlink.c | 2 --
>> 5 files changed, 1 insertions(+), 45 deletions(-)
>
> Has this one been lost? (aka "ping").
-ETOBUSY :|
Also, please read http://lkml.org/lkml/2009/10/15/158
It would be great if you are able to provide a patch that addresses the
remark about connbytes.
If not, I hope I should be able to deal with this during the weekend,
eventually. ;)
Best regards,
Krzysztof Olędzki
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] netfilter: remove CONFIG_NF_CT_ACCT
2009-10-27 12:39 ` Jiri Kosina
2009-10-27 13:12 ` Krzysztof Oledzki
@ 2009-10-27 13:17 ` David Miller
1 sibling, 0 replies; 6+ messages in thread
From: David Miller @ 2009-10-27 13:17 UTC (permalink / raw)
To: jkosina; +Cc: ole, kaber, linux-kernel, netfilter-devel, netfilter, coreteam
From: Jiri Kosina <jkosina@suse.cz>
Date: Tue, 27 Oct 2009 13:39:17 +0100 (CET)
> Has this one been lost? (aka "ping").
Patrick is offline for person reasons for a while, we're
arranging to have some of the backlog handled by some folks
until he is able to return to duty.
But that process hasn't begun yet, please be patient.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-11-06 14:57 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-06 9:00 [PATCH] netfilter: remove CONFIG_NF_CT_ACCT Changli Gao
2009-11-06 14:57 ` Patrick McHardy
-- strict thread matches above, loose matches on Subject: below --
2009-10-22 14:26 Jiri Kosina
2009-10-27 12:39 ` Jiri Kosina
2009-10-27 13:12 ` Krzysztof Oledzki
2009-10-27 13:17 ` 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.