blob: 5013cb97ce2ba82c481023ba552461f5185bbc8d [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>
Harald Welte0597f262005-08-09 19:58:39 -070033
34#include <asm/atomic.h>
35
Harald Weltefbcd9232005-08-09 20:22:10 -070036#ifdef CONFIG_BRIDGE_NETFILTER
37#include "../bridge/br_private.h"
38#endif
39
Holger Eitzenbergerc2db2922006-02-04 02:13:14 -080040#define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070041#define NFULNL_TIMEOUT_DEFAULT HZ /* every second */
Harald Welte0597f262005-08-09 19:58:39 -070042#define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */
Michal Miroslaw6b6ec992007-09-28 14:45:52 -070043#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 -070044
45#define PRINTR(x, args...) do { if (net_ratelimit()) \
46 printk(x, ## args); } while (0);
47
Harald Welte0597f262005-08-09 19:58:39 -070048struct nfulnl_instance {
49 struct hlist_node hlist; /* global list of instances */
50 spinlock_t lock;
51 atomic_t use; /* use count */
52
53 unsigned int qlen; /* number of nlmsgs in skb */
54 struct sk_buff *skb; /* pre-allocatd skb */
Harald Welte0597f262005-08-09 19:58:39 -070055 struct timer_list timer;
56 int peer_pid; /* PID of the peer process */
57
58 /* configurable parameters */
59 unsigned int flushtimeout; /* timeout until queue flush */
60 unsigned int nlbufsiz; /* netlink buffer allocation size */
61 unsigned int qthreshold; /* threshold of the queue */
62 u_int32_t copy_range;
Harald Welte0af5f6c2006-03-20 17:15:11 -080063 u_int32_t seq; /* instance-local sequential counter */
Harald Welte0597f262005-08-09 19:58:39 -070064 u_int16_t group_num; /* number of this queue */
Harald Welte0af5f6c2006-03-20 17:15:11 -080065 u_int16_t flags;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080066 u_int8_t copy_mode;
Harald Welte0597f262005-08-09 19:58:39 -070067};
68
69static DEFINE_RWLOCK(instances_lock);
Harald Welte0af5f6c2006-03-20 17:15:11 -080070static atomic_t global_seq;
Harald Welte0597f262005-08-09 19:58:39 -070071
72#define INSTANCE_BUCKETS 16
73static struct hlist_head instance_table[INSTANCE_BUCKETS];
74static unsigned int hash_init;
75
76static inline u_int8_t instance_hashfn(u_int16_t group_num)
77{
78 return ((group_num & 0xff) % INSTANCE_BUCKETS);
79}
80
81static struct nfulnl_instance *
82__instance_lookup(u_int16_t group_num)
83{
84 struct hlist_head *head;
85 struct hlist_node *pos;
86 struct nfulnl_instance *inst;
87
Harald Welte0597f262005-08-09 19:58:39 -070088 head = &instance_table[instance_hashfn(group_num)];
89 hlist_for_each_entry(inst, pos, head, hlist) {
90 if (inst->group_num == group_num)
91 return inst;
92 }
93 return NULL;
94}
95
96static inline void
97instance_get(struct nfulnl_instance *inst)
98{
99 atomic_inc(&inst->use);
100}
101
102static struct nfulnl_instance *
103instance_lookup_get(u_int16_t group_num)
104{
105 struct nfulnl_instance *inst;
106
107 read_lock_bh(&instances_lock);
108 inst = __instance_lookup(group_num);
109 if (inst)
110 instance_get(inst);
111 read_unlock_bh(&instances_lock);
112
113 return inst;
114}
115
116static void
117instance_put(struct nfulnl_instance *inst)
118{
119 if (inst && atomic_dec_and_test(&inst->use)) {
Harald Welte0597f262005-08-09 19:58:39 -0700120 kfree(inst);
Patrick McHardy7d90e862007-03-04 15:59:45 -0800121 module_put(THIS_MODULE);
Harald Welte0597f262005-08-09 19:58:39 -0700122 }
123}
124
125static void nfulnl_timer(unsigned long data);
126
127static struct nfulnl_instance *
128instance_create(u_int16_t group_num, int pid)
129{
130 struct nfulnl_instance *inst;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800131 int err;
Harald Welte0597f262005-08-09 19:58:39 -0700132
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800133 write_lock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700134 if (__instance_lookup(group_num)) {
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800135 err = -EEXIST;
Harald Welte0597f262005-08-09 19:58:39 -0700136 goto out_unlock;
137 }
138
Harald Welte10dfdc62005-11-03 19:20:07 +0100139 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800140 if (!inst) {
141 err = -ENOMEM;
Harald Welte0597f262005-08-09 19:58:39 -0700142 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800143 }
Harald Welte0597f262005-08-09 19:58:39 -0700144
Michal Miroslawaace57e2007-09-28 14:45:27 -0700145 if (!try_module_get(THIS_MODULE)) {
146 kfree(inst);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800147 err = -EAGAIN;
Michal Miroslawaace57e2007-09-28 14:45:27 -0700148 goto out_unlock;
149 }
150
Harald Welte0597f262005-08-09 19:58:39 -0700151 INIT_HLIST_NODE(&inst->hlist);
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800152 spin_lock_init(&inst->lock);
Harald Welte0597f262005-08-09 19:58:39 -0700153 /* needs to be two, since we _put() after creation */
154 atomic_set(&inst->use, 2);
155
Patrick McHardye6f689d2007-03-23 11:16:30 -0700156 setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst);
Harald Welte0597f262005-08-09 19:58:39 -0700157
158 inst->peer_pid = pid;
159 inst->group_num = group_num;
160
161 inst->qthreshold = NFULNL_QTHRESH_DEFAULT;
162 inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT;
163 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
164 inst->copy_mode = NFULNL_COPY_PACKET;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700165 inst->copy_range = NFULNL_COPY_RANGE_MAX;
Harald Welte0597f262005-08-09 19:58:39 -0700166
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800167 hlist_add_head(&inst->hlist,
Harald Welte0597f262005-08-09 19:58:39 -0700168 &instance_table[instance_hashfn(group_num)]);
169
Harald Welte0597f262005-08-09 19:58:39 -0700170 write_unlock_bh(&instances_lock);
171
172 return inst;
173
Harald Welte0597f262005-08-09 19:58:39 -0700174out_unlock:
175 write_unlock_bh(&instances_lock);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800176 return ERR_PTR(err);
Harald Welte0597f262005-08-09 19:58:39 -0700177}
178
Michal Miroslawe3567062007-09-28 14:44:21 -0700179static void __nfulnl_flush(struct nfulnl_instance *inst);
Harald Welte0597f262005-08-09 19:58:39 -0700180
181static void
Patrick McHardy9afdb002007-03-23 11:12:50 -0700182__instance_destroy(struct nfulnl_instance *inst)
Harald Welte0597f262005-08-09 19:58:39 -0700183{
184 /* first pull it out of the global list */
Harald Welte0597f262005-08-09 19:58:39 -0700185 hlist_del(&inst->hlist);
186
Harald Welte0597f262005-08-09 19:58:39 -0700187 /* then flush all pending packets from skb */
188
189 spin_lock_bh(&inst->lock);
Michal Miroslawe3567062007-09-28 14:44:21 -0700190 if (inst->skb)
191 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700192 spin_unlock_bh(&inst->lock);
193
194 /* and finally put the refcount */
195 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700196}
197
198static inline void
Harald Welte0597f262005-08-09 19:58:39 -0700199instance_destroy(struct nfulnl_instance *inst)
200{
Patrick McHardy9afdb002007-03-23 11:12:50 -0700201 write_lock_bh(&instances_lock);
202 __instance_destroy(inst);
203 write_unlock_bh(&instances_lock);
Harald Welte0597f262005-08-09 19:58:39 -0700204}
205
206static int
207nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode,
208 unsigned int range)
209{
210 int status = 0;
211
212 spin_lock_bh(&inst->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800213
Harald Welte0597f262005-08-09 19:58:39 -0700214 switch (mode) {
215 case NFULNL_COPY_NONE:
216 case NFULNL_COPY_META:
217 inst->copy_mode = mode;
218 inst->copy_range = 0;
219 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800220
Harald Welte0597f262005-08-09 19:58:39 -0700221 case NFULNL_COPY_PACKET:
222 inst->copy_mode = mode;
Michal Miroslaw6b6ec992007-09-28 14:45:52 -0700223 inst->copy_range = min_t(unsigned int,
224 range, NFULNL_COPY_RANGE_MAX);
Harald Welte0597f262005-08-09 19:58:39 -0700225 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800226
Harald Welte0597f262005-08-09 19:58:39 -0700227 default:
228 status = -EINVAL;
229 break;
230 }
231
232 spin_unlock_bh(&inst->lock);
233
234 return status;
235}
236
237static int
238nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz)
239{
240 int status;
241
242 spin_lock_bh(&inst->lock);
243 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
244 status = -ERANGE;
245 else if (nlbufsiz > 131072)
246 status = -ERANGE;
247 else {
248 inst->nlbufsiz = nlbufsiz;
249 status = 0;
250 }
251 spin_unlock_bh(&inst->lock);
252
253 return status;
254}
255
256static int
257nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout)
258{
259 spin_lock_bh(&inst->lock);
260 inst->flushtimeout = timeout;
261 spin_unlock_bh(&inst->lock);
262
263 return 0;
264}
265
266static int
267nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh)
268{
269 spin_lock_bh(&inst->lock);
270 inst->qthreshold = qthresh;
271 spin_unlock_bh(&inst->lock);
272
273 return 0;
274}
275
Harald Welte0af5f6c2006-03-20 17:15:11 -0800276static int
277nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags)
278{
279 spin_lock_bh(&inst->lock);
Patrick McHardyee433532006-05-19 02:17:18 -0700280 inst->flags = flags;
Harald Welte0af5f6c2006-03-20 17:15:11 -0800281 spin_unlock_bh(&inst->lock);
282
283 return 0;
284}
285
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700286static struct sk_buff *
287nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size)
Harald Welte0597f262005-08-09 19:58:39 -0700288{
289 struct sk_buff *skb;
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800290 unsigned int n;
Harald Welte0597f262005-08-09 19:58:39 -0700291
Harald Welte0597f262005-08-09 19:58:39 -0700292 /* alloc skb which should be big enough for a whole multipart
293 * message. WARNING: has to be <= 128k due to slab restrictions */
294
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800295 n = max(inst_size, pkt_size);
296 skb = alloc_skb(n, GFP_ATOMIC);
Harald Welte0597f262005-08-09 19:58:39 -0700297 if (!skb) {
298 PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n",
299 inst_size);
300
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800301 if (n > pkt_size) {
302 /* try to allocate only as much as we need for current
303 * packet */
Harald Welte0597f262005-08-09 19:58:39 -0700304
Patrick McHardyad2ad0f2006-02-04 02:13:57 -0800305 skb = alloc_skb(pkt_size, GFP_ATOMIC);
306 if (!skb)
307 PRINTR("nfnetlink_log: can't even alloc %u "
308 "bytes\n", pkt_size);
309 }
Harald Welte0597f262005-08-09 19:58:39 -0700310 }
311
312 return skb;
313}
314
315static int
316__nfulnl_send(struct nfulnl_instance *inst)
317{
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700318 int status = -1;
Harald Welte0597f262005-08-09 19:58:39 -0700319
Harald Welte0597f262005-08-09 19:58:39 -0700320 if (inst->qlen > 1)
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700321 NLMSG_PUT(inst->skb, 0, 0,
322 NLMSG_DONE,
323 sizeof(struct nfgenmsg));
Harald Welte0597f262005-08-09 19:58:39 -0700324
325 status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT);
Harald Welte0597f262005-08-09 19:58:39 -0700326
327 inst->qlen = 0;
328 inst->skb = NULL;
Harald Welte0597f262005-08-09 19:58:39 -0700329
Eric Leblond29c5d4a2007-09-18 13:07:15 -0700330nlmsg_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700331 return status;
332}
333
Michal Miroslawe3567062007-09-28 14:44:21 -0700334static void
335__nfulnl_flush(struct nfulnl_instance *inst)
336{
337 /* timer holds a reference */
338 if (del_timer(&inst->timer))
339 instance_put(inst);
340 if (inst->skb)
341 __nfulnl_send(inst);
342}
343
Michal Miroslawc6a8f642007-09-28 14:45:06 -0700344static void
345nfulnl_timer(unsigned long data)
Harald Welte0597f262005-08-09 19:58:39 -0700346{
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800347 struct nfulnl_instance *inst = (struct nfulnl_instance *)data;
Harald Welte0597f262005-08-09 19:58:39 -0700348
Harald Welte0597f262005-08-09 19:58:39 -0700349 spin_lock_bh(&inst->lock);
Michal Miroslaw370e6a82007-03-23 11:12:21 -0700350 if (inst->skb)
351 __nfulnl_send(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700352 spin_unlock_bh(&inst->lock);
Michal Miroslaw05f7b7b2007-03-04 15:58:40 -0800353 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700354}
355
Harald Welte0af5f6c2006-03-20 17:15:11 -0800356/* This is an inline function, we don't really care about a long
357 * list of arguments */
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800358static inline int
Harald Welte0597f262005-08-09 19:58:39 -0700359__build_packet_message(struct nfulnl_instance *inst,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800360 const struct sk_buff *skb,
Harald Welte0597f262005-08-09 19:58:39 -0700361 unsigned int data_len,
362 unsigned int pf,
363 unsigned int hooknum,
364 const struct net_device *indev,
365 const struct net_device *outdev,
366 const struct nf_loginfo *li,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100367 const char *prefix, unsigned int plen)
Harald Welte0597f262005-08-09 19:58:39 -0700368{
Harald Welte0597f262005-08-09 19:58:39 -0700369 struct nfulnl_msg_packet_hdr pmsg;
370 struct nlmsghdr *nlh;
371 struct nfgenmsg *nfmsg;
Al Viro98a4a862006-11-08 00:26:51 -0800372 __be32 tmp_uint;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700373 sk_buff_data_t old_tail = inst->skb->tail;
Harald Welte0597f262005-08-09 19:58:39 -0700374
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800375 nlh = NLMSG_PUT(inst->skb, 0, 0,
Harald Welte0597f262005-08-09 19:58:39 -0700376 NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET,
377 sizeof(struct nfgenmsg));
378 nfmsg = NLMSG_DATA(nlh);
379 nfmsg->nfgen_family = pf;
380 nfmsg->version = NFNETLINK_V0;
381 nfmsg->res_id = htons(inst->group_num);
382
Al Virofebf0a42006-11-03 00:59:17 -0800383 pmsg.hw_protocol = skb->protocol;
Harald Welte0597f262005-08-09 19:58:39 -0700384 pmsg.hook = hooknum;
385
Patrick McHardydf6fb862007-09-28 14:37:03 -0700386 NLA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg);
Harald Welte0597f262005-08-09 19:58:39 -0700387
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100388 if (prefix)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700389 NLA_PUT(inst->skb, NFULA_PREFIX, plen, prefix);
Harald Welte0597f262005-08-09 19:58:39 -0700390
391 if (indev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700392#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800393 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_INDEV,
394 htonl(indev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700395#else
396 if (pf == PF_BRIDGE) {
397 /* Case 1: outdev is physical input device, we need to
398 * look for bridge group (when called from
399 * netfilter_bridge) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800400 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
401 htonl(indev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700402 /* this is the bridge group "brX" */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800403 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_INDEV,
404 htonl(indev->br_port->br->dev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700405 } else {
406 /* Case 2: indev is bridge group, we need to look for
407 * physical device (when called from ipv4) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800408 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_INDEV,
409 htonl(indev->ifindex));
410 if (skb->nf_bridge && skb->nf_bridge->physindev)
411 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSINDEV,
412 htonl(skb->nf_bridge->physindev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700413 }
414#endif
Harald Welte0597f262005-08-09 19:58:39 -0700415 }
416
417 if (outdev) {
418 tmp_uint = htonl(outdev->ifindex);
Harald Weltefbcd9232005-08-09 20:22:10 -0700419#ifndef CONFIG_BRIDGE_NETFILTER
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800420 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_OUTDEV,
421 htonl(outdev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700422#else
423 if (pf == PF_BRIDGE) {
424 /* Case 1: outdev is physical output device, we need to
425 * look for bridge group (when called from
426 * netfilter_bridge) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800427 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
428 htonl(outdev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700429 /* this is the bridge group "brX" */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800430 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_OUTDEV,
431 htonl(outdev->br_port->br->dev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700432 } else {
433 /* Case 2: indev is a bridge group, we need to look
434 * for physical device (when called from ipv4) */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800435 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_OUTDEV,
436 htonl(outdev->ifindex));
437 if (skb->nf_bridge && skb->nf_bridge->physoutdev)
438 NLA_PUT_BE32(inst->skb, NFULA_IFINDEX_PHYSOUTDEV,
439 htonl(skb->nf_bridge->physoutdev->ifindex));
Harald Weltefbcd9232005-08-09 20:22:10 -0700440 }
441#endif
Harald Welte0597f262005-08-09 19:58:39 -0700442 }
443
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800444 if (skb->mark)
445 NLA_PUT_BE32(inst->skb, NFULA_MARK, htonl(skb->mark));
Harald Welte0597f262005-08-09 19:58:39 -0700446
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700447 if (indev && skb->dev) {
Harald Welte0597f262005-08-09 19:58:39 -0700448 struct nfulnl_msg_packet_hw phw;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700449 int len = dev_parse_header(skb, phw.hw_addr);
450 if (len > 0) {
451 phw.hw_addrlen = htons(len);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700452 NLA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700453 }
Harald Welte0597f262005-08-09 19:58:39 -0700454 }
455
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700456 if (skb->tstamp.tv64) {
Harald Welte0597f262005-08-09 19:58:39 -0700457 struct nfulnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700458 struct timeval tv = ktime_to_timeval(skb->tstamp);
459 ts.sec = cpu_to_be64(tv.tv_sec);
460 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte0597f262005-08-09 19:58:39 -0700461
Patrick McHardydf6fb862007-09-28 14:37:03 -0700462 NLA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts);
Harald Welte0597f262005-08-09 19:58:39 -0700463 }
464
465 /* UID */
466 if (skb->sk) {
467 read_lock_bh(&skb->sk->sk_callback_lock);
468 if (skb->sk->sk_socket && skb->sk->sk_socket->file) {
Al Viro98a4a862006-11-08 00:26:51 -0800469 __be32 uid = htonl(skb->sk->sk_socket->file->f_uid);
Patrick McHardy76aa1ce2007-12-17 22:41:52 -0800470 __be32 gid = htons(skb->sk->sk_socket->file->f_gid);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700471 /* need to unlock here since NLA_PUT may goto */
Harald Welte0597f262005-08-09 19:58:39 -0700472 read_unlock_bh(&skb->sk->sk_callback_lock);
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800473 NLA_PUT_BE32(inst->skb, NFULA_UID, uid);
Patrick McHardy76aa1ce2007-12-17 22:41:52 -0800474 NLA_PUT_BE32(inst->skb, NFULA_GID, gid);
Harald Welte0597f262005-08-09 19:58:39 -0700475 } else
476 read_unlock_bh(&skb->sk->sk_callback_lock);
477 }
478
Harald Welte0af5f6c2006-03-20 17:15:11 -0800479 /* local sequence number */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800480 if (inst->flags & NFULNL_CFG_F_SEQ)
481 NLA_PUT_BE32(inst->skb, NFULA_SEQ, htonl(inst->seq++));
482
Harald Welte0af5f6c2006-03-20 17:15:11 -0800483 /* global sequence number */
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800484 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
485 NLA_PUT_BE32(inst->skb, NFULA_SEQ_GLOBAL,
486 htonl(atomic_inc_return(&global_seq)));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800487
Harald Welte0597f262005-08-09 19:58:39 -0700488 if (data_len) {
Patrick McHardydf6fb862007-09-28 14:37:03 -0700489 struct nlattr *nla;
490 int size = nla_attr_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700491
Patrick McHardydf6fb862007-09-28 14:37:03 -0700492 if (skb_tailroom(inst->skb) < nla_total_size(data_len)) {
Harald Welte0597f262005-08-09 19:58:39 -0700493 printk(KERN_WARNING "nfnetlink_log: no tailroom!\n");
494 goto nlmsg_failure;
495 }
496
Patrick McHardydf6fb862007-09-28 14:37:03 -0700497 nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len));
498 nla->nla_type = NFULA_PAYLOAD;
499 nla->nla_len = size;
Harald Welte0597f262005-08-09 19:58:39 -0700500
Patrick McHardydf6fb862007-09-28 14:37:03 -0700501 if (skb_copy_bits(skb, 0, nla_data(nla), data_len))
Harald Welte0597f262005-08-09 19:58:39 -0700502 BUG();
503 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800504
Harald Welte0597f262005-08-09 19:58:39 -0700505 nlh->nlmsg_len = inst->skb->tail - old_tail;
506 return 0;
507
508nlmsg_failure:
Patrick McHardydf6fb862007-09-28 14:37:03 -0700509nla_put_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700510 PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n");
511 return -1;
512}
513
514#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
515
516static struct nf_loginfo default_loginfo = {
517 .type = NF_LOG_TYPE_ULOG,
518 .u = {
519 .ulog = {
520 .copy_len = 0xffff,
521 .group = 0,
522 .qthreshold = 1,
523 },
524 },
525};
526
527/* log handler for internal netfilter logging api */
528static void
529nfulnl_log_packet(unsigned int pf,
530 unsigned int hooknum,
531 const struct sk_buff *skb,
532 const struct net_device *in,
533 const struct net_device *out,
534 const struct nf_loginfo *li_user,
535 const char *prefix)
536{
537 unsigned int size, data_len;
538 struct nfulnl_instance *inst;
539 const struct nf_loginfo *li;
540 unsigned int qthreshold;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100541 unsigned int plen;
Harald Welte0597f262005-08-09 19:58:39 -0700542
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800543 if (li_user && li_user->type == NF_LOG_TYPE_ULOG)
Harald Welte0597f262005-08-09 19:58:39 -0700544 li = li_user;
545 else
546 li = &default_loginfo;
547
548 inst = instance_lookup_get(li->u.ulog.group);
549 if (!inst)
Harald Welte0597f262005-08-09 19:58:39 -0700550 return;
Harald Welte0597f262005-08-09 19:58:39 -0700551
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100552 plen = 0;
553 if (prefix)
Patrick McHardy881dbfe2007-03-06 20:24:35 -0800554 plen = strlen(prefix) + 1;
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100555
Harald Welte0597f262005-08-09 19:58:39 -0700556 /* FIXME: do we want to make the size calculation conditional based on
557 * what is actually present? way more branches and checks, but more
558 * memory efficient... */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700559 size = NLMSG_ALIGN(sizeof(struct nfgenmsg))
560 + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr))
561 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
562 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700563#ifdef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700564 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
565 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700566#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700567 + nla_total_size(sizeof(u_int32_t)) /* mark */
568 + nla_total_size(sizeof(u_int32_t)) /* uid */
Patrick McHardy76aa1ce2007-12-17 22:41:52 -0800569 + nla_total_size(sizeof(u_int32_t)) /* gid */
Patrick McHardydf6fb862007-09-28 14:37:03 -0700570 + nla_total_size(plen) /* prefix */
571 + nla_total_size(sizeof(struct nfulnl_msg_packet_hw))
572 + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp));
Harald Welte0597f262005-08-09 19:58:39 -0700573
Harald Welte0597f262005-08-09 19:58:39 -0700574 spin_lock_bh(&inst->lock);
575
Harald Welte0af5f6c2006-03-20 17:15:11 -0800576 if (inst->flags & NFULNL_CFG_F_SEQ)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700577 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800578 if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700579 size += nla_total_size(sizeof(u_int32_t));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800580
Harald Welte0597f262005-08-09 19:58:39 -0700581 qthreshold = inst->qthreshold;
582 /* per-rule qthreshold overrides per-instance */
583 if (qthreshold > li->u.ulog.qthreshold)
584 qthreshold = li->u.ulog.qthreshold;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800585
Harald Welte0597f262005-08-09 19:58:39 -0700586 switch (inst->copy_mode) {
587 case NFULNL_COPY_META:
588 case NFULNL_COPY_NONE:
589 data_len = 0;
590 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800591
Harald Welte0597f262005-08-09 19:58:39 -0700592 case NFULNL_COPY_PACKET:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800593 if (inst->copy_range == 0
Harald Welte0597f262005-08-09 19:58:39 -0700594 || inst->copy_range > skb->len)
595 data_len = skb->len;
596 else
597 data_len = inst->copy_range;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800598
Patrick McHardydf6fb862007-09-28 14:37:03 -0700599 size += nla_total_size(data_len);
Harald Welte0597f262005-08-09 19:58:39 -0700600 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800601
Harald Welte0597f262005-08-09 19:58:39 -0700602 default:
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700603 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700604 }
605
Michal Miroslawd63b0432007-09-28 14:44:44 -0700606 if (inst->skb &&
607 size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) {
Harald Welte0597f262005-08-09 19:58:39 -0700608 /* either the queue len is too high or we don't have
609 * enough room in the skb left. flush to userspace. */
Michal Miroslawe3567062007-09-28 14:44:21 -0700610 __nfulnl_flush(inst);
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700611 }
Harald Welte0597f262005-08-09 19:58:39 -0700612
Michal Miroslaw55b5a912007-03-23 11:11:05 -0700613 if (!inst->skb) {
614 inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size);
615 if (!inst->skb)
Harald Welte0597f262005-08-09 19:58:39 -0700616 goto alloc_failure;
Harald Welte0597f262005-08-09 19:58:39 -0700617 }
618
Harald Welte0597f262005-08-09 19:58:39 -0700619 inst->qlen++;
620
621 __build_packet_message(inst, skb, data_len, pf,
Patrick McHardyd7a5c322006-11-29 02:35:34 +0100622 hooknum, in, out, li, prefix, plen);
Harald Welte0597f262005-08-09 19:58:39 -0700623
Michal Miroslawd63b0432007-09-28 14:44:44 -0700624 if (inst->qlen >= qthreshold)
625 __nfulnl_flush(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700626 /* timer_pending always called within inst->lock, so there
627 * is no chance of a race here */
Michal Miroslawd63b0432007-09-28 14:44:44 -0700628 else if (!timer_pending(&inst->timer)) {
Harald Welte0597f262005-08-09 19:58:39 -0700629 instance_get(inst);
630 inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100);
631 add_timer(&inst->timer);
632 }
Harald Welte0597f262005-08-09 19:58:39 -0700633
Michal Miroslawed32abe2007-03-04 15:58:15 -0800634unlock_and_release:
635 spin_unlock_bh(&inst->lock);
636 instance_put(inst);
Harald Welte0597f262005-08-09 19:58:39 -0700637 return;
638
639alloc_failure:
Harald Welte0597f262005-08-09 19:58:39 -0700640 /* FIXME: statistics */
Michal Miroslawed32abe2007-03-04 15:58:15 -0800641 goto unlock_and_release;
Harald Welte0597f262005-08-09 19:58:39 -0700642}
643
644static int
645nfulnl_rcv_nl_event(struct notifier_block *this,
646 unsigned long event, void *ptr)
647{
648 struct netlink_notify *n = ptr;
649
650 if (event == NETLINK_URELEASE &&
651 n->protocol == NETLINK_NETFILTER && n->pid) {
652 int i;
653
654 /* destroy all instances for this pid */
655 write_lock_bh(&instances_lock);
656 for (i = 0; i < INSTANCE_BUCKETS; i++) {
657 struct hlist_node *tmp, *t2;
658 struct nfulnl_instance *inst;
659 struct hlist_head *head = &instance_table[i];
660
661 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200662 if ((n->net == &init_net) &&
663 (n->pid == inst->peer_pid))
Harald Welte0597f262005-08-09 19:58:39 -0700664 __instance_destroy(inst);
665 }
666 }
667 write_unlock_bh(&instances_lock);
668 }
669 return NOTIFY_DONE;
670}
671
672static struct notifier_block nfulnl_rtnl_notifier = {
673 .notifier_call = nfulnl_rcv_nl_event,
674};
675
676static int
677nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardydf6fb862007-09-28 14:37:03 -0700678 struct nlmsghdr *nlh, struct nlattr *nfqa[])
Harald Welte0597f262005-08-09 19:58:39 -0700679{
680 return -ENOTSUPP;
681}
682
Patrick McHardy7b2f9632007-12-17 22:39:08 -0800683static const struct nf_logger nfulnl_logger = {
Harald Welte0597f262005-08-09 19:58:39 -0700684 .name = "nfnetlink_log",
685 .logfn = &nfulnl_log_packet,
686 .me = THIS_MODULE,
687};
688
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700689static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = {
690 [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) },
691 [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) },
692 [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 },
693 [NFULA_CFG_QTHRESH] = { .type = NLA_U32 },
694 [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 },
695 [NFULA_CFG_FLAGS] = { .type = NLA_U16 },
Harald Welte0597f262005-08-09 19:58:39 -0700696};
697
698static int
699nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardydf6fb862007-09-28 14:37:03 -0700700 struct nlmsghdr *nlh, struct nlattr *nfula[])
Harald Welte0597f262005-08-09 19:58:39 -0700701{
702 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
703 u_int16_t group_num = ntohs(nfmsg->res_id);
704 struct nfulnl_instance *inst;
705 int ret = 0;
706
Harald Welte0597f262005-08-09 19:58:39 -0700707 inst = instance_lookup_get(group_num);
Patrick McHardyc05063652007-12-17 22:39:55 -0800708 if (inst && inst->peer_pid != NETLINK_CB(skb).pid) {
709 ret = -EPERM;
710 goto out_put;
711 }
712
Patrick McHardydf6fb862007-09-28 14:37:03 -0700713 if (nfula[NFULA_CFG_CMD]) {
Harald Welte0597f262005-08-09 19:58:39 -0700714 u_int8_t pf = nfmsg->nfgen_family;
715 struct nfulnl_msg_config_cmd *cmd;
Patrick McHardyc05063652007-12-17 22:39:55 -0800716
Patrick McHardydf6fb862007-09-28 14:37:03 -0700717 cmd = nla_data(nfula[NFULA_CFG_CMD]);
Harald Welte0597f262005-08-09 19:58:39 -0700718
719 switch (cmd->command) {
720 case NFULNL_CFG_CMD_BIND:
721 if (inst) {
722 ret = -EBUSY;
723 goto out_put;
724 }
725
726 inst = instance_create(group_num,
727 NETLINK_CB(skb).pid);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800728 if (IS_ERR(inst)) {
729 ret = PTR_ERR(inst);
Michal Miroslawf414c162007-03-23 11:11:31 -0700730 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700731 }
732 break;
733 case NFULNL_CFG_CMD_UNBIND:
734 if (!inst) {
735 ret = -ENODEV;
Michal Miroslawf414c162007-03-23 11:11:31 -0700736 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700737 }
738
Harald Welte0597f262005-08-09 19:58:39 -0700739 instance_destroy(inst);
Michal Miroslaw9a36e8c2007-03-23 11:11:48 -0700740 goto out;
Harald Welte0597f262005-08-09 19:58:39 -0700741 case NFULNL_CFG_CMD_PF_BIND:
Harald Welte0597f262005-08-09 19:58:39 -0700742 ret = nf_log_register(pf, &nfulnl_logger);
743 break;
744 case NFULNL_CFG_CMD_PF_UNBIND:
Harald Welte0597f262005-08-09 19:58:39 -0700745 /* This is a bug and a feature. We cannot unregister
746 * other handlers, like nfnetlink_inst can */
747 nf_log_unregister_pf(pf);
748 break;
749 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -0800750 ret = -ENOTSUPP;
Harald Welte0597f262005-08-09 19:58:39 -0700751 break;
752 }
Harald Welte0597f262005-08-09 19:58:39 -0700753 }
754
Patrick McHardydf6fb862007-09-28 14:37:03 -0700755 if (nfula[NFULA_CFG_MODE]) {
Harald Welte0597f262005-08-09 19:58:39 -0700756 struct nfulnl_msg_config_mode *params;
Patrick McHardydf6fb862007-09-28 14:37:03 -0700757 params = nla_data(nfula[NFULA_CFG_MODE]);
Harald Welte0597f262005-08-09 19:58:39 -0700758
Patrick McHardyc05063652007-12-17 22:39:55 -0800759 if (!inst) {
760 ret = -ENODEV;
761 goto out;
762 }
Harald Welte0597f262005-08-09 19:58:39 -0700763 nfulnl_set_mode(inst, params->copy_mode,
Al Virod1208b92006-11-03 00:58:41 -0800764 ntohl(params->copy_range));
Harald Welte0597f262005-08-09 19:58:39 -0700765 }
766
Patrick McHardydf6fb862007-09-28 14:37:03 -0700767 if (nfula[NFULA_CFG_TIMEOUT]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800768 __be32 timeout = nla_get_be32(nfula[NFULA_CFG_TIMEOUT]);
Harald Welte0597f262005-08-09 19:58:39 -0700769
Patrick McHardyc05063652007-12-17 22:39:55 -0800770 if (!inst) {
771 ret = -ENODEV;
772 goto out;
773 }
Harald Welte0597f262005-08-09 19:58:39 -0700774 nfulnl_set_timeout(inst, ntohl(timeout));
775 }
776
Patrick McHardydf6fb862007-09-28 14:37:03 -0700777 if (nfula[NFULA_CFG_NLBUFSIZ]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800778 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]);
Harald Welte0597f262005-08-09 19:58:39 -0700779
Patrick McHardyc05063652007-12-17 22:39:55 -0800780 if (!inst) {
781 ret = -ENODEV;
782 goto out;
783 }
Harald Welte0597f262005-08-09 19:58:39 -0700784 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
785 }
786
Patrick McHardydf6fb862007-09-28 14:37:03 -0700787 if (nfula[NFULA_CFG_QTHRESH]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800788 __be32 qthresh = nla_get_be32(nfula[NFULA_CFG_QTHRESH]);
Harald Welte0597f262005-08-09 19:58:39 -0700789
Patrick McHardyc05063652007-12-17 22:39:55 -0800790 if (!inst) {
791 ret = -ENODEV;
792 goto out;
793 }
Harald Welte0597f262005-08-09 19:58:39 -0700794 nfulnl_set_qthresh(inst, ntohl(qthresh));
795 }
796
Patrick McHardydf6fb862007-09-28 14:37:03 -0700797 if (nfula[NFULA_CFG_FLAGS]) {
Patrick McHardy0dfedd22007-12-17 22:41:35 -0800798 __be16 flags = nla_get_be16(nfula[NFULA_CFG_FLAGS]);
Patrick McHardyc05063652007-12-17 22:39:55 -0800799
800 if (!inst) {
801 ret = -ENODEV;
802 goto out;
803 }
Patrick McHardyee433532006-05-19 02:17:18 -0700804 nfulnl_set_flags(inst, ntohs(flags));
Harald Welte0af5f6c2006-03-20 17:15:11 -0800805 }
806
Harald Welte0597f262005-08-09 19:58:39 -0700807out_put:
808 instance_put(inst);
Michal Miroslawdd167042007-03-04 15:59:20 -0800809out:
Harald Welte0597f262005-08-09 19:58:39 -0700810 return ret;
811}
812
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700813static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = {
Harald Welte0597f262005-08-09 19:58:39 -0700814 [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800815 .attr_count = NFULA_MAX, },
Harald Welte0597f262005-08-09 19:58:39 -0700816 [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config,
Patrick McHardyfd8281a2007-09-28 14:39:09 -0700817 .attr_count = NFULA_CFG_MAX,
818 .policy = nfula_cfg_policy },
Harald Welte0597f262005-08-09 19:58:39 -0700819};
820
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700821static const struct nfnetlink_subsystem nfulnl_subsys = {
Harald Welte0597f262005-08-09 19:58:39 -0700822 .name = "log",
823 .subsys_id = NFNL_SUBSYS_ULOG,
824 .cb_count = NFULNL_MSG_MAX,
Harald Welte0597f262005-08-09 19:58:39 -0700825 .cb = nfulnl_cb,
826};
827
828#ifdef CONFIG_PROC_FS
829struct iter_state {
830 unsigned int bucket;
831};
832
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700833static struct hlist_node *get_first(struct iter_state *st)
Harald Welte0597f262005-08-09 19:58:39 -0700834{
Harald Welte0597f262005-08-09 19:58:39 -0700835 if (!st)
836 return NULL;
837
838 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
839 if (!hlist_empty(&instance_table[st->bucket]))
840 return instance_table[st->bucket].first;
841 }
842 return NULL;
843}
844
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700845static struct hlist_node *get_next(struct iter_state *st, struct hlist_node *h)
Harald Welte0597f262005-08-09 19:58:39 -0700846{
Harald Welte0597f262005-08-09 19:58:39 -0700847 h = h->next;
848 while (!h) {
849 if (++st->bucket >= INSTANCE_BUCKETS)
850 return NULL;
851
852 h = instance_table[st->bucket].first;
853 }
854 return h;
855}
856
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700857static struct hlist_node *get_idx(struct iter_state *st, loff_t pos)
Harald Welte0597f262005-08-09 19:58:39 -0700858{
859 struct hlist_node *head;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700860 head = get_first(st);
Harald Welte0597f262005-08-09 19:58:39 -0700861
862 if (head)
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700863 while (pos && (head = get_next(st, head)))
Harald Welte0597f262005-08-09 19:58:39 -0700864 pos--;
865 return pos ? NULL : head;
866}
867
868static void *seq_start(struct seq_file *seq, loff_t *pos)
869{
870 read_lock_bh(&instances_lock);
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700871 return get_idx(seq->private, *pos);
Harald Welte0597f262005-08-09 19:58:39 -0700872}
873
874static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
875{
876 (*pos)++;
Michal Miroslawf76cdce2007-03-23 11:12:03 -0700877 return get_next(s->private, v);
Harald Welte0597f262005-08-09 19:58:39 -0700878}
879
880static void seq_stop(struct seq_file *s, void *v)
881{
882 read_unlock_bh(&instances_lock);
883}
884
885static int seq_show(struct seq_file *s, void *v)
886{
887 const struct nfulnl_instance *inst = v;
888
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800889 return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n",
Harald Welte0597f262005-08-09 19:58:39 -0700890 inst->group_num,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800891 inst->peer_pid, inst->qlen,
Harald Welte0597f262005-08-09 19:58:39 -0700892 inst->copy_mode, inst->copy_range,
893 inst->flushtimeout, atomic_read(&inst->use));
894}
895
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700896static const struct seq_operations nful_seq_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700897 .start = seq_start,
898 .next = seq_next,
899 .stop = seq_stop,
900 .show = seq_show,
901};
902
903static int nful_open(struct inode *inode, struct file *file)
904{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700905 return seq_open_private(file, &nful_seq_ops,
906 sizeof(struct iter_state));
Harald Welte0597f262005-08-09 19:58:39 -0700907}
908
Arjan van de Venda7071d2007-02-12 00:55:36 -0800909static const struct file_operations nful_file_ops = {
Harald Welte0597f262005-08-09 19:58:39 -0700910 .owner = THIS_MODULE,
911 .open = nful_open,
912 .read = seq_read,
913 .llseek = seq_lseek,
914 .release = seq_release_private,
915};
916
917#endif /* PROC_FS */
918
Patrick McHardy32292a72006-04-06 14:11:30 -0700919static int __init nfnetlink_log_init(void)
Harald Welte0597f262005-08-09 19:58:39 -0700920{
921 int i, status = -ENOMEM;
922#ifdef CONFIG_PROC_FS
923 struct proc_dir_entry *proc_nful;
924#endif
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800925
Harald Welte0597f262005-08-09 19:58:39 -0700926 for (i = 0; i < INSTANCE_BUCKETS; i++)
927 INIT_HLIST_HEAD(&instance_table[i]);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800928
Harald Welte0597f262005-08-09 19:58:39 -0700929 /* it's not really all that important to have a random value, so
930 * we can do this from the init function, even if there hasn't
931 * been that much entropy yet */
932 get_random_bytes(&hash_init, sizeof(hash_init));
933
934 netlink_register_notifier(&nfulnl_rtnl_notifier);
935 status = nfnetlink_subsys_register(&nfulnl_subsys);
936 if (status < 0) {
937 printk(KERN_ERR "log: failed to create netlink socket\n");
938 goto cleanup_netlink_notifier;
939 }
940
941#ifdef CONFIG_PROC_FS
942 proc_nful = create_proc_entry("nfnetlink_log", 0440,
943 proc_net_netfilter);
944 if (!proc_nful)
945 goto cleanup_subsys;
946 proc_nful->proc_fops = &nful_file_ops;
947#endif
Harald Welte0597f262005-08-09 19:58:39 -0700948 return status;
949
Harald Welte0597f262005-08-09 19:58:39 -0700950#ifdef CONFIG_PROC_FS
Harald Welte0597f262005-08-09 19:58:39 -0700951cleanup_subsys:
Harald Welte0597f262005-08-09 19:58:39 -0700952 nfnetlink_subsys_unregister(&nfulnl_subsys);
Patrick McHardy32292a72006-04-06 14:11:30 -0700953#endif
Harald Welte0597f262005-08-09 19:58:39 -0700954cleanup_netlink_notifier:
955 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
956 return status;
957}
958
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800959static void __exit nfnetlink_log_fini(void)
Harald Welte0597f262005-08-09 19:58:39 -0700960{
Patrick McHardye92ad992007-02-12 11:11:55 -0800961 nf_log_unregister(&nfulnl_logger);
Patrick McHardy32292a72006-04-06 14:11:30 -0700962#ifdef CONFIG_PROC_FS
963 remove_proc_entry("nfnetlink_log", proc_net_netfilter);
964#endif
965 nfnetlink_subsys_unregister(&nfulnl_subsys);
966 netlink_unregister_notifier(&nfulnl_rtnl_notifier);
Harald Welte0597f262005-08-09 19:58:39 -0700967}
968
969MODULE_DESCRIPTION("netfilter userspace logging");
970MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
971MODULE_LICENSE("GPL");
Harald Weltef682fae2005-08-09 20:20:34 -0700972MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG);
Harald Welte0597f262005-08-09 19:58:39 -0700973
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800974module_init(nfnetlink_log_init);
975module_exit(nfnetlink_log_fini);