aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2014-06-18 13:38:25 -0400
committerPablo Neira Ayuso <pablo@netfilter.org>2014-06-27 07:20:13 -0400
commitfab4085f4e248b8a80bb1dadbbacb2bacd8017c3 (patch)
tree4d17c20935c24f77f08fe7807ce5a038d8a2cb13 /net/ipv6
parent83e96d443b372611adf19e4171d41deb1d8760cf (diff)
netfilter: log: nf_log_packet() as real unified interface
Before this patch, the nf_loginfo parameter specified the logging configuration in case the specified default logger was loaded. This patch updates the semantics of the nf_loginfo parameter in nf_log_packet() which now indicates the logger that you explicitly want to use. Thus, nf_log_packet() is exposed as an unified interface which internally routes the log message to the corresponding logger type by family. The module dependencies are expressed by the new nf_logger_find_get() and nf_logger_put() functions which bump the logger module refcount. Thus, you can not remove logger modules that are used by rules anymore. Another important effect of this change is that the family specific module is only loaded when required. Therefore, xt_LOG and nft_log will just trigger the autoload of the nf_log_{ip,ip6} modules according to the family. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/netfilter/nf_log_ipv6.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/net/ipv6/netfilter/nf_log_ipv6.c b/net/ipv6/netfilter/nf_log_ipv6.c
index 804060946d2b..7b17a0be93e7 100644
--- a/net/ipv6/netfilter/nf_log_ipv6.c
+++ b/net/ipv6/netfilter/nf_log_ipv6.c
@@ -338,12 +338,12 @@ fallback:
338 } 338 }
339} 339}
340 340
341void nf_log_ip6_packet(struct net *net, u_int8_t pf, 341static void nf_log_ip6_packet(struct net *net, u_int8_t pf,
342 unsigned int hooknum, const struct sk_buff *skb, 342 unsigned int hooknum, const struct sk_buff *skb,
343 const struct net_device *in, 343 const struct net_device *in,
344 const struct net_device *out, 344 const struct net_device *out,
345 const struct nf_loginfo *loginfo, 345 const struct nf_loginfo *loginfo,
346 const char *prefix) 346 const char *prefix)
347{ 347{
348 struct nf_log_buf *m; 348 struct nf_log_buf *m;
349 349
@@ -366,7 +366,6 @@ void nf_log_ip6_packet(struct net *net, u_int8_t pf,
366 366
367 nf_log_buf_close(m); 367 nf_log_buf_close(m);
368} 368}
369EXPORT_SYMBOL_GPL(nf_log_ip6_packet);
370 369
371static struct nf_logger nf_ip6_logger __read_mostly = { 370static struct nf_logger nf_ip6_logger __read_mostly = {
372 .name = "nf_log_ipv6", 371 .name = "nf_log_ipv6",
@@ -415,3 +414,4 @@ module_exit(nf_log_ipv6_exit);
415MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>"); 414MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
416MODULE_DESCRIPTION("Netfilter IPv4 packet logging"); 415MODULE_DESCRIPTION("Netfilter IPv4 packet logging");
417MODULE_LICENSE("GPL"); 416MODULE_LICENSE("GPL");
417MODULE_ALIAS_NF_LOGGER(AF_INET6, 0);