blob: d9b8fb8ab340b5a97e57073abdfe611f7b0c1c74 [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>
6 *
7 * Based on the old ipv4-only ipt_ULOG.c:
8 * (C) 2000-2004 by Harald Welte <laforge@netfilter.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Harald Welte0597f262005-08-09 19:58:39 -070013 */
14#include <linux/module.h>
15#include <linux/skbuff.h>
16#include <linux/init.h>
17#include <linux/ip.h>
18#include <linux/ipv6.h>
19#include <linux/netdevice.h>
20#include <linux/netfilter.h>
21#include <linux/netlink.h>
22#include <linux/netfilter/nfnetlink.h>
23#include <linux/netfilter/nfnetlink_log.h>
24#include <linux/spinlock.h>
25#include <linux/sysctl.h>
26#include <linux/proc_fs.h>
27#include <linux/security.h>
28#include <linux/list.h>
29#include <linux/jhash.h>
30#include <linux/random.h>
31#include <net/sock.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080032#include <net/netfilter/nf_log.h>
Patrick McHardyd9e15002008-11-18 12:16:52 +010033#include <net/netfilter/nfnetlink_log.h>
Harald Welte0597f262005-08-09 19:58:39 -070034
35#include <asm/atomic.h>
36
Harald Weltefbcd9232005-08-09 20:22:10 -070037#ifdef CONFIG_BRIDGE_NETFILTER
38#include "../bridge/br_private.h"
39#endif
40
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080041#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
Eric Leblond2c6764b2009-02-18 15:29:49 +010042#define NFULNL_TIMEOUT_DEFAULT 100 /* every second */
Harald Welte0597f262005-08-09 19:58:39 -070043#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070044#define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */
Harald Welte0597f262005-08-09 19:58:39 -070045
46#define PRINTR(x, args...) do { if (net_ratelimit()) \
47 printk(x, ## args); } while (0);
48
Harald Welte0597f262005-08-09 19:58:39 -070049struct nfulnl_instance {
50 struct hlist_node hlist; /* global list of instances */
51 spinlock_t lock;
52 atomic_t use; /* use count */
53
54 unsigned int qlen; /* number of nlmsgs in skb */
55 struct sk_buff *skb; /* pre-allocatd skb */
Harald Welte0597f262005-08-09 19:58:39 -070056 struct timer_list timer;
57 int peer_pid; /* PID of the peer process */
58
59 /* configurable parameters */
60 unsigned int flushtimeout; /* timeout until queue flush */
61 unsigned int nlbufsiz; /* netlink buffer allocation size */
62 unsigned int qthreshold; /* threshold of the queue */
63 u_int32_t copy_range;
Harald Welte0af5f6c2006-03-20 17:15:11 -080064 u_int32_t seq; /* instance-local sequential counter */
Harald Welte0597f262005-08-09 19:58:39 -070065 u_int16_t group_num; /* number of this queue */
Harald Welte0af5f6c2006-03-20 17:15:11 -080066 u_int16_t flags;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080067 u_int8_t copy_mode;
Harald Welte0597f262005-08-09 19:58:39 -070068};
69
70static DEFINE_RWLOCK(instances_lock);
Harald Welte0af5f6c2006-03-20 17:15:11 -080071static atomic_t global_seq;
Harald Welte0597f262005-08-09 19:58:39 -070072
73#define INSTANCE_BUCKETS 16
74static struct hlist_head instance_table[INSTANCE_BUCKETS];
75static unsigned int hash_init;
76
77static inline u_int8_t instance_hashfn(u_int16_t group_num)
78{
79 return ((group_num & 0xff) % INSTANCE_BUCKETS);
80}
81
82static struct nfulnl_instance *
83__instance_lookup(u_int16_t group_num)
84{
85 struct hlist_head *head;
86 struct hlist_node *pos;
87 struct nfulnl_instance *inst;
88
Harald Welte0597f262005-08-09 19:58:39 -070089 head = &instance_table[instance_hashfn(group_num)];
90 hlist_for_each_entry(inst, pos, head, hlist) {
91 if (inst->group_num == group_num)
92 return inst;
93 }
94 return NULL;
95}
96
97static inline void
98instance_get(struct nfulnl_instance *inst)
99{
100 atomic_inc(&inst->use);
101}
102
103static struct nfulnl_instance *
104instance_lookup_get(u_int16_t group_num)
105{
106 struct nfulnl_instance *inst;
107
108 read_lock_bh(&instances_lock);
109 inst = __instance_lookup(group_num);
110 if (inst)
111 instance_get(inst);
112 read_unlock_bh(&instances_lock);
113
114 return inst;
115}
116
117static void
118instance_put(struct nfulnl_instance *inst)
119{
120 if (inst && atomic_dec_and_test(&inst->use)) {
Harald Welte0597f262005-08-09 19:58:39 -0700121 kfree(inst);
Patrick McHardy7d90e862007-03-04 15:59:45 -0800122 module_put(THIS_MODULE);
Harald Welte0597f262005-08-09 19:58:39 -0700123 }
124}
125
126static void nfulnl_timer(unsigned long data);
127
128static struct nfulnl_instance *
129instance_create(u_int16_t group_num, int pid)
130{
131 struct nfulnl_instance *inst;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800132 int err;
Harald Welte0597f262005-08-09 19:58:39 -0700133
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800134 write_lock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700135 if (__instance_lookup(group_num)) {
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800136 err = -EEXIST;
Harald Welte0597f262005-08-09 19:58:39 -0700137 goto out_unlock;
138 }
139
Harald Welte10dfdc62005-11-03 19:20:07 +0100140 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800141 if (!inst) {
142 err = -ENOMEM;
Harald Welte0597f262005-08-09 19:58:39 -0700143 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800144 }
Harald Welte0597f262005-08-09 19:58:39 -0700145
Michal Miroslawaace57e2007-09-28 14:45:27 -0700146 if (!try_module_get(THIS_MODULE)) {
147 kfree(inst);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800148 err = -EAGAIN;
Michal Miroslawaace57e2007-09-28 14:45:27 -0700149 goto out_unlock;
150 }
151
Harald Welte0597f262005-08-09 19:58:39 -0700152 INIT_HLIST_NODE(&inst->hlist);
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800153 spin_lock_init(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700154 /* needs to be two, since we _put() after creation */
155 atomic_set(&inst->use, 2);
156
Patrick McHardye6f689d2007-03-23 11:16:30 -0700157 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
Harald Welte0597f262005-08-09 19:58:39 -0700158
159 inst->peer_pid = pid;
160 inst->group_num = group_num;
161
162 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
163 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
164 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
165 inst->copy_mode = NFULNL_COPY_PACKET;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700166 inst->copy_range = NFULNL_COPY_RANGE_MAX;
Harald Welte0597f262005-08-09 19:58:39 -0700167
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800168 hlist_add_head(&inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700169 &instance_table[instance_hashfn(group_num)]);
170
Harald Welte0597f262005-08-09 19:58:39 -0700171 write_unlock_bh(&instances_lock);
172
173 return inst;
174
Harald Welte0597f262005-08-09 19:58:39 -0700175out_unlock:
176 write_unlock_bh(&instances_lock);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800177 return ERR_PTR(err);
Harald Welte0597f262005-08-09 19:58:39 -0700178}
179
Michal Miroslawe3567062007-09-28 14:44:21 -0700180static void __nfulnl_flush(struct nfulnl_instance *inst);
Harald Welte0597f262005-08-09 19:58:39 -0700181
182static void
Patrick McHardy9afdb002007-03-23 11:12:50 -0700183__instance_destroy(struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700184{
185 /* first pull it out of the global list */
Harald Welte0597f262005-08-09 19:58:39 -0700186 hlist_del(&inst->hlist);
187
Harald Welte0597f262005-08-09 19:58:39 -0700188 /* then flush all pending packets from skb */
189
190 spin_lock_bh(&inst->lock);
Michal Miroslawe3567062007-09-28 14:44:21 -0700191 if (inst->skb)
192 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700193 spin_unlock_bh(&inst->lock);
194
195 /* and finally put the refcount */
196 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700197}
198
199static inline void
Harald Welte0597f262005-08-09 19:58:39 -0700200instance_destroy(struct nfulnl_instance *inst)
201{
Patrick McHardy9afdb002007-03-23 11:12:50 -0700202 write_lock_bh(&instances_lock);
203 __instance_destroy(inst);
204 write_unlock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700205}
206
207static int
208nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
209 unsigned int range)
210{
211 int status = 0;
212
213 spin_lock_bh(&inst->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800214
Harald Welte0597f262005-08-09 19:58:39 -0700215 switch (mode) {
216 case NFULNL_COPY_NONE:
217 case NFULNL_COPY_META:
218 inst->copy_mode = mode;
219 inst->copy_range = 0;
220 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800221
Harald Welte0597f262005-08-09 19:58:39 -0700222 case NFULNL_COPY_PACKET:
223 inst->copy_mode = mode;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700224 inst->copy_range = min_t(unsigned int,
225 range, NFULNL_COPY_RANGE_MAX);
Harald Welte0597f262005-08-09 19:58:39 -0700226 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800227
Harald Welte0597f262005-08-09 19:58:39 -0700228 default:
229 status = -EINVAL;
230 break;
231 }
232
233 spin_unlock_bh(&inst->lock);
234
235 return status;
236}
237
238static int
239nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
240{
241 int status;
242
243 spin_lock_bh(&inst->lock);
244 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
245 status = -ERANGE;
246 else if (nlbufsiz > 131072)
247 status = -ERANGE;
248 else {
249 inst->nlbufsiz = nlbufsiz;
250 status = 0;
251 }
252 spin_unlock_bh(&inst->lock);
253
254 return status;
255}
256
257static int
258nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
259{
260 spin_lock_bh(&inst->lock);
261 inst->flushtimeout = timeout;
262 spin_unlock_bh(&inst->lock);
263
264 return 0;
265}
266
267static int
268nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
269{
270 spin_lock_bh(&inst->lock);
271 inst->qthreshold = qthresh;
272 spin_unlock_bh(&inst->lock);
273
274 return 0;
275}
276
Harald Welte0af5f6c2006-03-20 17:15:11 -0800277static int
278nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
279{
280 spin_lock_bh(&inst->lock);
Patrick McHardyee433532006-05-19 02:17:18 -0700281 inst->flags = flags;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800282 spin_unlock_bh(&inst->lock);
283
284 return 0;
285}
286
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700287static struct sk_buff *
288nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size)
Harald Welte0597f262005-08-09 19:58:39 -0700289{
290 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800291 unsigned int n;
Harald Welte0597f262005-08-09 19:58:39 -0700292
Harald Welte0597f262005-08-09 19:58:39 -0700293 /* alloc skb which should be big enough for a whole multipart
294 * message. WARNING: has to be <= 128k due to slab restrictions */
295
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800296 n = max(inst_size, pkt_size);
297 skb = alloc_skb(n, GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700298 if (!skb) {
299 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
300 inst_size);
301
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800302 if (n > pkt_size) {
303 /* try to allocate only as much as we need for current
304 * packet */
Harald Welte0597f262005-08-09 19:58:39 -0700305
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800306 skb = alloc_skb(pkt_size, GFP_ATOMIC);
307 if (!skb)
308 PRINTR("nfnetlink_log: can't even alloc %u "
309 "bytes\n", pkt_size);
310 }
Harald Welte0597f262005-08-09 19:58:39 -0700311 }
312
313 return skb;
314}
315
316static int
317__nfulnl_send(struct nfulnl_instance *inst)
318{
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700319 int status = -1;
Harald Welte0597f262005-08-09 19:58:39 -0700320
Harald Welte0597f262005-08-09 19:58:39 -0700321 if (inst->qlen > 1)
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700322 NLMSG_PUT(inst->skb, 0, 0,
323 NLMSG_DONE,
324 sizeof(struct nfgenmsg));
Harald Welte0597f262005-08-09 19:58:39 -0700325
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100326 status = nfnetlink_unicast(inst->skb, &init_net, inst->peer_pid,
327 MSG_DONTWAIT);
Harald Welte0597f262005-08-09 19:58:39 -0700328
329 inst->qlen = 0;
330 inst->skb = NULL;
Harald Welte0597f262005-08-09 19:58:39 -0700331
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700332nlmsg_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700333 return status;
334}
335
Michal Miroslawe3567062007-09-28 14:44:21 -0700336static void
337__nfulnl_flush(struct nfulnl_instance *inst)
338{
339 /* timer holds a reference */
340 if (del_timer(&inst->timer))
341 instance_put(inst);
342 if (inst->skb)
343 __nfulnl_send(inst);
344}
345
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700346static void
347nfulnl_timer(unsigned long data)
Harald Welte0597f262005-08-09 19:58:39 -0700348{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800349 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
Harald Welte0597f262005-08-09 19:58:39 -0700350
Harald Welte0597f262005-08-09 19:58:39 -0700351 spin_lock_bh(&inst->lock);
Michal Miroslaw370e6a82007-03-23 11:12:21 -0700352 if (inst->skb)
353 __nfulnl_send(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700354 spin_unlock_bh(&inst->lock);
Michal Miroslaw05f7b7b2007-03-04 15:58:40 -0800355 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700356}
357
Harald Welte0af5f6c2006-03-20 17:15:11 -0800358/* This is an inline function, we don't really care about a long
359 * list of arguments */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800360static inline int
Harald Welte0597f262005-08-09 19:58:39 -0700361__build_packet_message(struct nfulnl_instance *inst,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800362 const struct sk_buff *skb,
Harald Welte0597f262005-08-09 19:58:39 -0700363 unsigned int data_len,
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200364 u_int8_t pf,
Harald Welte0597f262005-08-09 19:58:39 -0700365 unsigned int hooknum,
366 const struct net_device *indev,
367 const struct net_device *outdev,
368 const struct nf_loginfo *li,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100369 const char *prefix, unsigned int plen)
Harald Welte0597f262005-08-09 19:58:39 -0700370{
Harald Welte0597f262005-08-09 19:58:39 -0700371 struct nfulnl_msg_packet_hdr pmsg;
372 struct nlmsghdr *nlh;
373 struct nfgenmsg *nfmsg;
Al Viro98a4a862006-11-08 00:26:51 -0800374 __be32 tmp_uint;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700375 sk_buff_data_t old_tail = inst->skb->tail;
Harald Welte0597f262005-08-09 19:58:39 -0700376
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800377 nlh = NLMSG_PUT(inst->skb, 0, 0,
Harald Welte0597f262005-08-09 19:58:39 -0700378 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
379 sizeof(struct nfgenmsg));
380 nfmsg = NLMSG_DATA(nlh);
381 nfmsg->nfgen_family = pf;
382 nfmsg->version = NFNETLINK_V0;
383 nfmsg->res_id = htons(inst->group_num);
384
Al Virofebf0a42006-11-03 00:59:17 -0800385 pmsg.hw_protocol = skb->protocol;
Harald Welte0597f262005-08-09 19:58:39 -0700386 pmsg.hook = hooknum;
387
Patrick McHardydf6fb862007-09-28 14:37:03 -0700388 NLA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
Harald Welte0597f262005-08-09 19:58:39 -0700389
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100390 if (prefix)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700391 NLA_PUT(inst->skb, NFULA_PREFIX, plen, prefix);
Harald Welte0597f262005-08-09 19:58:39 -0700392
393 if (indev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700394#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800395 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_INDEV,
396 htonl(indev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700397#else
398 if (pf == PF_BRIDGE) {
399 /* Case 1: outdev is physical input device, we need to
400 * look for bridge group (when called from
401 * netfilter_bridge) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800402 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
403 htonl(indev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700404 /* this is the bridge group "brX" */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800405 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_INDEV,
406 htonl(indev->br_port->br->dev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700407 } else {
408 /* Case 2: indev is bridge group, we need to look for
409 * physical device (when called from ipv4) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800410 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_INDEV,
411 htonl(indev->ifindex));
412 if (skb->nf_bridge && skb->nf_bridge->physindev)
413 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
414 htonl(skb->nf_bridge->physindev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700415 }
416#endif
Harald Welte0597f262005-08-09 19:58:39 -0700417 }
418
419 if (outdev) {
420 tmp_uint = htonl(outdev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700421#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800422 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_OUTDEV,
423 htonl(outdev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700424#else
425 if (pf == PF_BRIDGE) {
426 /* Case 1: outdev is physical output device, we need to
427 * look for bridge group (when called from
428 * netfilter_bridge) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800429 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
430 htonl(outdev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700431 /* this is the bridge group "brX" */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800432 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_OUTDEV,
433 htonl(outdev->br_port->br->dev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700434 } else {
435 /* Case 2: indev is a bridge group, we need to look
436 * for physical device (when called from ipv4) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800437 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_OUTDEV,
438 htonl(outdev->ifindex));
439 if (skb->nf_bridge && skb->nf_bridge->physoutdev)
440 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
441 htonl(skb->nf_bridge->physoutdev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700442 }
443#endif
Harald Welte0597f262005-08-09 19:58:39 -0700444 }
445
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800446 if (skb->mark)
447 NLA_PUT_BE32(inst->skb, NFULA_MARK, htonl(skb->mark));
Harald Welte0597f262005-08-09 19:58:39 -0700448
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700449 if (indev && skb->dev) {
Harald Welte0597f262005-08-09 19:58:39 -0700450 struct nfulnl_msg_packet_hw phw;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700451 int len = dev_parse_header(skb, phw.hw_addr);
452 if (len > 0) {
453 phw.hw_addrlen = htons(len);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700454 NLA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700455 }
Harald Welte0597f262005-08-09 19:58:39 -0700456 }
457
Eric Leblond72961ec2008-07-21 10:02:35 -0700458 if (indev && skb_mac_header_was_set(skb)) {
459 NLA_PUT_BE16(inst->skb, NFULA_HWTYPE, htons(skb->dev->type));
460 NLA_PUT_BE16(inst->skb, NFULA_HWLEN,
461 htons(skb->dev->hard_header_len));
462 NLA_PUT(inst->skb, NFULA_HWHEADER, skb->dev->hard_header_len,
463 skb_mac_header(skb));
464 }
465
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700466 if (skb->tstamp.tv64) {
Harald Welte0597f262005-08-09 19:58:39 -0700467 struct nfulnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700468 struct timeval tv = ktime_to_timeval(skb->tstamp);
469 ts.sec = cpu_to_be64(tv.tv_sec);
470 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte0597f262005-08-09 19:58:39 -0700471
Patrick McHardydf6fb862007-09-28 14:37:03 -0700472 NLA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
Harald Welte0597f262005-08-09 19:58:39 -0700473 }
474
475 /* UID */
476 if (skb->sk) {
477 read_lock_bh(&skb->sk->sk_callback_lock);
478 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
David Howellsd76b0d92008-11-14 10:39:25 +1100479 struct file *file = skb->sk->sk_socket->file;
480 __be32 uid = htonl(file->f_cred->fsuid);
481 __be32 gid = htonl(file->f_cred->fsgid);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700482 /* need to unlock here since NLA_PUT may goto */
Harald Welte0597f262005-08-09 19:58:39 -0700483 read_unlock_bh(&skb->sk->sk_callback_lock);
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800484 NLA_PUT_BE32(inst->skb, NFULA_UID, uid);
Patrick McHardy76aa1ce2007-12-17 22:41:52 -0800485 NLA_PUT_BE32(inst->skb, NFULA_GID, gid);
Harald Welte0597f262005-08-09 19:58:39 -0700486 } else
487 read_unlock_bh(&skb->sk->sk_callback_lock);
488 }
489
Harald Welte0af5f6c2006-03-20 17:15:11 -0800490 /* local sequence number */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800491 if (inst->flags & NFULNL_CFG_F_SEQ)
492 NLA_PUT_BE32(inst->skb, NFULA_SEQ, htonl(inst->seq++));
493
Harald Welte0af5f6c2006-03-20 17:15:11 -0800494 /* global sequence number */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800495 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
496 NLA_PUT_BE32(inst->skb, NFULA_SEQ_GLOBAL,
497 htonl(atomic_inc_return(&global_seq)));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800498
Harald Welte0597f262005-08-09 19:58:39 -0700499 if (data_len) {
Patrick McHardydf6fb862007-09-28 14:37:03 -0700500 struct nlattr *nla;
501 int size = nla_attr_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700502
Patrick McHardydf6fb862007-09-28 14:37:03 -0700503 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
Harald Welte0597f262005-08-09 19:58:39 -0700504 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
505 goto nlmsg_failure;
506 }
507
Patrick McHardydf6fb862007-09-28 14:37:03 -0700508 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
509 nla->nla_type = NFULA_PAYLOAD;
510 nla->nla_len = size;
Harald Welte0597f262005-08-09 19:58:39 -0700511
Patrick McHardydf6fb862007-09-28 14:37:03 -0700512 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
Harald Welte0597f262005-08-09 19:58:39 -0700513 BUG();
514 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800515
Harald Welte0597f262005-08-09 19:58:39 -0700516 nlh->nlmsg_len = inst->skb->tail - old_tail;
517 return 0;
518
519nlmsg_failure:
Patrick McHardydf6fb862007-09-28 14:37:03 -0700520nla_put_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700521 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
522 return -1;
523}
524
525#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
526
527static struct nf_loginfo default_loginfo = {
528 .type = NF_LOG_TYPE_ULOG,
529 .u = {
530 .ulog = {
531 .copy_len = 0xffff,
532 .group = 0,
533 .qthreshold = 1,
534 },
535 },
536};
537
538/* log handler for internal netfilter logging api */
Eric Leblond5f7340e2008-11-04 14:21:08 +0100539void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200540nfulnl_log_packet(u_int8_t pf,
Harald Welte0597f262005-08-09 19:58:39 -0700541 unsigned int hooknum,
542 const struct sk_buff *skb,
543 const struct net_device *in,
544 const struct net_device *out,
545 const struct nf_loginfo *li_user,
546 const char *prefix)
547{
548 unsigned int size, data_len;
549 struct nfulnl_instance *inst;
550 const struct nf_loginfo *li;
551 unsigned int qthreshold;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100552 unsigned int plen;
Harald Welte0597f262005-08-09 19:58:39 -0700553
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800554 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
Harald Welte0597f262005-08-09 19:58:39 -0700555 li = li_user;
556 else
557 li = &default_loginfo;
558
559 inst = instance_lookup_get(li->u.ulog.group);
560 if (!inst)
Harald Welte0597f262005-08-09 19:58:39 -0700561 return;
Harald Welte0597f262005-08-09 19:58:39 -0700562
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100563 plen = 0;
564 if (prefix)
Patrick McHardy881dbfe2007-03-06 20:24:35 -0800565 plen = strlen(prefix) + 1;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100566
Harald Welte0597f262005-08-09 19:58:39 -0700567 /* FIXME: do we want to make the size calculation conditional based on
568 * what is actually present? way more branches and checks, but more
569 * memory efficient... */
Eric Leblond7000d382008-03-10 16:42:04 -0700570 size = NLMSG_SPACE(sizeof(struct nfgenmsg))
Patrick McHardydf6fb862007-09-28 14:37:03 -0700571 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
572 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
573 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700574#ifdef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700575 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
576 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700577#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700578 + nla_total_size(sizeof(u_int32_t)) /* mark */
579 + nla_total_size(sizeof(u_int32_t)) /* uid */
Patrick McHardy76aa1ce2007-12-17 22:41:52 -0800580 + nla_total_size(sizeof(u_int32_t)) /* gid */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700581 + nla_total_size(plen) /* prefix */
582 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
583 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp));
Harald Welte0597f262005-08-09 19:58:39 -0700584
Pablo Neira Ayusoeeff9be2009-05-27 15:49:11 +0200585 if (in && skb_mac_header_was_set(skb)) {
586 size += nla_total_size(skb->dev->hard_header_len)
587 + nla_total_size(sizeof(u_int16_t)) /* hwtype */
588 + nla_total_size(sizeof(u_int16_t)); /* hwlen */
589 }
590
Harald Welte0597f262005-08-09 19:58:39 -0700591 spin_lock_bh(&inst->lock);
592
Harald Welte0af5f6c2006-03-20 17:15:11 -0800593 if (inst->flags & NFULNL_CFG_F_SEQ)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700594 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800595 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700596 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800597
Harald Welte0597f262005-08-09 19:58:39 -0700598 qthreshold = inst->qthreshold;
599 /* per-rule qthreshold overrides per-instance */
Eric Leblond5ca431f2009-02-18 15:29:23 +0100600 if (li->u.ulog.qthreshold)
601 if (qthreshold > li->u.ulog.qthreshold)
602 qthreshold = li->u.ulog.qthreshold;
603
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800604
Harald Welte0597f262005-08-09 19:58:39 -0700605 switch (inst->copy_mode) {
606 case NFULNL_COPY_META:
607 case NFULNL_COPY_NONE:
608 data_len = 0;
609 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800610
Harald Welte0597f262005-08-09 19:58:39 -0700611 case NFULNL_COPY_PACKET:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800612 if (inst->copy_range == 0
Harald Welte0597f262005-08-09 19:58:39 -0700613 || inst->copy_range > skb->len)
614 data_len = skb->len;
615 else
616 data_len = inst->copy_range;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800617
Patrick McHardydf6fb862007-09-28 14:37:03 -0700618 size += nla_total_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700619 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800620
Harald Welte0597f262005-08-09 19:58:39 -0700621 default:
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700622 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700623 }
624
Michal Miroslawd63b0432007-09-28 14:44:44 -0700625 if (inst->skb &&
626 size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
Harald Welte0597f262005-08-09 19:58:39 -0700627 /* either the queue len is too high or we don't have
628 * enough room in the skb left. flush to userspace. */
Michal Miroslawe3567062007-09-28 14:44:21 -0700629 __nfulnl_flush(inst);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700630 }
Harald Welte0597f262005-08-09 19:58:39 -0700631
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700632 if (!inst->skb) {
633 inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size);
634 if (!inst->skb)
Harald Welte0597f262005-08-09 19:58:39 -0700635 goto alloc_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700636 }
637
Harald Welte0597f262005-08-09 19:58:39 -0700638 inst->qlen++;
639
640 __build_packet_message(inst, skb, data_len, pf,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100641 hooknum, in, out, li, prefix, plen);
Harald Welte0597f262005-08-09 19:58:39 -0700642
Michal Miroslawd63b0432007-09-28 14:44:44 -0700643 if (inst->qlen >= qthreshold)
644 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700645 /* timer_pending always called within inst->lock, so there
646 * is no chance of a race here */
Michal Miroslawd63b0432007-09-28 14:44:44 -0700647 else if (!timer_pending(&inst->timer)) {
Harald Welte0597f262005-08-09 19:58:39 -0700648 instance_get(inst);
649 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
650 add_timer(&inst->timer);
651 }
Harald Welte0597f262005-08-09 19:58:39 -0700652
Michal Miroslawed32abe2007-03-04 15:58:15 -0800653unlock_and_release:
654 spin_unlock_bh(&inst->lock);
655 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700656 return;
657
658alloc_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700659 /* FIXME: statistics */
Michal Miroslawed32abe2007-03-04 15:58:15 -0800660 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700661}
Eric Leblond5f7340e2008-11-04 14:21:08 +0100662EXPORT_SYMBOL_GPL(nfulnl_log_packet);
Harald Welte0597f262005-08-09 19:58:39 -0700663
664static int
665nfulnl_rcv_nl_event(struct notifier_block *this,
666 unsigned long event, void *ptr)
667{
668 struct netlink_notify *n = ptr;
669
Patrick McHardydee58172009-11-06 17:04:00 +0100670 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte0597f262005-08-09 19:58:39 -0700671 int i;
672
673 /* destroy all instances for this pid */
674 write_lock_bh(&instances_lock);
675 for (i = 0; i < INSTANCE_BUCKETS; i++) {
676 struct hlist_node *tmp, *t2;
677 struct nfulnl_instance *inst;
678 struct hlist_head *head = &instance_table[i];
679
680 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800681 if ((net_eq(n->net, &init_net)) &&
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200682 (n->pid == inst->peer_pid))
Harald Welte0597f262005-08-09 19:58:39 -0700683 __instance_destroy(inst);
684 }
685 }
686 write_unlock_bh(&instances_lock);
687 }
688 return NOTIFY_DONE;
689}
690
691static struct notifier_block nfulnl_rtnl_notifier = {
692 .notifier_call = nfulnl_rcv_nl_event,
693};
694
695static int
696nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200697 const struct nlmsghdr *nlh,
698 const struct nlattr * const nfqa[])
Harald Welte0597f262005-08-09 19:58:39 -0700699{
700 return -ENOTSUPP;
701}
702
Eric Leblondca735b32009-03-16 14:54:21 +0100703static struct nf_logger nfulnl_logger __read_mostly = {
Harald Welte0597f262005-08-09 19:58:39 -0700704 .name = "nfnetlink_log",
705 .logfn = &nfulnl_log_packet,
706 .me = THIS_MODULE,
707};
708
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700709static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
710 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
711 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
712 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
713 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
714 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
715 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
Harald Welte0597f262005-08-09 19:58:39 -0700716};
717
718static int
719nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200720 const struct nlmsghdr *nlh,
721 const struct nlattr * const nfula[])
Harald Welte0597f262005-08-09 19:58:39 -0700722{
723 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
724 u_int16_t group_num = ntohs(nfmsg->res_id);
725 struct nfulnl_instance *inst;
Patrick McHardyb7047a12008-03-10 16:44:13 -0700726 struct nfulnl_msg_config_cmd *cmd = NULL;
Harald Welte0597f262005-08-09 19:58:39 -0700727 int ret = 0;
728
Patrick McHardyb7047a12008-03-10 16:44:13 -0700729 if (nfula[NFULA_CFG_CMD]) {
730 u_int8_t pf = nfmsg->nfgen_family;
731 cmd = nla_data(nfula[NFULA_CFG_CMD]);
732
733 /* Commands without queue context */
734 switch (cmd->command) {
735 case NFULNL_CFG_CMD_PF_BIND:
Eric Leblondca735b32009-03-16 14:54:21 +0100736 return nf_log_bind_pf(pf, &nfulnl_logger);
Patrick McHardyb7047a12008-03-10 16:44:13 -0700737 case NFULNL_CFG_CMD_PF_UNBIND:
Eric Leblondca735b32009-03-16 14:54:21 +0100738 nf_log_unbind_pf(pf);
Patrick McHardyb7047a12008-03-10 16:44:13 -0700739 return 0;
740 }
741 }
742
Harald Welte0597f262005-08-09 19:58:39 -0700743 inst = instance_lookup_get(group_num);
Patrick McHardyc05063652007-12-17 22:39:55 -0800744 if (inst && inst->peer_pid != NETLINK_CB(skb).pid) {
745 ret = -EPERM;
746 goto out_put;
747 }
748
Patrick McHardyb7047a12008-03-10 16:44:13 -0700749 if (cmd != NULL) {
Harald Welte0597f262005-08-09 19:58:39 -0700750 switch (cmd->command) {
751 case NFULNL_CFG_CMD_BIND:
752 if (inst) {
753 ret = -EBUSY;
754 goto out_put;
755 }
756
757 inst = instance_create(group_num,
758 NETLINK_CB(skb).pid);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800759 if (IS_ERR(inst)) {
760 ret = PTR_ERR(inst);
Michal Miroslawf414c162007-03-23 11:11:31 -0700761 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700762 }
763 break;
764 case NFULNL_CFG_CMD_UNBIND:
765 if (!inst) {
766 ret = -ENODEV;
Michal Miroslawf414c162007-03-23 11:11:31 -0700767 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700768 }
769
Harald Welte0597f262005-08-09 19:58:39 -0700770 instance_destroy(inst);
Alexey Dobriyana49c6502010-02-26 17:48:40 +0100771 goto out_put;
Harald Welte0597f262005-08-09 19:58:39 -0700772 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -0800773 ret = -ENOTSUPP;
Harald Welte0597f262005-08-09 19:58:39 -0700774 break;
775 }
Harald Welte0597f262005-08-09 19:58:39 -0700776 }
777
Patrick McHardydf6fb862007-09-28 14:37:03 -0700778 if (nfula[NFULA_CFG_MODE]) {
Harald Welte0597f262005-08-09 19:58:39 -0700779 struct nfulnl_msg_config_mode *params;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700780 params = nla_data(nfula[NFULA_CFG_MODE]);
Harald Welte0597f262005-08-09 19:58:39 -0700781
Patrick McHardyc05063652007-12-17 22:39:55 -0800782 if (!inst) {
783 ret = -ENODEV;
784 goto out;
785 }
Harald Welte0597f262005-08-09 19:58:39 -0700786 nfulnl_set_mode(inst, params->copy_mode,
Al Virod1208b92006-11-03 00:58:41 -0800787 ntohl(params->copy_range));
Harald Welte0597f262005-08-09 19:58:39 -0700788 }
789
Patrick McHardydf6fb862007-09-28 14:37:03 -0700790 if (nfula[NFULA_CFG_TIMEOUT]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800791 __be32 timeout = nla_get_be32(nfula[NFULA_CFG_TIMEOUT]);
Harald Welte0597f262005-08-09 19:58:39 -0700792
Patrick McHardyc05063652007-12-17 22:39:55 -0800793 if (!inst) {
794 ret = -ENODEV;
795 goto out;
796 }
Harald Welte0597f262005-08-09 19:58:39 -0700797 nfulnl_set_timeout(inst, ntohl(timeout));
798 }
799
Patrick McHardydf6fb862007-09-28 14:37:03 -0700800 if (nfula[NFULA_CFG_NLBUFSIZ]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800801 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]);
Harald Welte0597f262005-08-09 19:58:39 -0700802
Patrick McHardyc05063652007-12-17 22:39:55 -0800803 if (!inst) {
804 ret = -ENODEV;
805 goto out;
806 }
Harald Welte0597f262005-08-09 19:58:39 -0700807 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
808 }
809
Patrick McHardydf6fb862007-09-28 14:37:03 -0700810 if (nfula[NFULA_CFG_QTHRESH]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800811 __be32 qthresh = nla_get_be32(nfula[NFULA_CFG_QTHRESH]);
Harald Welte0597f262005-08-09 19:58:39 -0700812
Patrick McHardyc05063652007-12-17 22:39:55 -0800813 if (!inst) {
814 ret = -ENODEV;
815 goto out;
816 }
Harald Welte0597f262005-08-09 19:58:39 -0700817 nfulnl_set_qthresh(inst, ntohl(qthresh));
818 }
819
Patrick McHardydf6fb862007-09-28 14:37:03 -0700820 if (nfula[NFULA_CFG_FLAGS]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800821 __be16 flags = nla_get_be16(nfula[NFULA_CFG_FLAGS]);
Patrick McHardyc05063652007-12-17 22:39:55 -0800822
823 if (!inst) {
824 ret = -ENODEV;
825 goto out;
826 }
Patrick McHardyee433532006-05-19 02:17:18 -0700827 nfulnl_set_flags(inst, ntohs(flags));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800828 }
829
Harald Welte0597f262005-08-09 19:58:39 -0700830out_put:
831 instance_put(inst);
Michal Miroslawdd167042007-03-04 15:59:20 -0800832out:
Harald Welte0597f262005-08-09 19:58:39 -0700833 return ret;
834}
835
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700836static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
Harald Welte0597f262005-08-09 19:58:39 -0700837 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800838 .attr_count = NFULA_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700839 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700840 .attr_count = NFULA_CFG_MAX,
841 .policy = nfula_cfg_policy },
Harald Welte0597f262005-08-09 19:58:39 -0700842};
843
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700844static const struct nfnetlink_subsystem nfulnl_subsys = {
Harald Welte0597f262005-08-09 19:58:39 -0700845 .name = "log",
846 .subsys_id = NFNL_SUBSYS_ULOG,
847 .cb_count = NFULNL_MSG_MAX,
Harald Welte0597f262005-08-09 19:58:39 -0700848 .cb = nfulnl_cb,
849};
850
851#ifdef CONFIG_PROC_FS
852struct iter_state {
853 unsigned int bucket;
854};
855
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700856static struct hlist_node *get_first(struct iter_state *st)
Harald Welte0597f262005-08-09 19:58:39 -0700857{
Harald Welte0597f262005-08-09 19:58:39 -0700858 if (!st)
859 return NULL;
860
861 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
862 if (!hlist_empty(&instance_table[st->bucket]))
863 return instance_table[st->bucket].first;
864 }
865 return NULL;
866}
867
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700868static struct hlist_node *get_next(struct iter_state *st, struct hlist_node *h)
Harald Welte0597f262005-08-09 19:58:39 -0700869{
Harald Welte0597f262005-08-09 19:58:39 -0700870 h = h->next;
871 while (!h) {
872 if (++st->bucket >= INSTANCE_BUCKETS)
873 return NULL;
874
875 h = instance_table[st->bucket].first;
876 }
877 return h;
878}
879
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700880static struct hlist_node *get_idx(struct iter_state *st, loff_t pos)
Harald Welte0597f262005-08-09 19:58:39 -0700881{
882 struct hlist_node *head;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700883 head = get_first(st);
Harald Welte0597f262005-08-09 19:58:39 -0700884
885 if (head)
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700886 while (pos && (head = get_next(st, head)))
Harald Welte0597f262005-08-09 19:58:39 -0700887 pos--;
888 return pos ? NULL : head;
889}
890
891static void *seq_start(struct seq_file *seq, loff_t *pos)
Stephen Hemminger4e26fe22008-01-31 04:07:51 -0800892 __acquires(instances_lock)
Harald Welte0597f262005-08-09 19:58:39 -0700893{
894 read_lock_bh(&instances_lock);
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700895 return get_idx(seq->private, *pos);
Harald Welte0597f262005-08-09 19:58:39 -0700896}
897
898static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
899{
900 (*pos)++;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700901 return get_next(s->private, v);
Harald Welte0597f262005-08-09 19:58:39 -0700902}
903
904static void seq_stop(struct seq_file *s, void *v)
Stephen Hemminger4e26fe22008-01-31 04:07:51 -0800905 __releases(instances_lock)
Harald Welte0597f262005-08-09 19:58:39 -0700906{
907 read_unlock_bh(&instances_lock);
908}
909
910static int seq_show(struct seq_file *s, void *v)
911{
912 const struct nfulnl_instance *inst = v;
913
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800914 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
Harald Welte0597f262005-08-09 19:58:39 -0700915 inst->group_num,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800916 inst->peer_pid, inst->qlen,
Harald Welte0597f262005-08-09 19:58:39 -0700917 inst->copy_mode, inst->copy_range,
918 inst->flushtimeout, atomic_read(&inst->use));
919}
920
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700921static const struct seq_operations nful_seq_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700922 .start = seq_start,
923 .next = seq_next,
924 .stop = seq_stop,
925 .show = seq_show,
926};
927
928static int nful_open(struct inode *inode, struct file *file)
929{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700930 return seq_open_private(file, &nful_seq_ops,
931 sizeof(struct iter_state));
Harald Welte0597f262005-08-09 19:58:39 -0700932}
933
Arjan van de Venda7071d2007-02-12 00:55:36 -0800934static const struct file_operations nful_file_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700935 .owner = THIS_MODULE,
936 .open = nful_open,
937 .read = seq_read,
938 .llseek = seq_lseek,
939 .release = seq_release_private,
940};
941
942#endif /* PROC_FS */
943
Patrick McHardy32292a72006-04-06 14:11:30 -0700944static int __init nfnetlink_log_init(void)
Harald Welte0597f262005-08-09 19:58:39 -0700945{
946 int i, status = -ENOMEM;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800947
Harald Welte0597f262005-08-09 19:58:39 -0700948 for (i = 0; i < INSTANCE_BUCKETS; i++)
949 INIT_HLIST_HEAD(&instance_table[i]);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800950
Harald Welte0597f262005-08-09 19:58:39 -0700951 /* it's not really all that important to have a random value, so
952 * we can do this from the init function, even if there hasn't
953 * been that much entropy yet */
954 get_random_bytes(&hash_init, sizeof(hash_init));
955
956 netlink_register_notifier(&nfulnl_rtnl_notifier);
957 status = nfnetlink_subsys_register(&nfulnl_subsys);
958 if (status < 0) {
959 printk(KERN_ERR "log: failed to create netlink socket\n");
960 goto cleanup_netlink_notifier;
961 }
962
Eric Leblondca735b32009-03-16 14:54:21 +0100963 status = nf_log_register(NFPROTO_UNSPEC, &nfulnl_logger);
964 if (status < 0) {
965 printk(KERN_ERR "log: failed to register logger\n");
966 goto cleanup_subsys;
967 }
968
Harald Welte0597f262005-08-09 19:58:39 -0700969#ifdef CONFIG_PROC_FS
Denis V. Lunev8eeee8b2008-03-27 16:55:53 -0700970 if (!proc_create("nfnetlink_log", 0440,
971 proc_net_netfilter, &nful_file_ops))
Eric Leblondca735b32009-03-16 14:54:21 +0100972 goto cleanup_logger;
Harald Welte0597f262005-08-09 19:58:39 -0700973#endif
Harald Welte0597f262005-08-09 19:58:39 -0700974 return status;
975
Harald Welte0597f262005-08-09 19:58:39 -0700976#ifdef CONFIG_PROC_FS
Eric Leblondca735b32009-03-16 14:54:21 +0100977cleanup_logger:
978 nf_log_unregister(&nfulnl_logger);
979#endif
Harald Welte0597f262005-08-09 19:58:39 -0700980cleanup_subsys:
Harald Welte0597f262005-08-09 19:58:39 -0700981 nfnetlink_subsys_unregister(&nfulnl_subsys);
982cleanup_netlink_notifier:
983 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
984 return status;
985}
986
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800987static void __exit nfnetlink_log_fini(void)
Harald Welte0597f262005-08-09 19:58:39 -0700988{
Patrick McHardye92ad992007-02-12 11:11:55 -0800989 nf_log_unregister(&nfulnl_logger);
Patrick McHardy32292a72006-04-06 14:11:30 -0700990#ifdef CONFIG_PROC_FS
991 remove_proc_entry("nfnetlink_log", proc_net_netfilter);
992#endif
993 nfnetlink_subsys_unregister(&nfulnl_subsys);
994 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
Harald Welte0597f262005-08-09 19:58:39 -0700995}
996
997MODULE_DESCRIPTION("netfilter userspace logging");
998MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
999MODULE_LICENSE("GPL");
Harald Weltef682fae2005-08-09 20:20:34 -07001000MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
Harald Welte0597f262005-08-09 19:58:39 -07001001
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001002module_init(nfnetlink_log_init);
1003module_exit(nfnetlink_log_fini);