Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/core/fib_rules.c Generic Routing Rules |
| 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 as |
| 6 | * published by the Free Software Foundation, version 2. |
| 7 | * |
| 8 | * Authors: Thomas Graf <tgraf@suug.ch> |
| 9 | */ |
| 10 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 11 | #include <linux/types.h> |
| 12 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 14 | #include <linux/list.h> |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 15 | #include <net/net_namespace.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 16 | #include <net/sock.h> |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 17 | #include <net/fib_rules.h> |
| 18 | |
Denis V. Lunev | 2994c63 | 2007-11-10 22:12:03 -0800 | [diff] [blame] | 19 | int fib_default_rule_add(struct fib_rules_ops *ops, |
| 20 | u32 pref, u32 table, u32 flags) |
| 21 | { |
| 22 | struct fib_rule *r; |
| 23 | |
| 24 | r = kzalloc(ops->rule_size, GFP_KERNEL); |
| 25 | if (r == NULL) |
| 26 | return -ENOMEM; |
| 27 | |
| 28 | atomic_set(&r->refcnt, 1); |
| 29 | r->action = FR_ACT_TO_TBL; |
| 30 | r->pref = pref; |
| 31 | r->table = table; |
| 32 | r->flags = flags; |
Denis V. Lunev | 3661a91 | 2008-04-16 02:01:56 -0700 | [diff] [blame] | 33 | r->fr_net = hold_net(ops->fro_net); |
Denis V. Lunev | 2994c63 | 2007-11-10 22:12:03 -0800 | [diff] [blame] | 34 | |
| 35 | /* The lock is not required here, the list in unreacheable |
| 36 | * at the moment this function is called */ |
| 37 | list_add_tail(&r->list, &ops->rules_list); |
| 38 | return 0; |
| 39 | } |
| 40 | EXPORT_SYMBOL(fib_default_rule_add); |
| 41 | |
Patrick McHardy | d8a566b | 2010-04-13 05:03:15 +0000 | [diff] [blame] | 42 | u32 fib_default_rule_pref(struct fib_rules_ops *ops) |
| 43 | { |
| 44 | struct list_head *pos; |
| 45 | struct fib_rule *rule; |
| 46 | |
| 47 | if (!list_empty(&ops->rules_list)) { |
| 48 | pos = ops->rules_list.next; |
| 49 | if (pos->next != &ops->rules_list) { |
| 50 | rule = list_entry(pos->next, struct fib_rule, list); |
| 51 | if (rule->pref) |
| 52 | return rule->pref - 1; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | EXPORT_SYMBOL(fib_default_rule_pref); |
| 59 | |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 60 | static void notify_rule_change(int event, struct fib_rule *rule, |
Thomas Graf | c17084d | 2006-08-15 00:32:48 -0700 | [diff] [blame] | 61 | struct fib_rules_ops *ops, struct nlmsghdr *nlh, |
| 62 | u32 pid); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 63 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 64 | static struct fib_rules_ops *lookup_rules_ops(struct net *net, int family) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 65 | { |
| 66 | struct fib_rules_ops *ops; |
| 67 | |
| 68 | rcu_read_lock(); |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 69 | list_for_each_entry_rcu(ops, &net->rules_ops, list) { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 70 | if (ops->family == family) { |
| 71 | if (!try_module_get(ops->owner)) |
| 72 | ops = NULL; |
| 73 | rcu_read_unlock(); |
| 74 | return ops; |
| 75 | } |
| 76 | } |
| 77 | rcu_read_unlock(); |
| 78 | |
| 79 | return NULL; |
| 80 | } |
| 81 | |
| 82 | static void rules_ops_put(struct fib_rules_ops *ops) |
| 83 | { |
| 84 | if (ops) |
| 85 | module_put(ops->owner); |
| 86 | } |
| 87 | |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 88 | static void flush_route_cache(struct fib_rules_ops *ops) |
| 89 | { |
| 90 | if (ops->flush_cache) |
Denis V. Lunev | ae299fc | 2008-07-05 19:01:28 -0700 | [diff] [blame] | 91 | ops->flush_cache(ops); |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 94 | static int __fib_rules_register(struct fib_rules_ops *ops) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 95 | { |
| 96 | int err = -EEXIST; |
| 97 | struct fib_rules_ops *o; |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 98 | struct net *net; |
| 99 | |
| 100 | net = ops->fro_net; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 101 | |
| 102 | if (ops->rule_size < sizeof(struct fib_rule)) |
| 103 | return -EINVAL; |
| 104 | |
| 105 | if (ops->match == NULL || ops->configure == NULL || |
| 106 | ops->compare == NULL || ops->fill == NULL || |
| 107 | ops->action == NULL) |
| 108 | return -EINVAL; |
| 109 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 110 | spin_lock(&net->rules_mod_lock); |
| 111 | list_for_each_entry(o, &net->rules_ops, list) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 112 | if (ops->family == o->family) |
| 113 | goto errout; |
| 114 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 115 | hold_net(net); |
| 116 | list_add_tail_rcu(&ops->list, &net->rules_ops); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 117 | err = 0; |
| 118 | errout: |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 119 | spin_unlock(&net->rules_mod_lock); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 120 | |
| 121 | return err; |
| 122 | } |
| 123 | |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 124 | struct fib_rules_ops * |
Patrick McHardy | 3d0c9c4 | 2010-04-26 16:02:04 +0200 | [diff] [blame] | 125 | fib_rules_register(const struct fib_rules_ops *tmpl, struct net *net) |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 126 | { |
| 127 | struct fib_rules_ops *ops; |
| 128 | int err; |
| 129 | |
Eric Dumazet | 2fb3573 | 2010-03-09 20:03:38 +0000 | [diff] [blame] | 130 | ops = kmemdup(tmpl, sizeof(*ops), GFP_KERNEL); |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 131 | if (ops == NULL) |
| 132 | return ERR_PTR(-ENOMEM); |
| 133 | |
| 134 | INIT_LIST_HEAD(&ops->rules_list); |
| 135 | ops->fro_net = net; |
| 136 | |
| 137 | err = __fib_rules_register(ops); |
| 138 | if (err) { |
| 139 | kfree(ops); |
| 140 | ops = ERR_PTR(err); |
| 141 | } |
| 142 | |
| 143 | return ops; |
| 144 | } |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 145 | EXPORT_SYMBOL_GPL(fib_rules_register); |
| 146 | |
stephen hemminger | 1df9916 | 2010-10-04 20:14:17 +0000 | [diff] [blame] | 147 | static void fib_rules_cleanup_ops(struct fib_rules_ops *ops) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 148 | { |
| 149 | struct fib_rule *rule, *tmp; |
| 150 | |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 151 | list_for_each_entry_safe(rule, tmp, &ops->rules_list, list) { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 152 | list_del_rcu(&rule->list); |
| 153 | fib_rule_put(rule); |
| 154 | } |
| 155 | } |
| 156 | |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 157 | static void fib_rules_put_rcu(struct rcu_head *head) |
| 158 | { |
| 159 | struct fib_rules_ops *ops = container_of(head, struct fib_rules_ops, rcu); |
| 160 | struct net *net = ops->fro_net; |
| 161 | |
| 162 | release_net(net); |
| 163 | kfree(ops); |
| 164 | } |
| 165 | |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 166 | void fib_rules_unregister(struct fib_rules_ops *ops) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 167 | { |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 168 | struct net *net = ops->fro_net; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 169 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 170 | spin_lock(&net->rules_mod_lock); |
Denis V. Lunev | 72132c1b | 2008-01-14 22:59:30 -0800 | [diff] [blame] | 171 | list_del_rcu(&ops->list); |
| 172 | fib_rules_cleanup_ops(ops); |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 173 | spin_unlock(&net->rules_mod_lock); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 174 | |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 175 | call_rcu(&ops->rcu, fib_rules_put_rcu); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 176 | } |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 177 | EXPORT_SYMBOL_GPL(fib_rules_unregister); |
| 178 | |
Thomas Graf | 3dfbcc4 | 2006-11-09 15:23:20 -0800 | [diff] [blame] | 179 | static int fib_rule_match(struct fib_rule *rule, struct fib_rules_ops *ops, |
| 180 | struct flowi *fl, int flags) |
| 181 | { |
| 182 | int ret = 0; |
| 183 | |
Tom Herbert | 4465b46 | 2010-05-23 19:54:12 +0000 | [diff] [blame] | 184 | if (rule->iifindex && (rule->iifindex != fl->iif) && |
| 185 | !(fl->flags & FLOWI_FLAG_MATCH_ANY_IIF)) |
Thomas Graf | 3dfbcc4 | 2006-11-09 15:23:20 -0800 | [diff] [blame] | 186 | goto out; |
| 187 | |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 188 | if (rule->oifindex && (rule->oifindex != fl->oif)) |
| 189 | goto out; |
| 190 | |
Thomas Graf | 3dfbcc4 | 2006-11-09 15:23:20 -0800 | [diff] [blame] | 191 | if ((rule->mark ^ fl->mark) & rule->mark_mask) |
| 192 | goto out; |
| 193 | |
| 194 | ret = ops->match(rule, fl, flags); |
| 195 | out: |
| 196 | return (rule->flags & FIB_RULE_INVERT) ? !ret : ret; |
| 197 | } |
| 198 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 199 | int fib_rules_lookup(struct fib_rules_ops *ops, struct flowi *fl, |
| 200 | int flags, struct fib_lookup_arg *arg) |
| 201 | { |
| 202 | struct fib_rule *rule; |
| 203 | int err; |
| 204 | |
| 205 | rcu_read_lock(); |
| 206 | |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 207 | list_for_each_entry_rcu(rule, &ops->rules_list, list) { |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 208 | jumped: |
Thomas Graf | 3dfbcc4 | 2006-11-09 15:23:20 -0800 | [diff] [blame] | 209 | if (!fib_rule_match(rule, ops, fl, flags)) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 210 | continue; |
| 211 | |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 212 | if (rule->action == FR_ACT_GOTO) { |
| 213 | struct fib_rule *target; |
| 214 | |
| 215 | target = rcu_dereference(rule->ctarget); |
| 216 | if (target == NULL) { |
| 217 | continue; |
| 218 | } else { |
| 219 | rule = target; |
| 220 | goto jumped; |
| 221 | } |
Thomas Graf | fa0b2d1 | 2007-03-26 17:38:53 -0700 | [diff] [blame] | 222 | } else if (rule->action == FR_ACT_NOP) |
| 223 | continue; |
| 224 | else |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 225 | err = ops->action(rule, fl, flags, arg); |
| 226 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 227 | if (err != -EAGAIN) { |
Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 228 | if ((arg->flags & FIB_LOOKUP_NOREF) || |
| 229 | likely(atomic_inc_not_zero(&rule->refcnt))) { |
Eric Dumazet | 7fa7cb7 | 2010-09-27 04:18:27 +0000 | [diff] [blame] | 230 | arg->rule = rule; |
| 231 | goto out; |
| 232 | } |
| 233 | break; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 234 | } |
| 235 | } |
| 236 | |
Steven Whitehouse | 83886b6 | 2007-03-30 13:34:27 -0700 | [diff] [blame] | 237 | err = -ESRCH; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 238 | out: |
| 239 | rcu_read_unlock(); |
| 240 | |
| 241 | return err; |
| 242 | } |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 243 | EXPORT_SYMBOL_GPL(fib_rules_lookup); |
| 244 | |
Thomas Graf | e1701c6 | 2007-03-24 12:46:02 -0700 | [diff] [blame] | 245 | static int validate_rulemsg(struct fib_rule_hdr *frh, struct nlattr **tb, |
| 246 | struct fib_rules_ops *ops) |
| 247 | { |
| 248 | int err = -EINVAL; |
| 249 | |
| 250 | if (frh->src_len) |
| 251 | if (tb[FRA_SRC] == NULL || |
| 252 | frh->src_len > (ops->addr_size * 8) || |
| 253 | nla_len(tb[FRA_SRC]) != ops->addr_size) |
| 254 | goto errout; |
| 255 | |
| 256 | if (frh->dst_len) |
| 257 | if (tb[FRA_DST] == NULL || |
| 258 | frh->dst_len > (ops->addr_size * 8) || |
| 259 | nla_len(tb[FRA_DST]) != ops->addr_size) |
| 260 | goto errout; |
| 261 | |
| 262 | err = 0; |
| 263 | errout: |
| 264 | return err; |
| 265 | } |
| 266 | |
Thomas Graf | 9d9e6a5 | 2007-03-25 23:20:05 -0700 | [diff] [blame] | 267 | static int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 268 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 269 | struct net *net = sock_net(skb->sk); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 270 | struct fib_rule_hdr *frh = nlmsg_data(nlh); |
| 271 | struct fib_rules_ops *ops = NULL; |
| 272 | struct fib_rule *rule, *r, *last = NULL; |
| 273 | struct nlattr *tb[FRA_MAX+1]; |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 274 | int err = -EINVAL, unresolved = 0; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 275 | |
| 276 | if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*frh))) |
| 277 | goto errout; |
| 278 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 279 | ops = lookup_rules_ops(net, frh->family); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 280 | if (ops == NULL) { |
Patrick McHardy | 2fe195c | 2008-07-01 19:59:37 -0700 | [diff] [blame] | 281 | err = -EAFNOSUPPORT; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 282 | goto errout; |
| 283 | } |
| 284 | |
| 285 | err = nlmsg_parse(nlh, sizeof(*frh), tb, FRA_MAX, ops->policy); |
| 286 | if (err < 0) |
| 287 | goto errout; |
| 288 | |
Thomas Graf | e1701c6 | 2007-03-24 12:46:02 -0700 | [diff] [blame] | 289 | err = validate_rulemsg(frh, tb, ops); |
| 290 | if (err < 0) |
| 291 | goto errout; |
| 292 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 293 | rule = kzalloc(ops->rule_size, GFP_KERNEL); |
| 294 | if (rule == NULL) { |
| 295 | err = -ENOMEM; |
| 296 | goto errout; |
| 297 | } |
Denis V. Lunev | 3661a91 | 2008-04-16 02:01:56 -0700 | [diff] [blame] | 298 | rule->fr_net = hold_net(net); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 299 | |
| 300 | if (tb[FRA_PRIORITY]) |
| 301 | rule->pref = nla_get_u32(tb[FRA_PRIORITY]); |
| 302 | |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 303 | if (tb[FRA_IIFNAME]) { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 304 | struct net_device *dev; |
| 305 | |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 306 | rule->iifindex = -1; |
| 307 | nla_strlcpy(rule->iifname, tb[FRA_IIFNAME], IFNAMSIZ); |
| 308 | dev = __dev_get_by_name(net, rule->iifname); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 309 | if (dev) |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 310 | rule->iifindex = dev->ifindex; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 313 | if (tb[FRA_OIFNAME]) { |
| 314 | struct net_device *dev; |
| 315 | |
| 316 | rule->oifindex = -1; |
| 317 | nla_strlcpy(rule->oifname, tb[FRA_OIFNAME], IFNAMSIZ); |
| 318 | dev = __dev_get_by_name(net, rule->oifname); |
| 319 | if (dev) |
| 320 | rule->oifindex = dev->ifindex; |
| 321 | } |
| 322 | |
Thomas Graf | b8964ed | 2006-11-09 15:22:18 -0800 | [diff] [blame] | 323 | if (tb[FRA_FWMARK]) { |
| 324 | rule->mark = nla_get_u32(tb[FRA_FWMARK]); |
| 325 | if (rule->mark) |
| 326 | /* compatibility: if the mark value is non-zero all bits |
| 327 | * are compared unless a mask is explicitly specified. |
| 328 | */ |
| 329 | rule->mark_mask = 0xFFFFFFFF; |
| 330 | } |
| 331 | |
| 332 | if (tb[FRA_FWMASK]) |
| 333 | rule->mark_mask = nla_get_u32(tb[FRA_FWMASK]); |
| 334 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 335 | rule->action = frh->action; |
| 336 | rule->flags = frh->flags; |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 337 | rule->table = frh_get_table(frh, tb); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 338 | |
Patrick McHardy | 5adef18 | 2009-12-03 01:25:57 +0000 | [diff] [blame] | 339 | if (!tb[FRA_PRIORITY] && ops->default_pref) |
Denis V. Lunev | 868d13a | 2008-01-10 03:18:25 -0800 | [diff] [blame] | 340 | rule->pref = ops->default_pref(ops); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 341 | |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 342 | err = -EINVAL; |
| 343 | if (tb[FRA_GOTO]) { |
| 344 | if (rule->action != FR_ACT_GOTO) |
| 345 | goto errout_free; |
| 346 | |
| 347 | rule->target = nla_get_u32(tb[FRA_GOTO]); |
| 348 | /* Backward jumps are prohibited to avoid endless loops */ |
| 349 | if (rule->target <= rule->pref) |
| 350 | goto errout_free; |
| 351 | |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 352 | list_for_each_entry(r, &ops->rules_list, list) { |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 353 | if (r->pref == rule->target) { |
Eric Dumazet | 7a2b03c | 2010-10-26 09:24:55 +0000 | [diff] [blame] | 354 | RCU_INIT_POINTER(rule->ctarget, r); |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 355 | break; |
| 356 | } |
| 357 | } |
| 358 | |
Eric Dumazet | 7a2b03c | 2010-10-26 09:24:55 +0000 | [diff] [blame] | 359 | if (rcu_dereference_protected(rule->ctarget, 1) == NULL) |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 360 | unresolved = 1; |
| 361 | } else if (rule->action == FR_ACT_GOTO) |
| 362 | goto errout_free; |
| 363 | |
Rami Rosen | 8b3521e | 2009-05-11 05:52:49 +0000 | [diff] [blame] | 364 | err = ops->configure(rule, skb, frh, tb); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 365 | if (err < 0) |
| 366 | goto errout_free; |
| 367 | |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 368 | list_for_each_entry(r, &ops->rules_list, list) { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 369 | if (r->pref > rule->pref) |
| 370 | break; |
| 371 | last = r; |
| 372 | } |
| 373 | |
| 374 | fib_rule_get(rule); |
| 375 | |
Eric Dumazet | ebb9fed | 2010-10-23 09:44:25 +0000 | [diff] [blame] | 376 | if (last) |
| 377 | list_add_rcu(&rule->list, &last->list); |
| 378 | else |
| 379 | list_add_rcu(&rule->list, &ops->rules_list); |
| 380 | |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 381 | if (ops->unresolved_rules) { |
| 382 | /* |
| 383 | * There are unresolved goto rules in the list, check if |
| 384 | * any of them are pointing to this new rule. |
| 385 | */ |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 386 | list_for_each_entry(r, &ops->rules_list, list) { |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 387 | if (r->action == FR_ACT_GOTO && |
| 388 | r->target == rule->pref) { |
Eric Dumazet | 7a2b03c | 2010-10-26 09:24:55 +0000 | [diff] [blame] | 389 | BUG_ON(rtnl_dereference(r->ctarget) != NULL); |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 390 | rcu_assign_pointer(r->ctarget, rule); |
| 391 | if (--ops->unresolved_rules == 0) |
| 392 | break; |
| 393 | } |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | if (rule->action == FR_ACT_GOTO) |
| 398 | ops->nr_goto_rules++; |
| 399 | |
| 400 | if (unresolved) |
| 401 | ops->unresolved_rules++; |
| 402 | |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 403 | notify_rule_change(RTM_NEWRULE, rule, ops, nlh, NETLINK_CB(skb).pid); |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 404 | flush_route_cache(ops); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 405 | rules_ops_put(ops); |
| 406 | return 0; |
| 407 | |
| 408 | errout_free: |
Denis V. Lunev | 3661a91 | 2008-04-16 02:01:56 -0700 | [diff] [blame] | 409 | release_net(rule->fr_net); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 410 | kfree(rule); |
| 411 | errout: |
| 412 | rules_ops_put(ops); |
| 413 | return err; |
| 414 | } |
| 415 | |
Thomas Graf | 9d9e6a5 | 2007-03-25 23:20:05 -0700 | [diff] [blame] | 416 | static int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 417 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 418 | struct net *net = sock_net(skb->sk); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 419 | struct fib_rule_hdr *frh = nlmsg_data(nlh); |
| 420 | struct fib_rules_ops *ops = NULL; |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 421 | struct fib_rule *rule, *tmp; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 422 | struct nlattr *tb[FRA_MAX+1]; |
| 423 | int err = -EINVAL; |
| 424 | |
| 425 | if (nlh->nlmsg_len < nlmsg_msg_size(sizeof(*frh))) |
| 426 | goto errout; |
| 427 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 428 | ops = lookup_rules_ops(net, frh->family); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 429 | if (ops == NULL) { |
Patrick McHardy | 2fe195c | 2008-07-01 19:59:37 -0700 | [diff] [blame] | 430 | err = -EAFNOSUPPORT; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 431 | goto errout; |
| 432 | } |
| 433 | |
| 434 | err = nlmsg_parse(nlh, sizeof(*frh), tb, FRA_MAX, ops->policy); |
| 435 | if (err < 0) |
| 436 | goto errout; |
| 437 | |
Thomas Graf | e1701c6 | 2007-03-24 12:46:02 -0700 | [diff] [blame] | 438 | err = validate_rulemsg(frh, tb, ops); |
| 439 | if (err < 0) |
| 440 | goto errout; |
| 441 | |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 442 | list_for_each_entry(rule, &ops->rules_list, list) { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 443 | if (frh->action && (frh->action != rule->action)) |
| 444 | continue; |
| 445 | |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 446 | if (frh->table && (frh_get_table(frh, tb) != rule->table)) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 447 | continue; |
| 448 | |
| 449 | if (tb[FRA_PRIORITY] && |
| 450 | (rule->pref != nla_get_u32(tb[FRA_PRIORITY]))) |
| 451 | continue; |
| 452 | |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 453 | if (tb[FRA_IIFNAME] && |
| 454 | nla_strcmp(tb[FRA_IIFNAME], rule->iifname)) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 455 | continue; |
| 456 | |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 457 | if (tb[FRA_OIFNAME] && |
| 458 | nla_strcmp(tb[FRA_OIFNAME], rule->oifname)) |
| 459 | continue; |
| 460 | |
Thomas Graf | b8964ed | 2006-11-09 15:22:18 -0800 | [diff] [blame] | 461 | if (tb[FRA_FWMARK] && |
| 462 | (rule->mark != nla_get_u32(tb[FRA_FWMARK]))) |
| 463 | continue; |
| 464 | |
| 465 | if (tb[FRA_FWMASK] && |
| 466 | (rule->mark_mask != nla_get_u32(tb[FRA_FWMASK]))) |
| 467 | continue; |
| 468 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 469 | if (!ops->compare(rule, frh, tb)) |
| 470 | continue; |
| 471 | |
| 472 | if (rule->flags & FIB_RULE_PERMANENT) { |
| 473 | err = -EPERM; |
| 474 | goto errout; |
| 475 | } |
| 476 | |
| 477 | list_del_rcu(&rule->list); |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 478 | |
| 479 | if (rule->action == FR_ACT_GOTO) |
| 480 | ops->nr_goto_rules--; |
| 481 | |
| 482 | /* |
| 483 | * Check if this rule is a target to any of them. If so, |
| 484 | * disable them. As this operation is eventually very |
| 485 | * expensive, it is only performed if goto rules have |
| 486 | * actually been added. |
| 487 | */ |
| 488 | if (ops->nr_goto_rules > 0) { |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 489 | list_for_each_entry(tmp, &ops->rules_list, list) { |
Eric Dumazet | 7a2b03c | 2010-10-26 09:24:55 +0000 | [diff] [blame] | 490 | if (rtnl_dereference(tmp->ctarget) == rule) { |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 491 | rcu_assign_pointer(tmp->ctarget, NULL); |
| 492 | ops->unresolved_rules++; |
| 493 | } |
| 494 | } |
| 495 | } |
| 496 | |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 497 | notify_rule_change(RTM_DELRULE, rule, ops, nlh, |
Thomas Graf | c17084d | 2006-08-15 00:32:48 -0700 | [diff] [blame] | 498 | NETLINK_CB(skb).pid); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 499 | fib_rule_put(rule); |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 500 | flush_route_cache(ops); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 501 | rules_ops_put(ops); |
| 502 | return 0; |
| 503 | } |
| 504 | |
| 505 | err = -ENOENT; |
| 506 | errout: |
| 507 | rules_ops_put(ops); |
| 508 | return err; |
| 509 | } |
| 510 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 511 | static inline size_t fib_rule_nlmsg_size(struct fib_rules_ops *ops, |
| 512 | struct fib_rule *rule) |
| 513 | { |
| 514 | size_t payload = NLMSG_ALIGN(sizeof(struct fib_rule_hdr)) |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 515 | + nla_total_size(IFNAMSIZ) /* FRA_IIFNAME */ |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 516 | + nla_total_size(IFNAMSIZ) /* FRA_OIFNAME */ |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 517 | + nla_total_size(4) /* FRA_PRIORITY */ |
| 518 | + nla_total_size(4) /* FRA_TABLE */ |
| 519 | + nla_total_size(4) /* FRA_FWMARK */ |
| 520 | + nla_total_size(4); /* FRA_FWMASK */ |
| 521 | |
| 522 | if (ops->nlmsg_payload) |
| 523 | payload += ops->nlmsg_payload(rule); |
| 524 | |
| 525 | return payload; |
| 526 | } |
| 527 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 528 | static int fib_nl_fill_rule(struct sk_buff *skb, struct fib_rule *rule, |
| 529 | u32 pid, u32 seq, int type, int flags, |
| 530 | struct fib_rules_ops *ops) |
| 531 | { |
| 532 | struct nlmsghdr *nlh; |
| 533 | struct fib_rule_hdr *frh; |
| 534 | |
| 535 | nlh = nlmsg_put(skb, pid, seq, type, sizeof(*frh), flags); |
| 536 | if (nlh == NULL) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 537 | return -EMSGSIZE; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 538 | |
| 539 | frh = nlmsg_data(nlh); |
Patrick McHardy | 28bb172 | 2010-04-13 05:03:16 +0000 | [diff] [blame] | 540 | frh->family = ops->family; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 541 | frh->table = rule->table; |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 542 | NLA_PUT_U32(skb, FRA_TABLE, rule->table); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 543 | frh->res1 = 0; |
| 544 | frh->res2 = 0; |
| 545 | frh->action = rule->action; |
| 546 | frh->flags = rule->flags; |
| 547 | |
Eric Dumazet | 7a2b03c | 2010-10-26 09:24:55 +0000 | [diff] [blame] | 548 | if (rule->action == FR_ACT_GOTO && |
| 549 | rcu_dereference_raw(rule->ctarget) == NULL) |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 550 | frh->flags |= FIB_RULE_UNRESOLVED; |
| 551 | |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 552 | if (rule->iifname[0]) { |
| 553 | NLA_PUT_STRING(skb, FRA_IIFNAME, rule->iifname); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 554 | |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 555 | if (rule->iifindex == -1) |
| 556 | frh->flags |= FIB_RULE_IIF_DETACHED; |
Thomas Graf | 2b44368 | 2007-03-26 17:37:59 -0700 | [diff] [blame] | 557 | } |
| 558 | |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 559 | if (rule->oifname[0]) { |
| 560 | NLA_PUT_STRING(skb, FRA_OIFNAME, rule->oifname); |
| 561 | |
| 562 | if (rule->oifindex == -1) |
| 563 | frh->flags |= FIB_RULE_OIF_DETACHED; |
| 564 | } |
| 565 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 566 | if (rule->pref) |
| 567 | NLA_PUT_U32(skb, FRA_PRIORITY, rule->pref); |
| 568 | |
Thomas Graf | b8964ed | 2006-11-09 15:22:18 -0800 | [diff] [blame] | 569 | if (rule->mark) |
| 570 | NLA_PUT_U32(skb, FRA_FWMARK, rule->mark); |
| 571 | |
| 572 | if (rule->mark_mask || rule->mark) |
| 573 | NLA_PUT_U32(skb, FRA_FWMASK, rule->mark_mask); |
| 574 | |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 575 | if (rule->target) |
| 576 | NLA_PUT_U32(skb, FRA_GOTO, rule->target); |
| 577 | |
Rami Rosen | 04af8cf | 2009-05-20 17:26:23 -0700 | [diff] [blame] | 578 | if (ops->fill(rule, skb, frh) < 0) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 579 | goto nla_put_failure; |
| 580 | |
| 581 | return nlmsg_end(skb, nlh); |
| 582 | |
| 583 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 584 | nlmsg_cancel(skb, nlh); |
| 585 | return -EMSGSIZE; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 586 | } |
| 587 | |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 588 | static int dump_rules(struct sk_buff *skb, struct netlink_callback *cb, |
| 589 | struct fib_rules_ops *ops) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 590 | { |
| 591 | int idx = 0; |
| 592 | struct fib_rule *rule; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 593 | |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 594 | list_for_each_entry(rule, &ops->rules_list, list) { |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 595 | if (idx < cb->args[1]) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 596 | goto skip; |
| 597 | |
| 598 | if (fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).pid, |
| 599 | cb->nlh->nlmsg_seq, RTM_NEWRULE, |
| 600 | NLM_F_MULTI, ops) < 0) |
| 601 | break; |
| 602 | skip: |
| 603 | idx++; |
| 604 | } |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 605 | cb->args[1] = idx; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 606 | rules_ops_put(ops); |
| 607 | |
| 608 | return skb->len; |
| 609 | } |
| 610 | |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 611 | static int fib_nl_dumprule(struct sk_buff *skb, struct netlink_callback *cb) |
| 612 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 613 | struct net *net = sock_net(skb->sk); |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 614 | struct fib_rules_ops *ops; |
| 615 | int idx = 0, family; |
| 616 | |
| 617 | family = rtnl_msg_family(cb->nlh); |
| 618 | if (family != AF_UNSPEC) { |
| 619 | /* Protocol specific dump request */ |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 620 | ops = lookup_rules_ops(net, family); |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 621 | if (ops == NULL) |
| 622 | return -EAFNOSUPPORT; |
| 623 | |
| 624 | return dump_rules(skb, cb, ops); |
| 625 | } |
| 626 | |
| 627 | rcu_read_lock(); |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 628 | list_for_each_entry_rcu(ops, &net->rules_ops, list) { |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 629 | if (idx < cb->args[0] || !try_module_get(ops->owner)) |
| 630 | goto skip; |
| 631 | |
| 632 | if (dump_rules(skb, cb, ops) < 0) |
| 633 | break; |
| 634 | |
| 635 | cb->args[1] = 0; |
Eric Dumazet | 2fb3573 | 2010-03-09 20:03:38 +0000 | [diff] [blame] | 636 | skip: |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 637 | idx++; |
| 638 | } |
| 639 | rcu_read_unlock(); |
| 640 | cb->args[0] = idx; |
| 641 | |
| 642 | return skb->len; |
| 643 | } |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 644 | |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 645 | static void notify_rule_change(int event, struct fib_rule *rule, |
Thomas Graf | c17084d | 2006-08-15 00:32:48 -0700 | [diff] [blame] | 646 | struct fib_rules_ops *ops, struct nlmsghdr *nlh, |
| 647 | u32 pid) |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 648 | { |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 649 | struct net *net; |
Thomas Graf | c17084d | 2006-08-15 00:32:48 -0700 | [diff] [blame] | 650 | struct sk_buff *skb; |
| 651 | int err = -ENOBUFS; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 652 | |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 653 | net = ops->fro_net; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 654 | skb = nlmsg_new(fib_rule_nlmsg_size(ops, rule), GFP_KERNEL); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 655 | if (skb == NULL) |
Thomas Graf | c17084d | 2006-08-15 00:32:48 -0700 | [diff] [blame] | 656 | goto errout; |
| 657 | |
| 658 | err = fib_nl_fill_rule(skb, rule, pid, nlh->nlmsg_seq, event, 0, ops); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 659 | if (err < 0) { |
| 660 | /* -EMSGSIZE implies BUG in fib_rule_nlmsg_size() */ |
| 661 | WARN_ON(err == -EMSGSIZE); |
| 662 | kfree_skb(skb); |
| 663 | goto errout; |
| 664 | } |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 665 | |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 666 | rtnl_notify(skb, net, pid, ops->nlgroup, nlh, GFP_KERNEL); |
| 667 | return; |
Thomas Graf | c17084d | 2006-08-15 00:32:48 -0700 | [diff] [blame] | 668 | errout: |
| 669 | if (err < 0) |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 670 | rtnl_set_sk_err(net, ops->nlgroup, err); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | static void attach_rules(struct list_head *rules, struct net_device *dev) |
| 674 | { |
| 675 | struct fib_rule *rule; |
| 676 | |
| 677 | list_for_each_entry(rule, rules, list) { |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 678 | if (rule->iifindex == -1 && |
| 679 | strcmp(dev->name, rule->iifname) == 0) |
| 680 | rule->iifindex = dev->ifindex; |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 681 | if (rule->oifindex == -1 && |
| 682 | strcmp(dev->name, rule->oifname) == 0) |
| 683 | rule->oifindex = dev->ifindex; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 684 | } |
| 685 | } |
| 686 | |
| 687 | static void detach_rules(struct list_head *rules, struct net_device *dev) |
| 688 | { |
| 689 | struct fib_rule *rule; |
| 690 | |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 691 | list_for_each_entry(rule, rules, list) { |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 692 | if (rule->iifindex == dev->ifindex) |
| 693 | rule->iifindex = -1; |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 694 | if (rule->oifindex == dev->ifindex) |
| 695 | rule->oifindex = -1; |
| 696 | } |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | |
| 700 | static int fib_rules_event(struct notifier_block *this, unsigned long event, |
| 701 | void *ptr) |
| 702 | { |
| 703 | struct net_device *dev = ptr; |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 704 | struct net *net = dev_net(dev); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 705 | struct fib_rules_ops *ops; |
| 706 | |
| 707 | ASSERT_RTNL(); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 708 | |
| 709 | switch (event) { |
| 710 | case NETDEV_REGISTER: |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 711 | list_for_each_entry(ops, &net->rules_ops, list) |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 712 | attach_rules(&ops->rules_list, dev); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 713 | break; |
| 714 | |
| 715 | case NETDEV_UNREGISTER: |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 716 | list_for_each_entry(ops, &net->rules_ops, list) |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 717 | detach_rules(&ops->rules_list, dev); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 718 | break; |
| 719 | } |
| 720 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 721 | return NOTIFY_DONE; |
| 722 | } |
| 723 | |
| 724 | static struct notifier_block fib_rules_notifier = { |
| 725 | .notifier_call = fib_rules_event, |
| 726 | }; |
| 727 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 728 | static int __net_init fib_rules_net_init(struct net *net) |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 729 | { |
| 730 | INIT_LIST_HEAD(&net->rules_ops); |
| 731 | spin_lock_init(&net->rules_mod_lock); |
| 732 | return 0; |
| 733 | } |
| 734 | |
| 735 | static struct pernet_operations fib_rules_net_ops = { |
| 736 | .init = fib_rules_net_init, |
| 737 | }; |
| 738 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 739 | static int __init fib_rules_init(void) |
| 740 | { |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 741 | int err; |
Thomas Graf | 9d9e6a5 | 2007-03-25 23:20:05 -0700 | [diff] [blame] | 742 | rtnl_register(PF_UNSPEC, RTM_NEWRULE, fib_nl_newrule, NULL); |
| 743 | rtnl_register(PF_UNSPEC, RTM_DELRULE, fib_nl_delrule, NULL); |
Thomas Graf | c454673 | 2007-03-25 23:24:24 -0700 | [diff] [blame] | 744 | rtnl_register(PF_UNSPEC, RTM_GETRULE, NULL, fib_nl_dumprule); |
Thomas Graf | 9d9e6a5 | 2007-03-25 23:20:05 -0700 | [diff] [blame] | 745 | |
Eric W. Biederman | 5d6d480 | 2008-11-07 22:52:34 -0800 | [diff] [blame] | 746 | err = register_pernet_subsys(&fib_rules_net_ops); |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 747 | if (err < 0) |
| 748 | goto fail; |
| 749 | |
Eric W. Biederman | 5d6d480 | 2008-11-07 22:52:34 -0800 | [diff] [blame] | 750 | err = register_netdevice_notifier(&fib_rules_notifier); |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 751 | if (err < 0) |
| 752 | goto fail_unregister; |
Eric W. Biederman | 5d6d480 | 2008-11-07 22:52:34 -0800 | [diff] [blame] | 753 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 754 | return 0; |
| 755 | |
| 756 | fail_unregister: |
Eric W. Biederman | 5d6d480 | 2008-11-07 22:52:34 -0800 | [diff] [blame] | 757 | unregister_pernet_subsys(&fib_rules_net_ops); |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 758 | fail: |
| 759 | rtnl_unregister(PF_UNSPEC, RTM_NEWRULE); |
| 760 | rtnl_unregister(PF_UNSPEC, RTM_DELRULE); |
| 761 | rtnl_unregister(PF_UNSPEC, RTM_GETRULE); |
| 762 | return err; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | subsys_initcall(fib_rules_init); |