Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
ee0caa79
Commit
ee0caa79
authored
Mar 16, 2011
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-next-2.6
parents
f942dc25
400b871b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
9 deletions
+27
-9
net/netfilter/xt_AUDIT.c
net/netfilter/xt_AUDIT.c
+27
-9
No files found.
net/netfilter/xt_AUDIT.c
View file @
ee0caa79
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#include <linux/if_arp.h>
#include <linux/if_arp.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/xt_AUDIT.h>
#include <linux/netfilter/xt_AUDIT.h>
#include <linux/netfilter_bridge/ebtables.h>
#include <net/ipv6.h>
#include <net/ipv6.h>
#include <net/ip.h>
#include <net/ip.h>
...
@@ -168,6 +169,13 @@ audit_tg(struct sk_buff *skb, const struct xt_action_param *par)
...
@@ -168,6 +169,13 @@ audit_tg(struct sk_buff *skb, const struct xt_action_param *par)
return
XT_CONTINUE
;
return
XT_CONTINUE
;
}
}
static
unsigned
int
audit_tg_ebt
(
struct
sk_buff
*
skb
,
const
struct
xt_action_param
*
par
)
{
audit_tg
(
skb
,
par
);
return
EBT_CONTINUE
;
}
static
int
audit_tg_check
(
const
struct
xt_tgchk_param
*
par
)
static
int
audit_tg_check
(
const
struct
xt_tgchk_param
*
par
)
{
{
const
struct
xt_audit_info
*
info
=
par
->
targinfo
;
const
struct
xt_audit_info
*
info
=
par
->
targinfo
;
...
@@ -181,23 +189,33 @@ static int audit_tg_check(const struct xt_tgchk_param *par)
...
@@ -181,23 +189,33 @@ static int audit_tg_check(const struct xt_tgchk_param *par)
return
0
;
return
0
;
}
}
static
struct
xt_target
audit_tg_reg
__read_mostly
=
{
static
struct
xt_target
audit_tg_reg
[]
__read_mostly
=
{
.
name
=
"AUDIT"
,
{
.
family
=
NFPROTO_UNSPEC
,
.
name
=
"AUDIT"
,
.
target
=
audit_tg
,
.
family
=
NFPROTO_UNSPEC
,
.
targetsize
=
sizeof
(
struct
xt_audit_info
),
.
target
=
audit_tg
,
.
checkentry
=
audit_tg_check
,
.
targetsize
=
sizeof
(
struct
xt_audit_info
),
.
me
=
THIS_MODULE
,
.
checkentry
=
audit_tg_check
,
.
me
=
THIS_MODULE
,
},
{
.
name
=
"AUDIT"
,
.
family
=
NFPROTO_BRIDGE
,
.
target
=
audit_tg_ebt
,
.
targetsize
=
sizeof
(
struct
xt_audit_info
),
.
checkentry
=
audit_tg_check
,
.
me
=
THIS_MODULE
,
},
};
};
static
int
__init
audit_tg_init
(
void
)
static
int
__init
audit_tg_init
(
void
)
{
{
return
xt_register_target
(
&
audit_tg_reg
);
return
xt_register_target
s
(
audit_tg_reg
,
ARRAY_SIZE
(
audit_tg_reg
)
);
}
}
static
void
__exit
audit_tg_exit
(
void
)
static
void
__exit
audit_tg_exit
(
void
)
{
{
xt_unregister_target
(
&
audit_tg_reg
);
xt_unregister_target
s
(
audit_tg_reg
,
ARRAY_SIZE
(
audit_tg_reg
)
);
}
}
module_init
(
audit_tg_init
);
module_init
(
audit_tg_init
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment