Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bcmlinux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Broadcom
bcmlinux
Commits
f24afe75
Commit
f24afe75
authored
4 years ago
by
Oskar Viljasaar
Browse files
Options
Downloads
Patches
Plain Diff
Import openwrt hack patch 647-netfilter-flow-acct.patch
parent
51541436
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/net/netfilter/nf_flow_table.h
+2
-0
2 additions, 0 deletions
include/net/netfilter/nf_flow_table.h
net/netfilter/nf_flow_table_core.c
+17
-0
17 additions, 0 deletions
net/netfilter/nf_flow_table_core.c
net/netfilter/nf_flow_table_ip.c
+3
-0
3 additions, 0 deletions
net/netfilter/nf_flow_table_ip.c
with
22 additions
and
0 deletions
include/net/netfilter/nf_flow_table.h
+
2
−
0
View file @
f24afe75
...
@@ -163,6 +163,8 @@ struct nf_flow_table_hw {
...
@@ -163,6 +163,8 @@ struct nf_flow_table_hw {
int
nf_flow_table_hw_register
(
const
struct
nf_flow_table_hw
*
offload
);
int
nf_flow_table_hw_register
(
const
struct
nf_flow_table_hw
*
offload
);
void
nf_flow_table_hw_unregister
(
const
struct
nf_flow_table_hw
*
offload
);
void
nf_flow_table_hw_unregister
(
const
struct
nf_flow_table_hw
*
offload
);
void
nf_flow_table_acct
(
struct
flow_offload
*
flow
,
struct
sk_buff
*
skb
,
int
dir
);
extern
struct
work_struct
nf_flow_offload_hw_work
;
extern
struct
work_struct
nf_flow_offload_hw_work
;
#define MODULE_ALIAS_NF_FLOWTABLE(family) \
#define MODULE_ALIAS_NF_FLOWTABLE(family) \
...
...
This diff is collapsed.
Click to expand it.
net/netfilter/nf_flow_table_core.c
+
17
−
0
View file @
f24afe75
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
#include
<net/netfilter/nf_conntrack.h>
#include
<net/netfilter/nf_conntrack.h>
#include
<net/netfilter/nf_conntrack_core.h>
#include
<net/netfilter/nf_conntrack_core.h>
#include
<net/netfilter/nf_conntrack_tuple.h>
#include
<net/netfilter/nf_conntrack_tuple.h>
#include
<net/netfilter/nf_conntrack_acct.h>
struct
flow_offload_entry
{
struct
flow_offload_entry
{
struct
flow_offload
flow
;
struct
flow_offload
flow
;
...
@@ -149,6 +150,22 @@ void flow_offload_free(struct flow_offload *flow)
...
@@ -149,6 +150,22 @@ void flow_offload_free(struct flow_offload *flow)
}
}
EXPORT_SYMBOL_GPL
(
flow_offload_free
);
EXPORT_SYMBOL_GPL
(
flow_offload_free
);
void
nf_flow_table_acct
(
struct
flow_offload
*
flow
,
struct
sk_buff
*
skb
,
int
dir
)
{
struct
flow_offload_entry
*
entry
;
struct
nf_conn_acct
*
acct
;
entry
=
container_of
(
flow
,
struct
flow_offload_entry
,
flow
);
acct
=
nf_conn_acct_find
(
entry
->
ct
);
if
(
acct
)
{
struct
nf_conn_counter
*
counter
=
acct
->
counter
;
atomic64_inc
(
&
counter
[
dir
].
packets
);
atomic64_add
(
skb
->
len
,
&
counter
[
dir
].
bytes
);
}
}
EXPORT_SYMBOL_GPL
(
nf_flow_table_acct
);
static
u32
flow_offload_hash
(
const
void
*
data
,
u32
len
,
u32
seed
)
static
u32
flow_offload_hash
(
const
void
*
data
,
u32
len
,
u32
seed
)
{
{
const
struct
flow_offload_tuple
*
tuple
=
data
;
const
struct
flow_offload_tuple
*
tuple
=
data
;
...
...
This diff is collapsed.
Click to expand it.
net/netfilter/nf_flow_table_ip.c
+
3
−
0
View file @
f24afe75
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
#include
<net/ip6_route.h>
#include
<net/ip6_route.h>
#include
<net/neighbour.h>
#include
<net/neighbour.h>
#include
<net/netfilter/nf_flow_table.h>
#include
<net/netfilter/nf_flow_table.h>
/* For layer 4 checksum field offset. */
/* For layer 4 checksum field offset. */
#include
<linux/tcp.h>
#include
<linux/tcp.h>
#include
<linux/udp.h>
#include
<linux/udp.h>
...
@@ -268,6 +269,7 @@ nf_flow_offload_ip_hook(void *priv, struct sk_buff *skb,
...
@@ -268,6 +269,7 @@ nf_flow_offload_ip_hook(void *priv, struct sk_buff *skb,
skb
->
dev
=
outdev
;
skb
->
dev
=
outdev
;
nexthop
=
rt_nexthop
(
rt
,
flow
->
tuplehash
[
!
dir
].
tuple
.
src_v4
.
s_addr
);
nexthop
=
rt_nexthop
(
rt
,
flow
->
tuplehash
[
!
dir
].
tuple
.
src_v4
.
s_addr
);
skb_dst_set_noref
(
skb
,
&
rt
->
dst
);
skb_dst_set_noref
(
skb
,
&
rt
->
dst
);
nf_flow_table_acct
(
flow
,
skb
,
dir
);
neigh_xmit
(
NEIGH_ARP_TABLE
,
outdev
,
&
nexthop
,
skb
);
neigh_xmit
(
NEIGH_ARP_TABLE
,
outdev
,
&
nexthop
,
skb
);
return
NF_STOLEN
;
return
NF_STOLEN
;
...
@@ -489,6 +491,7 @@ nf_flow_offload_ipv6_hook(void *priv, struct sk_buff *skb,
...
@@ -489,6 +491,7 @@ nf_flow_offload_ipv6_hook(void *priv, struct sk_buff *skb,
skb
->
dev
=
outdev
;
skb
->
dev
=
outdev
;
nexthop
=
rt6_nexthop
(
rt
,
&
flow
->
tuplehash
[
!
dir
].
tuple
.
src_v6
);
nexthop
=
rt6_nexthop
(
rt
,
&
flow
->
tuplehash
[
!
dir
].
tuple
.
src_v6
);
skb_dst_set_noref
(
skb
,
&
rt
->
dst
);
skb_dst_set_noref
(
skb
,
&
rt
->
dst
);
nf_flow_table_acct
(
flow
,
skb
,
dir
);
neigh_xmit
(
NEIGH_ND_TABLE
,
outdev
,
nexthop
,
skb
);
neigh_xmit
(
NEIGH_ND_TABLE
,
outdev
,
nexthop
,
skb
);
return
NF_STOLEN
;
return
NF_STOLEN
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment