]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/mpls/af_mpls.c
Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-bionic-kernel.git] / net / mpls / af_mpls.c
CommitLineData
0189197f
EB
1#include <linux/types.h>
2#include <linux/skbuff.h>
3#include <linux/socket.h>
7720c01f 4#include <linux/sysctl.h>
0189197f
EB
5#include <linux/net.h>
6#include <linux/module.h>
7#include <linux/if_arp.h>
8#include <linux/ipv6.h>
9#include <linux/mpls.h>
24045a03 10#include <linux/netconf.h>
4b5edb2f 11#include <linux/vmalloc.h>
27d69105 12#include <linux/percpu.h>
0189197f
EB
13#include <net/ip.h>
14#include <net/dst.h>
15#include <net/sock.h>
16#include <net/arp.h>
17#include <net/ip_fib.h>
18#include <net/netevent.h>
19#include <net/netns/generic.h>
bf21563a
RP
20#if IS_ENABLED(CONFIG_IPV6)
21#include <net/ipv6.h>
bf21563a 22#endif
27d69105 23#include <net/addrconf.h>
f8efb73c 24#include <net/nexthop.h>
0189197f
EB
25#include "internal.h"
26
df1c6316
DA
27/* max memory we will use for mpls_route */
28#define MAX_MPLS_ROUTE_MEM 4096
29
1c78efa8
RS
30/* Maximum number of labels to look ahead at when selecting a path of
31 * a multipath route
32 */
33#define MAX_MP_SELECT_LABELS 4
34
eb7809f0
RS
35#define MPLS_NEIGH_TABLE_UNSPEC (NEIGH_LINK_TABLE + 1)
36
7720c01f 37static int zero = 0;
5b441ac8 38static int one = 1;
7720c01f 39static int label_limit = (1 << 20) - 1;
a59166e4 40static int ttl_max = 255;
7720c01f 41
8de147dc
EB
42static void rtmsg_lfib(int event, u32 label, struct mpls_route *rt,
43 struct nlmsghdr *nlh, struct net *net, u32 portid,
44 unsigned int nlm_flags);
45
0189197f
EB
46static struct mpls_route *mpls_route_input_rcu(struct net *net, unsigned index)
47{
48 struct mpls_route *rt = NULL;
49
50 if (index < net->mpls.platform_labels) {
51 struct mpls_route __rcu **platform_label =
52 rcu_dereference(net->mpls.platform_label);
53 rt = rcu_dereference(platform_label[index]);
54 }
55 return rt;
56}
57
face0188 58bool mpls_output_possible(const struct net_device *dev)
0189197f
EB
59{
60 return dev && (dev->flags & IFF_UP) && netif_carrier_ok(dev);
61}
face0188 62EXPORT_SYMBOL_GPL(mpls_output_possible);
0189197f 63
cf4b24f0
RS
64static u8 *__mpls_nh_via(struct mpls_route *rt, struct mpls_nh *nh)
65{
59b20966 66 return (u8 *)nh + rt->rt_via_offset;
cf4b24f0
RS
67}
68
69static const u8 *mpls_nh_via(const struct mpls_route *rt,
70 const struct mpls_nh *nh)
71{
72 return __mpls_nh_via((struct mpls_route *)rt, (struct mpls_nh *)nh);
73}
74
f8efb73c 75static unsigned int mpls_nh_header_size(const struct mpls_nh *nh)
0189197f
EB
76{
77 /* The size of the layer 2.5 labels to be added for this route */
f8efb73c 78 return nh->nh_labels * sizeof(struct mpls_shim_hdr);
0189197f
EB
79}
80
face0188 81unsigned int mpls_dev_mtu(const struct net_device *dev)
0189197f
EB
82{
83 /* The amount of data the layer 2 frame can hold */
84 return dev->mtu;
85}
face0188 86EXPORT_SYMBOL_GPL(mpls_dev_mtu);
0189197f 87
face0188 88bool mpls_pkt_too_big(const struct sk_buff *skb, unsigned int mtu)
0189197f
EB
89{
90 if (skb->len <= mtu)
91 return false;
92
ae7ef81e 93 if (skb_is_gso(skb) && skb_gso_validate_mtu(skb, mtu))
0189197f
EB
94 return false;
95
96 return true;
97}
face0188 98EXPORT_SYMBOL_GPL(mpls_pkt_too_big);
0189197f 99
27d69105
RS
100void mpls_stats_inc_outucastpkts(struct net_device *dev,
101 const struct sk_buff *skb)
102{
103 struct mpls_dev *mdev;
104
105 if (skb->protocol == htons(ETH_P_MPLS_UC)) {
106 mdev = mpls_dev_get(dev);
107 if (mdev)
108 MPLS_INC_STATS_LEN(mdev, skb->len,
109 tx_packets,
110 tx_bytes);
111 } else if (skb->protocol == htons(ETH_P_IP)) {
112 IP_UPD_PO_STATS(dev_net(dev), IPSTATS_MIB_OUT, skb->len);
113#if IS_ENABLED(CONFIG_IPV6)
114 } else if (skb->protocol == htons(ETH_P_IPV6)) {
115 struct inet6_dev *in6dev = __in6_dev_get(dev);
116
117 if (in6dev)
118 IP6_UPD_PO_STATS(dev_net(dev), in6dev,
119 IPSTATS_MIB_OUT, skb->len);
120#endif
121 }
122}
123EXPORT_SYMBOL_GPL(mpls_stats_inc_outucastpkts);
124
9f427a0e 125static u32 mpls_multipath_hash(struct mpls_route *rt, struct sk_buff *skb)
f8efb73c 126{
1c78efa8 127 struct mpls_entry_decoded dec;
9f427a0e 128 unsigned int mpls_hdr_len = 0;
1c78efa8
RS
129 struct mpls_shim_hdr *hdr;
130 bool eli_seen = false;
131 int label_index;
1c78efa8
RS
132 u32 hash = 0;
133
9f427a0e 134 for (label_index = 0; label_index < MAX_MP_SELECT_LABELS;
1c78efa8 135 label_index++) {
9f427a0e
DA
136 mpls_hdr_len += sizeof(*hdr);
137 if (!pskb_may_pull(skb, mpls_hdr_len))
1c78efa8
RS
138 break;
139
140 /* Read and decode the current label */
141 hdr = mpls_hdr(skb) + label_index;
142 dec = mpls_entry_decode(hdr);
143
144 /* RFC6790 - reserved labels MUST NOT be used as keys
145 * for the load-balancing function
146 */
147 if (likely(dec.label >= MPLS_LABEL_FIRST_UNRESERVED)) {
148 hash = jhash_1word(dec.label, hash);
149
150 /* The entropy label follows the entropy label
151 * indicator, so this means that the entropy
152 * label was just added to the hash - no need to
153 * go any deeper either in the label stack or in the
154 * payload
155 */
156 if (eli_seen)
157 break;
158 } else if (dec.label == MPLS_LABEL_ENTROPY) {
159 eli_seen = true;
160 }
161
9f427a0e
DA
162 if (!dec.bos)
163 continue;
164
165 /* found bottom label; does skb have room for a header? */
166 if (pskb_may_pull(skb, mpls_hdr_len + sizeof(struct iphdr))) {
1c78efa8
RS
167 const struct iphdr *v4hdr;
168
9f427a0e 169 v4hdr = (const struct iphdr *)(hdr + 1);
1c78efa8
RS
170 if (v4hdr->version == 4) {
171 hash = jhash_3words(ntohl(v4hdr->saddr),
172 ntohl(v4hdr->daddr),
173 v4hdr->protocol, hash);
174 } else if (v4hdr->version == 6 &&
9f427a0e
DA
175 pskb_may_pull(skb, mpls_hdr_len +
176 sizeof(struct ipv6hdr))) {
1c78efa8
RS
177 const struct ipv6hdr *v6hdr;
178
9f427a0e 179 v6hdr = (const struct ipv6hdr *)(hdr + 1);
1c78efa8
RS
180 hash = __ipv6_addr_jhash(&v6hdr->saddr, hash);
181 hash = __ipv6_addr_jhash(&v6hdr->daddr, hash);
182 hash = jhash_1word(v6hdr->nexthdr, hash);
183 }
184 }
9f427a0e
DA
185
186 break;
1c78efa8
RS
187 }
188
c89359a4
RP
189 return hash;
190}
191
59b20966
DA
192static struct mpls_nh *mpls_get_nexthop(struct mpls_route *rt, u8 index)
193{
194 return (struct mpls_nh *)((u8 *)rt->rt_nh + index * rt->rt_nh_size);
195}
196
39eb8cd1
DA
197/* number of alive nexthops (rt->rt_nhn_alive) and the flags for
198 * a next hop (nh->nh_flags) are modified by netdev event handlers.
199 * Since those fields can change at any moment, use READ_ONCE to
200 * access both.
201 */
c89359a4 202static struct mpls_nh *mpls_select_multipath(struct mpls_route *rt,
9f427a0e 203 struct sk_buff *skb)
c89359a4 204{
c89359a4
RP
205 u32 hash = 0;
206 int nh_index = 0;
207 int n = 0;
77ef013a 208 u8 alive;
c89359a4
RP
209
210 /* No need to look further into packet if there's only
211 * one path
212 */
213 if (rt->rt_nhn == 1)
59b20966 214 return rt->rt_nh;
c89359a4 215
39eb8cd1
DA
216 alive = READ_ONCE(rt->rt_nhn_alive);
217 if (alive == 0)
c89359a4
RP
218 return NULL;
219
9f427a0e 220 hash = mpls_multipath_hash(rt, skb);
c89359a4
RP
221 nh_index = hash % alive;
222 if (alive == rt->rt_nhn)
223 goto out;
224 for_nexthops(rt) {
39eb8cd1
DA
225 unsigned int nh_flags = READ_ONCE(nh->nh_flags);
226
227 if (nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN))
c89359a4
RP
228 continue;
229 if (n == nh_index)
230 return nh;
231 n++;
232 } endfor_nexthops(rt);
233
1c78efa8 234out:
59b20966 235 return mpls_get_nexthop(rt, nh_index);
f8efb73c
RP
236}
237
5b441ac8
RS
238static bool mpls_egress(struct net *net, struct mpls_route *rt,
239 struct sk_buff *skb, struct mpls_entry_decoded dec)
0189197f 240{
118d5234
RS
241 enum mpls_payload_type payload_type;
242 bool success = false;
0189197f 243
76fecd82
EB
244 /* The IPv4 code below accesses through the IPv4 header
245 * checksum, which is 12 bytes into the packet.
246 * The IPv6 code below accesses through the IPv6 hop limit
247 * which is 8 bytes into the packet.
248 *
249 * For all supported cases there should always be at least 12
250 * bytes of packet data present. The IPv4 header is 20 bytes
251 * without options and the IPv6 header is always 40 bytes
252 * long.
253 */
254 if (!pskb_may_pull(skb, 12))
255 return false;
256
118d5234
RS
257 payload_type = rt->rt_payload_type;
258 if (payload_type == MPT_UNSPEC)
259 payload_type = ip_hdr(skb)->version;
260
261 switch (payload_type) {
262 case MPT_IPV4: {
263 struct iphdr *hdr4 = ip_hdr(skb);
5b441ac8 264 u8 new_ttl;
0189197f 265 skb->protocol = htons(ETH_P_IP);
5b441ac8
RS
266
267 /* If propagating TTL, take the decremented TTL from
268 * the incoming MPLS header, otherwise decrement the
269 * TTL, but only if not 0 to avoid underflow.
270 */
271 if (rt->rt_ttl_propagate == MPLS_TTL_PROP_ENABLED ||
272 (rt->rt_ttl_propagate == MPLS_TTL_PROP_DEFAULT &&
273 net->mpls.ip_ttl_propagate))
274 new_ttl = dec.ttl;
275 else
276 new_ttl = hdr4->ttl ? hdr4->ttl - 1 : 0;
277
0189197f
EB
278 csum_replace2(&hdr4->check,
279 htons(hdr4->ttl << 8),
5b441ac8
RS
280 htons(new_ttl << 8));
281 hdr4->ttl = new_ttl;
118d5234
RS
282 success = true;
283 break;
0189197f 284 }
118d5234 285 case MPT_IPV6: {
0189197f
EB
286 struct ipv6hdr *hdr6 = ipv6_hdr(skb);
287 skb->protocol = htons(ETH_P_IPV6);
5b441ac8
RS
288
289 /* If propagating TTL, take the decremented TTL from
290 * the incoming MPLS header, otherwise decrement the
291 * hop limit, but only if not 0 to avoid underflow.
292 */
293 if (rt->rt_ttl_propagate == MPLS_TTL_PROP_ENABLED ||
294 (rt->rt_ttl_propagate == MPLS_TTL_PROP_DEFAULT &&
295 net->mpls.ip_ttl_propagate))
296 hdr6->hop_limit = dec.ttl;
297 else if (hdr6->hop_limit)
298 hdr6->hop_limit = hdr6->hop_limit - 1;
118d5234
RS
299 success = true;
300 break;
0189197f 301 }
118d5234 302 case MPT_UNSPEC:
5b441ac8 303 /* Should have decided which protocol it is by now */
118d5234
RS
304 break;
305 }
306
0189197f
EB
307 return success;
308}
309
310static int mpls_forward(struct sk_buff *skb, struct net_device *dev,
311 struct packet_type *pt, struct net_device *orig_dev)
312{
313 struct net *net = dev_net(dev);
314 struct mpls_shim_hdr *hdr;
315 struct mpls_route *rt;
f8efb73c 316 struct mpls_nh *nh;
0189197f
EB
317 struct mpls_entry_decoded dec;
318 struct net_device *out_dev;
27d69105 319 struct mpls_dev *out_mdev;
03c57747 320 struct mpls_dev *mdev;
0189197f
EB
321 unsigned int hh_len;
322 unsigned int new_header_size;
323 unsigned int mtu;
324 int err;
325
326 /* Careful this entire function runs inside of an rcu critical section */
327
03c57747 328 mdev = mpls_dev_get(dev);
27d69105 329 if (!mdev)
03c57747
RS
330 goto drop;
331
27d69105
RS
332 MPLS_INC_STATS_LEN(mdev, skb->len, rx_packets,
333 rx_bytes);
334
335 if (!mdev->input_enabled) {
336 MPLS_INC_STATS(mdev, rx_dropped);
0189197f 337 goto drop;
27d69105
RS
338 }
339
340 if (skb->pkt_type != PACKET_HOST)
341 goto err;
0189197f
EB
342
343 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
27d69105 344 goto err;
0189197f
EB
345
346 if (!pskb_may_pull(skb, sizeof(*hdr)))
27d69105 347 goto err;
0189197f
EB
348
349 /* Read and decode the label */
350 hdr = mpls_hdr(skb);
351 dec = mpls_entry_decode(hdr);
352
0189197f 353 rt = mpls_route_input_rcu(net, dec.label);
27d69105
RS
354 if (!rt) {
355 MPLS_INC_STATS(mdev, rx_noroute);
0189197f 356 goto drop;
27d69105 357 }
0189197f 358
9f427a0e 359 nh = mpls_select_multipath(rt, skb);
f8efb73c 360 if (!nh)
27d69105 361 goto err;
0189197f 362
9f427a0e
DA
363 /* Pop the label */
364 skb_pull(skb, sizeof(*hdr));
365 skb_reset_network_header(skb);
366
367 skb_orphan(skb);
368
0189197f 369 if (skb_warn_if_lro(skb))
27d69105 370 goto err;
0189197f
EB
371
372 skb_forward_csum(skb);
373
374 /* Verify ttl is valid */
aa7da937 375 if (dec.ttl <= 1)
27d69105 376 goto err;
0189197f
EB
377 dec.ttl -= 1;
378
27d69105
RS
379 /* Find the output device */
380 out_dev = rcu_dereference(nh->nh_dev);
381 if (!mpls_output_possible(out_dev))
382 goto tx_err;
383
0189197f 384 /* Verify the destination can hold the packet */
f8efb73c 385 new_header_size = mpls_nh_header_size(nh);
0189197f
EB
386 mtu = mpls_dev_mtu(out_dev);
387 if (mpls_pkt_too_big(skb, mtu - new_header_size))
27d69105 388 goto tx_err;
0189197f
EB
389
390 hh_len = LL_RESERVED_SPACE(out_dev);
391 if (!out_dev->header_ops)
392 hh_len = 0;
393
394 /* Ensure there is enough space for the headers in the skb */
395 if (skb_cow(skb, hh_len + new_header_size))
27d69105 396 goto tx_err;
0189197f
EB
397
398 skb->dev = out_dev;
399 skb->protocol = htons(ETH_P_MPLS_UC);
400
401 if (unlikely(!new_header_size && dec.bos)) {
402 /* Penultimate hop popping */
5b441ac8 403 if (!mpls_egress(dev_net(out_dev), rt, skb, dec))
27d69105 404 goto err;
0189197f
EB
405 } else {
406 bool bos;
407 int i;
408 skb_push(skb, new_header_size);
409 skb_reset_network_header(skb);
410 /* Push the new labels */
411 hdr = mpls_hdr(skb);
412 bos = dec.bos;
f8efb73c
RP
413 for (i = nh->nh_labels - 1; i >= 0; i--) {
414 hdr[i] = mpls_entry_encode(nh->nh_label[i],
415 dec.ttl, 0, bos);
0189197f
EB
416 bos = false;
417 }
418 }
419
27d69105
RS
420 mpls_stats_inc_outucastpkts(out_dev, skb);
421
eb7809f0
RS
422 /* If via wasn't specified then send out using device address */
423 if (nh->nh_via_table == MPLS_NEIGH_TABLE_UNSPEC)
424 err = neigh_xmit(NEIGH_LINK_TABLE, out_dev,
425 out_dev->dev_addr, skb);
426 else
427 err = neigh_xmit(nh->nh_via_table, out_dev,
428 mpls_nh_via(rt, nh), skb);
0189197f
EB
429 if (err)
430 net_dbg_ratelimited("%s: packet transmission failed: %d\n",
431 __func__, err);
432 return 0;
433
27d69105
RS
434tx_err:
435 out_mdev = out_dev ? mpls_dev_get(out_dev) : NULL;
436 if (out_mdev)
437 MPLS_INC_STATS(out_mdev, tx_errors);
438 goto drop;
439err:
440 MPLS_INC_STATS(mdev, rx_errors);
0189197f
EB
441drop:
442 kfree_skb(skb);
443 return NET_RX_DROP;
444}
445
446static struct packet_type mpls_packet_type __read_mostly = {
447 .type = cpu_to_be16(ETH_P_MPLS_UC),
448 .func = mpls_forward,
449};
450
f0126539 451static const struct nla_policy rtm_mpls_policy[RTA_MAX+1] = {
03c05665
EB
452 [RTA_DST] = { .type = NLA_U32 },
453 [RTA_OIF] = { .type = NLA_U32 },
5b441ac8 454 [RTA_TTL_PROPAGATE] = { .type = NLA_U8 },
03c05665
EB
455};
456
a2519929 457struct mpls_route_config {
118d5234
RS
458 u32 rc_protocol;
459 u32 rc_ifindex;
f8efb73c
RP
460 u8 rc_via_table;
461 u8 rc_via_alen;
118d5234
RS
462 u8 rc_via[MAX_VIA_ALEN];
463 u32 rc_label;
5b441ac8 464 u8 rc_ttl_propagate;
f8efb73c 465 u8 rc_output_labels;
118d5234
RS
466 u32 rc_output_label[MAX_NEW_LABELS];
467 u32 rc_nlflags;
468 enum mpls_payload_type rc_payload_type;
469 struct nl_info rc_nlinfo;
f8efb73c
RP
470 struct rtnexthop *rc_mp;
471 int rc_mp_len;
a2519929
EB
472};
473
59b20966
DA
474/* all nexthops within a route have the same size based on max
475 * number of labels and max via length for a hop
476 */
477static struct mpls_route *mpls_rt_alloc(u8 num_nh, u8 max_alen, u8 max_labels)
0189197f 478{
59b20966 479 u8 nh_size = MPLS_NH_SIZE(max_labels, max_alen);
0189197f 480 struct mpls_route *rt;
df1c6316 481 size_t size;
0189197f 482
df1c6316
DA
483 size = sizeof(*rt) + num_nh * nh_size;
484 if (size > MAX_MPLS_ROUTE_MEM)
485 return ERR_PTR(-EINVAL);
486
487 rt = kzalloc(size, GFP_KERNEL);
488 if (!rt)
489 return ERR_PTR(-ENOMEM);
490
491 rt->rt_nhn = num_nh;
492 rt->rt_nhn_alive = num_nh;
493 rt->rt_nh_size = nh_size;
494 rt->rt_via_offset = MPLS_NH_VIA_OFF(max_labels);
f8efb73c 495
0189197f
EB
496 return rt;
497}
498
499static void mpls_rt_free(struct mpls_route *rt)
500{
501 if (rt)
502 kfree_rcu(rt, rt_rcu);
503}
504
8de147dc
EB
505static void mpls_notify_route(struct net *net, unsigned index,
506 struct mpls_route *old, struct mpls_route *new,
507 const struct nl_info *info)
508{
509 struct nlmsghdr *nlh = info ? info->nlh : NULL;
510 unsigned portid = info ? info->portid : 0;
511 int event = new ? RTM_NEWROUTE : RTM_DELROUTE;
512 struct mpls_route *rt = new ? new : old;
513 unsigned nlm_flags = (old && new) ? NLM_F_REPLACE : 0;
514 /* Ignore reserved labels for now */
a6affd24 515 if (rt && (index >= MPLS_LABEL_FIRST_UNRESERVED))
8de147dc
EB
516 rtmsg_lfib(event, index, rt, nlh, net, portid, nlm_flags);
517}
518
0189197f 519static void mpls_route_update(struct net *net, unsigned index,
f8efb73c 520 struct mpls_route *new,
0189197f
EB
521 const struct nl_info *info)
522{
19d0c341 523 struct mpls_route __rcu **platform_label;
f8efb73c 524 struct mpls_route *rt;
0189197f
EB
525
526 ASSERT_RTNL();
527
19d0c341
EB
528 platform_label = rtnl_dereference(net->mpls.platform_label);
529 rt = rtnl_dereference(platform_label[index]);
f8efb73c 530 rcu_assign_pointer(platform_label[index], new);
0189197f 531
f8efb73c 532 mpls_notify_route(net, index, rt, new, info);
8de147dc 533
0189197f 534 /* If we removed a route free it now */
f8efb73c 535 mpls_rt_free(rt);
0189197f
EB
536}
537
a2519929
EB
538static unsigned find_free_label(struct net *net)
539{
19d0c341
EB
540 struct mpls_route __rcu **platform_label;
541 size_t platform_labels;
a2519929 542 unsigned index;
19d0c341
EB
543
544 platform_label = rtnl_dereference(net->mpls.platform_label);
545 platform_labels = net->mpls.platform_labels;
a6affd24
RS
546 for (index = MPLS_LABEL_FIRST_UNRESERVED; index < platform_labels;
547 index++) {
19d0c341 548 if (!rtnl_dereference(platform_label[index]))
a2519929
EB
549 return index;
550 }
551 return LABEL_NOT_SPECIFIED;
552}
553
bf21563a 554#if IS_ENABLED(CONFIG_INET)
cf4b24f0
RS
555static struct net_device *inet_fib_lookup_dev(struct net *net,
556 const void *addr)
01faef2c 557{
5a9348b5 558 struct net_device *dev;
01faef2c
RP
559 struct rtable *rt;
560 struct in_addr daddr;
561
562 memcpy(&daddr, addr, sizeof(struct in_addr));
563 rt = ip_route_output(net, daddr.s_addr, 0, 0, 0);
564 if (IS_ERR(rt))
5a9348b5 565 return ERR_CAST(rt);
01faef2c
RP
566
567 dev = rt->dst.dev;
568 dev_hold(dev);
569
570 ip_rt_put(rt);
571
01faef2c 572 return dev;
bf21563a
RP
573}
574#else
cf4b24f0
RS
575static struct net_device *inet_fib_lookup_dev(struct net *net,
576 const void *addr)
bf21563a
RP
577{
578 return ERR_PTR(-EAFNOSUPPORT);
01faef2c 579}
bf21563a 580#endif
01faef2c 581
bf21563a 582#if IS_ENABLED(CONFIG_IPV6)
cf4b24f0
RS
583static struct net_device *inet6_fib_lookup_dev(struct net *net,
584 const void *addr)
01faef2c 585{
5a9348b5 586 struct net_device *dev;
01faef2c
RP
587 struct dst_entry *dst;
588 struct flowi6 fl6;
bf21563a
RP
589 int err;
590
591 if (!ipv6_stub)
592 return ERR_PTR(-EAFNOSUPPORT);
01faef2c
RP
593
594 memset(&fl6, 0, sizeof(fl6));
595 memcpy(&fl6.daddr, addr, sizeof(struct in6_addr));
bf21563a
RP
596 err = ipv6_stub->ipv6_dst_lookup(net, NULL, &dst, &fl6);
597 if (err)
5a9348b5 598 return ERR_PTR(err);
01faef2c
RP
599
600 dev = dst->dev;
601 dev_hold(dev);
01faef2c
RP
602 dst_release(dst);
603
604 return dev;
605}
bf21563a 606#else
cf4b24f0
RS
607static struct net_device *inet6_fib_lookup_dev(struct net *net,
608 const void *addr)
bf21563a
RP
609{
610 return ERR_PTR(-EAFNOSUPPORT);
611}
612#endif
01faef2c
RP
613
614static struct net_device *find_outdev(struct net *net,
cf4b24f0 615 struct mpls_route *rt,
f8efb73c 616 struct mpls_nh *nh, int oif)
01faef2c
RP
617{
618 struct net_device *dev = NULL;
619
f8efb73c
RP
620 if (!oif) {
621 switch (nh->nh_via_table) {
01faef2c 622 case NEIGH_ARP_TABLE:
cf4b24f0 623 dev = inet_fib_lookup_dev(net, mpls_nh_via(rt, nh));
01faef2c
RP
624 break;
625 case NEIGH_ND_TABLE:
cf4b24f0 626 dev = inet6_fib_lookup_dev(net, mpls_nh_via(rt, nh));
01faef2c
RP
627 break;
628 case NEIGH_LINK_TABLE:
629 break;
630 }
631 } else {
f8efb73c 632 dev = dev_get_by_index(net, oif);
01faef2c
RP
633 }
634
3dcb615e
RP
635 if (!dev)
636 return ERR_PTR(-ENODEV);
637
94a57f1f
RP
638 if (IS_ERR(dev))
639 return dev;
640
f8efb73c
RP
641 /* The caller is holding rtnl anyways, so release the dev reference */
642 dev_put(dev);
643
01faef2c
RP
644 return dev;
645}
646
cf4b24f0
RS
647static int mpls_nh_assign_dev(struct net *net, struct mpls_route *rt,
648 struct mpls_nh *nh, int oif)
f8efb73c
RP
649{
650 struct net_device *dev = NULL;
651 int err = -ENODEV;
652
cf4b24f0 653 dev = find_outdev(net, rt, nh, oif);
f8efb73c
RP
654 if (IS_ERR(dev)) {
655 err = PTR_ERR(dev);
656 dev = NULL;
657 goto errout;
658 }
659
660 /* Ensure this is a supported device */
661 err = -EINVAL;
662 if (!mpls_dev_get(dev))
663 goto errout;
664
a3e948e8
RS
665 if ((nh->nh_via_table == NEIGH_LINK_TABLE) &&
666 (dev->addr_len != nh->nh_via_alen))
667 goto errout;
668
f8efb73c
RP
669 RCU_INIT_POINTER(nh->nh_dev, dev);
670
c89359a4
RP
671 if (!(dev->flags & IFF_UP)) {
672 nh->nh_flags |= RTNH_F_DEAD;
673 } else {
674 unsigned int flags;
675
676 flags = dev_get_flags(dev);
677 if (!(flags & (IFF_RUNNING | IFF_LOWER_UP)))
678 nh->nh_flags |= RTNH_F_LINKDOWN;
679 }
680
f8efb73c
RP
681 return 0;
682
683errout:
684 return err;
685}
686
d4e72560
DA
687static int nla_get_via(const struct nlattr *nla, u8 *via_alen, u8 *via_table,
688 u8 via_addr[], struct netlink_ext_ack *extack)
689{
690 struct rtvia *via = nla_data(nla);
691 int err = -EINVAL;
692 int alen;
693
694 if (nla_len(nla) < offsetof(struct rtvia, rtvia_addr)) {
695 NL_SET_ERR_MSG_ATTR(extack, nla,
696 "Invalid attribute length for RTA_VIA");
697 goto errout;
698 }
699 alen = nla_len(nla) -
700 offsetof(struct rtvia, rtvia_addr);
701 if (alen > MAX_VIA_ALEN) {
702 NL_SET_ERR_MSG_ATTR(extack, nla,
703 "Invalid address length for RTA_VIA");
704 goto errout;
705 }
706
707 /* Validate the address family */
708 switch (via->rtvia_family) {
709 case AF_PACKET:
710 *via_table = NEIGH_LINK_TABLE;
711 break;
712 case AF_INET:
713 *via_table = NEIGH_ARP_TABLE;
714 if (alen != 4)
715 goto errout;
716 break;
717 case AF_INET6:
718 *via_table = NEIGH_ND_TABLE;
719 if (alen != 16)
720 goto errout;
721 break;
722 default:
723 /* Unsupported address family */
724 goto errout;
725 }
726
727 memcpy(via_addr, via->rtvia_addr, alen);
728 *via_alen = alen;
729 err = 0;
730
731errout:
732 return err;
733}
734
f8efb73c
RP
735static int mpls_nh_build_from_cfg(struct mpls_route_config *cfg,
736 struct mpls_route *rt)
737{
738 struct net *net = cfg->rc_nlinfo.nl_net;
739 struct mpls_nh *nh = rt->rt_nh;
740 int err;
741 int i;
742
743 if (!nh)
744 return -ENOMEM;
745
f8efb73c
RP
746 nh->nh_labels = cfg->rc_output_labels;
747 for (i = 0; i < nh->nh_labels; i++)
748 nh->nh_label[i] = cfg->rc_output_label[i];
749
750 nh->nh_via_table = cfg->rc_via_table;
cf4b24f0 751 memcpy(__mpls_nh_via(rt, nh), cfg->rc_via, cfg->rc_via_alen);
f8efb73c
RP
752 nh->nh_via_alen = cfg->rc_via_alen;
753
cf4b24f0 754 err = mpls_nh_assign_dev(net, rt, nh, cfg->rc_ifindex);
f8efb73c
RP
755 if (err)
756 goto errout;
757
c89359a4
RP
758 if (nh->nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN))
759 rt->rt_nhn_alive--;
760
f8efb73c
RP
761 return 0;
762
763errout:
764 return err;
765}
766
cf4b24f0 767static int mpls_nh_build(struct net *net, struct mpls_route *rt,
c89359a4 768 struct mpls_nh *nh, int oif, struct nlattr *via,
074350e2
DA
769 struct nlattr *newdst, u8 max_labels,
770 struct netlink_ext_ack *extack)
f8efb73c
RP
771{
772 int err = -ENOMEM;
773
774 if (!nh)
775 goto errout;
776
777 if (newdst) {
a1f10abe 778 err = nla_get_labels(newdst, max_labels, &nh->nh_labels,
074350e2 779 nh->nh_label, extack);
f8efb73c
RP
780 if (err)
781 goto errout;
782 }
783
f20367df
RS
784 if (via) {
785 err = nla_get_via(via, &nh->nh_via_alen, &nh->nh_via_table,
074350e2 786 __mpls_nh_via(rt, nh), extack);
f20367df
RS
787 if (err)
788 goto errout;
789 } else {
790 nh->nh_via_table = MPLS_NEIGH_TABLE_UNSPEC;
791 }
f8efb73c 792
cf4b24f0 793 err = mpls_nh_assign_dev(net, rt, nh, oif);
f8efb73c
RP
794 if (err)
795 goto errout;
796
797 return 0;
798
799errout:
800 return err;
801}
802
77ef013a 803static u8 mpls_count_nexthops(struct rtnexthop *rtnh, int len,
a4ac8c98
DA
804 u8 cfg_via_alen, u8 *max_via_alen,
805 u8 *max_labels)
f8efb73c 806{
f8efb73c 807 int remaining = len;
77ef013a 808 u8 nhs = 0;
f8efb73c 809
cf4b24f0 810 *max_via_alen = 0;
a4ac8c98 811 *max_labels = 0;
cf4b24f0 812
f8efb73c 813 while (rtnh_ok(rtnh, remaining)) {
cf4b24f0
RS
814 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
815 int attrlen;
a4ac8c98 816 u8 n_labels = 0;
cf4b24f0
RS
817
818 attrlen = rtnh_attrlen(rtnh);
819 nla = nla_find(attrs, attrlen, RTA_VIA);
820 if (nla && nla_len(nla) >=
821 offsetof(struct rtvia, rtvia_addr)) {
822 int via_alen = nla_len(nla) -
823 offsetof(struct rtvia, rtvia_addr);
824
825 if (via_alen <= MAX_VIA_ALEN)
826 *max_via_alen = max_t(u16, *max_via_alen,
827 via_alen);
828 }
829
a4ac8c98
DA
830 nla = nla_find(attrs, attrlen, RTA_NEWDST);
831 if (nla &&
a1f10abe
DA
832 nla_get_labels(nla, MAX_NEW_LABELS, &n_labels,
833 NULL, NULL) != 0)
a4ac8c98
DA
834 return 0;
835
836 *max_labels = max_t(u8, *max_labels, n_labels);
837
77ef013a
DA
838 /* number of nexthops is tracked by a u8.
839 * Check for overflow.
840 */
841 if (nhs == 255)
842 return 0;
f8efb73c 843 nhs++;
77ef013a 844
f8efb73c
RP
845 rtnh = rtnh_next(rtnh, &remaining);
846 }
847
848 /* leftover implies invalid nexthop configuration, discard it */
849 return remaining > 0 ? 0 : nhs;
850}
851
852static int mpls_nh_build_multi(struct mpls_route_config *cfg,
074350e2
DA
853 struct mpls_route *rt, u8 max_labels,
854 struct netlink_ext_ack *extack)
f8efb73c
RP
855{
856 struct rtnexthop *rtnh = cfg->rc_mp;
857 struct nlattr *nla_via, *nla_newdst;
858 int remaining = cfg->rc_mp_len;
f8efb73c 859 int err = 0;
77ef013a 860 u8 nhs = 0;
f8efb73c
RP
861
862 change_nexthops(rt) {
863 int attrlen;
864
865 nla_via = NULL;
866 nla_newdst = NULL;
867
868 err = -EINVAL;
869 if (!rtnh_ok(rtnh, remaining))
870 goto errout;
871
1c78efa8
RS
872 /* neither weighted multipath nor any flags
873 * are supported
874 */
875 if (rtnh->rtnh_hops || rtnh->rtnh_flags)
876 goto errout;
877
f8efb73c
RP
878 attrlen = rtnh_attrlen(rtnh);
879 if (attrlen > 0) {
880 struct nlattr *attrs = rtnh_attrs(rtnh);
881
882 nla_via = nla_find(attrs, attrlen, RTA_VIA);
883 nla_newdst = nla_find(attrs, attrlen, RTA_NEWDST);
884 }
885
cf4b24f0 886 err = mpls_nh_build(cfg->rc_nlinfo.nl_net, rt, nh,
a4ac8c98 887 rtnh->rtnh_ifindex, nla_via, nla_newdst,
074350e2 888 max_labels, extack);
f8efb73c
RP
889 if (err)
890 goto errout;
891
c89359a4
RP
892 if (nh->nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN))
893 rt->rt_nhn_alive--;
894
f8efb73c
RP
895 rtnh = rtnh_next(rtnh, &remaining);
896 nhs++;
897 } endfor_nexthops(rt);
898
899 rt->rt_nhn = nhs;
900
901 return 0;
902
903errout:
904 return err;
905}
906
074350e2
DA
907static bool mpls_label_ok(struct net *net, unsigned int index,
908 struct netlink_ext_ack *extack)
b7b386f4
DA
909{
910 /* Reserved labels may not be set */
074350e2
DA
911 if (index < MPLS_LABEL_FIRST_UNRESERVED) {
912 NL_SET_ERR_MSG(extack,
913 "Invalid label - must be MPLS_LABEL_FIRST_UNRESERVED or higher");
b7b386f4 914 return false;
074350e2 915 }
b7b386f4
DA
916
917 /* The full 20 bit range may not be supported. */
074350e2
DA
918 if (index >= net->mpls.platform_labels) {
919 NL_SET_ERR_MSG(extack,
920 "Label >= configured maximum in platform_labels");
b7b386f4 921 return false;
074350e2 922 }
b7b386f4
DA
923
924 return true;
925}
926
074350e2
DA
927static int mpls_route_add(struct mpls_route_config *cfg,
928 struct netlink_ext_ack *extack)
a2519929 929{
19d0c341 930 struct mpls_route __rcu **platform_label;
a2519929 931 struct net *net = cfg->rc_nlinfo.nl_net;
a2519929 932 struct mpls_route *rt, *old;
a2519929 933 int err = -EINVAL;
cf4b24f0 934 u8 max_via_alen;
f8efb73c 935 unsigned index;
a4ac8c98 936 u8 max_labels;
77ef013a 937 u8 nhs;
a2519929
EB
938
939 index = cfg->rc_label;
940
941 /* If a label was not specified during insert pick one */
942 if ((index == LABEL_NOT_SPECIFIED) &&
943 (cfg->rc_nlflags & NLM_F_CREATE)) {
944 index = find_free_label(net);
945 }
946
074350e2 947 if (!mpls_label_ok(net, index, extack))
a2519929
EB
948 goto errout;
949
a2519929 950 /* Append makes no sense with mpls */
0f7bbd58 951 err = -EOPNOTSUPP;
074350e2
DA
952 if (cfg->rc_nlflags & NLM_F_APPEND) {
953 NL_SET_ERR_MSG(extack, "MPLS does not support route append");
a2519929 954 goto errout;
074350e2 955 }
a2519929
EB
956
957 err = -EEXIST;
19d0c341
EB
958 platform_label = rtnl_dereference(net->mpls.platform_label);
959 old = rtnl_dereference(platform_label[index]);
a2519929
EB
960 if ((cfg->rc_nlflags & NLM_F_EXCL) && old)
961 goto errout;
962
963 err = -EEXIST;
964 if (!(cfg->rc_nlflags & NLM_F_REPLACE) && old)
965 goto errout;
966
967 err = -ENOENT;
968 if (!(cfg->rc_nlflags & NLM_F_CREATE) && !old)
969 goto errout;
970
cf4b24f0 971 err = -EINVAL;
a4ac8c98
DA
972 if (cfg->rc_mp) {
973 nhs = mpls_count_nexthops(cfg->rc_mp, cfg->rc_mp_len,
974 cfg->rc_via_alen, &max_via_alen,
975 &max_labels);
976 } else {
977 max_via_alen = cfg->rc_via_alen;
978 max_labels = cfg->rc_output_labels;
979 nhs = 1;
980 }
981
074350e2
DA
982 if (nhs == 0) {
983 NL_SET_ERR_MSG(extack, "Route does not contain a nexthop");
cf4b24f0 984 goto errout;
074350e2 985 }
f8efb73c 986
a2519929 987 err = -ENOMEM;
a4ac8c98 988 rt = mpls_rt_alloc(nhs, max_via_alen, max_labels);
df1c6316
DA
989 if (IS_ERR(rt)) {
990 err = PTR_ERR(rt);
a2519929 991 goto errout;
df1c6316 992 }
a2519929 993
a2519929 994 rt->rt_protocol = cfg->rc_protocol;
118d5234 995 rt->rt_payload_type = cfg->rc_payload_type;
5b441ac8 996 rt->rt_ttl_propagate = cfg->rc_ttl_propagate;
a2519929 997
f8efb73c 998 if (cfg->rc_mp)
074350e2 999 err = mpls_nh_build_multi(cfg, rt, max_labels, extack);
f8efb73c
RP
1000 else
1001 err = mpls_nh_build_from_cfg(cfg, rt);
1002 if (err)
1003 goto freert;
1004
1005 mpls_route_update(net, index, rt, &cfg->rc_nlinfo);
a2519929 1006
a2519929
EB
1007 return 0;
1008
f8efb73c
RP
1009freert:
1010 mpls_rt_free(rt);
a2519929 1011errout:
a2519929
EB
1012 return err;
1013}
1014
074350e2
DA
1015static int mpls_route_del(struct mpls_route_config *cfg,
1016 struct netlink_ext_ack *extack)
a2519929
EB
1017{
1018 struct net *net = cfg->rc_nlinfo.nl_net;
1019 unsigned index;
1020 int err = -EINVAL;
1021
1022 index = cfg->rc_label;
1023
074350e2 1024 if (!mpls_label_ok(net, index, extack))
a2519929
EB
1025 goto errout;
1026
f8efb73c 1027 mpls_route_update(net, index, NULL, &cfg->rc_nlinfo);
a2519929
EB
1028
1029 err = 0;
1030errout:
1031 return err;
1032}
1033
27d69105
RS
1034static void mpls_get_stats(struct mpls_dev *mdev,
1035 struct mpls_link_stats *stats)
1036{
1037 struct mpls_pcpu_stats *p;
1038 int i;
1039
1040 memset(stats, 0, sizeof(*stats));
1041
1042 for_each_possible_cpu(i) {
1043 struct mpls_link_stats local;
1044 unsigned int start;
1045
1046 p = per_cpu_ptr(mdev->stats, i);
1047 do {
1048 start = u64_stats_fetch_begin(&p->syncp);
1049 local = p->stats;
1050 } while (u64_stats_fetch_retry(&p->syncp, start));
1051
1052 stats->rx_packets += local.rx_packets;
1053 stats->rx_bytes += local.rx_bytes;
1054 stats->tx_packets += local.tx_packets;
1055 stats->tx_bytes += local.tx_bytes;
1056 stats->rx_errors += local.rx_errors;
1057 stats->tx_errors += local.tx_errors;
1058 stats->rx_dropped += local.rx_dropped;
1059 stats->tx_dropped += local.tx_dropped;
1060 stats->rx_noroute += local.rx_noroute;
1061 }
1062}
1063
1064static int mpls_fill_stats_af(struct sk_buff *skb,
1065 const struct net_device *dev)
1066{
1067 struct mpls_link_stats *stats;
1068 struct mpls_dev *mdev;
1069 struct nlattr *nla;
1070
1071 mdev = mpls_dev_get(dev);
1072 if (!mdev)
1073 return -ENODATA;
1074
1075 nla = nla_reserve_64bit(skb, MPLS_STATS_LINK,
1076 sizeof(struct mpls_link_stats),
1077 MPLS_STATS_UNSPEC);
1078 if (!nla)
1079 return -EMSGSIZE;
1080
1081 stats = nla_data(nla);
1082 mpls_get_stats(mdev, stats);
1083
1084 return 0;
1085}
1086
1087static size_t mpls_get_stats_af_size(const struct net_device *dev)
1088{
1089 struct mpls_dev *mdev;
1090
1091 mdev = mpls_dev_get(dev);
1092 if (!mdev)
1093 return 0;
1094
1095 return nla_total_size_64bit(sizeof(struct mpls_link_stats));
1096}
1097
24045a03
DA
1098static int mpls_netconf_fill_devconf(struct sk_buff *skb, struct mpls_dev *mdev,
1099 u32 portid, u32 seq, int event,
1100 unsigned int flags, int type)
1101{
1102 struct nlmsghdr *nlh;
1103 struct netconfmsg *ncm;
1104 bool all = false;
1105
1106 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
1107 flags);
1108 if (!nlh)
1109 return -EMSGSIZE;
1110
1111 if (type == NETCONFA_ALL)
1112 all = true;
1113
1114 ncm = nlmsg_data(nlh);
1115 ncm->ncm_family = AF_MPLS;
1116
1117 if (nla_put_s32(skb, NETCONFA_IFINDEX, mdev->dev->ifindex) < 0)
1118 goto nla_put_failure;
1119
1120 if ((all || type == NETCONFA_INPUT) &&
1121 nla_put_s32(skb, NETCONFA_INPUT,
1122 mdev->input_enabled) < 0)
1123 goto nla_put_failure;
1124
1125 nlmsg_end(skb, nlh);
1126 return 0;
1127
1128nla_put_failure:
1129 nlmsg_cancel(skb, nlh);
1130 return -EMSGSIZE;
1131}
1132
1133static int mpls_netconf_msgsize_devconf(int type)
1134{
1135 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
1136 + nla_total_size(4); /* NETCONFA_IFINDEX */
1137 bool all = false;
1138
1139 if (type == NETCONFA_ALL)
1140 all = true;
1141
1142 if (all || type == NETCONFA_INPUT)
1143 size += nla_total_size(4);
1144
1145 return size;
1146}
1147
823566ae
DA
1148static void mpls_netconf_notify_devconf(struct net *net, int event,
1149 int type, struct mpls_dev *mdev)
24045a03
DA
1150{
1151 struct sk_buff *skb;
1152 int err = -ENOBUFS;
1153
1154 skb = nlmsg_new(mpls_netconf_msgsize_devconf(type), GFP_KERNEL);
1155 if (!skb)
1156 goto errout;
1157
823566ae 1158 err = mpls_netconf_fill_devconf(skb, mdev, 0, 0, event, 0, type);
24045a03
DA
1159 if (err < 0) {
1160 /* -EMSGSIZE implies BUG in mpls_netconf_msgsize_devconf() */
1161 WARN_ON(err == -EMSGSIZE);
1162 kfree_skb(skb);
1163 goto errout;
1164 }
1165
1166 rtnl_notify(skb, net, 0, RTNLGRP_MPLS_NETCONF, NULL, GFP_KERNEL);
1167 return;
1168errout:
1169 if (err < 0)
1170 rtnl_set_sk_err(net, RTNLGRP_MPLS_NETCONF, err);
1171}
1172
1173static const struct nla_policy devconf_mpls_policy[NETCONFA_MAX + 1] = {
1174 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
1175};
1176
1177static int mpls_netconf_get_devconf(struct sk_buff *in_skb,
c21ef3e3
DA
1178 struct nlmsghdr *nlh,
1179 struct netlink_ext_ack *extack)
24045a03
DA
1180{
1181 struct net *net = sock_net(in_skb->sk);
1182 struct nlattr *tb[NETCONFA_MAX + 1];
1183 struct netconfmsg *ncm;
1184 struct net_device *dev;
1185 struct mpls_dev *mdev;
1186 struct sk_buff *skb;
1187 int ifindex;
1188 int err;
1189
1190 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
fceb6435 1191 devconf_mpls_policy, NULL);
24045a03
DA
1192 if (err < 0)
1193 goto errout;
1194
1195 err = -EINVAL;
1196 if (!tb[NETCONFA_IFINDEX])
1197 goto errout;
1198
1199 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
1200 dev = __dev_get_by_index(net, ifindex);
1201 if (!dev)
1202 goto errout;
1203
1204 mdev = mpls_dev_get(dev);
1205 if (!mdev)
1206 goto errout;
1207
1208 err = -ENOBUFS;
1209 skb = nlmsg_new(mpls_netconf_msgsize_devconf(NETCONFA_ALL), GFP_KERNEL);
1210 if (!skb)
1211 goto errout;
1212
1213 err = mpls_netconf_fill_devconf(skb, mdev,
1214 NETLINK_CB(in_skb).portid,
1215 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
1216 NETCONFA_ALL);
1217 if (err < 0) {
1218 /* -EMSGSIZE implies BUG in mpls_netconf_msgsize_devconf() */
1219 WARN_ON(err == -EMSGSIZE);
1220 kfree_skb(skb);
1221 goto errout;
1222 }
1223 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
1224errout:
1225 return err;
1226}
1227
1228static int mpls_netconf_dump_devconf(struct sk_buff *skb,
1229 struct netlink_callback *cb)
1230{
1231 struct net *net = sock_net(skb->sk);
1232 struct hlist_head *head;
1233 struct net_device *dev;
1234 struct mpls_dev *mdev;
1235 int idx, s_idx;
1236 int h, s_h;
1237
1238 s_h = cb->args[0];
1239 s_idx = idx = cb->args[1];
1240
1241 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1242 idx = 0;
1243 head = &net->dev_index_head[h];
1244 rcu_read_lock();
1245 cb->seq = net->dev_base_seq;
1246 hlist_for_each_entry_rcu(dev, head, index_hlist) {
1247 if (idx < s_idx)
1248 goto cont;
1249 mdev = mpls_dev_get(dev);
1250 if (!mdev)
1251 goto cont;
1252 if (mpls_netconf_fill_devconf(skb, mdev,
1253 NETLINK_CB(cb->skb).portid,
1254 cb->nlh->nlmsg_seq,
1255 RTM_NEWNETCONF,
1256 NLM_F_MULTI,
1257 NETCONFA_ALL) < 0) {
1258 rcu_read_unlock();
1259 goto done;
1260 }
1261 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1262cont:
1263 idx++;
1264 }
1265 rcu_read_unlock();
1266 }
1267done:
1268 cb->args[0] = h;
1269 cb->args[1] = idx;
1270
1271 return skb->len;
1272}
1273
37bde799
RS
1274#define MPLS_PERDEV_SYSCTL_OFFSET(field) \
1275 (&((struct mpls_dev *)0)->field)
1276
24045a03
DA
1277static int mpls_conf_proc(struct ctl_table *ctl, int write,
1278 void __user *buffer,
1279 size_t *lenp, loff_t *ppos)
1280{
1281 int oval = *(int *)ctl->data;
1282 int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
1283
1284 if (write) {
1285 struct mpls_dev *mdev = ctl->extra1;
1286 int i = (int *)ctl->data - (int *)mdev;
1287 struct net *net = ctl->extra2;
1288 int val = *(int *)ctl->data;
1289
1290 if (i == offsetof(struct mpls_dev, input_enabled) &&
1291 val != oval) {
823566ae
DA
1292 mpls_netconf_notify_devconf(net, RTM_NEWNETCONF,
1293 NETCONFA_INPUT, mdev);
24045a03
DA
1294 }
1295 }
1296
1297 return ret;
1298}
1299
37bde799
RS
1300static const struct ctl_table mpls_dev_table[] = {
1301 {
1302 .procname = "input",
1303 .maxlen = sizeof(int),
1304 .mode = 0644,
24045a03 1305 .proc_handler = mpls_conf_proc,
37bde799
RS
1306 .data = MPLS_PERDEV_SYSCTL_OFFSET(input_enabled),
1307 },
1308 { }
1309};
1310
1311static int mpls_dev_sysctl_register(struct net_device *dev,
1312 struct mpls_dev *mdev)
1313{
1314 char path[sizeof("net/mpls/conf/") + IFNAMSIZ];
24045a03 1315 struct net *net = dev_net(dev);
37bde799
RS
1316 struct ctl_table *table;
1317 int i;
1318
1319 table = kmemdup(&mpls_dev_table, sizeof(mpls_dev_table), GFP_KERNEL);
1320 if (!table)
1321 goto out;
1322
1323 /* Table data contains only offsets relative to the base of
1324 * the mdev at this point, so make them absolute.
1325 */
24045a03 1326 for (i = 0; i < ARRAY_SIZE(mpls_dev_table); i++) {
37bde799 1327 table[i].data = (char *)mdev + (uintptr_t)table[i].data;
24045a03
DA
1328 table[i].extra1 = mdev;
1329 table[i].extra2 = net;
1330 }
37bde799
RS
1331
1332 snprintf(path, sizeof(path), "net/mpls/conf/%s", dev->name);
1333
1182e4d0 1334 mdev->sysctl = register_net_sysctl(net, path, table);
37bde799
RS
1335 if (!mdev->sysctl)
1336 goto free;
1337
1182e4d0 1338 mpls_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL, mdev);
37bde799
RS
1339 return 0;
1340
1341free:
1342 kfree(table);
1343out:
1344 return -ENOBUFS;
1345}
1346
1182e4d0
DA
1347static void mpls_dev_sysctl_unregister(struct net_device *dev,
1348 struct mpls_dev *mdev)
37bde799 1349{
1182e4d0 1350 struct net *net = dev_net(dev);
37bde799
RS
1351 struct ctl_table *table;
1352
1353 table = mdev->sysctl->ctl_table_arg;
1354 unregister_net_sysctl_table(mdev->sysctl);
1355 kfree(table);
1182e4d0
DA
1356
1357 mpls_netconf_notify_devconf(net, RTM_DELNETCONF, 0, mdev);
37bde799
RS
1358}
1359
03c57747
RS
1360static struct mpls_dev *mpls_add_dev(struct net_device *dev)
1361{
1362 struct mpls_dev *mdev;
1363 int err = -ENOMEM;
27d69105 1364 int i;
03c57747
RS
1365
1366 ASSERT_RTNL();
1367
1368 mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
1369 if (!mdev)
1370 return ERR_PTR(err);
1371
27d69105
RS
1372 mdev->stats = alloc_percpu(struct mpls_pcpu_stats);
1373 if (!mdev->stats)
1374 goto free;
1375
1376 for_each_possible_cpu(i) {
1377 struct mpls_pcpu_stats *mpls_stats;
1378
1379 mpls_stats = per_cpu_ptr(mdev->stats, i);
1380 u64_stats_init(&mpls_stats->syncp);
1381 }
1382
1182e4d0
DA
1383 mdev->dev = dev;
1384
37bde799
RS
1385 err = mpls_dev_sysctl_register(dev, mdev);
1386 if (err)
1387 goto free;
1388
03c57747
RS
1389 rcu_assign_pointer(dev->mpls_ptr, mdev);
1390
1391 return mdev;
37bde799
RS
1392
1393free:
27d69105 1394 free_percpu(mdev->stats);
37bde799
RS
1395 kfree(mdev);
1396 return ERR_PTR(err);
03c57747
RS
1397}
1398
27d69105
RS
1399static void mpls_dev_destroy_rcu(struct rcu_head *head)
1400{
1401 struct mpls_dev *mdev = container_of(head, struct mpls_dev, rcu);
1402
1403 free_percpu(mdev->stats);
1404 kfree(mdev);
1405}
1406
c89359a4 1407static void mpls_ifdown(struct net_device *dev, int event)
0189197f 1408{
19d0c341 1409 struct mpls_route __rcu **platform_label;
0189197f 1410 struct net *net = dev_net(dev);
77ef013a 1411 u8 alive, deleted;
0189197f
EB
1412 unsigned index;
1413
19d0c341 1414 platform_label = rtnl_dereference(net->mpls.platform_label);
0189197f 1415 for (index = 0; index < net->mpls.platform_labels; index++) {
19d0c341 1416 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
c89359a4 1417
0189197f
EB
1418 if (!rt)
1419 continue;
c89359a4 1420
61733c91 1421 alive = 0;
4ea8efad 1422 deleted = 0;
c89359a4 1423 change_nexthops(rt) {
39eb8cd1
DA
1424 unsigned int nh_flags = nh->nh_flags;
1425
f8efb73c 1426 if (rtnl_dereference(nh->nh_dev) != dev)
61733c91
DA
1427 goto next;
1428
c89359a4
RP
1429 switch (event) {
1430 case NETDEV_DOWN:
1431 case NETDEV_UNREGISTER:
39eb8cd1 1432 nh_flags |= RTNH_F_DEAD;
c89359a4
RP
1433 /* fall through */
1434 case NETDEV_CHANGE:
39eb8cd1 1435 nh_flags |= RTNH_F_LINKDOWN;
c89359a4
RP
1436 break;
1437 }
1438 if (event == NETDEV_UNREGISTER)
1439 RCU_INIT_POINTER(nh->nh_dev, NULL);
39eb8cd1
DA
1440
1441 if (nh->nh_flags != nh_flags)
1442 WRITE_ONCE(nh->nh_flags, nh_flags);
61733c91 1443next:
39eb8cd1 1444 if (!(nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN)))
61733c91 1445 alive++;
4ea8efad
DA
1446 if (!rtnl_dereference(nh->nh_dev))
1447 deleted++;
f8efb73c 1448 } endfor_nexthops(rt);
61733c91
DA
1449
1450 WRITE_ONCE(rt->rt_nhn_alive, alive);
4ea8efad
DA
1451
1452 /* if there are no more nexthops, delete the route */
1453 if (event == NETDEV_UNREGISTER && deleted == rt->rt_nhn)
1454 mpls_route_update(net, index, NULL, NULL);
0189197f 1455 }
c89359a4
RP
1456}
1457
39eb8cd1 1458static void mpls_ifup(struct net_device *dev, unsigned int flags)
c89359a4
RP
1459{
1460 struct mpls_route __rcu **platform_label;
1461 struct net *net = dev_net(dev);
1462 unsigned index;
77ef013a 1463 u8 alive;
c89359a4
RP
1464
1465 platform_label = rtnl_dereference(net->mpls.platform_label);
1466 for (index = 0; index < net->mpls.platform_labels; index++) {
1467 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
1468
1469 if (!rt)
1470 continue;
37bde799 1471
c89359a4
RP
1472 alive = 0;
1473 change_nexthops(rt) {
39eb8cd1 1474 unsigned int nh_flags = nh->nh_flags;
c89359a4
RP
1475 struct net_device *nh_dev =
1476 rtnl_dereference(nh->nh_dev);
03c57747 1477
39eb8cd1 1478 if (!(nh_flags & flags)) {
c89359a4
RP
1479 alive++;
1480 continue;
1481 }
1482 if (nh_dev != dev)
1483 continue;
1484 alive++;
39eb8cd1 1485 nh_flags &= ~flags;
c2e8471d 1486 WRITE_ONCE(nh->nh_flags, nh_flags);
c89359a4
RP
1487 } endfor_nexthops(rt);
1488
39eb8cd1 1489 WRITE_ONCE(rt->rt_nhn_alive, alive);
c89359a4 1490 }
0189197f
EB
1491}
1492
1493static int mpls_dev_notify(struct notifier_block *this, unsigned long event,
1494 void *ptr)
1495{
1496 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
03c57747 1497 struct mpls_dev *mdev;
c89359a4 1498 unsigned int flags;
0189197f 1499
c89359a4 1500 if (event == NETDEV_REGISTER) {
407f31be 1501 /* For now just support Ethernet, IPGRE, SIT and IPIP devices */
0d227a86
SH
1502 if (dev->type == ARPHRD_ETHER ||
1503 dev->type == ARPHRD_LOOPBACK ||
407f31be
SH
1504 dev->type == ARPHRD_IPGRE ||
1505 dev->type == ARPHRD_SIT ||
1506 dev->type == ARPHRD_TUNNEL) {
03c57747
RS
1507 mdev = mpls_add_dev(dev);
1508 if (IS_ERR(mdev))
1509 return notifier_from_errno(PTR_ERR(mdev));
1510 }
c89359a4
RP
1511 return NOTIFY_OK;
1512 }
03c57747 1513
c89359a4
RP
1514 mdev = mpls_dev_get(dev);
1515 if (!mdev)
1516 return NOTIFY_OK;
1517
1518 switch (event) {
1519 case NETDEV_DOWN:
1520 mpls_ifdown(dev, event);
1521 break;
1522 case NETDEV_UP:
1523 flags = dev_get_flags(dev);
1524 if (flags & (IFF_RUNNING | IFF_LOWER_UP))
1525 mpls_ifup(dev, RTNH_F_DEAD | RTNH_F_LINKDOWN);
1526 else
1527 mpls_ifup(dev, RTNH_F_DEAD);
1528 break;
1529 case NETDEV_CHANGE:
1530 flags = dev_get_flags(dev);
1531 if (flags & (IFF_RUNNING | IFF_LOWER_UP))
1532 mpls_ifup(dev, RTNH_F_DEAD | RTNH_F_LINKDOWN);
1533 else
1534 mpls_ifdown(dev, event);
1535 break;
0189197f 1536 case NETDEV_UNREGISTER:
c89359a4
RP
1537 mpls_ifdown(dev, event);
1538 mdev = mpls_dev_get(dev);
1539 if (mdev) {
1182e4d0 1540 mpls_dev_sysctl_unregister(dev, mdev);
c89359a4 1541 RCU_INIT_POINTER(dev->mpls_ptr, NULL);
27d69105 1542 call_rcu(&mdev->rcu, mpls_dev_destroy_rcu);
c89359a4 1543 }
0189197f 1544 break;
0fae3bf0
RS
1545 case NETDEV_CHANGENAME:
1546 mdev = mpls_dev_get(dev);
1547 if (mdev) {
1548 int err;
1549
1182e4d0 1550 mpls_dev_sysctl_unregister(dev, mdev);
0fae3bf0
RS
1551 err = mpls_dev_sysctl_register(dev, mdev);
1552 if (err)
1553 return notifier_from_errno(err);
1554 }
1555 break;
0189197f
EB
1556 }
1557 return NOTIFY_OK;
1558}
1559
1560static struct notifier_block mpls_dev_notifier = {
1561 .notifier_call = mpls_dev_notify,
1562};
1563
03c05665 1564static int nla_put_via(struct sk_buff *skb,
b79bda3d 1565 u8 table, const void *addr, int alen)
03c05665 1566{
b79bda3d
EB
1567 static const int table_to_family[NEIGH_NR_TABLES + 1] = {
1568 AF_INET, AF_INET6, AF_DECnet, AF_PACKET,
1569 };
03c05665
EB
1570 struct nlattr *nla;
1571 struct rtvia *via;
b79bda3d 1572 int family = AF_UNSPEC;
03c05665
EB
1573
1574 nla = nla_reserve(skb, RTA_VIA, alen + 2);
1575 if (!nla)
1576 return -EMSGSIZE;
1577
b79bda3d
EB
1578 if (table <= NEIGH_NR_TABLES)
1579 family = table_to_family[table];
1580
03c05665
EB
1581 via = nla_data(nla);
1582 via->rtvia_family = family;
1583 memcpy(via->rtvia_addr, addr, alen);
1584 return 0;
1585}
1586
966bae33
EB
1587int nla_put_labels(struct sk_buff *skb, int attrtype,
1588 u8 labels, const u32 label[])
1589{
1590 struct nlattr *nla;
1591 struct mpls_shim_hdr *nla_label;
1592 bool bos;
1593 int i;
1594 nla = nla_reserve(skb, attrtype, labels*4);
1595 if (!nla)
1596 return -EMSGSIZE;
1597
1598 nla_label = nla_data(nla);
1599 bos = true;
1600 for (i = labels - 1; i >= 0; i--) {
1601 nla_label[i] = mpls_entry_encode(label[i], 0, 0, bos);
1602 bos = false;
1603 }
1604
1605 return 0;
1606}
face0188 1607EXPORT_SYMBOL_GPL(nla_put_labels);
966bae33 1608
a1f10abe
DA
1609int nla_get_labels(const struct nlattr *nla, u8 max_labels, u8 *labels,
1610 u32 label[], struct netlink_ext_ack *extack)
966bae33
EB
1611{
1612 unsigned len = nla_len(nla);
966bae33 1613 struct mpls_shim_hdr *nla_label;
a4ac8c98 1614 u8 nla_labels;
966bae33
EB
1615 bool bos;
1616 int i;
1617
a4ac8c98
DA
1618 /* len needs to be an even multiple of 4 (the label size). Number
1619 * of labels is a u8 so check for overflow.
1620 */
a1f10abe
DA
1621 if (len & 3 || len / 4 > 255) {
1622 NL_SET_ERR_MSG_ATTR(extack, nla,
1623 "Invalid length for labels attribute");
966bae33 1624 return -EINVAL;
a1f10abe 1625 }
966bae33
EB
1626
1627 /* Limit the number of new labels allowed */
1628 nla_labels = len/4;
a1f10abe
DA
1629 if (nla_labels > max_labels) {
1630 NL_SET_ERR_MSG(extack, "Too many labels");
966bae33 1631 return -EINVAL;
a1f10abe 1632 }
966bae33 1633
a4ac8c98
DA
1634 /* when label == NULL, caller wants number of labels */
1635 if (!label)
1636 goto out;
1637
966bae33
EB
1638 nla_label = nla_data(nla);
1639 bos = true;
1640 for (i = nla_labels - 1; i >= 0; i--, bos = false) {
1641 struct mpls_entry_decoded dec;
1642 dec = mpls_entry_decode(nla_label + i);
1643
1644 /* Ensure the bottom of stack flag is properly set
1645 * and ttl and tc are both clear.
1646 */
a1f10abe
DA
1647 if (dec.ttl) {
1648 NL_SET_ERR_MSG_ATTR(extack, nla,
1649 "TTL in label must be 0");
1650 return -EINVAL;
1651 }
1652
1653 if (dec.tc) {
1654 NL_SET_ERR_MSG_ATTR(extack, nla,
1655 "Traffic class in label must be 0");
966bae33 1656 return -EINVAL;
a1f10abe
DA
1657 }
1658
1659 if (dec.bos != bos) {
1660 NL_SET_BAD_ATTR(extack, nla);
1661 if (bos) {
1662 NL_SET_ERR_MSG(extack,
1663 "BOS bit must be set in first label");
1664 } else {
1665 NL_SET_ERR_MSG(extack,
1666 "BOS bit can only be set in first label");
1667 }
1668 return -EINVAL;
1669 }
966bae33 1670
5a9ab017 1671 switch (dec.label) {
78f5b899 1672 case MPLS_LABEL_IMPLNULL:
5a9ab017
RS
1673 /* RFC3032: This is a label that an LSR may
1674 * assign and distribute, but which never
1675 * actually appears in the encapsulation.
1676 */
a1f10abe
DA
1677 NL_SET_ERR_MSG_ATTR(extack, nla,
1678 "Implicit NULL Label (3) can not be used in encapsulation");
5a9ab017
RS
1679 return -EINVAL;
1680 }
1681
966bae33
EB
1682 label[i] = dec.label;
1683 }
a4ac8c98 1684out:
966bae33
EB
1685 *labels = nla_labels;
1686 return 0;
1687}
face0188 1688EXPORT_SYMBOL_GPL(nla_get_labels);
966bae33 1689
074350e2
DA
1690static int rtm_to_route_config(struct sk_buff *skb,
1691 struct nlmsghdr *nlh,
1692 struct mpls_route_config *cfg,
1693 struct netlink_ext_ack *extack)
03c05665
EB
1694{
1695 struct rtmsg *rtm;
1696 struct nlattr *tb[RTA_MAX+1];
1697 int index;
1698 int err;
1699
fceb6435 1700 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_mpls_policy,
074350e2 1701 extack);
03c05665
EB
1702 if (err < 0)
1703 goto errout;
1704
1705 err = -EINVAL;
1706 rtm = nlmsg_data(nlh);
03c05665 1707
074350e2
DA
1708 if (rtm->rtm_family != AF_MPLS) {
1709 NL_SET_ERR_MSG(extack, "Invalid address family in rtmsg");
03c05665 1710 goto errout;
074350e2
DA
1711 }
1712 if (rtm->rtm_dst_len != 20) {
1713 NL_SET_ERR_MSG(extack, "rtm_dst_len must be 20 for MPLS");
03c05665 1714 goto errout;
074350e2
DA
1715 }
1716 if (rtm->rtm_src_len != 0) {
1717 NL_SET_ERR_MSG(extack, "rtm_src_len must be 0 for MPLS");
03c05665 1718 goto errout;
074350e2
DA
1719 }
1720 if (rtm->rtm_tos != 0) {
1721 NL_SET_ERR_MSG(extack, "rtm_tos must be 0 for MPLS");
03c05665 1722 goto errout;
074350e2
DA
1723 }
1724 if (rtm->rtm_table != RT_TABLE_MAIN) {
1725 NL_SET_ERR_MSG(extack,
1726 "MPLS only supports the main route table");
03c05665 1727 goto errout;
074350e2 1728 }
03c05665
EB
1729 /* Any value is acceptable for rtm_protocol */
1730
1731 /* As mpls uses destination specific addresses
1732 * (or source specific address in the case of multicast)
1733 * all addresses have universal scope.
1734 */
074350e2
DA
1735 if (rtm->rtm_scope != RT_SCOPE_UNIVERSE) {
1736 NL_SET_ERR_MSG(extack,
1737 "Invalid route scope - MPLS only supports UNIVERSE");
03c05665 1738 goto errout;
074350e2
DA
1739 }
1740 if (rtm->rtm_type != RTN_UNICAST) {
1741 NL_SET_ERR_MSG(extack,
1742 "Invalid route type - MPLS only supports UNICAST");
03c05665 1743 goto errout;
074350e2
DA
1744 }
1745 if (rtm->rtm_flags != 0) {
1746 NL_SET_ERR_MSG(extack, "rtm_flags must be 0 for MPLS");
03c05665 1747 goto errout;
074350e2 1748 }
03c05665
EB
1749
1750 cfg->rc_label = LABEL_NOT_SPECIFIED;
1751 cfg->rc_protocol = rtm->rtm_protocol;
eb7809f0 1752 cfg->rc_via_table = MPLS_NEIGH_TABLE_UNSPEC;
5b441ac8 1753 cfg->rc_ttl_propagate = MPLS_TTL_PROP_DEFAULT;
03c05665
EB
1754 cfg->rc_nlflags = nlh->nlmsg_flags;
1755 cfg->rc_nlinfo.portid = NETLINK_CB(skb).portid;
1756 cfg->rc_nlinfo.nlh = nlh;
1757 cfg->rc_nlinfo.nl_net = sock_net(skb->sk);
1758
1759 for (index = 0; index <= RTA_MAX; index++) {
1760 struct nlattr *nla = tb[index];
1761 if (!nla)
1762 continue;
1763
14dd3e1b 1764 switch (index) {
03c05665
EB
1765 case RTA_OIF:
1766 cfg->rc_ifindex = nla_get_u32(nla);
1767 break;
1768 case RTA_NEWDST:
1769 if (nla_get_labels(nla, MAX_NEW_LABELS,
1770 &cfg->rc_output_labels,
074350e2 1771 cfg->rc_output_label, extack))
03c05665
EB
1772 goto errout;
1773 break;
1774 case RTA_DST:
1775 {
f8efb73c 1776 u8 label_count;
03c05665 1777 if (nla_get_labels(nla, 1, &label_count,
074350e2 1778 &cfg->rc_label, extack))
03c05665
EB
1779 goto errout;
1780
b7b386f4 1781 if (!mpls_label_ok(cfg->rc_nlinfo.nl_net,
074350e2 1782 cfg->rc_label, extack))
03c05665 1783 goto errout;
03c05665
EB
1784 break;
1785 }
1786 case RTA_VIA:
1787 {
f8efb73c 1788 if (nla_get_via(nla, &cfg->rc_via_alen,
074350e2
DA
1789 &cfg->rc_via_table, cfg->rc_via,
1790 extack))
03c05665 1791 goto errout;
f8efb73c
RP
1792 break;
1793 }
1794 case RTA_MULTIPATH:
1795 {
1796 cfg->rc_mp = nla_data(nla);
1797 cfg->rc_mp_len = nla_len(nla);
03c05665
EB
1798 break;
1799 }
5b441ac8
RS
1800 case RTA_TTL_PROPAGATE:
1801 {
1802 u8 ttl_propagate = nla_get_u8(nla);
1803
074350e2
DA
1804 if (ttl_propagate > 1) {
1805 NL_SET_ERR_MSG_ATTR(extack, nla,
1806 "RTA_TTL_PROPAGATE can only be 0 or 1");
5b441ac8 1807 goto errout;
074350e2 1808 }
5b441ac8
RS
1809 cfg->rc_ttl_propagate = ttl_propagate ?
1810 MPLS_TTL_PROP_ENABLED :
1811 MPLS_TTL_PROP_DISABLED;
1812 break;
1813 }
03c05665 1814 default:
074350e2 1815 NL_SET_ERR_MSG_ATTR(extack, nla, "Unknown attribute");
03c05665
EB
1816 /* Unsupported attribute */
1817 goto errout;
1818 }
1819 }
1820
1821 err = 0;
1822errout:
1823 return err;
1824}
1825
c21ef3e3
DA
1826static int mpls_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
1827 struct netlink_ext_ack *extack)
03c05665 1828{
a4ac8c98 1829 struct mpls_route_config *cfg;
03c05665
EB
1830 int err;
1831
a4ac8c98
DA
1832 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1833 if (!cfg)
1834 return -ENOMEM;
1835
074350e2 1836 err = rtm_to_route_config(skb, nlh, cfg, extack);
03c05665 1837 if (err < 0)
a4ac8c98 1838 goto out;
03c05665 1839
074350e2 1840 err = mpls_route_del(cfg, extack);
a4ac8c98
DA
1841out:
1842 kfree(cfg);
1843
1844 return err;
03c05665
EB
1845}
1846
1847
c21ef3e3
DA
1848static int mpls_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
1849 struct netlink_ext_ack *extack)
03c05665 1850{
a4ac8c98 1851 struct mpls_route_config *cfg;
03c05665
EB
1852 int err;
1853
a4ac8c98
DA
1854 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1855 if (!cfg)
1856 return -ENOMEM;
1857
074350e2 1858 err = rtm_to_route_config(skb, nlh, cfg, extack);
03c05665 1859 if (err < 0)
a4ac8c98 1860 goto out;
03c05665 1861
074350e2 1862 err = mpls_route_add(cfg, extack);
a4ac8c98
DA
1863out:
1864 kfree(cfg);
1865
1866 return err;
03c05665
EB
1867}
1868
1869static int mpls_dump_route(struct sk_buff *skb, u32 portid, u32 seq, int event,
1870 u32 label, struct mpls_route *rt, int flags)
1871{
19d0c341 1872 struct net_device *dev;
03c05665
EB
1873 struct nlmsghdr *nlh;
1874 struct rtmsg *rtm;
1875
1876 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), flags);
1877 if (nlh == NULL)
1878 return -EMSGSIZE;
1879
1880 rtm = nlmsg_data(nlh);
1881 rtm->rtm_family = AF_MPLS;
1882 rtm->rtm_dst_len = 20;
1883 rtm->rtm_src_len = 0;
1884 rtm->rtm_tos = 0;
1885 rtm->rtm_table = RT_TABLE_MAIN;
1886 rtm->rtm_protocol = rt->rt_protocol;
1887 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
1888 rtm->rtm_type = RTN_UNICAST;
1889 rtm->rtm_flags = 0;
1890
03c05665
EB
1891 if (nla_put_labels(skb, RTA_DST, 1, &label))
1892 goto nla_put_failure;
5b441ac8
RS
1893
1894 if (rt->rt_ttl_propagate != MPLS_TTL_PROP_DEFAULT) {
1895 bool ttl_propagate =
1896 rt->rt_ttl_propagate == MPLS_TTL_PROP_ENABLED;
1897
1898 if (nla_put_u8(skb, RTA_TTL_PROPAGATE,
1899 ttl_propagate))
1900 goto nla_put_failure;
1901 }
f8efb73c 1902 if (rt->rt_nhn == 1) {
cf4b24f0 1903 const struct mpls_nh *nh = rt->rt_nh;
f8efb73c
RP
1904
1905 if (nh->nh_labels &&
1906 nla_put_labels(skb, RTA_NEWDST, nh->nh_labels,
1907 nh->nh_label))
1908 goto nla_put_failure;
eb7809f0 1909 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC &&
72dcac96 1910 nla_put_via(skb, nh->nh_via_table, mpls_nh_via(rt, nh),
f8efb73c
RP
1911 nh->nh_via_alen))
1912 goto nla_put_failure;
1913 dev = rtnl_dereference(nh->nh_dev);
1914 if (dev && nla_put_u32(skb, RTA_OIF, dev->ifindex))
1915 goto nla_put_failure;
c89359a4
RP
1916 if (nh->nh_flags & RTNH_F_LINKDOWN)
1917 rtm->rtm_flags |= RTNH_F_LINKDOWN;
1918 if (nh->nh_flags & RTNH_F_DEAD)
1919 rtm->rtm_flags |= RTNH_F_DEAD;
f8efb73c
RP
1920 } else {
1921 struct rtnexthop *rtnh;
1922 struct nlattr *mp;
77ef013a
DA
1923 u8 linkdown = 0;
1924 u8 dead = 0;
f8efb73c
RP
1925
1926 mp = nla_nest_start(skb, RTA_MULTIPATH);
1927 if (!mp)
1928 goto nla_put_failure;
1929
1930 for_nexthops(rt) {
c00e51dd
DA
1931 dev = rtnl_dereference(nh->nh_dev);
1932 if (!dev)
1933 continue;
1934
f8efb73c
RP
1935 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
1936 if (!rtnh)
1937 goto nla_put_failure;
1938
c00e51dd 1939 rtnh->rtnh_ifindex = dev->ifindex;
c89359a4
RP
1940 if (nh->nh_flags & RTNH_F_LINKDOWN) {
1941 rtnh->rtnh_flags |= RTNH_F_LINKDOWN;
1942 linkdown++;
1943 }
1944 if (nh->nh_flags & RTNH_F_DEAD) {
1945 rtnh->rtnh_flags |= RTNH_F_DEAD;
1946 dead++;
1947 }
1948
f8efb73c
RP
1949 if (nh->nh_labels && nla_put_labels(skb, RTA_NEWDST,
1950 nh->nh_labels,
1951 nh->nh_label))
1952 goto nla_put_failure;
f20367df
RS
1953 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC &&
1954 nla_put_via(skb, nh->nh_via_table,
cf4b24f0 1955 mpls_nh_via(rt, nh),
f8efb73c
RP
1956 nh->nh_via_alen))
1957 goto nla_put_failure;
1958
1959 /* length of rtnetlink header + attributes */
1960 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
1961 } endfor_nexthops(rt);
1962
c89359a4
RP
1963 if (linkdown == rt->rt_nhn)
1964 rtm->rtm_flags |= RTNH_F_LINKDOWN;
1965 if (dead == rt->rt_nhn)
1966 rtm->rtm_flags |= RTNH_F_DEAD;
1967
f8efb73c
RP
1968 nla_nest_end(skb, mp);
1969 }
03c05665
EB
1970
1971 nlmsg_end(skb, nlh);
1972 return 0;
1973
1974nla_put_failure:
1975 nlmsg_cancel(skb, nlh);
1976 return -EMSGSIZE;
1977}
1978
1979static int mpls_dump_routes(struct sk_buff *skb, struct netlink_callback *cb)
1980{
1981 struct net *net = sock_net(skb->sk);
19d0c341
EB
1982 struct mpls_route __rcu **platform_label;
1983 size_t platform_labels;
03c05665
EB
1984 unsigned int index;
1985
1986 ASSERT_RTNL();
1987
1988 index = cb->args[0];
a6affd24
RS
1989 if (index < MPLS_LABEL_FIRST_UNRESERVED)
1990 index = MPLS_LABEL_FIRST_UNRESERVED;
03c05665 1991
19d0c341
EB
1992 platform_label = rtnl_dereference(net->mpls.platform_label);
1993 platform_labels = net->mpls.platform_labels;
1994 for (; index < platform_labels; index++) {
03c05665 1995 struct mpls_route *rt;
19d0c341 1996 rt = rtnl_dereference(platform_label[index]);
03c05665
EB
1997 if (!rt)
1998 continue;
1999
2000 if (mpls_dump_route(skb, NETLINK_CB(cb->skb).portid,
2001 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
2002 index, rt, NLM_F_MULTI) < 0)
2003 break;
2004 }
2005 cb->args[0] = index;
2006
2007 return skb->len;
2008}
2009
8de147dc
EB
2010static inline size_t lfib_nlmsg_size(struct mpls_route *rt)
2011{
2012 size_t payload =
2013 NLMSG_ALIGN(sizeof(struct rtmsg))
5b441ac8
RS
2014 + nla_total_size(4) /* RTA_DST */
2015 + nla_total_size(1); /* RTA_TTL_PROPAGATE */
f8efb73c
RP
2016
2017 if (rt->rt_nhn == 1) {
2018 struct mpls_nh *nh = rt->rt_nh;
2019
2020 if (nh->nh_dev)
2021 payload += nla_total_size(4); /* RTA_OIF */
eb7809f0 2022 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC) /* RTA_VIA */
72dcac96 2023 payload += nla_total_size(2 + nh->nh_via_alen);
f8efb73c
RP
2024 if (nh->nh_labels) /* RTA_NEWDST */
2025 payload += nla_total_size(nh->nh_labels * 4);
2026 } else {
2027 /* each nexthop is packed in an attribute */
2028 size_t nhsize = 0;
2029
2030 for_nexthops(rt) {
e944e97a
DA
2031 if (!rtnl_dereference(nh->nh_dev))
2032 continue;
f8efb73c 2033 nhsize += nla_total_size(sizeof(struct rtnexthop));
f20367df
RS
2034 /* RTA_VIA */
2035 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC)
2036 nhsize += nla_total_size(2 + nh->nh_via_alen);
f8efb73c
RP
2037 if (nh->nh_labels)
2038 nhsize += nla_total_size(nh->nh_labels * 4);
2039 } endfor_nexthops(rt);
2040 /* nested attribute */
2041 payload += nla_total_size(nhsize);
2042 }
2043
8de147dc
EB
2044 return payload;
2045}
2046
2047static void rtmsg_lfib(int event, u32 label, struct mpls_route *rt,
2048 struct nlmsghdr *nlh, struct net *net, u32 portid,
2049 unsigned int nlm_flags)
2050{
2051 struct sk_buff *skb;
2052 u32 seq = nlh ? nlh->nlmsg_seq : 0;
2053 int err = -ENOBUFS;
2054
2055 skb = nlmsg_new(lfib_nlmsg_size(rt), GFP_KERNEL);
2056 if (skb == NULL)
2057 goto errout;
2058
2059 err = mpls_dump_route(skb, portid, seq, event, label, rt, nlm_flags);
2060 if (err < 0) {
2061 /* -EMSGSIZE implies BUG in lfib_nlmsg_size */
2062 WARN_ON(err == -EMSGSIZE);
2063 kfree_skb(skb);
2064 goto errout;
2065 }
2066 rtnl_notify(skb, net, portid, RTNLGRP_MPLS_ROUTE, nlh, GFP_KERNEL);
2067
2068 return;
2069errout:
2070 if (err < 0)
2071 rtnl_set_sk_err(net, RTNLGRP_MPLS_ROUTE, err);
2072}
2073
397fc9e5
RP
2074static int mpls_getroute(struct sk_buff *in_skb, struct nlmsghdr *in_nlh,
2075 struct netlink_ext_ack *extack)
2076{
2077 struct net *net = sock_net(in_skb->sk);
2078 u32 portid = NETLINK_CB(in_skb).portid;
a906c1aa 2079 u32 in_label = LABEL_NOT_SPECIFIED;
397fc9e5
RP
2080 struct nlattr *tb[RTA_MAX + 1];
2081 u32 labels[MAX_NEW_LABELS];
2082 struct mpls_shim_hdr *hdr;
2083 unsigned int hdr_size = 0;
2084 struct net_device *dev;
2085 struct mpls_route *rt;
2086 struct rtmsg *rtm, *r;
2087 struct nlmsghdr *nlh;
2088 struct sk_buff *skb;
2089 struct mpls_nh *nh;
397fc9e5 2090 u8 n_labels;
a906c1aa 2091 int err;
397fc9e5
RP
2092
2093 err = nlmsg_parse(in_nlh, sizeof(*rtm), tb, RTA_MAX,
ca4a1cd9 2094 rtm_mpls_policy, extack);
397fc9e5
RP
2095 if (err < 0)
2096 goto errout;
2097
2098 rtm = nlmsg_data(in_nlh);
2099
2100 if (tb[RTA_DST]) {
2101 u8 label_count;
2102
2103 if (nla_get_labels(tb[RTA_DST], 1, &label_count,
a906c1aa
RP
2104 &in_label, extack)) {
2105 err = -EINVAL;
397fc9e5 2106 goto errout;
a906c1aa 2107 }
397fc9e5 2108
a906c1aa
RP
2109 if (!mpls_label_ok(net, in_label, extack)) {
2110 err = -EINVAL;
397fc9e5 2111 goto errout;
a906c1aa 2112 }
397fc9e5
RP
2113 }
2114
2115 rt = mpls_route_input_rcu(net, in_label);
2116 if (!rt) {
2117 err = -ENETUNREACH;
2118 goto errout;
2119 }
2120
2121 if (rtm->rtm_flags & RTM_F_FIB_MATCH) {
2122 skb = nlmsg_new(lfib_nlmsg_size(rt), GFP_KERNEL);
2123 if (!skb) {
2124 err = -ENOBUFS;
2125 goto errout;
2126 }
2127
2128 err = mpls_dump_route(skb, portid, in_nlh->nlmsg_seq,
2129 RTM_NEWROUTE, in_label, rt, 0);
2130 if (err < 0) {
2131 /* -EMSGSIZE implies BUG in lfib_nlmsg_size */
2132 WARN_ON(err == -EMSGSIZE);
2133 goto errout_free;
2134 }
2135
2136 return rtnl_unicast(skb, net, portid);
2137 }
2138
2139 if (tb[RTA_NEWDST]) {
2140 if (nla_get_labels(tb[RTA_NEWDST], MAX_NEW_LABELS, &n_labels,
2141 labels, extack) != 0) {
2142 err = -EINVAL;
2143 goto errout;
2144 }
2145
2146 hdr_size = n_labels * sizeof(struct mpls_shim_hdr);
2147 }
2148
2149 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2150 if (!skb) {
2151 err = -ENOBUFS;
2152 goto errout;
2153 }
2154
2155 skb->protocol = htons(ETH_P_MPLS_UC);
2156
2157 if (hdr_size) {
2158 bool bos;
2159 int i;
2160
2161 if (skb_cow(skb, hdr_size)) {
2162 err = -ENOBUFS;
2163 goto errout_free;
2164 }
2165
2166 skb_reserve(skb, hdr_size);
2167 skb_push(skb, hdr_size);
2168 skb_reset_network_header(skb);
2169
2170 /* Push new labels */
2171 hdr = mpls_hdr(skb);
2172 bos = true;
2173 for (i = n_labels - 1; i >= 0; i--) {
2174 hdr[i] = mpls_entry_encode(labels[i],
2175 1, 0, bos);
2176 bos = false;
2177 }
2178 }
2179
2180 nh = mpls_select_multipath(rt, skb);
2181 if (!nh) {
2182 err = -ENETUNREACH;
2183 goto errout_free;
2184 }
2185
2186 if (hdr_size) {
2187 skb_pull(skb, hdr_size);
2188 skb_reset_network_header(skb);
2189 }
2190
2191 nlh = nlmsg_put(skb, portid, in_nlh->nlmsg_seq,
2192 RTM_NEWROUTE, sizeof(*r), 0);
2193 if (!nlh) {
2194 err = -EMSGSIZE;
2195 goto errout_free;
2196 }
2197
2198 r = nlmsg_data(nlh);
2199 r->rtm_family = AF_MPLS;
2200 r->rtm_dst_len = 20;
2201 r->rtm_src_len = 0;
2202 r->rtm_table = RT_TABLE_MAIN;
2203 r->rtm_type = RTN_UNICAST;
2204 r->rtm_scope = RT_SCOPE_UNIVERSE;
2205 r->rtm_protocol = rt->rt_protocol;
2206 r->rtm_flags = 0;
2207
2208 if (nla_put_labels(skb, RTA_DST, 1, &in_label))
2209 goto nla_put_failure;
2210
2211 if (nh->nh_labels &&
2212 nla_put_labels(skb, RTA_NEWDST, nh->nh_labels,
2213 nh->nh_label))
2214 goto nla_put_failure;
2215
2216 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC &&
2217 nla_put_via(skb, nh->nh_via_table, mpls_nh_via(rt, nh),
2218 nh->nh_via_alen))
2219 goto nla_put_failure;
2220 dev = rtnl_dereference(nh->nh_dev);
2221 if (dev && nla_put_u32(skb, RTA_OIF, dev->ifindex))
2222 goto nla_put_failure;
2223
2224 nlmsg_end(skb, nlh);
2225
2226 err = rtnl_unicast(skb, net, portid);
2227errout:
2228 return err;
2229
2230nla_put_failure:
2231 nlmsg_cancel(skb, nlh);
2232 err = -EMSGSIZE;
2233errout_free:
2234 kfree_skb(skb);
2235 return err;
2236}
2237
7720c01f
EB
2238static int resize_platform_label_table(struct net *net, size_t limit)
2239{
2240 size_t size = sizeof(struct mpls_route *) * limit;
2241 size_t old_limit;
2242 size_t cp_size;
2243 struct mpls_route __rcu **labels = NULL, **old;
2244 struct mpls_route *rt0 = NULL, *rt2 = NULL;
2245 unsigned index;
2246
2247 if (size) {
752ade68 2248 labels = kvzalloc(size, GFP_KERNEL);
7720c01f
EB
2249 if (!labels)
2250 goto nolabels;
2251 }
2252
2253 /* In case the predefined labels need to be populated */
78f5b899 2254 if (limit > MPLS_LABEL_IPV4NULL) {
7720c01f 2255 struct net_device *lo = net->loopback_dev;
a4ac8c98 2256 rt0 = mpls_rt_alloc(1, lo->addr_len, 0);
df1c6316 2257 if (IS_ERR(rt0))
7720c01f 2258 goto nort0;
f8efb73c 2259 RCU_INIT_POINTER(rt0->rt_nh->nh_dev, lo);
7720c01f 2260 rt0->rt_protocol = RTPROT_KERNEL;
118d5234 2261 rt0->rt_payload_type = MPT_IPV4;
5b441ac8 2262 rt0->rt_ttl_propagate = MPLS_TTL_PROP_DEFAULT;
f8efb73c 2263 rt0->rt_nh->nh_via_table = NEIGH_LINK_TABLE;
b4e04fc7 2264 rt0->rt_nh->nh_via_alen = lo->addr_len;
cf4b24f0
RS
2265 memcpy(__mpls_nh_via(rt0, rt0->rt_nh), lo->dev_addr,
2266 lo->addr_len);
7720c01f 2267 }
78f5b899 2268 if (limit > MPLS_LABEL_IPV6NULL) {
7720c01f 2269 struct net_device *lo = net->loopback_dev;
a4ac8c98 2270 rt2 = mpls_rt_alloc(1, lo->addr_len, 0);
df1c6316 2271 if (IS_ERR(rt2))
7720c01f 2272 goto nort2;
f8efb73c 2273 RCU_INIT_POINTER(rt2->rt_nh->nh_dev, lo);
7720c01f 2274 rt2->rt_protocol = RTPROT_KERNEL;
118d5234 2275 rt2->rt_payload_type = MPT_IPV6;
6a18c312 2276 rt2->rt_ttl_propagate = MPLS_TTL_PROP_DEFAULT;
f8efb73c 2277 rt2->rt_nh->nh_via_table = NEIGH_LINK_TABLE;
b4e04fc7 2278 rt2->rt_nh->nh_via_alen = lo->addr_len;
cf4b24f0
RS
2279 memcpy(__mpls_nh_via(rt2, rt2->rt_nh), lo->dev_addr,
2280 lo->addr_len);
7720c01f
EB
2281 }
2282
2283 rtnl_lock();
2284 /* Remember the original table */
19d0c341 2285 old = rtnl_dereference(net->mpls.platform_label);
7720c01f
EB
2286 old_limit = net->mpls.platform_labels;
2287
2288 /* Free any labels beyond the new table */
2289 for (index = limit; index < old_limit; index++)
f8efb73c 2290 mpls_route_update(net, index, NULL, NULL);
7720c01f
EB
2291
2292 /* Copy over the old labels */
2293 cp_size = size;
2294 if (old_limit < limit)
2295 cp_size = old_limit * sizeof(struct mpls_route *);
2296
2297 memcpy(labels, old, cp_size);
2298
2299 /* If needed set the predefined labels */
78f5b899
TH
2300 if ((old_limit <= MPLS_LABEL_IPV6NULL) &&
2301 (limit > MPLS_LABEL_IPV6NULL)) {
2302 RCU_INIT_POINTER(labels[MPLS_LABEL_IPV6NULL], rt2);
7720c01f
EB
2303 rt2 = NULL;
2304 }
2305
78f5b899
TH
2306 if ((old_limit <= MPLS_LABEL_IPV4NULL) &&
2307 (limit > MPLS_LABEL_IPV4NULL)) {
2308 RCU_INIT_POINTER(labels[MPLS_LABEL_IPV4NULL], rt0);
7720c01f
EB
2309 rt0 = NULL;
2310 }
2311
2312 /* Update the global pointers */
2313 net->mpls.platform_labels = limit;
19d0c341 2314 rcu_assign_pointer(net->mpls.platform_label, labels);
7720c01f
EB
2315
2316 rtnl_unlock();
2317
2318 mpls_rt_free(rt2);
2319 mpls_rt_free(rt0);
2320
2321 if (old) {
2322 synchronize_rcu();
2323 kvfree(old);
2324 }
2325 return 0;
2326
2327nort2:
2328 mpls_rt_free(rt0);
2329nort0:
2330 kvfree(labels);
2331nolabels:
2332 return -ENOMEM;
2333}
2334
2335static int mpls_platform_labels(struct ctl_table *table, int write,
2336 void __user *buffer, size_t *lenp, loff_t *ppos)
2337{
2338 struct net *net = table->data;
2339 int platform_labels = net->mpls.platform_labels;
2340 int ret;
2341 struct ctl_table tmp = {
2342 .procname = table->procname,
2343 .data = &platform_labels,
2344 .maxlen = sizeof(int),
2345 .mode = table->mode,
2346 .extra1 = &zero,
2347 .extra2 = &label_limit,
2348 };
2349
2350 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
2351
2352 if (write && ret == 0)
2353 ret = resize_platform_label_table(net, platform_labels);
2354
2355 return ret;
2356}
2357
5b441ac8
RS
2358#define MPLS_NS_SYSCTL_OFFSET(field) \
2359 (&((struct net *)0)->field)
2360
37bde799 2361static const struct ctl_table mpls_table[] = {
7720c01f
EB
2362 {
2363 .procname = "platform_labels",
2364 .data = NULL,
2365 .maxlen = sizeof(int),
2366 .mode = 0644,
2367 .proc_handler = mpls_platform_labels,
2368 },
5b441ac8
RS
2369 {
2370 .procname = "ip_ttl_propagate",
2371 .data = MPLS_NS_SYSCTL_OFFSET(mpls.ip_ttl_propagate),
2372 .maxlen = sizeof(int),
2373 .mode = 0644,
2374 .proc_handler = proc_dointvec_minmax,
2375 .extra1 = &zero,
2376 .extra2 = &one,
2377 },
a59166e4
RS
2378 {
2379 .procname = "default_ttl",
2380 .data = MPLS_NS_SYSCTL_OFFSET(mpls.default_ttl),
2381 .maxlen = sizeof(int),
2382 .mode = 0644,
2383 .proc_handler = proc_dointvec_minmax,
2384 .extra1 = &one,
2385 .extra2 = &ttl_max,
2386 },
7720c01f
EB
2387 { }
2388};
2389
0189197f
EB
2390static int mpls_net_init(struct net *net)
2391{
7720c01f 2392 struct ctl_table *table;
5b441ac8 2393 int i;
7720c01f 2394
0189197f
EB
2395 net->mpls.platform_labels = 0;
2396 net->mpls.platform_label = NULL;
5b441ac8 2397 net->mpls.ip_ttl_propagate = 1;
a59166e4 2398 net->mpls.default_ttl = 255;
0189197f 2399
7720c01f
EB
2400 table = kmemdup(mpls_table, sizeof(mpls_table), GFP_KERNEL);
2401 if (table == NULL)
2402 return -ENOMEM;
2403
5b441ac8
RS
2404 /* Table data contains only offsets relative to the base of
2405 * the mdev at this point, so make them absolute.
2406 */
2407 for (i = 0; i < ARRAY_SIZE(mpls_table) - 1; i++)
2408 table[i].data = (char *)net + (uintptr_t)table[i].data;
2409
7720c01f 2410 net->mpls.ctl = register_net_sysctl(net, "net/mpls", table);
6ea3c9d5
NA
2411 if (net->mpls.ctl == NULL) {
2412 kfree(table);
7720c01f 2413 return -ENOMEM;
6ea3c9d5 2414 }
7720c01f 2415
0189197f
EB
2416 return 0;
2417}
2418
2419static void mpls_net_exit(struct net *net)
2420{
19d0c341
EB
2421 struct mpls_route __rcu **platform_label;
2422 size_t platform_labels;
7720c01f 2423 struct ctl_table *table;
0189197f
EB
2424 unsigned int index;
2425
7720c01f
EB
2426 table = net->mpls.ctl->ctl_table_arg;
2427 unregister_net_sysctl_table(net->mpls.ctl);
2428 kfree(table);
2429
19d0c341
EB
2430 /* An rcu grace period has passed since there was a device in
2431 * the network namespace (and thus the last in flight packet)
0189197f
EB
2432 * left this network namespace. This is because
2433 * unregister_netdevice_many and netdev_run_todo has completed
2434 * for each network device that was in this network namespace.
2435 *
2436 * As such no additional rcu synchronization is necessary when
2437 * freeing the platform_label table.
2438 */
2439 rtnl_lock();
19d0c341
EB
2440 platform_label = rtnl_dereference(net->mpls.platform_label);
2441 platform_labels = net->mpls.platform_labels;
2442 for (index = 0; index < platform_labels; index++) {
2443 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
2444 RCU_INIT_POINTER(platform_label[index], NULL);
e37791ec 2445 mpls_notify_route(net, index, rt, NULL, NULL);
0189197f
EB
2446 mpls_rt_free(rt);
2447 }
2448 rtnl_unlock();
2449
19d0c341 2450 kvfree(platform_label);
0189197f
EB
2451}
2452
2453static struct pernet_operations mpls_net_ops = {
2454 .init = mpls_net_init,
2455 .exit = mpls_net_exit,
2456};
2457
27d69105
RS
2458static struct rtnl_af_ops mpls_af_ops __read_mostly = {
2459 .family = AF_MPLS,
2460 .fill_stats_af = mpls_fill_stats_af,
2461 .get_stats_af_size = mpls_get_stats_af_size,
2462};
2463
0189197f
EB
2464static int __init mpls_init(void)
2465{
2466 int err;
2467
2468 BUILD_BUG_ON(sizeof(struct mpls_shim_hdr) != 4);
2469
2470 err = register_pernet_subsys(&mpls_net_ops);
2471 if (err)
2472 goto out;
2473
2474 err = register_netdevice_notifier(&mpls_dev_notifier);
2475 if (err)
2476 goto out_unregister_pernet;
2477
2478 dev_add_pack(&mpls_packet_type);
2479
27d69105
RS
2480 rtnl_af_register(&mpls_af_ops);
2481
03c05665
EB
2482 rtnl_register(PF_MPLS, RTM_NEWROUTE, mpls_rtm_newroute, NULL, NULL);
2483 rtnl_register(PF_MPLS, RTM_DELROUTE, mpls_rtm_delroute, NULL, NULL);
397fc9e5
RP
2484 rtnl_register(PF_MPLS, RTM_GETROUTE, mpls_getroute, mpls_dump_routes,
2485 NULL);
24045a03
DA
2486 rtnl_register(PF_MPLS, RTM_GETNETCONF, mpls_netconf_get_devconf,
2487 mpls_netconf_dump_devconf, NULL);
0189197f
EB
2488 err = 0;
2489out:
2490 return err;
2491
2492out_unregister_pernet:
2493 unregister_pernet_subsys(&mpls_net_ops);
2494 goto out;
2495}
2496module_init(mpls_init);
2497
2498static void __exit mpls_exit(void)
2499{
03c05665 2500 rtnl_unregister_all(PF_MPLS);
27d69105 2501 rtnl_af_unregister(&mpls_af_ops);
0189197f
EB
2502 dev_remove_pack(&mpls_packet_type);
2503 unregister_netdevice_notifier(&mpls_dev_notifier);
2504 unregister_pernet_subsys(&mpls_net_ops);
2505}
2506module_exit(mpls_exit);
2507
2508MODULE_DESCRIPTION("MultiProtocol Label Switching");
2509MODULE_LICENSE("GPL v2");
2510MODULE_ALIAS_NETPROTO(PF_MPLS);