]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/netfilter/nfnetlink_log.c
Merge tag 'usb-3.15-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[mirror_ubuntu-bionic-kernel.git] / net / netfilter / nfnetlink_log.c
CommitLineData
0597f268
HW
1/*
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>
f229f6ce 6 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
0597f268
HW
7 *
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.
0597f268
HW
14 */
15#include <linux/module.h>
16#include <linux/skbuff.h>
e035edd1 17#include <linux/if_arp.h>
0597f268
HW
18#include <linux/init.h>
19#include <linux/ip.h>
20#include <linux/ipv6.h>
21#include <linux/netdevice.h>
22#include <linux/netfilter.h>
573ce260 23#include <net/netlink.h>
0597f268
HW
24#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>
5a0e3ad6 31#include <linux/slab.h>
0597f268 32#include <net/sock.h>
f01ffbd6 33#include <net/netfilter/nf_log.h>
9368a53c 34#include <net/netns/generic.h>
d9e15007 35#include <net/netfilter/nfnetlink_log.h>
0597f268 36
60063497 37#include <linux/atomic.h>
0597f268 38
fbcd923c
HW
39#ifdef CONFIG_BRIDGE_NETFILTER
40#include "../bridge/br_private.h"
41#endif
42
c2db2924 43#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
2c6764b7 44#define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
0597f268 45#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
6b6ec99a 46#define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */
0597f268
HW
47
48#define PRINTR(x, args...) do { if (net_ratelimit()) \
49 printk(x, ## args); } while (0);
50
0597f268
HW
51struct nfulnl_instance {
52 struct hlist_node hlist; /* global list of instances */
53 spinlock_t lock;
54 atomic_t use; /* use count */
55
56 unsigned int qlen; /* number of nlmsgs in skb */
57 struct sk_buff *skb; /* pre-allocatd skb */
0597f268 58 struct timer_list timer;
9368a53c 59 struct net *net;
9eea9515 60 struct user_namespace *peer_user_ns; /* User namespace of the peer process */
15e47304 61 int peer_portid; /* PORTID of the peer process */
0597f268
HW
62
63 /* configurable parameters */
64 unsigned int flushtimeout; /* timeout until queue flush */
65 unsigned int nlbufsiz; /* netlink buffer allocation size */
66 unsigned int qthreshold; /* threshold of the queue */
67 u_int32_t copy_range;
0af5f6c1 68 u_int32_t seq; /* instance-local sequential counter */
0597f268 69 u_int16_t group_num; /* number of this queue */
0af5f6c1 70 u_int16_t flags;
601e68e1 71 u_int8_t copy_mode;
bed1be20 72 struct rcu_head rcu;
0597f268
HW
73};
74
0597f268 75#define INSTANCE_BUCKETS 16
0597f268 76
9368a53c
G
77static int nfnl_log_net_id __read_mostly;
78
79struct nfnl_log_net {
80 spinlock_t instances_lock;
81 struct hlist_head instance_table[INSTANCE_BUCKETS];
82 atomic_t global_seq;
83};
84
85static struct nfnl_log_net *nfnl_log_pernet(struct net *net)
86{
87 return net_generic(net, nfnl_log_net_id);
88}
89
0597f268
HW
90static inline u_int8_t instance_hashfn(u_int16_t group_num)
91{
92 return ((group_num & 0xff) % INSTANCE_BUCKETS);
93}
94
95static struct nfulnl_instance *
9368a53c 96__instance_lookup(struct nfnl_log_net *log, u_int16_t group_num)
0597f268
HW
97{
98 struct hlist_head *head;
0597f268
HW
99 struct nfulnl_instance *inst;
100
9368a53c 101 head = &log->instance_table[instance_hashfn(group_num)];
b67bfe0d 102 hlist_for_each_entry_rcu(inst, head, hlist) {
0597f268
HW
103 if (inst->group_num == group_num)
104 return inst;
105 }
106 return NULL;
107}
108
109static inline void
110instance_get(struct nfulnl_instance *inst)
111{
112 atomic_inc(&inst->use);
113}
114
115static struct nfulnl_instance *
9368a53c 116instance_lookup_get(struct nfnl_log_net *log, u_int16_t group_num)
0597f268
HW
117{
118 struct nfulnl_instance *inst;
119
bed1be20 120 rcu_read_lock_bh();
9368a53c 121 inst = __instance_lookup(log, group_num);
f5c5440d
ED
122 if (inst && !atomic_inc_not_zero(&inst->use))
123 inst = NULL;
bed1be20 124 rcu_read_unlock_bh();
0597f268
HW
125
126 return inst;
127}
128
bed1be20
ED
129static void nfulnl_instance_free_rcu(struct rcu_head *head)
130{
9368a53c
G
131 struct nfulnl_instance *inst =
132 container_of(head, struct nfulnl_instance, rcu);
133
134 put_net(inst->net);
135 kfree(inst);
bed1be20
ED
136 module_put(THIS_MODULE);
137}
138
0597f268
HW
139static void
140instance_put(struct nfulnl_instance *inst)
141{
bed1be20
ED
142 if (inst && atomic_dec_and_test(&inst->use))
143 call_rcu_bh(&inst->rcu, nfulnl_instance_free_rcu);
0597f268
HW
144}
145
146static void nfulnl_timer(unsigned long data);
147
148static struct nfulnl_instance *
9368a53c
G
149instance_create(struct net *net, u_int16_t group_num,
150 int portid, struct user_namespace *user_ns)
0597f268
HW
151{
152 struct nfulnl_instance *inst;
9368a53c 153 struct nfnl_log_net *log = nfnl_log_pernet(net);
baab2ce7 154 int err;
0597f268 155
9368a53c
G
156 spin_lock_bh(&log->instances_lock);
157 if (__instance_lookup(log, group_num)) {
baab2ce7 158 err = -EEXIST;
0597f268
HW
159 goto out_unlock;
160 }
161
10dfdc69 162 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
baab2ce7
PM
163 if (!inst) {
164 err = -ENOMEM;
0597f268 165 goto out_unlock;
baab2ce7 166 }
0597f268 167
aace57e0
MM
168 if (!try_module_get(THIS_MODULE)) {
169 kfree(inst);
baab2ce7 170 err = -EAGAIN;
aace57e0
MM
171 goto out_unlock;
172 }
173
0597f268 174 INIT_HLIST_NODE(&inst->hlist);
181a46a5 175 spin_lock_init(&inst->lock);
0597f268
HW
176 /* needs to be two, since we _put() after creation */
177 atomic_set(&inst->use, 2);
178
e6f689db 179 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
0597f268 180
9368a53c 181 inst->net = get_net(net);
9eea9515 182 inst->peer_user_ns = user_ns;
15e47304 183 inst->peer_portid = portid;
0597f268
HW
184 inst->group_num = group_num;
185
186 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
187 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
188 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
189 inst->copy_mode = NFULNL_COPY_PACKET;
6b6ec99a 190 inst->copy_range = NFULNL_COPY_RANGE_MAX;
0597f268 191
f5c5440d 192 hlist_add_head_rcu(&inst->hlist,
9368a53c
G
193 &log->instance_table[instance_hashfn(group_num)]);
194
0597f268 195
9368a53c 196 spin_unlock_bh(&log->instances_lock);
0597f268
HW
197
198 return inst;
199
0597f268 200out_unlock:
9368a53c 201 spin_unlock_bh(&log->instances_lock);
baab2ce7 202 return ERR_PTR(err);
0597f268
HW
203}
204
e3567061 205static void __nfulnl_flush(struct nfulnl_instance *inst);
0597f268 206
f5c5440d 207/* called with BH disabled */
0597f268 208static void
9afdb00c 209__instance_destroy(struct nfulnl_instance *inst)
0597f268
HW
210{
211 /* first pull it out of the global list */
f5c5440d 212 hlist_del_rcu(&inst->hlist);
0597f268 213
0597f268
HW
214 /* then flush all pending packets from skb */
215
f5c5440d
ED
216 spin_lock(&inst->lock);
217
218 /* lockless readers wont be able to use us */
219 inst->copy_mode = NFULNL_COPY_DISABLED;
220
e3567061
MM
221 if (inst->skb)
222 __nfulnl_flush(inst);
f5c5440d 223 spin_unlock(&inst->lock);
0597f268
HW
224
225 /* and finally put the refcount */
226 instance_put(inst);
0597f268
HW
227}
228
0597f268 229static inline void
9368a53c
G
230instance_destroy(struct nfnl_log_net *log,
231 struct nfulnl_instance *inst)
0597f268 232{
9368a53c 233 spin_lock_bh(&log->instances_lock);
9afdb00c 234 __instance_destroy(inst);
9368a53c 235 spin_unlock_bh(&log->instances_lock);
0597f268
HW
236}
237
238static int
239nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
240 unsigned int range)
241{
242 int status = 0;
243
244 spin_lock_bh(&inst->lock);
601e68e1 245
0597f268
HW
246 switch (mode) {
247 case NFULNL_COPY_NONE:
248 case NFULNL_COPY_META:
249 inst->copy_mode = mode;
250 inst->copy_range = 0;
251 break;
601e68e1 252
0597f268
HW
253 case NFULNL_COPY_PACKET:
254 inst->copy_mode = mode;
6b6ec99a
MM
255 inst->copy_range = min_t(unsigned int,
256 range, NFULNL_COPY_RANGE_MAX);
0597f268 257 break;
601e68e1 258
0597f268
HW
259 default:
260 status = -EINVAL;
261 break;
262 }
263
264 spin_unlock_bh(&inst->lock);
265
266 return status;
267}
268
269static int
270nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
271{
272 int status;
273
274 spin_lock_bh(&inst->lock);
275 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
276 status = -ERANGE;
277 else if (nlbufsiz > 131072)
278 status = -ERANGE;
279 else {
280 inst->nlbufsiz = nlbufsiz;
281 status = 0;
282 }
283 spin_unlock_bh(&inst->lock);
284
285 return status;
286}
287
288static int
289nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
290{
291 spin_lock_bh(&inst->lock);
292 inst->flushtimeout = timeout;
293 spin_unlock_bh(&inst->lock);
294
295 return 0;
296}
297
298static int
299nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
300{
301 spin_lock_bh(&inst->lock);
302 inst->qthreshold = qthresh;
303 spin_unlock_bh(&inst->lock);
304
305 return 0;
306}
307
0af5f6c1
HW
308static int
309nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
310{
311 spin_lock_bh(&inst->lock);
ee433530 312 inst->flags = flags;
0af5f6c1
HW
313 spin_unlock_bh(&inst->lock);
314
315 return 0;
316}
317
c6a8f648 318static struct sk_buff *
afff14f6
G
319nfulnl_alloc_skb(struct net *net, u32 peer_portid, unsigned int inst_size,
320 unsigned int pkt_size)
0597f268
HW
321{
322 struct sk_buff *skb;
ad2ad0f9 323 unsigned int n;
0597f268 324
0597f268
HW
325 /* alloc skb which should be big enough for a whole multipart
326 * message. WARNING: has to be <= 128k due to slab restrictions */
327
ad2ad0f9 328 n = max(inst_size, pkt_size);
afff14f6 329 skb = nfnetlink_alloc_skb(net, n, peer_portid, GFP_ATOMIC);
0597f268 330 if (!skb) {
ad2ad0f9
PM
331 if (n > pkt_size) {
332 /* try to allocate only as much as we need for current
333 * packet */
0597f268 334
afff14f6 335 skb = nfnetlink_alloc_skb(net, pkt_size,
3ab1f683 336 peer_portid, GFP_ATOMIC);
ad2ad0f9 337 if (!skb)
0a9ee813
JP
338 pr_err("nfnetlink_log: can't even alloc %u bytes\n",
339 pkt_size);
ad2ad0f9 340 }
0597f268
HW
341 }
342
343 return skb;
344}
345
346static int
347__nfulnl_send(struct nfulnl_instance *inst)
348{
29c5d4af 349 int status = -1;
0597f268 350
d550d095
DM
351 if (inst->qlen > 1) {
352 struct nlmsghdr *nlh = nlmsg_put(inst->skb, 0, 0,
353 NLMSG_DONE,
354 sizeof(struct nfgenmsg),
355 0);
356 if (!nlh)
357 goto out;
358 }
9368a53c 359 status = nfnetlink_unicast(inst->skb, inst->net, inst->peer_portid,
cd8c20b6 360 MSG_DONTWAIT);
0597f268
HW
361
362 inst->qlen = 0;
363 inst->skb = NULL;
d550d095 364out:
0597f268
HW
365 return status;
366}
367
e3567061
MM
368static void
369__nfulnl_flush(struct nfulnl_instance *inst)
370{
371 /* timer holds a reference */
372 if (del_timer(&inst->timer))
373 instance_put(inst);
374 if (inst->skb)
375 __nfulnl_send(inst);
376}
377
c6a8f648
MM
378static void
379nfulnl_timer(unsigned long data)
0597f268 380{
601e68e1 381 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
0597f268 382
0597f268 383 spin_lock_bh(&inst->lock);
370e6a87
MM
384 if (inst->skb)
385 __nfulnl_send(inst);
0597f268 386 spin_unlock_bh(&inst->lock);
05f7b7b3 387 instance_put(inst);
0597f268
HW
388}
389
0af5f6c1
HW
390/* This is an inline function, we don't really care about a long
391 * list of arguments */
601e68e1 392static inline int
9368a53c
G
393__build_packet_message(struct nfnl_log_net *log,
394 struct nfulnl_instance *inst,
601e68e1 395 const struct sk_buff *skb,
0597f268 396 unsigned int data_len,
76108cea 397 u_int8_t pf,
0597f268
HW
398 unsigned int hooknum,
399 const struct net_device *indev,
400 const struct net_device *outdev,
d7a5c324 401 const char *prefix, unsigned int plen)
0597f268 402{
0597f268
HW
403 struct nfulnl_msg_packet_hdr pmsg;
404 struct nlmsghdr *nlh;
405 struct nfgenmsg *nfmsg;
27a884dc 406 sk_buff_data_t old_tail = inst->skb->tail;
0626af31 407 struct sock *sk;
0c36b48b 408 const unsigned char *hwhdrp;
0597f268 409
d550d095 410 nlh = nlmsg_put(inst->skb, 0, 0,
0597f268 411 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
d550d095
DM
412 sizeof(struct nfgenmsg), 0);
413 if (!nlh)
414 return -1;
415 nfmsg = nlmsg_data(nlh);
0597f268
HW
416 nfmsg->nfgen_family = pf;
417 nfmsg->version = NFNETLINK_V0;
418 nfmsg->res_id = htons(inst->group_num);
419
e4d091d7 420 memset(&pmsg, 0, sizeof(pmsg));
febf0a43 421 pmsg.hw_protocol = skb->protocol;
0597f268
HW
422 pmsg.hook = hooknum;
423
1db20a52
DM
424 if (nla_put(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg))
425 goto nla_put_failure;
0597f268 426
1db20a52
DM
427 if (prefix &&
428 nla_put(inst->skb, NFULA_PREFIX, plen, prefix))
429 goto nla_put_failure;
0597f268
HW
430
431 if (indev) {
fbcd923c 432#ifndef CONFIG_BRIDGE_NETFILTER
1db20a52
DM
433 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
434 htonl(indev->ifindex)))
435 goto nla_put_failure;
fbcd923c
HW
436#else
437 if (pf == PF_BRIDGE) {
438 /* Case 1: outdev is physical input device, we need to
439 * look for bridge group (when called from
440 * netfilter_bridge) */
1db20a52
DM
441 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
442 htonl(indev->ifindex)) ||
fbcd923c 443 /* this is the bridge group "brX" */
f350a0a8 444 /* rcu_read_lock()ed by nf_hook_slow or nf_log_packet */
1db20a52
DM
445 nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
446 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
447 goto nla_put_failure;
fbcd923c
HW
448 } else {
449 /* Case 2: indev is bridge group, we need to look for
450 * physical device (when called from ipv4) */
1db20a52
DM
451 if (nla_put_be32(inst->skb, NFULA_IFINDEX_INDEV,
452 htonl(indev->ifindex)))
453 goto nla_put_failure;
454 if (skb->nf_bridge && skb->nf_bridge->physindev &&
455 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
456 htonl(skb->nf_bridge->physindev->ifindex)))
457 goto nla_put_failure;
fbcd923c
HW
458 }
459#endif
0597f268
HW
460 }
461
462 if (outdev) {
fbcd923c 463#ifndef CONFIG_BRIDGE_NETFILTER
1db20a52
DM
464 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
465 htonl(outdev->ifindex)))
466 goto nla_put_failure;
fbcd923c
HW
467#else
468 if (pf == PF_BRIDGE) {
469 /* Case 1: outdev is physical output device, we need to
470 * look for bridge group (when called from
471 * netfilter_bridge) */
1db20a52
DM
472 if (nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
473 htonl(outdev->ifindex)) ||
fbcd923c 474 /* this is the bridge group "brX" */
f350a0a8 475 /* rcu_read_lock()ed by nf_hook_slow or nf_log_packet */
1db20a52
DM
476 nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
477 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
478 goto nla_put_failure;
fbcd923c
HW
479 } else {
480 /* Case 2: indev is a bridge group, we need to look
481 * for physical device (when called from ipv4) */
1db20a52
DM
482 if (nla_put_be32(inst->skb, NFULA_IFINDEX_OUTDEV,
483 htonl(outdev->ifindex)))
484 goto nla_put_failure;
485 if (skb->nf_bridge && skb->nf_bridge->physoutdev &&
486 nla_put_be32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
487 htonl(skb->nf_bridge->physoutdev->ifindex)))
488 goto nla_put_failure;
fbcd923c
HW
489 }
490#endif
0597f268
HW
491 }
492
1db20a52
DM
493 if (skb->mark &&
494 nla_put_be32(inst->skb, NFULA_MARK, htonl(skb->mark)))
495 goto nla_put_failure;
0597f268 496
2c38de4c
NC
497 if (indev && skb->dev &&
498 skb->mac_header != skb->network_header) {
0597f268 499 struct nfulnl_msg_packet_hw phw;
e4d091d7
DC
500 int len;
501
502 memset(&phw, 0, sizeof(phw));
503 len = dev_parse_header(skb, phw.hw_addr);
b95cce35
SH
504 if (len > 0) {
505 phw.hw_addrlen = htons(len);
1db20a52
DM
506 if (nla_put(inst->skb, NFULA_HWADDR, sizeof(phw), &phw))
507 goto nla_put_failure;
b95cce35 508 }
0597f268
HW
509 }
510
72961ecf 511 if (indev && skb_mac_header_was_set(skb)) {
2dba62c3 512 if (nla_put_be16(inst->skb, NFULA_HWTYPE, htons(skb->dev->type)) ||
1db20a52 513 nla_put_be16(inst->skb, NFULA_HWLEN,
0c36b48b
BH
514 htons(skb->dev->hard_header_len)))
515 goto nla_put_failure;
516
517 hwhdrp = skb_mac_header(skb);
518
519 if (skb->dev->type == ARPHRD_SIT)
520 hwhdrp -= ETH_HLEN;
521
522 if (hwhdrp >= skb->head &&
523 nla_put(inst->skb, NFULA_HWHEADER,
524 skb->dev->hard_header_len, hwhdrp))
1db20a52 525 goto nla_put_failure;
72961ecf
EL
526 }
527
b7aa0bf7 528 if (skb->tstamp.tv64) {
0597f268 529 struct nfulnl_msg_packet_timestamp ts;
b7aa0bf7
ED
530 struct timeval tv = ktime_to_timeval(skb->tstamp);
531 ts.sec = cpu_to_be64(tv.tv_sec);
532 ts.usec = cpu_to_be64(tv.tv_usec);
0597f268 533
1db20a52
DM
534 if (nla_put(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts))
535 goto nla_put_failure;
0597f268
HW
536 }
537
538 /* UID */
0626af31
ED
539 sk = skb->sk;
540 if (sk && sk->sk_state != TCP_TIME_WAIT) {
541 read_lock_bh(&sk->sk_callback_lock);
542 if (sk->sk_socket && sk->sk_socket->file) {
543 struct file *file = sk->sk_socket->file;
437589a7
LT
544 const struct cred *cred = file->f_cred;
545 struct user_namespace *user_ns = inst->peer_user_ns;
546 __be32 uid = htonl(from_kuid_munged(user_ns, cred->fsuid));
547 __be32 gid = htonl(from_kgid_munged(user_ns, cred->fsgid));
0626af31 548 read_unlock_bh(&sk->sk_callback_lock);
1db20a52
DM
549 if (nla_put_be32(inst->skb, NFULA_UID, uid) ||
550 nla_put_be32(inst->skb, NFULA_GID, gid))
551 goto nla_put_failure;
0597f268 552 } else
0626af31 553 read_unlock_bh(&sk->sk_callback_lock);
0597f268
HW
554 }
555
0af5f6c1 556 /* local sequence number */
1db20a52
DM
557 if ((inst->flags & NFULNL_CFG_F_SEQ) &&
558 nla_put_be32(inst->skb, NFULA_SEQ, htonl(inst->seq++)))
559 goto nla_put_failure;
0dfedd28 560
0af5f6c1 561 /* global sequence number */
1db20a52
DM
562 if ((inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) &&
563 nla_put_be32(inst->skb, NFULA_SEQ_GLOBAL,
9368a53c 564 htonl(atomic_inc_return(&log->global_seq))))
1db20a52 565 goto nla_put_failure;
0af5f6c1 566
0597f268 567 if (data_len) {
df6fb868
PM
568 struct nlattr *nla;
569 int size = nla_attr_size(data_len);
0597f268 570
df6fb868 571 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
0597f268 572 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
d550d095 573 return -1;
0597f268
HW
574 }
575
df6fb868
PM
576 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
577 nla->nla_type = NFULA_PAYLOAD;
578 nla->nla_len = size;
0597f268 579
df6fb868 580 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
0597f268
HW
581 BUG();
582 }
601e68e1 583
0597f268
HW
584 nlh->nlmsg_len = inst->skb->tail - old_tail;
585 return 0;
586
df6fb868 587nla_put_failure:
0597f268
HW
588 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
589 return -1;
590}
591
592#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
593
594static struct nf_loginfo default_loginfo = {
595 .type = NF_LOG_TYPE_ULOG,
596 .u = {
597 .ulog = {
598 .copy_len = 0xffff,
599 .group = 0,
600 .qthreshold = 1,
601 },
602 },
603};
604
605/* log handler for internal netfilter logging api */
5f7340ef 606void
8cdb46da
HS
607nfulnl_log_packet(struct net *net,
608 u_int8_t pf,
0597f268
HW
609 unsigned int hooknum,
610 const struct sk_buff *skb,
611 const struct net_device *in,
612 const struct net_device *out,
613 const struct nf_loginfo *li_user,
614 const char *prefix)
615{
616 unsigned int size, data_len;
617 struct nfulnl_instance *inst;
618 const struct nf_loginfo *li;
619 unsigned int qthreshold;
d7a5c324 620 unsigned int plen;
9368a53c 621 struct nfnl_log_net *log = nfnl_log_pernet(net);
0597f268 622
601e68e1 623 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
0597f268
HW
624 li = li_user;
625 else
626 li = &default_loginfo;
627
9368a53c 628 inst = instance_lookup_get(log, li->u.ulog.group);
0597f268 629 if (!inst)
0597f268 630 return;
0597f268 631
d7a5c324
PM
632 plen = 0;
633 if (prefix)
881dbfe8 634 plen = strlen(prefix) + 1;
d7a5c324 635
0597f268
HW
636 /* FIXME: do we want to make the size calculation conditional based on
637 * what is actually present? way more branches and checks, but more
638 * memory efficient... */
573ce260 639 size = nlmsg_total_size(sizeof(struct nfgenmsg))
df6fb868
PM
640 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
641 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
642 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 643#ifdef CONFIG_BRIDGE_NETFILTER
df6fb868
PM
644 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
645 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 646#endif
df6fb868
PM
647 + nla_total_size(sizeof(u_int32_t)) /* mark */
648 + nla_total_size(sizeof(u_int32_t)) /* uid */
76aa1ce1 649 + nla_total_size(sizeof(u_int32_t)) /* gid */
df6fb868
PM
650 + nla_total_size(plen) /* prefix */
651 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
652 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp));
0597f268 653
eeff9bee
PNA
654 if (in && skb_mac_header_was_set(skb)) {
655 size += nla_total_size(skb->dev->hard_header_len)
656 + nla_total_size(sizeof(u_int16_t)) /* hwtype */
657 + nla_total_size(sizeof(u_int16_t)); /* hwlen */
658 }
659
0597f268
HW
660 spin_lock_bh(&inst->lock);
661
0af5f6c1 662 if (inst->flags & NFULNL_CFG_F_SEQ)
df6fb868 663 size += nla_total_size(sizeof(u_int32_t));
0af5f6c1 664 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
df6fb868 665 size += nla_total_size(sizeof(u_int32_t));
0af5f6c1 666
0597f268
HW
667 qthreshold = inst->qthreshold;
668 /* per-rule qthreshold overrides per-instance */
5ca431f9
EL
669 if (li->u.ulog.qthreshold)
670 if (qthreshold > li->u.ulog.qthreshold)
671 qthreshold = li->u.ulog.qthreshold;
672
601e68e1 673
0597f268
HW
674 switch (inst->copy_mode) {
675 case NFULNL_COPY_META:
676 case NFULNL_COPY_NONE:
677 data_len = 0;
678 break;
601e68e1 679
0597f268 680 case NFULNL_COPY_PACKET:
601e68e1 681 if (inst->copy_range == 0
0597f268
HW
682 || inst->copy_range > skb->len)
683 data_len = skb->len;
684 else
685 data_len = inst->copy_range;
601e68e1 686
df6fb868 687 size += nla_total_size(data_len);
0597f268 688 break;
601e68e1 689
f5c5440d 690 case NFULNL_COPY_DISABLED:
0597f268 691 default:
55b5a91e 692 goto unlock_and_release;
0597f268
HW
693 }
694
d63b043d
MM
695 if (inst->skb &&
696 size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
0597f268
HW
697 /* either the queue len is too high or we don't have
698 * enough room in the skb left. flush to userspace. */
e3567061 699 __nfulnl_flush(inst);
55b5a91e 700 }
0597f268 701
55b5a91e 702 if (!inst->skb) {
afff14f6
G
703 inst->skb = nfulnl_alloc_skb(net, inst->peer_portid,
704 inst->nlbufsiz, size);
55b5a91e 705 if (!inst->skb)
0597f268 706 goto alloc_failure;
0597f268
HW
707 }
708
0597f268
HW
709 inst->qlen++;
710
9368a53c 711 __build_packet_message(log, inst, skb, data_len, pf,
8248779b 712 hooknum, in, out, prefix, plen);
0597f268 713
d63b043d
MM
714 if (inst->qlen >= qthreshold)
715 __nfulnl_flush(inst);
0597f268
HW
716 /* timer_pending always called within inst->lock, so there
717 * is no chance of a race here */
d63b043d 718 else if (!timer_pending(&inst->timer)) {
0597f268
HW
719 instance_get(inst);
720 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
721 add_timer(&inst->timer);
722 }
0597f268 723
ed32abea
MM
724unlock_and_release:
725 spin_unlock_bh(&inst->lock);
726 instance_put(inst);
0597f268
HW
727 return;
728
729alloc_failure:
0597f268 730 /* FIXME: statistics */
ed32abea 731 goto unlock_and_release;
0597f268 732}
5f7340ef 733EXPORT_SYMBOL_GPL(nfulnl_log_packet);
0597f268
HW
734
735static int
736nfulnl_rcv_nl_event(struct notifier_block *this,
737 unsigned long event, void *ptr)
738{
739 struct netlink_notify *n = ptr;
9368a53c 740 struct nfnl_log_net *log = nfnl_log_pernet(n->net);
0597f268 741
dee5817e 742 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
0597f268
HW
743 int i;
744
15e47304 745 /* destroy all instances for this portid */
9368a53c 746 spin_lock_bh(&log->instances_lock);
0597f268 747 for (i = 0; i < INSTANCE_BUCKETS; i++) {
b67bfe0d 748 struct hlist_node *t2;
0597f268 749 struct nfulnl_instance *inst;
9368a53c 750 struct hlist_head *head = &log->instance_table[i];
0597f268 751
b67bfe0d 752 hlist_for_each_entry_safe(inst, t2, head, hlist) {
9368a53c 753 if (n->portid == inst->peer_portid)
0597f268
HW
754 __instance_destroy(inst);
755 }
756 }
9368a53c 757 spin_unlock_bh(&log->instances_lock);
0597f268
HW
758 }
759 return NOTIFY_DONE;
760}
761
762static struct notifier_block nfulnl_rtnl_notifier = {
763 .notifier_call = nfulnl_rcv_nl_event,
764};
765
766static int
767nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
768 const struct nlmsghdr *nlh,
769 const struct nlattr * const nfqa[])
0597f268
HW
770{
771 return -ENOTSUPP;
772}
773
ca735b3a 774static struct nf_logger nfulnl_logger __read_mostly = {
0597f268
HW
775 .name = "nfnetlink_log",
776 .logfn = &nfulnl_log_packet,
777 .me = THIS_MODULE,
778};
779
fd8281ad
PM
780static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
781 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
782 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
783 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
784 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
785 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
786 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
0597f268
HW
787};
788
789static int
790nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
791 const struct nlmsghdr *nlh,
792 const struct nlattr * const nfula[])
0597f268 793{
d550d095 794 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
0597f268
HW
795 u_int16_t group_num = ntohs(nfmsg->res_id);
796 struct nfulnl_instance *inst;
b7047a1c 797 struct nfulnl_msg_config_cmd *cmd = NULL;
30e0c6a6 798 struct net *net = sock_net(ctnl);
9368a53c 799 struct nfnl_log_net *log = nfnl_log_pernet(net);
0597f268
HW
800 int ret = 0;
801
b7047a1c
PM
802 if (nfula[NFULA_CFG_CMD]) {
803 u_int8_t pf = nfmsg->nfgen_family;
804 cmd = nla_data(nfula[NFULA_CFG_CMD]);
805
806 /* Commands without queue context */
807 switch (cmd->command) {
808 case NFULNL_CFG_CMD_PF_BIND:
30e0c6a6 809 return nf_log_bind_pf(net, pf, &nfulnl_logger);
b7047a1c 810 case NFULNL_CFG_CMD_PF_UNBIND:
30e0c6a6 811 nf_log_unbind_pf(net, pf);
b7047a1c
PM
812 return 0;
813 }
814 }
815
9368a53c 816 inst = instance_lookup_get(log, group_num);
15e47304 817 if (inst && inst->peer_portid != NETLINK_CB(skb).portid) {
c0506365
PM
818 ret = -EPERM;
819 goto out_put;
820 }
821
b7047a1c 822 if (cmd != NULL) {
0597f268
HW
823 switch (cmd->command) {
824 case NFULNL_CFG_CMD_BIND:
825 if (inst) {
826 ret = -EBUSY;
827 goto out_put;
828 }
829
9368a53c 830 inst = instance_create(net, group_num,
15e47304 831 NETLINK_CB(skb).portid,
e32123e5 832 sk_user_ns(NETLINK_CB(skb).sk));
baab2ce7
PM
833 if (IS_ERR(inst)) {
834 ret = PTR_ERR(inst);
f414c16c 835 goto out;
0597f268
HW
836 }
837 break;
838 case NFULNL_CFG_CMD_UNBIND:
839 if (!inst) {
840 ret = -ENODEV;
f414c16c 841 goto out;
0597f268
HW
842 }
843
9368a53c 844 instance_destroy(log, inst);
a49c6503 845 goto out_put;
0597f268 846 default:
cd21f0ac 847 ret = -ENOTSUPP;
0597f268
HW
848 break;
849 }
0597f268
HW
850 }
851
df6fb868 852 if (nfula[NFULA_CFG_MODE]) {
0597f268 853 struct nfulnl_msg_config_mode *params;
df6fb868 854 params = nla_data(nfula[NFULA_CFG_MODE]);
0597f268 855
c0506365
PM
856 if (!inst) {
857 ret = -ENODEV;
858 goto out;
859 }
0597f268 860 nfulnl_set_mode(inst, params->copy_mode,
d1208b99 861 ntohl(params->copy_range));
0597f268
HW
862 }
863
df6fb868 864 if (nfula[NFULA_CFG_TIMEOUT]) {
0dfedd28 865 __be32 timeout = nla_get_be32(nfula[NFULA_CFG_TIMEOUT]);
0597f268 866
c0506365
PM
867 if (!inst) {
868 ret = -ENODEV;
869 goto out;
870 }
0597f268
HW
871 nfulnl_set_timeout(inst, ntohl(timeout));
872 }
873
df6fb868 874 if (nfula[NFULA_CFG_NLBUFSIZ]) {
0dfedd28 875 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]);
0597f268 876
c0506365
PM
877 if (!inst) {
878 ret = -ENODEV;
879 goto out;
880 }
0597f268
HW
881 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
882 }
883
df6fb868 884 if (nfula[NFULA_CFG_QTHRESH]) {
0dfedd28 885 __be32 qthresh = nla_get_be32(nfula[NFULA_CFG_QTHRESH]);
0597f268 886
c0506365
PM
887 if (!inst) {
888 ret = -ENODEV;
889 goto out;
890 }
0597f268
HW
891 nfulnl_set_qthresh(inst, ntohl(qthresh));
892 }
893
df6fb868 894 if (nfula[NFULA_CFG_FLAGS]) {
0dfedd28 895 __be16 flags = nla_get_be16(nfula[NFULA_CFG_FLAGS]);
c0506365
PM
896
897 if (!inst) {
898 ret = -ENODEV;
899 goto out;
900 }
ee433530 901 nfulnl_set_flags(inst, ntohs(flags));
0af5f6c1
HW
902 }
903
0597f268
HW
904out_put:
905 instance_put(inst);
dd16704e 906out:
0597f268
HW
907 return ret;
908}
909
7c8d4cb4 910static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
0597f268 911 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
37d2e7a2 912 .attr_count = NFULA_MAX, },
0597f268 913 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
fd8281ad
PM
914 .attr_count = NFULA_CFG_MAX,
915 .policy = nfula_cfg_policy },
0597f268
HW
916};
917
7c8d4cb4 918static const struct nfnetlink_subsystem nfulnl_subsys = {
0597f268
HW
919 .name = "log",
920 .subsys_id = NFNL_SUBSYS_ULOG,
921 .cb_count = NFULNL_MSG_MAX,
0597f268
HW
922 .cb = nfulnl_cb,
923};
924
925#ifdef CONFIG_PROC_FS
926struct iter_state {
9368a53c 927 struct seq_net_private p;
0597f268
HW
928 unsigned int bucket;
929};
930
9368a53c 931static struct hlist_node *get_first(struct net *net, struct iter_state *st)
0597f268 932{
9368a53c 933 struct nfnl_log_net *log;
0597f268
HW
934 if (!st)
935 return NULL;
936
9368a53c
G
937 log = nfnl_log_pernet(net);
938
0597f268 939 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
9368a53c
G
940 struct hlist_head *head = &log->instance_table[st->bucket];
941
942 if (!hlist_empty(head))
943 return rcu_dereference_bh(hlist_first_rcu(head));
0597f268
HW
944 }
945 return NULL;
946}
947
9368a53c
G
948static struct hlist_node *get_next(struct net *net, struct iter_state *st,
949 struct hlist_node *h)
0597f268 950{
0e60ebe0 951 h = rcu_dereference_bh(hlist_next_rcu(h));
0597f268 952 while (!h) {
9368a53c
G
953 struct nfnl_log_net *log;
954 struct hlist_head *head;
955
0597f268
HW
956 if (++st->bucket >= INSTANCE_BUCKETS)
957 return NULL;
958
9368a53c
G
959 log = nfnl_log_pernet(net);
960 head = &log->instance_table[st->bucket];
961 h = rcu_dereference_bh(hlist_first_rcu(head));
0597f268
HW
962 }
963 return h;
964}
965
9368a53c
G
966static struct hlist_node *get_idx(struct net *net, struct iter_state *st,
967 loff_t pos)
0597f268
HW
968{
969 struct hlist_node *head;
9368a53c 970 head = get_first(net, st);
0597f268
HW
971
972 if (head)
9368a53c 973 while (pos && (head = get_next(net, st, head)))
0597f268
HW
974 pos--;
975 return pos ? NULL : head;
976}
977
9368a53c 978static void *seq_start(struct seq_file *s, loff_t *pos)
bed1be20 979 __acquires(rcu_bh)
0597f268 980{
bed1be20 981 rcu_read_lock_bh();
9368a53c 982 return get_idx(seq_file_net(s), s->private, *pos);
0597f268
HW
983}
984
985static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
986{
987 (*pos)++;
9368a53c 988 return get_next(seq_file_net(s), s->private, v);
0597f268
HW
989}
990
991static void seq_stop(struct seq_file *s, void *v)
bed1be20 992 __releases(rcu_bh)
0597f268 993{
bed1be20 994 rcu_read_unlock_bh();
0597f268
HW
995}
996
997static int seq_show(struct seq_file *s, void *v)
998{
999 const struct nfulnl_instance *inst = v;
1000
601e68e1 1001 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
0597f268 1002 inst->group_num,
15e47304 1003 inst->peer_portid, inst->qlen,
0597f268
HW
1004 inst->copy_mode, inst->copy_range,
1005 inst->flushtimeout, atomic_read(&inst->use));
1006}
1007
56b3d975 1008static const struct seq_operations nful_seq_ops = {
0597f268
HW
1009 .start = seq_start,
1010 .next = seq_next,
1011 .stop = seq_stop,
1012 .show = seq_show,
1013};
1014
1015static int nful_open(struct inode *inode, struct file *file)
1016{
9368a53c
G
1017 return seq_open_net(inode, file, &nful_seq_ops,
1018 sizeof(struct iter_state));
0597f268
HW
1019}
1020
da7071d7 1021static const struct file_operations nful_file_ops = {
0597f268
HW
1022 .owner = THIS_MODULE,
1023 .open = nful_open,
1024 .read = seq_read,
1025 .llseek = seq_lseek,
9368a53c 1026 .release = seq_release_net,
0597f268
HW
1027};
1028
1029#endif /* PROC_FS */
1030
9368a53c 1031static int __net_init nfnl_log_net_init(struct net *net)
0597f268 1032{
9368a53c
G
1033 unsigned int i;
1034 struct nfnl_log_net *log = nfnl_log_pernet(net);
601e68e1 1035
0597f268 1036 for (i = 0; i < INSTANCE_BUCKETS; i++)
9368a53c
G
1037 INIT_HLIST_HEAD(&log->instance_table[i]);
1038 spin_lock_init(&log->instances_lock);
1039
1040#ifdef CONFIG_PROC_FS
1041 if (!proc_create("nfnetlink_log", 0440,
1042 net->nf.proc_netfilter, &nful_file_ops))
1043 return -ENOMEM;
1044#endif
1045 return 0;
1046}
1047
1048static void __net_exit nfnl_log_net_exit(struct net *net)
1049{
e778f56e 1050#ifdef CONFIG_PROC_FS
9368a53c 1051 remove_proc_entry("nfnetlink_log", net->nf.proc_netfilter);
e778f56e 1052#endif
45c2aff6 1053 nf_log_unset(net, &nfulnl_logger);
9368a53c
G
1054}
1055
1056static struct pernet_operations nfnl_log_net_ops = {
1057 .init = nfnl_log_net_init,
1058 .exit = nfnl_log_net_exit,
1059 .id = &nfnl_log_net_id,
1060 .size = sizeof(struct nfnl_log_net),
1061};
1062
1063static int __init nfnetlink_log_init(void)
1064{
1065 int status = -ENOMEM;
601e68e1 1066
0597f268
HW
1067 netlink_register_notifier(&nfulnl_rtnl_notifier);
1068 status = nfnetlink_subsys_register(&nfulnl_subsys);
1069 if (status < 0) {
9368a53c 1070 pr_err("log: failed to create netlink socket\n");
0597f268
HW
1071 goto cleanup_netlink_notifier;
1072 }
1073
ca735b3a
EL
1074 status = nf_log_register(NFPROTO_UNSPEC, &nfulnl_logger);
1075 if (status < 0) {
9368a53c 1076 pr_err("log: failed to register logger\n");
ca735b3a
EL
1077 goto cleanup_subsys;
1078 }
1079
9368a53c
G
1080 status = register_pernet_subsys(&nfnl_log_net_ops);
1081 if (status < 0) {
1082 pr_err("log: failed to register pernet ops\n");
ca735b3a 1083 goto cleanup_logger;
6fc09f10 1084 }
0597f268
HW
1085 return status;
1086
ca735b3a
EL
1087cleanup_logger:
1088 nf_log_unregister(&nfulnl_logger);
0597f268 1089cleanup_subsys:
0597f268
HW
1090 nfnetlink_subsys_unregister(&nfulnl_subsys);
1091cleanup_netlink_notifier:
1092 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
1093 return status;
1094}
1095
65b4b4e8 1096static void __exit nfnetlink_log_fini(void)
0597f268 1097{
9368a53c 1098 unregister_pernet_subsys(&nfnl_log_net_ops);
e92ad99c 1099 nf_log_unregister(&nfulnl_logger);
32292a7f
PM
1100 nfnetlink_subsys_unregister(&nfulnl_subsys);
1101 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
0597f268
HW
1102}
1103
1104MODULE_DESCRIPTION("netfilter userspace logging");
1105MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1106MODULE_LICENSE("GPL");
f682faef 1107MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
0597f268 1108
65b4b4e8
AM
1109module_init(nfnetlink_log_init);
1110module_exit(nfnetlink_log_fini);