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