blob: 5f1be5ba35595abb3e96a4d7c9e16fe2c8f4bd8c [file] [log] [blame]
Harald Welte0597f262005-08-09 19:58:39 -07001/*
2 * This is a module which is used for logging packets to userspace via
3 * nfetlink.
4 *
5 * (C) 2005 by Harald Welte <laforge@netfilter.org>
Patrick McHardyf229f6c2013-04-06 15:24:29 +02006 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Harald Welte0597f262005-08-09 19:58:39 -07007 *
8 * Based on the old ipv4-only ipt_ULOG.c:
9 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
Harald Welte0597f262005-08-09 19:58:39 -070014 */
15#include <linux/module.h>
16#include <linux/skbuff.h>
Pablo Neira Ayusoe035edd2012-12-17 01:12:00 +010017#include <linux/if_arp.h>
Harald Welte0597f262005-08-09 19:58:39 -070018#include <linux/init.h>
19#include <linux/ip.h>
20#include <linux/ipv6.h>
21#include <linux/netdevice.h>
22#include <linux/netfilter.h>
Hong zhi guo573ce262013-03-27 06:47:04 +000023#include <net/netlink.h>
Harald Welte0597f262005-08-09 19:58:39 -070024#include <linux/netfilter/nfnetlink.h>
25#include <linux/netfilter/nfnetlink_log.h>
26#include <linux/spinlock.h>
27#include <linux/sysctl.h>
28#include <linux/proc_fs.h>
29#include <linux/security.h>
30#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Harald Welte0597f262005-08-09 19:58:39 -070032#include <net/sock.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080033#include <net/netfilter/nf_log.h>
Gao feng9368a532013-03-24 23:50:45 +000034#include <net/netns/generic.h>
Patrick McHardyd9e15002008-11-18 12:16:52 +010035#include <net/netfilter/nfnetlink_log.h>
Harald Welte0597f262005-08-09 19:58:39 -070036
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Harald Welte0597f262005-08-09 19:58:39 -070038
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +020039#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Harald Weltefbcd9232005-08-09 20:22:10 -070040#include "../bridge/br_private.h"
41#endif
42
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080043#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
Eric Leblond2c6764b2009-02-18 15:29:49 +010044#define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
Harald Welte0597f262005-08-09 19:58:39 -070045#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
Florian Westphalc1e7dc92014-10-23 10:36:07 +020046/* max packet size is limited by 16-bit struct nfattr nfa_len field */
47#define NFULNL_COPY_RANGE_MAX (0xFFFF - NLA_HDRLEN)
Harald Welte0597f262005-08-09 19:58:39 -070048
49#define PRINTR(x, args...) do { if (net_ratelimit()) \
50 printk(x, ## args); } while (0);
51
Harald Welte0597f262005-08-09 19:58:39 -070052struct nfulnl_instance {
53 struct hlist_node hlist; /* global list of instances */
54 spinlock_t lock;
55 atomic_t use; /* use count */
56
57 unsigned int qlen; /* number of nlmsgs in skb */
58 struct sk_buff *skb; /* pre-allocatd skb */
Harald Welte0597f262005-08-09 19:58:39 -070059 struct timer_list timer;
Gao feng9368a532013-03-24 23:50:45 +000060 struct net *net;
Eric W. Biederman9eea9512012-05-25 10:42:54 -060061 struct user_namespace *peer_user_ns; /* User namespace of the peer process */
Eric W. Biederman15e47302012-09-07 20:12:54 +000062 int peer_portid; /* PORTID of the peer process */
Harald Welte0597f262005-08-09 19:58:39 -070063
64 /* configurable parameters */
65 unsigned int flushtimeout; /* timeout until queue flush */
66 unsigned int nlbufsiz; /* netlink buffer allocation size */
67 unsigned int qthreshold; /* threshold of the queue */
68 u_int32_t copy_range;
Harald Welte0af5f6c2006-03-20 17:15:11 -080069 u_int32_t seq; /* instance-local sequential counter */
Harald Welte0597f262005-08-09 19:58:39 -070070 u_int16_t group_num; /* number of this queue */
Harald Welte0af5f6c2006-03-20 17:15:11 -080071 u_int16_t flags;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080072 u_int8_t copy_mode;
Eric Dumazetbed1be22010-06-09 18:14:58 +020073 struct rcu_head rcu;
Harald Welte0597f262005-08-09 19:58:39 -070074};
75
Harald Welte0597f262005-08-09 19:58:39 -070076#define INSTANCE_BUCKETS 16
Harald Welte0597f262005-08-09 19:58:39 -070077
Gao feng9368a532013-03-24 23:50:45 +000078static int nfnl_log_net_id __read_mostly;
79
80struct nfnl_log_net {
81 spinlock_t instances_lock;
82 struct hlist_head instance_table[INSTANCE_BUCKETS];
83 atomic_t global_seq;
84};
85
86static struct nfnl_log_net *nfnl_log_pernet(struct net *net)
87{
88 return net_generic(net, nfnl_log_net_id);
89}
90
Harald Welte0597f262005-08-09 19:58:39 -070091static inline u_int8_t instance_hashfn(u_int16_t group_num)
92{
93 return ((group_num & 0xff) % INSTANCE_BUCKETS);
94}
95
96static struct nfulnl_instance *
Gao feng9368a532013-03-24 23:50:45 +000097__instance_lookup(struct nfnl_log_net *log, u_int16_t group_num)
Harald Welte0597f262005-08-09 19:58:39 -070098{
99 struct hlist_head *head;
Harald Welte0597f262005-08-09 19:58:39 -0700100 struct nfulnl_instance *inst;
101
Gao feng9368a532013-03-24 23:50:45 +0000102 head = &log->instance_table[instance_hashfn(group_num)];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800103 hlist_for_each_entry_rcu(inst, head, hlist) {
Harald Welte0597f262005-08-09 19:58:39 -0700104 if (inst->group_num == group_num)
105 return inst;
106 }
107 return NULL;
108}
109
110static inline void
111instance_get(struct nfulnl_instance *inst)
112{
113 atomic_inc(&inst->use);
114}
115
116static struct nfulnl_instance *
Gao feng9368a532013-03-24 23:50:45 +0000117instance_lookup_get(struct nfnl_log_net *log, u_int16_t group_num)
Harald Welte0597f262005-08-09 19:58:39 -0700118{
119 struct nfulnl_instance *inst;
120
Eric Dumazetbed1be22010-06-09 18:14:58 +0200121 rcu_read_lock_bh();
Gao feng9368a532013-03-24 23:50:45 +0000122 inst = __instance_lookup(log, group_num);
Eric Dumazetf5c54402010-06-14 16:15:23 +0200123 if (inst && !atomic_inc_not_zero(&inst->use))
124 inst = NULL;
Eric Dumazetbed1be22010-06-09 18:14:58 +0200125 rcu_read_unlock_bh();
Harald Welte0597f262005-08-09 19:58:39 -0700126
127 return inst;
128}
129
Eric Dumazetbed1be22010-06-09 18:14:58 +0200130static void nfulnl_instance_free_rcu(struct rcu_head *head)
131{
Gao feng9368a532013-03-24 23:50:45 +0000132 struct nfulnl_instance *inst =
133 container_of(head, struct nfulnl_instance, rcu);
134
135 put_net(inst->net);
136 kfree(inst);
Eric Dumazetbed1be22010-06-09 18:14:58 +0200137 module_put(THIS_MODULE);
138}
139
Harald Welte0597f262005-08-09 19:58:39 -0700140static void
141instance_put(struct nfulnl_instance *inst)
142{
Eric Dumazetbed1be22010-06-09 18:14:58 +0200143 if (inst && atomic_dec_and_test(&inst->use))
144 call_rcu_bh(&inst->rcu, nfulnl_instance_free_rcu);
Harald Welte0597f262005-08-09 19:58:39 -0700145}
146
147static void nfulnl_timer(unsigned long data);
148
149static struct nfulnl_instance *
Gao feng9368a532013-03-24 23:50:45 +0000150instance_create(struct net *net, u_int16_t group_num,
151 int portid, struct user_namespace *user_ns)
Harald Welte0597f262005-08-09 19:58:39 -0700152{
153 struct nfulnl_instance *inst;
Gao feng9368a532013-03-24 23:50:45 +0000154 struct nfnl_log_net *log = nfnl_log_pernet(net);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800155 int err;
Harald Welte0597f262005-08-09 19:58:39 -0700156
Gao feng9368a532013-03-24 23:50:45 +0000157 spin_lock_bh(&log->instances_lock);
158 if (__instance_lookup(log, group_num)) {
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800159 err = -EEXIST;
Harald Welte0597f262005-08-09 19:58:39 -0700160 goto out_unlock;
161 }
162
Harald Welte10dfdc62005-11-03 19:20:07 +0100163 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800164 if (!inst) {
165 err = -ENOMEM;
Harald Welte0597f262005-08-09 19:58:39 -0700166 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800167 }
Harald Welte0597f262005-08-09 19:58:39 -0700168
Michal Miroslawaace57e2007-09-28 14:45:27 -0700169 if (!try_module_get(THIS_MODULE)) {
170 kfree(inst);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800171 err = -EAGAIN;
Michal Miroslawaace57e2007-09-28 14:45:27 -0700172 goto out_unlock;
173 }
174
Harald Welte0597f262005-08-09 19:58:39 -0700175 INIT_HLIST_NODE(&inst->hlist);
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800176 spin_lock_init(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700177 /* needs to be two, since we _put() after creation */
178 atomic_set(&inst->use, 2);
179
Patrick McHardye6f689d2007-03-23 11:16:30 -0700180 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
Harald Welte0597f262005-08-09 19:58:39 -0700181
Gao feng9368a532013-03-24 23:50:45 +0000182 inst->net = get_net(net);
Eric W. Biederman9eea9512012-05-25 10:42:54 -0600183 inst->peer_user_ns = user_ns;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000184 inst->peer_portid = portid;
Harald Welte0597f262005-08-09 19:58:39 -0700185 inst->group_num = group_num;
186
187 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
188 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
189 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
190 inst->copy_mode = NFULNL_COPY_PACKET;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700191 inst->copy_range = NFULNL_COPY_RANGE_MAX;
Harald Welte0597f262005-08-09 19:58:39 -0700192
Eric Dumazetf5c54402010-06-14 16:15:23 +0200193 hlist_add_head_rcu(&inst->hlist,
Gao feng9368a532013-03-24 23:50:45 +0000194 &log->instance_table[instance_hashfn(group_num)]);
Harald Welte0597f262005-08-09 19:58:39 -0700195
Gao feng9368a532013-03-24 23:50:45 +0000196
197 spin_unlock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700198
199 return inst;
200
Harald Welte0597f262005-08-09 19:58:39 -0700201out_unlock:
Gao feng9368a532013-03-24 23:50:45 +0000202 spin_unlock_bh(&log->instances_lock);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800203 return ERR_PTR(err);
Harald Welte0597f262005-08-09 19:58:39 -0700204}
205
Michal Miroslawe3567062007-09-28 14:44:21 -0700206static void __nfulnl_flush(struct nfulnl_instance *inst);
Harald Welte0597f262005-08-09 19:58:39 -0700207
Eric Dumazetf5c54402010-06-14 16:15:23 +0200208/* called with BH disabled */
Harald Welte0597f262005-08-09 19:58:39 -0700209static void
Patrick McHardy9afdb002007-03-23 11:12:50 -0700210__instance_destroy(struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700211{
212 /* first pull it out of the global list */
Eric Dumazetf5c54402010-06-14 16:15:23 +0200213 hlist_del_rcu(&inst->hlist);
Harald Welte0597f262005-08-09 19:58:39 -0700214
Harald Welte0597f262005-08-09 19:58:39 -0700215 /* then flush all pending packets from skb */
216
Eric Dumazetf5c54402010-06-14 16:15:23 +0200217 spin_lock(&inst->lock);
218
219 /* lockless readers wont be able to use us */
220 inst->copy_mode = NFULNL_COPY_DISABLED;
221
Michal Miroslawe3567062007-09-28 14:44:21 -0700222 if (inst->skb)
223 __nfulnl_flush(inst);
Eric Dumazetf5c54402010-06-14 16:15:23 +0200224 spin_unlock(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700225
226 /* and finally put the refcount */
227 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700228}
229
230static inline void
Gao feng9368a532013-03-24 23:50:45 +0000231instance_destroy(struct nfnl_log_net *log,
232 struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700233{
Gao feng9368a532013-03-24 23:50:45 +0000234 spin_lock_bh(&log->instances_lock);
Patrick McHardy9afdb002007-03-23 11:12:50 -0700235 __instance_destroy(inst);
Gao feng9368a532013-03-24 23:50:45 +0000236 spin_unlock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700237}
238
239static int
240nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
241 unsigned int range)
242{
243 int status = 0;
244
245 spin_lock_bh(&inst->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800246
Harald Welte0597f262005-08-09 19:58:39 -0700247 switch (mode) {
248 case NFULNL_COPY_NONE:
249 case NFULNL_COPY_META:
250 inst->copy_mode = mode;
251 inst->copy_range = 0;
252 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800253
Harald Welte0597f262005-08-09 19:58:39 -0700254 case NFULNL_COPY_PACKET:
255 inst->copy_mode = mode;
Florian Westphalc1e7dc92014-10-23 10:36:07 +0200256 if (range == 0)
257 range = NFULNL_COPY_RANGE_MAX;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700258 inst->copy_range = min_t(unsigned int,
259 range, NFULNL_COPY_RANGE_MAX);
Harald Welte0597f262005-08-09 19:58:39 -0700260 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800261
Harald Welte0597f262005-08-09 19:58:39 -0700262 default:
263 status = -EINVAL;
264 break;
265 }
266
267 spin_unlock_bh(&inst->lock);
268
269 return status;
270}
271
272static int
273nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
274{
275 int status;
276
277 spin_lock_bh(&inst->lock);
278 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
279 status = -ERANGE;
280 else if (nlbufsiz > 131072)
281 status = -ERANGE;
282 else {
283 inst->nlbufsiz = nlbufsiz;
284 status = 0;
285 }
286 spin_unlock_bh(&inst->lock);
287
288 return status;
289}
290
291static int
292nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
293{
294 spin_lock_bh(&inst->lock);
295 inst->flushtimeout = timeout;
296 spin_unlock_bh(&inst->lock);
297
298 return 0;
299}
300
301static int
302nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
303{
304 spin_lock_bh(&inst->lock);
305 inst->qthreshold = qthresh;
306 spin_unlock_bh(&inst->lock);
307
308 return 0;
309}
310
Harald Welte0af5f6c2006-03-20 17:15:11 -0800311static int
312nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
313{
314 spin_lock_bh(&inst->lock);
Patrick McHardyee433532006-05-19 02:17:18 -0700315 inst->flags = flags;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800316 spin_unlock_bh(&inst->lock);
317
318 return 0;
319}
320
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700321static struct sk_buff *
Gao fengafff14f2013-09-23 19:20:56 +0800322nfulnl_alloc_skb(struct net *net, u32 peer_portid, unsigned int inst_size,
323 unsigned int pkt_size)
Harald Welte0597f262005-08-09 19:58:39 -0700324{
325 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800326 unsigned int n;
Harald Welte0597f262005-08-09 19:58:39 -0700327
Harald Welte0597f262005-08-09 19:58:39 -0700328 /* alloc skb which should be big enough for a whole multipart
329 * message. WARNING: has to be <= 128k due to slab restrictions */
330
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800331 n = max(inst_size, pkt_size);
Gao fengafff14f2013-09-23 19:20:56 +0800332 skb = nfnetlink_alloc_skb(net, n, peer_portid, GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700333 if (!skb) {
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800334 if (n > pkt_size) {
335 /* try to allocate only as much as we need for current
336 * packet */
Harald Welte0597f262005-08-09 19:58:39 -0700337
Gao fengafff14f2013-09-23 19:20:56 +0800338 skb = nfnetlink_alloc_skb(net, pkt_size,
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000339 peer_portid, GFP_ATOMIC);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800340 if (!skb)
Joe Perches0a9ee812011-08-29 14:17:25 -0700341 pr_err("nfnetlink_log: can't even alloc %u bytes\n",
342 pkt_size);
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800343 }
Harald Welte0597f262005-08-09 19:58:39 -0700344 }
345
346 return skb;
347}
348
Houcheng Linb51d3fa2014-10-23 10:36:08 +0200349static void
Harald Welte0597f262005-08-09 19:58:39 -0700350__nfulnl_send(struct nfulnl_instance *inst)
351{
David S. Millerd550d092012-06-26 21:34:03 -0700352 if (inst->qlen > 1) {
353 struct nlmsghdr *nlh = nlmsg_put(inst->skb, 0, 0,
354 NLMSG_DONE,
355 sizeof(struct nfgenmsg),
356 0);
Houcheng Linb51d3fa2014-10-23 10:36:08 +0200357 if (WARN_ONCE(!nlh, "bad nlskb size: %u, tailroom %d\n",
358 inst->skb->len, skb_tailroom(inst->skb))) {
359 kfree_skb(inst->skb);
David S. Millerd550d092012-06-26 21:34:03 -0700360 goto out;
Houcheng Linb51d3fa2014-10-23 10:36:08 +0200361 }
David S. Millerd550d092012-06-26 21:34:03 -0700362 }
Houcheng Linb51d3fa2014-10-23 10:36:08 +0200363 nfnetlink_unicast(inst->skb, inst->net, inst->peer_portid,
364 MSG_DONTWAIT);
365out:
Harald Welte0597f262005-08-09 19:58:39 -0700366 inst->qlen = 0;
367 inst->skb = NULL;
Harald Welte0597f262005-08-09 19:58:39 -0700368}
369
Michal Miroslawe3567062007-09-28 14:44:21 -0700370static void
371__nfulnl_flush(struct nfulnl_instance *inst)
372{
373 /* timer holds a reference */
374 if (del_timer(&inst->timer))
375 instance_put(inst);
376 if (inst->skb)
377 __nfulnl_send(inst);
378}
379
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700380static void
381nfulnl_timer(unsigned long data)
Harald Welte0597f262005-08-09 19:58:39 -0700382{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800383 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
Harald Welte0597f262005-08-09 19:58:39 -0700384
Harald Welte0597f262005-08-09 19:58:39 -0700385 spin_lock_bh(&inst->lock);
Michal Miroslaw370e6a82007-03-23 11:12:21 -0700386 if (inst->skb)
387 __nfulnl_send(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700388 spin_unlock_bh(&inst->lock);
Michal Miroslaw05f7b7b2007-03-04 15:58:40 -0800389 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700390}
391
Harald Welte0af5f6c2006-03-20 17:15:11 -0800392/* This is an inline function, we don't really care about a long
393 * list of arguments */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800394static inline int
Gao feng9368a532013-03-24 23:50:45 +0000395__build_packet_message(struct nfnl_log_net *log,
396 struct nfulnl_instance *inst,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800397 const struct sk_buff *skb,
Harald Welte0597f262005-08-09 19:58:39 -0700398 unsigned int data_len,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200399 u_int8_t pf,
Harald Welte0597f262005-08-09 19:58:39 -0700400 unsigned int hooknum,
401 const struct net_device *indev,
402 const struct net_device *outdev,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100403 const char *prefix, unsigned int plen)
Harald Welte0597f262005-08-09 19:58:39 -0700404{
Harald Welte0597f262005-08-09 19:58:39 -0700405 struct nfulnl_msg_packet_hdr pmsg;
406 struct nlmsghdr *nlh;
407 struct nfgenmsg *nfmsg;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700408 sk_buff_data_t old_tail = inst->skb->tail;
Eric Dumazet0626af32012-09-04 07:49:03 +0000409 struct sock *sk;
Bob Hockney0c36b482012-12-16 19:34:11 +0100410 const unsigned char *hwhdrp;
Harald Welte0597f262005-08-09 19:58:39 -0700411
David S. Millerd550d092012-06-26 21:34:03 -0700412 nlh = nlmsg_put(inst->skb, 0, 0,
Harald Welte0597f262005-08-09 19:58:39 -0700413 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
David S. Millerd550d092012-06-26 21:34:03 -0700414 sizeof(struct nfgenmsg), 0);
415 if (!nlh)
416 return -1;
417 nfmsg = nlmsg_data(nlh);
Harald Welte0597f262005-08-09 19:58:39 -0700418 nfmsg->nfgen_family = pf;
419 nfmsg->version = NFNETLINK_V0;
420 nfmsg->res_id = htons(inst->group_num);
421
Dan Carpentere4d091d2013-08-01 12:36:57 +0300422 memset(&pmsg, 0, sizeof(pmsg));
Al Virofebf0a42006-11-03 00:59:17 -0800423 pmsg.hw_protocol = skb->protocol;
Harald Welte0597f262005-08-09 19:58:39 -0700424 pmsg.hook = hooknum;
425
David S. Miller1db20a52012-03-29 23:31:16 -0400426 if (nla_put(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg))
427 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700428
David S. Miller1db20a52012-03-29 23:31:16 -0400429 if (prefix &&
430 nla_put(inst->skb, NFULA_PREFIX, plen, prefix))
431 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700432
433 if (indev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200434#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Miller1db20a52012-03-29 23:31:16 -0400435 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
436 htonl(indev->ifindex)))
437 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700438#else
439 if (pf == PF_BRIDGE) {
440 /* Case 1: outdev is physical input device, we need to
441 * look for bridge group (when called from
442 * netfilter_bridge) */
David S. Miller1db20a52012-03-29 23:31:16 -0400443 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
444 htonl(indev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700445 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000446 /* rcu_read_lock()ed by nf_hook_slow or nf_log_packet */
David S. Miller1db20a52012-03-29 23:31:16 -0400447 nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
448 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
449 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700450 } else {
451 /* Case 2: indev is bridge group, we need to look for
452 * physical device (when called from ipv4) */
David S. Miller1db20a52012-03-29 23:31:16 -0400453 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
454 htonl(indev->ifindex)))
455 goto nla_put_failure;
456 if (skb->nf_bridge && skb->nf_bridge->physindev &&
457 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
458 htonl(skb->nf_bridge->physindev->ifindex)))
459 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700460 }
461#endif
Harald Welte0597f262005-08-09 19:58:39 -0700462 }
463
464 if (outdev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200465#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Miller1db20a52012-03-29 23:31:16 -0400466 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
467 htonl(outdev->ifindex)))
468 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700469#else
470 if (pf == PF_BRIDGE) {
471 /* Case 1: outdev is physical output device, we need to
472 * look for bridge group (when called from
473 * netfilter_bridge) */
David S. Miller1db20a52012-03-29 23:31:16 -0400474 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
475 htonl(outdev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700476 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000477 /* rcu_read_lock()ed by nf_hook_slow or nf_log_packet */
David S. Miller1db20a52012-03-29 23:31:16 -0400478 nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
479 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
480 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700481 } else {
482 /* Case 2: indev is a bridge group, we need to look
483 * for physical device (when called from ipv4) */
David S. Miller1db20a52012-03-29 23:31:16 -0400484 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
485 htonl(outdev->ifindex)))
486 goto nla_put_failure;
487 if (skb->nf_bridge && skb->nf_bridge->physoutdev &&
488 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
489 htonl(skb->nf_bridge->physoutdev->ifindex)))
490 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700491 }
492#endif
Harald Welte0597f262005-08-09 19:58:39 -0700493 }
494
David S. Miller1db20a52012-03-29 23:31:16 -0400495 if (skb->mark &&
496 nla_put_be32(inst->skb, NFULA_MARK, htonl(skb->mark)))
497 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700498
Nicolas Cavallari2c38de42011-06-16 17:27:04 +0200499 if (indev && skb->dev &&
500 skb->mac_header != skb->network_header) {
Harald Welte0597f262005-08-09 19:58:39 -0700501 struct nfulnl_msg_packet_hw phw;
Dan Carpentere4d091d2013-08-01 12:36:57 +0300502 int len;
503
504 memset(&phw, 0, sizeof(phw));
505 len = dev_parse_header(skb, phw.hw_addr);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700506 if (len > 0) {
507 phw.hw_addrlen = htons(len);
David S. Miller1db20a52012-03-29 23:31:16 -0400508 if (nla_put(inst->skb, NFULA_HWADDR, sizeof(phw), &phw))
509 goto nla_put_failure;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700510 }
Harald Welte0597f262005-08-09 19:58:39 -0700511 }
512
Eric Leblond72961ec2008-07-21 10:02:35 -0700513 if (indev && skb_mac_header_was_set(skb)) {
Patrick McHardy2dba62c2012-08-19 10:16:08 +0000514 if (nla_put_be16(inst->skb, NFULA_HWTYPE, htons(skb->dev->type)) ||
David S. Miller1db20a52012-03-29 23:31:16 -0400515 nla_put_be16(inst->skb, NFULA_HWLEN,
Bob Hockney0c36b482012-12-16 19:34:11 +0100516 htons(skb->dev->hard_header_len)))
517 goto nla_put_failure;
518
519 hwhdrp = skb_mac_header(skb);
520
521 if (skb->dev->type == ARPHRD_SIT)
522 hwhdrp -= ETH_HLEN;
523
524 if (hwhdrp >= skb->head &&
525 nla_put(inst->skb, NFULA_HWHEADER,
526 skb->dev->hard_header_len, hwhdrp))
David S. Miller1db20a52012-03-29 23:31:16 -0400527 goto nla_put_failure;
Eric Leblond72961ec2008-07-21 10:02:35 -0700528 }
529
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700530 if (skb->tstamp.tv64) {
Harald Welte0597f262005-08-09 19:58:39 -0700531 struct nfulnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700532 struct timeval tv = ktime_to_timeval(skb->tstamp);
533 ts.sec = cpu_to_be64(tv.tv_sec);
534 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte0597f262005-08-09 19:58:39 -0700535
David S. Miller1db20a52012-03-29 23:31:16 -0400536 if (nla_put(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts))
537 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700538 }
539
540 /* UID */
Eric Dumazet0626af32012-09-04 07:49:03 +0000541 sk = skb->sk;
542 if (sk && sk->sk_state != TCP_TIME_WAIT) {
543 read_lock_bh(&sk->sk_callback_lock);
544 if (sk->sk_socket && sk->sk_socket->file) {
545 struct file *file = sk->sk_socket->file;
Linus Torvalds437589a2012-10-02 11:11:09 -0700546 const struct cred *cred = file->f_cred;
547 struct user_namespace *user_ns = inst->peer_user_ns;
548 __be32 uid = htonl(from_kuid_munged(user_ns, cred->fsuid));
549 __be32 gid = htonl(from_kgid_munged(user_ns, cred->fsgid));
Eric Dumazet0626af32012-09-04 07:49:03 +0000550 read_unlock_bh(&sk->sk_callback_lock);
David S. Miller1db20a52012-03-29 23:31:16 -0400551 if (nla_put_be32(inst->skb, NFULA_UID, uid) ||
552 nla_put_be32(inst->skb, NFULA_GID, gid))
553 goto nla_put_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700554 } else
Eric Dumazet0626af32012-09-04 07:49:03 +0000555 read_unlock_bh(&sk->sk_callback_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700556 }
557
Harald Welte0af5f6c2006-03-20 17:15:11 -0800558 /* local sequence number */
David S. Miller1db20a52012-03-29 23:31:16 -0400559 if ((inst->flags & NFULNL_CFG_F_SEQ) &&
560 nla_put_be32(inst->skb, NFULA_SEQ, htonl(inst->seq++)))
561 goto nla_put_failure;
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800562
Harald Welte0af5f6c2006-03-20 17:15:11 -0800563 /* global sequence number */
David S. Miller1db20a52012-03-29 23:31:16 -0400564 if ((inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) &&
565 nla_put_be32(inst->skb, NFULA_SEQ_GLOBAL,
Gao feng9368a532013-03-24 23:50:45 +0000566 htonl(atomic_inc_return(&log->global_seq))))
David S. Miller1db20a52012-03-29 23:31:16 -0400567 goto nla_put_failure;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800568
Harald Welte0597f262005-08-09 19:58:39 -0700569 if (data_len) {
Patrick McHardydf6fb862007-09-28 14:37:03 -0700570 struct nlattr *nla;
571 int size = nla_attr_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700572
Patrick McHardydf6fb862007-09-28 14:37:03 -0700573 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
Harald Welte0597f262005-08-09 19:58:39 -0700574 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
David S. Millerd550d092012-06-26 21:34:03 -0700575 return -1;
Harald Welte0597f262005-08-09 19:58:39 -0700576 }
577
Patrick McHardydf6fb862007-09-28 14:37:03 -0700578 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
579 nla->nla_type = NFULA_PAYLOAD;
580 nla->nla_len = size;
Harald Welte0597f262005-08-09 19:58:39 -0700581
Patrick McHardydf6fb862007-09-28 14:37:03 -0700582 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
Harald Welte0597f262005-08-09 19:58:39 -0700583 BUG();
584 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800585
Harald Welte0597f262005-08-09 19:58:39 -0700586 nlh->nlmsg_len = inst->skb->tail - old_tail;
587 return 0;
588
Patrick McHardydf6fb862007-09-28 14:37:03 -0700589nla_put_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700590 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
591 return -1;
592}
593
594#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
595
596static struct nf_loginfo default_loginfo = {
597 .type = NF_LOG_TYPE_ULOG,
598 .u = {
599 .ulog = {
600 .copy_len = 0xffff,
601 .group = 0,
602 .qthreshold = 1,
603 },
604 },
605};
606
607/* log handler for internal netfilter logging api */
Eric Leblond5f7340e2008-11-04 14:21:08 +0100608void
Hans Schillstrom8cdb46d2013-05-15 01:23:45 +0000609nfulnl_log_packet(struct net *net,
610 u_int8_t pf,
Harald Welte0597f262005-08-09 19:58:39 -0700611 unsigned int hooknum,
612 const struct sk_buff *skb,
613 const struct net_device *in,
614 const struct net_device *out,
615 const struct nf_loginfo *li_user,
616 const char *prefix)
617{
618 unsigned int size, data_len;
619 struct nfulnl_instance *inst;
620 const struct nf_loginfo *li;
621 unsigned int qthreshold;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100622 unsigned int plen;
Gao feng9368a532013-03-24 23:50:45 +0000623 struct nfnl_log_net *log = nfnl_log_pernet(net);
Harald Welte0597f262005-08-09 19:58:39 -0700624
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800625 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
Harald Welte0597f262005-08-09 19:58:39 -0700626 li = li_user;
627 else
628 li = &default_loginfo;
629
Gao feng9368a532013-03-24 23:50:45 +0000630 inst = instance_lookup_get(log, li->u.ulog.group);
Harald Welte0597f262005-08-09 19:58:39 -0700631 if (!inst)
Harald Welte0597f262005-08-09 19:58:39 -0700632 return;
Harald Welte0597f262005-08-09 19:58:39 -0700633
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100634 plen = 0;
635 if (prefix)
Patrick McHardy881dbfe2007-03-06 20:24:35 -0800636 plen = strlen(prefix) + 1;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100637
Harald Welte0597f262005-08-09 19:58:39 -0700638 /* FIXME: do we want to make the size calculation conditional based on
639 * what is actually present? way more branches and checks, but more
640 * memory efficient... */
Hong zhi guo573ce262013-03-27 06:47:04 +0000641 size = nlmsg_total_size(sizeof(struct nfgenmsg))
Patrick McHardydf6fb862007-09-28 14:37:03 -0700642 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
643 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
644 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200645#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700646 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
647 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700648#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700649 + nla_total_size(sizeof(u_int32_t)) /* mark */
650 + nla_total_size(sizeof(u_int32_t)) /* uid */
Patrick McHardy76aa1ce2007-12-17 22:41:52 -0800651 + nla_total_size(sizeof(u_int32_t)) /* gid */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700652 + nla_total_size(plen) /* prefix */
653 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
Florian Westphal9dfa1df2014-10-23 10:36:06 +0200654 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp))
655 + nla_total_size(sizeof(struct nfgenmsg)); /* NLMSG_DONE */
Harald Welte0597f262005-08-09 19:58:39 -0700656
Pablo Neira Ayusoeeff9be2009-05-27 15:49:11 +0200657 if (in && skb_mac_header_was_set(skb)) {
658 size += nla_total_size(skb->dev->hard_header_len)
659 + nla_total_size(sizeof(u_int16_t)) /* hwtype */
660 + nla_total_size(sizeof(u_int16_t)); /* hwlen */
661 }
662
Harald Welte0597f262005-08-09 19:58:39 -0700663 spin_lock_bh(&inst->lock);
664
Harald Welte0af5f6c2006-03-20 17:15:11 -0800665 if (inst->flags & NFULNL_CFG_F_SEQ)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700666 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800667 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700668 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800669
Harald Welte0597f262005-08-09 19:58:39 -0700670 qthreshold = inst->qthreshold;
671 /* per-rule qthreshold overrides per-instance */
Eric Leblond5ca431f2009-02-18 15:29:23 +0100672 if (li->u.ulog.qthreshold)
673 if (qthreshold > li->u.ulog.qthreshold)
674 qthreshold = li->u.ulog.qthreshold;
675
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800676
Harald Welte0597f262005-08-09 19:58:39 -0700677 switch (inst->copy_mode) {
678 case NFULNL_COPY_META:
679 case NFULNL_COPY_NONE:
680 data_len = 0;
681 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800682
Harald Welte0597f262005-08-09 19:58:39 -0700683 case NFULNL_COPY_PACKET:
Florian Westphalc1e7dc92014-10-23 10:36:07 +0200684 if (inst->copy_range > skb->len)
Harald Welte0597f262005-08-09 19:58:39 -0700685 data_len = skb->len;
686 else
687 data_len = inst->copy_range;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800688
Patrick McHardydf6fb862007-09-28 14:37:03 -0700689 size += nla_total_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700690 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800691
Eric Dumazetf5c54402010-06-14 16:15:23 +0200692 case NFULNL_COPY_DISABLED:
Harald Welte0597f262005-08-09 19:58:39 -0700693 default:
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700694 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700695 }
696
Florian Westphal9dfa1df2014-10-23 10:36:06 +0200697 if (inst->skb && size > skb_tailroom(inst->skb)) {
Harald Welte0597f262005-08-09 19:58:39 -0700698 /* either the queue len is too high or we don't have
699 * enough room in the skb left. flush to userspace. */
Michal Miroslawe3567062007-09-28 14:44:21 -0700700 __nfulnl_flush(inst);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700701 }
Harald Welte0597f262005-08-09 19:58:39 -0700702
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700703 if (!inst->skb) {
Gao fengafff14f2013-09-23 19:20:56 +0800704 inst->skb = nfulnl_alloc_skb(net, inst->peer_portid,
705 inst->nlbufsiz, size);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700706 if (!inst->skb)
Harald Welte0597f262005-08-09 19:58:39 -0700707 goto alloc_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700708 }
709
Harald Welte0597f262005-08-09 19:58:39 -0700710 inst->qlen++;
711
Gao feng9368a532013-03-24 23:50:45 +0000712 __build_packet_message(log, inst, skb, data_len, pf,
Florian Westphal82487792011-02-15 21:59:37 +0100713 hooknum, in, out, prefix, plen);
Harald Welte0597f262005-08-09 19:58:39 -0700714
Michal Miroslawd63b0432007-09-28 14:44:44 -0700715 if (inst->qlen >= qthreshold)
716 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700717 /* timer_pending always called within inst->lock, so there
718 * is no chance of a race here */
Michal Miroslawd63b0432007-09-28 14:44:44 -0700719 else if (!timer_pending(&inst->timer)) {
Harald Welte0597f262005-08-09 19:58:39 -0700720 instance_get(inst);
721 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
722 add_timer(&inst->timer);
723 }
Harald Welte0597f262005-08-09 19:58:39 -0700724
Michal Miroslawed32abe2007-03-04 15:58:15 -0800725unlock_and_release:
726 spin_unlock_bh(&inst->lock);
727 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700728 return;
729
730alloc_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700731 /* FIXME: statistics */
Michal Miroslawed32abe2007-03-04 15:58:15 -0800732 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700733}
Eric Leblond5f7340e2008-11-04 14:21:08 +0100734EXPORT_SYMBOL_GPL(nfulnl_log_packet);
Harald Welte0597f262005-08-09 19:58:39 -0700735
736static int
737nfulnl_rcv_nl_event(struct notifier_block *this,
738 unsigned long event, void *ptr)
739{
740 struct netlink_notify *n = ptr;
Gao feng9368a532013-03-24 23:50:45 +0000741 struct nfnl_log_net *log = nfnl_log_pernet(n->net);
Harald Welte0597f262005-08-09 19:58:39 -0700742
Patrick McHardydee58172009-11-06 17:04:00 +0100743 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte0597f262005-08-09 19:58:39 -0700744 int i;
745
Eric W. Biederman15e47302012-09-07 20:12:54 +0000746 /* destroy all instances for this portid */
Gao feng9368a532013-03-24 23:50:45 +0000747 spin_lock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700748 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800749 struct hlist_node *t2;
Harald Welte0597f262005-08-09 19:58:39 -0700750 struct nfulnl_instance *inst;
Gao feng9368a532013-03-24 23:50:45 +0000751 struct hlist_head *head = &log->instance_table[i];
Harald Welte0597f262005-08-09 19:58:39 -0700752
Sasha Levinb67bfe02013-02-27 17:06:00 -0800753 hlist_for_each_entry_safe(inst, t2, head, hlist) {
Gao feng9368a532013-03-24 23:50:45 +0000754 if (n->portid == inst->peer_portid)
Harald Welte0597f262005-08-09 19:58:39 -0700755 __instance_destroy(inst);
756 }
757 }
Gao feng9368a532013-03-24 23:50:45 +0000758 spin_unlock_bh(&log->instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700759 }
760 return NOTIFY_DONE;
761}
762
763static struct notifier_block nfulnl_rtnl_notifier = {
764 .notifier_call = nfulnl_rcv_nl_event,
765};
766
767static int
768nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200769 const struct nlmsghdr *nlh,
770 const struct nlattr * const nfqa[])
Harald Welte0597f262005-08-09 19:58:39 -0700771{
772 return -ENOTSUPP;
773}
774
Eric Leblondca735b32009-03-16 14:54:21 +0100775static struct nf_logger nfulnl_logger __read_mostly = {
Harald Welte0597f262005-08-09 19:58:39 -0700776 .name = "nfnetlink_log",
Pablo Neira Ayuso59628152014-06-18 19:24:30 +0200777 .type = NF_LOG_TYPE_ULOG,
Harald Welte0597f262005-08-09 19:58:39 -0700778 .logfn = &nfulnl_log_packet,
779 .me = THIS_MODULE,
780};
781
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700782static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
783 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
784 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
785 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
786 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
787 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
788 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
Harald Welte0597f262005-08-09 19:58:39 -0700789};
790
791static int
792nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200793 const struct nlmsghdr *nlh,
794 const struct nlattr * const nfula[])
Harald Welte0597f262005-08-09 19:58:39 -0700795{
David S. Millerd550d092012-06-26 21:34:03 -0700796 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte0597f262005-08-09 19:58:39 -0700797 u_int16_t group_num = ntohs(nfmsg->res_id);
798 struct nfulnl_instance *inst;
Patrick McHardyb7047a12008-03-10 16:44:13 -0700799 struct nfulnl_msg_config_cmd *cmd = NULL;
Gao feng30e0c6a2013-03-24 23:50:40 +0000800 struct net *net = sock_net(ctnl);
Gao feng9368a532013-03-24 23:50:45 +0000801 struct nfnl_log_net *log = nfnl_log_pernet(net);
Harald Welte0597f262005-08-09 19:58:39 -0700802 int ret = 0;
803
Patrick McHardyb7047a12008-03-10 16:44:13 -0700804 if (nfula[NFULA_CFG_CMD]) {
805 u_int8_t pf = nfmsg->nfgen_family;
806 cmd = nla_data(nfula[NFULA_CFG_CMD]);
807
808 /* Commands without queue context */
809 switch (cmd->command) {
810 case NFULNL_CFG_CMD_PF_BIND:
Gao feng30e0c6a2013-03-24 23:50:40 +0000811 return nf_log_bind_pf(net, pf, &nfulnl_logger);
Patrick McHardyb7047a12008-03-10 16:44:13 -0700812 case NFULNL_CFG_CMD_PF_UNBIND:
Gao feng30e0c6a2013-03-24 23:50:40 +0000813 nf_log_unbind_pf(net, pf);
Patrick McHardyb7047a12008-03-10 16:44:13 -0700814 return 0;
815 }
816 }
817
Gao feng9368a532013-03-24 23:50:45 +0000818 inst = instance_lookup_get(log, group_num);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000819 if (inst && inst->peer_portid != NETLINK_CB(skb).portid) {
Patrick McHardyc05063652007-12-17 22:39:55 -0800820 ret = -EPERM;
821 goto out_put;
822 }
823
Patrick McHardyb7047a12008-03-10 16:44:13 -0700824 if (cmd != NULL) {
Harald Welte0597f262005-08-09 19:58:39 -0700825 switch (cmd->command) {
826 case NFULNL_CFG_CMD_BIND:
827 if (inst) {
828 ret = -EBUSY;
829 goto out_put;
830 }
831
Gao feng9368a532013-03-24 23:50:45 +0000832 inst = instance_create(net, group_num,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000833 NETLINK_CB(skb).portid,
Patrick McHardye32123e2013-04-17 06:46:57 +0000834 sk_user_ns(NETLINK_CB(skb).sk));
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800835 if (IS_ERR(inst)) {
836 ret = PTR_ERR(inst);
Michal Miroslawf414c162007-03-23 11:11:31 -0700837 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700838 }
839 break;
840 case NFULNL_CFG_CMD_UNBIND:
841 if (!inst) {
842 ret = -ENODEV;
Michal Miroslawf414c162007-03-23 11:11:31 -0700843 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700844 }
845
Gao feng9368a532013-03-24 23:50:45 +0000846 instance_destroy(log, inst);
Alexey Dobriyana49c6502010-02-26 17:48:40 +0100847 goto out_put;
Harald Welte0597f262005-08-09 19:58:39 -0700848 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -0800849 ret = -ENOTSUPP;
Harald Welte0597f262005-08-09 19:58:39 -0700850 break;
851 }
Harald Welte0597f262005-08-09 19:58:39 -0700852 }
853
Patrick McHardydf6fb862007-09-28 14:37:03 -0700854 if (nfula[NFULA_CFG_MODE]) {
Harald Welte0597f262005-08-09 19:58:39 -0700855 struct nfulnl_msg_config_mode *params;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700856 params = nla_data(nfula[NFULA_CFG_MODE]);
Harald Welte0597f262005-08-09 19:58:39 -0700857
Patrick McHardyc05063652007-12-17 22:39:55 -0800858 if (!inst) {
859 ret = -ENODEV;
860 goto out;
861 }
Harald Welte0597f262005-08-09 19:58:39 -0700862 nfulnl_set_mode(inst, params->copy_mode,
Al Virod1208b92006-11-03 00:58:41 -0800863 ntohl(params->copy_range));
Harald Welte0597f262005-08-09 19:58:39 -0700864 }
865
Patrick McHardydf6fb862007-09-28 14:37:03 -0700866 if (nfula[NFULA_CFG_TIMEOUT]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800867 __be32 timeout = nla_get_be32(nfula[NFULA_CFG_TIMEOUT]);
Harald Welte0597f262005-08-09 19:58:39 -0700868
Patrick McHardyc05063652007-12-17 22:39:55 -0800869 if (!inst) {
870 ret = -ENODEV;
871 goto out;
872 }
Harald Welte0597f262005-08-09 19:58:39 -0700873 nfulnl_set_timeout(inst, ntohl(timeout));
874 }
875
Patrick McHardydf6fb862007-09-28 14:37:03 -0700876 if (nfula[NFULA_CFG_NLBUFSIZ]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800877 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]);
Harald Welte0597f262005-08-09 19:58:39 -0700878
Patrick McHardyc05063652007-12-17 22:39:55 -0800879 if (!inst) {
880 ret = -ENODEV;
881 goto out;
882 }
Harald Welte0597f262005-08-09 19:58:39 -0700883 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
884 }
885
Patrick McHardydf6fb862007-09-28 14:37:03 -0700886 if (nfula[NFULA_CFG_QTHRESH]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800887 __be32 qthresh = nla_get_be32(nfula[NFULA_CFG_QTHRESH]);
Harald Welte0597f262005-08-09 19:58:39 -0700888
Patrick McHardyc05063652007-12-17 22:39:55 -0800889 if (!inst) {
890 ret = -ENODEV;
891 goto out;
892 }
Harald Welte0597f262005-08-09 19:58:39 -0700893 nfulnl_set_qthresh(inst, ntohl(qthresh));
894 }
895
Patrick McHardydf6fb862007-09-28 14:37:03 -0700896 if (nfula[NFULA_CFG_FLAGS]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800897 __be16 flags = nla_get_be16(nfula[NFULA_CFG_FLAGS]);
Patrick McHardyc05063652007-12-17 22:39:55 -0800898
899 if (!inst) {
900 ret = -ENODEV;
901 goto out;
902 }
Patrick McHardyee433532006-05-19 02:17:18 -0700903 nfulnl_set_flags(inst, ntohs(flags));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800904 }
905
Harald Welte0597f262005-08-09 19:58:39 -0700906out_put:
907 instance_put(inst);
Michal Miroslawdd167042007-03-04 15:59:20 -0800908out:
Harald Welte0597f262005-08-09 19:58:39 -0700909 return ret;
910}
911
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700912static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
Harald Welte0597f262005-08-09 19:58:39 -0700913 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800914 .attr_count = NFULA_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700915 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700916 .attr_count = NFULA_CFG_MAX,
917 .policy = nfula_cfg_policy },
Harald Welte0597f262005-08-09 19:58:39 -0700918};
919
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700920static const struct nfnetlink_subsystem nfulnl_subsys = {
Harald Welte0597f262005-08-09 19:58:39 -0700921 .name = "log",
922 .subsys_id = NFNL_SUBSYS_ULOG,
923 .cb_count = NFULNL_MSG_MAX,
Harald Welte0597f262005-08-09 19:58:39 -0700924 .cb = nfulnl_cb,
925};
926
927#ifdef CONFIG_PROC_FS
928struct iter_state {
Gao feng9368a532013-03-24 23:50:45 +0000929 struct seq_net_private p;
Harald Welte0597f262005-08-09 19:58:39 -0700930 unsigned int bucket;
931};
932
Gao feng9368a532013-03-24 23:50:45 +0000933static struct hlist_node *get_first(struct net *net, struct iter_state *st)
Harald Welte0597f262005-08-09 19:58:39 -0700934{
Gao feng9368a532013-03-24 23:50:45 +0000935 struct nfnl_log_net *log;
Harald Welte0597f262005-08-09 19:58:39 -0700936 if (!st)
937 return NULL;
938
Gao feng9368a532013-03-24 23:50:45 +0000939 log = nfnl_log_pernet(net);
940
Harald Welte0597f262005-08-09 19:58:39 -0700941 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
Gao feng9368a532013-03-24 23:50:45 +0000942 struct hlist_head *head = &log->instance_table[st->bucket];
943
944 if (!hlist_empty(head))
945 return rcu_dereference_bh(hlist_first_rcu(head));
Harald Welte0597f262005-08-09 19:58:39 -0700946 }
947 return NULL;
948}
949
Gao feng9368a532013-03-24 23:50:45 +0000950static struct hlist_node *get_next(struct net *net, struct iter_state *st,
951 struct hlist_node *h)
Harald Welte0597f262005-08-09 19:58:39 -0700952{
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100953 h = rcu_dereference_bh(hlist_next_rcu(h));
Harald Welte0597f262005-08-09 19:58:39 -0700954 while (!h) {
Gao feng9368a532013-03-24 23:50:45 +0000955 struct nfnl_log_net *log;
956 struct hlist_head *head;
957
Harald Welte0597f262005-08-09 19:58:39 -0700958 if (++st->bucket >= INSTANCE_BUCKETS)
959 return NULL;
960
Gao feng9368a532013-03-24 23:50:45 +0000961 log = nfnl_log_pernet(net);
962 head = &log->instance_table[st->bucket];
963 h = rcu_dereference_bh(hlist_first_rcu(head));
Harald Welte0597f262005-08-09 19:58:39 -0700964 }
965 return h;
966}
967
Gao feng9368a532013-03-24 23:50:45 +0000968static struct hlist_node *get_idx(struct net *net, struct iter_state *st,
969 loff_t pos)
Harald Welte0597f262005-08-09 19:58:39 -0700970{
971 struct hlist_node *head;
Gao feng9368a532013-03-24 23:50:45 +0000972 head = get_first(net, st);
Harald Welte0597f262005-08-09 19:58:39 -0700973
974 if (head)
Gao feng9368a532013-03-24 23:50:45 +0000975 while (pos && (head = get_next(net, st, head)))
Harald Welte0597f262005-08-09 19:58:39 -0700976 pos--;
977 return pos ? NULL : head;
978}
979
Gao feng9368a532013-03-24 23:50:45 +0000980static void *seq_start(struct seq_file *s, loff_t *pos)
Eric Dumazetbed1be22010-06-09 18:14:58 +0200981 __acquires(rcu_bh)
Harald Welte0597f262005-08-09 19:58:39 -0700982{
Eric Dumazetbed1be22010-06-09 18:14:58 +0200983 rcu_read_lock_bh();
Gao feng9368a532013-03-24 23:50:45 +0000984 return get_idx(seq_file_net(s), s->private, *pos);
Harald Welte0597f262005-08-09 19:58:39 -0700985}
986
987static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
988{
989 (*pos)++;
Gao feng9368a532013-03-24 23:50:45 +0000990 return get_next(seq_file_net(s), s->private, v);
Harald Welte0597f262005-08-09 19:58:39 -0700991}
992
993static void seq_stop(struct seq_file *s, void *v)
Eric Dumazetbed1be22010-06-09 18:14:58 +0200994 __releases(rcu_bh)
Harald Welte0597f262005-08-09 19:58:39 -0700995{
Eric Dumazetbed1be22010-06-09 18:14:58 +0200996 rcu_read_unlock_bh();
Harald Welte0597f262005-08-09 19:58:39 -0700997}
998
999static int seq_show(struct seq_file *s, void *v)
1000{
1001 const struct nfulnl_instance *inst = v;
1002
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001003 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
Harald Welte0597f262005-08-09 19:58:39 -07001004 inst->group_num,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001005 inst->peer_portid, inst->qlen,
Harald Welte0597f262005-08-09 19:58:39 -07001006 inst->copy_mode, inst->copy_range,
1007 inst->flushtimeout, atomic_read(&inst->use));
1008}
1009
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001010static const struct seq_operations nful_seq_ops = {
Harald Welte0597f262005-08-09 19:58:39 -07001011 .start = seq_start,
1012 .next = seq_next,
1013 .stop = seq_stop,
1014 .show = seq_show,
1015};
1016
1017static int nful_open(struct inode *inode, struct file *file)
1018{
Gao feng9368a532013-03-24 23:50:45 +00001019 return seq_open_net(inode, file, &nful_seq_ops,
1020 sizeof(struct iter_state));
Harald Welte0597f262005-08-09 19:58:39 -07001021}
1022
Arjan van de Venda7071d2007-02-12 00:55:36 -08001023static const struct file_operations nful_file_ops = {
Harald Welte0597f262005-08-09 19:58:39 -07001024 .owner = THIS_MODULE,
1025 .open = nful_open,
1026 .read = seq_read,
1027 .llseek = seq_lseek,
Gao feng9368a532013-03-24 23:50:45 +00001028 .release = seq_release_net,
Harald Welte0597f262005-08-09 19:58:39 -07001029};
1030
1031#endif /* PROC_FS */
1032
Gao feng9368a532013-03-24 23:50:45 +00001033static int __net_init nfnl_log_net_init(struct net *net)
Harald Welte0597f262005-08-09 19:58:39 -07001034{
Gao feng9368a532013-03-24 23:50:45 +00001035 unsigned int i;
1036 struct nfnl_log_net *log = nfnl_log_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001037
Harald Welte0597f262005-08-09 19:58:39 -07001038 for (i = 0; i < INSTANCE_BUCKETS; i++)
Gao feng9368a532013-03-24 23:50:45 +00001039 INIT_HLIST_HEAD(&log->instance_table[i]);
1040 spin_lock_init(&log->instances_lock);
1041
1042#ifdef CONFIG_PROC_FS
1043 if (!proc_create("nfnetlink_log", 0440,
1044 net->nf.proc_netfilter, &nful_file_ops))
1045 return -ENOMEM;
1046#endif
1047 return 0;
1048}
1049
1050static void __net_exit nfnl_log_net_exit(struct net *net)
1051{
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001052#ifdef CONFIG_PROC_FS
Gao feng9368a532013-03-24 23:50:45 +00001053 remove_proc_entry("nfnetlink_log", net->nf.proc_netfilter);
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001054#endif
Gao feng45c2aff2013-12-16 14:59:22 +08001055 nf_log_unset(net, &nfulnl_logger);
Gao feng9368a532013-03-24 23:50:45 +00001056}
1057
1058static struct pernet_operations nfnl_log_net_ops = {
1059 .init = nfnl_log_net_init,
1060 .exit = nfnl_log_net_exit,
1061 .id = &nfnl_log_net_id,
1062 .size = sizeof(struct nfnl_log_net),
1063};
1064
1065static int __init nfnetlink_log_init(void)
1066{
1067 int status = -ENOMEM;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001068
Harald Welte0597f262005-08-09 19:58:39 -07001069 netlink_register_notifier(&nfulnl_rtnl_notifier);
1070 status = nfnetlink_subsys_register(&nfulnl_subsys);
1071 if (status < 0) {
Gao feng9368a532013-03-24 23:50:45 +00001072 pr_err("log: failed to create netlink socket\n");
Harald Welte0597f262005-08-09 19:58:39 -07001073 goto cleanup_netlink_notifier;
1074 }
1075
Eric Leblondca735b32009-03-16 14:54:21 +01001076 status = nf_log_register(NFPROTO_UNSPEC, &nfulnl_logger);
1077 if (status < 0) {
Gao feng9368a532013-03-24 23:50:45 +00001078 pr_err("log: failed to register logger\n");
Eric Leblondca735b32009-03-16 14:54:21 +01001079 goto cleanup_subsys;
1080 }
1081
Gao feng9368a532013-03-24 23:50:45 +00001082 status = register_pernet_subsys(&nfnl_log_net_ops);
1083 if (status < 0) {
1084 pr_err("log: failed to register pernet ops\n");
Eric Leblondca735b32009-03-16 14:54:21 +01001085 goto cleanup_logger;
Julia Lawall6fc09f12012-08-29 06:49:17 +00001086 }
Harald Welte0597f262005-08-09 19:58:39 -07001087 return status;
1088
Eric Leblondca735b32009-03-16 14:54:21 +01001089cleanup_logger:
1090 nf_log_unregister(&nfulnl_logger);
Harald Welte0597f262005-08-09 19:58:39 -07001091cleanup_subsys:
Harald Welte0597f262005-08-09 19:58:39 -07001092 nfnetlink_subsys_unregister(&nfulnl_subsys);
1093cleanup_netlink_notifier:
1094 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1095 return status;
1096}
1097
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001098static void __exit nfnetlink_log_fini(void)
Harald Welte0597f262005-08-09 19:58:39 -07001099{
Gao feng9368a532013-03-24 23:50:45 +00001100 unregister_pernet_subsys(&nfnl_log_net_ops);
Patrick McHardye92ad992007-02-12 11:11:55 -08001101 nf_log_unregister(&nfulnl_logger);
Patrick McHardy32292a72006-04-06 14:11:30 -07001102 nfnetlink_subsys_unregister(&nfulnl_subsys);
1103 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
Harald Welte0597f262005-08-09 19:58:39 -07001104}
1105
1106MODULE_DESCRIPTION("netfilter userspace logging");
1107MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1108MODULE_LICENSE("GPL");
Harald Weltef682fae2005-08-09 20:20:34 -07001109MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
Pablo Neira Ayusofab40852014-06-18 19:38:25 +02001110MODULE_ALIAS_NF_LOGGER(AF_INET, 1);
1111MODULE_ALIAS_NF_LOGGER(AF_INET6, 1);
1112MODULE_ALIAS_NF_LOGGER(AF_BRIDGE, 1);
Harald Welte0597f262005-08-09 19:58:39 -07001113
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001114module_init(nfnetlink_log_init);
1115module_exit(nfnetlink_log_fini);