Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 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> |
| 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 Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 13 | */ |
| 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> |
| 32 | |
| 33 | #include <asm/atomic.h> |
| 34 | |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 35 | #ifdef CONFIG_BRIDGE_NETFILTER |
| 36 | #include "../bridge/br_private.h" |
| 37 | #endif |
| 38 | |
Holger Eitzenberger | c2db292 | 2006-02-04 02:13:14 -0800 | [diff] [blame] | 39 | #define NFULNL_NLBUFSIZ_DEFAULT NLMSG_GOODSIZE |
Michal Miroslaw | 6b6ec99 | 2007-09-28 14:45:52 -0700 | [diff] [blame] | 40 | #define NFULNL_TIMEOUT_DEFAULT HZ /* every second */ |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 41 | #define NFULNL_QTHRESH_DEFAULT 100 /* 100 packets */ |
Michal Miroslaw | 6b6ec99 | 2007-09-28 14:45:52 -0700 | [diff] [blame] | 42 | #define NFULNL_COPY_RANGE_MAX 0xFFFF /* max packet size is limited by 16-bit struct nfattr nfa_len field */ |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 43 | |
| 44 | #define PRINTR(x, args...) do { if (net_ratelimit()) \ |
| 45 | printk(x, ## args); } while (0); |
| 46 | |
| 47 | #if 0 |
| 48 | #define UDEBUG(x, args ...) printk(KERN_DEBUG "%s(%d):%s(): " x, \ |
| 49 | __FILE__, __LINE__, __FUNCTION__, \ |
| 50 | ## args) |
| 51 | #else |
| 52 | #define UDEBUG(x, ...) |
| 53 | #endif |
| 54 | |
| 55 | struct nfulnl_instance { |
| 56 | struct hlist_node hlist; /* global list of instances */ |
| 57 | spinlock_t lock; |
| 58 | atomic_t use; /* use count */ |
| 59 | |
| 60 | unsigned int qlen; /* number of nlmsgs in skb */ |
| 61 | struct sk_buff *skb; /* pre-allocatd skb */ |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 62 | struct timer_list timer; |
| 63 | int peer_pid; /* PID of the peer process */ |
| 64 | |
| 65 | /* configurable parameters */ |
| 66 | unsigned int flushtimeout; /* timeout until queue flush */ |
| 67 | unsigned int nlbufsiz; /* netlink buffer allocation size */ |
| 68 | unsigned int qthreshold; /* threshold of the queue */ |
| 69 | u_int32_t copy_range; |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 70 | u_int32_t seq; /* instance-local sequential counter */ |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 71 | u_int16_t group_num; /* number of this queue */ |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 72 | u_int16_t flags; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 73 | u_int8_t copy_mode; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | static DEFINE_RWLOCK(instances_lock); |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 77 | static atomic_t global_seq; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 78 | |
| 79 | #define INSTANCE_BUCKETS 16 |
| 80 | static struct hlist_head instance_table[INSTANCE_BUCKETS]; |
| 81 | static unsigned int hash_init; |
| 82 | |
| 83 | static inline u_int8_t instance_hashfn(u_int16_t group_num) |
| 84 | { |
| 85 | return ((group_num & 0xff) % INSTANCE_BUCKETS); |
| 86 | } |
| 87 | |
| 88 | static struct nfulnl_instance * |
| 89 | __instance_lookup(u_int16_t group_num) |
| 90 | { |
| 91 | struct hlist_head *head; |
| 92 | struct hlist_node *pos; |
| 93 | struct nfulnl_instance *inst; |
| 94 | |
| 95 | UDEBUG("entering (group_num=%u)\n", group_num); |
| 96 | |
| 97 | head = &instance_table[instance_hashfn(group_num)]; |
| 98 | hlist_for_each_entry(inst, pos, head, hlist) { |
| 99 | if (inst->group_num == group_num) |
| 100 | return inst; |
| 101 | } |
| 102 | return NULL; |
| 103 | } |
| 104 | |
| 105 | static inline void |
| 106 | instance_get(struct nfulnl_instance *inst) |
| 107 | { |
| 108 | atomic_inc(&inst->use); |
| 109 | } |
| 110 | |
| 111 | static struct nfulnl_instance * |
| 112 | instance_lookup_get(u_int16_t group_num) |
| 113 | { |
| 114 | struct nfulnl_instance *inst; |
| 115 | |
| 116 | read_lock_bh(&instances_lock); |
| 117 | inst = __instance_lookup(group_num); |
| 118 | if (inst) |
| 119 | instance_get(inst); |
| 120 | read_unlock_bh(&instances_lock); |
| 121 | |
| 122 | return inst; |
| 123 | } |
| 124 | |
| 125 | static void |
| 126 | instance_put(struct nfulnl_instance *inst) |
| 127 | { |
| 128 | if (inst && atomic_dec_and_test(&inst->use)) { |
| 129 | UDEBUG("kfree(inst=%p)\n", inst); |
| 130 | kfree(inst); |
Patrick McHardy | 7d90e86 | 2007-03-04 15:59:45 -0800 | [diff] [blame] | 131 | module_put(THIS_MODULE); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 132 | } |
| 133 | } |
| 134 | |
| 135 | static void nfulnl_timer(unsigned long data); |
| 136 | |
| 137 | static struct nfulnl_instance * |
| 138 | instance_create(u_int16_t group_num, int pid) |
| 139 | { |
| 140 | struct nfulnl_instance *inst; |
| 141 | |
| 142 | UDEBUG("entering (group_num=%u, pid=%d)\n", group_num, |
| 143 | pid); |
| 144 | |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 145 | write_lock_bh(&instances_lock); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 146 | if (__instance_lookup(group_num)) { |
| 147 | inst = NULL; |
| 148 | UDEBUG("aborting, instance already exists\n"); |
| 149 | goto out_unlock; |
| 150 | } |
| 151 | |
Harald Welte | 10dfdc6 | 2005-11-03 19:20:07 +0100 | [diff] [blame] | 152 | inst = kzalloc(sizeof(*inst), GFP_ATOMIC); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 153 | if (!inst) |
| 154 | goto out_unlock; |
| 155 | |
Michal Miroslaw | aace57e | 2007-09-28 14:45:27 -0700 | [diff] [blame] | 156 | if (!try_module_get(THIS_MODULE)) { |
| 157 | kfree(inst); |
| 158 | goto out_unlock; |
| 159 | } |
| 160 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 161 | INIT_HLIST_NODE(&inst->hlist); |
YOSHIFUJI Hideaki | 181a46a | 2006-01-04 13:56:54 -0800 | [diff] [blame] | 162 | spin_lock_init(&inst->lock); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 163 | /* needs to be two, since we _put() after creation */ |
| 164 | atomic_set(&inst->use, 2); |
| 165 | |
Patrick McHardy | e6f689d | 2007-03-23 11:16:30 -0700 | [diff] [blame] | 166 | setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 167 | |
| 168 | inst->peer_pid = pid; |
| 169 | inst->group_num = group_num; |
| 170 | |
| 171 | inst->qthreshold = NFULNL_QTHRESH_DEFAULT; |
| 172 | inst->flushtimeout = NFULNL_TIMEOUT_DEFAULT; |
| 173 | inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT; |
| 174 | inst->copy_mode = NFULNL_COPY_PACKET; |
Michal Miroslaw | 6b6ec99 | 2007-09-28 14:45:52 -0700 | [diff] [blame] | 175 | inst->copy_range = NFULNL_COPY_RANGE_MAX; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 176 | |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 177 | hlist_add_head(&inst->hlist, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 178 | &instance_table[instance_hashfn(group_num)]); |
| 179 | |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 180 | UDEBUG("newly added node: %p, next=%p\n", &inst->hlist, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 181 | inst->hlist.next); |
| 182 | |
| 183 | write_unlock_bh(&instances_lock); |
| 184 | |
| 185 | return inst; |
| 186 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 187 | out_unlock: |
| 188 | write_unlock_bh(&instances_lock); |
| 189 | return NULL; |
| 190 | } |
| 191 | |
Michal Miroslaw | e356706 | 2007-09-28 14:44:21 -0700 | [diff] [blame] | 192 | static void __nfulnl_flush(struct nfulnl_instance *inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 193 | |
| 194 | static void |
Patrick McHardy | 9afdb00 | 2007-03-23 11:12:50 -0700 | [diff] [blame] | 195 | __instance_destroy(struct nfulnl_instance *inst) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 196 | { |
| 197 | /* first pull it out of the global list */ |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 198 | UDEBUG("removing instance %p (queuenum=%u) from hash\n", |
| 199 | inst, inst->group_num); |
| 200 | |
| 201 | hlist_del(&inst->hlist); |
| 202 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 203 | /* then flush all pending packets from skb */ |
| 204 | |
| 205 | spin_lock_bh(&inst->lock); |
Michal Miroslaw | e356706 | 2007-09-28 14:44:21 -0700 | [diff] [blame] | 206 | if (inst->skb) |
| 207 | __nfulnl_flush(inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 208 | spin_unlock_bh(&inst->lock); |
| 209 | |
| 210 | /* and finally put the refcount */ |
| 211 | instance_put(inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | static inline void |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 215 | instance_destroy(struct nfulnl_instance *inst) |
| 216 | { |
Patrick McHardy | 9afdb00 | 2007-03-23 11:12:50 -0700 | [diff] [blame] | 217 | write_lock_bh(&instances_lock); |
| 218 | __instance_destroy(inst); |
| 219 | write_unlock_bh(&instances_lock); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | static int |
| 223 | nfulnl_set_mode(struct nfulnl_instance *inst, u_int8_t mode, |
| 224 | unsigned int range) |
| 225 | { |
| 226 | int status = 0; |
| 227 | |
| 228 | spin_lock_bh(&inst->lock); |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 229 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 230 | switch (mode) { |
| 231 | case NFULNL_COPY_NONE: |
| 232 | case NFULNL_COPY_META: |
| 233 | inst->copy_mode = mode; |
| 234 | inst->copy_range = 0; |
| 235 | break; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 236 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 237 | case NFULNL_COPY_PACKET: |
| 238 | inst->copy_mode = mode; |
Michal Miroslaw | 6b6ec99 | 2007-09-28 14:45:52 -0700 | [diff] [blame] | 239 | inst->copy_range = min_t(unsigned int, |
| 240 | range, NFULNL_COPY_RANGE_MAX); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 241 | break; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 242 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 243 | default: |
| 244 | status = -EINVAL; |
| 245 | break; |
| 246 | } |
| 247 | |
| 248 | spin_unlock_bh(&inst->lock); |
| 249 | |
| 250 | return status; |
| 251 | } |
| 252 | |
| 253 | static int |
| 254 | nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz) |
| 255 | { |
| 256 | int status; |
| 257 | |
| 258 | spin_lock_bh(&inst->lock); |
| 259 | if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT) |
| 260 | status = -ERANGE; |
| 261 | else if (nlbufsiz > 131072) |
| 262 | status = -ERANGE; |
| 263 | else { |
| 264 | inst->nlbufsiz = nlbufsiz; |
| 265 | status = 0; |
| 266 | } |
| 267 | spin_unlock_bh(&inst->lock); |
| 268 | |
| 269 | return status; |
| 270 | } |
| 271 | |
| 272 | static int |
| 273 | nfulnl_set_timeout(struct nfulnl_instance *inst, u_int32_t timeout) |
| 274 | { |
| 275 | spin_lock_bh(&inst->lock); |
| 276 | inst->flushtimeout = timeout; |
| 277 | spin_unlock_bh(&inst->lock); |
| 278 | |
| 279 | return 0; |
| 280 | } |
| 281 | |
| 282 | static int |
| 283 | nfulnl_set_qthresh(struct nfulnl_instance *inst, u_int32_t qthresh) |
| 284 | { |
| 285 | spin_lock_bh(&inst->lock); |
| 286 | inst->qthreshold = qthresh; |
| 287 | spin_unlock_bh(&inst->lock); |
| 288 | |
| 289 | return 0; |
| 290 | } |
| 291 | |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 292 | static int |
| 293 | nfulnl_set_flags(struct nfulnl_instance *inst, u_int16_t flags) |
| 294 | { |
| 295 | spin_lock_bh(&inst->lock); |
Patrick McHardy | ee43353 | 2006-05-19 02:17:18 -0700 | [diff] [blame] | 296 | inst->flags = flags; |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 297 | spin_unlock_bh(&inst->lock); |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | |
Michal Miroslaw | c6a8f64 | 2007-09-28 14:45:06 -0700 | [diff] [blame] | 302 | static struct sk_buff * |
| 303 | nfulnl_alloc_skb(unsigned int inst_size, unsigned int pkt_size) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 304 | { |
| 305 | struct sk_buff *skb; |
Patrick McHardy | ad2ad0f | 2006-02-04 02:13:57 -0800 | [diff] [blame] | 306 | unsigned int n; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 307 | |
| 308 | UDEBUG("entered (%u, %u)\n", inst_size, pkt_size); |
| 309 | |
| 310 | /* alloc skb which should be big enough for a whole multipart |
| 311 | * message. WARNING: has to be <= 128k due to slab restrictions */ |
| 312 | |
Patrick McHardy | ad2ad0f | 2006-02-04 02:13:57 -0800 | [diff] [blame] | 313 | n = max(inst_size, pkt_size); |
| 314 | skb = alloc_skb(n, GFP_ATOMIC); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 315 | if (!skb) { |
| 316 | PRINTR("nfnetlink_log: can't alloc whole buffer (%u bytes)\n", |
| 317 | inst_size); |
| 318 | |
Patrick McHardy | ad2ad0f | 2006-02-04 02:13:57 -0800 | [diff] [blame] | 319 | if (n > pkt_size) { |
| 320 | /* try to allocate only as much as we need for current |
| 321 | * packet */ |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 322 | |
Patrick McHardy | ad2ad0f | 2006-02-04 02:13:57 -0800 | [diff] [blame] | 323 | skb = alloc_skb(pkt_size, GFP_ATOMIC); |
| 324 | if (!skb) |
| 325 | PRINTR("nfnetlink_log: can't even alloc %u " |
| 326 | "bytes\n", pkt_size); |
| 327 | } |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | return skb; |
| 331 | } |
| 332 | |
| 333 | static int |
| 334 | __nfulnl_send(struct nfulnl_instance *inst) |
| 335 | { |
Eric Leblond | 29c5d4a | 2007-09-18 13:07:15 -0700 | [diff] [blame] | 336 | int status = -1; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 337 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 338 | if (inst->qlen > 1) |
Eric Leblond | 29c5d4a | 2007-09-18 13:07:15 -0700 | [diff] [blame] | 339 | NLMSG_PUT(inst->skb, 0, 0, |
| 340 | NLMSG_DONE, |
| 341 | sizeof(struct nfgenmsg)); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 342 | |
| 343 | status = nfnetlink_unicast(inst->skb, inst->peer_pid, MSG_DONTWAIT); |
| 344 | if (status < 0) { |
| 345 | UDEBUG("netlink_unicast() failed\n"); |
| 346 | /* FIXME: statistics */ |
| 347 | } |
| 348 | |
| 349 | inst->qlen = 0; |
| 350 | inst->skb = NULL; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 351 | |
Eric Leblond | 29c5d4a | 2007-09-18 13:07:15 -0700 | [diff] [blame] | 352 | nlmsg_failure: |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 353 | return status; |
| 354 | } |
| 355 | |
Michal Miroslaw | e356706 | 2007-09-28 14:44:21 -0700 | [diff] [blame] | 356 | static void |
| 357 | __nfulnl_flush(struct nfulnl_instance *inst) |
| 358 | { |
| 359 | /* timer holds a reference */ |
| 360 | if (del_timer(&inst->timer)) |
| 361 | instance_put(inst); |
| 362 | if (inst->skb) |
| 363 | __nfulnl_send(inst); |
| 364 | } |
| 365 | |
Michal Miroslaw | c6a8f64 | 2007-09-28 14:45:06 -0700 | [diff] [blame] | 366 | static void |
| 367 | nfulnl_timer(unsigned long data) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 368 | { |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 369 | struct nfulnl_instance *inst = (struct nfulnl_instance *)data; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 370 | |
| 371 | UDEBUG("timer function called, flushing buffer\n"); |
| 372 | |
| 373 | spin_lock_bh(&inst->lock); |
Michal Miroslaw | 370e6a8 | 2007-03-23 11:12:21 -0700 | [diff] [blame] | 374 | if (inst->skb) |
| 375 | __nfulnl_send(inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 376 | spin_unlock_bh(&inst->lock); |
Michal Miroslaw | 05f7b7b | 2007-03-04 15:58:40 -0800 | [diff] [blame] | 377 | instance_put(inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 378 | } |
| 379 | |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 380 | /* This is an inline function, we don't really care about a long |
| 381 | * list of arguments */ |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 382 | static inline int |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 383 | __build_packet_message(struct nfulnl_instance *inst, |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 384 | const struct sk_buff *skb, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 385 | unsigned int data_len, |
| 386 | unsigned int pf, |
| 387 | unsigned int hooknum, |
| 388 | const struct net_device *indev, |
| 389 | const struct net_device *outdev, |
| 390 | const struct nf_loginfo *li, |
Patrick McHardy | d7a5c32 | 2006-11-29 02:35:34 +0100 | [diff] [blame] | 391 | const char *prefix, unsigned int plen) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 392 | { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 393 | struct nfulnl_msg_packet_hdr pmsg; |
| 394 | struct nlmsghdr *nlh; |
| 395 | struct nfgenmsg *nfmsg; |
Al Viro | 98a4a86 | 2006-11-08 00:26:51 -0800 | [diff] [blame] | 396 | __be32 tmp_uint; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 397 | sk_buff_data_t old_tail = inst->skb->tail; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 398 | |
| 399 | UDEBUG("entered\n"); |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 400 | |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 401 | nlh = NLMSG_PUT(inst->skb, 0, 0, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 402 | NFNL_SUBSYS_ULOG << 8 | NFULNL_MSG_PACKET, |
| 403 | sizeof(struct nfgenmsg)); |
| 404 | nfmsg = NLMSG_DATA(nlh); |
| 405 | nfmsg->nfgen_family = pf; |
| 406 | nfmsg->version = NFNETLINK_V0; |
| 407 | nfmsg->res_id = htons(inst->group_num); |
| 408 | |
Al Viro | febf0a4 | 2006-11-03 00:59:17 -0800 | [diff] [blame] | 409 | pmsg.hw_protocol = skb->protocol; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 410 | pmsg.hook = hooknum; |
| 411 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 412 | NLA_PUT(inst->skb, NFULA_PACKET_HDR, sizeof(pmsg), &pmsg); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 413 | |
Patrick McHardy | d7a5c32 | 2006-11-29 02:35:34 +0100 | [diff] [blame] | 414 | if (prefix) |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 415 | NLA_PUT(inst->skb, NFULA_PREFIX, plen, prefix); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 416 | |
| 417 | if (indev) { |
| 418 | tmp_uint = htonl(indev->ifindex); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 419 | #ifndef CONFIG_BRIDGE_NETFILTER |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 420 | NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV, sizeof(tmp_uint), |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 421 | &tmp_uint); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 422 | #else |
| 423 | if (pf == PF_BRIDGE) { |
| 424 | /* Case 1: outdev is physical input device, we need to |
| 425 | * look for bridge group (when called from |
| 426 | * netfilter_bridge) */ |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 427 | NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 428 | sizeof(tmp_uint), &tmp_uint); |
| 429 | /* this is the bridge group "brX" */ |
| 430 | tmp_uint = htonl(indev->br_port->br->dev->ifindex); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 431 | NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 432 | sizeof(tmp_uint), &tmp_uint); |
| 433 | } else { |
| 434 | /* Case 2: indev is bridge group, we need to look for |
| 435 | * physical device (when called from ipv4) */ |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 436 | NLA_PUT(inst->skb, NFULA_IFINDEX_INDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 437 | sizeof(tmp_uint), &tmp_uint); |
| 438 | if (skb->nf_bridge && skb->nf_bridge->physindev) { |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 439 | tmp_uint = |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 440 | htonl(skb->nf_bridge->physindev->ifindex); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 441 | NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSINDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 442 | sizeof(tmp_uint), &tmp_uint); |
| 443 | } |
| 444 | } |
| 445 | #endif |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | if (outdev) { |
| 449 | tmp_uint = htonl(outdev->ifindex); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 450 | #ifndef CONFIG_BRIDGE_NETFILTER |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 451 | NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, sizeof(tmp_uint), |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 452 | &tmp_uint); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 453 | #else |
| 454 | if (pf == PF_BRIDGE) { |
| 455 | /* Case 1: outdev is physical output device, we need to |
| 456 | * look for bridge group (when called from |
| 457 | * netfilter_bridge) */ |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 458 | NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 459 | sizeof(tmp_uint), &tmp_uint); |
| 460 | /* this is the bridge group "brX" */ |
| 461 | tmp_uint = htonl(outdev->br_port->br->dev->ifindex); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 462 | NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 463 | sizeof(tmp_uint), &tmp_uint); |
| 464 | } else { |
| 465 | /* Case 2: indev is a bridge group, we need to look |
| 466 | * for physical device (when called from ipv4) */ |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 467 | NLA_PUT(inst->skb, NFULA_IFINDEX_OUTDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 468 | sizeof(tmp_uint), &tmp_uint); |
Patrick McHardy | ba5dcee | 2007-03-06 20:24:53 -0800 | [diff] [blame] | 469 | if (skb->nf_bridge && skb->nf_bridge->physoutdev) { |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 470 | tmp_uint = |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 471 | htonl(skb->nf_bridge->physoutdev->ifindex); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 472 | NLA_PUT(inst->skb, NFULA_IFINDEX_PHYSOUTDEV, |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 473 | sizeof(tmp_uint), &tmp_uint); |
| 474 | } |
| 475 | } |
| 476 | #endif |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 477 | } |
| 478 | |
Thomas Graf | 82e91ff | 2006-11-09 15:19:14 -0800 | [diff] [blame] | 479 | if (skb->mark) { |
| 480 | tmp_uint = htonl(skb->mark); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 481 | NLA_PUT(inst->skb, NFULA_MARK, sizeof(tmp_uint), &tmp_uint); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 482 | } |
| 483 | |
Stephen Hemminger | b95cce3 | 2007-09-26 22:13:38 -0700 | [diff] [blame] | 484 | if (indev && skb->dev) { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 485 | struct nfulnl_msg_packet_hw phw; |
Stephen Hemminger | b95cce3 | 2007-09-26 22:13:38 -0700 | [diff] [blame] | 486 | int len = dev_parse_header(skb, phw.hw_addr); |
| 487 | if (len > 0) { |
| 488 | phw.hw_addrlen = htons(len); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 489 | NLA_PUT(inst->skb, NFULA_HWADDR, sizeof(phw), &phw); |
Stephen Hemminger | b95cce3 | 2007-09-26 22:13:38 -0700 | [diff] [blame] | 490 | } |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 491 | } |
| 492 | |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 493 | if (skb->tstamp.tv64) { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 494 | struct nfulnl_msg_packet_timestamp ts; |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 495 | struct timeval tv = ktime_to_timeval(skb->tstamp); |
| 496 | ts.sec = cpu_to_be64(tv.tv_sec); |
| 497 | ts.usec = cpu_to_be64(tv.tv_usec); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 498 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 499 | NLA_PUT(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | /* UID */ |
| 503 | if (skb->sk) { |
| 504 | read_lock_bh(&skb->sk->sk_callback_lock); |
| 505 | if (skb->sk->sk_socket && skb->sk->sk_socket->file) { |
Al Viro | 98a4a86 | 2006-11-08 00:26:51 -0800 | [diff] [blame] | 506 | __be32 uid = htonl(skb->sk->sk_socket->file->f_uid); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 507 | /* need to unlock here since NLA_PUT may goto */ |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 508 | read_unlock_bh(&skb->sk->sk_callback_lock); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 509 | NLA_PUT(inst->skb, NFULA_UID, sizeof(uid), &uid); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 510 | } else |
| 511 | read_unlock_bh(&skb->sk->sk_callback_lock); |
| 512 | } |
| 513 | |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 514 | /* local sequence number */ |
| 515 | if (inst->flags & NFULNL_CFG_F_SEQ) { |
| 516 | tmp_uint = htonl(inst->seq++); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 517 | NLA_PUT(inst->skb, NFULA_SEQ, sizeof(tmp_uint), &tmp_uint); |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 518 | } |
| 519 | /* global sequence number */ |
| 520 | if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) { |
Patrick McHardy | 7fdeaf6 | 2006-11-14 19:47:09 -0800 | [diff] [blame] | 521 | tmp_uint = htonl(atomic_inc_return(&global_seq)); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 522 | NLA_PUT(inst->skb, NFULA_SEQ_GLOBAL, sizeof(tmp_uint), &tmp_uint); |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 523 | } |
| 524 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 525 | if (data_len) { |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 526 | struct nlattr *nla; |
| 527 | int size = nla_attr_size(data_len); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 528 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 529 | if (skb_tailroom(inst->skb) < nla_total_size(data_len)) { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 530 | printk(KERN_WARNING "nfnetlink_log: no tailroom!\n"); |
| 531 | goto nlmsg_failure; |
| 532 | } |
| 533 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 534 | nla = (struct nlattr *)skb_put(inst->skb, nla_total_size(data_len)); |
| 535 | nla->nla_type = NFULA_PAYLOAD; |
| 536 | nla->nla_len = size; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 537 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 538 | if (skb_copy_bits(skb, 0, nla_data(nla), data_len)) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 539 | BUG(); |
| 540 | } |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 541 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 542 | nlh->nlmsg_len = inst->skb->tail - old_tail; |
| 543 | return 0; |
| 544 | |
| 545 | nlmsg_failure: |
| 546 | UDEBUG("nlmsg_failure\n"); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 547 | nla_put_failure: |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 548 | PRINTR(KERN_ERR "nfnetlink_log: error creating log nlmsg\n"); |
| 549 | return -1; |
| 550 | } |
| 551 | |
| 552 | #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0) |
| 553 | |
| 554 | static struct nf_loginfo default_loginfo = { |
| 555 | .type = NF_LOG_TYPE_ULOG, |
| 556 | .u = { |
| 557 | .ulog = { |
| 558 | .copy_len = 0xffff, |
| 559 | .group = 0, |
| 560 | .qthreshold = 1, |
| 561 | }, |
| 562 | }, |
| 563 | }; |
| 564 | |
| 565 | /* log handler for internal netfilter logging api */ |
| 566 | static void |
| 567 | nfulnl_log_packet(unsigned int pf, |
| 568 | unsigned int hooknum, |
| 569 | const struct sk_buff *skb, |
| 570 | const struct net_device *in, |
| 571 | const struct net_device *out, |
| 572 | const struct nf_loginfo *li_user, |
| 573 | const char *prefix) |
| 574 | { |
| 575 | unsigned int size, data_len; |
| 576 | struct nfulnl_instance *inst; |
| 577 | const struct nf_loginfo *li; |
| 578 | unsigned int qthreshold; |
Patrick McHardy | d7a5c32 | 2006-11-29 02:35:34 +0100 | [diff] [blame] | 579 | unsigned int plen; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 580 | |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 581 | if (li_user && li_user->type == NF_LOG_TYPE_ULOG) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 582 | li = li_user; |
| 583 | else |
| 584 | li = &default_loginfo; |
| 585 | |
| 586 | inst = instance_lookup_get(li->u.ulog.group); |
| 587 | if (!inst) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 588 | return; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 589 | |
Patrick McHardy | d7a5c32 | 2006-11-29 02:35:34 +0100 | [diff] [blame] | 590 | plen = 0; |
| 591 | if (prefix) |
Patrick McHardy | 881dbfe | 2007-03-06 20:24:35 -0800 | [diff] [blame] | 592 | plen = strlen(prefix) + 1; |
Patrick McHardy | d7a5c32 | 2006-11-29 02:35:34 +0100 | [diff] [blame] | 593 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 594 | /* FIXME: do we want to make the size calculation conditional based on |
| 595 | * what is actually present? way more branches and checks, but more |
| 596 | * memory efficient... */ |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 597 | size = NLMSG_ALIGN(sizeof(struct nfgenmsg)) |
| 598 | + nla_total_size(sizeof(struct nfulnl_msg_packet_hdr)) |
| 599 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
| 600 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 601 | #ifdef CONFIG_BRIDGE_NETFILTER |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 602 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
| 603 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 604 | #endif |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 605 | + nla_total_size(sizeof(u_int32_t)) /* mark */ |
| 606 | + nla_total_size(sizeof(u_int32_t)) /* uid */ |
| 607 | + nla_total_size(plen) /* prefix */ |
| 608 | + nla_total_size(sizeof(struct nfulnl_msg_packet_hw)) |
| 609 | + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp)); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 610 | |
| 611 | UDEBUG("initial size=%u\n", size); |
| 612 | |
| 613 | spin_lock_bh(&inst->lock); |
| 614 | |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 615 | if (inst->flags & NFULNL_CFG_F_SEQ) |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 616 | size += nla_total_size(sizeof(u_int32_t)); |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 617 | if (inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 618 | size += nla_total_size(sizeof(u_int32_t)); |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 619 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 620 | qthreshold = inst->qthreshold; |
| 621 | /* per-rule qthreshold overrides per-instance */ |
| 622 | if (qthreshold > li->u.ulog.qthreshold) |
| 623 | qthreshold = li->u.ulog.qthreshold; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 624 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 625 | switch (inst->copy_mode) { |
| 626 | case NFULNL_COPY_META: |
| 627 | case NFULNL_COPY_NONE: |
| 628 | data_len = 0; |
| 629 | break; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 630 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 631 | case NFULNL_COPY_PACKET: |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 632 | if (inst->copy_range == 0 |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 633 | || inst->copy_range > skb->len) |
| 634 | data_len = skb->len; |
| 635 | else |
| 636 | data_len = inst->copy_range; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 637 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 638 | size += nla_total_size(data_len); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 639 | UDEBUG("copy_packet, therefore size now %u\n", size); |
| 640 | break; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 641 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 642 | default: |
Michal Miroslaw | 55b5a91 | 2007-03-23 11:11:05 -0700 | [diff] [blame] | 643 | goto unlock_and_release; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Michal Miroslaw | d63b043 | 2007-09-28 14:44:44 -0700 | [diff] [blame] | 646 | if (inst->skb && |
| 647 | size > skb_tailroom(inst->skb) - sizeof(struct nfgenmsg)) { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 648 | /* either the queue len is too high or we don't have |
| 649 | * enough room in the skb left. flush to userspace. */ |
| 650 | UDEBUG("flushing old skb\n"); |
| 651 | |
Michal Miroslaw | e356706 | 2007-09-28 14:44:21 -0700 | [diff] [blame] | 652 | __nfulnl_flush(inst); |
Michal Miroslaw | 55b5a91 | 2007-03-23 11:11:05 -0700 | [diff] [blame] | 653 | } |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 654 | |
Michal Miroslaw | 55b5a91 | 2007-03-23 11:11:05 -0700 | [diff] [blame] | 655 | if (!inst->skb) { |
| 656 | inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size); |
| 657 | if (!inst->skb) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 658 | goto alloc_failure; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 659 | } |
| 660 | |
| 661 | UDEBUG("qlen %d, qthreshold %d\n", inst->qlen, qthreshold); |
| 662 | inst->qlen++; |
| 663 | |
| 664 | __build_packet_message(inst, skb, data_len, pf, |
Patrick McHardy | d7a5c32 | 2006-11-29 02:35:34 +0100 | [diff] [blame] | 665 | hooknum, in, out, li, prefix, plen); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 666 | |
Michal Miroslaw | d63b043 | 2007-09-28 14:44:44 -0700 | [diff] [blame] | 667 | if (inst->qlen >= qthreshold) |
| 668 | __nfulnl_flush(inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 669 | /* timer_pending always called within inst->lock, so there |
| 670 | * is no chance of a race here */ |
Michal Miroslaw | d63b043 | 2007-09-28 14:44:44 -0700 | [diff] [blame] | 671 | else if (!timer_pending(&inst->timer)) { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 672 | instance_get(inst); |
| 673 | inst->timer.expires = jiffies + (inst->flushtimeout*HZ/100); |
| 674 | add_timer(&inst->timer); |
| 675 | } |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 676 | |
Michal Miroslaw | ed32abe | 2007-03-04 15:58:15 -0800 | [diff] [blame] | 677 | unlock_and_release: |
| 678 | spin_unlock_bh(&inst->lock); |
| 679 | instance_put(inst); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 680 | return; |
| 681 | |
| 682 | alloc_failure: |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 683 | UDEBUG("error allocating skb\n"); |
| 684 | /* FIXME: statistics */ |
Michal Miroslaw | ed32abe | 2007-03-04 15:58:15 -0800 | [diff] [blame] | 685 | goto unlock_and_release; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | static int |
| 689 | nfulnl_rcv_nl_event(struct notifier_block *this, |
| 690 | unsigned long event, void *ptr) |
| 691 | { |
| 692 | struct netlink_notify *n = ptr; |
| 693 | |
| 694 | if (event == NETLINK_URELEASE && |
| 695 | n->protocol == NETLINK_NETFILTER && n->pid) { |
| 696 | int i; |
| 697 | |
| 698 | /* destroy all instances for this pid */ |
| 699 | write_lock_bh(&instances_lock); |
| 700 | for (i = 0; i < INSTANCE_BUCKETS; i++) { |
| 701 | struct hlist_node *tmp, *t2; |
| 702 | struct nfulnl_instance *inst; |
| 703 | struct hlist_head *head = &instance_table[i]; |
| 704 | |
| 705 | hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) { |
| 706 | UDEBUG("node = %p\n", inst); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 707 | if ((n->net == &init_net) && |
| 708 | (n->pid == inst->peer_pid)) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 709 | __instance_destroy(inst); |
| 710 | } |
| 711 | } |
| 712 | write_unlock_bh(&instances_lock); |
| 713 | } |
| 714 | return NOTIFY_DONE; |
| 715 | } |
| 716 | |
| 717 | static struct notifier_block nfulnl_rtnl_notifier = { |
| 718 | .notifier_call = nfulnl_rcv_nl_event, |
| 719 | }; |
| 720 | |
| 721 | static int |
| 722 | nfulnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb, |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 723 | struct nlmsghdr *nlh, struct nlattr *nfqa[]) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 724 | { |
| 725 | return -ENOTSUPP; |
| 726 | } |
| 727 | |
| 728 | static struct nf_logger nfulnl_logger = { |
| 729 | .name = "nfnetlink_log", |
| 730 | .logfn = &nfulnl_log_packet, |
| 731 | .me = THIS_MODULE, |
| 732 | }; |
| 733 | |
Patrick McHardy | fd8281a | 2007-09-28 14:39:09 -0700 | [diff] [blame] | 734 | static const struct nla_policy nfula_cfg_policy[NFULA_CFG_MAX+1] = { |
| 735 | [NFULA_CFG_CMD] = { .len = sizeof(struct nfulnl_msg_config_cmd) }, |
| 736 | [NFULA_CFG_MODE] = { .len = sizeof(struct nfulnl_msg_config_mode) }, |
| 737 | [NFULA_CFG_TIMEOUT] = { .type = NLA_U32 }, |
| 738 | [NFULA_CFG_QTHRESH] = { .type = NLA_U32 }, |
| 739 | [NFULA_CFG_NLBUFSIZ] = { .type = NLA_U32 }, |
| 740 | [NFULA_CFG_FLAGS] = { .type = NLA_U16 }, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 741 | }; |
| 742 | |
| 743 | static int |
| 744 | nfulnl_recv_config(struct sock *ctnl, struct sk_buff *skb, |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 745 | struct nlmsghdr *nlh, struct nlattr *nfula[]) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 746 | { |
| 747 | struct nfgenmsg *nfmsg = NLMSG_DATA(nlh); |
| 748 | u_int16_t group_num = ntohs(nfmsg->res_id); |
| 749 | struct nfulnl_instance *inst; |
| 750 | int ret = 0; |
| 751 | |
| 752 | UDEBUG("entering for msg %u\n", NFNL_MSG_TYPE(nlh->nlmsg_type)); |
| 753 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 754 | inst = instance_lookup_get(group_num); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 755 | if (nfula[NFULA_CFG_CMD]) { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 756 | u_int8_t pf = nfmsg->nfgen_family; |
| 757 | struct nfulnl_msg_config_cmd *cmd; |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 758 | cmd = nla_data(nfula[NFULA_CFG_CMD]); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 759 | UDEBUG("found CFG_CMD for\n"); |
| 760 | |
| 761 | switch (cmd->command) { |
| 762 | case NFULNL_CFG_CMD_BIND: |
| 763 | if (inst) { |
| 764 | ret = -EBUSY; |
| 765 | goto out_put; |
| 766 | } |
| 767 | |
| 768 | inst = instance_create(group_num, |
| 769 | NETLINK_CB(skb).pid); |
| 770 | if (!inst) { |
| 771 | ret = -EINVAL; |
Michal Miroslaw | f414c16 | 2007-03-23 11:11:31 -0700 | [diff] [blame] | 772 | goto out; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 773 | } |
| 774 | break; |
| 775 | case NFULNL_CFG_CMD_UNBIND: |
| 776 | if (!inst) { |
| 777 | ret = -ENODEV; |
Michal Miroslaw | f414c16 | 2007-03-23 11:11:31 -0700 | [diff] [blame] | 778 | goto out; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | if (inst->peer_pid != NETLINK_CB(skb).pid) { |
| 782 | ret = -EPERM; |
| 783 | goto out_put; |
| 784 | } |
| 785 | |
| 786 | instance_destroy(inst); |
Michal Miroslaw | 9a36e8c | 2007-03-23 11:11:48 -0700 | [diff] [blame] | 787 | goto out; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 788 | case NFULNL_CFG_CMD_PF_BIND: |
| 789 | UDEBUG("registering log handler for pf=%u\n", pf); |
| 790 | ret = nf_log_register(pf, &nfulnl_logger); |
| 791 | break; |
| 792 | case NFULNL_CFG_CMD_PF_UNBIND: |
| 793 | UDEBUG("unregistering log handler for pf=%u\n", pf); |
| 794 | /* This is a bug and a feature. We cannot unregister |
| 795 | * other handlers, like nfnetlink_inst can */ |
| 796 | nf_log_unregister_pf(pf); |
| 797 | break; |
| 798 | default: |
| 799 | ret = -EINVAL; |
| 800 | break; |
| 801 | } |
Michal Miroslaw | dd16704 | 2007-03-04 15:59:20 -0800 | [diff] [blame] | 802 | |
| 803 | if (!inst) |
| 804 | goto out; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 805 | } else { |
| 806 | if (!inst) { |
| 807 | UDEBUG("no config command, and no instance for " |
| 808 | "group=%u pid=%u =>ENOENT\n", |
| 809 | group_num, NETLINK_CB(skb).pid); |
| 810 | ret = -ENOENT; |
Michal Miroslaw | f414c16 | 2007-03-23 11:11:31 -0700 | [diff] [blame] | 811 | goto out; |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | if (inst->peer_pid != NETLINK_CB(skb).pid) { |
| 815 | UDEBUG("no config command, and wrong pid\n"); |
| 816 | ret = -EPERM; |
| 817 | goto out_put; |
| 818 | } |
| 819 | } |
| 820 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 821 | if (nfula[NFULA_CFG_MODE]) { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 822 | struct nfulnl_msg_config_mode *params; |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 823 | params = nla_data(nfula[NFULA_CFG_MODE]); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 824 | |
| 825 | nfulnl_set_mode(inst, params->copy_mode, |
Al Viro | d1208b9 | 2006-11-03 00:58:41 -0800 | [diff] [blame] | 826 | ntohl(params->copy_range)); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 827 | } |
| 828 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 829 | if (nfula[NFULA_CFG_TIMEOUT]) { |
Al Viro | 98a4a86 | 2006-11-08 00:26:51 -0800 | [diff] [blame] | 830 | __be32 timeout = |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 831 | *(__be32 *)nla_data(nfula[NFULA_CFG_TIMEOUT]); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 832 | |
| 833 | nfulnl_set_timeout(inst, ntohl(timeout)); |
| 834 | } |
| 835 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 836 | if (nfula[NFULA_CFG_NLBUFSIZ]) { |
Al Viro | 98a4a86 | 2006-11-08 00:26:51 -0800 | [diff] [blame] | 837 | __be32 nlbufsiz = |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 838 | *(__be32 *)nla_data(nfula[NFULA_CFG_NLBUFSIZ]); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 839 | |
| 840 | nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz)); |
| 841 | } |
| 842 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 843 | if (nfula[NFULA_CFG_QTHRESH]) { |
Al Viro | 7ac00a2 | 2006-11-03 00:58:17 -0800 | [diff] [blame] | 844 | __be32 qthresh = |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 845 | *(__be32 *)nla_data(nfula[NFULA_CFG_QTHRESH]); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 846 | |
| 847 | nfulnl_set_qthresh(inst, ntohl(qthresh)); |
| 848 | } |
| 849 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 850 | if (nfula[NFULA_CFG_FLAGS]) { |
Al Viro | 98a4a86 | 2006-11-08 00:26:51 -0800 | [diff] [blame] | 851 | __be16 flags = |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 852 | *(__be16 *)nla_data(nfula[NFULA_CFG_FLAGS]); |
Patrick McHardy | ee43353 | 2006-05-19 02:17:18 -0700 | [diff] [blame] | 853 | nfulnl_set_flags(inst, ntohs(flags)); |
Harald Welte | 0af5f6c | 2006-03-20 17:15:11 -0800 | [diff] [blame] | 854 | } |
| 855 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 856 | out_put: |
| 857 | instance_put(inst); |
Michal Miroslaw | dd16704 | 2007-03-04 15:59:20 -0800 | [diff] [blame] | 858 | out: |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 859 | return ret; |
| 860 | } |
| 861 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 862 | static const struct nfnl_callback nfulnl_cb[NFULNL_MSG_MAX] = { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 863 | [NFULNL_MSG_PACKET] = { .call = nfulnl_recv_unsupp, |
Harald Welte | 37d2e7a | 2005-11-14 15:24:59 -0800 | [diff] [blame] | 864 | .attr_count = NFULA_MAX, }, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 865 | [NFULNL_MSG_CONFIG] = { .call = nfulnl_recv_config, |
Patrick McHardy | fd8281a | 2007-09-28 14:39:09 -0700 | [diff] [blame] | 866 | .attr_count = NFULA_CFG_MAX, |
| 867 | .policy = nfula_cfg_policy }, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 868 | }; |
| 869 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 870 | static const struct nfnetlink_subsystem nfulnl_subsys = { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 871 | .name = "log", |
| 872 | .subsys_id = NFNL_SUBSYS_ULOG, |
| 873 | .cb_count = NFULNL_MSG_MAX, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 874 | .cb = nfulnl_cb, |
| 875 | }; |
| 876 | |
| 877 | #ifdef CONFIG_PROC_FS |
| 878 | struct iter_state { |
| 879 | unsigned int bucket; |
| 880 | }; |
| 881 | |
Michal Miroslaw | f76cdce | 2007-03-23 11:12:03 -0700 | [diff] [blame] | 882 | static struct hlist_node *get_first(struct iter_state *st) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 883 | { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 884 | if (!st) |
| 885 | return NULL; |
| 886 | |
| 887 | for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) { |
| 888 | if (!hlist_empty(&instance_table[st->bucket])) |
| 889 | return instance_table[st->bucket].first; |
| 890 | } |
| 891 | return NULL; |
| 892 | } |
| 893 | |
Michal Miroslaw | f76cdce | 2007-03-23 11:12:03 -0700 | [diff] [blame] | 894 | static struct hlist_node *get_next(struct iter_state *st, struct hlist_node *h) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 895 | { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 896 | h = h->next; |
| 897 | while (!h) { |
| 898 | if (++st->bucket >= INSTANCE_BUCKETS) |
| 899 | return NULL; |
| 900 | |
| 901 | h = instance_table[st->bucket].first; |
| 902 | } |
| 903 | return h; |
| 904 | } |
| 905 | |
Michal Miroslaw | f76cdce | 2007-03-23 11:12:03 -0700 | [diff] [blame] | 906 | static struct hlist_node *get_idx(struct iter_state *st, loff_t pos) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 907 | { |
| 908 | struct hlist_node *head; |
Michal Miroslaw | f76cdce | 2007-03-23 11:12:03 -0700 | [diff] [blame] | 909 | head = get_first(st); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 910 | |
| 911 | if (head) |
Michal Miroslaw | f76cdce | 2007-03-23 11:12:03 -0700 | [diff] [blame] | 912 | while (pos && (head = get_next(st, head))) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 913 | pos--; |
| 914 | return pos ? NULL : head; |
| 915 | } |
| 916 | |
| 917 | static void *seq_start(struct seq_file *seq, loff_t *pos) |
| 918 | { |
| 919 | read_lock_bh(&instances_lock); |
Michal Miroslaw | f76cdce | 2007-03-23 11:12:03 -0700 | [diff] [blame] | 920 | return get_idx(seq->private, *pos); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | static void *seq_next(struct seq_file *s, void *v, loff_t *pos) |
| 924 | { |
| 925 | (*pos)++; |
Michal Miroslaw | f76cdce | 2007-03-23 11:12:03 -0700 | [diff] [blame] | 926 | return get_next(s->private, v); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | static void seq_stop(struct seq_file *s, void *v) |
| 930 | { |
| 931 | read_unlock_bh(&instances_lock); |
| 932 | } |
| 933 | |
| 934 | static int seq_show(struct seq_file *s, void *v) |
| 935 | { |
| 936 | const struct nfulnl_instance *inst = v; |
| 937 | |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 938 | return seq_printf(s, "%5d %6d %5d %1d %5d %6d %2d\n", |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 939 | inst->group_num, |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 940 | inst->peer_pid, inst->qlen, |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 941 | inst->copy_mode, inst->copy_range, |
| 942 | inst->flushtimeout, atomic_read(&inst->use)); |
| 943 | } |
| 944 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 945 | static const struct seq_operations nful_seq_ops = { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 946 | .start = seq_start, |
| 947 | .next = seq_next, |
| 948 | .stop = seq_stop, |
| 949 | .show = seq_show, |
| 950 | }; |
| 951 | |
| 952 | static int nful_open(struct inode *inode, struct file *file) |
| 953 | { |
Pavel Emelyanov | e2da591 | 2007-10-10 02:29:58 -0700 | [diff] [blame^] | 954 | return seq_open_private(file, &nful_seq_ops, |
| 955 | sizeof(struct iter_state)); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 956 | } |
| 957 | |
Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 958 | static const struct file_operations nful_file_ops = { |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 959 | .owner = THIS_MODULE, |
| 960 | .open = nful_open, |
| 961 | .read = seq_read, |
| 962 | .llseek = seq_lseek, |
| 963 | .release = seq_release_private, |
| 964 | }; |
| 965 | |
| 966 | #endif /* PROC_FS */ |
| 967 | |
Patrick McHardy | 32292a7 | 2006-04-06 14:11:30 -0700 | [diff] [blame] | 968 | static int __init nfnetlink_log_init(void) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 969 | { |
| 970 | int i, status = -ENOMEM; |
| 971 | #ifdef CONFIG_PROC_FS |
| 972 | struct proc_dir_entry *proc_nful; |
| 973 | #endif |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 974 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 975 | for (i = 0; i < INSTANCE_BUCKETS; i++) |
| 976 | INIT_HLIST_HEAD(&instance_table[i]); |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 977 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 978 | /* it's not really all that important to have a random value, so |
| 979 | * we can do this from the init function, even if there hasn't |
| 980 | * been that much entropy yet */ |
| 981 | get_random_bytes(&hash_init, sizeof(hash_init)); |
| 982 | |
| 983 | netlink_register_notifier(&nfulnl_rtnl_notifier); |
| 984 | status = nfnetlink_subsys_register(&nfulnl_subsys); |
| 985 | if (status < 0) { |
| 986 | printk(KERN_ERR "log: failed to create netlink socket\n"); |
| 987 | goto cleanup_netlink_notifier; |
| 988 | } |
| 989 | |
| 990 | #ifdef CONFIG_PROC_FS |
| 991 | proc_nful = create_proc_entry("nfnetlink_log", 0440, |
| 992 | proc_net_netfilter); |
| 993 | if (!proc_nful) |
| 994 | goto cleanup_subsys; |
| 995 | proc_nful->proc_fops = &nful_file_ops; |
| 996 | #endif |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 997 | return status; |
| 998 | |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 999 | #ifdef CONFIG_PROC_FS |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 1000 | cleanup_subsys: |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 1001 | nfnetlink_subsys_unregister(&nfulnl_subsys); |
Patrick McHardy | 32292a7 | 2006-04-06 14:11:30 -0700 | [diff] [blame] | 1002 | #endif |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 1003 | cleanup_netlink_notifier: |
| 1004 | netlink_unregister_notifier(&nfulnl_rtnl_notifier); |
| 1005 | return status; |
| 1006 | } |
| 1007 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 1008 | static void __exit nfnetlink_log_fini(void) |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 1009 | { |
Patrick McHardy | e92ad99 | 2007-02-12 11:11:55 -0800 | [diff] [blame] | 1010 | nf_log_unregister(&nfulnl_logger); |
Patrick McHardy | 32292a7 | 2006-04-06 14:11:30 -0700 | [diff] [blame] | 1011 | #ifdef CONFIG_PROC_FS |
| 1012 | remove_proc_entry("nfnetlink_log", proc_net_netfilter); |
| 1013 | #endif |
| 1014 | nfnetlink_subsys_unregister(&nfulnl_subsys); |
| 1015 | netlink_unregister_notifier(&nfulnl_rtnl_notifier); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | MODULE_DESCRIPTION("netfilter userspace logging"); |
| 1019 | MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>"); |
| 1020 | MODULE_LICENSE("GPL"); |
Harald Welte | f682fae | 2005-08-09 20:20:34 -0700 | [diff] [blame] | 1021 | MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_ULOG); |
Harald Welte | 0597f26 | 2005-08-09 19:58:39 -0700 | [diff] [blame] | 1022 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 1023 | module_init(nfnetlink_log_init); |
| 1024 | module_exit(nfnetlink_log_fini); |