1 // SPDX-License-Identifier: GPL-2.0
2 /* Generic nexthop implementation
4 * Copyright (c) 2017-19 Cumulus Networks
8 #include <linux/nexthop.h>
9 #include <linux/rtnetlink.h>
10 #include <linux/slab.h>
12 #include <net/ipv6_stubs.h>
13 #include <net/lwtunnel.h>
14 #include <net/ndisc.h>
15 #include <net/nexthop.h>
16 #include <net/route.h>
19 static void remove_nexthop(struct net *net, struct nexthop *nh,
20 struct nl_info *nlinfo);
22 #define NH_DEV_HASHBITS 8
23 #define NH_DEV_HASHSIZE (1U << NH_DEV_HASHBITS)
25 static const struct nla_policy rtm_nh_policy[NHA_MAX + 1] = {
26 [NHA_ID] = { .type = NLA_U32 },
27 [NHA_GROUP] = { .type = NLA_BINARY },
28 [NHA_GROUP_TYPE] = { .type = NLA_U16 },
29 [NHA_BLACKHOLE] = { .type = NLA_FLAG },
30 [NHA_OIF] = { .type = NLA_U32 },
31 [NHA_GATEWAY] = { .type = NLA_BINARY },
32 [NHA_ENCAP_TYPE] = { .type = NLA_U16 },
33 [NHA_ENCAP] = { .type = NLA_NESTED },
34 [NHA_GROUPS] = { .type = NLA_FLAG },
35 [NHA_MASTER] = { .type = NLA_U32 },
36 [NHA_FDB] = { .type = NLA_FLAG },
39 static int call_nexthop_notifiers(struct net *net,
40 enum nexthop_event_type event_type,
45 err = atomic_notifier_call_chain(&net->nexthop.notifier_chain,
47 return notifier_to_errno(err);
50 static unsigned int nh_dev_hashfn(unsigned int val)
52 unsigned int mask = NH_DEV_HASHSIZE - 1;
55 (val >> NH_DEV_HASHBITS) ^
56 (val >> (NH_DEV_HASHBITS * 2))) & mask;
59 static void nexthop_devhash_add(struct net *net, struct nh_info *nhi)
61 struct net_device *dev = nhi->fib_nhc.nhc_dev;
62 struct hlist_head *head;
67 hash = nh_dev_hashfn(dev->ifindex);
68 head = &net->nexthop.devhash[hash];
69 hlist_add_head(&nhi->dev_hash, head);
72 static void nexthop_free_mpath(struct nexthop *nh)
77 nhg = rcu_dereference_raw(nh->nh_grp);
78 for (i = 0; i < nhg->num_nh; ++i) {
79 struct nh_grp_entry *nhge = &nhg->nh_entries[i];
81 WARN_ON(!list_empty(&nhge->nh_list));
82 nexthop_put(nhge->nh);
85 WARN_ON(nhg->spare == nhg);
91 static void nexthop_free_single(struct nexthop *nh)
95 nhi = rcu_dereference_raw(nh->nh_info);
96 switch (nhi->family) {
98 fib_nh_release(nh->net, &nhi->fib_nh);
101 ipv6_stub->fib6_nh_release(&nhi->fib6_nh);
107 void nexthop_free_rcu(struct rcu_head *head)
109 struct nexthop *nh = container_of(head, struct nexthop, rcu);
112 nexthop_free_mpath(nh);
114 nexthop_free_single(nh);
118 EXPORT_SYMBOL_GPL(nexthop_free_rcu);
120 static struct nexthop *nexthop_alloc(void)
124 nh = kzalloc(sizeof(struct nexthop), GFP_KERNEL);
126 INIT_LIST_HEAD(&nh->fi_list);
127 INIT_LIST_HEAD(&nh->f6i_list);
128 INIT_LIST_HEAD(&nh->grp_list);
129 INIT_LIST_HEAD(&nh->fdb_list);
134 static struct nh_group *nexthop_grp_alloc(u16 num_nh)
136 size_t sz = offsetof(struct nexthop, nh_grp)
137 + sizeof(struct nh_group)
138 + sizeof(struct nh_grp_entry) * num_nh;
139 struct nh_group *nhg;
141 nhg = kzalloc(sz, GFP_KERNEL);
143 nhg->num_nh = num_nh;
148 static void nh_base_seq_inc(struct net *net)
150 while (++net->nexthop.seq == 0)
154 /* no reference taken; rcu lock or rtnl must be held */
155 struct nexthop *nexthop_find_by_id(struct net *net, u32 id)
157 struct rb_node **pp, *parent = NULL, *next;
159 pp = &net->nexthop.rb_root.rb_node;
163 next = rcu_dereference_raw(*pp);
168 nh = rb_entry(parent, struct nexthop, rb_node);
171 else if (id > nh->id)
172 pp = &next->rb_right;
178 EXPORT_SYMBOL_GPL(nexthop_find_by_id);
180 /* used for auto id allocation; called with rtnl held */
181 static u32 nh_find_unused_id(struct net *net)
183 u32 id_start = net->nexthop.last_id_allocated;
186 net->nexthop.last_id_allocated++;
187 if (net->nexthop.last_id_allocated == id_start)
190 if (!nexthop_find_by_id(net, net->nexthop.last_id_allocated))
191 return net->nexthop.last_id_allocated;
196 static int nla_put_nh_group(struct sk_buff *skb, struct nh_group *nhg)
198 struct nexthop_grp *p;
199 size_t len = nhg->num_nh * sizeof(*p);
205 group_type = NEXTHOP_GRP_TYPE_MPATH;
207 if (nla_put_u16(skb, NHA_GROUP_TYPE, group_type))
208 goto nla_put_failure;
210 nla = nla_reserve(skb, NHA_GROUP, len);
212 goto nla_put_failure;
215 for (i = 0; i < nhg->num_nh; ++i) {
216 p->id = nhg->nh_entries[i].nh->id;
217 p->weight = nhg->nh_entries[i].weight - 1;
227 static int nh_fill_node(struct sk_buff *skb, struct nexthop *nh,
228 int event, u32 portid, u32 seq, unsigned int nlflags)
230 struct fib6_nh *fib6_nh;
231 struct fib_nh *fib_nh;
232 struct nlmsghdr *nlh;
236 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nhm), nlflags);
240 nhm = nlmsg_data(nlh);
241 nhm->nh_family = AF_UNSPEC;
242 nhm->nh_flags = nh->nh_flags;
243 nhm->nh_protocol = nh->protocol;
247 if (nla_put_u32(skb, NHA_ID, nh->id))
248 goto nla_put_failure;
251 struct nh_group *nhg = rtnl_dereference(nh->nh_grp);
253 if (nhg->fdb_nh && nla_put_flag(skb, NHA_FDB))
254 goto nla_put_failure;
255 if (nla_put_nh_group(skb, nhg))
256 goto nla_put_failure;
260 nhi = rtnl_dereference(nh->nh_info);
261 nhm->nh_family = nhi->family;
262 if (nhi->reject_nh) {
263 if (nla_put_flag(skb, NHA_BLACKHOLE))
264 goto nla_put_failure;
266 } else if (nhi->fdb_nh) {
267 if (nla_put_flag(skb, NHA_FDB))
268 goto nla_put_failure;
270 const struct net_device *dev;
272 dev = nhi->fib_nhc.nhc_dev;
273 if (dev && nla_put_u32(skb, NHA_OIF, dev->ifindex))
274 goto nla_put_failure;
277 nhm->nh_scope = nhi->fib_nhc.nhc_scope;
278 switch (nhi->family) {
280 fib_nh = &nhi->fib_nh;
281 if (fib_nh->fib_nh_gw_family &&
282 nla_put_u32(skb, NHA_GATEWAY, fib_nh->fib_nh_gw4))
283 goto nla_put_failure;
287 fib6_nh = &nhi->fib6_nh;
288 if (fib6_nh->fib_nh_gw_family &&
289 nla_put_in6_addr(skb, NHA_GATEWAY, &fib6_nh->fib_nh_gw6))
290 goto nla_put_failure;
294 if (nhi->fib_nhc.nhc_lwtstate &&
295 lwtunnel_fill_encap(skb, nhi->fib_nhc.nhc_lwtstate,
296 NHA_ENCAP, NHA_ENCAP_TYPE) < 0)
297 goto nla_put_failure;
304 nlmsg_cancel(skb, nlh);
308 static size_t nh_nlmsg_size_grp(struct nexthop *nh)
310 struct nh_group *nhg = rtnl_dereference(nh->nh_grp);
311 size_t sz = sizeof(struct nexthop_grp) * nhg->num_nh;
313 return nla_total_size(sz) +
314 nla_total_size(2); /* NHA_GROUP_TYPE */
317 static size_t nh_nlmsg_size_single(struct nexthop *nh)
319 struct nh_info *nhi = rtnl_dereference(nh->nh_info);
322 /* covers NHA_BLACKHOLE since NHA_OIF and BLACKHOLE
323 * are mutually exclusive
325 sz = nla_total_size(4); /* NHA_OIF */
327 switch (nhi->family) {
329 if (nhi->fib_nh.fib_nh_gw_family)
330 sz += nla_total_size(4); /* NHA_GATEWAY */
335 if (nhi->fib6_nh.fib_nh_gw_family)
336 sz += nla_total_size(sizeof(const struct in6_addr));
340 if (nhi->fib_nhc.nhc_lwtstate) {
341 sz += lwtunnel_get_encap_size(nhi->fib_nhc.nhc_lwtstate);
342 sz += nla_total_size(2); /* NHA_ENCAP_TYPE */
348 static size_t nh_nlmsg_size(struct nexthop *nh)
350 size_t sz = NLMSG_ALIGN(sizeof(struct nhmsg));
352 sz += nla_total_size(4); /* NHA_ID */
355 sz += nh_nlmsg_size_grp(nh);
357 sz += nh_nlmsg_size_single(nh);
362 static void nexthop_notify(int event, struct nexthop *nh, struct nl_info *info)
364 unsigned int nlflags = info->nlh ? info->nlh->nlmsg_flags : 0;
365 u32 seq = info->nlh ? info->nlh->nlmsg_seq : 0;
369 skb = nlmsg_new(nh_nlmsg_size(nh), gfp_any());
373 err = nh_fill_node(skb, nh, event, info->portid, seq, nlflags);
375 /* -EMSGSIZE implies BUG in nh_nlmsg_size() */
376 WARN_ON(err == -EMSGSIZE);
381 rtnl_notify(skb, info->nl_net, info->portid, RTNLGRP_NEXTHOP,
382 info->nlh, gfp_any());
386 rtnl_set_sk_err(info->nl_net, RTNLGRP_NEXTHOP, err);
389 static bool valid_group_nh(struct nexthop *nh, unsigned int npaths,
390 bool *is_fdb, struct netlink_ext_ack *extack)
393 struct nh_group *nhg = rtnl_dereference(nh->nh_grp);
395 /* nested multipath (group within a group) is not
399 NL_SET_ERR_MSG(extack,
400 "Multipath group can not be a nexthop within a group");
403 *is_fdb = nhg->fdb_nh;
405 struct nh_info *nhi = rtnl_dereference(nh->nh_info);
407 if (nhi->reject_nh && npaths > 1) {
408 NL_SET_ERR_MSG(extack,
409 "Blackhole nexthop can not be used in a group with more than 1 path");
412 *is_fdb = nhi->fdb_nh;
418 static int nh_check_attr_fdb_group(struct nexthop *nh, u8 *nh_family,
419 struct netlink_ext_ack *extack)
423 nhi = rtnl_dereference(nh->nh_info);
426 NL_SET_ERR_MSG(extack, "FDB nexthop group can only have fdb nexthops");
430 if (*nh_family == AF_UNSPEC) {
431 *nh_family = nhi->family;
432 } else if (*nh_family != nhi->family) {
433 NL_SET_ERR_MSG(extack, "FDB nexthop group cannot have mixed family nexthops");
440 static int nh_check_attr_group(struct net *net, struct nlattr *tb[],
441 struct netlink_ext_ack *extack)
443 unsigned int len = nla_len(tb[NHA_GROUP]);
444 u8 nh_family = AF_UNSPEC;
445 struct nexthop_grp *nhg;
449 if (len & (sizeof(struct nexthop_grp) - 1)) {
450 NL_SET_ERR_MSG(extack,
451 "Invalid length for nexthop group attribute");
455 /* convert len to number of nexthop ids */
458 nhg = nla_data(tb[NHA_GROUP]);
459 for (i = 0; i < len; ++i) {
460 if (nhg[i].resvd1 || nhg[i].resvd2) {
461 NL_SET_ERR_MSG(extack, "Reserved fields in nexthop_grp must be 0");
464 if (nhg[i].weight > 254) {
465 NL_SET_ERR_MSG(extack, "Invalid value for weight");
468 for (j = i + 1; j < len; ++j) {
469 if (nhg[i].id == nhg[j].id) {
470 NL_SET_ERR_MSG(extack, "Nexthop id can not be used twice in a group");
478 nhg = nla_data(tb[NHA_GROUP]);
479 for (i = 0; i < len; ++i) {
483 nh = nexthop_find_by_id(net, nhg[i].id);
485 NL_SET_ERR_MSG(extack, "Invalid nexthop id");
488 if (!valid_group_nh(nh, len, &is_fdb_nh, extack))
491 if (nhg_fdb && nh_check_attr_fdb_group(nh, &nh_family, extack))
494 if (!nhg_fdb && is_fdb_nh) {
495 NL_SET_ERR_MSG(extack, "Non FDB nexthop group cannot have fdb nexthops");
499 for (i = NHA_GROUP_TYPE + 1; i < __NHA_MAX; ++i) {
504 NL_SET_ERR_MSG(extack,
505 "No other attributes can be set in nexthop groups");
512 static bool ipv6_good_nh(const struct fib6_nh *nh)
514 int state = NUD_REACHABLE;
519 n = __ipv6_neigh_lookup_noref_stub(nh->fib_nh_dev, &nh->fib_nh_gw6);
521 state = n->nud_state;
523 rcu_read_unlock_bh();
525 return !!(state & NUD_VALID);
528 static bool ipv4_good_nh(const struct fib_nh *nh)
530 int state = NUD_REACHABLE;
535 n = __ipv4_neigh_lookup_noref(nh->fib_nh_dev,
536 (__force u32)nh->fib_nh_gw4);
538 state = n->nud_state;
540 rcu_read_unlock_bh();
542 return !!(state & NUD_VALID);
545 struct nexthop *nexthop_select_path(struct nexthop *nh, int hash)
547 struct nexthop *rc = NULL;
548 struct nh_group *nhg;
554 nhg = rcu_dereference(nh->nh_grp);
555 for (i = 0; i < nhg->num_nh; ++i) {
556 struct nh_grp_entry *nhge = &nhg->nh_entries[i];
559 if (hash > atomic_read(&nhge->upper_bound))
562 nhi = rcu_dereference(nhge->nh->nh_info);
566 /* nexthops always check if it is good and does
567 * not rely on a sysctl for this behavior
569 switch (nhi->family) {
571 if (ipv4_good_nh(&nhi->fib_nh))
575 if (ipv6_good_nh(&nhi->fib6_nh))
586 EXPORT_SYMBOL_GPL(nexthop_select_path);
588 int nexthop_for_each_fib6_nh(struct nexthop *nh,
589 int (*cb)(struct fib6_nh *nh, void *arg),
596 struct nh_group *nhg;
599 nhg = rcu_dereference_rtnl(nh->nh_grp);
600 for (i = 0; i < nhg->num_nh; i++) {
601 struct nh_grp_entry *nhge = &nhg->nh_entries[i];
603 nhi = rcu_dereference_rtnl(nhge->nh->nh_info);
604 err = cb(&nhi->fib6_nh, arg);
609 nhi = rcu_dereference_rtnl(nh->nh_info);
610 err = cb(&nhi->fib6_nh, arg);
617 EXPORT_SYMBOL_GPL(nexthop_for_each_fib6_nh);
619 static int check_src_addr(const struct in6_addr *saddr,
620 struct netlink_ext_ack *extack)
622 if (!ipv6_addr_any(saddr)) {
623 NL_SET_ERR_MSG(extack, "IPv6 routes using source address can not use nexthop objects");
629 int fib6_check_nexthop(struct nexthop *nh, struct fib6_config *cfg,
630 struct netlink_ext_ack *extack)
635 /* fib6_src is unique to a fib6_info and limits the ability to cache
636 * routes in fib6_nh within a nexthop that is potentially shared
637 * across multiple fib entries. If the config wants to use source
638 * routing it can not use nexthop objects. mlxsw also does not allow
639 * fib6_src on routes.
641 if (cfg && check_src_addr(&cfg->fc_src, extack) < 0)
645 struct nh_group *nhg;
647 nhg = rtnl_dereference(nh->nh_grp);
650 is_fdb_nh = nhg->fdb_nh;
652 nhi = rtnl_dereference(nh->nh_info);
653 if (nhi->family == AF_INET)
655 is_fdb_nh = nhi->fdb_nh;
659 NL_SET_ERR_MSG(extack, "Route cannot point to a fdb nexthop");
665 NL_SET_ERR_MSG(extack, "IPv6 routes can not use an IPv4 nexthop");
668 EXPORT_SYMBOL_GPL(fib6_check_nexthop);
670 /* if existing nexthop has ipv6 routes linked to it, need
671 * to verify this new spec works with ipv6
673 static int fib6_check_nh_list(struct nexthop *old, struct nexthop *new,
674 struct netlink_ext_ack *extack)
676 struct fib6_info *f6i;
678 if (list_empty(&old->f6i_list))
681 list_for_each_entry(f6i, &old->f6i_list, nh_list) {
682 if (check_src_addr(&f6i->fib6_src.addr, extack) < 0)
686 return fib6_check_nexthop(new, NULL, extack);
689 static int nexthop_check_scope(struct nh_info *nhi, u8 scope,
690 struct netlink_ext_ack *extack)
692 if (scope == RT_SCOPE_HOST && nhi->fib_nhc.nhc_gw_family) {
693 NL_SET_ERR_MSG(extack,
694 "Route with host scope can not have a gateway");
698 if (nhi->fib_nhc.nhc_flags & RTNH_F_ONLINK && scope >= RT_SCOPE_LINK) {
699 NL_SET_ERR_MSG(extack, "Scope mismatch with nexthop");
706 /* Invoked by fib add code to verify nexthop by id is ok with
707 * config for prefix; parts of fib_check_nh not done when nexthop
710 int fib_check_nexthop(struct nexthop *nh, u8 scope,
711 struct netlink_ext_ack *extack)
717 struct nh_group *nhg;
719 nhg = rtnl_dereference(nh->nh_grp);
721 NL_SET_ERR_MSG(extack, "Route cannot point to a fdb nexthop");
726 if (scope == RT_SCOPE_HOST) {
727 NL_SET_ERR_MSG(extack, "Route with host scope can not have multiple nexthops");
732 /* all nexthops in a group have the same scope */
733 nhi = rtnl_dereference(nhg->nh_entries[0].nh->nh_info);
734 err = nexthop_check_scope(nhi, scope, extack);
736 nhi = rtnl_dereference(nh->nh_info);
738 NL_SET_ERR_MSG(extack, "Route cannot point to a fdb nexthop");
742 err = nexthop_check_scope(nhi, scope, extack);
749 static int fib_check_nh_list(struct nexthop *old, struct nexthop *new,
750 struct netlink_ext_ack *extack)
754 list_for_each_entry(fi, &old->fi_list, nh_list) {
757 err = fib_check_nexthop(new, fi->fib_scope, extack);
764 static void nh_group_rebalance(struct nh_group *nhg)
770 for (i = 0; i < nhg->num_nh; ++i)
771 total += nhg->nh_entries[i].weight;
773 for (i = 0; i < nhg->num_nh; ++i) {
774 struct nh_grp_entry *nhge = &nhg->nh_entries[i];
778 upper_bound = DIV_ROUND_CLOSEST_ULL((u64)w << 31, total) - 1;
779 atomic_set(&nhge->upper_bound, upper_bound);
783 static void remove_nh_grp_entry(struct net *net, struct nh_grp_entry *nhge,
784 struct nl_info *nlinfo)
786 struct nh_grp_entry *nhges, *new_nhges;
787 struct nexthop *nhp = nhge->nh_parent;
788 struct nexthop *nh = nhge->nh;
789 struct nh_group *nhg, *newg;
794 nhg = rtnl_dereference(nhp->nh_grp);
797 /* last entry, keep it visible and remove the parent */
798 if (nhg->num_nh == 1) {
799 remove_nexthop(net, nhp, nlinfo);
803 newg->has_v4 = nhg->has_v4;
804 newg->mpath = nhg->mpath;
805 newg->fdb_nh = nhg->fdb_nh;
806 newg->num_nh = nhg->num_nh;
808 /* copy old entries to new except the one getting removed */
809 nhges = nhg->nh_entries;
810 new_nhges = newg->nh_entries;
811 for (i = 0, j = 0; i < nhg->num_nh; ++i) {
812 /* current nexthop getting removed */
813 if (nhg->nh_entries[i].nh == nh) {
818 list_del(&nhges[i].nh_list);
819 new_nhges[j].nh_parent = nhges[i].nh_parent;
820 new_nhges[j].nh = nhges[i].nh;
821 new_nhges[j].weight = nhges[i].weight;
822 list_add(&new_nhges[j].nh_list, &new_nhges[j].nh->grp_list);
826 nh_group_rebalance(newg);
827 rcu_assign_pointer(nhp->nh_grp, newg);
829 list_del(&nhge->nh_list);
830 nexthop_put(nhge->nh);
833 nexthop_notify(RTM_NEWNEXTHOP, nhp, nlinfo);
836 static void remove_nexthop_from_groups(struct net *net, struct nexthop *nh,
837 struct nl_info *nlinfo)
839 struct nh_grp_entry *nhge, *tmp;
841 list_for_each_entry_safe(nhge, tmp, &nh->grp_list, nh_list)
842 remove_nh_grp_entry(net, nhge, nlinfo);
844 /* make sure all see the newly published array before releasing rtnl */
848 static void remove_nexthop_group(struct nexthop *nh, struct nl_info *nlinfo)
850 struct nh_group *nhg = rcu_dereference_rtnl(nh->nh_grp);
851 int i, num_nh = nhg->num_nh;
853 for (i = 0; i < num_nh; ++i) {
854 struct nh_grp_entry *nhge = &nhg->nh_entries[i];
856 if (WARN_ON(!nhge->nh))
859 list_del_init(&nhge->nh_list);
863 /* not called for nexthop replace */
864 static void __remove_nexthop_fib(struct net *net, struct nexthop *nh)
866 struct fib6_info *f6i, *tmp;
867 bool do_flush = false;
870 call_nexthop_notifiers(net, NEXTHOP_EVENT_DEL, nh);
872 list_for_each_entry(fi, &nh->fi_list, nh_list) {
873 fi->fib_flags |= RTNH_F_DEAD;
879 /* ip6_del_rt removes the entry from this list hence the _safe */
880 list_for_each_entry_safe(f6i, tmp, &nh->f6i_list, nh_list) {
881 /* __ip6_del_rt does a release, so do a hold here */
883 ipv6_stub->ip6_del_rt(net, f6i,
884 !net->ipv4.sysctl_nexthop_compat_mode);
888 static void __remove_nexthop(struct net *net, struct nexthop *nh,
889 struct nl_info *nlinfo)
891 __remove_nexthop_fib(net, nh);
894 remove_nexthop_group(nh, nlinfo);
898 nhi = rtnl_dereference(nh->nh_info);
899 if (nhi->fib_nhc.nhc_dev)
900 hlist_del(&nhi->dev_hash);
902 remove_nexthop_from_groups(net, nh, nlinfo);
906 static void remove_nexthop(struct net *net, struct nexthop *nh,
907 struct nl_info *nlinfo)
909 /* remove from the tree */
910 rb_erase(&nh->rb_node, &net->nexthop.rb_root);
913 nexthop_notify(RTM_DELNEXTHOP, nh, nlinfo);
915 __remove_nexthop(net, nh, nlinfo);
916 nh_base_seq_inc(net);
921 /* if any FIB entries reference this nexthop, any dst entries
922 * need to be regenerated
924 static void nh_rt_cache_flush(struct net *net, struct nexthop *nh)
926 struct fib6_info *f6i;
928 if (!list_empty(&nh->fi_list))
931 list_for_each_entry(f6i, &nh->f6i_list, nh_list)
932 ipv6_stub->fib6_update_sernum(net, f6i);
935 static int replace_nexthop_grp(struct net *net, struct nexthop *old,
937 struct netlink_ext_ack *extack)
939 struct nh_group *oldg, *newg;
942 if (!new->is_group) {
943 NL_SET_ERR_MSG(extack, "Can not replace a nexthop group with a nexthop.");
947 oldg = rtnl_dereference(old->nh_grp);
948 newg = rtnl_dereference(new->nh_grp);
950 /* update parents - used by nexthop code for cleanup */
951 for (i = 0; i < newg->num_nh; i++)
952 newg->nh_entries[i].nh_parent = old;
954 rcu_assign_pointer(old->nh_grp, newg);
956 for (i = 0; i < oldg->num_nh; i++)
957 oldg->nh_entries[i].nh_parent = new;
959 rcu_assign_pointer(new->nh_grp, oldg);
964 static int replace_nexthop_single(struct net *net, struct nexthop *old,
966 struct netlink_ext_ack *extack)
968 struct nh_info *oldi, *newi;
971 NL_SET_ERR_MSG(extack, "Can not replace a nexthop with a nexthop group.");
975 oldi = rtnl_dereference(old->nh_info);
976 newi = rtnl_dereference(new->nh_info);
978 newi->nh_parent = old;
979 oldi->nh_parent = new;
981 old->protocol = new->protocol;
982 old->nh_flags = new->nh_flags;
984 rcu_assign_pointer(old->nh_info, newi);
985 rcu_assign_pointer(new->nh_info, oldi);
990 static void __nexthop_replace_notify(struct net *net, struct nexthop *nh,
991 struct nl_info *info)
993 struct fib6_info *f6i;
995 if (!list_empty(&nh->fi_list)) {
998 /* expectation is a few fib_info per nexthop and then
999 * a lot of routes per fib_info. So mark the fib_info
1000 * and then walk the fib tables once
1002 list_for_each_entry(fi, &nh->fi_list, nh_list)
1003 fi->nh_updated = true;
1005 fib_info_notify_update(net, info);
1007 list_for_each_entry(fi, &nh->fi_list, nh_list)
1008 fi->nh_updated = false;
1011 list_for_each_entry(f6i, &nh->f6i_list, nh_list)
1012 ipv6_stub->fib6_rt_update(net, f6i, info);
1015 /* send RTM_NEWROUTE with REPLACE flag set for all FIB entries
1016 * linked to this nexthop and for all groups that the nexthop
1019 static void nexthop_replace_notify(struct net *net, struct nexthop *nh,
1020 struct nl_info *info)
1022 struct nh_grp_entry *nhge;
1024 __nexthop_replace_notify(net, nh, info);
1026 list_for_each_entry(nhge, &nh->grp_list, nh_list)
1027 __nexthop_replace_notify(net, nhge->nh_parent, info);
1030 static int replace_nexthop(struct net *net, struct nexthop *old,
1031 struct nexthop *new, struct netlink_ext_ack *extack)
1033 bool new_is_reject = false;
1034 struct nh_grp_entry *nhge;
1037 /* check that existing FIB entries are ok with the
1038 * new nexthop definition
1040 err = fib_check_nh_list(old, new, extack);
1044 err = fib6_check_nh_list(old, new, extack);
1048 if (!new->is_group) {
1049 struct nh_info *nhi = rtnl_dereference(new->nh_info);
1051 new_is_reject = nhi->reject_nh;
1054 list_for_each_entry(nhge, &old->grp_list, nh_list) {
1055 /* if new nexthop is a blackhole, any groups using this
1056 * nexthop cannot have more than 1 path
1058 if (new_is_reject &&
1059 nexthop_num_path(nhge->nh_parent) > 1) {
1060 NL_SET_ERR_MSG(extack, "Blackhole nexthop can not be a member of a group with more than one path");
1064 err = fib_check_nh_list(nhge->nh_parent, new, extack);
1068 err = fib6_check_nh_list(nhge->nh_parent, new, extack);
1074 err = replace_nexthop_grp(net, old, new, extack);
1076 err = replace_nexthop_single(net, old, new, extack);
1079 nh_rt_cache_flush(net, old);
1081 __remove_nexthop(net, new, NULL);
1088 /* called with rtnl_lock held */
1089 static int insert_nexthop(struct net *net, struct nexthop *new_nh,
1090 struct nh_config *cfg, struct netlink_ext_ack *extack)
1092 struct rb_node **pp, *parent = NULL, *next;
1093 struct rb_root *root = &net->nexthop.rb_root;
1094 bool replace = !!(cfg->nlflags & NLM_F_REPLACE);
1095 bool create = !!(cfg->nlflags & NLM_F_CREATE);
1096 u32 new_id = new_nh->id;
1097 int replace_notify = 0;
1100 pp = &root->rb_node;
1104 next = rtnl_dereference(*pp);
1110 nh = rb_entry(parent, struct nexthop, rb_node);
1111 if (new_id < nh->id) {
1112 pp = &next->rb_left;
1113 } else if (new_id > nh->id) {
1114 pp = &next->rb_right;
1115 } else if (replace) {
1116 rc = replace_nexthop(net, nh, new_nh, extack);
1118 new_nh = nh; /* send notification with old nh */
1123 /* id already exists and not a replace */
1128 if (replace && !create) {
1129 NL_SET_ERR_MSG(extack, "Replace specified without create and no entry exists");
1134 rb_link_node_rcu(&new_nh->rb_node, parent, pp);
1135 rb_insert_color(&new_nh->rb_node, root);
1139 nh_base_seq_inc(net);
1140 nexthop_notify(RTM_NEWNEXTHOP, new_nh, &cfg->nlinfo);
1141 if (replace_notify && net->ipv4.sysctl_nexthop_compat_mode)
1142 nexthop_replace_notify(net, new_nh, &cfg->nlinfo);
1149 /* remove all nexthops tied to a device being deleted */
1150 static void nexthop_flush_dev(struct net_device *dev)
1152 unsigned int hash = nh_dev_hashfn(dev->ifindex);
1153 struct net *net = dev_net(dev);
1154 struct hlist_head *head = &net->nexthop.devhash[hash];
1155 struct hlist_node *n;
1156 struct nh_info *nhi;
1158 hlist_for_each_entry_safe(nhi, n, head, dev_hash) {
1159 if (nhi->fib_nhc.nhc_dev != dev)
1162 remove_nexthop(net, nhi->nh_parent, NULL);
1166 /* rtnl; called when net namespace is deleted */
1167 static void flush_all_nexthops(struct net *net)
1169 struct rb_root *root = &net->nexthop.rb_root;
1170 struct rb_node *node;
1173 while ((node = rb_first(root))) {
1174 nh = rb_entry(node, struct nexthop, rb_node);
1175 remove_nexthop(net, nh, NULL);
1180 static struct nexthop *nexthop_create_group(struct net *net,
1181 struct nh_config *cfg)
1183 struct nlattr *grps_attr = cfg->nh_grp;
1184 struct nexthop_grp *entry = nla_data(grps_attr);
1185 u16 num_nh = nla_len(grps_attr) / sizeof(*entry);
1186 struct nh_group *nhg;
1190 nh = nexthop_alloc();
1192 return ERR_PTR(-ENOMEM);
1196 nhg = nexthop_grp_alloc(num_nh);
1199 return ERR_PTR(-ENOMEM);
1202 /* spare group used for removals */
1203 nhg->spare = nexthop_grp_alloc(num_nh);
1207 return ERR_PTR(-ENOMEM);
1209 nhg->spare->spare = nhg;
1211 for (i = 0; i < nhg->num_nh; ++i) {
1212 struct nexthop *nhe;
1213 struct nh_info *nhi;
1215 nhe = nexthop_find_by_id(net, entry[i].id);
1216 if (!nexthop_get(nhe))
1219 nhi = rtnl_dereference(nhe->nh_info);
1220 if (nhi->family == AF_INET)
1223 nhg->nh_entries[i].nh = nhe;
1224 nhg->nh_entries[i].weight = entry[i].weight + 1;
1225 list_add(&nhg->nh_entries[i].nh_list, &nhe->grp_list);
1226 nhg->nh_entries[i].nh_parent = nh;
1229 if (cfg->nh_grp_type == NEXTHOP_GRP_TYPE_MPATH) {
1231 nh_group_rebalance(nhg);
1237 rcu_assign_pointer(nh->nh_grp, nhg);
1243 nexthop_put(nhg->nh_entries[i].nh);
1249 return ERR_PTR(-ENOENT);
1252 static int nh_create_ipv4(struct net *net, struct nexthop *nh,
1253 struct nh_info *nhi, struct nh_config *cfg,
1254 struct netlink_ext_ack *extack)
1256 struct fib_nh *fib_nh = &nhi->fib_nh;
1257 struct fib_config fib_cfg = {
1258 .fc_oif = cfg->nh_ifindex,
1259 .fc_gw4 = cfg->gw.ipv4,
1260 .fc_gw_family = cfg->gw.ipv4 ? AF_INET : 0,
1261 .fc_flags = cfg->nh_flags,
1262 .fc_encap = cfg->nh_encap,
1263 .fc_encap_type = cfg->nh_encap_type,
1265 u32 tb_id = (cfg->dev ? l3mdev_fib_table(cfg->dev) : RT_TABLE_MAIN);
1268 err = fib_nh_init(net, fib_nh, &fib_cfg, 1, extack);
1270 fib_nh_release(net, fib_nh);
1277 /* sets nh_dev if successful */
1278 err = fib_check_nh(net, fib_nh, tb_id, 0, extack);
1280 nh->nh_flags = fib_nh->fib_nh_flags;
1281 fib_info_update_nhc_saddr(net, &fib_nh->nh_common,
1282 fib_nh->fib_nh_scope);
1284 fib_nh_release(net, fib_nh);
1290 static int nh_create_ipv6(struct net *net, struct nexthop *nh,
1291 struct nh_info *nhi, struct nh_config *cfg,
1292 struct netlink_ext_ack *extack)
1294 struct fib6_nh *fib6_nh = &nhi->fib6_nh;
1295 struct fib6_config fib6_cfg = {
1296 .fc_table = l3mdev_fib_table(cfg->dev),
1297 .fc_ifindex = cfg->nh_ifindex,
1298 .fc_gateway = cfg->gw.ipv6,
1299 .fc_flags = cfg->nh_flags,
1300 .fc_encap = cfg->nh_encap,
1301 .fc_encap_type = cfg->nh_encap_type,
1302 .fc_is_fdb = cfg->nh_fdb,
1306 if (!ipv6_addr_any(&cfg->gw.ipv6))
1307 fib6_cfg.fc_flags |= RTF_GATEWAY;
1309 /* sets nh_dev if successful */
1310 err = ipv6_stub->fib6_nh_init(net, fib6_nh, &fib6_cfg, GFP_KERNEL,
1313 ipv6_stub->fib6_nh_release(fib6_nh);
1315 nh->nh_flags = fib6_nh->fib_nh_flags;
1320 static struct nexthop *nexthop_create(struct net *net, struct nh_config *cfg,
1321 struct netlink_ext_ack *extack)
1323 struct nh_info *nhi;
1327 nh = nexthop_alloc();
1329 return ERR_PTR(-ENOMEM);
1331 nhi = kzalloc(sizeof(*nhi), GFP_KERNEL);
1334 return ERR_PTR(-ENOMEM);
1337 nh->nh_flags = cfg->nh_flags;
1340 nhi->nh_parent = nh;
1341 nhi->family = cfg->nh_family;
1342 nhi->fib_nhc.nhc_scope = RT_SCOPE_LINK;
1347 if (cfg->nh_blackhole) {
1349 cfg->nh_ifindex = net->loopback_dev->ifindex;
1352 switch (cfg->nh_family) {
1354 err = nh_create_ipv4(net, nh, nhi, cfg, extack);
1357 err = nh_create_ipv6(net, nh, nhi, cfg, extack);
1364 return ERR_PTR(err);
1367 /* add the entry to the device based hash */
1369 nexthop_devhash_add(net, nhi);
1371 rcu_assign_pointer(nh->nh_info, nhi);
1376 /* called with rtnl lock held */
1377 static struct nexthop *nexthop_add(struct net *net, struct nh_config *cfg,
1378 struct netlink_ext_ack *extack)
1383 if (cfg->nlflags & NLM_F_REPLACE && !cfg->nh_id) {
1384 NL_SET_ERR_MSG(extack, "Replace requires nexthop id");
1385 return ERR_PTR(-EINVAL);
1389 cfg->nh_id = nh_find_unused_id(net);
1391 NL_SET_ERR_MSG(extack, "No unused id");
1392 return ERR_PTR(-EINVAL);
1397 nh = nexthop_create_group(net, cfg);
1399 nh = nexthop_create(net, cfg, extack);
1404 refcount_set(&nh->refcnt, 1);
1405 nh->id = cfg->nh_id;
1406 nh->protocol = cfg->nh_protocol;
1409 err = insert_nexthop(net, nh, cfg, extack);
1411 __remove_nexthop(net, nh, NULL);
1419 static int rtm_to_nh_config(struct net *net, struct sk_buff *skb,
1420 struct nlmsghdr *nlh, struct nh_config *cfg,
1421 struct netlink_ext_ack *extack)
1423 struct nhmsg *nhm = nlmsg_data(nlh);
1424 struct nlattr *tb[NHA_MAX + 1];
1427 err = nlmsg_parse(nlh, sizeof(*nhm), tb, NHA_MAX, rtm_nh_policy,
1433 if (nhm->resvd || nhm->nh_scope) {
1434 NL_SET_ERR_MSG(extack, "Invalid values in ancillary header");
1437 if (nhm->nh_flags & ~NEXTHOP_VALID_USER_FLAGS) {
1438 NL_SET_ERR_MSG(extack, "Invalid nexthop flags in ancillary header");
1442 switch (nhm->nh_family) {
1451 NL_SET_ERR_MSG(extack, "Invalid address family");
1455 if (tb[NHA_GROUPS] || tb[NHA_MASTER]) {
1456 NL_SET_ERR_MSG(extack, "Invalid attributes in request");
1460 memset(cfg, 0, sizeof(*cfg));
1461 cfg->nlflags = nlh->nlmsg_flags;
1462 cfg->nlinfo.portid = NETLINK_CB(skb).portid;
1463 cfg->nlinfo.nlh = nlh;
1464 cfg->nlinfo.nl_net = net;
1466 cfg->nh_family = nhm->nh_family;
1467 cfg->nh_protocol = nhm->nh_protocol;
1468 cfg->nh_flags = nhm->nh_flags;
1471 cfg->nh_id = nla_get_u32(tb[NHA_ID]);
1474 if (tb[NHA_OIF] || tb[NHA_BLACKHOLE] ||
1475 tb[NHA_ENCAP] || tb[NHA_ENCAP_TYPE]) {
1476 NL_SET_ERR_MSG(extack, "Fdb attribute can not be used with encap, oif or blackhole");
1479 if (nhm->nh_flags) {
1480 NL_SET_ERR_MSG(extack, "Unsupported nexthop flags in ancillary header");
1483 cfg->nh_fdb = nla_get_flag(tb[NHA_FDB]);
1486 if (tb[NHA_GROUP]) {
1487 if (nhm->nh_family != AF_UNSPEC) {
1488 NL_SET_ERR_MSG(extack, "Invalid family for group");
1491 cfg->nh_grp = tb[NHA_GROUP];
1493 cfg->nh_grp_type = NEXTHOP_GRP_TYPE_MPATH;
1494 if (tb[NHA_GROUP_TYPE])
1495 cfg->nh_grp_type = nla_get_u16(tb[NHA_GROUP_TYPE]);
1497 if (cfg->nh_grp_type > NEXTHOP_GRP_TYPE_MAX) {
1498 NL_SET_ERR_MSG(extack, "Invalid group type");
1501 err = nh_check_attr_group(net, tb, extack);
1503 /* no other attributes should be set */
1507 if (tb[NHA_BLACKHOLE]) {
1508 if (tb[NHA_GATEWAY] || tb[NHA_OIF] ||
1509 tb[NHA_ENCAP] || tb[NHA_ENCAP_TYPE] || tb[NHA_FDB]) {
1510 NL_SET_ERR_MSG(extack, "Blackhole attribute can not be used with gateway, oif, encap or fdb");
1514 cfg->nh_blackhole = 1;
1519 if (!cfg->nh_fdb && !tb[NHA_OIF]) {
1520 NL_SET_ERR_MSG(extack, "Device attribute required for non-blackhole and non-fdb nexthops");
1524 if (!cfg->nh_fdb && tb[NHA_OIF]) {
1525 cfg->nh_ifindex = nla_get_u32(tb[NHA_OIF]);
1526 if (cfg->nh_ifindex)
1527 cfg->dev = __dev_get_by_index(net, cfg->nh_ifindex);
1530 NL_SET_ERR_MSG(extack, "Invalid device index");
1532 } else if (!(cfg->dev->flags & IFF_UP)) {
1533 NL_SET_ERR_MSG(extack, "Nexthop device is not up");
1536 } else if (!netif_carrier_ok(cfg->dev)) {
1537 NL_SET_ERR_MSG(extack, "Carrier for nexthop device is down");
1544 if (tb[NHA_GATEWAY]) {
1545 struct nlattr *gwa = tb[NHA_GATEWAY];
1547 switch (cfg->nh_family) {
1549 if (nla_len(gwa) != sizeof(u32)) {
1550 NL_SET_ERR_MSG(extack, "Invalid gateway");
1553 cfg->gw.ipv4 = nla_get_be32(gwa);
1556 if (nla_len(gwa) != sizeof(struct in6_addr)) {
1557 NL_SET_ERR_MSG(extack, "Invalid gateway");
1560 cfg->gw.ipv6 = nla_get_in6_addr(gwa);
1563 NL_SET_ERR_MSG(extack,
1564 "Unknown address family for gateway");
1568 /* device only nexthop (no gateway) */
1569 if (cfg->nh_flags & RTNH_F_ONLINK) {
1570 NL_SET_ERR_MSG(extack,
1571 "ONLINK flag can not be set for nexthop without a gateway");
1576 if (tb[NHA_ENCAP]) {
1577 cfg->nh_encap = tb[NHA_ENCAP];
1579 if (!tb[NHA_ENCAP_TYPE]) {
1580 NL_SET_ERR_MSG(extack, "LWT encapsulation type is missing");
1584 cfg->nh_encap_type = nla_get_u16(tb[NHA_ENCAP_TYPE]);
1585 err = lwtunnel_valid_encap_type(cfg->nh_encap_type, extack);
1589 } else if (tb[NHA_ENCAP_TYPE]) {
1590 NL_SET_ERR_MSG(extack, "LWT encapsulation attribute is missing");
1601 static int rtm_new_nexthop(struct sk_buff *skb, struct nlmsghdr *nlh,
1602 struct netlink_ext_ack *extack)
1604 struct net *net = sock_net(skb->sk);
1605 struct nh_config cfg;
1609 err = rtm_to_nh_config(net, skb, nlh, &cfg, extack);
1611 nh = nexthop_add(net, &cfg, extack);
1619 static int nh_valid_get_del_req(struct nlmsghdr *nlh, u32 *id,
1620 struct netlink_ext_ack *extack)
1622 struct nhmsg *nhm = nlmsg_data(nlh);
1623 struct nlattr *tb[NHA_MAX + 1];
1626 err = nlmsg_parse(nlh, sizeof(*nhm), tb, NHA_MAX, rtm_nh_policy,
1632 for (i = 0; i < __NHA_MAX; ++i) {
1640 NL_SET_ERR_MSG_ATTR(extack, tb[i],
1641 "Unexpected attribute in request");
1645 if (nhm->nh_protocol || nhm->resvd || nhm->nh_scope || nhm->nh_flags) {
1646 NL_SET_ERR_MSG(extack, "Invalid values in header");
1651 NL_SET_ERR_MSG(extack, "Nexthop id is missing");
1655 *id = nla_get_u32(tb[NHA_ID]);
1657 NL_SET_ERR_MSG(extack, "Invalid nexthop id");
1665 static int rtm_del_nexthop(struct sk_buff *skb, struct nlmsghdr *nlh,
1666 struct netlink_ext_ack *extack)
1668 struct net *net = sock_net(skb->sk);
1669 struct nl_info nlinfo = {
1672 .portid = NETLINK_CB(skb).portid,
1678 err = nh_valid_get_del_req(nlh, &id, extack);
1682 nh = nexthop_find_by_id(net, id);
1686 remove_nexthop(net, nh, &nlinfo);
1692 static int rtm_get_nexthop(struct sk_buff *in_skb, struct nlmsghdr *nlh,
1693 struct netlink_ext_ack *extack)
1695 struct net *net = sock_net(in_skb->sk);
1696 struct sk_buff *skb = NULL;
1701 err = nh_valid_get_del_req(nlh, &id, extack);
1706 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1711 nh = nexthop_find_by_id(net, id);
1715 err = nh_fill_node(skb, nh, RTM_NEWNEXTHOP, NETLINK_CB(in_skb).portid,
1718 WARN_ON(err == -EMSGSIZE);
1722 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
1730 static bool nh_dump_filtered(struct nexthop *nh, int dev_idx, int master_idx,
1731 bool group_filter, u8 family)
1733 const struct net_device *dev;
1734 const struct nh_info *nhi;
1736 if (group_filter && !nh->is_group)
1739 if (!dev_idx && !master_idx && !family)
1745 nhi = rtnl_dereference(nh->nh_info);
1746 if (family && nhi->family != family)
1749 dev = nhi->fib_nhc.nhc_dev;
1750 if (dev_idx && (!dev || dev->ifindex != dev_idx))
1754 struct net_device *master;
1759 master = netdev_master_upper_dev_get((struct net_device *)dev);
1760 if (!master || master->ifindex != master_idx)
1767 static int nh_valid_dump_req(const struct nlmsghdr *nlh, int *dev_idx,
1768 int *master_idx, bool *group_filter,
1769 bool *fdb_filter, struct netlink_callback *cb)
1771 struct netlink_ext_ack *extack = cb->extack;
1772 struct nlattr *tb[NHA_MAX + 1];
1777 err = nlmsg_parse(nlh, sizeof(*nhm), tb, NHA_MAX, rtm_nh_policy,
1782 for (i = 0; i <= NHA_MAX; ++i) {
1788 idx = nla_get_u32(tb[i]);
1789 if (idx > INT_MAX) {
1790 NL_SET_ERR_MSG(extack, "Invalid device index");
1796 idx = nla_get_u32(tb[i]);
1797 if (idx > INT_MAX) {
1798 NL_SET_ERR_MSG(extack, "Invalid master device index");
1804 *group_filter = true;
1810 NL_SET_ERR_MSG(extack, "Unsupported attribute in dump request");
1815 nhm = nlmsg_data(nlh);
1816 if (nhm->nh_protocol || nhm->resvd || nhm->nh_scope || nhm->nh_flags) {
1817 NL_SET_ERR_MSG(extack, "Invalid values in header for nexthop dump request");
1825 static int rtm_dump_nexthop(struct sk_buff *skb, struct netlink_callback *cb)
1827 bool group_filter = false, fdb_filter = false;
1828 struct nhmsg *nhm = nlmsg_data(cb->nlh);
1829 int dev_filter_idx = 0, master_idx = 0;
1830 struct net *net = sock_net(skb->sk);
1831 struct rb_root *root = &net->nexthop.rb_root;
1832 struct rb_node *node;
1836 err = nh_valid_dump_req(cb->nlh, &dev_filter_idx, &master_idx,
1837 &group_filter, &fdb_filter, cb);
1841 s_idx = cb->args[0];
1842 for (node = rb_first(root); node; node = rb_next(node)) {
1848 nh = rb_entry(node, struct nexthop, rb_node);
1849 if (nh_dump_filtered(nh, dev_filter_idx, master_idx,
1850 group_filter, nhm->nh_family))
1853 err = nh_fill_node(skb, nh, RTM_NEWNEXTHOP,
1854 NETLINK_CB(cb->skb).portid,
1855 cb->nlh->nlmsg_seq, NLM_F_MULTI);
1857 if (likely(skb->len))
1870 cb->seq = net->nexthop.seq;
1871 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1876 static void nexthop_sync_mtu(struct net_device *dev, u32 orig_mtu)
1878 unsigned int hash = nh_dev_hashfn(dev->ifindex);
1879 struct net *net = dev_net(dev);
1880 struct hlist_head *head = &net->nexthop.devhash[hash];
1881 struct hlist_node *n;
1882 struct nh_info *nhi;
1884 hlist_for_each_entry_safe(nhi, n, head, dev_hash) {
1885 if (nhi->fib_nhc.nhc_dev == dev) {
1886 if (nhi->family == AF_INET)
1887 fib_nhc_update_mtu(&nhi->fib_nhc, dev->mtu,
1894 static int nh_netdev_event(struct notifier_block *this,
1895 unsigned long event, void *ptr)
1897 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1898 struct netdev_notifier_info_ext *info_ext;
1902 case NETDEV_UNREGISTER:
1903 nexthop_flush_dev(dev);
1906 if (!(dev_get_flags(dev) & (IFF_RUNNING | IFF_LOWER_UP)))
1907 nexthop_flush_dev(dev);
1909 case NETDEV_CHANGEMTU:
1911 nexthop_sync_mtu(dev, info_ext->ext.mtu);
1912 rt_cache_flush(dev_net(dev));
1918 static struct notifier_block nh_netdev_notifier = {
1919 .notifier_call = nh_netdev_event,
1922 int register_nexthop_notifier(struct net *net, struct notifier_block *nb)
1924 return atomic_notifier_chain_register(&net->nexthop.notifier_chain, nb);
1926 EXPORT_SYMBOL(register_nexthop_notifier);
1928 int unregister_nexthop_notifier(struct net *net, struct notifier_block *nb)
1930 return atomic_notifier_chain_unregister(&net->nexthop.notifier_chain,
1933 EXPORT_SYMBOL(unregister_nexthop_notifier);
1935 static void __net_exit nexthop_net_exit(struct net *net)
1938 flush_all_nexthops(net);
1940 kfree(net->nexthop.devhash);
1943 static int __net_init nexthop_net_init(struct net *net)
1945 size_t sz = sizeof(struct hlist_head) * NH_DEV_HASHSIZE;
1947 net->nexthop.rb_root = RB_ROOT;
1948 net->nexthop.devhash = kzalloc(sz, GFP_KERNEL);
1949 if (!net->nexthop.devhash)
1951 ATOMIC_INIT_NOTIFIER_HEAD(&net->nexthop.notifier_chain);
1956 static struct pernet_operations nexthop_net_ops = {
1957 .init = nexthop_net_init,
1958 .exit = nexthop_net_exit,
1961 static int __init nexthop_init(void)
1963 register_pernet_subsys(&nexthop_net_ops);
1965 register_netdevice_notifier(&nh_netdev_notifier);
1967 rtnl_register(PF_UNSPEC, RTM_NEWNEXTHOP, rtm_new_nexthop, NULL, 0);
1968 rtnl_register(PF_UNSPEC, RTM_DELNEXTHOP, rtm_del_nexthop, NULL, 0);
1969 rtnl_register(PF_UNSPEC, RTM_GETNEXTHOP, rtm_get_nexthop,
1970 rtm_dump_nexthop, 0);
1972 rtnl_register(PF_INET, RTM_NEWNEXTHOP, rtm_new_nexthop, NULL, 0);
1973 rtnl_register(PF_INET, RTM_GETNEXTHOP, NULL, rtm_dump_nexthop, 0);
1975 rtnl_register(PF_INET6, RTM_NEWNEXTHOP, rtm_new_nexthop, NULL, 0);
1976 rtnl_register(PF_INET6, RTM_GETNEXTHOP, NULL, rtm_dump_nexthop, 0);
1980 subsys_initcall(nexthop_init);