Merge tag 'sunxi-fixes-for-4.8' of https://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / net / netfilter / nft_log.c
CommitLineData
96518518 1/*
ef1f7df9 2 * Copyright (c) 2008-2009 Patrick McHardy <kaber@trash.net>
09d27b88 3 * Copyright (c) 2012-2014 Pablo Neira Ayuso <pablo@netfilter.org>
96518518
PM
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Development of this code funded by Astaro AG (http://www.astaro.com/)
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/netlink.h>
16#include <linux/netfilter.h>
17#include <linux/netfilter/nf_tables.h>
18#include <net/netfilter/nf_tables.h>
19#include <net/netfilter/nf_log.h>
20#include <linux/netdevice.h>
21
22static const char *nft_log_null_prefix = "";
23
24struct nft_log {
25 struct nf_loginfo loginfo;
26 char *prefix;
96518518
PM
27};
28
29static void nft_log_eval(const struct nft_expr *expr,
a55e22e9 30 struct nft_regs *regs,
96518518
PM
31 const struct nft_pktinfo *pkt)
32{
33 const struct nft_log *priv = nft_expr_priv(expr);
96518518 34
88182a0e 35 nf_log_packet(pkt->net, pkt->pf, pkt->hook, pkt->skb, pkt->in,
96518518
PM
36 pkt->out, &priv->loginfo, "%s", priv->prefix);
37}
38
39static const struct nla_policy nft_log_policy[NFTA_LOG_MAX + 1] = {
40 [NFTA_LOG_GROUP] = { .type = NLA_U16 },
41 [NFTA_LOG_PREFIX] = { .type = NLA_STRING },
42 [NFTA_LOG_SNAPLEN] = { .type = NLA_U32 },
43 [NFTA_LOG_QTHRESHOLD] = { .type = NLA_U16 },
09d27b88
PNA
44 [NFTA_LOG_LEVEL] = { .type = NLA_U32 },
45 [NFTA_LOG_FLAGS] = { .type = NLA_U32 },
96518518
PM
46};
47
48static int nft_log_init(const struct nft_ctx *ctx,
49 const struct nft_expr *expr,
50 const struct nlattr * const tb[])
51{
52 struct nft_log *priv = nft_expr_priv(expr);
53 struct nf_loginfo *li = &priv->loginfo;
54 const struct nlattr *nla;
c2d9a429
LZ
55 int err;
56
57 li->type = NF_LOG_TYPE_LOG;
58 if (tb[NFTA_LOG_LEVEL] != NULL &&
59 tb[NFTA_LOG_GROUP] != NULL)
60 return -EINVAL;
61 if (tb[NFTA_LOG_GROUP] != NULL)
62 li->type = NF_LOG_TYPE_ULOG;
96518518 63
96518518
PM
64 nla = tb[NFTA_LOG_PREFIX];
65 if (nla != NULL) {
66 priv->prefix = kmalloc(nla_len(nla) + 1, GFP_KERNEL);
67 if (priv->prefix == NULL)
68 return -ENOMEM;
69 nla_strlcpy(priv->prefix, nla, nla_len(nla) + 1);
09d27b88 70 } else {
96518518 71 priv->prefix = (char *)nft_log_null_prefix;
09d27b88 72 }
96518518 73
09d27b88
PNA
74 switch (li->type) {
75 case NF_LOG_TYPE_LOG:
76 if (tb[NFTA_LOG_LEVEL] != NULL) {
77 li->u.log.level =
5cbfda20 78 ntohl(nla_get_be32(tb[NFTA_LOG_LEVEL]));
09d27b88 79 } else {
a81b2ce8 80 li->u.log.level = LOGLEVEL_WARNING;
09d27b88 81 }
1bc4e013
LZ
82 if (li->u.log.level > LOGLEVEL_DEBUG) {
83 err = -EINVAL;
84 goto err1;
85 }
86
09d27b88
PNA
87 if (tb[NFTA_LOG_FLAGS] != NULL) {
88 li->u.log.logflags =
89 ntohl(nla_get_be32(tb[NFTA_LOG_FLAGS]));
90 }
91 break;
92 case NF_LOG_TYPE_ULOG:
96518518 93 li->u.ulog.group = ntohs(nla_get_be16(tb[NFTA_LOG_GROUP]));
09d27b88 94 if (tb[NFTA_LOG_SNAPLEN] != NULL) {
cc37c1ad 95 li->u.ulog.flags |= NF_LOG_F_COPY_LEN;
09d27b88
PNA
96 li->u.ulog.copy_len =
97 ntohl(nla_get_be32(tb[NFTA_LOG_SNAPLEN]));
98 }
99 if (tb[NFTA_LOG_QTHRESHOLD] != NULL) {
100 li->u.ulog.qthreshold =
101 ntohs(nla_get_be16(tb[NFTA_LOG_QTHRESHOLD]));
102 }
103 break;
96518518
PM
104 }
105
c2d9a429
LZ
106 err = nf_logger_find_get(ctx->afi->family, li->type);
107 if (err < 0)
108 goto err1;
109
110 return 0;
111
112err1:
113 if (priv->prefix != nft_log_null_prefix)
114 kfree(priv->prefix);
115 return err;
96518518
PM
116}
117
62472bce
PM
118static void nft_log_destroy(const struct nft_ctx *ctx,
119 const struct nft_expr *expr)
96518518
PM
120{
121 struct nft_log *priv = nft_expr_priv(expr);
85d30e24 122 struct nf_loginfo *li = &priv->loginfo;
96518518
PM
123
124 if (priv->prefix != nft_log_null_prefix)
125 kfree(priv->prefix);
85d30e24 126
f3bb5333 127 nf_logger_put(ctx->afi->family, li->type);
96518518
PM
128}
129
130static int nft_log_dump(struct sk_buff *skb, const struct nft_expr *expr)
131{
132 const struct nft_log *priv = nft_expr_priv(expr);
133 const struct nf_loginfo *li = &priv->loginfo;
134
135 if (priv->prefix != nft_log_null_prefix)
136 if (nla_put_string(skb, NFTA_LOG_PREFIX, priv->prefix))
137 goto nla_put_failure;
09d27b88
PNA
138 switch (li->type) {
139 case NF_LOG_TYPE_LOG:
140 if (nla_put_be32(skb, NFTA_LOG_LEVEL, htonl(li->u.log.level)))
96518518 141 goto nla_put_failure;
09d27b88
PNA
142
143 if (li->u.log.logflags) {
144 if (nla_put_be32(skb, NFTA_LOG_FLAGS,
145 htonl(li->u.log.logflags)))
146 goto nla_put_failure;
147 }
148 break;
149 case NF_LOG_TYPE_ULOG:
150 if (nla_put_be16(skb, NFTA_LOG_GROUP, htons(li->u.ulog.group)))
96518518 151 goto nla_put_failure;
09d27b88 152
cc37c1ad 153 if (li->u.ulog.flags & NF_LOG_F_COPY_LEN) {
09d27b88
PNA
154 if (nla_put_be32(skb, NFTA_LOG_SNAPLEN,
155 htonl(li->u.ulog.copy_len)))
156 goto nla_put_failure;
157 }
158 if (li->u.ulog.qthreshold) {
159 if (nla_put_be16(skb, NFTA_LOG_QTHRESHOLD,
160 htons(li->u.ulog.qthreshold)))
161 goto nla_put_failure;
162 }
163 break;
164 }
96518518
PM
165 return 0;
166
167nla_put_failure:
168 return -1;
169}
170
ef1f7df9
PM
171static struct nft_expr_type nft_log_type;
172static const struct nft_expr_ops nft_log_ops = {
173 .type = &nft_log_type,
96518518 174 .size = NFT_EXPR_SIZE(sizeof(struct nft_log)),
96518518
PM
175 .eval = nft_log_eval,
176 .init = nft_log_init,
177 .destroy = nft_log_destroy,
178 .dump = nft_log_dump,
ef1f7df9
PM
179};
180
181static struct nft_expr_type nft_log_type __read_mostly = {
182 .name = "log",
183 .ops = &nft_log_ops,
96518518
PM
184 .policy = nft_log_policy,
185 .maxattr = NFTA_LOG_MAX,
ef1f7df9 186 .owner = THIS_MODULE,
96518518
PM
187};
188
189static int __init nft_log_module_init(void)
190{
ef1f7df9 191 return nft_register_expr(&nft_log_type);
96518518
PM
192}
193
194static void __exit nft_log_module_exit(void)
195{
ef1f7df9 196 nft_unregister_expr(&nft_log_type);
96518518
PM
197}
198
199module_init(nft_log_module_init);
200module_exit(nft_log_module_exit);
201
202MODULE_LICENSE("GPL");
203MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
204MODULE_ALIAS_NFT_EXPR("log");