Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006 Patrick McHardy <kaber@trash.net> |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 3 | * Copyright © CC Computer Consultants GmbH, 2007 - 2008 |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This is a replacement of the old ipt_recent module, which carried the |
| 10 | * following copyright notice: |
| 11 | * |
| 12 | * Author: Stephen Frost <sfrost@snowman.net> |
| 13 | * Copyright 2002-2003, Stephen Frost, 2.5.x port by laforge@netfilter.org |
| 14 | */ |
Jan Engelhardt | 8bee4ba | 2010-03-17 16:04:40 +0100 | [diff] [blame] | 15 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 16 | #include <linux/init.h> |
Jan Engelhardt | 6709dbb | 2007-02-07 15:11:19 -0800 | [diff] [blame] | 17 | #include <linux/ip.h> |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 18 | #include <linux/ipv6.h> |
| 19 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/moduleparam.h> |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 21 | #include <linux/proc_fs.h> |
| 22 | #include <linux/seq_file.h> |
| 23 | #include <linux/string.h> |
| 24 | #include <linux/ctype.h> |
| 25 | #include <linux/list.h> |
| 26 | #include <linux/random.h> |
| 27 | #include <linux/jhash.h> |
| 28 | #include <linux/bitops.h> |
| 29 | #include <linux/skbuff.h> |
| 30 | #include <linux/inet.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 32 | #include <net/net_namespace.h> |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 33 | #include <net/netns/generic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Jan Engelhardt | 6709dbb | 2007-02-07 15:11:19 -0800 | [diff] [blame] | 35 | #include <linux/netfilter/x_tables.h> |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 36 | #include <linux/netfilter/xt_recent.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 38 | MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>"); |
Jan Engelhardt | 408ffaa | 2010-02-28 23:19:52 +0100 | [diff] [blame] | 39 | MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>"); |
Jan Engelhardt | 06bf514 | 2010-02-28 23:22:35 +0100 | [diff] [blame] | 40 | MODULE_DESCRIPTION("Xtables: \"recently-seen\" host matching"); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 41 | MODULE_LICENSE("GPL"); |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 42 | MODULE_ALIAS("ipt_recent"); |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 43 | MODULE_ALIAS("ip6t_recent"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Patrick McHardy | e7be699 | 2006-01-05 12:19:46 -0800 | [diff] [blame] | 45 | static unsigned int ip_list_tot = 100; |
| 46 | static unsigned int ip_pkt_list_tot = 20; |
| 47 | static unsigned int ip_list_hash_size = 0; |
| 48 | static unsigned int ip_list_perms = 0644; |
Daniel De Graaf | b93ff78 | 2006-08-22 00:30:55 -0700 | [diff] [blame] | 49 | static unsigned int ip_list_uid = 0; |
| 50 | static unsigned int ip_list_gid = 0; |
Patrick McHardy | e7be699 | 2006-01-05 12:19:46 -0800 | [diff] [blame] | 51 | module_param(ip_list_tot, uint, 0400); |
| 52 | module_param(ip_pkt_list_tot, uint, 0400); |
| 53 | module_param(ip_list_hash_size, uint, 0400); |
| 54 | module_param(ip_list_perms, uint, 0400); |
Jan Engelhardt | 5dc7a6d | 2010-03-19 21:29:08 +0100 | [diff] [blame] | 55 | module_param(ip_list_uid, uint, S_IRUGO | S_IWUSR); |
| 56 | module_param(ip_list_gid, uint, S_IRUGO | S_IWUSR); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 57 | MODULE_PARM_DESC(ip_list_tot, "number of IPs to remember per list"); |
Jan Engelhardt | 98e6d2d | 2010-02-15 16:31:35 +0100 | [diff] [blame] | 58 | MODULE_PARM_DESC(ip_pkt_list_tot, "number of packets per IP address to remember (max. 255)"); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 59 | MODULE_PARM_DESC(ip_list_hash_size, "size of hash table used to look up IPs"); |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 60 | MODULE_PARM_DESC(ip_list_perms, "permissions on /proc/net/xt_recent/* files"); |
Jan Engelhardt | 5dc7a6d | 2010-03-19 21:29:08 +0100 | [diff] [blame] | 61 | MODULE_PARM_DESC(ip_list_uid, "default owner of /proc/net/xt_recent/* files"); |
| 62 | MODULE_PARM_DESC(ip_list_gid, "default owning group of /proc/net/xt_recent/* files"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 64 | struct recent_entry { |
| 65 | struct list_head list; |
| 66 | struct list_head lru_list; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 67 | union nf_inet_addr addr; |
| 68 | u_int16_t family; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 69 | u_int8_t ttl; |
| 70 | u_int8_t index; |
| 71 | u_int16_t nstamps; |
| 72 | unsigned long stamps[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 75 | struct recent_table { |
| 76 | struct list_head list; |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 77 | char name[XT_RECENT_NAME_LEN]; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 78 | unsigned int refcnt; |
| 79 | unsigned int entries; |
| 80 | struct list_head lru_list; |
| 81 | struct list_head iphash[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | }; |
| 83 | |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 84 | struct recent_net { |
| 85 | struct list_head tables; |
| 86 | #ifdef CONFIG_PROC_FS |
| 87 | struct proc_dir_entry *xt_recent; |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 88 | #endif |
| 89 | }; |
| 90 | |
| 91 | static int recent_net_id; |
| 92 | static inline struct recent_net *recent_pernet(struct net *net) |
| 93 | { |
| 94 | return net_generic(net, recent_net_id); |
| 95 | } |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | static DEFINE_SPINLOCK(recent_lock); |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 98 | static DEFINE_MUTEX(recent_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | #ifdef CONFIG_PROC_FS |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 101 | static const struct file_operations recent_old_fops, recent_mt_fops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | #endif |
| 103 | |
Jan Engelhardt | 294188a | 2010-01-04 16:28:38 +0100 | [diff] [blame] | 104 | static u_int32_t hash_rnd __read_mostly; |
| 105 | static bool hash_rnd_inited __read_mostly; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 106 | |
Jan Engelhardt | 294188a | 2010-01-04 16:28:38 +0100 | [diff] [blame] | 107 | static inline unsigned int recent_entry_hash4(const union nf_inet_addr *addr) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 108 | { |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 109 | return jhash_1word((__force u32)addr->ip, hash_rnd) & |
| 110 | (ip_list_hash_size - 1); |
| 111 | } |
| 112 | |
Jan Engelhardt | 294188a | 2010-01-04 16:28:38 +0100 | [diff] [blame] | 113 | static inline unsigned int recent_entry_hash6(const union nf_inet_addr *addr) |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 114 | { |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 115 | return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) & |
| 116 | (ip_list_hash_size - 1); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static struct recent_entry * |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 120 | recent_entry_lookup(const struct recent_table *table, |
| 121 | const union nf_inet_addr *addrp, u_int16_t family, |
| 122 | u_int8_t ttl) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 123 | { |
| 124 | struct recent_entry *e; |
| 125 | unsigned int h; |
| 126 | |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 127 | if (family == NFPROTO_IPV4) |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 128 | h = recent_entry_hash4(addrp); |
| 129 | else |
| 130 | h = recent_entry_hash6(addrp); |
| 131 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 132 | list_for_each_entry(e, &table->iphash[h], list) |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 133 | if (e->family == family && |
| 134 | memcmp(&e->addr, addrp, sizeof(e->addr)) == 0 && |
| 135 | (ttl == e->ttl || ttl == 0 || e->ttl == 0)) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 136 | return e; |
| 137 | return NULL; |
| 138 | } |
| 139 | |
| 140 | static void recent_entry_remove(struct recent_table *t, struct recent_entry *e) |
| 141 | { |
| 142 | list_del(&e->list); |
| 143 | list_del(&e->lru_list); |
| 144 | kfree(e); |
| 145 | t->entries--; |
| 146 | } |
| 147 | |
Tim Gardner | 0079c5a | 2010-03-16 19:53:13 +0100 | [diff] [blame] | 148 | /* |
| 149 | * Drop entries with timestamps older then 'time'. |
| 150 | */ |
| 151 | static void recent_entry_reap(struct recent_table *t, unsigned long time) |
| 152 | { |
| 153 | struct recent_entry *e; |
| 154 | |
| 155 | /* |
| 156 | * The head of the LRU list is always the oldest entry. |
| 157 | */ |
| 158 | e = list_entry(t->lru_list.next, struct recent_entry, lru_list); |
| 159 | |
| 160 | /* |
| 161 | * The last time stamp is the most recent. |
| 162 | */ |
| 163 | if (time_after(time, e->stamps[e->index-1])) |
| 164 | recent_entry_remove(t, e); |
| 165 | } |
| 166 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 167 | static struct recent_entry * |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 168 | recent_entry_init(struct recent_table *t, const union nf_inet_addr *addr, |
| 169 | u_int16_t family, u_int8_t ttl) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 170 | { |
| 171 | struct recent_entry *e; |
| 172 | |
| 173 | if (t->entries >= ip_list_tot) { |
| 174 | e = list_entry(t->lru_list.next, struct recent_entry, lru_list); |
| 175 | recent_entry_remove(t, e); |
| 176 | } |
| 177 | e = kmalloc(sizeof(*e) + sizeof(e->stamps[0]) * ip_pkt_list_tot, |
| 178 | GFP_ATOMIC); |
| 179 | if (e == NULL) |
| 180 | return NULL; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 181 | memcpy(&e->addr, addr, sizeof(e->addr)); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 182 | e->ttl = ttl; |
| 183 | e->stamps[0] = jiffies; |
| 184 | e->nstamps = 1; |
| 185 | e->index = 1; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 186 | e->family = family; |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 187 | if (family == NFPROTO_IPV4) |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 188 | list_add_tail(&e->list, &t->iphash[recent_entry_hash4(addr)]); |
| 189 | else |
| 190 | list_add_tail(&e->list, &t->iphash[recent_entry_hash6(addr)]); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 191 | list_add_tail(&e->lru_list, &t->lru_list); |
| 192 | t->entries++; |
| 193 | return e; |
| 194 | } |
| 195 | |
| 196 | static void recent_entry_update(struct recent_table *t, struct recent_entry *e) |
| 197 | { |
Tim Gardner | 2c08522 | 2010-02-23 14:55:21 +0100 | [diff] [blame] | 198 | e->index %= ip_pkt_list_tot; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 199 | e->stamps[e->index++] = jiffies; |
| 200 | if (e->index > e->nstamps) |
| 201 | e->nstamps = e->index; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 202 | list_move_tail(&e->lru_list, &t->lru_list); |
| 203 | } |
| 204 | |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 205 | static struct recent_table *recent_table_lookup(struct recent_net *recent_net, |
| 206 | const char *name) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 207 | { |
| 208 | struct recent_table *t; |
| 209 | |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 210 | list_for_each_entry(t, &recent_net->tables, list) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 211 | if (!strcmp(t->name, name)) |
| 212 | return t; |
| 213 | return NULL; |
| 214 | } |
| 215 | |
| 216 | static void recent_table_flush(struct recent_table *t) |
| 217 | { |
| 218 | struct recent_entry *e, *next; |
| 219 | unsigned int i; |
| 220 | |
Jan Engelhardt | 7c4e36b | 2007-07-07 22:19:08 -0700 | [diff] [blame] | 221 | for (i = 0; i < ip_list_hash_size; i++) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 222 | list_for_each_entry_safe(e, next, &t->iphash[i], list) |
| 223 | recent_entry_remove(t, e); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 226 | static bool |
Jan Engelhardt | 62fc805 | 2009-07-07 20:42:08 +0200 | [diff] [blame] | 227 | recent_mt(const struct sk_buff *skb, struct xt_action_param *par) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 229 | struct net *net = dev_net(par->in ? par->in : par->out); |
| 230 | struct recent_net *recent_net = recent_pernet(net); |
Jan Engelhardt | f7108a20 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 231 | const struct xt_recent_mtinfo *info = par->matchinfo; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 232 | struct recent_table *t; |
| 233 | struct recent_entry *e; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 234 | union nf_inet_addr addr = {}; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 235 | u_int8_t ttl; |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 236 | bool ret = info->invert; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Jan Engelhardt | aa5fa31 | 2010-03-18 00:44:52 +0100 | [diff] [blame] | 238 | if (par->family == NFPROTO_IPV4) { |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 239 | const struct iphdr *iph = ip_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 241 | if (info->side == XT_RECENT_DEST) |
| 242 | addr.ip = iph->daddr; |
| 243 | else |
| 244 | addr.ip = iph->saddr; |
| 245 | |
| 246 | ttl = iph->ttl; |
| 247 | } else { |
| 248 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
| 249 | |
| 250 | if (info->side == XT_RECENT_DEST) |
| 251 | memcpy(&addr.in6, &iph->daddr, sizeof(addr.in6)); |
| 252 | else |
| 253 | memcpy(&addr.in6, &iph->saddr, sizeof(addr.in6)); |
| 254 | |
| 255 | ttl = iph->hop_limit; |
| 256 | } |
| 257 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 258 | /* use TTL as seen before forwarding */ |
Jan Engelhardt | f7108a20 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 259 | if (par->out != NULL && skb->sk == NULL) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 260 | ttl++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | spin_lock_bh(&recent_lock); |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 263 | t = recent_table_lookup(recent_net, info->name); |
Jan Engelhardt | aa5fa31 | 2010-03-18 00:44:52 +0100 | [diff] [blame] | 264 | e = recent_entry_lookup(t, &addr, par->family, |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 265 | (info->check_set & XT_RECENT_TTL) ? ttl : 0); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 266 | if (e == NULL) { |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 267 | if (!(info->check_set & XT_RECENT_SET)) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 268 | goto out; |
Jan Engelhardt | aa5fa31 | 2010-03-18 00:44:52 +0100 | [diff] [blame] | 269 | e = recent_entry_init(t, &addr, par->family, ttl); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 270 | if (e == NULL) |
Jan Engelhardt | b4ba261 | 2009-07-07 20:54:30 +0200 | [diff] [blame] | 271 | par->hotdrop = true; |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 272 | ret = !ret; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 273 | goto out; |
| 274 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 276 | if (info->check_set & XT_RECENT_SET) |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 277 | ret = !ret; |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 278 | else if (info->check_set & XT_RECENT_REMOVE) { |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 279 | recent_entry_remove(t, e); |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 280 | ret = !ret; |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 281 | } else if (info->check_set & (XT_RECENT_CHECK | XT_RECENT_UPDATE)) { |
Patrick McHardy | 855304a | 2008-01-31 04:09:46 -0800 | [diff] [blame] | 282 | unsigned long time = jiffies - info->seconds * HZ; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 283 | unsigned int i, hits = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 285 | for (i = 0; i < e->nstamps; i++) { |
Patrick McHardy | 855304a | 2008-01-31 04:09:46 -0800 | [diff] [blame] | 286 | if (info->seconds && time_after(time, e->stamps[i])) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 287 | continue; |
Patrick McHardy | ef16915 | 2010-03-22 18:25:20 +0100 | [diff] [blame] | 288 | if (!info->hit_count || ++hits >= info->hit_count) { |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 289 | ret = !ret; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 290 | break; |
| 291 | } |
| 292 | } |
Tim Gardner | 0079c5a | 2010-03-16 19:53:13 +0100 | [diff] [blame] | 293 | |
| 294 | /* info->seconds must be non-zero */ |
| 295 | if (info->check_set & XT_RECENT_REAP) |
| 296 | recent_entry_reap(t, time); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 297 | } |
| 298 | |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 299 | if (info->check_set & XT_RECENT_SET || |
| 300 | (info->check_set & XT_RECENT_UPDATE && ret)) { |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 301 | recent_entry_update(t, e); |
| 302 | e->ttl = ttl; |
| 303 | } |
| 304 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | spin_unlock_bh(&recent_lock); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 306 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
| 308 | |
Jan Engelhardt | b0f3845 | 2010-03-19 17:16:42 +0100 | [diff] [blame] | 309 | static int recent_mt_check(const struct xt_mtchk_param *par) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 311 | struct recent_net *recent_net = recent_pernet(par->net); |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 312 | const struct xt_recent_mtinfo *info = par->matchinfo; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 313 | struct recent_table *t; |
Alexey Dobriyan | b0ceb56 | 2008-11-20 09:57:01 +0100 | [diff] [blame] | 314 | #ifdef CONFIG_PROC_FS |
| 315 | struct proc_dir_entry *pde; |
| 316 | #endif |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 317 | unsigned i; |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 318 | int ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Jan Engelhardt | 294188a | 2010-01-04 16:28:38 +0100 | [diff] [blame] | 320 | if (unlikely(!hash_rnd_inited)) { |
| 321 | get_random_bytes(&hash_rnd, sizeof(hash_rnd)); |
| 322 | hash_rnd_inited = true; |
| 323 | } |
Tim Gardner | 606a9a0 | 2010-03-17 16:18:56 +0100 | [diff] [blame] | 324 | if (info->check_set & ~XT_RECENT_VALID_FLAGS) { |
Jan Engelhardt | ff67e4e | 2010-03-19 21:08:16 +0100 | [diff] [blame] | 325 | pr_info("Unsupported user space flags (%08x)\n", |
| 326 | info->check_set); |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 327 | return -EINVAL; |
Tim Gardner | 606a9a0 | 2010-03-17 16:18:56 +0100 | [diff] [blame] | 328 | } |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 329 | if (hweight8(info->check_set & |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 330 | (XT_RECENT_SET | XT_RECENT_REMOVE | |
| 331 | XT_RECENT_CHECK | XT_RECENT_UPDATE)) != 1) |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 332 | return -EINVAL; |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 333 | if ((info->check_set & (XT_RECENT_SET | XT_RECENT_REMOVE)) && |
Tim Gardner | 0079c5a | 2010-03-16 19:53:13 +0100 | [diff] [blame] | 334 | (info->seconds || info->hit_count || |
| 335 | (info->check_set & XT_RECENT_MODIFIERS))) |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 336 | return -EINVAL; |
Tim Gardner | 0079c5a | 2010-03-16 19:53:13 +0100 | [diff] [blame] | 337 | if ((info->check_set & XT_RECENT_REAP) && !info->seconds) |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 338 | return -EINVAL; |
Jan Engelhardt | 98e6d2d | 2010-02-15 16:31:35 +0100 | [diff] [blame] | 339 | if (info->hit_count > ip_pkt_list_tot) { |
Jan Engelhardt | ff67e4e | 2010-03-19 21:08:16 +0100 | [diff] [blame] | 340 | pr_info("hitcount (%u) is larger than " |
Jan Engelhardt | 98e6d2d | 2010-02-15 16:31:35 +0100 | [diff] [blame] | 341 | "packets to be remembered (%u)\n", |
| 342 | info->hit_count, ip_pkt_list_tot); |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 343 | return -EINVAL; |
Jan Engelhardt | 98e6d2d | 2010-02-15 16:31:35 +0100 | [diff] [blame] | 344 | } |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 345 | if (info->name[0] == '\0' || |
Jan Engelhardt | e948b20 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 346 | strnlen(info->name, XT_RECENT_NAME_LEN) == XT_RECENT_NAME_LEN) |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 347 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 349 | mutex_lock(&recent_mutex); |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 350 | t = recent_table_lookup(recent_net, info->name); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 351 | if (t != NULL) { |
| 352 | t->refcnt++; |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 353 | ret = 0; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 354 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 357 | t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size, |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 358 | GFP_KERNEL); |
Jan Engelhardt | 4a5a5c7 | 2010-03-19 17:32:59 +0100 | [diff] [blame] | 359 | if (t == NULL) { |
| 360 | ret = -ENOMEM; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 361 | goto out; |
Jan Engelhardt | 4a5a5c7 | 2010-03-19 17:32:59 +0100 | [diff] [blame] | 362 | } |
Patrick McHardy | 2b2283d | 2006-06-09 12:18:17 -0700 | [diff] [blame] | 363 | t->refcnt = 1; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 364 | strcpy(t->name, info->name); |
| 365 | INIT_LIST_HEAD(&t->lru_list); |
| 366 | for (i = 0; i < ip_list_hash_size; i++) |
| 367 | INIT_LIST_HEAD(&t->iphash[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 369 | pde = proc_create_data(t->name, ip_list_perms, recent_net->xt_recent, |
Alexey Dobriyan | b09eec1 | 2008-10-20 03:33:49 -0700 | [diff] [blame] | 370 | &recent_mt_fops, t); |
Alexey Dobriyan | b0ceb56 | 2008-11-20 09:57:01 +0100 | [diff] [blame] | 371 | if (pde == NULL) { |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 372 | kfree(t); |
Jan Engelhardt | 4a5a5c7 | 2010-03-19 17:32:59 +0100 | [diff] [blame] | 373 | ret = -ENOMEM; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 374 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
Alexey Dobriyan | b0ceb56 | 2008-11-20 09:57:01 +0100 | [diff] [blame] | 376 | pde->uid = ip_list_uid; |
| 377 | pde->gid = ip_list_gid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | #endif |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 379 | spin_lock_bh(&recent_lock); |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 380 | list_add_tail(&t->list, &recent_net->tables); |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 381 | spin_unlock_bh(&recent_lock); |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 382 | ret = 0; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 383 | out: |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 384 | mutex_unlock(&recent_mutex); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 385 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Jan Engelhardt | 6be3d85 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 388 | static void recent_mt_destroy(const struct xt_mtdtor_param *par) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | { |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 390 | struct recent_net *recent_net = recent_pernet(par->net); |
Jan Engelhardt | 6be3d85 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 391 | const struct xt_recent_mtinfo *info = par->matchinfo; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 392 | struct recent_table *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 394 | mutex_lock(&recent_mutex); |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 395 | t = recent_table_lookup(recent_net, info->name); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 396 | if (--t->refcnt == 0) { |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 397 | spin_lock_bh(&recent_lock); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 398 | list_del(&t->list); |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 399 | spin_unlock_bh(&recent_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 401 | remove_proc_entry(t->name, recent_net->xt_recent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | #endif |
Pavel Emelyanov | a8ddc91 | 2008-07-31 00:38:31 -0700 | [diff] [blame] | 403 | recent_table_flush(t); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 404 | kfree(t); |
| 405 | } |
Patrick McHardy | a0e889b | 2006-06-09 12:17:41 -0700 | [diff] [blame] | 406 | mutex_unlock(&recent_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 409 | #ifdef CONFIG_PROC_FS |
| 410 | struct recent_iter_state { |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 411 | const struct recent_table *table; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 412 | unsigned int bucket; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | }; |
| 414 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 415 | static void *recent_seq_start(struct seq_file *seq, loff_t *pos) |
Patrick McHardy | 855304a | 2008-01-31 04:09:46 -0800 | [diff] [blame] | 416 | __acquires(recent_lock) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 417 | { |
| 418 | struct recent_iter_state *st = seq->private; |
Jan Engelhardt | a47362a | 2007-07-07 22:16:55 -0700 | [diff] [blame] | 419 | const struct recent_table *t = st->table; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 420 | struct recent_entry *e; |
| 421 | loff_t p = *pos; |
| 422 | |
| 423 | spin_lock_bh(&recent_lock); |
| 424 | |
Jan Engelhardt | 7c4e36b | 2007-07-07 22:19:08 -0700 | [diff] [blame] | 425 | for (st->bucket = 0; st->bucket < ip_list_hash_size; st->bucket++) |
| 426 | list_for_each_entry(e, &t->iphash[st->bucket], list) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 427 | if (p-- == 0) |
| 428 | return e; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 429 | return NULL; |
| 430 | } |
| 431 | |
| 432 | static void *recent_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 433 | { |
| 434 | struct recent_iter_state *st = seq->private; |
Jan Engelhardt | 3cf93c9 | 2008-04-14 09:56:05 +0200 | [diff] [blame] | 435 | const struct recent_table *t = st->table; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 436 | const struct recent_entry *e = v; |
| 437 | const struct list_head *head = e->list.next; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 438 | |
| 439 | while (head == &t->iphash[st->bucket]) { |
| 440 | if (++st->bucket >= ip_list_hash_size) |
| 441 | return NULL; |
| 442 | head = t->iphash[st->bucket].next; |
| 443 | } |
| 444 | (*pos)++; |
| 445 | return list_entry(head, struct recent_entry, list); |
| 446 | } |
| 447 | |
| 448 | static void recent_seq_stop(struct seq_file *s, void *v) |
Patrick McHardy | 855304a | 2008-01-31 04:09:46 -0800 | [diff] [blame] | 449 | __releases(recent_lock) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 450 | { |
| 451 | spin_unlock_bh(&recent_lock); |
| 452 | } |
| 453 | |
| 454 | static int recent_seq_show(struct seq_file *seq, void *v) |
| 455 | { |
Jan Engelhardt | 3cf93c9 | 2008-04-14 09:56:05 +0200 | [diff] [blame] | 456 | const struct recent_entry *e = v; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 457 | unsigned int i; |
| 458 | |
| 459 | i = (e->index - 1) % ip_pkt_list_tot; |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 460 | if (e->family == NFPROTO_IPV4) |
Harvey Harrison | 14d5e83 | 2008-10-31 00:54:29 -0700 | [diff] [blame] | 461 | seq_printf(seq, "src=%pI4 ttl: %u last_seen: %lu oldest_pkt: %u", |
| 462 | &e->addr.ip, e->ttl, e->stamps[i], e->index); |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 463 | else |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 464 | seq_printf(seq, "src=%pI6 ttl: %u last_seen: %lu oldest_pkt: %u", |
Harvey Harrison | 38ff4fa | 2008-10-28 16:08:13 -0700 | [diff] [blame] | 465 | &e->addr.in6, e->ttl, e->stamps[i], e->index); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 466 | for (i = 0; i < e->nstamps; i++) |
| 467 | seq_printf(seq, "%s %lu", i ? "," : "", e->stamps[i]); |
| 468 | seq_printf(seq, "\n"); |
| 469 | return 0; |
| 470 | } |
| 471 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 472 | static const struct seq_operations recent_seq_ops = { |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 473 | .start = recent_seq_start, |
| 474 | .next = recent_seq_next, |
| 475 | .stop = recent_seq_stop, |
| 476 | .show = recent_seq_show, |
| 477 | }; |
| 478 | |
| 479 | static int recent_seq_open(struct inode *inode, struct file *file) |
| 480 | { |
| 481 | struct proc_dir_entry *pde = PDE(inode); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 482 | struct recent_iter_state *st; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 483 | |
Pavel Emelyanov | e2da591 | 2007-10-10 02:29:58 -0700 | [diff] [blame] | 484 | st = __seq_open_private(file, &recent_seq_ops, sizeof(*st)); |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 485 | if (st == NULL) |
| 486 | return -ENOMEM; |
Jesper Juhl | 3af8e31 | 2007-08-07 18:10:54 -0700 | [diff] [blame] | 487 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 488 | st->table = pde->data; |
Pavel Emelyanov | e2da591 | 2007-10-10 02:29:58 -0700 | [diff] [blame] | 489 | return 0; |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 490 | } |
| 491 | |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 492 | static ssize_t |
| 493 | recent_mt_proc_write(struct file *file, const char __user *input, |
| 494 | size_t size, loff_t *loff) |
| 495 | { |
| 496 | const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode); |
| 497 | struct recent_table *t = pde->data; |
| 498 | struct recent_entry *e; |
| 499 | char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")]; |
| 500 | const char *c = buf; |
Josef Drexler | 325fb5b | 2009-02-24 14:53:12 +0100 | [diff] [blame] | 501 | union nf_inet_addr addr = {}; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 502 | u_int16_t family; |
| 503 | bool add, succ; |
| 504 | |
| 505 | if (size == 0) |
| 506 | return 0; |
| 507 | if (size > sizeof(buf)) |
| 508 | size = sizeof(buf); |
| 509 | if (copy_from_user(buf, input, size) != 0) |
| 510 | return -EFAULT; |
| 511 | |
| 512 | /* Strict protocol! */ |
| 513 | if (*loff != 0) |
| 514 | return -ESPIPE; |
| 515 | switch (*c) { |
| 516 | case '/': /* flush table */ |
| 517 | spin_lock_bh(&recent_lock); |
| 518 | recent_table_flush(t); |
| 519 | spin_unlock_bh(&recent_lock); |
| 520 | return size; |
| 521 | case '-': /* remove address */ |
| 522 | add = false; |
| 523 | break; |
| 524 | case '+': /* add address */ |
| 525 | add = true; |
| 526 | break; |
| 527 | default: |
Jan Engelhardt | 8bee4ba | 2010-03-17 16:04:40 +0100 | [diff] [blame] | 528 | pr_info("Need \"+ip\", \"-ip\" or \"/\"\n"); |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 529 | return -EINVAL; |
| 530 | } |
| 531 | |
| 532 | ++c; |
| 533 | --size; |
| 534 | if (strnchr(c, size, ':') != NULL) { |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 535 | family = NFPROTO_IPV6; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 536 | succ = in6_pton(c, size, (void *)&addr, '\n', NULL); |
| 537 | } else { |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 538 | family = NFPROTO_IPV4; |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 539 | succ = in4_pton(c, size, (void *)&addr, '\n', NULL); |
| 540 | } |
| 541 | |
| 542 | if (!succ) { |
Jan Engelhardt | 8bee4ba | 2010-03-17 16:04:40 +0100 | [diff] [blame] | 543 | pr_info("illegal address written to procfs\n"); |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 544 | return -EINVAL; |
| 545 | } |
| 546 | |
| 547 | spin_lock_bh(&recent_lock); |
| 548 | e = recent_entry_lookup(t, &addr, family, 0); |
| 549 | if (e == NULL) { |
| 550 | if (add) |
| 551 | recent_entry_init(t, &addr, family, 0); |
| 552 | } else { |
| 553 | if (add) |
| 554 | recent_entry_update(t, e); |
| 555 | else |
| 556 | recent_entry_remove(t, e); |
| 557 | } |
| 558 | spin_unlock_bh(&recent_lock); |
| 559 | /* Note we removed one above */ |
| 560 | *loff += size + 1; |
| 561 | return size + 1; |
| 562 | } |
| 563 | |
| 564 | static const struct file_operations recent_mt_fops = { |
| 565 | .open = recent_seq_open, |
| 566 | .read = seq_read, |
| 567 | .write = recent_mt_proc_write, |
| 568 | .release = seq_release_private, |
| 569 | .owner = THIS_MODULE, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 570 | .llseek = seq_lseek, |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 571 | }; |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 572 | |
| 573 | static int __net_init recent_proc_net_init(struct net *net) |
| 574 | { |
| 575 | struct recent_net *recent_net = recent_pernet(net); |
| 576 | |
| 577 | recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net); |
| 578 | if (!recent_net->xt_recent) |
| 579 | return -ENOMEM; |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 580 | return 0; |
| 581 | } |
| 582 | |
| 583 | static void __net_exit recent_proc_net_exit(struct net *net) |
| 584 | { |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 585 | proc_net_remove(net, "xt_recent"); |
| 586 | } |
| 587 | #else |
| 588 | static inline int recent_proc_net_init(struct net *net) |
| 589 | { |
| 590 | return 0; |
| 591 | } |
| 592 | |
| 593 | static inline void recent_proc_net_exit(struct net *net) |
| 594 | { |
| 595 | } |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 596 | #endif /* CONFIG_PROC_FS */ |
| 597 | |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 598 | static int __net_init recent_net_init(struct net *net) |
| 599 | { |
| 600 | struct recent_net *recent_net = recent_pernet(net); |
| 601 | |
| 602 | INIT_LIST_HEAD(&recent_net->tables); |
| 603 | return recent_proc_net_init(net); |
| 604 | } |
| 605 | |
| 606 | static void __net_exit recent_net_exit(struct net *net) |
| 607 | { |
| 608 | struct recent_net *recent_net = recent_pernet(net); |
| 609 | |
| 610 | BUG_ON(!list_empty(&recent_net->tables)); |
| 611 | recent_proc_net_exit(net); |
| 612 | } |
| 613 | |
| 614 | static struct pernet_operations recent_net_ops = { |
| 615 | .init = recent_net_init, |
| 616 | .exit = recent_net_exit, |
| 617 | .id = &recent_net_id, |
| 618 | .size = sizeof(struct recent_net), |
| 619 | }; |
| 620 | |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 621 | static struct xt_match recent_mt_reg[] __read_mostly = { |
| 622 | { |
| 623 | .name = "recent", |
| 624 | .revision = 0, |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 625 | .family = NFPROTO_IPV4, |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 626 | .match = recent_mt, |
| 627 | .matchsize = sizeof(struct xt_recent_mtinfo), |
| 628 | .checkentry = recent_mt_check, |
| 629 | .destroy = recent_mt_destroy, |
| 630 | .me = THIS_MODULE, |
| 631 | }, |
| 632 | { |
| 633 | .name = "recent", |
| 634 | .revision = 0, |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 635 | .family = NFPROTO_IPV6, |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 636 | .match = recent_mt, |
| 637 | .matchsize = sizeof(struct xt_recent_mtinfo), |
| 638 | .checkentry = recent_mt_check, |
| 639 | .destroy = recent_mt_destroy, |
| 640 | .me = THIS_MODULE, |
| 641 | }, |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 642 | }; |
| 643 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 644 | static int __init recent_mt_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | { |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 646 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 648 | if (!ip_list_tot || !ip_pkt_list_tot || ip_pkt_list_tot > 255) |
| 649 | return -EINVAL; |
| 650 | ip_list_hash_size = 1 << fls(ip_list_tot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 652 | err = register_pernet_subsys(&recent_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | if (err) |
Patrick McHardy | 404bdbf | 2006-05-29 18:21:34 -0700 | [diff] [blame] | 654 | return err; |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 655 | err = xt_register_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg)); |
| 656 | if (err) |
| 657 | unregister_pernet_subsys(&recent_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | return err; |
| 659 | } |
| 660 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 661 | static void __exit recent_mt_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | { |
Jan Engelhardt | 079aa88 | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 663 | xt_unregister_matches(recent_mt_reg, ARRAY_SIZE(recent_mt_reg)); |
Alexey Dobriyan | 7d07d563 | 2010-01-18 08:31:00 +0100 | [diff] [blame] | 664 | unregister_pernet_subsys(&recent_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | } |
| 666 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 667 | module_init(recent_mt_init); |
| 668 | module_exit(recent_mt_exit); |