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