Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1 | /* |
| 2 | * x_tables core - Backend for {ip,ip6,arp}_tables |
| 3 | * |
| 4 | * Copyright (C) 2006-2006 Harald Welte <laforge@netfilter.org> |
| 5 | * |
| 6 | * Based on existing ip_tables code which is |
| 7 | * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling |
| 8 | * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@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. |
| 13 | * |
| 14 | */ |
| 15 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/socket.h> |
| 18 | #include <linux/net.h> |
| 19 | #include <linux/proc_fs.h> |
| 20 | #include <linux/seq_file.h> |
| 21 | #include <linux/string.h> |
| 22 | #include <linux/vmalloc.h> |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Al Viro | d7fe0f2 | 2006-12-03 23:15:30 -0500 | [diff] [blame] | 24 | #include <linux/mm.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 25 | #include <net/net_namespace.h> |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 26 | |
| 27 | #include <linux/netfilter/x_tables.h> |
| 28 | #include <linux/netfilter_arp.h> |
| 29 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 30 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 31 | MODULE_LICENSE("GPL"); |
| 32 | MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>"); |
Jan Engelhardt | 043ef46 | 2008-10-08 11:35:15 +0200 | [diff] [blame] | 33 | MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module"); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 34 | |
| 35 | #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1)) |
| 36 | |
Patrick McHardy | b386d9f | 2007-12-17 21:47:48 -0800 | [diff] [blame] | 37 | struct compat_delta { |
| 38 | struct compat_delta *next; |
| 39 | unsigned int offset; |
| 40 | short delta; |
| 41 | }; |
| 42 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 43 | struct xt_af { |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 44 | struct mutex mutex; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 45 | struct list_head match; |
| 46 | struct list_head target; |
Patrick McHardy | b386d9f | 2007-12-17 21:47:48 -0800 | [diff] [blame] | 47 | #ifdef CONFIG_COMPAT |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 48 | struct mutex compat_mutex; |
Patrick McHardy | b386d9f | 2007-12-17 21:47:48 -0800 | [diff] [blame] | 49 | struct compat_delta *compat_offsets; |
| 50 | #endif |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | static struct xt_af *xt; |
| 54 | |
| 55 | #ifdef DEBUG_IP_FIREWALL_USER |
| 56 | #define duprintf(format, args...) printk(format , ## args) |
| 57 | #else |
| 58 | #define duprintf(format, args...) |
| 59 | #endif |
| 60 | |
Jan Engelhardt | 7e9c6ee | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 61 | static const char *const xt_prefix[NFPROTO_NUMPROTO] = { |
| 62 | [NFPROTO_UNSPEC] = "x", |
| 63 | [NFPROTO_IPV4] = "ip", |
| 64 | [NFPROTO_ARP] = "arp", |
| 65 | [NFPROTO_BRIDGE] = "eb", |
| 66 | [NFPROTO_IPV6] = "ip6", |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 67 | }; |
| 68 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 69 | /* Registration hooks for targets. */ |
| 70 | int |
Pablo Neira Ayuso | a45049c | 2006-03-22 13:55:40 -0800 | [diff] [blame] | 71 | xt_register_target(struct xt_target *target) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 72 | { |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 73 | u_int8_t af = target->family; |
| 74 | int ret; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 75 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 76 | ret = mutex_lock_interruptible(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 77 | if (ret != 0) |
| 78 | return ret; |
| 79 | list_add(&target->list, &xt[af].target); |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 80 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 81 | return ret; |
| 82 | } |
| 83 | EXPORT_SYMBOL(xt_register_target); |
| 84 | |
| 85 | void |
Pablo Neira Ayuso | a45049c | 2006-03-22 13:55:40 -0800 | [diff] [blame] | 86 | xt_unregister_target(struct xt_target *target) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 87 | { |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 88 | u_int8_t af = target->family; |
Pablo Neira Ayuso | a45049c | 2006-03-22 13:55:40 -0800 | [diff] [blame] | 89 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 90 | mutex_lock(&xt[af].mutex); |
Patrick McHardy | df0933d | 2006-09-20 11:57:53 -0700 | [diff] [blame] | 91 | list_del(&target->list); |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 92 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 93 | } |
| 94 | EXPORT_SYMBOL(xt_unregister_target); |
| 95 | |
| 96 | int |
Patrick McHardy | 52d9c42 | 2006-08-22 00:33:45 -0700 | [diff] [blame] | 97 | xt_register_targets(struct xt_target *target, unsigned int n) |
| 98 | { |
| 99 | unsigned int i; |
| 100 | int err = 0; |
| 101 | |
| 102 | for (i = 0; i < n; i++) { |
| 103 | err = xt_register_target(&target[i]); |
| 104 | if (err) |
| 105 | goto err; |
| 106 | } |
| 107 | return err; |
| 108 | |
| 109 | err: |
| 110 | if (i > 0) |
| 111 | xt_unregister_targets(target, i); |
| 112 | return err; |
| 113 | } |
| 114 | EXPORT_SYMBOL(xt_register_targets); |
| 115 | |
| 116 | void |
| 117 | xt_unregister_targets(struct xt_target *target, unsigned int n) |
| 118 | { |
| 119 | unsigned int i; |
| 120 | |
| 121 | for (i = 0; i < n; i++) |
| 122 | xt_unregister_target(&target[i]); |
| 123 | } |
| 124 | EXPORT_SYMBOL(xt_unregister_targets); |
| 125 | |
| 126 | int |
Pablo Neira Ayuso | a45049c | 2006-03-22 13:55:40 -0800 | [diff] [blame] | 127 | xt_register_match(struct xt_match *match) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 128 | { |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 129 | u_int8_t af = match->family; |
| 130 | int ret; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 131 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 132 | ret = mutex_lock_interruptible(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 133 | if (ret != 0) |
| 134 | return ret; |
| 135 | |
| 136 | list_add(&match->list, &xt[af].match); |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 137 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 138 | |
| 139 | return ret; |
| 140 | } |
| 141 | EXPORT_SYMBOL(xt_register_match); |
| 142 | |
| 143 | void |
Pablo Neira Ayuso | a45049c | 2006-03-22 13:55:40 -0800 | [diff] [blame] | 144 | xt_unregister_match(struct xt_match *match) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 145 | { |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 146 | u_int8_t af = match->family; |
Pablo Neira Ayuso | a45049c | 2006-03-22 13:55:40 -0800 | [diff] [blame] | 147 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 148 | mutex_lock(&xt[af].mutex); |
Patrick McHardy | df0933d | 2006-09-20 11:57:53 -0700 | [diff] [blame] | 149 | list_del(&match->list); |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 150 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 151 | } |
| 152 | EXPORT_SYMBOL(xt_unregister_match); |
| 153 | |
Patrick McHardy | 52d9c42 | 2006-08-22 00:33:45 -0700 | [diff] [blame] | 154 | int |
| 155 | xt_register_matches(struct xt_match *match, unsigned int n) |
| 156 | { |
| 157 | unsigned int i; |
| 158 | int err = 0; |
| 159 | |
| 160 | for (i = 0; i < n; i++) { |
| 161 | err = xt_register_match(&match[i]); |
| 162 | if (err) |
| 163 | goto err; |
| 164 | } |
| 165 | return err; |
| 166 | |
| 167 | err: |
| 168 | if (i > 0) |
| 169 | xt_unregister_matches(match, i); |
| 170 | return err; |
| 171 | } |
| 172 | EXPORT_SYMBOL(xt_register_matches); |
| 173 | |
| 174 | void |
| 175 | xt_unregister_matches(struct xt_match *match, unsigned int n) |
| 176 | { |
| 177 | unsigned int i; |
| 178 | |
| 179 | for (i = 0; i < n; i++) |
| 180 | xt_unregister_match(&match[i]); |
| 181 | } |
| 182 | EXPORT_SYMBOL(xt_unregister_matches); |
| 183 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 184 | |
| 185 | /* |
| 186 | * These are weird, but module loading must not be done with mutex |
| 187 | * held (since they will register), and we have to have a single |
| 188 | * function to use try_then_request_module(). |
| 189 | */ |
| 190 | |
| 191 | /* Find match, grabs ref. Returns ERR_PTR() on error. */ |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 192 | struct xt_match *xt_find_match(u8 af, const char *name, u8 revision) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 193 | { |
| 194 | struct xt_match *m; |
| 195 | int err = 0; |
| 196 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 197 | if (mutex_lock_interruptible(&xt[af].mutex) != 0) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 198 | return ERR_PTR(-EINTR); |
| 199 | |
| 200 | list_for_each_entry(m, &xt[af].match, list) { |
| 201 | if (strcmp(m->name, name) == 0) { |
| 202 | if (m->revision == revision) { |
| 203 | if (try_module_get(m->me)) { |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 204 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 205 | return m; |
| 206 | } |
| 207 | } else |
| 208 | err = -EPROTOTYPE; /* Found something. */ |
| 209 | } |
| 210 | } |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 211 | mutex_unlock(&xt[af].mutex); |
Jan Engelhardt | 55b69e9 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 212 | |
| 213 | if (af != NFPROTO_UNSPEC) |
| 214 | /* Try searching again in the family-independent list */ |
| 215 | return xt_find_match(NFPROTO_UNSPEC, name, revision); |
| 216 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 217 | return ERR_PTR(err); |
| 218 | } |
| 219 | EXPORT_SYMBOL(xt_find_match); |
| 220 | |
| 221 | /* Find target, grabs ref. Returns ERR_PTR() on error. */ |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 222 | struct xt_target *xt_find_target(u8 af, const char *name, u8 revision) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 223 | { |
| 224 | struct xt_target *t; |
| 225 | int err = 0; |
| 226 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 227 | if (mutex_lock_interruptible(&xt[af].mutex) != 0) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 228 | return ERR_PTR(-EINTR); |
| 229 | |
| 230 | list_for_each_entry(t, &xt[af].target, list) { |
| 231 | if (strcmp(t->name, name) == 0) { |
| 232 | if (t->revision == revision) { |
| 233 | if (try_module_get(t->me)) { |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 234 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 235 | return t; |
| 236 | } |
| 237 | } else |
| 238 | err = -EPROTOTYPE; /* Found something. */ |
| 239 | } |
| 240 | } |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 241 | mutex_unlock(&xt[af].mutex); |
Jan Engelhardt | 55b69e9 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 242 | |
| 243 | if (af != NFPROTO_UNSPEC) |
| 244 | /* Try searching again in the family-independent list */ |
| 245 | return xt_find_target(NFPROTO_UNSPEC, name, revision); |
| 246 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 247 | return ERR_PTR(err); |
| 248 | } |
| 249 | EXPORT_SYMBOL(xt_find_target); |
| 250 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 251 | struct xt_target *xt_request_find_target(u8 af, const char *name, u8 revision) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 252 | { |
| 253 | struct xt_target *target; |
| 254 | |
| 255 | target = try_then_request_module(xt_find_target(af, name, revision), |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 256 | "%st_%s", xt_prefix[af], name); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 257 | if (IS_ERR(target) || !target) |
| 258 | return NULL; |
| 259 | return target; |
| 260 | } |
| 261 | EXPORT_SYMBOL_GPL(xt_request_find_target); |
| 262 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 263 | static int match_revfn(u8 af, const char *name, u8 revision, int *bestp) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 264 | { |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 265 | const struct xt_match *m; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 266 | int have_rev = 0; |
| 267 | |
| 268 | list_for_each_entry(m, &xt[af].match, list) { |
| 269 | if (strcmp(m->name, name) == 0) { |
| 270 | if (m->revision > *bestp) |
| 271 | *bestp = m->revision; |
| 272 | if (m->revision == revision) |
| 273 | have_rev = 1; |
| 274 | } |
| 275 | } |
| 276 | return have_rev; |
| 277 | } |
| 278 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 279 | static int target_revfn(u8 af, const char *name, u8 revision, int *bestp) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 280 | { |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 281 | const struct xt_target *t; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 282 | int have_rev = 0; |
| 283 | |
| 284 | list_for_each_entry(t, &xt[af].target, list) { |
| 285 | if (strcmp(t->name, name) == 0) { |
| 286 | if (t->revision > *bestp) |
| 287 | *bestp = t->revision; |
| 288 | if (t->revision == revision) |
| 289 | have_rev = 1; |
| 290 | } |
| 291 | } |
| 292 | return have_rev; |
| 293 | } |
| 294 | |
| 295 | /* Returns true or false (if no such extension at all) */ |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 296 | int xt_find_revision(u8 af, const char *name, u8 revision, int target, |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 297 | int *err) |
| 298 | { |
| 299 | int have_rev, best = -1; |
| 300 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 301 | if (mutex_lock_interruptible(&xt[af].mutex) != 0) { |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 302 | *err = -EINTR; |
| 303 | return 1; |
| 304 | } |
| 305 | if (target == 1) |
| 306 | have_rev = target_revfn(af, name, revision, &best); |
| 307 | else |
| 308 | have_rev = match_revfn(af, name, revision, &best); |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 309 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 310 | |
| 311 | /* Nothing at all? Return 0 to try loading module. */ |
| 312 | if (best == -1) { |
| 313 | *err = -ENOENT; |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | *err = best; |
| 318 | if (!have_rev) |
| 319 | *err = -EPROTONOSUPPORT; |
| 320 | return 1; |
| 321 | } |
| 322 | EXPORT_SYMBOL_GPL(xt_find_revision); |
| 323 | |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 324 | int xt_check_match(struct xt_mtchk_param *par, |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 325 | unsigned int size, u_int8_t proto, bool inv_proto) |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 326 | { |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 327 | if (XT_ALIGN(par->match->matchsize) != size && |
| 328 | par->match->matchsize != -1) { |
Jan Engelhardt | 043ef46 | 2008-10-08 11:35:15 +0200 | [diff] [blame] | 329 | /* |
| 330 | * ebt_among is exempt from centralized matchsize checking |
| 331 | * because it uses a dynamic-size data set. |
| 332 | */ |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 333 | printk("%s_tables: %s match: invalid size %Zu != %u\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 334 | xt_prefix[par->family], par->match->name, |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 335 | XT_ALIGN(par->match->matchsize), size); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 336 | return -EINVAL; |
| 337 | } |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 338 | if (par->match->table != NULL && |
| 339 | strcmp(par->match->table, par->table) != 0) { |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 340 | printk("%s_tables: %s match: only valid in %s table, not %s\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 341 | xt_prefix[par->family], par->match->name, |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 342 | par->match->table, par->table); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 343 | return -EINVAL; |
| 344 | } |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 345 | if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) { |
Jan Engelhardt | 102befa | 2008-10-08 11:35:15 +0200 | [diff] [blame] | 346 | printk("%s_tables: %s match: bad hook_mask %#x/%#x\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 347 | xt_prefix[par->family], par->match->name, |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 348 | par->hook_mask, par->match->hooks); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 349 | return -EINVAL; |
| 350 | } |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 351 | if (par->match->proto && (par->match->proto != proto || inv_proto)) { |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 352 | printk("%s_tables: %s match: only valid for protocol %u\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 353 | xt_prefix[par->family], par->match->name, |
| 354 | par->match->proto); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 355 | return -EINVAL; |
| 356 | } |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 357 | if (par->match->checkentry != NULL && !par->match->checkentry(par)) |
Jan Engelhardt | 367c679 | 2008-10-08 11:35:17 +0200 | [diff] [blame] | 358 | return -EINVAL; |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 359 | return 0; |
| 360 | } |
| 361 | EXPORT_SYMBOL_GPL(xt_check_match); |
| 362 | |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 363 | #ifdef CONFIG_COMPAT |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 364 | int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta) |
Patrick McHardy | b386d9f | 2007-12-17 21:47:48 -0800 | [diff] [blame] | 365 | { |
| 366 | struct compat_delta *tmp; |
| 367 | |
| 368 | tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL); |
| 369 | if (!tmp) |
| 370 | return -ENOMEM; |
| 371 | |
| 372 | tmp->offset = offset; |
| 373 | tmp->delta = delta; |
| 374 | |
| 375 | if (xt[af].compat_offsets) { |
| 376 | tmp->next = xt[af].compat_offsets->next; |
| 377 | xt[af].compat_offsets->next = tmp; |
| 378 | } else { |
| 379 | xt[af].compat_offsets = tmp; |
| 380 | tmp->next = NULL; |
| 381 | } |
| 382 | return 0; |
| 383 | } |
| 384 | EXPORT_SYMBOL_GPL(xt_compat_add_offset); |
| 385 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 386 | void xt_compat_flush_offsets(u_int8_t af) |
Patrick McHardy | b386d9f | 2007-12-17 21:47:48 -0800 | [diff] [blame] | 387 | { |
| 388 | struct compat_delta *tmp, *next; |
| 389 | |
| 390 | if (xt[af].compat_offsets) { |
| 391 | for (tmp = xt[af].compat_offsets; tmp; tmp = next) { |
| 392 | next = tmp->next; |
| 393 | kfree(tmp); |
| 394 | } |
| 395 | xt[af].compat_offsets = NULL; |
| 396 | } |
| 397 | } |
| 398 | EXPORT_SYMBOL_GPL(xt_compat_flush_offsets); |
| 399 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 400 | short xt_compat_calc_jump(u_int8_t af, unsigned int offset) |
Patrick McHardy | b386d9f | 2007-12-17 21:47:48 -0800 | [diff] [blame] | 401 | { |
| 402 | struct compat_delta *tmp; |
| 403 | short delta; |
| 404 | |
| 405 | for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next) |
| 406 | if (tmp->offset < offset) |
| 407 | delta += tmp->delta; |
| 408 | return delta; |
| 409 | } |
| 410 | EXPORT_SYMBOL_GPL(xt_compat_calc_jump); |
| 411 | |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 412 | int xt_compat_match_offset(const struct xt_match *match) |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 413 | { |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 414 | u_int16_t csize = match->compatsize ? : match->matchsize; |
| 415 | return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize); |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 416 | } |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 417 | EXPORT_SYMBOL_GPL(xt_compat_match_offset); |
| 418 | |
Patrick McHardy | 8956695 | 2007-12-17 21:46:40 -0800 | [diff] [blame] | 419 | int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr, |
Patrick McHardy | b0a6363 | 2008-01-31 04:10:18 -0800 | [diff] [blame] | 420 | unsigned int *size) |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 421 | { |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 422 | const struct xt_match *match = m->u.kernel.match; |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 423 | struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m; |
| 424 | int pad, off = xt_compat_match_offset(match); |
| 425 | u_int16_t msize = cm->u.user.match_size; |
| 426 | |
| 427 | m = *dstptr; |
| 428 | memcpy(m, cm, sizeof(*cm)); |
| 429 | if (match->compat_from_user) |
| 430 | match->compat_from_user(m->data, cm->data); |
| 431 | else |
| 432 | memcpy(m->data, cm->data, msize - sizeof(*cm)); |
| 433 | pad = XT_ALIGN(match->matchsize) - match->matchsize; |
| 434 | if (pad > 0) |
| 435 | memset(m->data + match->matchsize, 0, pad); |
| 436 | |
| 437 | msize += off; |
| 438 | m->u.user.match_size = msize; |
| 439 | |
| 440 | *size += off; |
| 441 | *dstptr += msize; |
Patrick McHardy | 8956695 | 2007-12-17 21:46:40 -0800 | [diff] [blame] | 442 | return 0; |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 443 | } |
| 444 | EXPORT_SYMBOL_GPL(xt_compat_match_from_user); |
| 445 | |
| 446 | int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr, |
Patrick McHardy | b0a6363 | 2008-01-31 04:10:18 -0800 | [diff] [blame] | 447 | unsigned int *size) |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 448 | { |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 449 | const struct xt_match *match = m->u.kernel.match; |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 450 | struct compat_xt_entry_match __user *cm = *dstptr; |
| 451 | int off = xt_compat_match_offset(match); |
| 452 | u_int16_t msize = m->u.user.match_size - off; |
| 453 | |
| 454 | if (copy_to_user(cm, m, sizeof(*cm)) || |
Patrick McHardy | a18aa31 | 2007-12-12 10:35:16 -0800 | [diff] [blame] | 455 | put_user(msize, &cm->u.user.match_size) || |
| 456 | copy_to_user(cm->u.user.name, m->u.kernel.match->name, |
| 457 | strlen(m->u.kernel.match->name) + 1)) |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 458 | return -EFAULT; |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 459 | |
| 460 | if (match->compat_to_user) { |
| 461 | if (match->compat_to_user((void __user *)cm->data, m->data)) |
| 462 | return -EFAULT; |
| 463 | } else { |
| 464 | if (copy_to_user(cm->data, m->data, msize - sizeof(*cm))) |
| 465 | return -EFAULT; |
| 466 | } |
| 467 | |
| 468 | *size -= off; |
| 469 | *dstptr += msize; |
| 470 | return 0; |
| 471 | } |
| 472 | EXPORT_SYMBOL_GPL(xt_compat_match_to_user); |
| 473 | #endif /* CONFIG_COMPAT */ |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 474 | |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 475 | int xt_check_target(struct xt_tgchk_param *par, |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 476 | unsigned int size, u_int8_t proto, bool inv_proto) |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 477 | { |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 478 | if (XT_ALIGN(par->target->targetsize) != size) { |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 479 | printk("%s_tables: %s target: invalid size %Zu != %u\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 480 | xt_prefix[par->family], par->target->name, |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 481 | XT_ALIGN(par->target->targetsize), size); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 482 | return -EINVAL; |
| 483 | } |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 484 | if (par->target->table != NULL && |
| 485 | strcmp(par->target->table, par->table) != 0) { |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 486 | printk("%s_tables: %s target: only valid in %s table, not %s\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 487 | xt_prefix[par->family], par->target->name, |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 488 | par->target->table, par->table); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 489 | return -EINVAL; |
| 490 | } |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 491 | if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) { |
Jan Engelhardt | 102befa | 2008-10-08 11:35:15 +0200 | [diff] [blame] | 492 | printk("%s_tables: %s target: bad hook_mask %#x/%#x\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 493 | xt_prefix[par->family], par->target->name, |
| 494 | par->hook_mask, par->target->hooks); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 495 | return -EINVAL; |
| 496 | } |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 497 | if (par->target->proto && (par->target->proto != proto || inv_proto)) { |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 498 | printk("%s_tables: %s target: only valid for protocol %u\n", |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 499 | xt_prefix[par->family], par->target->name, |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 500 | par->target->proto); |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 501 | return -EINVAL; |
| 502 | } |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 503 | if (par->target->checkentry != NULL && !par->target->checkentry(par)) |
Jan Engelhardt | 367c679 | 2008-10-08 11:35:17 +0200 | [diff] [blame] | 504 | return -EINVAL; |
Patrick McHardy | 37f9f73 | 2006-03-20 17:59:06 -0800 | [diff] [blame] | 505 | return 0; |
| 506 | } |
| 507 | EXPORT_SYMBOL_GPL(xt_check_target); |
| 508 | |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 509 | #ifdef CONFIG_COMPAT |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 510 | int xt_compat_target_offset(const struct xt_target *target) |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 511 | { |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 512 | u_int16_t csize = target->compatsize ? : target->targetsize; |
| 513 | return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize); |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 514 | } |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 515 | EXPORT_SYMBOL_GPL(xt_compat_target_offset); |
| 516 | |
| 517 | void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr, |
Patrick McHardy | b0a6363 | 2008-01-31 04:10:18 -0800 | [diff] [blame] | 518 | unsigned int *size) |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 519 | { |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 520 | const struct xt_target *target = t->u.kernel.target; |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 521 | struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t; |
| 522 | int pad, off = xt_compat_target_offset(target); |
| 523 | u_int16_t tsize = ct->u.user.target_size; |
| 524 | |
| 525 | t = *dstptr; |
| 526 | memcpy(t, ct, sizeof(*ct)); |
| 527 | if (target->compat_from_user) |
| 528 | target->compat_from_user(t->data, ct->data); |
| 529 | else |
| 530 | memcpy(t->data, ct->data, tsize - sizeof(*ct)); |
| 531 | pad = XT_ALIGN(target->targetsize) - target->targetsize; |
| 532 | if (pad > 0) |
| 533 | memset(t->data + target->targetsize, 0, pad); |
| 534 | |
| 535 | tsize += off; |
| 536 | t->u.user.target_size = tsize; |
| 537 | |
| 538 | *size += off; |
| 539 | *dstptr += tsize; |
| 540 | } |
| 541 | EXPORT_SYMBOL_GPL(xt_compat_target_from_user); |
| 542 | |
| 543 | int xt_compat_target_to_user(struct xt_entry_target *t, void __user **dstptr, |
Patrick McHardy | b0a6363 | 2008-01-31 04:10:18 -0800 | [diff] [blame] | 544 | unsigned int *size) |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 545 | { |
Jan Engelhardt | 5452e42 | 2008-04-14 11:15:35 +0200 | [diff] [blame] | 546 | const struct xt_target *target = t->u.kernel.target; |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 547 | struct compat_xt_entry_target __user *ct = *dstptr; |
| 548 | int off = xt_compat_target_offset(target); |
| 549 | u_int16_t tsize = t->u.user.target_size - off; |
| 550 | |
| 551 | if (copy_to_user(ct, t, sizeof(*ct)) || |
Patrick McHardy | a18aa31 | 2007-12-12 10:35:16 -0800 | [diff] [blame] | 552 | put_user(tsize, &ct->u.user.target_size) || |
| 553 | copy_to_user(ct->u.user.name, t->u.kernel.target->name, |
| 554 | strlen(t->u.kernel.target->name) + 1)) |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 555 | return -EFAULT; |
Patrick McHardy | 9fa492c | 2006-09-20 12:05:37 -0700 | [diff] [blame] | 556 | |
| 557 | if (target->compat_to_user) { |
| 558 | if (target->compat_to_user((void __user *)ct->data, t->data)) |
| 559 | return -EFAULT; |
| 560 | } else { |
| 561 | if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct))) |
| 562 | return -EFAULT; |
| 563 | } |
| 564 | |
| 565 | *size -= off; |
| 566 | *dstptr += tsize; |
| 567 | return 0; |
| 568 | } |
| 569 | EXPORT_SYMBOL_GPL(xt_compat_target_to_user); |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 570 | #endif |
| 571 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 572 | struct xt_table_info *xt_alloc_table_info(unsigned int size) |
| 573 | { |
| 574 | struct xt_table_info *newinfo; |
| 575 | int cpu; |
| 576 | |
| 577 | /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */ |
| 578 | if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > num_physpages) |
| 579 | return NULL; |
| 580 | |
Eric Dumazet | 259d4e4 | 2007-12-04 23:24:56 -0800 | [diff] [blame] | 581 | newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 582 | if (!newinfo) |
| 583 | return NULL; |
| 584 | |
| 585 | newinfo->size = size; |
| 586 | |
KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 587 | for_each_possible_cpu(cpu) { |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 588 | if (size <= PAGE_SIZE) |
| 589 | newinfo->entries[cpu] = kmalloc_node(size, |
| 590 | GFP_KERNEL, |
| 591 | cpu_to_node(cpu)); |
| 592 | else |
| 593 | newinfo->entries[cpu] = vmalloc_node(size, |
| 594 | cpu_to_node(cpu)); |
| 595 | |
| 596 | if (newinfo->entries[cpu] == NULL) { |
| 597 | xt_free_table_info(newinfo); |
| 598 | return NULL; |
| 599 | } |
| 600 | } |
| 601 | |
| 602 | return newinfo; |
| 603 | } |
| 604 | EXPORT_SYMBOL(xt_alloc_table_info); |
| 605 | |
| 606 | void xt_free_table_info(struct xt_table_info *info) |
| 607 | { |
| 608 | int cpu; |
| 609 | |
KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 610 | for_each_possible_cpu(cpu) { |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 611 | if (info->size <= PAGE_SIZE) |
| 612 | kfree(info->entries[cpu]); |
| 613 | else |
| 614 | vfree(info->entries[cpu]); |
| 615 | } |
| 616 | kfree(info); |
| 617 | } |
| 618 | EXPORT_SYMBOL(xt_free_table_info); |
| 619 | |
| 620 | /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */ |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 621 | struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af, |
| 622 | const char *name) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 623 | { |
| 624 | struct xt_table *t; |
| 625 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 626 | if (mutex_lock_interruptible(&xt[af].mutex) != 0) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 627 | return ERR_PTR(-EINTR); |
| 628 | |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 629 | list_for_each_entry(t, &net->xt.tables[af], list) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 630 | if (strcmp(t->name, name) == 0 && try_module_get(t->me)) |
| 631 | return t; |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 632 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 633 | return NULL; |
| 634 | } |
| 635 | EXPORT_SYMBOL_GPL(xt_find_table_lock); |
| 636 | |
| 637 | void xt_table_unlock(struct xt_table *table) |
| 638 | { |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 639 | mutex_unlock(&xt[table->af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 640 | } |
| 641 | EXPORT_SYMBOL_GPL(xt_table_unlock); |
| 642 | |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 643 | #ifdef CONFIG_COMPAT |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 644 | void xt_compat_lock(u_int8_t af) |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 645 | { |
| 646 | mutex_lock(&xt[af].compat_mutex); |
| 647 | } |
| 648 | EXPORT_SYMBOL_GPL(xt_compat_lock); |
| 649 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 650 | void xt_compat_unlock(u_int8_t af) |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 651 | { |
| 652 | mutex_unlock(&xt[af].compat_mutex); |
| 653 | } |
| 654 | EXPORT_SYMBOL_GPL(xt_compat_unlock); |
| 655 | #endif |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 656 | |
| 657 | struct xt_table_info * |
| 658 | xt_replace_table(struct xt_table *table, |
| 659 | unsigned int num_counters, |
| 660 | struct xt_table_info *newinfo, |
| 661 | int *error) |
| 662 | { |
| 663 | struct xt_table_info *oldinfo, *private; |
| 664 | |
| 665 | /* Do the substitution. */ |
| 666 | write_lock_bh(&table->lock); |
| 667 | private = table->private; |
| 668 | /* Check inside lock: is the old number correct? */ |
| 669 | if (num_counters != private->number) { |
| 670 | duprintf("num_counters != table->private->number (%u/%u)\n", |
| 671 | num_counters, private->number); |
| 672 | write_unlock_bh(&table->lock); |
| 673 | *error = -EAGAIN; |
| 674 | return NULL; |
| 675 | } |
| 676 | oldinfo = private; |
| 677 | table->private = newinfo; |
| 678 | newinfo->initial_entries = oldinfo->initial_entries; |
| 679 | write_unlock_bh(&table->lock); |
| 680 | |
| 681 | return oldinfo; |
| 682 | } |
| 683 | EXPORT_SYMBOL_GPL(xt_replace_table); |
| 684 | |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 685 | struct xt_table *xt_register_table(struct net *net, struct xt_table *table, |
Alexey Dobriyan | a98da11 | 2008-01-31 04:01:49 -0800 | [diff] [blame] | 686 | struct xt_table_info *bootstrap, |
| 687 | struct xt_table_info *newinfo) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 688 | { |
| 689 | int ret; |
| 690 | struct xt_table_info *private; |
Patrick McHardy | df0933d | 2006-09-20 11:57:53 -0700 | [diff] [blame] | 691 | struct xt_table *t; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 692 | |
Alexey Dobriyan | 44d34e7 | 2008-01-31 04:02:44 -0800 | [diff] [blame] | 693 | /* Don't add one object to multiple lists. */ |
| 694 | table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL); |
| 695 | if (!table) { |
| 696 | ret = -ENOMEM; |
| 697 | goto out; |
| 698 | } |
| 699 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 700 | ret = mutex_lock_interruptible(&xt[table->af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 701 | if (ret != 0) |
Alexey Dobriyan | 44d34e7 | 2008-01-31 04:02:44 -0800 | [diff] [blame] | 702 | goto out_free; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 703 | |
| 704 | /* Don't autoload: we'd eat our tail... */ |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 705 | list_for_each_entry(t, &net->xt.tables[table->af], list) { |
Patrick McHardy | df0933d | 2006-09-20 11:57:53 -0700 | [diff] [blame] | 706 | if (strcmp(t->name, table->name) == 0) { |
| 707 | ret = -EEXIST; |
| 708 | goto unlock; |
| 709 | } |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | /* Simplifies replace_table code. */ |
| 713 | table->private = bootstrap; |
Dmitry Mishin | 91536b7 | 2006-04-24 17:18:25 -0700 | [diff] [blame] | 714 | rwlock_init(&table->lock); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 715 | if (!xt_replace_table(table, 0, newinfo, &ret)) |
| 716 | goto unlock; |
| 717 | |
| 718 | private = table->private; |
| 719 | duprintf("table->private->number = %u\n", private->number); |
| 720 | |
| 721 | /* save number of initial entries */ |
| 722 | private->initial_entries = private->number; |
| 723 | |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 724 | list_add(&table->list, &net->xt.tables[table->af]); |
Alexey Dobriyan | a98da11 | 2008-01-31 04:01:49 -0800 | [diff] [blame] | 725 | mutex_unlock(&xt[table->af].mutex); |
| 726 | return table; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 727 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 728 | unlock: |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 729 | mutex_unlock(&xt[table->af].mutex); |
Alexey Dobriyan | 44d34e7 | 2008-01-31 04:02:44 -0800 | [diff] [blame] | 730 | out_free: |
| 731 | kfree(table); |
Alexey Dobriyan | a98da11 | 2008-01-31 04:01:49 -0800 | [diff] [blame] | 732 | out: |
| 733 | return ERR_PTR(ret); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 734 | } |
| 735 | EXPORT_SYMBOL_GPL(xt_register_table); |
| 736 | |
| 737 | void *xt_unregister_table(struct xt_table *table) |
| 738 | { |
| 739 | struct xt_table_info *private; |
| 740 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 741 | mutex_lock(&xt[table->af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 742 | private = table->private; |
Patrick McHardy | df0933d | 2006-09-20 11:57:53 -0700 | [diff] [blame] | 743 | list_del(&table->list); |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 744 | mutex_unlock(&xt[table->af].mutex); |
Alexey Dobriyan | 44d34e7 | 2008-01-31 04:02:44 -0800 | [diff] [blame] | 745 | kfree(table); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 746 | |
| 747 | return private; |
| 748 | } |
| 749 | EXPORT_SYMBOL_GPL(xt_unregister_table); |
| 750 | |
| 751 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 752 | struct xt_names_priv { |
| 753 | struct seq_net_private p; |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 754 | u_int8_t af; |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 755 | }; |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 756 | static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 757 | { |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 758 | struct xt_names_priv *priv = seq->private; |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 759 | struct net *net = seq_file_net(seq); |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 760 | u_int8_t af = priv->af; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 761 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 762 | mutex_lock(&xt[af].mutex); |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 763 | return seq_list_start(&net->xt.tables[af], *pos); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 764 | } |
| 765 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 766 | static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 767 | { |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 768 | struct xt_names_priv *priv = seq->private; |
YOSHIFUJI Hideaki | 1218854 | 2008-03-26 02:36:06 +0900 | [diff] [blame] | 769 | struct net *net = seq_file_net(seq); |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 770 | u_int8_t af = priv->af; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 771 | |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 772 | return seq_list_next(v, &net->xt.tables[af], pos); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 773 | } |
| 774 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 775 | static void xt_table_seq_stop(struct seq_file *seq, void *v) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 776 | { |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 777 | struct xt_names_priv *priv = seq->private; |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 778 | u_int8_t af = priv->af; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 779 | |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 780 | mutex_unlock(&xt[af].mutex); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 781 | } |
| 782 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 783 | static int xt_table_seq_show(struct seq_file *seq, void *v) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 784 | { |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 785 | struct xt_table *table = list_entry(v, struct xt_table, list); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 786 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 787 | if (strlen(table->name)) |
| 788 | return seq_printf(seq, "%s\n", table->name); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 789 | else |
| 790 | return 0; |
| 791 | } |
| 792 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 793 | static const struct seq_operations xt_table_seq_ops = { |
| 794 | .start = xt_table_seq_start, |
| 795 | .next = xt_table_seq_next, |
| 796 | .stop = xt_table_seq_stop, |
| 797 | .show = xt_table_seq_show, |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 798 | }; |
| 799 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 800 | static int xt_table_open(struct inode *inode, struct file *file) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 801 | { |
| 802 | int ret; |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 803 | struct xt_names_priv *priv; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 804 | |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 805 | ret = seq_open_net(inode, file, &xt_table_seq_ops, |
| 806 | sizeof(struct xt_names_priv)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 807 | if (!ret) { |
Alexey Dobriyan | 715cf35 | 2008-01-31 04:49:16 -0800 | [diff] [blame] | 808 | priv = ((struct seq_file *)file->private_data)->private; |
| 809 | priv->af = (unsigned long)PDE(inode)->data; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 810 | } |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 811 | return ret; |
| 812 | } |
| 813 | |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 814 | static const struct file_operations xt_table_ops = { |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 815 | .owner = THIS_MODULE, |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 816 | .open = xt_table_open, |
| 817 | .read = seq_read, |
| 818 | .llseek = seq_lseek, |
Pavel Emelyanov | 0e93bb94 | 2008-04-29 03:15:35 -0700 | [diff] [blame] | 819 | .release = seq_release_net, |
Alexey Dobriyan | 025d93d | 2008-01-31 04:48:54 -0800 | [diff] [blame] | 820 | }; |
| 821 | |
| 822 | static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos) |
| 823 | { |
| 824 | struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private; |
| 825 | u_int16_t af = (unsigned long)pde->data; |
| 826 | |
| 827 | mutex_lock(&xt[af].mutex); |
| 828 | return seq_list_start(&xt[af].match, *pos); |
| 829 | } |
| 830 | |
| 831 | static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 832 | { |
| 833 | struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private; |
| 834 | u_int16_t af = (unsigned long)pde->data; |
| 835 | |
| 836 | return seq_list_next(v, &xt[af].match, pos); |
| 837 | } |
| 838 | |
| 839 | static void xt_match_seq_stop(struct seq_file *seq, void *v) |
| 840 | { |
| 841 | struct proc_dir_entry *pde = seq->private; |
| 842 | u_int16_t af = (unsigned long)pde->data; |
| 843 | |
| 844 | mutex_unlock(&xt[af].mutex); |
| 845 | } |
| 846 | |
| 847 | static int xt_match_seq_show(struct seq_file *seq, void *v) |
| 848 | { |
| 849 | struct xt_match *match = list_entry(v, struct xt_match, list); |
| 850 | |
| 851 | if (strlen(match->name)) |
| 852 | return seq_printf(seq, "%s\n", match->name); |
| 853 | else |
| 854 | return 0; |
| 855 | } |
| 856 | |
| 857 | static const struct seq_operations xt_match_seq_ops = { |
| 858 | .start = xt_match_seq_start, |
| 859 | .next = xt_match_seq_next, |
| 860 | .stop = xt_match_seq_stop, |
| 861 | .show = xt_match_seq_show, |
| 862 | }; |
| 863 | |
| 864 | static int xt_match_open(struct inode *inode, struct file *file) |
| 865 | { |
| 866 | int ret; |
| 867 | |
| 868 | ret = seq_open(file, &xt_match_seq_ops); |
| 869 | if (!ret) { |
| 870 | struct seq_file *seq = file->private_data; |
| 871 | |
| 872 | seq->private = PDE(inode); |
| 873 | } |
| 874 | return ret; |
| 875 | } |
| 876 | |
| 877 | static const struct file_operations xt_match_ops = { |
| 878 | .owner = THIS_MODULE, |
| 879 | .open = xt_match_open, |
| 880 | .read = seq_read, |
| 881 | .llseek = seq_lseek, |
| 882 | .release = seq_release, |
| 883 | }; |
| 884 | |
| 885 | static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos) |
| 886 | { |
| 887 | struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private; |
| 888 | u_int16_t af = (unsigned long)pde->data; |
| 889 | |
| 890 | mutex_lock(&xt[af].mutex); |
| 891 | return seq_list_start(&xt[af].target, *pos); |
| 892 | } |
| 893 | |
| 894 | static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 895 | { |
| 896 | struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private; |
| 897 | u_int16_t af = (unsigned long)pde->data; |
| 898 | |
| 899 | return seq_list_next(v, &xt[af].target, pos); |
| 900 | } |
| 901 | |
| 902 | static void xt_target_seq_stop(struct seq_file *seq, void *v) |
| 903 | { |
| 904 | struct proc_dir_entry *pde = seq->private; |
| 905 | u_int16_t af = (unsigned long)pde->data; |
| 906 | |
| 907 | mutex_unlock(&xt[af].mutex); |
| 908 | } |
| 909 | |
| 910 | static int xt_target_seq_show(struct seq_file *seq, void *v) |
| 911 | { |
| 912 | struct xt_target *target = list_entry(v, struct xt_target, list); |
| 913 | |
| 914 | if (strlen(target->name)) |
| 915 | return seq_printf(seq, "%s\n", target->name); |
| 916 | else |
| 917 | return 0; |
| 918 | } |
| 919 | |
| 920 | static const struct seq_operations xt_target_seq_ops = { |
| 921 | .start = xt_target_seq_start, |
| 922 | .next = xt_target_seq_next, |
| 923 | .stop = xt_target_seq_stop, |
| 924 | .show = xt_target_seq_show, |
| 925 | }; |
| 926 | |
| 927 | static int xt_target_open(struct inode *inode, struct file *file) |
| 928 | { |
| 929 | int ret; |
| 930 | |
| 931 | ret = seq_open(file, &xt_target_seq_ops); |
| 932 | if (!ret) { |
| 933 | struct seq_file *seq = file->private_data; |
| 934 | |
| 935 | seq->private = PDE(inode); |
| 936 | } |
| 937 | return ret; |
| 938 | } |
| 939 | |
| 940 | static const struct file_operations xt_target_ops = { |
| 941 | .owner = THIS_MODULE, |
| 942 | .open = xt_target_open, |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 943 | .read = seq_read, |
| 944 | .llseek = seq_lseek, |
| 945 | .release = seq_release, |
| 946 | }; |
| 947 | |
| 948 | #define FORMAT_TABLES "_tables_names" |
| 949 | #define FORMAT_MATCHES "_tables_matches" |
| 950 | #define FORMAT_TARGETS "_tables_targets" |
| 951 | |
| 952 | #endif /* CONFIG_PROC_FS */ |
| 953 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 954 | int xt_proto_init(struct net *net, u_int8_t af) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 955 | { |
| 956 | #ifdef CONFIG_PROC_FS |
| 957 | char buf[XT_FUNCTION_MAXNAMELEN]; |
| 958 | struct proc_dir_entry *proc; |
| 959 | #endif |
| 960 | |
Jan Engelhardt | 7e9c6ee | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 961 | if (af >= ARRAY_SIZE(xt_prefix)) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 962 | return -EINVAL; |
| 963 | |
| 964 | |
| 965 | #ifdef CONFIG_PROC_FS |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 966 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 967 | strlcat(buf, FORMAT_TABLES, sizeof(buf)); |
Denis V. Lunev | 8b16924 | 2008-05-02 04:11:52 -0700 | [diff] [blame] | 968 | proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops, |
| 969 | (void *)(unsigned long)af); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 970 | if (!proc) |
| 971 | goto out; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 972 | |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 973 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 974 | strlcat(buf, FORMAT_MATCHES, sizeof(buf)); |
Denis V. Lunev | 8b16924 | 2008-05-02 04:11:52 -0700 | [diff] [blame] | 975 | proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops, |
| 976 | (void *)(unsigned long)af); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 977 | if (!proc) |
| 978 | goto out_remove_tables; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 979 | |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 980 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 981 | strlcat(buf, FORMAT_TARGETS, sizeof(buf)); |
Denis V. Lunev | 8b16924 | 2008-05-02 04:11:52 -0700 | [diff] [blame] | 982 | proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops, |
| 983 | (void *)(unsigned long)af); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 984 | if (!proc) |
| 985 | goto out_remove_matches; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 986 | #endif |
| 987 | |
| 988 | return 0; |
| 989 | |
| 990 | #ifdef CONFIG_PROC_FS |
| 991 | out_remove_matches: |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 992 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 993 | strlcat(buf, FORMAT_MATCHES, sizeof(buf)); |
Alexey Dobriyan | 3cb609d | 2008-01-31 04:49:35 -0800 | [diff] [blame] | 994 | proc_net_remove(net, buf); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 995 | |
| 996 | out_remove_tables: |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 997 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 998 | strlcat(buf, FORMAT_TABLES, sizeof(buf)); |
Alexey Dobriyan | 3cb609d | 2008-01-31 04:49:35 -0800 | [diff] [blame] | 999 | proc_net_remove(net, buf); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1000 | out: |
| 1001 | return -1; |
| 1002 | #endif |
| 1003 | } |
| 1004 | EXPORT_SYMBOL_GPL(xt_proto_init); |
| 1005 | |
Jan Engelhardt | 76108ce | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 1006 | void xt_proto_fini(struct net *net, u_int8_t af) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1007 | { |
| 1008 | #ifdef CONFIG_PROC_FS |
| 1009 | char buf[XT_FUNCTION_MAXNAMELEN]; |
| 1010 | |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 1011 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1012 | strlcat(buf, FORMAT_TABLES, sizeof(buf)); |
Alexey Dobriyan | 3cb609d | 2008-01-31 04:49:35 -0800 | [diff] [blame] | 1013 | proc_net_remove(net, buf); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1014 | |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 1015 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1016 | strlcat(buf, FORMAT_TARGETS, sizeof(buf)); |
Alexey Dobriyan | 3cb609d | 2008-01-31 04:49:35 -0800 | [diff] [blame] | 1017 | proc_net_remove(net, buf); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1018 | |
Tobias Klauser | ce18afe | 2007-03-14 16:36:16 -0700 | [diff] [blame] | 1019 | strlcpy(buf, xt_prefix[af], sizeof(buf)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1020 | strlcat(buf, FORMAT_MATCHES, sizeof(buf)); |
Alexey Dobriyan | 3cb609d | 2008-01-31 04:49:35 -0800 | [diff] [blame] | 1021 | proc_net_remove(net, buf); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1022 | #endif /*CONFIG_PROC_FS*/ |
| 1023 | } |
| 1024 | EXPORT_SYMBOL_GPL(xt_proto_fini); |
| 1025 | |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 1026 | static int __net_init xt_net_init(struct net *net) |
| 1027 | { |
| 1028 | int i; |
| 1029 | |
Jan Engelhardt | 7e9c6ee | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 1030 | for (i = 0; i < NFPROTO_NUMPROTO; i++) |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 1031 | INIT_LIST_HEAD(&net->xt.tables[i]); |
| 1032 | return 0; |
| 1033 | } |
| 1034 | |
| 1035 | static struct pernet_operations xt_net_ops = { |
| 1036 | .init = xt_net_init, |
| 1037 | }; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1038 | |
| 1039 | static int __init xt_init(void) |
| 1040 | { |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 1041 | int i, rv; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1042 | |
Jan Engelhardt | 7e9c6ee | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 1043 | xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1044 | if (!xt) |
| 1045 | return -ENOMEM; |
| 1046 | |
Jan Engelhardt | 7e9c6ee | 2008-10-08 11:35:00 +0200 | [diff] [blame] | 1047 | for (i = 0; i < NFPROTO_NUMPROTO; i++) { |
Ingo Molnar | 9e19bb6 | 2006-03-25 01:41:10 -0800 | [diff] [blame] | 1048 | mutex_init(&xt[i].mutex); |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 1049 | #ifdef CONFIG_COMPAT |
| 1050 | mutex_init(&xt[i].compat_mutex); |
Patrick McHardy | b386d9f | 2007-12-17 21:47:48 -0800 | [diff] [blame] | 1051 | xt[i].compat_offsets = NULL; |
Dmitry Mishin | 2722971 | 2006-04-01 02:25:19 -0800 | [diff] [blame] | 1052 | #endif |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1053 | INIT_LIST_HEAD(&xt[i].target); |
| 1054 | INIT_LIST_HEAD(&xt[i].match); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1055 | } |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 1056 | rv = register_pernet_subsys(&xt_net_ops); |
| 1057 | if (rv < 0) |
| 1058 | kfree(xt); |
| 1059 | return rv; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1060 | } |
| 1061 | |
| 1062 | static void __exit xt_fini(void) |
| 1063 | { |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 1064 | unregister_pernet_subsys(&xt_net_ops); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1065 | kfree(xt); |
| 1066 | } |
| 1067 | |
| 1068 | module_init(xt_init); |
| 1069 | module_exit(xt_fini); |
| 1070 | |