YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Linux IPv6 multicast routing support for BSD pim6sd |
| 3 | * Based on net/ipv4/ipmr.c. |
| 4 | * |
| 5 | * (c) 2004 Mickael Hoerdt, <hoerdt@clarinet.u-strasbg.fr> |
| 6 | * LSIIT Laboratory, Strasbourg, France |
| 7 | * (c) 2004 Jean-Philippe Andriot, <jean-philippe.andriot@6WIND.com> |
| 8 | * 6WIND, Paris, France |
| 9 | * Copyright (C)2007,2008 USAGI/WIDE Project |
| 10 | * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version |
| 15 | * 2 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | */ |
| 18 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 19 | #include <linux/uaccess.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 20 | #include <linux/types.h> |
| 21 | #include <linux/sched.h> |
| 22 | #include <linux/errno.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 23 | #include <linux/mm.h> |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/fcntl.h> |
| 26 | #include <linux/stat.h> |
| 27 | #include <linux/socket.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 28 | #include <linux/inet.h> |
| 29 | #include <linux/netdevice.h> |
| 30 | #include <linux/inetdevice.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 31 | #include <linux/proc_fs.h> |
| 32 | #include <linux/seq_file.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 33 | #include <linux/init.h> |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 34 | #include <linux/compat.h> |
NeilBrown | 0eb71a9 | 2018-06-18 12:52:50 +1000 | [diff] [blame] | 35 | #include <linux/rhashtable.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 36 | #include <net/protocol.h> |
| 37 | #include <linux/skbuff.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 38 | #include <net/raw.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 39 | #include <linux/notifier.h> |
| 40 | #include <linux/if_arp.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 41 | #include <net/checksum.h> |
| 42 | #include <net/netlink.h> |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 43 | #include <net/fib_rules.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 44 | |
| 45 | #include <net/ipv6.h> |
| 46 | #include <net/ip6_route.h> |
| 47 | #include <linux/mroute6.h> |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 48 | #include <linux/pim.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 49 | #include <net/addrconf.h> |
| 50 | #include <linux/netfilter_ipv6.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 51 | #include <linux/export.h> |
Dave Jones | 5d6e430 | 2009-01-31 00:51:49 -0800 | [diff] [blame] | 52 | #include <net/ip6_checksum.h> |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 53 | #include <linux/netconf.h> |
Willem de Bruijn | cb9f1b7 | 2018-12-30 17:24:36 -0500 | [diff] [blame] | 54 | #include <net/ip_tunnels.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 55 | |
Gustavo A. R. Silva | 69d2c86 | 2018-12-11 14:10:08 -0600 | [diff] [blame] | 56 | #include <linux/nospec.h> |
| 57 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 58 | struct ip6mr_rule { |
| 59 | struct fib_rule common; |
| 60 | }; |
| 61 | |
| 62 | struct ip6mr_result { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 63 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 66 | /* Big lock, protecting vif table, mrt cache and mroute socket state. |
| 67 | Note that the changes are semaphored via rtnl_lock. |
| 68 | */ |
| 69 | |
| 70 | static DEFINE_RWLOCK(mrt_lock); |
| 71 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 72 | /* Multicast router control variables */ |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 73 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 74 | /* Special spinlock for queue of unresolved entries */ |
| 75 | static DEFINE_SPINLOCK(mfc_unres_lock); |
| 76 | |
| 77 | /* We return to original Alan's scheme. Hash table of resolved |
| 78 | entries is changed only in process context and protected |
| 79 | with weak lock mrt_lock. Queue of unresolved entries is protected |
| 80 | with strong spinlock mfc_unres_lock. |
| 81 | |
| 82 | In this case data path is free of exclusive locks at all. |
| 83 | */ |
| 84 | |
| 85 | static struct kmem_cache *mrt_cachep __read_mostly; |
| 86 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 87 | static struct mr_table *ip6mr_new_table(struct net *net, u32 id); |
| 88 | static void ip6mr_free_table(struct mr_table *mrt); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 89 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 90 | static void ip6_mr_forward(struct net *net, struct mr_table *mrt, |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 91 | struct net_device *dev, struct sk_buff *skb, |
| 92 | struct mfc6_cache *cache); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 93 | static int ip6mr_cache_report(struct mr_table *mrt, struct sk_buff *pkt, |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 94 | mifi_t mifi, int assert); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 95 | static void mr6_netlink_event(struct mr_table *mrt, struct mfc6_cache *mfc, |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 96 | int cmd); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 97 | static void mrt6msg_netlink_event(struct mr_table *mrt, struct sk_buff *pkt); |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 98 | static int ip6mr_rtm_dumproute(struct sk_buff *skb, |
| 99 | struct netlink_callback *cb); |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 100 | static void mroute_clean_tables(struct mr_table *mrt, int flags); |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 101 | static void ipmr_expire_process(struct timer_list *t); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 102 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 103 | #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES |
Eric Dumazet | 8ffb335 | 2010-06-06 15:34:40 -0700 | [diff] [blame] | 104 | #define ip6mr_for_each_table(mrt, net) \ |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 105 | list_for_each_entry_rcu(mrt, &net->ipv6.mr6_tables, list) |
| 106 | |
Yuval Mintz | 7b0db85 | 2018-02-28 23:29:39 +0200 | [diff] [blame] | 107 | static struct mr_table *ip6mr_mr_table_iter(struct net *net, |
| 108 | struct mr_table *mrt) |
| 109 | { |
| 110 | struct mr_table *ret; |
| 111 | |
| 112 | if (!mrt) |
| 113 | ret = list_entry_rcu(net->ipv6.mr6_tables.next, |
| 114 | struct mr_table, list); |
| 115 | else |
| 116 | ret = list_entry_rcu(mrt->list.next, |
| 117 | struct mr_table, list); |
| 118 | |
| 119 | if (&ret->list == &net->ipv6.mr6_tables) |
| 120 | return NULL; |
| 121 | return ret; |
| 122 | } |
| 123 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 124 | static struct mr_table *ip6mr_get_table(struct net *net, u32 id) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 125 | { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 126 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 127 | |
| 128 | ip6mr_for_each_table(mrt, net) { |
| 129 | if (mrt->id == id) |
| 130 | return mrt; |
| 131 | } |
| 132 | return NULL; |
| 133 | } |
| 134 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 135 | static int ip6mr_fib_lookup(struct net *net, struct flowi6 *flp6, |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 136 | struct mr_table **mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 137 | { |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 138 | int err; |
Hannes Frederic Sowa | 95f4a45 | 2014-01-13 02:45:22 +0100 | [diff] [blame] | 139 | struct ip6mr_result res; |
| 140 | struct fib_lookup_arg arg = { |
| 141 | .result = &res, |
| 142 | .flags = FIB_LOOKUP_NOREF, |
| 143 | }; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 144 | |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 145 | /* update flow if oif or iif point to device enslaved to l3mdev */ |
| 146 | l3mdev_update_flow(net, flowi6_to_flowi(flp6)); |
| 147 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 148 | err = fib_rules_lookup(net->ipv6.mr6_rules_ops, |
| 149 | flowi6_to_flowi(flp6), 0, &arg); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 150 | if (err < 0) |
| 151 | return err; |
| 152 | *mrt = res.mrt; |
| 153 | return 0; |
| 154 | } |
| 155 | |
| 156 | static int ip6mr_rule_action(struct fib_rule *rule, struct flowi *flp, |
| 157 | int flags, struct fib_lookup_arg *arg) |
| 158 | { |
| 159 | struct ip6mr_result *res = arg->result; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 160 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 161 | |
| 162 | switch (rule->action) { |
| 163 | case FR_ACT_TO_TBL: |
| 164 | break; |
| 165 | case FR_ACT_UNREACHABLE: |
| 166 | return -ENETUNREACH; |
| 167 | case FR_ACT_PROHIBIT: |
| 168 | return -EACCES; |
| 169 | case FR_ACT_BLACKHOLE: |
| 170 | default: |
| 171 | return -EINVAL; |
| 172 | } |
| 173 | |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 174 | arg->table = fib_rule_get_table(rule, arg); |
| 175 | |
| 176 | mrt = ip6mr_get_table(rule->fr_net, arg->table); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 177 | if (!mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 178 | return -EAGAIN; |
| 179 | res->mrt = mrt; |
| 180 | return 0; |
| 181 | } |
| 182 | |
| 183 | static int ip6mr_rule_match(struct fib_rule *rule, struct flowi *flp, int flags) |
| 184 | { |
| 185 | return 1; |
| 186 | } |
| 187 | |
| 188 | static const struct nla_policy ip6mr_rule_policy[FRA_MAX + 1] = { |
| 189 | FRA_GENERIC_POLICY, |
| 190 | }; |
| 191 | |
| 192 | static int ip6mr_rule_configure(struct fib_rule *rule, struct sk_buff *skb, |
Roopa Prabhu | b16fb41 | 2018-04-21 09:41:31 -0700 | [diff] [blame] | 193 | struct fib_rule_hdr *frh, struct nlattr **tb, |
| 194 | struct netlink_ext_ack *extack) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 195 | { |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | static int ip6mr_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh, |
| 200 | struct nlattr **tb) |
| 201 | { |
| 202 | return 1; |
| 203 | } |
| 204 | |
| 205 | static int ip6mr_rule_fill(struct fib_rule *rule, struct sk_buff *skb, |
| 206 | struct fib_rule_hdr *frh) |
| 207 | { |
| 208 | frh->dst_len = 0; |
| 209 | frh->src_len = 0; |
| 210 | frh->tos = 0; |
| 211 | return 0; |
| 212 | } |
| 213 | |
Andi Kleen | 04a6f82 | 2012-10-04 17:12:11 -0700 | [diff] [blame] | 214 | static const struct fib_rules_ops __net_initconst ip6mr_rules_ops_template = { |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 215 | .family = RTNL_FAMILY_IP6MR, |
| 216 | .rule_size = sizeof(struct ip6mr_rule), |
| 217 | .addr_size = sizeof(struct in6_addr), |
| 218 | .action = ip6mr_rule_action, |
| 219 | .match = ip6mr_rule_match, |
| 220 | .configure = ip6mr_rule_configure, |
| 221 | .compare = ip6mr_rule_compare, |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 222 | .fill = ip6mr_rule_fill, |
| 223 | .nlgroup = RTNLGRP_IPV6_RULE, |
| 224 | .policy = ip6mr_rule_policy, |
| 225 | .owner = THIS_MODULE, |
| 226 | }; |
| 227 | |
| 228 | static int __net_init ip6mr_rules_init(struct net *net) |
| 229 | { |
| 230 | struct fib_rules_ops *ops; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 231 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 232 | int err; |
| 233 | |
| 234 | ops = fib_rules_register(&ip6mr_rules_ops_template, net); |
| 235 | if (IS_ERR(ops)) |
| 236 | return PTR_ERR(ops); |
| 237 | |
| 238 | INIT_LIST_HEAD(&net->ipv6.mr6_tables); |
| 239 | |
| 240 | mrt = ip6mr_new_table(net, RT6_TABLE_DFLT); |
Sabrina Dubroca | e783bb0 | 2018-06-05 15:02:00 +0200 | [diff] [blame] | 241 | if (IS_ERR(mrt)) { |
| 242 | err = PTR_ERR(mrt); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 243 | goto err1; |
| 244 | } |
| 245 | |
| 246 | err = fib_default_rule_add(ops, 0x7fff, RT6_TABLE_DFLT, 0); |
| 247 | if (err < 0) |
| 248 | goto err2; |
| 249 | |
| 250 | net->ipv6.mr6_rules_ops = ops; |
| 251 | return 0; |
| 252 | |
| 253 | err2: |
WANG Cong | f243e5a | 2015-03-25 14:45:03 -0700 | [diff] [blame] | 254 | ip6mr_free_table(mrt); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 255 | err1: |
| 256 | fib_rules_unregister(ops); |
| 257 | return err; |
| 258 | } |
| 259 | |
| 260 | static void __net_exit ip6mr_rules_exit(struct net *net) |
| 261 | { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 262 | struct mr_table *mrt, *next; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 263 | |
Hannes Frederic Sowa | 905a6f9 | 2013-07-22 23:45:53 +0200 | [diff] [blame] | 264 | rtnl_lock(); |
Eric Dumazet | 035320d | 2010-06-06 23:48:40 +0000 | [diff] [blame] | 265 | list_for_each_entry_safe(mrt, next, &net->ipv6.mr6_tables, list) { |
| 266 | list_del(&mrt->list); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 267 | ip6mr_free_table(mrt); |
Eric Dumazet | 035320d | 2010-06-06 23:48:40 +0000 | [diff] [blame] | 268 | } |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 269 | fib_rules_unregister(net->ipv6.mr6_rules_ops); |
WANG Cong | 419df12 | 2015-03-31 11:01:46 -0700 | [diff] [blame] | 270 | rtnl_unlock(); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 271 | } |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 272 | |
| 273 | static int ip6mr_rules_dump(struct net *net, struct notifier_block *nb) |
| 274 | { |
| 275 | return fib_rules_dump(net, nb, RTNL_FAMILY_IP6MR); |
| 276 | } |
| 277 | |
| 278 | static unsigned int ip6mr_rules_seq_read(struct net *net) |
| 279 | { |
| 280 | return fib_rules_seq_read(net, RTNL_FAMILY_IP6MR); |
| 281 | } |
Yuval Mintz | d3c07e5 | 2018-03-26 15:01:35 +0300 | [diff] [blame] | 282 | |
| 283 | bool ip6mr_rule_default(const struct fib_rule *rule) |
| 284 | { |
| 285 | return fib_rule_matchall(rule) && rule->action == FR_ACT_TO_TBL && |
| 286 | rule->table == RT6_TABLE_DFLT && !rule->l3mdev; |
| 287 | } |
| 288 | EXPORT_SYMBOL(ip6mr_rule_default); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 289 | #else |
| 290 | #define ip6mr_for_each_table(mrt, net) \ |
| 291 | for (mrt = net->ipv6.mrt6; mrt; mrt = NULL) |
| 292 | |
Yuval Mintz | 7b0db85 | 2018-02-28 23:29:39 +0200 | [diff] [blame] | 293 | static struct mr_table *ip6mr_mr_table_iter(struct net *net, |
| 294 | struct mr_table *mrt) |
| 295 | { |
| 296 | if (!mrt) |
| 297 | return net->ipv6.mrt6; |
| 298 | return NULL; |
| 299 | } |
| 300 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 301 | static struct mr_table *ip6mr_get_table(struct net *net, u32 id) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 302 | { |
| 303 | return net->ipv6.mrt6; |
| 304 | } |
| 305 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 306 | static int ip6mr_fib_lookup(struct net *net, struct flowi6 *flp6, |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 307 | struct mr_table **mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 308 | { |
| 309 | *mrt = net->ipv6.mrt6; |
| 310 | return 0; |
| 311 | } |
| 312 | |
| 313 | static int __net_init ip6mr_rules_init(struct net *net) |
| 314 | { |
Sabrina Dubroca | e783bb0 | 2018-06-05 15:02:00 +0200 | [diff] [blame] | 315 | struct mr_table *mrt; |
| 316 | |
| 317 | mrt = ip6mr_new_table(net, RT6_TABLE_DFLT); |
| 318 | if (IS_ERR(mrt)) |
| 319 | return PTR_ERR(mrt); |
| 320 | net->ipv6.mrt6 = mrt; |
| 321 | return 0; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | static void __net_exit ip6mr_rules_exit(struct net *net) |
| 325 | { |
Hannes Frederic Sowa | 905a6f9 | 2013-07-22 23:45:53 +0200 | [diff] [blame] | 326 | rtnl_lock(); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 327 | ip6mr_free_table(net->ipv6.mrt6); |
Hannes Frederic Sowa | 905a6f9 | 2013-07-22 23:45:53 +0200 | [diff] [blame] | 328 | net->ipv6.mrt6 = NULL; |
| 329 | rtnl_unlock(); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 330 | } |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 331 | |
| 332 | static int ip6mr_rules_dump(struct net *net, struct notifier_block *nb) |
| 333 | { |
| 334 | return 0; |
| 335 | } |
| 336 | |
| 337 | static unsigned int ip6mr_rules_seq_read(struct net *net) |
| 338 | { |
| 339 | return 0; |
| 340 | } |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 341 | #endif |
| 342 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 343 | static int ip6mr_hash_cmp(struct rhashtable_compare_arg *arg, |
| 344 | const void *ptr) |
| 345 | { |
| 346 | const struct mfc6_cache_cmp_arg *cmparg = arg->key; |
| 347 | struct mfc6_cache *c = (struct mfc6_cache *)ptr; |
| 348 | |
| 349 | return !ipv6_addr_equal(&c->mf6c_mcastgrp, &cmparg->mf6c_mcastgrp) || |
| 350 | !ipv6_addr_equal(&c->mf6c_origin, &cmparg->mf6c_origin); |
| 351 | } |
| 352 | |
| 353 | static const struct rhashtable_params ip6mr_rht_params = { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 354 | .head_offset = offsetof(struct mr_mfc, mnode), |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 355 | .key_offset = offsetof(struct mfc6_cache, cmparg), |
| 356 | .key_len = sizeof(struct mfc6_cache_cmp_arg), |
| 357 | .nelem_hint = 3, |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 358 | .obj_cmpfn = ip6mr_hash_cmp, |
| 359 | .automatic_shrinking = true, |
| 360 | }; |
| 361 | |
Yuval Mintz | 0bbbf0e | 2018-02-28 23:29:33 +0200 | [diff] [blame] | 362 | static void ip6mr_new_table_set(struct mr_table *mrt, |
| 363 | struct net *net) |
| 364 | { |
| 365 | #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES |
| 366 | list_add_tail_rcu(&mrt->list, &net->ipv6.mr6_tables); |
| 367 | #endif |
| 368 | } |
| 369 | |
Yuval Mintz | 845c9a7 | 2018-02-28 23:29:35 +0200 | [diff] [blame] | 370 | static struct mfc6_cache_cmp_arg ip6mr_mr_table_ops_cmparg_any = { |
| 371 | .mf6c_origin = IN6ADDR_ANY_INIT, |
| 372 | .mf6c_mcastgrp = IN6ADDR_ANY_INIT, |
| 373 | }; |
| 374 | |
| 375 | static struct mr_table_ops ip6mr_mr_table_ops = { |
| 376 | .rht_params = &ip6mr_rht_params, |
| 377 | .cmparg_any = &ip6mr_mr_table_ops_cmparg_any, |
| 378 | }; |
| 379 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 380 | static struct mr_table *ip6mr_new_table(struct net *net, u32 id) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 381 | { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 382 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 383 | |
| 384 | mrt = ip6mr_get_table(net, id); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 385 | if (mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 386 | return mrt; |
| 387 | |
Yuval Mintz | 845c9a7 | 2018-02-28 23:29:35 +0200 | [diff] [blame] | 388 | return mr_table_alloc(net, id, &ip6mr_mr_table_ops, |
Yuval Mintz | 0bbbf0e | 2018-02-28 23:29:33 +0200 | [diff] [blame] | 389 | ipmr_expire_process, ip6mr_new_table_set); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 390 | } |
| 391 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 392 | static void ip6mr_free_table(struct mr_table *mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 393 | { |
WANG Cong | 7ba0c47 | 2015-03-31 11:01:47 -0700 | [diff] [blame] | 394 | del_timer_sync(&mrt->ipmr_expire_timer); |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 395 | mroute_clean_tables(mrt, MRT6_FLUSH_MIFS | MRT6_FLUSH_MIFS_STATIC | |
| 396 | MRT6_FLUSH_MFC | MRT6_FLUSH_MFC_STATIC); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 397 | rhltable_destroy(&mrt->mfc_hash); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 398 | kfree(mrt); |
| 399 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 400 | |
| 401 | #ifdef CONFIG_PROC_FS |
Yuval Mintz | c8d6196 | 2018-02-28 23:29:36 +0200 | [diff] [blame] | 402 | /* The /proc interfaces to multicast routing |
| 403 | * /proc/ip6_mr_cache /proc/ip6_mr_vif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 404 | */ |
| 405 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 406 | static void *ip6mr_vif_seq_start(struct seq_file *seq, loff_t *pos) |
| 407 | __acquires(mrt_lock) |
| 408 | { |
Yuval Mintz | 3feda6b | 2018-02-28 23:29:37 +0200 | [diff] [blame] | 409 | struct mr_vif_iter *iter = seq->private; |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 410 | struct net *net = seq_file_net(seq); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 411 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 412 | |
| 413 | mrt = ip6mr_get_table(net, RT6_TABLE_DFLT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 414 | if (!mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 415 | return ERR_PTR(-ENOENT); |
| 416 | |
| 417 | iter->mrt = mrt; |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 418 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 419 | read_lock(&mrt_lock); |
Yuval Mintz | 3feda6b | 2018-02-28 23:29:37 +0200 | [diff] [blame] | 420 | return mr_vif_seq_start(seq, pos); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | static void ip6mr_vif_seq_stop(struct seq_file *seq, void *v) |
| 424 | __releases(mrt_lock) |
| 425 | { |
| 426 | read_unlock(&mrt_lock); |
| 427 | } |
| 428 | |
| 429 | static int ip6mr_vif_seq_show(struct seq_file *seq, void *v) |
| 430 | { |
Yuval Mintz | 3feda6b | 2018-02-28 23:29:37 +0200 | [diff] [blame] | 431 | struct mr_vif_iter *iter = seq->private; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 432 | struct mr_table *mrt = iter->mrt; |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 433 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 434 | if (v == SEQ_START_TOKEN) { |
| 435 | seq_puts(seq, |
| 436 | "Interface BytesIn PktsIn BytesOut PktsOut Flags\n"); |
| 437 | } else { |
Yuval Mintz | 6853f21 | 2018-02-28 23:29:29 +0200 | [diff] [blame] | 438 | const struct vif_device *vif = v; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 439 | const char *name = vif->dev ? vif->dev->name : "none"; |
| 440 | |
| 441 | seq_printf(seq, |
Al Viro | d430a22 | 2008-06-02 10:59:02 +0100 | [diff] [blame] | 442 | "%2td %-10s %8ld %7ld %8ld %7ld %05X\n", |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 443 | vif - mrt->vif_table, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 444 | name, vif->bytes_in, vif->pkt_in, |
| 445 | vif->bytes_out, vif->pkt_out, |
| 446 | vif->flags); |
| 447 | } |
| 448 | return 0; |
| 449 | } |
| 450 | |
Stephen Hemminger | 98147d5 | 2009-09-01 19:25:02 +0000 | [diff] [blame] | 451 | static const struct seq_operations ip6mr_vif_seq_ops = { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 452 | .start = ip6mr_vif_seq_start, |
Yuval Mintz | 3feda6b | 2018-02-28 23:29:37 +0200 | [diff] [blame] | 453 | .next = mr_vif_seq_next, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 454 | .stop = ip6mr_vif_seq_stop, |
| 455 | .show = ip6mr_vif_seq_show, |
| 456 | }; |
| 457 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 458 | static void *ipmr_mfc_seq_start(struct seq_file *seq, loff_t *pos) |
| 459 | { |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 460 | struct net *net = seq_file_net(seq); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 461 | struct mr_table *mrt; |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 462 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 463 | mrt = ip6mr_get_table(net, RT6_TABLE_DFLT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 464 | if (!mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 465 | return ERR_PTR(-ENOENT); |
| 466 | |
Yuval Mintz | c8d6196 | 2018-02-28 23:29:36 +0200 | [diff] [blame] | 467 | return mr_mfc_seq_start(seq, pos, mrt, &mfc_unres_lock); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | static int ipmr_mfc_seq_show(struct seq_file *seq, void *v) |
| 471 | { |
| 472 | int n; |
| 473 | |
| 474 | if (v == SEQ_START_TOKEN) { |
| 475 | seq_puts(seq, |
| 476 | "Group " |
| 477 | "Origin " |
| 478 | "Iif Pkts Bytes Wrong Oifs\n"); |
| 479 | } else { |
| 480 | const struct mfc6_cache *mfc = v; |
Yuval Mintz | c8d6196 | 2018-02-28 23:29:36 +0200 | [diff] [blame] | 481 | const struct mr_mfc_iter *it = seq->private; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 482 | struct mr_table *mrt = it->mrt; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 483 | |
Benjamin Thery | 999890b | 2008-12-03 22:22:16 -0800 | [diff] [blame] | 484 | seq_printf(seq, "%pI6 %pI6 %-3hd", |
Harvey Harrison | 0c6ce78 | 2008-10-28 16:09:23 -0700 | [diff] [blame] | 485 | &mfc->mf6c_mcastgrp, &mfc->mf6c_origin, |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 486 | mfc->_c.mfc_parent); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 487 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 488 | if (it->cache != &mrt->mfc_unres_queue) { |
Benjamin Thery | 1ea472e | 2008-12-03 22:21:47 -0800 | [diff] [blame] | 489 | seq_printf(seq, " %8lu %8lu %8lu", |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 490 | mfc->_c.mfc_un.res.pkt, |
| 491 | mfc->_c.mfc_un.res.bytes, |
| 492 | mfc->_c.mfc_un.res.wrong_if); |
| 493 | for (n = mfc->_c.mfc_un.res.minvif; |
| 494 | n < mfc->_c.mfc_un.res.maxvif; n++) { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 495 | if (VIF_EXISTS(mrt, n) && |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 496 | mfc->_c.mfc_un.res.ttls[n] < 255) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 497 | seq_printf(seq, |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 498 | " %2d:%-3d", n, |
| 499 | mfc->_c.mfc_un.res.ttls[n]); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 500 | } |
Benjamin Thery | 1ea472e | 2008-12-03 22:21:47 -0800 | [diff] [blame] | 501 | } else { |
| 502 | /* unresolved mfc_caches don't contain |
| 503 | * pkt, bytes and wrong_if values |
| 504 | */ |
| 505 | seq_printf(seq, " %8lu %8lu %8lu", 0ul, 0ul, 0ul); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 506 | } |
| 507 | seq_putc(seq, '\n'); |
| 508 | } |
| 509 | return 0; |
| 510 | } |
| 511 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 512 | static const struct seq_operations ipmr_mfc_seq_ops = { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 513 | .start = ipmr_mfc_seq_start, |
Yuval Mintz | c8d6196 | 2018-02-28 23:29:36 +0200 | [diff] [blame] | 514 | .next = mr_mfc_seq_next, |
| 515 | .stop = mr_mfc_seq_stop, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 516 | .show = ipmr_mfc_seq_show, |
| 517 | }; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 518 | #endif |
| 519 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 520 | #ifdef CONFIG_IPV6_PIMSM_V2 |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 521 | |
| 522 | static int pim6_rcv(struct sk_buff *skb) |
| 523 | { |
| 524 | struct pimreghdr *pim; |
| 525 | struct ipv6hdr *encap; |
| 526 | struct net_device *reg_dev = NULL; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 527 | struct net *net = dev_net(skb->dev); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 528 | struct mr_table *mrt; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 529 | struct flowi6 fl6 = { |
| 530 | .flowi6_iif = skb->dev->ifindex, |
| 531 | .flowi6_mark = skb->mark, |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 532 | }; |
| 533 | int reg_vif_num; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 534 | |
| 535 | if (!pskb_may_pull(skb, sizeof(*pim) + sizeof(*encap))) |
| 536 | goto drop; |
| 537 | |
| 538 | pim = (struct pimreghdr *)skb_transport_header(skb); |
Nikolay Aleksandrov | 56245ca | 2016-10-31 13:21:04 +0100 | [diff] [blame] | 539 | if (pim->type != ((PIM_VERSION << 4) | PIM_TYPE_REGISTER) || |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 540 | (pim->flags & PIM_NULL_REGISTER) || |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 541 | (csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr, |
| 542 | sizeof(*pim), IPPROTO_PIM, |
| 543 | csum_partial((void *)pim, sizeof(*pim), 0)) && |
Al Viro | ec6b486 | 2008-04-26 22:28:58 -0700 | [diff] [blame] | 544 | csum_fold(skb_checksum(skb, 0, skb->len, 0)))) |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 545 | goto drop; |
| 546 | |
| 547 | /* check if the inner packet is destined to mcast group */ |
| 548 | encap = (struct ipv6hdr *)(skb_transport_header(skb) + |
| 549 | sizeof(*pim)); |
| 550 | |
| 551 | if (!ipv6_addr_is_multicast(&encap->daddr) || |
| 552 | encap->payload_len == 0 || |
| 553 | ntohs(encap->payload_len) + sizeof(*pim) > skb->len) |
| 554 | goto drop; |
| 555 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 556 | if (ip6mr_fib_lookup(net, &fl6, &mrt) < 0) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 557 | goto drop; |
| 558 | reg_vif_num = mrt->mroute_reg_vif_num; |
| 559 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 560 | read_lock(&mrt_lock); |
| 561 | if (reg_vif_num >= 0) |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 562 | reg_dev = mrt->vif_table[reg_vif_num].dev; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 563 | if (reg_dev) |
| 564 | dev_hold(reg_dev); |
| 565 | read_unlock(&mrt_lock); |
| 566 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 567 | if (!reg_dev) |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 568 | goto drop; |
| 569 | |
| 570 | skb->mac_header = skb->network_header; |
| 571 | skb_pull(skb, (u8 *)encap - skb->data); |
| 572 | skb_reset_network_header(skb); |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 573 | skb->protocol = htons(ETH_P_IPV6); |
Cesar Eduardo Barros | 3e49e6d | 2011-03-26 05:10:30 +0000 | [diff] [blame] | 574 | skb->ip_summed = CHECKSUM_NONE; |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 575 | |
Nicolas Dichtel | ea23192 | 2013-09-02 15:34:58 +0200 | [diff] [blame] | 576 | skb_tunnel_rx(skb, reg_dev, dev_net(reg_dev)); |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 577 | |
Eric Dumazet | caf586e | 2010-09-30 21:06:55 +0000 | [diff] [blame] | 578 | netif_rx(skb); |
Eric Dumazet | 8990f46 | 2010-09-20 00:12:11 +0000 | [diff] [blame] | 579 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 580 | dev_put(reg_dev); |
| 581 | return 0; |
| 582 | drop: |
| 583 | kfree_skb(skb); |
| 584 | return 0; |
| 585 | } |
| 586 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 587 | static const struct inet6_protocol pim6_protocol = { |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 588 | .handler = pim6_rcv, |
| 589 | }; |
| 590 | |
| 591 | /* Service routines creating virtual interfaces: PIMREG */ |
| 592 | |
Stephen Hemminger | 6fef4c0 | 2009-08-31 19:50:41 +0000 | [diff] [blame] | 593 | static netdev_tx_t reg_vif_xmit(struct sk_buff *skb, |
| 594 | struct net_device *dev) |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 595 | { |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 596 | struct net *net = dev_net(dev); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 597 | struct mr_table *mrt; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 598 | struct flowi6 fl6 = { |
| 599 | .flowi6_oif = dev->ifindex, |
Cong Wang | 6a66271 | 2014-04-15 16:25:34 -0700 | [diff] [blame] | 600 | .flowi6_iif = skb->skb_iif ? : LOOPBACK_IFINDEX, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 601 | .flowi6_mark = skb->mark, |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 602 | }; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 603 | |
Willem de Bruijn | cb9f1b7 | 2018-12-30 17:24:36 -0500 | [diff] [blame] | 604 | if (!pskb_inet_may_pull(skb)) |
| 605 | goto tx_err; |
| 606 | |
| 607 | if (ip6mr_fib_lookup(net, &fl6, &mrt) < 0) |
| 608 | goto tx_err; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 609 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 610 | read_lock(&mrt_lock); |
Pavel Emelyanov | dc58c78 | 2008-05-21 14:17:54 -0700 | [diff] [blame] | 611 | dev->stats.tx_bytes += skb->len; |
| 612 | dev->stats.tx_packets++; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 613 | ip6mr_cache_report(mrt, skb, mrt->mroute_reg_vif_num, MRT6MSG_WHOLEPKT); |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 614 | read_unlock(&mrt_lock); |
| 615 | kfree_skb(skb); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 616 | return NETDEV_TX_OK; |
Willem de Bruijn | cb9f1b7 | 2018-12-30 17:24:36 -0500 | [diff] [blame] | 617 | |
| 618 | tx_err: |
| 619 | dev->stats.tx_errors++; |
| 620 | kfree_skb(skb); |
| 621 | return NETDEV_TX_OK; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 622 | } |
| 623 | |
Nicolas Dichtel | ee9b959 | 2015-04-02 17:07:03 +0200 | [diff] [blame] | 624 | static int reg_vif_get_iflink(const struct net_device *dev) |
| 625 | { |
| 626 | return 0; |
| 627 | } |
| 628 | |
Stephen Hemminger | 007c383 | 2008-11-20 20:28:35 -0800 | [diff] [blame] | 629 | static const struct net_device_ops reg_vif_netdev_ops = { |
| 630 | .ndo_start_xmit = reg_vif_xmit, |
Nicolas Dichtel | ee9b959 | 2015-04-02 17:07:03 +0200 | [diff] [blame] | 631 | .ndo_get_iflink = reg_vif_get_iflink, |
Stephen Hemminger | 007c383 | 2008-11-20 20:28:35 -0800 | [diff] [blame] | 632 | }; |
| 633 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 634 | static void reg_vif_setup(struct net_device *dev) |
| 635 | { |
| 636 | dev->type = ARPHRD_PIMREG; |
| 637 | dev->mtu = 1500 - sizeof(struct ipv6hdr) - 8; |
| 638 | dev->flags = IFF_NOARP; |
Stephen Hemminger | 007c383 | 2008-11-20 20:28:35 -0800 | [diff] [blame] | 639 | dev->netdev_ops = ®_vif_netdev_ops; |
David S. Miller | cf124db | 2017-05-08 12:52:56 -0400 | [diff] [blame] | 640 | dev->needs_free_netdev = true; |
Tom Goff | 403dbb97 | 2009-06-14 03:16:13 -0700 | [diff] [blame] | 641 | dev->features |= NETIF_F_NETNS_LOCAL; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 642 | } |
| 643 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 644 | static struct net_device *ip6mr_reg_vif(struct net *net, struct mr_table *mrt) |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 645 | { |
| 646 | struct net_device *dev; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 647 | char name[IFNAMSIZ]; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 648 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 649 | if (mrt->id == RT6_TABLE_DFLT) |
| 650 | sprintf(name, "pim6reg"); |
| 651 | else |
| 652 | sprintf(name, "pim6reg%u", mrt->id); |
| 653 | |
Tom Gundersen | c835a67 | 2014-07-14 16:37:24 +0200 | [diff] [blame] | 654 | dev = alloc_netdev(0, name, NET_NAME_UNKNOWN, reg_vif_setup); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 655 | if (!dev) |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 656 | return NULL; |
| 657 | |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 658 | dev_net_set(dev, net); |
| 659 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 660 | if (register_netdevice(dev)) { |
| 661 | free_netdev(dev); |
| 662 | return NULL; |
| 663 | } |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 664 | |
Petr Machata | 00f54e6 | 2018-12-06 17:05:36 +0000 | [diff] [blame] | 665 | if (dev_open(dev, NULL)) |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 666 | goto failure; |
| 667 | |
Wang Chen | 7af3db7 | 2008-07-14 20:54:54 -0700 | [diff] [blame] | 668 | dev_hold(dev); |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 669 | return dev; |
| 670 | |
| 671 | failure: |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 672 | unregister_netdevice(dev); |
| 673 | return NULL; |
| 674 | } |
| 675 | #endif |
| 676 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 677 | static int call_ip6mr_vif_entry_notifiers(struct net *net, |
| 678 | enum fib_event_type event_type, |
| 679 | struct vif_device *vif, |
| 680 | mifi_t vif_index, u32 tb_id) |
| 681 | { |
| 682 | return mr_call_vif_notifiers(net, RTNL_FAMILY_IP6MR, event_type, |
| 683 | vif, vif_index, tb_id, |
| 684 | &net->ipv6.ipmr_seq); |
| 685 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 686 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 687 | static int call_ip6mr_mfc_entry_notifiers(struct net *net, |
| 688 | enum fib_event_type event_type, |
| 689 | struct mfc6_cache *mfc, u32 tb_id) |
| 690 | { |
| 691 | return mr_call_mfc_notifiers(net, RTNL_FAMILY_IP6MR, event_type, |
| 692 | &mfc->_c, tb_id, &net->ipv6.ipmr_seq); |
| 693 | } |
| 694 | |
| 695 | /* Delete a VIF entry */ |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 696 | static int mif6_delete(struct mr_table *mrt, int vifi, int notify, |
Nikolay Aleksandrov | 723b929 | 2017-04-21 20:42:16 +0300 | [diff] [blame] | 697 | struct list_head *head) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 698 | { |
Yuval Mintz | 6853f21 | 2018-02-28 23:29:29 +0200 | [diff] [blame] | 699 | struct vif_device *v; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 700 | struct net_device *dev; |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 701 | struct inet6_dev *in6_dev; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 702 | |
| 703 | if (vifi < 0 || vifi >= mrt->maxvif) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 704 | return -EADDRNOTAVAIL; |
| 705 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 706 | v = &mrt->vif_table[vifi]; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 707 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 708 | if (VIF_EXISTS(mrt, vifi)) |
| 709 | call_ip6mr_vif_entry_notifiers(read_pnet(&mrt->net), |
| 710 | FIB_EVENT_VIF_DEL, v, vifi, |
| 711 | mrt->id); |
| 712 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 713 | write_lock_bh(&mrt_lock); |
| 714 | dev = v->dev; |
| 715 | v->dev = NULL; |
| 716 | |
| 717 | if (!dev) { |
| 718 | write_unlock_bh(&mrt_lock); |
| 719 | return -EADDRNOTAVAIL; |
| 720 | } |
| 721 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 722 | #ifdef CONFIG_IPV6_PIMSM_V2 |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 723 | if (vifi == mrt->mroute_reg_vif_num) |
| 724 | mrt->mroute_reg_vif_num = -1; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 725 | #endif |
| 726 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 727 | if (vifi + 1 == mrt->maxvif) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 728 | int tmp; |
| 729 | for (tmp = vifi - 1; tmp >= 0; tmp--) { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 730 | if (VIF_EXISTS(mrt, tmp)) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 731 | break; |
| 732 | } |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 733 | mrt->maxvif = tmp + 1; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | write_unlock_bh(&mrt_lock); |
| 737 | |
| 738 | dev_set_allmulti(dev, -1); |
| 739 | |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 740 | in6_dev = __in6_dev_get(dev); |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 741 | if (in6_dev) { |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 742 | in6_dev->cnf.mc_forwarding--; |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 743 | inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 744 | NETCONFA_MC_FORWARDING, |
| 745 | dev->ifindex, &in6_dev->cnf); |
| 746 | } |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 747 | |
Nikolay Aleksandrov | 723b929 | 2017-04-21 20:42:16 +0300 | [diff] [blame] | 748 | if ((v->flags & MIFF_REGISTER) && !notify) |
Eric Dumazet | c871e66 | 2009-10-28 04:48:11 +0000 | [diff] [blame] | 749 | unregister_netdevice_queue(dev, head); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 750 | |
| 751 | dev_put(dev); |
| 752 | return 0; |
| 753 | } |
| 754 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 755 | static inline void ip6mr_cache_free_rcu(struct rcu_head *head) |
| 756 | { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 757 | struct mr_mfc *c = container_of(head, struct mr_mfc, rcu); |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 758 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 759 | kmem_cache_free(mrt_cachep, (struct mfc6_cache *)c); |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 760 | } |
| 761 | |
Benjamin Thery | 58701ad | 2008-12-10 16:22:34 -0800 | [diff] [blame] | 762 | static inline void ip6mr_cache_free(struct mfc6_cache *c) |
| 763 | { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 764 | call_rcu(&c->_c.rcu, ip6mr_cache_free_rcu); |
Benjamin Thery | 58701ad | 2008-12-10 16:22:34 -0800 | [diff] [blame] | 765 | } |
| 766 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 767 | /* Destroy an unresolved cache entry, killing queued skbs |
| 768 | and reporting error to netlink readers. |
| 769 | */ |
| 770 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 771 | static void ip6mr_destroy_unres(struct mr_table *mrt, struct mfc6_cache *c) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 772 | { |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 773 | struct net *net = read_pnet(&mrt->net); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 774 | struct sk_buff *skb; |
| 775 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 776 | atomic_dec(&mrt->cache_resolve_queue_len); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 777 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 778 | while ((skb = skb_dequeue(&c->_c.mfc_un.unres.unresolved)) != NULL) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 779 | if (ipv6_hdr(skb)->version == 0) { |
Johannes Berg | af72868 | 2017-06-16 14:29:22 +0200 | [diff] [blame] | 780 | struct nlmsghdr *nlh = skb_pull(skb, |
| 781 | sizeof(struct ipv6hdr)); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 782 | nlh->nlmsg_type = NLMSG_ERROR; |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 783 | nlh->nlmsg_len = nlmsg_msg_size(sizeof(struct nlmsgerr)); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 784 | skb_trim(skb, nlh->nlmsg_len); |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 785 | ((struct nlmsgerr *)nlmsg_data(nlh))->error = -ETIMEDOUT; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 786 | rtnl_unicast(skb, net, NETLINK_CB(skb).portid); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 787 | } else |
| 788 | kfree_skb(skb); |
| 789 | } |
| 790 | |
Benjamin Thery | 58701ad | 2008-12-10 16:22:34 -0800 | [diff] [blame] | 791 | ip6mr_cache_free(c); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | |
Patrick McHardy | c476efb | 2010-05-11 14:40:48 +0200 | [diff] [blame] | 795 | /* Timer process for all the unresolved queue. */ |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 796 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 797 | static void ipmr_do_expire_process(struct mr_table *mrt) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 798 | { |
| 799 | unsigned long now = jiffies; |
| 800 | unsigned long expires = 10 * HZ; |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 801 | struct mr_mfc *c, *next; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 802 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 803 | list_for_each_entry_safe(c, next, &mrt->mfc_unres_queue, list) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 804 | if (time_after(c->mfc_un.unres.expires, now)) { |
| 805 | /* not yet... */ |
| 806 | unsigned long interval = c->mfc_un.unres.expires - now; |
| 807 | if (interval < expires) |
| 808 | expires = interval; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 809 | continue; |
| 810 | } |
| 811 | |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 812 | list_del(&c->list); |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 813 | mr6_netlink_event(mrt, (struct mfc6_cache *)c, RTM_DELROUTE); |
| 814 | ip6mr_destroy_unres(mrt, (struct mfc6_cache *)c); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 815 | } |
| 816 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 817 | if (!list_empty(&mrt->mfc_unres_queue)) |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 818 | mod_timer(&mrt->ipmr_expire_timer, jiffies + expires); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 819 | } |
| 820 | |
Kees Cook | e99e88a | 2017-10-16 14:43:17 -0700 | [diff] [blame] | 821 | static void ipmr_expire_process(struct timer_list *t) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 822 | { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 823 | struct mr_table *mrt = from_timer(mrt, t, ipmr_expire_timer); |
Patrick McHardy | c476efb | 2010-05-11 14:40:48 +0200 | [diff] [blame] | 824 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 825 | if (!spin_trylock(&mfc_unres_lock)) { |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 826 | mod_timer(&mrt->ipmr_expire_timer, jiffies + 1); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 827 | return; |
| 828 | } |
| 829 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 830 | if (!list_empty(&mrt->mfc_unres_queue)) |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 831 | ipmr_do_expire_process(mrt); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 832 | |
| 833 | spin_unlock(&mfc_unres_lock); |
| 834 | } |
| 835 | |
| 836 | /* Fill oifs list. It is called under write locked mrt_lock. */ |
| 837 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 838 | static void ip6mr_update_thresholds(struct mr_table *mrt, |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 839 | struct mr_mfc *cache, |
Patrick McHardy | b5aa30b | 2010-05-11 14:40:50 +0200 | [diff] [blame] | 840 | unsigned char *ttls) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 841 | { |
| 842 | int vifi; |
| 843 | |
Rami Rosen | 6ac7eb0 | 2008-04-10 12:40:10 +0300 | [diff] [blame] | 844 | cache->mfc_un.res.minvif = MAXMIFS; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 845 | cache->mfc_un.res.maxvif = 0; |
Rami Rosen | 6ac7eb0 | 2008-04-10 12:40:10 +0300 | [diff] [blame] | 846 | memset(cache->mfc_un.res.ttls, 255, MAXMIFS); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 847 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 848 | for (vifi = 0; vifi < mrt->maxvif; vifi++) { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 849 | if (VIF_EXISTS(mrt, vifi) && |
Benjamin Thery | 4e16880 | 2008-12-10 16:15:08 -0800 | [diff] [blame] | 850 | ttls[vifi] && ttls[vifi] < 255) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 851 | cache->mfc_un.res.ttls[vifi] = ttls[vifi]; |
| 852 | if (cache->mfc_un.res.minvif > vifi) |
| 853 | cache->mfc_un.res.minvif = vifi; |
| 854 | if (cache->mfc_un.res.maxvif <= vifi) |
| 855 | cache->mfc_un.res.maxvif = vifi + 1; |
| 856 | } |
| 857 | } |
Nikolay Aleksandrov | 90b5ca1 | 2016-07-26 18:54:52 +0200 | [diff] [blame] | 858 | cache->mfc_un.res.lastuse = jiffies; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 859 | } |
| 860 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 861 | static int mif6_add(struct net *net, struct mr_table *mrt, |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 862 | struct mif6ctl *vifc, int mrtsock) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 863 | { |
| 864 | int vifi = vifc->mif6c_mifi; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 865 | struct vif_device *v = &mrt->vif_table[vifi]; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 866 | struct net_device *dev; |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 867 | struct inet6_dev *in6_dev; |
Wang Chen | 5ae7b44 | 2008-07-14 20:54:23 -0700 | [diff] [blame] | 868 | int err; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 869 | |
| 870 | /* Is vif busy ? */ |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 871 | if (VIF_EXISTS(mrt, vifi)) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 872 | return -EADDRINUSE; |
| 873 | |
| 874 | switch (vifc->mif6c_flags) { |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 875 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 876 | case MIFF_REGISTER: |
| 877 | /* |
| 878 | * Special Purpose VIF in PIM |
| 879 | * All the packets will be sent to the daemon |
| 880 | */ |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 881 | if (mrt->mroute_reg_vif_num >= 0) |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 882 | return -EADDRINUSE; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 883 | dev = ip6mr_reg_vif(net, mrt); |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 884 | if (!dev) |
| 885 | return -ENOBUFS; |
Wang Chen | 5ae7b44 | 2008-07-14 20:54:23 -0700 | [diff] [blame] | 886 | err = dev_set_allmulti(dev, 1); |
| 887 | if (err) { |
| 888 | unregister_netdevice(dev); |
Wang Chen | 7af3db7 | 2008-07-14 20:54:54 -0700 | [diff] [blame] | 889 | dev_put(dev); |
Wang Chen | 5ae7b44 | 2008-07-14 20:54:23 -0700 | [diff] [blame] | 890 | return err; |
| 891 | } |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 892 | break; |
| 893 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 894 | case 0: |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 895 | dev = dev_get_by_index(net, vifc->mif6c_pifi); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 896 | if (!dev) |
| 897 | return -EADDRNOTAVAIL; |
Wang Chen | 5ae7b44 | 2008-07-14 20:54:23 -0700 | [diff] [blame] | 898 | err = dev_set_allmulti(dev, 1); |
Wang Chen | 7af3db7 | 2008-07-14 20:54:54 -0700 | [diff] [blame] | 899 | if (err) { |
| 900 | dev_put(dev); |
Wang Chen | 5ae7b44 | 2008-07-14 20:54:23 -0700 | [diff] [blame] | 901 | return err; |
Wang Chen | 7af3db7 | 2008-07-14 20:54:54 -0700 | [diff] [blame] | 902 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 903 | break; |
| 904 | default: |
| 905 | return -EINVAL; |
| 906 | } |
| 907 | |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 908 | in6_dev = __in6_dev_get(dev); |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 909 | if (in6_dev) { |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 910 | in6_dev->cnf.mc_forwarding++; |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 911 | inet6_netconf_notify_devconf(dev_net(dev), RTM_NEWNETCONF, |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 912 | NETCONFA_MC_FORWARDING, |
| 913 | dev->ifindex, &in6_dev->cnf); |
| 914 | } |
Thomas Goff | 1d6e55f | 2009-01-27 22:39:59 -0800 | [diff] [blame] | 915 | |
Yuval Mintz | 6853f21 | 2018-02-28 23:29:29 +0200 | [diff] [blame] | 916 | /* Fill in the VIF structures */ |
| 917 | vif_device_init(v, dev, vifc->vifc_rate_limit, vifc->vifc_threshold, |
| 918 | vifc->mif6c_flags | (!mrtsock ? VIFF_STATIC : 0), |
| 919 | MIFF_REGISTER); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 920 | |
| 921 | /* And finish update writing critical data */ |
| 922 | write_lock_bh(&mrt_lock); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 923 | v->dev = dev; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 924 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 925 | if (v->flags & MIFF_REGISTER) |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 926 | mrt->mroute_reg_vif_num = vifi; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 927 | #endif |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 928 | if (vifi + 1 > mrt->maxvif) |
| 929 | mrt->maxvif = vifi + 1; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 930 | write_unlock_bh(&mrt_lock); |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 931 | call_ip6mr_vif_entry_notifiers(net, FIB_EVENT_VIF_ADD, |
| 932 | v, vifi, mrt->id); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 933 | return 0; |
| 934 | } |
| 935 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 936 | static struct mfc6_cache *ip6mr_cache_find(struct mr_table *mrt, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 937 | const struct in6_addr *origin, |
| 938 | const struct in6_addr *mcastgrp) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 939 | { |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 940 | struct mfc6_cache_cmp_arg arg = { |
| 941 | .mf6c_origin = *origin, |
| 942 | .mf6c_mcastgrp = *mcastgrp, |
| 943 | }; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 944 | |
Yuval Mintz | 845c9a7 | 2018-02-28 23:29:35 +0200 | [diff] [blame] | 945 | return mr_mfc_find(mrt, &arg); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | /* Look for a (*,G) entry */ |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 949 | static struct mfc6_cache *ip6mr_cache_find_any(struct mr_table *mrt, |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 950 | struct in6_addr *mcastgrp, |
| 951 | mifi_t mifi) |
| 952 | { |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 953 | struct mfc6_cache_cmp_arg arg = { |
| 954 | .mf6c_origin = in6addr_any, |
| 955 | .mf6c_mcastgrp = *mcastgrp, |
| 956 | }; |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 957 | |
| 958 | if (ipv6_addr_any(mcastgrp)) |
Yuval Mintz | 845c9a7 | 2018-02-28 23:29:35 +0200 | [diff] [blame] | 959 | return mr_mfc_find_any_parent(mrt, mifi); |
| 960 | return mr_mfc_find_any(mrt, mifi, &arg); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 961 | } |
| 962 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 963 | /* Look for a (S,G,iif) entry if parent != -1 */ |
| 964 | static struct mfc6_cache * |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 965 | ip6mr_cache_find_parent(struct mr_table *mrt, |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 966 | const struct in6_addr *origin, |
| 967 | const struct in6_addr *mcastgrp, |
| 968 | int parent) |
| 969 | { |
| 970 | struct mfc6_cache_cmp_arg arg = { |
| 971 | .mf6c_origin = *origin, |
| 972 | .mf6c_mcastgrp = *mcastgrp, |
| 973 | }; |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 974 | |
Yuval Mintz | 845c9a7 | 2018-02-28 23:29:35 +0200 | [diff] [blame] | 975 | return mr_mfc_find_parent(mrt, &arg, parent); |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 976 | } |
| 977 | |
Yuval Mintz | 845c9a7 | 2018-02-28 23:29:35 +0200 | [diff] [blame] | 978 | /* Allocate a multicast cache entry */ |
Patrick McHardy | b5aa30b | 2010-05-11 14:40:50 +0200 | [diff] [blame] | 979 | static struct mfc6_cache *ip6mr_cache_alloc(void) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 980 | { |
Joe Perches | 36cbac5 | 2008-12-03 22:27:25 -0800 | [diff] [blame] | 981 | struct mfc6_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 982 | if (!c) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 983 | return NULL; |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 984 | c->_c.mfc_un.res.last_assert = jiffies - MFC_ASSERT_THRESH - 1; |
| 985 | c->_c.mfc_un.res.minvif = MAXMIFS; |
Yuval Mintz | 8c13af2 | 2018-03-26 15:01:36 +0300 | [diff] [blame] | 986 | c->_c.free = ip6mr_cache_free_rcu; |
| 987 | refcount_set(&c->_c.mfc_un.res.refcount, 1); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 988 | return c; |
| 989 | } |
| 990 | |
Patrick McHardy | b5aa30b | 2010-05-11 14:40:50 +0200 | [diff] [blame] | 991 | static struct mfc6_cache *ip6mr_cache_alloc_unres(void) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 992 | { |
Joe Perches | 36cbac5 | 2008-12-03 22:27:25 -0800 | [diff] [blame] | 993 | struct mfc6_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 994 | if (!c) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 995 | return NULL; |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 996 | skb_queue_head_init(&c->_c.mfc_un.unres.unresolved); |
| 997 | c->_c.mfc_un.unres.expires = jiffies + 10 * HZ; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 998 | return c; |
| 999 | } |
| 1000 | |
| 1001 | /* |
| 1002 | * A cache entry has gone into a resolved state from queued |
| 1003 | */ |
| 1004 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1005 | static void ip6mr_cache_resolve(struct net *net, struct mr_table *mrt, |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1006 | struct mfc6_cache *uc, struct mfc6_cache *c) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1007 | { |
| 1008 | struct sk_buff *skb; |
| 1009 | |
| 1010 | /* |
| 1011 | * Play the pending entries through our router |
| 1012 | */ |
| 1013 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1014 | while ((skb = __skb_dequeue(&uc->_c.mfc_un.unres.unresolved))) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1015 | if (ipv6_hdr(skb)->version == 0) { |
Johannes Berg | af72868 | 2017-06-16 14:29:22 +0200 | [diff] [blame] | 1016 | struct nlmsghdr *nlh = skb_pull(skb, |
| 1017 | sizeof(struct ipv6hdr)); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1018 | |
Yuval Mintz | 7b0db85 | 2018-02-28 23:29:39 +0200 | [diff] [blame] | 1019 | if (mr_fill_mroute(mrt, skb, &c->_c, |
| 1020 | nlmsg_data(nlh)) > 0) { |
YOSHIFUJI Hideaki | 549e028 | 2008-04-05 22:17:39 +0900 | [diff] [blame] | 1021 | nlh->nlmsg_len = skb_tail_pointer(skb) - (u8 *)nlh; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1022 | } else { |
| 1023 | nlh->nlmsg_type = NLMSG_ERROR; |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 1024 | nlh->nlmsg_len = nlmsg_msg_size(sizeof(struct nlmsgerr)); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1025 | skb_trim(skb, nlh->nlmsg_len); |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 1026 | ((struct nlmsgerr *)nlmsg_data(nlh))->error = -EMSGSIZE; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1027 | } |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1028 | rtnl_unicast(skb, net, NETLINK_CB(skb).portid); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1029 | } else |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 1030 | ip6_mr_forward(net, mrt, skb->dev, skb, c); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1031 | } |
| 1032 | } |
| 1033 | |
| 1034 | /* |
Julien Gomes | dd12d15c | 2017-06-20 13:54:18 -0700 | [diff] [blame] | 1035 | * Bounce a cache query up to pim6sd and netlink. |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1036 | * |
| 1037 | * Called under mrt_lock. |
| 1038 | */ |
| 1039 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1040 | static int ip6mr_cache_report(struct mr_table *mrt, struct sk_buff *pkt, |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1041 | mifi_t mifi, int assert) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1042 | { |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1043 | struct sock *mroute6_sk; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1044 | struct sk_buff *skb; |
| 1045 | struct mrt6msg *msg; |
| 1046 | int ret; |
| 1047 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1048 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 1049 | if (assert == MRT6MSG_WHOLEPKT) |
| 1050 | skb = skb_realloc_headroom(pkt, -skb_network_offset(pkt) |
| 1051 | +sizeof(*msg)); |
| 1052 | else |
| 1053 | #endif |
| 1054 | skb = alloc_skb(sizeof(struct ipv6hdr) + sizeof(*msg), GFP_ATOMIC); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1055 | |
| 1056 | if (!skb) |
| 1057 | return -ENOBUFS; |
| 1058 | |
| 1059 | /* I suppose that internal messages |
| 1060 | * do not require checksums */ |
| 1061 | |
| 1062 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 1063 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1064 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 1065 | if (assert == MRT6MSG_WHOLEPKT) { |
| 1066 | /* Ugly, but we have no choice with this interface. |
| 1067 | Duplicate old header, fix length etc. |
| 1068 | And all this only to mangle msg->im6_msgtype and |
| 1069 | to set msg->im6_mbz to "mbz" :-) |
| 1070 | */ |
| 1071 | skb_push(skb, -skb_network_offset(pkt)); |
| 1072 | |
| 1073 | skb_push(skb, sizeof(*msg)); |
| 1074 | skb_reset_transport_header(skb); |
| 1075 | msg = (struct mrt6msg *)skb_transport_header(skb); |
| 1076 | msg->im6_mbz = 0; |
| 1077 | msg->im6_msgtype = MRT6MSG_WHOLEPKT; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1078 | msg->im6_mif = mrt->mroute_reg_vif_num; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1079 | msg->im6_pad = 0; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1080 | msg->im6_src = ipv6_hdr(pkt)->saddr; |
| 1081 | msg->im6_dst = ipv6_hdr(pkt)->daddr; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1082 | |
| 1083 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 1084 | } else |
| 1085 | #endif |
| 1086 | { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1087 | /* |
| 1088 | * Copy the IP header |
| 1089 | */ |
| 1090 | |
| 1091 | skb_put(skb, sizeof(struct ipv6hdr)); |
| 1092 | skb_reset_network_header(skb); |
| 1093 | skb_copy_to_linear_data(skb, ipv6_hdr(pkt), sizeof(struct ipv6hdr)); |
| 1094 | |
| 1095 | /* |
| 1096 | * Add our header |
| 1097 | */ |
| 1098 | skb_put(skb, sizeof(*msg)); |
| 1099 | skb_reset_transport_header(skb); |
| 1100 | msg = (struct mrt6msg *)skb_transport_header(skb); |
| 1101 | |
| 1102 | msg->im6_mbz = 0; |
| 1103 | msg->im6_msgtype = assert; |
Rami Rosen | 6ac7eb0 | 2008-04-10 12:40:10 +0300 | [diff] [blame] | 1104 | msg->im6_mif = mifi; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1105 | msg->im6_pad = 0; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1106 | msg->im6_src = ipv6_hdr(pkt)->saddr; |
| 1107 | msg->im6_dst = ipv6_hdr(pkt)->daddr; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1108 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 1109 | skb_dst_set(skb, dst_clone(skb_dst(pkt))); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1110 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1111 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1112 | |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1113 | rcu_read_lock(); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1114 | mroute6_sk = rcu_dereference(mrt->mroute_sk); |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1115 | if (!mroute6_sk) { |
| 1116 | rcu_read_unlock(); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1117 | kfree_skb(skb); |
| 1118 | return -EINVAL; |
| 1119 | } |
| 1120 | |
Julien Gomes | dd12d15c | 2017-06-20 13:54:18 -0700 | [diff] [blame] | 1121 | mrt6msg_netlink_event(mrt, skb); |
| 1122 | |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1123 | /* Deliver to user space multicast routing algorithms */ |
| 1124 | ret = sock_queue_rcv_skb(mroute6_sk, skb); |
| 1125 | rcu_read_unlock(); |
Benjamin Thery | bd91b8b | 2008-12-10 16:07:08 -0800 | [diff] [blame] | 1126 | if (ret < 0) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 1127 | net_warn_ratelimited("mroute6: pending queue full, dropping entries\n"); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1128 | kfree_skb(skb); |
| 1129 | } |
| 1130 | |
| 1131 | return ret; |
| 1132 | } |
| 1133 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1134 | /* Queue a packet for resolution. It gets locked cache entry! */ |
| 1135 | static int ip6mr_cache_unresolved(struct mr_table *mrt, mifi_t mifi, |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 1136 | struct sk_buff *skb, struct net_device *dev) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1137 | { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1138 | struct mfc6_cache *c; |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1139 | bool found = false; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1140 | int err; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1141 | |
| 1142 | spin_lock_bh(&mfc_unres_lock); |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1143 | list_for_each_entry(c, &mrt->mfc_unres_queue, _c.list) { |
Patrick McHardy | c476efb | 2010-05-11 14:40:48 +0200 | [diff] [blame] | 1144 | if (ipv6_addr_equal(&c->mf6c_mcastgrp, &ipv6_hdr(skb)->daddr) && |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1145 | ipv6_addr_equal(&c->mf6c_origin, &ipv6_hdr(skb)->saddr)) { |
| 1146 | found = true; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1147 | break; |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1148 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1149 | } |
| 1150 | |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1151 | if (!found) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1152 | /* |
| 1153 | * Create a new entry if allowable |
| 1154 | */ |
| 1155 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1156 | if (atomic_read(&mrt->cache_resolve_queue_len) >= 10 || |
Patrick McHardy | b5aa30b | 2010-05-11 14:40:50 +0200 | [diff] [blame] | 1157 | (c = ip6mr_cache_alloc_unres()) == NULL) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1158 | spin_unlock_bh(&mfc_unres_lock); |
| 1159 | |
| 1160 | kfree_skb(skb); |
| 1161 | return -ENOBUFS; |
| 1162 | } |
| 1163 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1164 | /* Fill in the new cache entry */ |
| 1165 | c->_c.mfc_parent = -1; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1166 | c->mf6c_origin = ipv6_hdr(skb)->saddr; |
| 1167 | c->mf6c_mcastgrp = ipv6_hdr(skb)->daddr; |
| 1168 | |
| 1169 | /* |
| 1170 | * Reflect first query at pim6sd |
| 1171 | */ |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1172 | err = ip6mr_cache_report(mrt, skb, mifi, MRT6MSG_NOCACHE); |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 1173 | if (err < 0) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1174 | /* If the report failed throw the cache entry |
| 1175 | out - Brad Parker |
| 1176 | */ |
| 1177 | spin_unlock_bh(&mfc_unres_lock); |
| 1178 | |
Benjamin Thery | 58701ad | 2008-12-10 16:22:34 -0800 | [diff] [blame] | 1179 | ip6mr_cache_free(c); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1180 | kfree_skb(skb); |
| 1181 | return err; |
| 1182 | } |
| 1183 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1184 | atomic_inc(&mrt->cache_resolve_queue_len); |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1185 | list_add(&c->_c.list, &mrt->mfc_unres_queue); |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 1186 | mr6_netlink_event(mrt, c, RTM_NEWROUTE); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1187 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1188 | ipmr_do_expire_process(mrt); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1189 | } |
| 1190 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1191 | /* See if we can append the packet */ |
| 1192 | if (c->_c.mfc_un.unres.unresolved.qlen > 3) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1193 | kfree_skb(skb); |
| 1194 | err = -ENOBUFS; |
| 1195 | } else { |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 1196 | if (dev) { |
| 1197 | skb->dev = dev; |
| 1198 | skb->skb_iif = dev->ifindex; |
| 1199 | } |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1200 | skb_queue_tail(&c->_c.mfc_un.unres.unresolved, skb); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1201 | err = 0; |
| 1202 | } |
| 1203 | |
| 1204 | spin_unlock_bh(&mfc_unres_lock); |
| 1205 | return err; |
| 1206 | } |
| 1207 | |
| 1208 | /* |
| 1209 | * MFC6 cache manipulation by user space |
| 1210 | */ |
| 1211 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1212 | static int ip6mr_mfc_delete(struct mr_table *mrt, struct mf6cctl *mfc, |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1213 | int parent) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1214 | { |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1215 | struct mfc6_cache *c; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1216 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1217 | /* The entries are added/deleted only under RTNL */ |
| 1218 | rcu_read_lock(); |
| 1219 | c = ip6mr_cache_find_parent(mrt, &mfc->mf6cc_origin.sin6_addr, |
| 1220 | &mfc->mf6cc_mcastgrp.sin6_addr, parent); |
| 1221 | rcu_read_unlock(); |
| 1222 | if (!c) |
| 1223 | return -ENOENT; |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1224 | rhltable_remove(&mrt->mfc_hash, &c->_c.mnode, ip6mr_rht_params); |
| 1225 | list_del_rcu(&c->_c.list); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1226 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1227 | call_ip6mr_mfc_entry_notifiers(read_pnet(&mrt->net), |
| 1228 | FIB_EVENT_ENTRY_DEL, c, mrt->id); |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1229 | mr6_netlink_event(mrt, c, RTM_DELROUTE); |
Yuval Mintz | 8c13af2 | 2018-03-26 15:01:36 +0300 | [diff] [blame] | 1230 | mr_cache_put(&c->_c); |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1231 | return 0; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1232 | } |
| 1233 | |
| 1234 | static int ip6mr_device_event(struct notifier_block *this, |
| 1235 | unsigned long event, void *ptr) |
| 1236 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 1237 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 1238 | struct net *net = dev_net(dev); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1239 | struct mr_table *mrt; |
Yuval Mintz | 6853f21 | 2018-02-28 23:29:29 +0200 | [diff] [blame] | 1240 | struct vif_device *v; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1241 | int ct; |
| 1242 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1243 | if (event != NETDEV_UNREGISTER) |
| 1244 | return NOTIFY_DONE; |
| 1245 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1246 | ip6mr_for_each_table(mrt, net) { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1247 | v = &mrt->vif_table[0]; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1248 | for (ct = 0; ct < mrt->maxvif; ct++, v++) { |
| 1249 | if (v->dev == dev) |
Nikolay Aleksandrov | 723b929 | 2017-04-21 20:42:16 +0300 | [diff] [blame] | 1250 | mif6_delete(mrt, ct, 1, NULL); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1251 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1252 | } |
Eric Dumazet | c871e66 | 2009-10-28 04:48:11 +0000 | [diff] [blame] | 1253 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1254 | return NOTIFY_DONE; |
| 1255 | } |
| 1256 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1257 | static unsigned int ip6mr_seq_read(struct net *net) |
| 1258 | { |
| 1259 | ASSERT_RTNL(); |
| 1260 | |
| 1261 | return net->ipv6.ipmr_seq + ip6mr_rules_seq_read(net); |
| 1262 | } |
| 1263 | |
| 1264 | static int ip6mr_dump(struct net *net, struct notifier_block *nb) |
| 1265 | { |
| 1266 | return mr_dump(net, nb, RTNL_FAMILY_IP6MR, ip6mr_rules_dump, |
| 1267 | ip6mr_mr_table_iter, &mrt_lock); |
| 1268 | } |
| 1269 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1270 | static struct notifier_block ip6_mr_notifier = { |
| 1271 | .notifier_call = ip6mr_device_event |
| 1272 | }; |
| 1273 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1274 | static const struct fib_notifier_ops ip6mr_notifier_ops_template = { |
| 1275 | .family = RTNL_FAMILY_IP6MR, |
| 1276 | .fib_seq_read = ip6mr_seq_read, |
| 1277 | .fib_dump = ip6mr_dump, |
| 1278 | .owner = THIS_MODULE, |
| 1279 | }; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1280 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1281 | static int __net_init ip6mr_notifier_init(struct net *net) |
| 1282 | { |
| 1283 | struct fib_notifier_ops *ops; |
| 1284 | |
| 1285 | net->ipv6.ipmr_seq = 0; |
| 1286 | |
| 1287 | ops = fib_notifier_ops_register(&ip6mr_notifier_ops_template, net); |
| 1288 | if (IS_ERR(ops)) |
| 1289 | return PTR_ERR(ops); |
| 1290 | |
| 1291 | net->ipv6.ip6mr_notifier_ops = ops; |
| 1292 | |
| 1293 | return 0; |
| 1294 | } |
| 1295 | |
| 1296 | static void __net_exit ip6mr_notifier_exit(struct net *net) |
| 1297 | { |
| 1298 | fib_notifier_ops_unregister(net->ipv6.ip6mr_notifier_ops); |
| 1299 | net->ipv6.ip6mr_notifier_ops = NULL; |
| 1300 | } |
| 1301 | |
| 1302 | /* Setup for IP multicast routing */ |
Benjamin Thery | 4e16880 | 2008-12-10 16:15:08 -0800 | [diff] [blame] | 1303 | static int __net_init ip6mr_net_init(struct net *net) |
| 1304 | { |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1305 | int err; |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1306 | |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1307 | err = ip6mr_notifier_init(net); |
| 1308 | if (err) |
| 1309 | return err; |
| 1310 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1311 | err = ip6mr_rules_init(net); |
| 1312 | if (err < 0) |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1313 | goto ip6mr_rules_fail; |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1314 | |
| 1315 | #ifdef CONFIG_PROC_FS |
| 1316 | err = -ENOMEM; |
Christoph Hellwig | c350637 | 2018-04-10 19:42:55 +0200 | [diff] [blame] | 1317 | if (!proc_create_net("ip6_mr_vif", 0, net->proc_net, &ip6mr_vif_seq_ops, |
| 1318 | sizeof(struct mr_vif_iter))) |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1319 | goto proc_vif_fail; |
Christoph Hellwig | c350637 | 2018-04-10 19:42:55 +0200 | [diff] [blame] | 1320 | if (!proc_create_net("ip6_mr_cache", 0, net->proc_net, &ipmr_mfc_seq_ops, |
| 1321 | sizeof(struct mr_mfc_iter))) |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1322 | goto proc_cache_fail; |
| 1323 | #endif |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1324 | |
Benjamin Thery | 4a6258a | 2008-12-10 16:24:07 -0800 | [diff] [blame] | 1325 | return 0; |
| 1326 | |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1327 | #ifdef CONFIG_PROC_FS |
| 1328 | proc_cache_fail: |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 1329 | remove_proc_entry("ip6_mr_vif", net->proc_net); |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1330 | proc_vif_fail: |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1331 | ip6mr_rules_exit(net); |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1332 | #endif |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1333 | ip6mr_rules_fail: |
| 1334 | ip6mr_notifier_exit(net); |
Benjamin Thery | 4e16880 | 2008-12-10 16:15:08 -0800 | [diff] [blame] | 1335 | return err; |
| 1336 | } |
| 1337 | |
| 1338 | static void __net_exit ip6mr_net_exit(struct net *net) |
| 1339 | { |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1340 | #ifdef CONFIG_PROC_FS |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 1341 | remove_proc_entry("ip6_mr_cache", net->proc_net); |
| 1342 | remove_proc_entry("ip6_mr_vif", net->proc_net); |
Benjamin Thery | 8b90fc7 | 2008-12-10 16:29:48 -0800 | [diff] [blame] | 1343 | #endif |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1344 | ip6mr_rules_exit(net); |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1345 | ip6mr_notifier_exit(net); |
Benjamin Thery | 4e16880 | 2008-12-10 16:15:08 -0800 | [diff] [blame] | 1346 | } |
| 1347 | |
| 1348 | static struct pernet_operations ip6mr_net_ops = { |
| 1349 | .init = ip6mr_net_init, |
| 1350 | .exit = ip6mr_net_exit, |
| 1351 | }; |
| 1352 | |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1353 | int __init ip6_mr_init(void) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1354 | { |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1355 | int err; |
| 1356 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1357 | mrt_cachep = kmem_cache_create("ip6_mrt_cache", |
| 1358 | sizeof(struct mfc6_cache), |
| 1359 | 0, SLAB_HWCACHE_ALIGN, |
| 1360 | NULL); |
| 1361 | if (!mrt_cachep) |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1362 | return -ENOMEM; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1363 | |
Benjamin Thery | 4e16880 | 2008-12-10 16:15:08 -0800 | [diff] [blame] | 1364 | err = register_pernet_subsys(&ip6mr_net_ops); |
| 1365 | if (err) |
| 1366 | goto reg_pernet_fail; |
| 1367 | |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1368 | err = register_netdevice_notifier(&ip6_mr_notifier); |
| 1369 | if (err) |
| 1370 | goto reg_notif_fail; |
Tom Goff | 403dbb97 | 2009-06-14 03:16:13 -0700 | [diff] [blame] | 1371 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 1372 | if (inet6_add_protocol(&pim6_protocol, IPPROTO_PIM) < 0) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 1373 | pr_err("%s: can't add PIM protocol\n", __func__); |
Tom Goff | 403dbb97 | 2009-06-14 03:16:13 -0700 | [diff] [blame] | 1374 | err = -EAGAIN; |
| 1375 | goto add_proto_fail; |
| 1376 | } |
| 1377 | #endif |
Florian Westphal | a3fde2a | 2017-12-04 19:19:18 +0100 | [diff] [blame] | 1378 | err = rtnl_register_module(THIS_MODULE, RTNL_FAMILY_IP6MR, RTM_GETROUTE, |
| 1379 | NULL, ip6mr_rtm_dumproute, 0); |
| 1380 | if (err == 0) |
| 1381 | return 0; |
| 1382 | |
Tom Goff | 403dbb97 | 2009-06-14 03:16:13 -0700 | [diff] [blame] | 1383 | #ifdef CONFIG_IPV6_PIMSM_V2 |
Florian Westphal | a3fde2a | 2017-12-04 19:19:18 +0100 | [diff] [blame] | 1384 | inet6_del_protocol(&pim6_protocol, IPPROTO_PIM); |
Tom Goff | 403dbb97 | 2009-06-14 03:16:13 -0700 | [diff] [blame] | 1385 | add_proto_fail: |
| 1386 | unregister_netdevice_notifier(&ip6_mr_notifier); |
| 1387 | #endif |
Benjamin Thery | 87b30a6 | 2008-11-10 16:34:11 -0800 | [diff] [blame] | 1388 | reg_notif_fail: |
Benjamin Thery | 4e16880 | 2008-12-10 16:15:08 -0800 | [diff] [blame] | 1389 | unregister_pernet_subsys(&ip6mr_net_ops); |
| 1390 | reg_pernet_fail: |
Benjamin Thery | 87b30a6 | 2008-11-10 16:34:11 -0800 | [diff] [blame] | 1391 | kmem_cache_destroy(mrt_cachep); |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1392 | return err; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1393 | } |
| 1394 | |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1395 | void ip6_mr_cleanup(void) |
| 1396 | { |
Duan Jiong | ffb1388 | 2014-11-19 09:35:39 +0800 | [diff] [blame] | 1397 | rtnl_unregister(RTNL_FAMILY_IP6MR, RTM_GETROUTE); |
| 1398 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 1399 | inet6_del_protocol(&pim6_protocol, IPPROTO_PIM); |
| 1400 | #endif |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1401 | unregister_netdevice_notifier(&ip6_mr_notifier); |
Benjamin Thery | 4e16880 | 2008-12-10 16:15:08 -0800 | [diff] [blame] | 1402 | unregister_pernet_subsys(&ip6mr_net_ops); |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame] | 1403 | kmem_cache_destroy(mrt_cachep); |
| 1404 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1405 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1406 | static int ip6mr_mfc_add(struct net *net, struct mr_table *mrt, |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1407 | struct mf6cctl *mfc, int mrtsock, int parent) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1408 | { |
Rami Rosen | 6ac7eb0 | 2008-04-10 12:40:10 +0300 | [diff] [blame] | 1409 | unsigned char ttls[MAXMIFS]; |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1410 | struct mfc6_cache *uc, *c; |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1411 | struct mr_mfc *_uc; |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1412 | bool found; |
| 1413 | int i, err; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1414 | |
Patrick McHardy | a50436f2 | 2010-03-17 06:04:14 +0000 | [diff] [blame] | 1415 | if (mfc->mf6cc_parent >= MAXMIFS) |
| 1416 | return -ENFILE; |
| 1417 | |
Rami Rosen | 6ac7eb0 | 2008-04-10 12:40:10 +0300 | [diff] [blame] | 1418 | memset(ttls, 255, MAXMIFS); |
| 1419 | for (i = 0; i < MAXMIFS; i++) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1420 | if (IF_ISSET(i, &mfc->mf6cc_ifset)) |
| 1421 | ttls[i] = 1; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1422 | } |
| 1423 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1424 | /* The entries are added/deleted only under RTNL */ |
| 1425 | rcu_read_lock(); |
| 1426 | c = ip6mr_cache_find_parent(mrt, &mfc->mf6cc_origin.sin6_addr, |
| 1427 | &mfc->mf6cc_mcastgrp.sin6_addr, parent); |
| 1428 | rcu_read_unlock(); |
| 1429 | if (c) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1430 | write_lock_bh(&mrt_lock); |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1431 | c->_c.mfc_parent = mfc->mf6cc_parent; |
| 1432 | ip6mr_update_thresholds(mrt, &c->_c, ttls); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1433 | if (!mrtsock) |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1434 | c->_c.mfc_flags |= MFC_STATIC; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1435 | write_unlock_bh(&mrt_lock); |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1436 | call_ip6mr_mfc_entry_notifiers(net, FIB_EVENT_ENTRY_REPLACE, |
| 1437 | c, mrt->id); |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 1438 | mr6_netlink_event(mrt, c, RTM_NEWROUTE); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1439 | return 0; |
| 1440 | } |
| 1441 | |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1442 | if (!ipv6_addr_any(&mfc->mf6cc_mcastgrp.sin6_addr) && |
| 1443 | !ipv6_addr_is_multicast(&mfc->mf6cc_mcastgrp.sin6_addr)) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1444 | return -EINVAL; |
| 1445 | |
Patrick McHardy | b5aa30b | 2010-05-11 14:40:50 +0200 | [diff] [blame] | 1446 | c = ip6mr_cache_alloc(); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1447 | if (!c) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1448 | return -ENOMEM; |
| 1449 | |
| 1450 | c->mf6c_origin = mfc->mf6cc_origin.sin6_addr; |
| 1451 | c->mf6c_mcastgrp = mfc->mf6cc_mcastgrp.sin6_addr; |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1452 | c->_c.mfc_parent = mfc->mf6cc_parent; |
| 1453 | ip6mr_update_thresholds(mrt, &c->_c, ttls); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1454 | if (!mrtsock) |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1455 | c->_c.mfc_flags |= MFC_STATIC; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1456 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1457 | err = rhltable_insert_key(&mrt->mfc_hash, &c->cmparg, &c->_c.mnode, |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1458 | ip6mr_rht_params); |
| 1459 | if (err) { |
| 1460 | pr_err("ip6mr: rhtable insert error %d\n", err); |
| 1461 | ip6mr_cache_free(c); |
| 1462 | return err; |
| 1463 | } |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1464 | list_add_tail_rcu(&c->_c.list, &mrt->mfc_cache_list); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1465 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1466 | /* Check to see if we resolved a queued list. If so we |
| 1467 | * need to send on the frames and tidy up. |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1468 | */ |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1469 | found = false; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1470 | spin_lock_bh(&mfc_unres_lock); |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1471 | list_for_each_entry(_uc, &mrt->mfc_unres_queue, list) { |
| 1472 | uc = (struct mfc6_cache *)_uc; |
Patrick McHardy | c476efb | 2010-05-11 14:40:48 +0200 | [diff] [blame] | 1473 | if (ipv6_addr_equal(&uc->mf6c_origin, &c->mf6c_origin) && |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1474 | ipv6_addr_equal(&uc->mf6c_mcastgrp, &c->mf6c_mcastgrp)) { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1475 | list_del(&_uc->list); |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1476 | atomic_dec(&mrt->cache_resolve_queue_len); |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1477 | found = true; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1478 | break; |
| 1479 | } |
| 1480 | } |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1481 | if (list_empty(&mrt->mfc_unres_queue)) |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1482 | del_timer(&mrt->ipmr_expire_timer); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1483 | spin_unlock_bh(&mfc_unres_lock); |
| 1484 | |
Patrick McHardy | f30a7784 | 2010-05-11 14:40:51 +0200 | [diff] [blame] | 1485 | if (found) { |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1486 | ip6mr_cache_resolve(net, mrt, uc, c); |
Benjamin Thery | 58701ad | 2008-12-10 16:22:34 -0800 | [diff] [blame] | 1487 | ip6mr_cache_free(uc); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1488 | } |
Yuval Mintz | 088aa3e | 2018-03-26 15:01:34 +0300 | [diff] [blame] | 1489 | call_ip6mr_mfc_entry_notifiers(net, FIB_EVENT_ENTRY_ADD, |
| 1490 | c, mrt->id); |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 1491 | mr6_netlink_event(mrt, c, RTM_NEWROUTE); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1492 | return 0; |
| 1493 | } |
| 1494 | |
| 1495 | /* |
| 1496 | * Close the multicast socket, and clear the vif tables etc |
| 1497 | */ |
| 1498 | |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 1499 | static void mroute_clean_tables(struct mr_table *mrt, int flags) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1500 | { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1501 | struct mr_mfc *c, *tmp; |
Eric Dumazet | c871e66 | 2009-10-28 04:48:11 +0000 | [diff] [blame] | 1502 | LIST_HEAD(list); |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1503 | int i; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1504 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1505 | /* Shut down all active vif entries */ |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 1506 | if (flags & (MRT6_FLUSH_MIFS | MRT6_FLUSH_MIFS_STATIC)) { |
| 1507 | for (i = 0; i < mrt->maxvif; i++) { |
| 1508 | if (((mrt->vif_table[i].flags & VIFF_STATIC) && |
| 1509 | !(flags & MRT6_FLUSH_MIFS_STATIC)) || |
| 1510 | (!(mrt->vif_table[i].flags & VIFF_STATIC) && !(flags & MRT6_FLUSH_MIFS))) |
| 1511 | continue; |
| 1512 | mif6_delete(mrt, i, 0, &list); |
| 1513 | } |
| 1514 | unregister_netdevice_many(&list); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1515 | } |
| 1516 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1517 | /* Wipe the cache */ |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 1518 | if (flags & (MRT6_FLUSH_MFC | MRT6_FLUSH_MFC_STATIC)) { |
| 1519 | list_for_each_entry_safe(c, tmp, &mrt->mfc_cache_list, list) { |
| 1520 | if (((c->mfc_flags & MFC_STATIC) && !(flags & MRT6_FLUSH_MFC_STATIC)) || |
| 1521 | (!(c->mfc_flags & MFC_STATIC) && !(flags & MRT6_FLUSH_MFC))) |
| 1522 | continue; |
| 1523 | rhltable_remove(&mrt->mfc_hash, &c->mnode, ip6mr_rht_params); |
| 1524 | list_del_rcu(&c->list); |
| 1525 | call_ip6mr_mfc_entry_notifiers(read_pnet(&mrt->net), |
| 1526 | FIB_EVENT_ENTRY_DEL, |
| 1527 | (struct mfc6_cache *)c, mrt->id); |
| 1528 | mr6_netlink_event(mrt, (struct mfc6_cache *)c, RTM_DELROUTE); |
| 1529 | mr_cache_put(c); |
| 1530 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1531 | } |
| 1532 | |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 1533 | if (flags & MRT6_FLUSH_MFC) { |
| 1534 | if (atomic_read(&mrt->cache_resolve_queue_len) != 0) { |
| 1535 | spin_lock_bh(&mfc_unres_lock); |
| 1536 | list_for_each_entry_safe(c, tmp, &mrt->mfc_unres_queue, list) { |
| 1537 | list_del(&c->list); |
| 1538 | mr6_netlink_event(mrt, (struct mfc6_cache *)c, |
| 1539 | RTM_DELROUTE); |
| 1540 | ip6mr_destroy_unres(mrt, (struct mfc6_cache *)c); |
| 1541 | } |
| 1542 | spin_unlock_bh(&mfc_unres_lock); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1543 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1544 | } |
| 1545 | } |
| 1546 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1547 | static int ip6mr_sk_init(struct mr_table *mrt, struct sock *sk) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1548 | { |
| 1549 | int err = 0; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 1550 | struct net *net = sock_net(sk); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1551 | |
| 1552 | rtnl_lock(); |
| 1553 | write_lock_bh(&mrt_lock); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1554 | if (rtnl_dereference(mrt->mroute_sk)) { |
Eric Dumazet | 927265b | 2016-07-08 05:46:04 +0200 | [diff] [blame] | 1555 | err = -EADDRINUSE; |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1556 | } else { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1557 | rcu_assign_pointer(mrt->mroute_sk, sk); |
Eric Dumazet | a366e30 | 2018-03-07 08:43:19 -0800 | [diff] [blame] | 1558 | sock_set_flag(sk, SOCK_RCU_FREE); |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1559 | net->ipv6.devconf_all->mc_forwarding++; |
Eric Dumazet | 927265b | 2016-07-08 05:46:04 +0200 | [diff] [blame] | 1560 | } |
| 1561 | write_unlock_bh(&mrt_lock); |
| 1562 | |
| 1563 | if (!err) |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 1564 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
| 1565 | NETCONFA_MC_FORWARDING, |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 1566 | NETCONFA_IFINDEX_ALL, |
| 1567 | net->ipv6.devconf_all); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1568 | rtnl_unlock(); |
| 1569 | |
| 1570 | return err; |
| 1571 | } |
| 1572 | |
| 1573 | int ip6mr_sk_done(struct sock *sk) |
| 1574 | { |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1575 | int err = -EACCES; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 1576 | struct net *net = sock_net(sk); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1577 | struct mr_table *mrt; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1578 | |
Francesco Ruggeri | 338d182 | 2017-11-08 11:23:46 -0800 | [diff] [blame] | 1579 | if (sk->sk_type != SOCK_RAW || |
| 1580 | inet_sk(sk)->inet_num != IPPROTO_ICMPV6) |
| 1581 | return err; |
| 1582 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1583 | rtnl_lock(); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1584 | ip6mr_for_each_table(mrt, net) { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1585 | if (sk == rtnl_dereference(mrt->mroute_sk)) { |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1586 | write_lock_bh(&mrt_lock); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1587 | RCU_INIT_POINTER(mrt->mroute_sk, NULL); |
Eric Dumazet | a366e30 | 2018-03-07 08:43:19 -0800 | [diff] [blame] | 1588 | /* Note that mroute_sk had SOCK_RCU_FREE set, |
| 1589 | * so the RCU grace period before sk freeing |
| 1590 | * is guaranteed by sk_destruct() |
| 1591 | */ |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1592 | net->ipv6.devconf_all->mc_forwarding--; |
Eric Dumazet | 927265b | 2016-07-08 05:46:04 +0200 | [diff] [blame] | 1593 | write_unlock_bh(&mrt_lock); |
David Ahern | 85b3daa | 2017-03-28 14:28:04 -0700 | [diff] [blame] | 1594 | inet6_netconf_notify_devconf(net, RTM_NEWNETCONF, |
Nicolas Dichtel | d67b8c6 | 2012-12-04 01:13:35 +0000 | [diff] [blame] | 1595 | NETCONFA_MC_FORWARDING, |
| 1596 | NETCONFA_IFINDEX_ALL, |
| 1597 | net->ipv6.devconf_all); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1598 | |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 1599 | mroute_clean_tables(mrt, MRT6_FLUSH_MIFS | MRT6_FLUSH_MFC); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1600 | err = 0; |
| 1601 | break; |
| 1602 | } |
| 1603 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1604 | rtnl_unlock(); |
| 1605 | |
| 1606 | return err; |
| 1607 | } |
| 1608 | |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1609 | bool mroute6_is_socket(struct net *net, struct sk_buff *skb) |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1610 | { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1611 | struct mr_table *mrt; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1612 | struct flowi6 fl6 = { |
Julian Anastasov | e374c61 | 2014-04-28 10:51:56 +0300 | [diff] [blame] | 1613 | .flowi6_iif = skb->skb_iif ? : LOOPBACK_IFINDEX, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1614 | .flowi6_oif = skb->dev->ifindex, |
| 1615 | .flowi6_mark = skb->mark, |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1616 | }; |
| 1617 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1618 | if (ip6mr_fib_lookup(net, &fl6, &mrt) < 0) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1619 | return NULL; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1620 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1621 | return rcu_access_pointer(mrt->mroute_sk); |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1622 | } |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1623 | EXPORT_SYMBOL(mroute6_is_socket); |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1624 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1625 | /* |
| 1626 | * Socket options and virtual interface manipulation. The whole |
| 1627 | * virtual interface system is a complete heap, but unfortunately |
| 1628 | * that's how BSD mrouted happens to think. Maybe one day with a proper |
| 1629 | * MOSPF/PIM router set up we can clean this up. |
| 1630 | */ |
| 1631 | |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 1632 | int ip6_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsigned int optlen) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1633 | { |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1634 | int ret, parent = 0; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1635 | struct mif6ctl vif; |
| 1636 | struct mf6cctl mfc; |
| 1637 | mifi_t mifi; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 1638 | struct net *net = sock_net(sk); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1639 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1640 | |
Xin Long | 99253eb | 2017-02-24 16:29:06 +0800 | [diff] [blame] | 1641 | if (sk->sk_type != SOCK_RAW || |
| 1642 | inet_sk(sk)->inet_num != IPPROTO_ICMPV6) |
| 1643 | return -EOPNOTSUPP; |
| 1644 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1645 | mrt = ip6mr_get_table(net, raw6_sk(sk)->ip6mr_table ? : RT6_TABLE_DFLT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1646 | if (!mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1647 | return -ENOENT; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1648 | |
| 1649 | if (optname != MRT6_INIT) { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1650 | if (sk != rcu_access_pointer(mrt->mroute_sk) && |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1651 | !ns_capable(net->user_ns, CAP_NET_ADMIN)) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1652 | return -EACCES; |
| 1653 | } |
| 1654 | |
| 1655 | switch (optname) { |
| 1656 | case MRT6_INIT: |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1657 | if (optlen < sizeof(int)) |
| 1658 | return -EINVAL; |
| 1659 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1660 | return ip6mr_sk_init(mrt, sk); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1661 | |
| 1662 | case MRT6_DONE: |
| 1663 | return ip6mr_sk_done(sk); |
| 1664 | |
| 1665 | case MRT6_ADD_MIF: |
| 1666 | if (optlen < sizeof(vif)) |
| 1667 | return -EINVAL; |
| 1668 | if (copy_from_user(&vif, optval, sizeof(vif))) |
| 1669 | return -EFAULT; |
Rami Rosen | 6ac7eb0 | 2008-04-10 12:40:10 +0300 | [diff] [blame] | 1670 | if (vif.mif6c_mifi >= MAXMIFS) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1671 | return -ENFILE; |
| 1672 | rtnl_lock(); |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1673 | ret = mif6_add(net, mrt, &vif, |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1674 | sk == rtnl_dereference(mrt->mroute_sk)); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1675 | rtnl_unlock(); |
| 1676 | return ret; |
| 1677 | |
| 1678 | case MRT6_DEL_MIF: |
| 1679 | if (optlen < sizeof(mifi_t)) |
| 1680 | return -EINVAL; |
| 1681 | if (copy_from_user(&mifi, optval, sizeof(mifi_t))) |
| 1682 | return -EFAULT; |
| 1683 | rtnl_lock(); |
Nikolay Aleksandrov | 723b929 | 2017-04-21 20:42:16 +0300 | [diff] [blame] | 1684 | ret = mif6_delete(mrt, mifi, 0, NULL); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1685 | rtnl_unlock(); |
| 1686 | return ret; |
| 1687 | |
| 1688 | /* |
| 1689 | * Manipulate the forwarding caches. These live |
| 1690 | * in a sort of kernel/user symbiosis. |
| 1691 | */ |
| 1692 | case MRT6_ADD_MFC: |
| 1693 | case MRT6_DEL_MFC: |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1694 | parent = -1; |
Gustavo A. R. Silva | 275757e6 | 2017-10-16 16:36:52 -0500 | [diff] [blame] | 1695 | /* fall through */ |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1696 | case MRT6_ADD_MFC_PROXY: |
| 1697 | case MRT6_DEL_MFC_PROXY: |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1698 | if (optlen < sizeof(mfc)) |
| 1699 | return -EINVAL; |
| 1700 | if (copy_from_user(&mfc, optval, sizeof(mfc))) |
| 1701 | return -EFAULT; |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1702 | if (parent == 0) |
| 1703 | parent = mfc.mf6cc_parent; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1704 | rtnl_lock(); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1705 | if (optname == MRT6_DEL_MFC || optname == MRT6_DEL_MFC_PROXY) |
| 1706 | ret = ip6mr_mfc_delete(mrt, &mfc, parent); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1707 | else |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 1708 | ret = ip6mr_mfc_add(net, mrt, &mfc, |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1709 | sk == |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1710 | rtnl_dereference(mrt->mroute_sk), |
Yuval Mintz | 8571ab4 | 2018-02-28 23:29:30 +0200 | [diff] [blame] | 1711 | parent); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1712 | rtnl_unlock(); |
| 1713 | return ret; |
| 1714 | |
Callum Sinclair | ca8d479 | 2019-02-18 10:07:52 +1300 | [diff] [blame] | 1715 | case MRT6_FLUSH: |
| 1716 | { |
| 1717 | int flags; |
| 1718 | |
| 1719 | if (optlen != sizeof(flags)) |
| 1720 | return -EINVAL; |
| 1721 | if (get_user(flags, (int __user *)optval)) |
| 1722 | return -EFAULT; |
| 1723 | rtnl_lock(); |
| 1724 | mroute_clean_tables(mrt, flags); |
| 1725 | rtnl_unlock(); |
| 1726 | return 0; |
| 1727 | } |
| 1728 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1729 | /* |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1730 | * Control PIM assert (to activate pim will activate assert) |
| 1731 | */ |
| 1732 | case MRT6_ASSERT: |
| 1733 | { |
| 1734 | int v; |
Joe Perches | 03f52a0 | 2012-11-25 18:26:34 +0000 | [diff] [blame] | 1735 | |
| 1736 | if (optlen != sizeof(v)) |
| 1737 | return -EINVAL; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1738 | if (get_user(v, (int __user *)optval)) |
| 1739 | return -EFAULT; |
Joe Perches | 53d6841 | 2012-11-25 09:35:30 +0000 | [diff] [blame] | 1740 | mrt->mroute_do_assert = v; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1741 | return 0; |
| 1742 | } |
| 1743 | |
| 1744 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 1745 | case MRT6_PIM: |
| 1746 | { |
YOSHIFUJI Hideaki | a9f83bf | 2008-04-10 15:41:28 +0900 | [diff] [blame] | 1747 | int v; |
Joe Perches | 03f52a0 | 2012-11-25 18:26:34 +0000 | [diff] [blame] | 1748 | |
| 1749 | if (optlen != sizeof(v)) |
| 1750 | return -EINVAL; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1751 | if (get_user(v, (int __user *)optval)) |
| 1752 | return -EFAULT; |
| 1753 | v = !!v; |
| 1754 | rtnl_lock(); |
| 1755 | ret = 0; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1756 | if (v != mrt->mroute_do_pim) { |
| 1757 | mrt->mroute_do_pim = v; |
| 1758 | mrt->mroute_do_assert = v; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1759 | } |
| 1760 | rtnl_unlock(); |
| 1761 | return ret; |
| 1762 | } |
| 1763 | |
| 1764 | #endif |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1765 | #ifdef CONFIG_IPV6_MROUTE_MULTIPLE_TABLES |
| 1766 | case MRT6_TABLE: |
| 1767 | { |
| 1768 | u32 v; |
| 1769 | |
| 1770 | if (optlen != sizeof(u32)) |
| 1771 | return -EINVAL; |
| 1772 | if (get_user(v, (u32 __user *)optval)) |
| 1773 | return -EFAULT; |
Dan Carpenter | 75356a8 | 2013-01-23 20:38:34 +0000 | [diff] [blame] | 1774 | /* "pim6reg%u" should not exceed 16 bytes (IFNAMSIZ) */ |
| 1775 | if (v != RT_TABLE_DEFAULT && v >= 100000000) |
| 1776 | return -EINVAL; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1777 | if (sk == rcu_access_pointer(mrt->mroute_sk)) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1778 | return -EBUSY; |
| 1779 | |
| 1780 | rtnl_lock(); |
| 1781 | ret = 0; |
Sabrina Dubroca | e783bb0 | 2018-06-05 15:02:00 +0200 | [diff] [blame] | 1782 | mrt = ip6mr_new_table(net, v); |
| 1783 | if (IS_ERR(mrt)) |
| 1784 | ret = PTR_ERR(mrt); |
Sabrina Dubroca | 848235e | 2018-06-05 15:01:59 +0200 | [diff] [blame] | 1785 | else |
| 1786 | raw6_sk(sk)->ip6mr_table = v; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1787 | rtnl_unlock(); |
| 1788 | return ret; |
| 1789 | } |
| 1790 | #endif |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1791 | /* |
Rami Rosen | 7d120c5 | 2008-04-23 14:35:13 +0300 | [diff] [blame] | 1792 | * Spurious command, or MRT6_VERSION which you cannot |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1793 | * set. |
| 1794 | */ |
| 1795 | default: |
| 1796 | return -ENOPROTOOPT; |
| 1797 | } |
| 1798 | } |
| 1799 | |
| 1800 | /* |
| 1801 | * Getsock opt support for the multicast routing system. |
| 1802 | */ |
| 1803 | |
| 1804 | int ip6_mroute_getsockopt(struct sock *sk, int optname, char __user *optval, |
| 1805 | int __user *optlen) |
| 1806 | { |
| 1807 | int olr; |
| 1808 | int val; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 1809 | struct net *net = sock_net(sk); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1810 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1811 | |
Xin Long | 99253eb | 2017-02-24 16:29:06 +0800 | [diff] [blame] | 1812 | if (sk->sk_type != SOCK_RAW || |
| 1813 | inet_sk(sk)->inet_num != IPPROTO_ICMPV6) |
| 1814 | return -EOPNOTSUPP; |
| 1815 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1816 | mrt = ip6mr_get_table(net, raw6_sk(sk)->ip6mr_table ? : RT6_TABLE_DFLT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1817 | if (!mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1818 | return -ENOENT; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1819 | |
| 1820 | switch (optname) { |
| 1821 | case MRT6_VERSION: |
| 1822 | val = 0x0305; |
| 1823 | break; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1824 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 1825 | case MRT6_PIM: |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1826 | val = mrt->mroute_do_pim; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1827 | break; |
| 1828 | #endif |
| 1829 | case MRT6_ASSERT: |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1830 | val = mrt->mroute_do_assert; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 1831 | break; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1832 | default: |
| 1833 | return -ENOPROTOOPT; |
| 1834 | } |
| 1835 | |
| 1836 | if (get_user(olr, optlen)) |
| 1837 | return -EFAULT; |
| 1838 | |
| 1839 | olr = min_t(int, olr, sizeof(int)); |
| 1840 | if (olr < 0) |
| 1841 | return -EINVAL; |
| 1842 | |
| 1843 | if (put_user(olr, optlen)) |
| 1844 | return -EFAULT; |
| 1845 | if (copy_to_user(optval, &val, olr)) |
| 1846 | return -EFAULT; |
| 1847 | return 0; |
| 1848 | } |
| 1849 | |
| 1850 | /* |
| 1851 | * The IP multicast ioctl support routines. |
| 1852 | */ |
| 1853 | |
| 1854 | int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg) |
| 1855 | { |
| 1856 | struct sioc_sg_req6 sr; |
| 1857 | struct sioc_mif_req6 vr; |
Yuval Mintz | 6853f21 | 2018-02-28 23:29:29 +0200 | [diff] [blame] | 1858 | struct vif_device *vif; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1859 | struct mfc6_cache *c; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 1860 | struct net *net = sock_net(sk); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1861 | struct mr_table *mrt; |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1862 | |
| 1863 | mrt = ip6mr_get_table(net, raw6_sk(sk)->ip6mr_table ? : RT6_TABLE_DFLT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1864 | if (!mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 1865 | return -ENOENT; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1866 | |
| 1867 | switch (cmd) { |
| 1868 | case SIOCGETMIFCNT_IN6: |
| 1869 | if (copy_from_user(&vr, arg, sizeof(vr))) |
| 1870 | return -EFAULT; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1871 | if (vr.mifi >= mrt->maxvif) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1872 | return -EINVAL; |
Gustavo A. R. Silva | 69d2c86 | 2018-12-11 14:10:08 -0600 | [diff] [blame] | 1873 | vr.mifi = array_index_nospec(vr.mifi, mrt->maxvif); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1874 | read_lock(&mrt_lock); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1875 | vif = &mrt->vif_table[vr.mifi]; |
| 1876 | if (VIF_EXISTS(mrt, vr.mifi)) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1877 | vr.icount = vif->pkt_in; |
| 1878 | vr.ocount = vif->pkt_out; |
| 1879 | vr.ibytes = vif->bytes_in; |
| 1880 | vr.obytes = vif->bytes_out; |
| 1881 | read_unlock(&mrt_lock); |
| 1882 | |
| 1883 | if (copy_to_user(arg, &vr, sizeof(vr))) |
| 1884 | return -EFAULT; |
| 1885 | return 0; |
| 1886 | } |
| 1887 | read_unlock(&mrt_lock); |
| 1888 | return -EADDRNOTAVAIL; |
| 1889 | case SIOCGETSGCNT_IN6: |
| 1890 | if (copy_from_user(&sr, arg, sizeof(sr))) |
| 1891 | return -EFAULT; |
| 1892 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1893 | rcu_read_lock(); |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 1894 | c = ip6mr_cache_find(mrt, &sr.src.sin6_addr, &sr.grp.sin6_addr); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1895 | if (c) { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1896 | sr.pktcnt = c->_c.mfc_un.res.pkt; |
| 1897 | sr.bytecnt = c->_c.mfc_un.res.bytes; |
| 1898 | sr.wrong_if = c->_c.mfc_un.res.wrong_if; |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1899 | rcu_read_unlock(); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1900 | |
| 1901 | if (copy_to_user(arg, &sr, sizeof(sr))) |
| 1902 | return -EFAULT; |
| 1903 | return 0; |
| 1904 | } |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1905 | rcu_read_unlock(); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1906 | return -EADDRNOTAVAIL; |
| 1907 | default: |
| 1908 | return -ENOIOCTLCMD; |
| 1909 | } |
| 1910 | } |
| 1911 | |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1912 | #ifdef CONFIG_COMPAT |
| 1913 | struct compat_sioc_sg_req6 { |
| 1914 | struct sockaddr_in6 src; |
| 1915 | struct sockaddr_in6 grp; |
| 1916 | compat_ulong_t pktcnt; |
| 1917 | compat_ulong_t bytecnt; |
| 1918 | compat_ulong_t wrong_if; |
| 1919 | }; |
| 1920 | |
| 1921 | struct compat_sioc_mif_req6 { |
| 1922 | mifi_t mifi; |
| 1923 | compat_ulong_t icount; |
| 1924 | compat_ulong_t ocount; |
| 1925 | compat_ulong_t ibytes; |
| 1926 | compat_ulong_t obytes; |
| 1927 | }; |
| 1928 | |
| 1929 | int ip6mr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg) |
| 1930 | { |
| 1931 | struct compat_sioc_sg_req6 sr; |
| 1932 | struct compat_sioc_mif_req6 vr; |
Yuval Mintz | 6853f21 | 2018-02-28 23:29:29 +0200 | [diff] [blame] | 1933 | struct vif_device *vif; |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1934 | struct mfc6_cache *c; |
| 1935 | struct net *net = sock_net(sk); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1936 | struct mr_table *mrt; |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1937 | |
| 1938 | mrt = ip6mr_get_table(net, raw6_sk(sk)->ip6mr_table ? : RT6_TABLE_DFLT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1939 | if (!mrt) |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1940 | return -ENOENT; |
| 1941 | |
| 1942 | switch (cmd) { |
| 1943 | case SIOCGETMIFCNT_IN6: |
| 1944 | if (copy_from_user(&vr, arg, sizeof(vr))) |
| 1945 | return -EFAULT; |
| 1946 | if (vr.mifi >= mrt->maxvif) |
| 1947 | return -EINVAL; |
Gustavo A. R. Silva | 69d2c86 | 2018-12-11 14:10:08 -0600 | [diff] [blame] | 1948 | vr.mifi = array_index_nospec(vr.mifi, mrt->maxvif); |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1949 | read_lock(&mrt_lock); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 1950 | vif = &mrt->vif_table[vr.mifi]; |
| 1951 | if (VIF_EXISTS(mrt, vr.mifi)) { |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1952 | vr.icount = vif->pkt_in; |
| 1953 | vr.ocount = vif->pkt_out; |
| 1954 | vr.ibytes = vif->bytes_in; |
| 1955 | vr.obytes = vif->bytes_out; |
| 1956 | read_unlock(&mrt_lock); |
| 1957 | |
| 1958 | if (copy_to_user(arg, &vr, sizeof(vr))) |
| 1959 | return -EFAULT; |
| 1960 | return 0; |
| 1961 | } |
| 1962 | read_unlock(&mrt_lock); |
| 1963 | return -EADDRNOTAVAIL; |
| 1964 | case SIOCGETSGCNT_IN6: |
| 1965 | if (copy_from_user(&sr, arg, sizeof(sr))) |
| 1966 | return -EFAULT; |
| 1967 | |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1968 | rcu_read_lock(); |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1969 | c = ip6mr_cache_find(mrt, &sr.src.sin6_addr, &sr.grp.sin6_addr); |
| 1970 | if (c) { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 1971 | sr.pktcnt = c->_c.mfc_un.res.pkt; |
| 1972 | sr.bytecnt = c->_c.mfc_un.res.bytes; |
| 1973 | sr.wrong_if = c->_c.mfc_un.res.wrong_if; |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1974 | rcu_read_unlock(); |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1975 | |
| 1976 | if (copy_to_user(arg, &sr, sizeof(sr))) |
| 1977 | return -EFAULT; |
| 1978 | return 0; |
| 1979 | } |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 1980 | rcu_read_unlock(); |
David S. Miller | e2d5776 | 2011-02-03 17:59:32 -0800 | [diff] [blame] | 1981 | return -EADDRNOTAVAIL; |
| 1982 | default: |
| 1983 | return -ENOIOCTLCMD; |
| 1984 | } |
| 1985 | } |
| 1986 | #endif |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1987 | |
Eric W. Biederman | 0c4b51f | 2015-09-15 20:04:18 -0500 | [diff] [blame] | 1988 | static inline int ip6mr_forward2_finish(struct net *net, struct sock *sk, struct sk_buff *skb) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1989 | { |
Ido Schimmel | 87c11f1 | 2019-03-03 07:34:57 +0000 | [diff] [blame] | 1990 | IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), |
| 1991 | IPSTATS_MIB_OUTFORWDATAGRAMS); |
| 1992 | IP6_ADD_STATS(net, ip6_dst_idev(skb_dst(skb)), |
| 1993 | IPSTATS_MIB_OUTOCTETS, skb->len); |
Eric W. Biederman | 13206b6 | 2015-10-07 16:48:35 -0500 | [diff] [blame] | 1994 | return dst_output(net, sk, skb); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 1995 | } |
| 1996 | |
| 1997 | /* |
| 1998 | * Processing handlers for ip6mr_forward |
| 1999 | */ |
| 2000 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2001 | static int ip6mr_forward2(struct net *net, struct mr_table *mrt, |
David Ahern | f5c6dfd | 2018-12-17 15:36:11 -0800 | [diff] [blame] | 2002 | struct sk_buff *skb, int vifi) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2003 | { |
| 2004 | struct ipv6hdr *ipv6h; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2005 | struct vif_device *vif = &mrt->vif_table[vifi]; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2006 | struct net_device *dev; |
| 2007 | struct dst_entry *dst; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2008 | struct flowi6 fl6; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2009 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2010 | if (!vif->dev) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2011 | goto out_free; |
| 2012 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2013 | #ifdef CONFIG_IPV6_PIMSM_V2 |
| 2014 | if (vif->flags & MIFF_REGISTER) { |
| 2015 | vif->pkt_out++; |
| 2016 | vif->bytes_out += skb->len; |
Pavel Emelyanov | dc58c78 | 2008-05-21 14:17:54 -0700 | [diff] [blame] | 2017 | vif->dev->stats.tx_bytes += skb->len; |
| 2018 | vif->dev->stats.tx_packets++; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 2019 | ip6mr_cache_report(mrt, skb, vifi, MRT6MSG_WHOLEPKT); |
Ilpo Järvinen | 8da73b7 | 2008-12-14 23:15:49 -0800 | [diff] [blame] | 2020 | goto out_free; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2021 | } |
| 2022 | #endif |
| 2023 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2024 | ipv6h = ipv6_hdr(skb); |
| 2025 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2026 | fl6 = (struct flowi6) { |
| 2027 | .flowi6_oif = vif->link, |
| 2028 | .daddr = ipv6h->daddr, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2029 | }; |
| 2030 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2031 | dst = ip6_route_output(net, NULL, &fl6); |
RongQing.Li | 5095d64 | 2012-02-21 22:10:49 +0000 | [diff] [blame] | 2032 | if (dst->error) { |
| 2033 | dst_release(dst); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2034 | goto out_free; |
RongQing.Li | 5095d64 | 2012-02-21 22:10:49 +0000 | [diff] [blame] | 2035 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2036 | |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 2037 | skb_dst_drop(skb); |
| 2038 | skb_dst_set(skb, dst); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2039 | |
| 2040 | /* |
| 2041 | * RFC1584 teaches, that DVMRP/PIM router must deliver packets locally |
| 2042 | * not only before forwarding, but after forwarding on all output |
| 2043 | * interfaces. It is clear, if mrouter runs a multicasting |
| 2044 | * program, it should receive packets not depending to what interface |
| 2045 | * program is joined. |
| 2046 | * If we will not make it, the program will have to join on all |
| 2047 | * interfaces. On the other hand, multihoming host (or router, but |
| 2048 | * not mrouter) cannot join to more than one interface - it will |
| 2049 | * result in receiving multiple packets. |
| 2050 | */ |
| 2051 | dev = vif->dev; |
| 2052 | skb->dev = dev; |
| 2053 | vif->pkt_out++; |
| 2054 | vif->bytes_out += skb->len; |
| 2055 | |
| 2056 | /* We are about to write */ |
| 2057 | /* XXX: extension headers? */ |
| 2058 | if (skb_cow(skb, sizeof(*ipv6h) + LL_RESERVED_SPACE(dev))) |
| 2059 | goto out_free; |
| 2060 | |
| 2061 | ipv6h = ipv6_hdr(skb); |
| 2062 | ipv6h->hop_limit--; |
| 2063 | |
| 2064 | IP6CB(skb)->flags |= IP6SKB_FORWARDED; |
| 2065 | |
Eric W. Biederman | 29a26a5 | 2015-09-15 20:04:16 -0500 | [diff] [blame] | 2066 | return NF_HOOK(NFPROTO_IPV6, NF_INET_FORWARD, |
| 2067 | net, NULL, skb, skb->dev, dev, |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2068 | ip6mr_forward2_finish); |
| 2069 | |
| 2070 | out_free: |
| 2071 | kfree_skb(skb); |
| 2072 | return 0; |
| 2073 | } |
| 2074 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2075 | static int ip6mr_find_vif(struct mr_table *mrt, struct net_device *dev) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2076 | { |
| 2077 | int ct; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 2078 | |
| 2079 | for (ct = mrt->maxvif - 1; ct >= 0; ct--) { |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2080 | if (mrt->vif_table[ct].dev == dev) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2081 | break; |
| 2082 | } |
| 2083 | return ct; |
| 2084 | } |
| 2085 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2086 | static void ip6_mr_forward(struct net *net, struct mr_table *mrt, |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2087 | struct net_device *dev, struct sk_buff *skb, |
| 2088 | struct mfc6_cache *c) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2089 | { |
| 2090 | int psend = -1; |
| 2091 | int vif, ct; |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2092 | int true_vifi = ip6mr_find_vif(mrt, dev); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2093 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2094 | vif = c->_c.mfc_parent; |
| 2095 | c->_c.mfc_un.res.pkt++; |
| 2096 | c->_c.mfc_un.res.bytes += skb->len; |
| 2097 | c->_c.mfc_un.res.lastuse = jiffies; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2098 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2099 | if (ipv6_addr_any(&c->mf6c_origin) && true_vifi >= 0) { |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2100 | struct mfc6_cache *cache_proxy; |
| 2101 | |
Fabian Frederick | 40dc2ca | 2014-10-29 10:00:26 +0100 | [diff] [blame] | 2102 | /* For an (*,G) entry, we only check that the incoming |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2103 | * interface is part of the static tree. |
| 2104 | */ |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 2105 | rcu_read_lock(); |
Yuval Mintz | 845c9a7 | 2018-02-28 23:29:35 +0200 | [diff] [blame] | 2106 | cache_proxy = mr_mfc_find_any_parent(mrt, vif); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2107 | if (cache_proxy && |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2108 | cache_proxy->_c.mfc_un.res.ttls[true_vifi] < 255) { |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 2109 | rcu_read_unlock(); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2110 | goto forward; |
Yuval Mintz | 87c418b | 2018-02-28 23:29:31 +0200 | [diff] [blame] | 2111 | } |
| 2112 | rcu_read_unlock(); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2113 | } |
| 2114 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2115 | /* |
| 2116 | * Wrong interface: drop packet and (maybe) send PIM assert. |
| 2117 | */ |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2118 | if (mrt->vif_table[vif].dev != dev) { |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2119 | c->_c.mfc_un.res.wrong_if++; |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2120 | |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 2121 | if (true_vifi >= 0 && mrt->mroute_do_assert && |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2122 | /* pimsm uses asserts, when switching from RPT to SPT, |
| 2123 | so that we cannot check that packet arrived on an oif. |
| 2124 | It is bad, but otherwise we would need to move pretty |
| 2125 | large chunk of pimd to kernel. Ough... --ANK |
| 2126 | */ |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 2127 | (mrt->mroute_do_pim || |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2128 | c->_c.mfc_un.res.ttls[true_vifi] < 255) && |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2129 | time_after(jiffies, |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2130 | c->_c.mfc_un.res.last_assert + |
| 2131 | MFC_ASSERT_THRESH)) { |
| 2132 | c->_c.mfc_un.res.last_assert = jiffies; |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 2133 | ip6mr_cache_report(mrt, skb, true_vifi, MRT6MSG_WRONGMIF); |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2134 | } |
| 2135 | goto dont_forward; |
| 2136 | } |
| 2137 | |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2138 | forward: |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2139 | mrt->vif_table[vif].pkt_in++; |
| 2140 | mrt->vif_table[vif].bytes_in += skb->len; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2141 | |
| 2142 | /* |
| 2143 | * Forward the frame |
| 2144 | */ |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2145 | if (ipv6_addr_any(&c->mf6c_origin) && |
| 2146 | ipv6_addr_any(&c->mf6c_mcastgrp)) { |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2147 | if (true_vifi >= 0 && |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2148 | true_vifi != c->_c.mfc_parent && |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2149 | ipv6_hdr(skb)->hop_limit > |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2150 | c->_c.mfc_un.res.ttls[c->_c.mfc_parent]) { |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2151 | /* It's an (*,*) entry and the packet is not coming from |
| 2152 | * the upstream: forward the packet to the upstream |
| 2153 | * only. |
| 2154 | */ |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2155 | psend = c->_c.mfc_parent; |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2156 | goto last_forward; |
| 2157 | } |
| 2158 | goto dont_forward; |
| 2159 | } |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2160 | for (ct = c->_c.mfc_un.res.maxvif - 1; |
| 2161 | ct >= c->_c.mfc_un.res.minvif; ct--) { |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2162 | /* For (*,G) entry, don't forward to the incoming interface */ |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2163 | if ((!ipv6_addr_any(&c->mf6c_origin) || ct != true_vifi) && |
| 2164 | ipv6_hdr(skb)->hop_limit > c->_c.mfc_un.res.ttls[ct]) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2165 | if (psend != -1) { |
| 2166 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); |
| 2167 | if (skb2) |
David Ahern | f5c6dfd | 2018-12-17 15:36:11 -0800 | [diff] [blame] | 2168 | ip6mr_forward2(net, mrt, skb2, psend); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2169 | } |
| 2170 | psend = ct; |
| 2171 | } |
| 2172 | } |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2173 | last_forward: |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2174 | if (psend != -1) { |
David Ahern | f5c6dfd | 2018-12-17 15:36:11 -0800 | [diff] [blame] | 2175 | ip6mr_forward2(net, mrt, skb, psend); |
Rami Rosen | 2b52c3a | 2013-07-21 03:00:31 +0300 | [diff] [blame] | 2176 | return; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2177 | } |
| 2178 | |
YOSHIFUJI Hideaki | 14fb64e | 2008-04-03 09:22:54 +0900 | [diff] [blame] | 2179 | dont_forward: |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2180 | kfree_skb(skb); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2181 | } |
| 2182 | |
| 2183 | |
| 2184 | /* |
| 2185 | * Multicast packets for forwarding arrive here |
| 2186 | */ |
| 2187 | |
| 2188 | int ip6_mr_input(struct sk_buff *skb) |
| 2189 | { |
| 2190 | struct mfc6_cache *cache; |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 2191 | struct net *net = dev_net(skb->dev); |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2192 | struct mr_table *mrt; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2193 | struct flowi6 fl6 = { |
| 2194 | .flowi6_iif = skb->dev->ifindex, |
| 2195 | .flowi6_mark = skb->mark, |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 2196 | }; |
| 2197 | int err; |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2198 | struct net_device *dev; |
| 2199 | |
| 2200 | /* skb->dev passed in is the master dev for vrfs. |
| 2201 | * Get the proper interface that does have a vif associated with it. |
| 2202 | */ |
| 2203 | dev = skb->dev; |
| 2204 | if (netif_is_l3_master(skb->dev)) { |
| 2205 | dev = dev_get_by_index_rcu(net, IPCB(skb)->iif); |
| 2206 | if (!dev) { |
| 2207 | kfree_skb(skb); |
| 2208 | return -ENODEV; |
| 2209 | } |
| 2210 | } |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 2211 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 2212 | err = ip6mr_fib_lookup(net, &fl6, &mrt); |
Ben Greear | 2015de5 | 2011-09-27 15:16:08 -0400 | [diff] [blame] | 2213 | if (err < 0) { |
| 2214 | kfree_skb(skb); |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 2215 | return err; |
Ben Greear | 2015de5 | 2011-09-27 15:16:08 -0400 | [diff] [blame] | 2216 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2217 | |
| 2218 | read_lock(&mrt_lock); |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 2219 | cache = ip6mr_cache_find(mrt, |
Benjamin Thery | 8229efd | 2008-12-10 16:30:15 -0800 | [diff] [blame] | 2220 | &ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2221 | if (!cache) { |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2222 | int vif = ip6mr_find_vif(mrt, dev); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2223 | |
| 2224 | if (vif >= 0) |
| 2225 | cache = ip6mr_cache_find_any(mrt, |
| 2226 | &ipv6_hdr(skb)->daddr, |
| 2227 | vif); |
| 2228 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2229 | |
| 2230 | /* |
| 2231 | * No usable cache entry |
| 2232 | */ |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2233 | if (!cache) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2234 | int vif; |
| 2235 | |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2236 | vif = ip6mr_find_vif(mrt, dev); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2237 | if (vif >= 0) { |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2238 | int err = ip6mr_cache_unresolved(mrt, vif, skb, dev); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2239 | read_unlock(&mrt_lock); |
| 2240 | |
| 2241 | return err; |
| 2242 | } |
| 2243 | read_unlock(&mrt_lock); |
| 2244 | kfree_skb(skb); |
| 2245 | return -ENODEV; |
| 2246 | } |
| 2247 | |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2248 | ip6_mr_forward(net, mrt, dev, skb, cache); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2249 | |
| 2250 | read_unlock(&mrt_lock); |
| 2251 | |
| 2252 | return 0; |
| 2253 | } |
| 2254 | |
Nikolay Aleksandrov | 2cf7507 | 2016-09-25 23:08:31 +0200 | [diff] [blame] | 2255 | int ip6mr_get_route(struct net *net, struct sk_buff *skb, struct rtmsg *rtm, |
David Ahern | fd61c6b | 2017-01-17 15:51:07 -0800 | [diff] [blame] | 2256 | u32 portid) |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2257 | { |
| 2258 | int err; |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2259 | struct mr_table *mrt; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2260 | struct mfc6_cache *cache; |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 2261 | struct rt6_info *rt = (struct rt6_info *)skb_dst(skb); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2262 | |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 2263 | mrt = ip6mr_get_table(net, RT6_TABLE_DFLT); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2264 | if (!mrt) |
Patrick McHardy | d1db275 | 2010-05-11 14:40:55 +0200 | [diff] [blame] | 2265 | return -ENOENT; |
| 2266 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2267 | read_lock(&mrt_lock); |
Patrick McHardy | 6bd5214 | 2010-05-11 14:40:53 +0200 | [diff] [blame] | 2268 | cache = ip6mr_cache_find(mrt, &rt->rt6i_src.addr, &rt->rt6i_dst.addr); |
Nicolas Dichtel | 660b26d | 2013-01-21 06:00:26 +0000 | [diff] [blame] | 2269 | if (!cache && skb->dev) { |
| 2270 | int vif = ip6mr_find_vif(mrt, skb->dev); |
| 2271 | |
| 2272 | if (vif >= 0) |
| 2273 | cache = ip6mr_cache_find_any(mrt, &rt->rt6i_dst.addr, |
| 2274 | vif); |
| 2275 | } |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2276 | |
| 2277 | if (!cache) { |
| 2278 | struct sk_buff *skb2; |
| 2279 | struct ipv6hdr *iph; |
| 2280 | struct net_device *dev; |
| 2281 | int vif; |
| 2282 | |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2283 | dev = skb->dev; |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2284 | if (!dev || (vif = ip6mr_find_vif(mrt, dev)) < 0) { |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2285 | read_unlock(&mrt_lock); |
| 2286 | return -ENODEV; |
| 2287 | } |
| 2288 | |
| 2289 | /* really correct? */ |
| 2290 | skb2 = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC); |
| 2291 | if (!skb2) { |
| 2292 | read_unlock(&mrt_lock); |
| 2293 | return -ENOMEM; |
| 2294 | } |
| 2295 | |
Nikolay Aleksandrov | 2cf7507 | 2016-09-25 23:08:31 +0200 | [diff] [blame] | 2296 | NETLINK_CB(skb2).portid = portid; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2297 | skb_reset_transport_header(skb2); |
| 2298 | |
| 2299 | skb_put(skb2, sizeof(struct ipv6hdr)); |
| 2300 | skb_reset_network_header(skb2); |
| 2301 | |
| 2302 | iph = ipv6_hdr(skb2); |
| 2303 | iph->version = 0; |
| 2304 | iph->priority = 0; |
| 2305 | iph->flow_lbl[0] = 0; |
| 2306 | iph->flow_lbl[1] = 0; |
| 2307 | iph->flow_lbl[2] = 0; |
| 2308 | iph->payload_len = 0; |
| 2309 | iph->nexthdr = IPPROTO_NONE; |
| 2310 | iph->hop_limit = 0; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2311 | iph->saddr = rt->rt6i_src.addr; |
| 2312 | iph->daddr = rt->rt6i_dst.addr; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2313 | |
Patrick Ruddy | e4a38c0 | 2018-10-01 09:41:27 +0100 | [diff] [blame] | 2314 | err = ip6mr_cache_unresolved(mrt, vif, skb2, dev); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2315 | read_unlock(&mrt_lock); |
| 2316 | |
| 2317 | return err; |
| 2318 | } |
| 2319 | |
Yuval Mintz | 7b0db85 | 2018-02-28 23:29:39 +0200 | [diff] [blame] | 2320 | err = mr_fill_mroute(mrt, skb, &cache->_c, rtm); |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 2321 | read_unlock(&mrt_lock); |
| 2322 | return err; |
| 2323 | } |
| 2324 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2325 | static int ip6mr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb, |
Nicolas Dichtel | f518338 | 2014-03-19 17:47:51 +0100 | [diff] [blame] | 2326 | u32 portid, u32 seq, struct mfc6_cache *c, int cmd, |
| 2327 | int flags) |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2328 | { |
| 2329 | struct nlmsghdr *nlh; |
| 2330 | struct rtmsg *rtm; |
Nicolas Dichtel | 1eb99af | 2012-12-04 01:13:39 +0000 | [diff] [blame] | 2331 | int err; |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2332 | |
Nicolas Dichtel | f518338 | 2014-03-19 17:47:51 +0100 | [diff] [blame] | 2333 | nlh = nlmsg_put(skb, portid, seq, cmd, sizeof(*rtm), flags); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2334 | if (!nlh) |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2335 | return -EMSGSIZE; |
| 2336 | |
| 2337 | rtm = nlmsg_data(nlh); |
Nicolas Dichtel | 193c1e4 | 2012-12-04 01:01:49 +0000 | [diff] [blame] | 2338 | rtm->rtm_family = RTNL_FAMILY_IP6MR; |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2339 | rtm->rtm_dst_len = 128; |
| 2340 | rtm->rtm_src_len = 128; |
| 2341 | rtm->rtm_tos = 0; |
| 2342 | rtm->rtm_table = mrt->id; |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2343 | if (nla_put_u32(skb, RTA_TABLE, mrt->id)) |
| 2344 | goto nla_put_failure; |
Nicolas Dichtel | 1eb99af | 2012-12-04 01:13:39 +0000 | [diff] [blame] | 2345 | rtm->rtm_type = RTN_MULTICAST; |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2346 | rtm->rtm_scope = RT_SCOPE_UNIVERSE; |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2347 | if (c->_c.mfc_flags & MFC_STATIC) |
Nicolas Dichtel | 9a68ac7 | 2012-12-04 01:13:38 +0000 | [diff] [blame] | 2348 | rtm->rtm_protocol = RTPROT_STATIC; |
| 2349 | else |
| 2350 | rtm->rtm_protocol = RTPROT_MROUTED; |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2351 | rtm->rtm_flags = 0; |
| 2352 | |
Jiri Benc | 930345e | 2015-03-29 16:59:25 +0200 | [diff] [blame] | 2353 | if (nla_put_in6_addr(skb, RTA_SRC, &c->mf6c_origin) || |
| 2354 | nla_put_in6_addr(skb, RTA_DST, &c->mf6c_mcastgrp)) |
David S. Miller | c78679e | 2012-04-01 20:27:33 -0400 | [diff] [blame] | 2355 | goto nla_put_failure; |
Yuval Mintz | 7b0db85 | 2018-02-28 23:29:39 +0200 | [diff] [blame] | 2356 | err = mr_fill_mroute(mrt, skb, &c->_c, rtm); |
Nicolas Dichtel | 1eb99af | 2012-12-04 01:13:39 +0000 | [diff] [blame] | 2357 | /* do not break the dump if cache is unresolved */ |
| 2358 | if (err < 0 && err != -ENOENT) |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2359 | goto nla_put_failure; |
| 2360 | |
Johannes Berg | 053c095 | 2015-01-16 22:09:00 +0100 | [diff] [blame] | 2361 | nlmsg_end(skb, nlh); |
| 2362 | return 0; |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2363 | |
| 2364 | nla_put_failure: |
| 2365 | nlmsg_cancel(skb, nlh); |
| 2366 | return -EMSGSIZE; |
| 2367 | } |
| 2368 | |
Yuval Mintz | 7b0db85 | 2018-02-28 23:29:39 +0200 | [diff] [blame] | 2369 | static int _ip6mr_fill_mroute(struct mr_table *mrt, struct sk_buff *skb, |
| 2370 | u32 portid, u32 seq, struct mr_mfc *c, |
| 2371 | int cmd, int flags) |
| 2372 | { |
| 2373 | return ip6mr_fill_mroute(mrt, skb, portid, seq, (struct mfc6_cache *)c, |
| 2374 | cmd, flags); |
| 2375 | } |
| 2376 | |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 2377 | static int mr6_msgsize(bool unresolved, int maxvif) |
| 2378 | { |
| 2379 | size_t len = |
| 2380 | NLMSG_ALIGN(sizeof(struct rtmsg)) |
| 2381 | + nla_total_size(4) /* RTA_TABLE */ |
| 2382 | + nla_total_size(sizeof(struct in6_addr)) /* RTA_SRC */ |
| 2383 | + nla_total_size(sizeof(struct in6_addr)) /* RTA_DST */ |
| 2384 | ; |
| 2385 | |
| 2386 | if (!unresolved) |
| 2387 | len = len |
| 2388 | + nla_total_size(4) /* RTA_IIF */ |
| 2389 | + nla_total_size(0) /* RTA_MULTIPATH */ |
| 2390 | + maxvif * NLA_ALIGN(sizeof(struct rtnexthop)) |
| 2391 | /* RTA_MFC_STATS */ |
Nicolas Dichtel | 3d6b66c | 2016-04-21 18:58:27 +0200 | [diff] [blame] | 2392 | + nla_total_size_64bit(sizeof(struct rta_mfc_stats)) |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 2393 | ; |
| 2394 | |
| 2395 | return len; |
| 2396 | } |
| 2397 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2398 | static void mr6_netlink_event(struct mr_table *mrt, struct mfc6_cache *mfc, |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 2399 | int cmd) |
| 2400 | { |
| 2401 | struct net *net = read_pnet(&mrt->net); |
| 2402 | struct sk_buff *skb; |
| 2403 | int err = -ENOBUFS; |
| 2404 | |
Yuval Mintz | 494fff5 | 2018-02-28 23:29:34 +0200 | [diff] [blame] | 2405 | skb = nlmsg_new(mr6_msgsize(mfc->_c.mfc_parent >= MAXMIFS, mrt->maxvif), |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 2406 | GFP_ATOMIC); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 2407 | if (!skb) |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 2408 | goto errout; |
| 2409 | |
Nicolas Dichtel | f518338 | 2014-03-19 17:47:51 +0100 | [diff] [blame] | 2410 | err = ip6mr_fill_mroute(mrt, skb, 0, 0, mfc, cmd, 0); |
Nicolas Dichtel | 812e44d | 2012-12-04 01:13:41 +0000 | [diff] [blame] | 2411 | if (err < 0) |
| 2412 | goto errout; |
| 2413 | |
| 2414 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_MROUTE, NULL, GFP_ATOMIC); |
| 2415 | return; |
| 2416 | |
| 2417 | errout: |
| 2418 | kfree_skb(skb); |
| 2419 | if (err < 0) |
| 2420 | rtnl_set_sk_err(net, RTNLGRP_IPV6_MROUTE, err); |
| 2421 | } |
| 2422 | |
Julien Gomes | dd12d15c | 2017-06-20 13:54:18 -0700 | [diff] [blame] | 2423 | static size_t mrt6msg_netlink_msgsize(size_t payloadlen) |
| 2424 | { |
| 2425 | size_t len = |
| 2426 | NLMSG_ALIGN(sizeof(struct rtgenmsg)) |
| 2427 | + nla_total_size(1) /* IP6MRA_CREPORT_MSGTYPE */ |
| 2428 | + nla_total_size(4) /* IP6MRA_CREPORT_MIF_ID */ |
| 2429 | /* IP6MRA_CREPORT_SRC_ADDR */ |
| 2430 | + nla_total_size(sizeof(struct in6_addr)) |
| 2431 | /* IP6MRA_CREPORT_DST_ADDR */ |
| 2432 | + nla_total_size(sizeof(struct in6_addr)) |
| 2433 | /* IP6MRA_CREPORT_PKT */ |
| 2434 | + nla_total_size(payloadlen) |
| 2435 | ; |
| 2436 | |
| 2437 | return len; |
| 2438 | } |
| 2439 | |
Yuval Mintz | b70432f | 2018-02-28 23:29:32 +0200 | [diff] [blame] | 2440 | static void mrt6msg_netlink_event(struct mr_table *mrt, struct sk_buff *pkt) |
Julien Gomes | dd12d15c | 2017-06-20 13:54:18 -0700 | [diff] [blame] | 2441 | { |
| 2442 | struct net *net = read_pnet(&mrt->net); |
| 2443 | struct nlmsghdr *nlh; |
| 2444 | struct rtgenmsg *rtgenm; |
| 2445 | struct mrt6msg *msg; |
| 2446 | struct sk_buff *skb; |
| 2447 | struct nlattr *nla; |
| 2448 | int payloadlen; |
| 2449 | |
| 2450 | payloadlen = pkt->len - sizeof(struct mrt6msg); |
| 2451 | msg = (struct mrt6msg *)skb_transport_header(pkt); |
| 2452 | |
| 2453 | skb = nlmsg_new(mrt6msg_netlink_msgsize(payloadlen), GFP_ATOMIC); |
| 2454 | if (!skb) |
| 2455 | goto errout; |
| 2456 | |
| 2457 | nlh = nlmsg_put(skb, 0, 0, RTM_NEWCACHEREPORT, |
| 2458 | sizeof(struct rtgenmsg), 0); |
| 2459 | if (!nlh) |
| 2460 | goto errout; |
| 2461 | rtgenm = nlmsg_data(nlh); |
| 2462 | rtgenm->rtgen_family = RTNL_FAMILY_IP6MR; |
| 2463 | if (nla_put_u8(skb, IP6MRA_CREPORT_MSGTYPE, msg->im6_msgtype) || |
| 2464 | nla_put_u32(skb, IP6MRA_CREPORT_MIF_ID, msg->im6_mif) || |
| 2465 | nla_put_in6_addr(skb, IP6MRA_CREPORT_SRC_ADDR, |
| 2466 | &msg->im6_src) || |
| 2467 | nla_put_in6_addr(skb, IP6MRA_CREPORT_DST_ADDR, |
| 2468 | &msg->im6_dst)) |
| 2469 | goto nla_put_failure; |
| 2470 | |
| 2471 | nla = nla_reserve(skb, IP6MRA_CREPORT_PKT, payloadlen); |
| 2472 | if (!nla || skb_copy_bits(pkt, sizeof(struct mrt6msg), |
| 2473 | nla_data(nla), payloadlen)) |
| 2474 | goto nla_put_failure; |
| 2475 | |
| 2476 | nlmsg_end(skb, nlh); |
| 2477 | |
| 2478 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_MROUTE_R, NULL, GFP_ATOMIC); |
| 2479 | return; |
| 2480 | |
| 2481 | nla_put_failure: |
| 2482 | nlmsg_cancel(skb, nlh); |
| 2483 | errout: |
| 2484 | kfree_skb(skb); |
| 2485 | rtnl_set_sk_err(net, RTNLGRP_IPV6_MROUTE_R, -ENOBUFS); |
| 2486 | } |
| 2487 | |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2488 | static int ip6mr_rtm_dumproute(struct sk_buff *skb, struct netlink_callback *cb) |
| 2489 | { |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 2490 | const struct nlmsghdr *nlh = cb->nlh; |
David Ahern | 4724676 | 2018-10-15 18:56:42 -0700 | [diff] [blame] | 2491 | struct fib_dump_filter filter = {}; |
David Ahern | cb16789 | 2018-10-15 18:56:47 -0700 | [diff] [blame] | 2492 | int err; |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 2493 | |
| 2494 | if (cb->strict_check) { |
David Ahern | 4724676 | 2018-10-15 18:56:42 -0700 | [diff] [blame] | 2495 | err = ip_valid_fib_dump_req(sock_net(skb->sk), nlh, |
David Ahern | effe679 | 2018-10-15 18:56:48 -0700 | [diff] [blame] | 2496 | &filter, cb); |
David Ahern | e8ba330 | 2018-10-07 20:16:35 -0700 | [diff] [blame] | 2497 | if (err < 0) |
| 2498 | return err; |
| 2499 | } |
| 2500 | |
David Ahern | cb16789 | 2018-10-15 18:56:47 -0700 | [diff] [blame] | 2501 | if (filter.table_id) { |
| 2502 | struct mr_table *mrt; |
| 2503 | |
| 2504 | mrt = ip6mr_get_table(sock_net(skb->sk), filter.table_id); |
| 2505 | if (!mrt) { |
David Ahern | ae677bb | 2018-10-24 12:59:01 -0700 | [diff] [blame] | 2506 | if (filter.dump_all_families) |
| 2507 | return skb->len; |
| 2508 | |
David Ahern | cb16789 | 2018-10-15 18:56:47 -0700 | [diff] [blame] | 2509 | NL_SET_ERR_MSG_MOD(cb->extack, "MR table does not exist"); |
| 2510 | return -ENOENT; |
| 2511 | } |
| 2512 | err = mr_table_dump(mrt, skb, cb, _ip6mr_fill_mroute, |
| 2513 | &mfc_unres_lock, &filter); |
| 2514 | return skb->len ? : err; |
| 2515 | } |
| 2516 | |
Yuval Mintz | 7b0db85 | 2018-02-28 23:29:39 +0200 | [diff] [blame] | 2517 | return mr_rtm_dumproute(skb, cb, ip6mr_mr_table_iter, |
David Ahern | cb16789 | 2018-10-15 18:56:47 -0700 | [diff] [blame] | 2518 | _ip6mr_fill_mroute, &mfc_unres_lock, &filter); |
Patrick McHardy | 5b285ca | 2010-05-11 14:40:56 +0200 | [diff] [blame] | 2519 | } |