Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/act_api.c Packet action API. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version |
| 7 | * 2 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * Author: Jamal Hadi Salim |
| 10 | * |
| 11 | * |
| 12 | */ |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/errno.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/init.h> |
| 21 | #include <linux/kmod.h> |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 22 | #include <linux/err.h> |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 23 | #include <net/net_namespace.h> |
| 24 | #include <net/sock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <net/sch_generic.h> |
| 26 | #include <net/act_api.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 27 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 29 | void tcf_hash_destroy(struct tcf_common *p, struct tcf_hashinfo *hinfo) |
| 30 | { |
| 31 | unsigned int h = tcf_hash(p->tcfc_index, hinfo->hmask); |
| 32 | struct tcf_common **p1p; |
| 33 | |
| 34 | for (p1p = &hinfo->htab[h]; *p1p; p1p = &(*p1p)->tcfc_next) { |
| 35 | if (*p1p == p) { |
| 36 | write_lock_bh(hinfo->lock); |
| 37 | *p1p = p->tcfc_next; |
| 38 | write_unlock_bh(hinfo->lock); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 39 | gen_kill_estimator(&p->tcfc_bstats, |
| 40 | &p->tcfc_rate_est); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 41 | kfree(p); |
| 42 | return; |
| 43 | } |
| 44 | } |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 45 | WARN_ON(1); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 46 | } |
| 47 | EXPORT_SYMBOL(tcf_hash_destroy); |
| 48 | |
| 49 | int tcf_hash_release(struct tcf_common *p, int bind, |
| 50 | struct tcf_hashinfo *hinfo) |
| 51 | { |
| 52 | int ret = 0; |
| 53 | |
| 54 | if (p) { |
| 55 | if (bind) |
| 56 | p->tcfc_bindcnt--; |
| 57 | |
| 58 | p->tcfc_refcnt--; |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 59 | if (p->tcfc_bindcnt <= 0 && p->tcfc_refcnt <= 0) { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 60 | tcf_hash_destroy(p, hinfo); |
| 61 | ret = 1; |
| 62 | } |
| 63 | } |
| 64 | return ret; |
| 65 | } |
| 66 | EXPORT_SYMBOL(tcf_hash_release); |
| 67 | |
| 68 | static int tcf_dump_walker(struct sk_buff *skb, struct netlink_callback *cb, |
| 69 | struct tc_action *a, struct tcf_hashinfo *hinfo) |
| 70 | { |
| 71 | struct tcf_common *p; |
| 72 | int err = 0, index = -1,i = 0, s_i = 0, n_i = 0; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 73 | struct nlattr *nest; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 74 | |
Jamal Hadi Salim | e1e992e | 2007-09-12 16:32:59 +0200 | [diff] [blame] | 75 | read_lock_bh(hinfo->lock); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 76 | |
| 77 | s_i = cb->args[0]; |
| 78 | |
| 79 | for (i = 0; i < (hinfo->hmask + 1); i++) { |
| 80 | p = hinfo->htab[tcf_hash(i, hinfo->hmask)]; |
| 81 | |
| 82 | for (; p; p = p->tcfc_next) { |
| 83 | index++; |
| 84 | if (index < s_i) |
| 85 | continue; |
| 86 | a->priv = p; |
| 87 | a->order = n_i; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 88 | |
| 89 | nest = nla_nest_start(skb, a->order); |
| 90 | if (nest == NULL) |
| 91 | goto nla_put_failure; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 92 | err = tcf_action_dump_1(skb, a, 0, 0); |
| 93 | if (err < 0) { |
| 94 | index--; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 95 | nlmsg_trim(skb, nest); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 96 | goto done; |
| 97 | } |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 98 | nla_nest_end(skb, nest); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 99 | n_i++; |
| 100 | if (n_i >= TCA_ACT_MAX_PRIO) |
| 101 | goto done; |
| 102 | } |
| 103 | } |
| 104 | done: |
Jamal Hadi Salim | e1e992e | 2007-09-12 16:32:59 +0200 | [diff] [blame] | 105 | read_unlock_bh(hinfo->lock); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 106 | if (n_i) |
| 107 | cb->args[0] += n_i; |
| 108 | return n_i; |
| 109 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 110 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 111 | nla_nest_cancel(skb, nest); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 112 | goto done; |
| 113 | } |
| 114 | |
| 115 | static int tcf_del_walker(struct sk_buff *skb, struct tc_action *a, |
| 116 | struct tcf_hashinfo *hinfo) |
| 117 | { |
| 118 | struct tcf_common *p, *s_p; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 119 | struct nlattr *nest; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 120 | int i= 0, n_i = 0; |
| 121 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 122 | nest = nla_nest_start(skb, a->order); |
| 123 | if (nest == NULL) |
| 124 | goto nla_put_failure; |
Patrick McHardy | 57e1c48 | 2008-01-23 20:34:28 -0800 | [diff] [blame] | 125 | NLA_PUT_STRING(skb, TCA_KIND, a->ops->kind); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 126 | for (i = 0; i < (hinfo->hmask + 1); i++) { |
| 127 | p = hinfo->htab[tcf_hash(i, hinfo->hmask)]; |
| 128 | |
| 129 | while (p != NULL) { |
| 130 | s_p = p->tcfc_next; |
| 131 | if (ACT_P_DELETED == tcf_hash_release(p, 0, hinfo)) |
| 132 | module_put(a->ops->owner); |
| 133 | n_i++; |
| 134 | p = s_p; |
| 135 | } |
| 136 | } |
Patrick McHardy | 24beeab | 2008-01-23 20:34:48 -0800 | [diff] [blame] | 137 | NLA_PUT_U32(skb, TCA_FCNT, n_i); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 138 | nla_nest_end(skb, nest); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 139 | |
| 140 | return n_i; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 141 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 142 | nla_nest_cancel(skb, nest); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 143 | return -EINVAL; |
| 144 | } |
| 145 | |
| 146 | int tcf_generic_walker(struct sk_buff *skb, struct netlink_callback *cb, |
| 147 | int type, struct tc_action *a) |
| 148 | { |
| 149 | struct tcf_hashinfo *hinfo = a->ops->hinfo; |
| 150 | |
| 151 | if (type == RTM_DELACTION) { |
| 152 | return tcf_del_walker(skb, a, hinfo); |
| 153 | } else if (type == RTM_GETACTION) { |
| 154 | return tcf_dump_walker(skb, cb, a, hinfo); |
| 155 | } else { |
| 156 | printk("tcf_generic_walker: unknown action %d\n", type); |
| 157 | return -EINVAL; |
| 158 | } |
| 159 | } |
| 160 | EXPORT_SYMBOL(tcf_generic_walker); |
| 161 | |
| 162 | struct tcf_common *tcf_hash_lookup(u32 index, struct tcf_hashinfo *hinfo) |
| 163 | { |
| 164 | struct tcf_common *p; |
| 165 | |
Jamal Hadi Salim | e1e992e | 2007-09-12 16:32:59 +0200 | [diff] [blame] | 166 | read_lock_bh(hinfo->lock); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 167 | for (p = hinfo->htab[tcf_hash(index, hinfo->hmask)]; p; |
| 168 | p = p->tcfc_next) { |
| 169 | if (p->tcfc_index == index) |
| 170 | break; |
| 171 | } |
Jamal Hadi Salim | e1e992e | 2007-09-12 16:32:59 +0200 | [diff] [blame] | 172 | read_unlock_bh(hinfo->lock); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 173 | |
| 174 | return p; |
| 175 | } |
| 176 | EXPORT_SYMBOL(tcf_hash_lookup); |
| 177 | |
| 178 | u32 tcf_hash_new_index(u32 *idx_gen, struct tcf_hashinfo *hinfo) |
| 179 | { |
| 180 | u32 val = *idx_gen; |
| 181 | |
| 182 | do { |
| 183 | if (++val == 0) |
| 184 | val = 1; |
| 185 | } while (tcf_hash_lookup(val, hinfo)); |
| 186 | |
| 187 | return (*idx_gen = val); |
| 188 | } |
| 189 | EXPORT_SYMBOL(tcf_hash_new_index); |
| 190 | |
| 191 | int tcf_hash_search(struct tc_action *a, u32 index) |
| 192 | { |
| 193 | struct tcf_hashinfo *hinfo = a->ops->hinfo; |
| 194 | struct tcf_common *p = tcf_hash_lookup(index, hinfo); |
| 195 | |
| 196 | if (p) { |
| 197 | a->priv = p; |
| 198 | return 1; |
| 199 | } |
| 200 | return 0; |
| 201 | } |
| 202 | EXPORT_SYMBOL(tcf_hash_search); |
| 203 | |
| 204 | struct tcf_common *tcf_hash_check(u32 index, struct tc_action *a, int bind, |
| 205 | struct tcf_hashinfo *hinfo) |
| 206 | { |
| 207 | struct tcf_common *p = NULL; |
| 208 | if (index && (p = tcf_hash_lookup(index, hinfo)) != NULL) { |
Jamal Hadi Salim | 76aab2c | 2008-08-07 20:37:22 -0700 | [diff] [blame] | 209 | if (bind) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 210 | p->tcfc_bindcnt++; |
Jamal Hadi Salim | 76aab2c | 2008-08-07 20:37:22 -0700 | [diff] [blame] | 211 | p->tcfc_refcnt++; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 212 | a->priv = p; |
| 213 | } |
| 214 | return p; |
| 215 | } |
| 216 | EXPORT_SYMBOL(tcf_hash_check); |
| 217 | |
Stephen Hemminger | 0e991ec | 2008-11-25 21:12:32 -0800 | [diff] [blame] | 218 | struct tcf_common *tcf_hash_create(u32 index, struct nlattr *est, |
| 219 | struct tc_action *a, int size, int bind, |
| 220 | u32 *idx_gen, struct tcf_hashinfo *hinfo) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 221 | { |
| 222 | struct tcf_common *p = kzalloc(size, GFP_KERNEL); |
| 223 | |
| 224 | if (unlikely(!p)) |
Stephen Hemminger | 0e991ec | 2008-11-25 21:12:32 -0800 | [diff] [blame] | 225 | return ERR_PTR(-ENOMEM); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 226 | p->tcfc_refcnt = 1; |
| 227 | if (bind) |
| 228 | p->tcfc_bindcnt = 1; |
| 229 | |
| 230 | spin_lock_init(&p->tcfc_lock); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 231 | p->tcfc_index = index ? index : tcf_hash_new_index(idx_gen, hinfo); |
| 232 | p->tcfc_tm.install = jiffies; |
| 233 | p->tcfc_tm.lastuse = jiffies; |
Stephen Hemminger | 0e991ec | 2008-11-25 21:12:32 -0800 | [diff] [blame] | 234 | if (est) { |
| 235 | int err = gen_new_estimator(&p->tcfc_bstats, &p->tcfc_rate_est, |
| 236 | &p->tcfc_lock, est); |
| 237 | if (err) { |
| 238 | kfree(p); |
| 239 | return ERR_PTR(err); |
| 240 | } |
| 241 | } |
| 242 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 243 | a->priv = (void *) p; |
| 244 | return p; |
| 245 | } |
| 246 | EXPORT_SYMBOL(tcf_hash_create); |
| 247 | |
| 248 | void tcf_hash_insert(struct tcf_common *p, struct tcf_hashinfo *hinfo) |
| 249 | { |
| 250 | unsigned int h = tcf_hash(p->tcfc_index, hinfo->hmask); |
| 251 | |
| 252 | write_lock_bh(hinfo->lock); |
| 253 | p->tcfc_next = hinfo->htab[h]; |
| 254 | hinfo->htab[h] = p; |
| 255 | write_unlock_bh(hinfo->lock); |
| 256 | } |
| 257 | EXPORT_SYMBOL(tcf_hash_insert); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | static struct tc_action_ops *act_base = NULL; |
| 260 | static DEFINE_RWLOCK(act_mod_lock); |
| 261 | |
| 262 | int tcf_register_action(struct tc_action_ops *act) |
| 263 | { |
| 264 | struct tc_action_ops *a, **ap; |
| 265 | |
| 266 | write_lock(&act_mod_lock); |
| 267 | for (ap = &act_base; (a = *ap) != NULL; ap = &a->next) { |
| 268 | if (act->type == a->type || (strcmp(act->kind, a->kind) == 0)) { |
| 269 | write_unlock(&act_mod_lock); |
| 270 | return -EEXIST; |
| 271 | } |
| 272 | } |
| 273 | act->next = NULL; |
| 274 | *ap = act; |
| 275 | write_unlock(&act_mod_lock); |
| 276 | return 0; |
| 277 | } |
Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 278 | EXPORT_SYMBOL(tcf_register_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
| 280 | int tcf_unregister_action(struct tc_action_ops *act) |
| 281 | { |
| 282 | struct tc_action_ops *a, **ap; |
| 283 | int err = -ENOENT; |
| 284 | |
| 285 | write_lock(&act_mod_lock); |
| 286 | for (ap = &act_base; (a = *ap) != NULL; ap = &a->next) |
| 287 | if (a == act) |
| 288 | break; |
| 289 | if (a) { |
| 290 | *ap = a->next; |
| 291 | a->next = NULL; |
| 292 | err = 0; |
| 293 | } |
| 294 | write_unlock(&act_mod_lock); |
| 295 | return err; |
| 296 | } |
Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 297 | EXPORT_SYMBOL(tcf_unregister_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | /* lookup by name */ |
| 300 | static struct tc_action_ops *tc_lookup_action_n(char *kind) |
| 301 | { |
| 302 | struct tc_action_ops *a = NULL; |
| 303 | |
| 304 | if (kind) { |
| 305 | read_lock(&act_mod_lock); |
| 306 | for (a = act_base; a; a = a->next) { |
| 307 | if (strcmp(kind, a->kind) == 0) { |
| 308 | if (!try_module_get(a->owner)) { |
| 309 | read_unlock(&act_mod_lock); |
| 310 | return NULL; |
| 311 | } |
| 312 | break; |
| 313 | } |
| 314 | } |
| 315 | read_unlock(&act_mod_lock); |
| 316 | } |
| 317 | return a; |
| 318 | } |
| 319 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 320 | /* lookup by nlattr */ |
| 321 | static struct tc_action_ops *tc_lookup_action(struct nlattr *kind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { |
| 323 | struct tc_action_ops *a = NULL; |
| 324 | |
| 325 | if (kind) { |
| 326 | read_lock(&act_mod_lock); |
| 327 | for (a = act_base; a; a = a->next) { |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 328 | if (nla_strcmp(kind, a->kind) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | if (!try_module_get(a->owner)) { |
| 330 | read_unlock(&act_mod_lock); |
| 331 | return NULL; |
| 332 | } |
| 333 | break; |
| 334 | } |
| 335 | } |
| 336 | read_unlock(&act_mod_lock); |
| 337 | } |
| 338 | return a; |
| 339 | } |
| 340 | |
| 341 | #if 0 |
| 342 | /* lookup by id */ |
| 343 | static struct tc_action_ops *tc_lookup_action_id(u32 type) |
| 344 | { |
| 345 | struct tc_action_ops *a = NULL; |
| 346 | |
| 347 | if (type) { |
| 348 | read_lock(&act_mod_lock); |
| 349 | for (a = act_base; a; a = a->next) { |
| 350 | if (a->type == type) { |
| 351 | if (!try_module_get(a->owner)) { |
| 352 | read_unlock(&act_mod_lock); |
| 353 | return NULL; |
| 354 | } |
| 355 | break; |
| 356 | } |
| 357 | } |
| 358 | read_unlock(&act_mod_lock); |
| 359 | } |
| 360 | return a; |
| 361 | } |
| 362 | #endif |
| 363 | |
| 364 | int tcf_action_exec(struct sk_buff *skb, struct tc_action *act, |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 365 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | { |
| 367 | struct tc_action *a; |
| 368 | int ret = -1; |
| 369 | |
| 370 | if (skb->tc_verd & TC_NCLS) { |
| 371 | skb->tc_verd = CLR_TC_NCLS(skb->tc_verd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | ret = TC_ACT_OK; |
| 373 | goto exec_done; |
| 374 | } |
| 375 | while ((a = act) != NULL) { |
| 376 | repeat: |
| 377 | if (a->ops && a->ops->act) { |
Patrick McHardy | f43c5a0 | 2006-01-08 22:15:34 -0800 | [diff] [blame] | 378 | ret = a->ops->act(skb, a, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | if (TC_MUNGED & skb->tc_verd) { |
| 380 | /* copied already, allow trampling */ |
| 381 | skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd); |
| 382 | skb->tc_verd = CLR_TC_MUNGED(skb->tc_verd); |
| 383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | if (ret == TC_ACT_REPEAT) |
| 385 | goto repeat; /* we need a ttl - JHS */ |
J Hadi Salim | 14d50e7 | 2005-05-03 16:29:13 -0700 | [diff] [blame] | 386 | if (ret != TC_ACT_PIPE) |
| 387 | goto exec_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } |
| 389 | act = a->next; |
| 390 | } |
| 391 | exec_done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | return ret; |
| 393 | } |
Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 394 | EXPORT_SYMBOL(tcf_action_exec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
| 396 | void tcf_action_destroy(struct tc_action *act, int bind) |
| 397 | { |
| 398 | struct tc_action *a; |
| 399 | |
| 400 | for (a = act; a; a = act) { |
| 401 | if (a->ops && a->ops->cleanup) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | if (a->ops->cleanup(a, bind) == ACT_P_DELETED) |
| 403 | module_put(a->ops->owner); |
| 404 | act = act->next; |
| 405 | kfree(a); |
| 406 | } else { /*FIXME: Remove later - catch insertion bugs*/ |
| 407 | printk("tcf_action_destroy: BUG? destroying NULL ops\n"); |
| 408 | act = act->next; |
| 409 | kfree(a); |
| 410 | } |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | int |
| 415 | tcf_action_dump_old(struct sk_buff *skb, struct tc_action *a, int bind, int ref) |
| 416 | { |
| 417 | int err = -EINVAL; |
| 418 | |
| 419 | if (a->ops == NULL || a->ops->dump == NULL) |
| 420 | return err; |
| 421 | return a->ops->dump(skb, a, bind, ref); |
| 422 | } |
| 423 | |
| 424 | int |
| 425 | tcf_action_dump_1(struct sk_buff *skb, struct tc_action *a, int bind, int ref) |
| 426 | { |
| 427 | int err = -EINVAL; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 428 | unsigned char *b = skb_tail_pointer(skb); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 429 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
| 431 | if (a->ops == NULL || a->ops->dump == NULL) |
| 432 | return err; |
| 433 | |
Patrick McHardy | 57e1c48 | 2008-01-23 20:34:28 -0800 | [diff] [blame] | 434 | NLA_PUT_STRING(skb, TCA_KIND, a->ops->kind); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | if (tcf_action_copy_stats(skb, a, 0)) |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 436 | goto nla_put_failure; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 437 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 438 | if (nest == NULL) |
| 439 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | if ((err = tcf_action_dump_old(skb, a, bind, ref)) > 0) { |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 441 | nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | return err; |
| 443 | } |
| 444 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 445 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 446 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | return -1; |
| 448 | } |
Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 449 | EXPORT_SYMBOL(tcf_action_dump_1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
| 451 | int |
| 452 | tcf_action_dump(struct sk_buff *skb, struct tc_action *act, int bind, int ref) |
| 453 | { |
| 454 | struct tc_action *a; |
| 455 | int err = -EINVAL; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 456 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
| 458 | while ((a = act) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | act = a->next; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 460 | nest = nla_nest_start(skb, a->order); |
| 461 | if (nest == NULL) |
| 462 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | err = tcf_action_dump_1(skb, a, bind, ref); |
| 464 | if (err < 0) |
Thomas Graf | 4fe683f | 2006-07-05 20:47:28 -0700 | [diff] [blame] | 465 | goto errout; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 466 | nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | return 0; |
| 470 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 471 | nla_put_failure: |
Thomas Graf | 4fe683f | 2006-07-05 20:47:28 -0700 | [diff] [blame] | 472 | err = -EINVAL; |
| 473 | errout: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 474 | nla_nest_cancel(skb, nest); |
Thomas Graf | 4fe683f | 2006-07-05 20:47:28 -0700 | [diff] [blame] | 475 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
| 477 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 478 | struct tc_action *tcf_action_init_1(struct nlattr *nla, struct nlattr *est, |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 479 | char *name, int ovr, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | { |
| 481 | struct tc_action *a; |
| 482 | struct tc_action_ops *a_o; |
| 483 | char act_name[IFNAMSIZ]; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 484 | struct nlattr *tb[TCA_ACT_MAX+1]; |
| 485 | struct nlattr *kind; |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 486 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | if (name == NULL) { |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 489 | err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL); |
| 490 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | goto err_out; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 492 | err = -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 493 | kind = tb[TCA_ACT_KIND]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | if (kind == NULL) |
| 495 | goto err_out; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 496 | if (nla_strlcpy(act_name, kind, IFNAMSIZ) >= IFNAMSIZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | goto err_out; |
| 498 | } else { |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 499 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | if (strlcpy(act_name, name, IFNAMSIZ) >= IFNAMSIZ) |
| 501 | goto err_out; |
| 502 | } |
| 503 | |
| 504 | a_o = tc_lookup_action_n(act_name); |
| 505 | if (a_o == NULL) { |
Johannes Berg | 95a5afc | 2008-10-16 15:24:51 -0700 | [diff] [blame] | 506 | #ifdef CONFIG_MODULES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | rtnl_unlock(); |
Patrick McHardy | 4bba392 | 2006-01-08 22:22:14 -0800 | [diff] [blame] | 508 | request_module("act_%s", act_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | rtnl_lock(); |
| 510 | |
| 511 | a_o = tc_lookup_action_n(act_name); |
| 512 | |
| 513 | /* We dropped the RTNL semaphore in order to |
| 514 | * perform the module load. So, even if we |
| 515 | * succeeded in loading the module we have to |
| 516 | * tell the caller to replay the request. We |
| 517 | * indicate this using -EAGAIN. |
| 518 | */ |
| 519 | if (a_o != NULL) { |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 520 | err = -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | goto err_mod; |
| 522 | } |
| 523 | #endif |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 524 | err = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | goto err_out; |
| 526 | } |
| 527 | |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 528 | err = -ENOMEM; |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 529 | a = kzalloc(sizeof(*a), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | if (a == NULL) |
| 531 | goto err_mod; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
| 533 | /* backward compatibility for policer */ |
| 534 | if (name == NULL) |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 535 | err = a_o->init(tb[TCA_ACT_OPTIONS], est, a, ovr, bind); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | else |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 537 | err = a_o->init(nla, est, a, ovr, bind); |
| 538 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | goto err_free; |
| 540 | |
| 541 | /* module count goes up only when brand new policy is created |
| 542 | if it exists and is only bound to in a_o->init() then |
| 543 | ACT_P_CREATED is not returned (a zero is). |
| 544 | */ |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 545 | if (err != ACT_P_CREATED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | module_put(a_o->owner); |
| 547 | a->ops = a_o; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | return a; |
| 550 | |
| 551 | err_free: |
| 552 | kfree(a); |
| 553 | err_mod: |
| 554 | module_put(a_o->owner); |
| 555 | err_out: |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 556 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
| 558 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 559 | struct tc_action *tcf_action_init(struct nlattr *nla, struct nlattr *est, |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 560 | char *name, int ovr, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | { |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 562 | struct nlattr *tb[TCA_ACT_MAX_PRIO+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | struct tc_action *head = NULL, *act, *act_prev = NULL; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 564 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | int i; |
| 566 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 567 | err = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL); |
| 568 | if (err < 0) |
| 569 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 571 | for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) { |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 572 | act = tcf_action_init_1(tb[i], est, name, ovr, bind); |
| 573 | if (IS_ERR(act)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | goto err; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 575 | act->order = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
| 577 | if (head == NULL) |
| 578 | head = act; |
| 579 | else |
| 580 | act_prev->next = act; |
| 581 | act_prev = act; |
| 582 | } |
| 583 | return head; |
| 584 | |
| 585 | err: |
| 586 | if (head != NULL) |
| 587 | tcf_action_destroy(head, bind); |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 588 | return act; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | int tcf_action_copy_stats(struct sk_buff *skb, struct tc_action *a, |
| 592 | int compat_mode) |
| 593 | { |
| 594 | int err = 0; |
| 595 | struct gnet_dump d; |
| 596 | struct tcf_act_hdr *h = a->priv; |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | if (h == NULL) |
| 599 | goto errout; |
| 600 | |
| 601 | /* compat_mode being true specifies a call that is supposed |
Dirk Hohndel | 06fe9fb | 2009-09-28 21:43:57 -0400 | [diff] [blame] | 602 | * to add additional backward compatibility statistic TLVs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | */ |
| 604 | if (compat_mode) { |
| 605 | if (a->type == TCA_OLD_COMPAT) |
| 606 | err = gnet_stats_start_copy_compat(skb, 0, |
Patrick McHardy | 4bdf399 | 2007-07-02 22:47:37 -0700 | [diff] [blame] | 607 | TCA_STATS, TCA_XSTATS, &h->tcf_lock, &d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | else |
| 609 | return 0; |
| 610 | } else |
| 611 | err = gnet_stats_start_copy(skb, TCA_ACT_STATS, |
Patrick McHardy | 4bdf399 | 2007-07-02 22:47:37 -0700 | [diff] [blame] | 612 | &h->tcf_lock, &d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
| 614 | if (err < 0) |
| 615 | goto errout; |
| 616 | |
| 617 | if (a->ops != NULL && a->ops->get_stats != NULL) |
| 618 | if (a->ops->get_stats(skb, a) < 0) |
| 619 | goto errout; |
| 620 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 621 | if (gnet_stats_copy_basic(&d, &h->tcf_bstats) < 0 || |
Eric Dumazet | d250a5f | 2009-10-02 10:32:18 +0000 | [diff] [blame] | 622 | gnet_stats_copy_rate_est(&d, &h->tcf_bstats, |
| 623 | &h->tcf_rate_est) < 0 || |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 624 | gnet_stats_copy_queue(&d, &h->tcf_qstats) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | goto errout; |
| 626 | |
| 627 | if (gnet_stats_finish_copy(&d) < 0) |
| 628 | goto errout; |
| 629 | |
| 630 | return 0; |
| 631 | |
| 632 | errout: |
| 633 | return -1; |
| 634 | } |
| 635 | |
| 636 | static int |
| 637 | tca_get_fill(struct sk_buff *skb, struct tc_action *a, u32 pid, u32 seq, |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 638 | u16 flags, int event, int bind, int ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | { |
| 640 | struct tcamsg *t; |
| 641 | struct nlmsghdr *nlh; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 642 | unsigned char *b = skb_tail_pointer(skb); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 643 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
Jamal Hadi Salim | e431b8c | 2005-06-18 22:55:31 -0700 | [diff] [blame] | 645 | nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*t), flags); |
| 646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | t = NLMSG_DATA(nlh); |
| 648 | t->tca_family = AF_UNSPEC; |
Patrick McHardy | 9ef1d4c | 2005-06-28 12:55:30 -0700 | [diff] [blame] | 649 | t->tca__pad1 = 0; |
| 650 | t->tca__pad2 = 0; |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 651 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 652 | nest = nla_nest_start(skb, TCA_ACT_TAB); |
| 653 | if (nest == NULL) |
| 654 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
| 656 | if (tcf_action_dump(skb, a, bind, ref) < 0) |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 657 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 659 | nla_nest_end(skb, nest); |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 660 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 661 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | return skb->len; |
| 663 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 664 | nla_put_failure: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | nlmsg_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 666 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | return -1; |
| 668 | } |
| 669 | |
| 670 | static int |
| 671 | act_get_notify(u32 pid, struct nlmsghdr *n, struct tc_action *a, int event) |
| 672 | { |
| 673 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
| 675 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 676 | if (!skb) |
| 677 | return -ENOBUFS; |
| 678 | if (tca_get_fill(skb, a, pid, n->nlmsg_seq, 0, event, 0, 0) <= 0) { |
| 679 | kfree_skb(skb); |
| 680 | return -EINVAL; |
| 681 | } |
Thomas Graf | 2942e90 | 2006-08-15 00:30:25 -0700 | [diff] [blame] | 682 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 683 | return rtnl_unicast(skb, &init_net, pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | static struct tc_action * |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 687 | tcf_action_get_1(struct nlattr *nla, struct nlmsghdr *n, u32 pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | { |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 689 | struct nlattr *tb[TCA_ACT_MAX+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | struct tc_action *a; |
| 691 | int index; |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 692 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 694 | err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL); |
| 695 | if (err < 0) |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 696 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 698 | err = -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 699 | if (tb[TCA_ACT_INDEX] == NULL || |
| 700 | nla_len(tb[TCA_ACT_INDEX]) < sizeof(index)) |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 701 | goto err_out; |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 702 | index = nla_get_u32(tb[TCA_ACT_INDEX]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 704 | err = -ENOMEM; |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 705 | a = kzalloc(sizeof(struct tc_action), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | if (a == NULL) |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 707 | goto err_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 709 | err = -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 710 | a->ops = tc_lookup_action(tb[TCA_ACT_KIND]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | if (a->ops == NULL) |
| 712 | goto err_free; |
| 713 | if (a->ops->lookup == NULL) |
| 714 | goto err_mod; |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 715 | err = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | if (a->ops->lookup(a, index) == 0) |
| 717 | goto err_mod; |
| 718 | |
| 719 | module_put(a->ops->owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | return a; |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | err_mod: |
| 723 | module_put(a->ops->owner); |
| 724 | err_free: |
| 725 | kfree(a); |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 726 | err_out: |
| 727 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | static void cleanup_a(struct tc_action *act) |
| 731 | { |
| 732 | struct tc_action *a; |
| 733 | |
| 734 | for (a = act; a; a = act) { |
| 735 | act = a->next; |
| 736 | kfree(a); |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | static struct tc_action *create_a(int i) |
| 741 | { |
| 742 | struct tc_action *act; |
| 743 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 744 | act = kzalloc(sizeof(*act), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | if (act == NULL) { |
| 746 | printk("create_a: failed to alloc!\n"); |
| 747 | return NULL; |
| 748 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | act->order = i; |
| 750 | return act; |
| 751 | } |
| 752 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 753 | static int tca_action_flush(struct nlattr *nla, struct nlmsghdr *n, u32 pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | { |
| 755 | struct sk_buff *skb; |
| 756 | unsigned char *b; |
| 757 | struct nlmsghdr *nlh; |
| 758 | struct tcamsg *t; |
| 759 | struct netlink_callback dcb; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 760 | struct nlattr *nest; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 761 | struct nlattr *tb[TCA_ACT_MAX+1]; |
| 762 | struct nlattr *kind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | struct tc_action *a = create_a(0); |
Jamal Hadi Salim | 3672387 | 2008-08-13 02:41:45 -0700 | [diff] [blame] | 764 | int err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
| 766 | if (a == NULL) { |
| 767 | printk("tca_action_flush: couldnt create tc_action\n"); |
| 768 | return err; |
| 769 | } |
| 770 | |
| 771 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 772 | if (!skb) { |
| 773 | printk("tca_action_flush: failed skb alloc\n"); |
| 774 | kfree(a); |
Jamal Hadi Salim | 3672387 | 2008-08-13 02:41:45 -0700 | [diff] [blame] | 775 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } |
| 777 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 778 | b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 780 | err = nla_parse_nested(tb, TCA_ACT_MAX, nla, NULL); |
| 781 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | goto err_out; |
| 783 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 784 | err = -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 785 | kind = tb[TCA_ACT_KIND]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | a->ops = tc_lookup_action(kind); |
| 787 | if (a->ops == NULL) |
| 788 | goto err_out; |
| 789 | |
| 790 | nlh = NLMSG_PUT(skb, pid, n->nlmsg_seq, RTM_DELACTION, sizeof(*t)); |
| 791 | t = NLMSG_DATA(nlh); |
| 792 | t->tca_family = AF_UNSPEC; |
Patrick McHardy | 9ef1d4c | 2005-06-28 12:55:30 -0700 | [diff] [blame] | 793 | t->tca__pad1 = 0; |
| 794 | t->tca__pad2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 796 | nest = nla_nest_start(skb, TCA_ACT_TAB); |
| 797 | if (nest == NULL) |
| 798 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
| 800 | err = a->ops->walk(skb, &dcb, RTM_DELACTION, a); |
| 801 | if (err < 0) |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 802 | goto nla_put_failure; |
Jamal Hadi Salim | f97017c | 2008-08-13 02:41:22 -0700 | [diff] [blame] | 803 | if (err == 0) |
| 804 | goto noflush_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 806 | nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 808 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | nlh->nlmsg_flags |= NLM_F_ROOT; |
| 810 | module_put(a->ops->owner); |
| 811 | kfree(a); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 812 | err = rtnetlink_send(skb, &init_net, pid, RTNLGRP_TC, n->nlmsg_flags&NLM_F_ECHO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | if (err > 0) |
| 814 | return 0; |
| 815 | |
| 816 | return err; |
| 817 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 818 | nla_put_failure: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | nlmsg_failure: |
Thomas Graf | ebbaeab | 2006-07-09 11:36:23 -0700 | [diff] [blame] | 820 | module_put(a->ops->owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | err_out: |
Jamal Hadi Salim | f97017c | 2008-08-13 02:41:22 -0700 | [diff] [blame] | 822 | noflush_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | kfree_skb(skb); |
| 824 | kfree(a); |
| 825 | return err; |
| 826 | } |
| 827 | |
| 828 | static int |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 829 | tca_action_gd(struct nlattr *nla, struct nlmsghdr *n, u32 pid, int event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | { |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 831 | int i, ret; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 832 | struct nlattr *tb[TCA_ACT_MAX_PRIO+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | struct tc_action *head = NULL, *act, *act_prev = NULL; |
| 834 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 835 | ret = nla_parse_nested(tb, TCA_ACT_MAX_PRIO, nla, NULL); |
| 836 | if (ret < 0) |
| 837 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | |
| 839 | if (event == RTM_DELACTION && n->nlmsg_flags&NLM_F_ROOT) { |
Jamal Hadi Salim | f97017c | 2008-08-13 02:41:22 -0700 | [diff] [blame] | 840 | if (tb[1] != NULL) |
| 841 | return tca_action_flush(tb[1], n, pid); |
| 842 | else |
| 843 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | } |
| 845 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 846 | for (i = 1; i <= TCA_ACT_MAX_PRIO && tb[i]; i++) { |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 847 | act = tcf_action_get_1(tb[i], n, pid); |
| 848 | if (IS_ERR(act)) { |
| 849 | ret = PTR_ERR(act); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | goto err; |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 851 | } |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 852 | act->order = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
| 854 | if (head == NULL) |
| 855 | head = act; |
| 856 | else |
| 857 | act_prev->next = act; |
| 858 | act_prev = act; |
| 859 | } |
| 860 | |
| 861 | if (event == RTM_GETACTION) |
| 862 | ret = act_get_notify(pid, n, head, event); |
| 863 | else { /* delete */ |
| 864 | struct sk_buff *skb; |
| 865 | |
| 866 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 867 | if (!skb) { |
| 868 | ret = -ENOBUFS; |
| 869 | goto err; |
| 870 | } |
| 871 | |
| 872 | if (tca_get_fill(skb, head, pid, n->nlmsg_seq, 0, event, |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 873 | 0, 1) <= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | kfree_skb(skb); |
| 875 | ret = -EINVAL; |
| 876 | goto err; |
| 877 | } |
| 878 | |
| 879 | /* now do the delete */ |
| 880 | tcf_action_destroy(head, 0); |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 881 | ret = rtnetlink_send(skb, &init_net, pid, RTNLGRP_TC, |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 882 | n->nlmsg_flags&NLM_F_ECHO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | if (ret > 0) |
| 884 | return 0; |
| 885 | return ret; |
| 886 | } |
| 887 | err: |
| 888 | cleanup_a(head); |
| 889 | return ret; |
| 890 | } |
| 891 | |
| 892 | static int tcf_add_notify(struct tc_action *a, u32 pid, u32 seq, int event, |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 893 | u16 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | { |
| 895 | struct tcamsg *t; |
| 896 | struct nlmsghdr *nlh; |
| 897 | struct sk_buff *skb; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 898 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | unsigned char *b; |
| 900 | int err = 0; |
| 901 | |
| 902 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 903 | if (!skb) |
| 904 | return -ENOBUFS; |
| 905 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 906 | b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | |
Jamal Hadi Salim | e431b8c | 2005-06-18 22:55:31 -0700 | [diff] [blame] | 908 | nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*t), flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | t = NLMSG_DATA(nlh); |
| 910 | t->tca_family = AF_UNSPEC; |
Patrick McHardy | 9ef1d4c | 2005-06-28 12:55:30 -0700 | [diff] [blame] | 911 | t->tca__pad1 = 0; |
| 912 | t->tca__pad2 = 0; |
| 913 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 914 | nest = nla_nest_start(skb, TCA_ACT_TAB); |
| 915 | if (nest == NULL) |
| 916 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | |
| 918 | if (tcf_action_dump(skb, a, 0, 0) < 0) |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 919 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 921 | nla_nest_end(skb, nest); |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 922 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 923 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
Patrick McHardy | ac6d439 | 2005-08-14 19:29:52 -0700 | [diff] [blame] | 924 | NETLINK_CB(skb).dst_group = RTNLGRP_TC; |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 925 | |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 926 | err = rtnetlink_send(skb, &init_net, pid, RTNLGRP_TC, flags&NLM_F_ECHO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | if (err > 0) |
| 928 | err = 0; |
| 929 | return err; |
| 930 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 931 | nla_put_failure: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | nlmsg_failure: |
Patrick McHardy | f6e5746 | 2006-03-12 20:33:22 -0800 | [diff] [blame] | 933 | kfree_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | return -1; |
| 935 | } |
| 936 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | static int |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 939 | tcf_action_add(struct nlattr *nla, struct nlmsghdr *n, u32 pid, int ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | { |
| 941 | int ret = 0; |
| 942 | struct tc_action *act; |
| 943 | struct tc_action *a; |
| 944 | u32 seq = n->nlmsg_seq; |
| 945 | |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 946 | act = tcf_action_init(nla, NULL, NULL, ovr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | if (act == NULL) |
| 948 | goto done; |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 949 | if (IS_ERR(act)) { |
| 950 | ret = PTR_ERR(act); |
| 951 | goto done; |
| 952 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | |
| 954 | /* dump then free all the actions after update; inserted policy |
| 955 | * stays intact |
| 956 | * */ |
| 957 | ret = tcf_add_notify(act, pid, seq, RTM_NEWACTION, n->nlmsg_flags); |
| 958 | for (a = act; a; a = act) { |
| 959 | act = a->next; |
| 960 | kfree(a); |
| 961 | } |
| 962 | done: |
| 963 | return ret; |
| 964 | } |
| 965 | |
| 966 | static int tc_ctl_action(struct sk_buff *skb, struct nlmsghdr *n, void *arg) |
| 967 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 968 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 969 | struct nlattr *tca[TCA_ACT_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | u32 pid = skb ? NETLINK_CB(skb).pid : 0; |
| 971 | int ret = 0, ovr = 0; |
| 972 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 973 | if (!net_eq(net, &init_net)) |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 974 | return -EINVAL; |
| 975 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 976 | ret = nlmsg_parse(n, sizeof(struct tcamsg), tca, TCA_ACT_MAX, NULL); |
| 977 | if (ret < 0) |
| 978 | return ret; |
| 979 | |
| 980 | if (tca[TCA_ACT_TAB] == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | printk("tc_ctl_action: received NO action attribs\n"); |
| 982 | return -EINVAL; |
| 983 | } |
| 984 | |
| 985 | /* n->nlmsg_flags&NLM_F_CREATE |
| 986 | * */ |
| 987 | switch (n->nlmsg_type) { |
| 988 | case RTM_NEWACTION: |
| 989 | /* we are going to assume all other flags |
| 990 | * imply create only if it doesnt exist |
| 991 | * Note that CREATE | EXCL implies that |
| 992 | * but since we want avoid ambiguity (eg when flags |
| 993 | * is zero) then just set this |
| 994 | */ |
| 995 | if (n->nlmsg_flags&NLM_F_REPLACE) |
| 996 | ovr = 1; |
| 997 | replay: |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 998 | ret = tcf_action_add(tca[TCA_ACT_TAB], n, pid, ovr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | if (ret == -EAGAIN) |
| 1000 | goto replay; |
| 1001 | break; |
| 1002 | case RTM_DELACTION: |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1003 | ret = tca_action_gd(tca[TCA_ACT_TAB], n, pid, RTM_DELACTION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | break; |
| 1005 | case RTM_GETACTION: |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1006 | ret = tca_action_gd(tca[TCA_ACT_TAB], n, pid, RTM_GETACTION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | break; |
| 1008 | default: |
| 1009 | BUG(); |
| 1010 | } |
| 1011 | |
| 1012 | return ret; |
| 1013 | } |
| 1014 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1015 | static struct nlattr * |
Patrick McHardy | 3a6c2b4 | 2009-08-25 16:07:40 +0200 | [diff] [blame] | 1016 | find_dump_kind(const struct nlmsghdr *n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | { |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1018 | struct nlattr *tb1, *tb2[TCA_ACT_MAX+1]; |
| 1019 | struct nlattr *tb[TCA_ACT_MAX_PRIO + 1]; |
| 1020 | struct nlattr *nla[TCAA_MAX + 1]; |
| 1021 | struct nlattr *kind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | |
Patrick McHardy | c96c947 | 2008-01-23 20:32:58 -0800 | [diff] [blame] | 1023 | if (nlmsg_parse(n, sizeof(struct tcamsg), nla, TCAA_MAX, NULL) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | return NULL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1025 | tb1 = nla[TCA_ACT_TAB]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | if (tb1 == NULL) |
| 1027 | return NULL; |
| 1028 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1029 | if (nla_parse(tb, TCA_ACT_MAX_PRIO, nla_data(tb1), |
| 1030 | NLMSG_ALIGN(nla_len(tb1)), NULL) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | |
Patrick McHardy | 6d834e0 | 2008-01-23 20:32:42 -0800 | [diff] [blame] | 1033 | if (tb[1] == NULL) |
| 1034 | return NULL; |
| 1035 | if (nla_parse(tb2, TCA_ACT_MAX, nla_data(tb[1]), |
| 1036 | nla_len(tb[1]), NULL) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | return NULL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1038 | kind = tb2[TCA_ACT_KIND]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
Thomas Graf | 26dab89 | 2006-07-05 20:45:06 -0700 | [diff] [blame] | 1040 | return kind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | static int |
| 1044 | tc_dump_action(struct sk_buff *skb, struct netlink_callback *cb) |
| 1045 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1046 | struct net *net = sock_net(skb->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | struct nlmsghdr *nlh; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1048 | unsigned char *b = skb_tail_pointer(skb); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1049 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | struct tc_action_ops *a_o; |
| 1051 | struct tc_action a; |
| 1052 | int ret = 0; |
| 1053 | struct tcamsg *t = (struct tcamsg *) NLMSG_DATA(cb->nlh); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1054 | struct nlattr *kind = find_dump_kind(cb->nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 1056 | if (!net_eq(net, &init_net)) |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 1057 | return 0; |
| 1058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | if (kind == NULL) { |
| 1060 | printk("tc_dump_action: action bad kind\n"); |
| 1061 | return 0; |
| 1062 | } |
| 1063 | |
Thomas Graf | 26dab89 | 2006-07-05 20:45:06 -0700 | [diff] [blame] | 1064 | a_o = tc_lookup_action(kind); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | if (a_o == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | return 0; |
| 1067 | } |
| 1068 | |
| 1069 | memset(&a, 0, sizeof(struct tc_action)); |
| 1070 | a.ops = a_o; |
| 1071 | |
| 1072 | if (a_o->walk == NULL) { |
Thomas Graf | 26dab89 | 2006-07-05 20:45:06 -0700 | [diff] [blame] | 1073 | printk("tc_dump_action: %s !capable of dumping table\n", a_o->kind); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1074 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | } |
| 1076 | |
| 1077 | nlh = NLMSG_PUT(skb, NETLINK_CB(cb->skb).pid, cb->nlh->nlmsg_seq, |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 1078 | cb->nlh->nlmsg_type, sizeof(*t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | t = NLMSG_DATA(nlh); |
| 1080 | t->tca_family = AF_UNSPEC; |
Patrick McHardy | 9ef1d4c | 2005-06-28 12:55:30 -0700 | [diff] [blame] | 1081 | t->tca__pad1 = 0; |
| 1082 | t->tca__pad2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1084 | nest = nla_nest_start(skb, TCA_ACT_TAB); |
| 1085 | if (nest == NULL) |
| 1086 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
| 1088 | ret = a_o->walk(skb, cb, RTM_GETACTION, &a); |
| 1089 | if (ret < 0) |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1090 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | |
| 1092 | if (ret > 0) { |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1093 | nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | ret = skb->len; |
| 1095 | } else |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1096 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1098 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | if (NETLINK_CB(cb->skb).pid && ret) |
| 1100 | nlh->nlmsg_flags |= NLM_F_MULTI; |
| 1101 | module_put(a_o->owner); |
| 1102 | return skb->len; |
| 1103 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 1104 | nla_put_failure: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | nlmsg_failure: |
| 1106 | module_put(a_o->owner); |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 1107 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | return skb->len; |
| 1109 | } |
| 1110 | |
| 1111 | static int __init tc_action_init(void) |
| 1112 | { |
Thomas Graf | 708914c | 2007-03-22 11:56:59 -0700 | [diff] [blame] | 1113 | rtnl_register(PF_UNSPEC, RTM_NEWACTION, tc_ctl_action, NULL); |
| 1114 | rtnl_register(PF_UNSPEC, RTM_DELACTION, tc_ctl_action, NULL); |
| 1115 | rtnl_register(PF_UNSPEC, RTM_GETACTION, tc_ctl_action, tc_dump_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | return 0; |
| 1118 | } |
| 1119 | |
| 1120 | subsys_initcall(tc_action_init); |