OSDN Git Service

mpls: Correct the ttl decrement.
[uclinux-h8/linux.git] / net / mpls / af_mpls.c
1 #include <linux/types.h>
2 #include <linux/skbuff.h>
3 #include <linux/socket.h>
4 #include <linux/sysctl.h>
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>
10 #include <linux/vmalloc.h>
11 #include <net/ip.h>
12 #include <net/dst.h>
13 #include <net/sock.h>
14 #include <net/arp.h>
15 #include <net/ip_fib.h>
16 #include <net/netevent.h>
17 #include <net/netns/generic.h>
18 #include "internal.h"
19
20 #define LABEL_NOT_SPECIFIED (1<<20)
21 #define MAX_NEW_LABELS 2
22
23 /* This maximum ha length copied from the definition of struct neighbour */
24 #define MAX_VIA_ALEN (ALIGN(MAX_ADDR_LEN, sizeof(unsigned long)))
25
26 struct mpls_route { /* next hop label forwarding entry */
27         struct net_device __rcu *rt_dev;
28         struct rcu_head         rt_rcu;
29         u32                     rt_label[MAX_NEW_LABELS];
30         u8                      rt_protocol; /* routing protocol that set this entry */
31         u8                      rt_labels:2,
32                                 rt_via_alen:6;
33         unsigned short          rt_via_family;
34         u8                      rt_via[0];
35 };
36
37 static int zero = 0;
38 static int label_limit = (1 << 20) - 1;
39
40 static void rtmsg_lfib(int event, u32 label, struct mpls_route *rt,
41                        struct nlmsghdr *nlh, struct net *net, u32 portid,
42                        unsigned int nlm_flags);
43
44 static struct mpls_route *mpls_route_input_rcu(struct net *net, unsigned index)
45 {
46         struct mpls_route *rt = NULL;
47
48         if (index < net->mpls.platform_labels) {
49                 struct mpls_route __rcu **platform_label =
50                         rcu_dereference(net->mpls.platform_label);
51                 rt = rcu_dereference(platform_label[index]);
52         }
53         return rt;
54 }
55
56 static bool mpls_output_possible(const struct net_device *dev)
57 {
58         return dev && (dev->flags & IFF_UP) && netif_carrier_ok(dev);
59 }
60
61 static unsigned int mpls_rt_header_size(const struct mpls_route *rt)
62 {
63         /* The size of the layer 2.5 labels to be added for this route */
64         return rt->rt_labels * sizeof(struct mpls_shim_hdr);
65 }
66
67 static unsigned int mpls_dev_mtu(const struct net_device *dev)
68 {
69         /* The amount of data the layer 2 frame can hold */
70         return dev->mtu;
71 }
72
73 static bool mpls_pkt_too_big(const struct sk_buff *skb, unsigned int mtu)
74 {
75         if (skb->len <= mtu)
76                 return false;
77
78         if (skb_is_gso(skb) && skb_gso_network_seglen(skb) <= mtu)
79                 return false;
80
81         return true;
82 }
83
84 static bool mpls_egress(struct mpls_route *rt, struct sk_buff *skb,
85                         struct mpls_entry_decoded dec)
86 {
87         /* RFC4385 and RFC5586 encode other packets in mpls such that
88          * they don't conflict with the ip version number, making
89          * decoding by examining the ip version correct in everything
90          * except for the strangest cases.
91          *
92          * The strange cases if we choose to support them will require
93          * manual configuration.
94          */
95         struct iphdr *hdr4 = ip_hdr(skb);
96         bool success = true;
97
98         if (hdr4->version == 4) {
99                 skb->protocol = htons(ETH_P_IP);
100                 csum_replace2(&hdr4->check,
101                               htons(hdr4->ttl << 8),
102                               htons(dec.ttl << 8));
103                 hdr4->ttl = dec.ttl;
104         }
105         else if (hdr4->version == 6) {
106                 struct ipv6hdr *hdr6 = ipv6_hdr(skb);
107                 skb->protocol = htons(ETH_P_IPV6);
108                 hdr6->hop_limit = dec.ttl;
109         }
110         else
111                 /* version 0 and version 1 are used by pseudo wires */
112                 success = false;
113         return success;
114 }
115
116 static int mpls_forward(struct sk_buff *skb, struct net_device *dev,
117                         struct packet_type *pt, struct net_device *orig_dev)
118 {
119         struct net *net = dev_net(dev);
120         struct mpls_shim_hdr *hdr;
121         struct mpls_route *rt;
122         struct mpls_entry_decoded dec;
123         struct net_device *out_dev;
124         unsigned int hh_len;
125         unsigned int new_header_size;
126         unsigned int mtu;
127         int err;
128
129         /* Careful this entire function runs inside of an rcu critical section */
130
131         if (skb->pkt_type != PACKET_HOST)
132                 goto drop;
133
134         if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
135                 goto drop;
136
137         if (!pskb_may_pull(skb, sizeof(*hdr)))
138                 goto drop;
139
140         /* Read and decode the label */
141         hdr = mpls_hdr(skb);
142         dec = mpls_entry_decode(hdr);
143
144         /* Pop the label */
145         skb_pull(skb, sizeof(*hdr));
146         skb_reset_network_header(skb);
147
148         skb_orphan(skb);
149
150         rt = mpls_route_input_rcu(net, dec.label);
151         if (!rt)
152                 goto drop;
153
154         /* Find the output device */
155         out_dev = rcu_dereference(rt->rt_dev);
156         if (!mpls_output_possible(out_dev))
157                 goto drop;
158
159         if (skb_warn_if_lro(skb))
160                 goto drop;
161
162         skb_forward_csum(skb);
163
164         /* Verify ttl is valid */
165         if (dec.ttl <= 1)
166                 goto drop;
167         dec.ttl -= 1;
168
169         /* Verify the destination can hold the packet */
170         new_header_size = mpls_rt_header_size(rt);
171         mtu = mpls_dev_mtu(out_dev);
172         if (mpls_pkt_too_big(skb, mtu - new_header_size))
173                 goto drop;
174
175         hh_len = LL_RESERVED_SPACE(out_dev);
176         if (!out_dev->header_ops)
177                 hh_len = 0;
178
179         /* Ensure there is enough space for the headers in the skb */
180         if (skb_cow(skb, hh_len + new_header_size))
181                 goto drop;
182
183         skb->dev = out_dev;
184         skb->protocol = htons(ETH_P_MPLS_UC);
185
186         if (unlikely(!new_header_size && dec.bos)) {
187                 /* Penultimate hop popping */
188                 if (!mpls_egress(rt, skb, dec))
189                         goto drop;
190         } else {
191                 bool bos;
192                 int i;
193                 skb_push(skb, new_header_size);
194                 skb_reset_network_header(skb);
195                 /* Push the new labels */
196                 hdr = mpls_hdr(skb);
197                 bos = dec.bos;
198                 for (i = rt->rt_labels - 1; i >= 0; i--) {
199                         hdr[i] = mpls_entry_encode(rt->rt_label[i], dec.ttl, 0, bos);
200                         bos = false;
201                 }
202         }
203
204         err = neigh_xmit(rt->rt_via_family, out_dev, rt->rt_via, skb);
205         if (err)
206                 net_dbg_ratelimited("%s: packet transmission failed: %d\n",
207                                     __func__, err);
208         return 0;
209
210 drop:
211         kfree_skb(skb);
212         return NET_RX_DROP;
213 }
214
215 static struct packet_type mpls_packet_type __read_mostly = {
216         .type = cpu_to_be16(ETH_P_MPLS_UC),
217         .func = mpls_forward,
218 };
219
220 static const struct nla_policy rtm_mpls_policy[RTA_MAX+1] = {
221         [RTA_DST]               = { .type = NLA_U32 },
222         [RTA_OIF]               = { .type = NLA_U32 },
223 };
224
225 struct mpls_route_config {
226         u32             rc_protocol;
227         u32             rc_ifindex;
228         u16             rc_via_family;
229         u16             rc_via_alen;
230         u8              rc_via[MAX_VIA_ALEN];
231         u32             rc_label;
232         u32             rc_output_labels;
233         u32             rc_output_label[MAX_NEW_LABELS];
234         u32             rc_nlflags;
235         struct nl_info  rc_nlinfo;
236 };
237
238 static struct mpls_route *mpls_rt_alloc(size_t alen)
239 {
240         struct mpls_route *rt;
241
242         rt = kzalloc(sizeof(*rt) + alen, GFP_KERNEL);
243         if (rt)
244                 rt->rt_via_alen = alen;
245         return rt;
246 }
247
248 static void mpls_rt_free(struct mpls_route *rt)
249 {
250         if (rt)
251                 kfree_rcu(rt, rt_rcu);
252 }
253
254 static void mpls_notify_route(struct net *net, unsigned index,
255                               struct mpls_route *old, struct mpls_route *new,
256                               const struct nl_info *info)
257 {
258         struct nlmsghdr *nlh = info ? info->nlh : NULL;
259         unsigned portid = info ? info->portid : 0;
260         int event = new ? RTM_NEWROUTE : RTM_DELROUTE;
261         struct mpls_route *rt = new ? new : old;
262         unsigned nlm_flags = (old && new) ? NLM_F_REPLACE : 0;
263         /* Ignore reserved labels for now */
264         if (rt && (index >= 16))
265                 rtmsg_lfib(event, index, rt, nlh, net, portid, nlm_flags);
266 }
267
268 static void mpls_route_update(struct net *net, unsigned index,
269                               struct net_device *dev, struct mpls_route *new,
270                               const struct nl_info *info)
271 {
272         struct mpls_route __rcu **platform_label;
273         struct mpls_route *rt, *old = NULL;
274
275         ASSERT_RTNL();
276
277         platform_label = rtnl_dereference(net->mpls.platform_label);
278         rt = rtnl_dereference(platform_label[index]);
279         if (!dev || (rt && (rtnl_dereference(rt->rt_dev) == dev))) {
280                 rcu_assign_pointer(platform_label[index], new);
281                 old = rt;
282         }
283
284         mpls_notify_route(net, index, old, new, info);
285
286         /* If we removed a route free it now */
287         mpls_rt_free(old);
288 }
289
290 static unsigned find_free_label(struct net *net)
291 {
292         struct mpls_route __rcu **platform_label;
293         size_t platform_labels;
294         unsigned index;
295
296         platform_label = rtnl_dereference(net->mpls.platform_label);
297         platform_labels = net->mpls.platform_labels;
298         for (index = 16; index < platform_labels; index++) {
299                 if (!rtnl_dereference(platform_label[index]))
300                         return index;
301         }
302         return LABEL_NOT_SPECIFIED;
303 }
304
305 static int mpls_route_add(struct mpls_route_config *cfg)
306 {
307         struct mpls_route __rcu **platform_label;
308         struct net *net = cfg->rc_nlinfo.nl_net;
309         struct net_device *dev = NULL;
310         struct mpls_route *rt, *old;
311         unsigned index;
312         int i;
313         int err = -EINVAL;
314
315         index = cfg->rc_label;
316
317         /* If a label was not specified during insert pick one */
318         if ((index == LABEL_NOT_SPECIFIED) &&
319             (cfg->rc_nlflags & NLM_F_CREATE)) {
320                 index = find_free_label(net);
321         }
322
323         /* The first 16 labels are reserved, and may not be set */
324         if (index < 16)
325                 goto errout;
326
327         /* The full 20 bit range may not be supported. */
328         if (index >= net->mpls.platform_labels)
329                 goto errout;
330
331         /* Ensure only a supported number of labels are present */
332         if (cfg->rc_output_labels > MAX_NEW_LABELS)
333                 goto errout;
334
335         err = -ENODEV;
336         dev = dev_get_by_index(net, cfg->rc_ifindex);
337         if (!dev)
338                 goto errout;
339
340         /* For now just support ethernet devices */
341         err = -EINVAL;
342         if ((dev->type != ARPHRD_ETHER) && (dev->type != ARPHRD_LOOPBACK))
343                 goto errout;
344
345         err = -EINVAL;
346         if ((cfg->rc_via_family == AF_PACKET) &&
347             (dev->addr_len != cfg->rc_via_alen))
348                 goto errout;
349
350         /* Append makes no sense with mpls */
351         err = -EOPNOTSUPP;
352         if (cfg->rc_nlflags & NLM_F_APPEND)
353                 goto errout;
354
355         err = -EEXIST;
356         platform_label = rtnl_dereference(net->mpls.platform_label);
357         old = rtnl_dereference(platform_label[index]);
358         if ((cfg->rc_nlflags & NLM_F_EXCL) && old)
359                 goto errout;
360
361         err = -EEXIST;
362         if (!(cfg->rc_nlflags & NLM_F_REPLACE) && old)
363                 goto errout;
364
365         err = -ENOENT;
366         if (!(cfg->rc_nlflags & NLM_F_CREATE) && !old)
367                 goto errout;
368
369         err = -ENOMEM;
370         rt = mpls_rt_alloc(cfg->rc_via_alen);
371         if (!rt)
372                 goto errout;
373
374         rt->rt_labels = cfg->rc_output_labels;
375         for (i = 0; i < rt->rt_labels; i++)
376                 rt->rt_label[i] = cfg->rc_output_label[i];
377         rt->rt_protocol = cfg->rc_protocol;
378         RCU_INIT_POINTER(rt->rt_dev, dev);
379         rt->rt_via_family = cfg->rc_via_family;
380         memcpy(rt->rt_via, cfg->rc_via, cfg->rc_via_alen);
381
382         mpls_route_update(net, index, NULL, rt, &cfg->rc_nlinfo);
383
384         dev_put(dev);
385         return 0;
386
387 errout:
388         if (dev)
389                 dev_put(dev);
390         return err;
391 }
392
393 static int mpls_route_del(struct mpls_route_config *cfg)
394 {
395         struct net *net = cfg->rc_nlinfo.nl_net;
396         unsigned index;
397         int err = -EINVAL;
398
399         index = cfg->rc_label;
400
401         /* The first 16 labels are reserved, and may not be removed */
402         if (index < 16)
403                 goto errout;
404
405         /* The full 20 bit range may not be supported */
406         if (index >= net->mpls.platform_labels)
407                 goto errout;
408
409         mpls_route_update(net, index, NULL, NULL, &cfg->rc_nlinfo);
410
411         err = 0;
412 errout:
413         return err;
414 }
415
416 static void mpls_ifdown(struct net_device *dev)
417 {
418         struct mpls_route __rcu **platform_label;
419         struct net *net = dev_net(dev);
420         unsigned index;
421
422         platform_label = rtnl_dereference(net->mpls.platform_label);
423         for (index = 0; index < net->mpls.platform_labels; index++) {
424                 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
425                 if (!rt)
426                         continue;
427                 if (rtnl_dereference(rt->rt_dev) != dev)
428                         continue;
429                 rt->rt_dev = NULL;
430         }
431 }
432
433 static int mpls_dev_notify(struct notifier_block *this, unsigned long event,
434                            void *ptr)
435 {
436         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
437
438         switch(event) {
439         case NETDEV_UNREGISTER:
440                 mpls_ifdown(dev);
441                 break;
442         }
443         return NOTIFY_OK;
444 }
445
446 static struct notifier_block mpls_dev_notifier = {
447         .notifier_call = mpls_dev_notify,
448 };
449
450 static int nla_put_via(struct sk_buff *skb,
451                        u16 family, const void *addr, int alen)
452 {
453         struct nlattr *nla;
454         struct rtvia *via;
455
456         nla = nla_reserve(skb, RTA_VIA, alen + 2);
457         if (!nla)
458                 return -EMSGSIZE;
459
460         via = nla_data(nla);
461         via->rtvia_family = family;
462         memcpy(via->rtvia_addr, addr, alen);
463         return 0;
464 }
465
466 int nla_put_labels(struct sk_buff *skb, int attrtype,
467                    u8 labels, const u32 label[])
468 {
469         struct nlattr *nla;
470         struct mpls_shim_hdr *nla_label;
471         bool bos;
472         int i;
473         nla = nla_reserve(skb, attrtype, labels*4);
474         if (!nla)
475                 return -EMSGSIZE;
476
477         nla_label = nla_data(nla);
478         bos = true;
479         for (i = labels - 1; i >= 0; i--) {
480                 nla_label[i] = mpls_entry_encode(label[i], 0, 0, bos);
481                 bos = false;
482         }
483
484         return 0;
485 }
486
487 int nla_get_labels(const struct nlattr *nla,
488                    u32 max_labels, u32 *labels, u32 label[])
489 {
490         unsigned len = nla_len(nla);
491         unsigned nla_labels;
492         struct mpls_shim_hdr *nla_label;
493         bool bos;
494         int i;
495
496         /* len needs to be an even multiple of 4 (the label size) */
497         if (len & 3)
498                 return -EINVAL;
499
500         /* Limit the number of new labels allowed */
501         nla_labels = len/4;
502         if (nla_labels > max_labels)
503                 return -EINVAL;
504
505         nla_label = nla_data(nla);
506         bos = true;
507         for (i = nla_labels - 1; i >= 0; i--, bos = false) {
508                 struct mpls_entry_decoded dec;
509                 dec = mpls_entry_decode(nla_label + i);
510
511                 /* Ensure the bottom of stack flag is properly set
512                  * and ttl and tc are both clear.
513                  */
514                 if ((dec.bos != bos) || dec.ttl || dec.tc)
515                         return -EINVAL;
516
517                 label[i] = dec.label;
518         }
519         *labels = nla_labels;
520         return 0;
521 }
522
523 static int rtm_to_route_config(struct sk_buff *skb,  struct nlmsghdr *nlh,
524                                struct mpls_route_config *cfg)
525 {
526         struct rtmsg *rtm;
527         struct nlattr *tb[RTA_MAX+1];
528         int index;
529         int err;
530
531         err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_mpls_policy);
532         if (err < 0)
533                 goto errout;
534
535         err = -EINVAL;
536         rtm = nlmsg_data(nlh);
537         memset(cfg, 0, sizeof(*cfg));
538
539         if (rtm->rtm_family != AF_MPLS)
540                 goto errout;
541         if (rtm->rtm_dst_len != 20)
542                 goto errout;
543         if (rtm->rtm_src_len != 0)
544                 goto errout;
545         if (rtm->rtm_tos != 0)
546                 goto errout;
547         if (rtm->rtm_table != RT_TABLE_MAIN)
548                 goto errout;
549         /* Any value is acceptable for rtm_protocol */
550
551         /* As mpls uses destination specific addresses
552          * (or source specific address in the case of multicast)
553          * all addresses have universal scope.
554          */
555         if (rtm->rtm_scope != RT_SCOPE_UNIVERSE)
556                 goto errout;
557         if (rtm->rtm_type != RTN_UNICAST)
558                 goto errout;
559         if (rtm->rtm_flags != 0)
560                 goto errout;
561
562         cfg->rc_label           = LABEL_NOT_SPECIFIED;
563         cfg->rc_protocol        = rtm->rtm_protocol;
564         cfg->rc_nlflags         = nlh->nlmsg_flags;
565         cfg->rc_nlinfo.portid   = NETLINK_CB(skb).portid;
566         cfg->rc_nlinfo.nlh      = nlh;
567         cfg->rc_nlinfo.nl_net   = sock_net(skb->sk);
568
569         for (index = 0; index <= RTA_MAX; index++) {
570                 struct nlattr *nla = tb[index];
571                 if (!nla)
572                         continue;
573
574                 switch(index) {
575                 case RTA_OIF:
576                         cfg->rc_ifindex = nla_get_u32(nla);
577                         break;
578                 case RTA_NEWDST:
579                         if (nla_get_labels(nla, MAX_NEW_LABELS,
580                                            &cfg->rc_output_labels,
581                                            cfg->rc_output_label))
582                                 goto errout;
583                         break;
584                 case RTA_DST:
585                 {
586                         u32 label_count;
587                         if (nla_get_labels(nla, 1, &label_count,
588                                            &cfg->rc_label))
589                                 goto errout;
590
591                         /* The first 16 labels are reserved, and may not be set */
592                         if (cfg->rc_label < 16)
593                                 goto errout;
594
595                         break;
596                 }
597                 case RTA_VIA:
598                 {
599                         struct rtvia *via = nla_data(nla);
600                         if (nla_len(nla) < offsetof(struct rtvia, rtvia_addr))
601                                 goto errout;
602                         cfg->rc_via_family = via->rtvia_family;
603                         cfg->rc_via_alen   = nla_len(nla) -
604                                 offsetof(struct rtvia, rtvia_addr);
605                         if (cfg->rc_via_alen > MAX_VIA_ALEN)
606                                 goto errout;
607
608                         /* Validate the address family */
609                         switch(cfg->rc_via_family) {
610                         case AF_PACKET:
611                                 break;
612                         case AF_INET:
613                                 if (cfg->rc_via_alen != 4)
614                                         goto errout;
615                                 break;
616                         case AF_INET6:
617                                 if (cfg->rc_via_alen != 16)
618                                         goto errout;
619                                 break;
620                         default:
621                                 /* Unsupported address family */
622                                 goto errout;
623                         }
624
625                         memcpy(cfg->rc_via, via->rtvia_addr, cfg->rc_via_alen);
626                         break;
627                 }
628                 default:
629                         /* Unsupported attribute */
630                         goto errout;
631                 }
632         }
633
634         err = 0;
635 errout:
636         return err;
637 }
638
639 static int mpls_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh)
640 {
641         struct mpls_route_config cfg;
642         int err;
643
644         err = rtm_to_route_config(skb, nlh, &cfg);
645         if (err < 0)
646                 return err;
647
648         return mpls_route_del(&cfg);
649 }
650
651
652 static int mpls_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh)
653 {
654         struct mpls_route_config cfg;
655         int err;
656
657         err = rtm_to_route_config(skb, nlh, &cfg);
658         if (err < 0)
659                 return err;
660
661         return mpls_route_add(&cfg);
662 }
663
664 static int mpls_dump_route(struct sk_buff *skb, u32 portid, u32 seq, int event,
665                            u32 label, struct mpls_route *rt, int flags)
666 {
667         struct net_device *dev;
668         struct nlmsghdr *nlh;
669         struct rtmsg *rtm;
670
671         nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), flags);
672         if (nlh == NULL)
673                 return -EMSGSIZE;
674
675         rtm = nlmsg_data(nlh);
676         rtm->rtm_family = AF_MPLS;
677         rtm->rtm_dst_len = 20;
678         rtm->rtm_src_len = 0;
679         rtm->rtm_tos = 0;
680         rtm->rtm_table = RT_TABLE_MAIN;
681         rtm->rtm_protocol = rt->rt_protocol;
682         rtm->rtm_scope = RT_SCOPE_UNIVERSE;
683         rtm->rtm_type = RTN_UNICAST;
684         rtm->rtm_flags = 0;
685
686         if (rt->rt_labels &&
687             nla_put_labels(skb, RTA_NEWDST, rt->rt_labels, rt->rt_label))
688                 goto nla_put_failure;
689         if (nla_put_via(skb, rt->rt_via_family, rt->rt_via, rt->rt_via_alen))
690                 goto nla_put_failure;
691         dev = rtnl_dereference(rt->rt_dev);
692         if (dev && nla_put_u32(skb, RTA_OIF, dev->ifindex))
693                 goto nla_put_failure;
694         if (nla_put_labels(skb, RTA_DST, 1, &label))
695                 goto nla_put_failure;
696
697         nlmsg_end(skb, nlh);
698         return 0;
699
700 nla_put_failure:
701         nlmsg_cancel(skb, nlh);
702         return -EMSGSIZE;
703 }
704
705 static int mpls_dump_routes(struct sk_buff *skb, struct netlink_callback *cb)
706 {
707         struct net *net = sock_net(skb->sk);
708         struct mpls_route __rcu **platform_label;
709         size_t platform_labels;
710         unsigned int index;
711
712         ASSERT_RTNL();
713
714         index = cb->args[0];
715         if (index < 16)
716                 index = 16;
717
718         platform_label = rtnl_dereference(net->mpls.platform_label);
719         platform_labels = net->mpls.platform_labels;
720         for (; index < platform_labels; index++) {
721                 struct mpls_route *rt;
722                 rt = rtnl_dereference(platform_label[index]);
723                 if (!rt)
724                         continue;
725
726                 if (mpls_dump_route(skb, NETLINK_CB(cb->skb).portid,
727                                     cb->nlh->nlmsg_seq, RTM_NEWROUTE,
728                                     index, rt, NLM_F_MULTI) < 0)
729                         break;
730         }
731         cb->args[0] = index;
732
733         return skb->len;
734 }
735
736 static inline size_t lfib_nlmsg_size(struct mpls_route *rt)
737 {
738         size_t payload =
739                 NLMSG_ALIGN(sizeof(struct rtmsg))
740                 + nla_total_size(2 + rt->rt_via_alen)   /* RTA_VIA */
741                 + nla_total_size(4);                    /* RTA_DST */
742         if (rt->rt_labels)                              /* RTA_NEWDST */
743                 payload += nla_total_size(rt->rt_labels * 4);
744         if (rt->rt_dev)                                 /* RTA_OIF */
745                 payload += nla_total_size(4);
746         return payload;
747 }
748
749 static void rtmsg_lfib(int event, u32 label, struct mpls_route *rt,
750                        struct nlmsghdr *nlh, struct net *net, u32 portid,
751                        unsigned int nlm_flags)
752 {
753         struct sk_buff *skb;
754         u32 seq = nlh ? nlh->nlmsg_seq : 0;
755         int err = -ENOBUFS;
756
757         skb = nlmsg_new(lfib_nlmsg_size(rt), GFP_KERNEL);
758         if (skb == NULL)
759                 goto errout;
760
761         err = mpls_dump_route(skb, portid, seq, event, label, rt, nlm_flags);
762         if (err < 0) {
763                 /* -EMSGSIZE implies BUG in lfib_nlmsg_size */
764                 WARN_ON(err == -EMSGSIZE);
765                 kfree_skb(skb);
766                 goto errout;
767         }
768         rtnl_notify(skb, net, portid, RTNLGRP_MPLS_ROUTE, nlh, GFP_KERNEL);
769
770         return;
771 errout:
772         if (err < 0)
773                 rtnl_set_sk_err(net, RTNLGRP_MPLS_ROUTE, err);
774 }
775
776 static int resize_platform_label_table(struct net *net, size_t limit)
777 {
778         size_t size = sizeof(struct mpls_route *) * limit;
779         size_t old_limit;
780         size_t cp_size;
781         struct mpls_route __rcu **labels = NULL, **old;
782         struct mpls_route *rt0 = NULL, *rt2 = NULL;
783         unsigned index;
784
785         if (size) {
786                 labels = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY);
787                 if (!labels)
788                         labels = vzalloc(size);
789
790                 if (!labels)
791                         goto nolabels;
792         }
793
794         /* In case the predefined labels need to be populated */
795         if (limit > LABEL_IPV4_EXPLICIT_NULL) {
796                 struct net_device *lo = net->loopback_dev;
797                 rt0 = mpls_rt_alloc(lo->addr_len);
798                 if (!rt0)
799                         goto nort0;
800                 RCU_INIT_POINTER(rt0->rt_dev, lo);
801                 rt0->rt_protocol = RTPROT_KERNEL;
802                 rt0->rt_via_family = AF_PACKET;
803                 memcpy(rt0->rt_via, lo->dev_addr, lo->addr_len);
804         }
805         if (limit > LABEL_IPV6_EXPLICIT_NULL) {
806                 struct net_device *lo = net->loopback_dev;
807                 rt2 = mpls_rt_alloc(lo->addr_len);
808                 if (!rt2)
809                         goto nort2;
810                 RCU_INIT_POINTER(rt2->rt_dev, lo);
811                 rt2->rt_protocol = RTPROT_KERNEL;
812                 rt2->rt_via_family = AF_PACKET;
813                 memcpy(rt2->rt_via, lo->dev_addr, lo->addr_len);
814         }
815
816         rtnl_lock();
817         /* Remember the original table */
818         old = rtnl_dereference(net->mpls.platform_label);
819         old_limit = net->mpls.platform_labels;
820
821         /* Free any labels beyond the new table */
822         for (index = limit; index < old_limit; index++)
823                 mpls_route_update(net, index, NULL, NULL, NULL);
824
825         /* Copy over the old labels */
826         cp_size = size;
827         if (old_limit < limit)
828                 cp_size = old_limit * sizeof(struct mpls_route *);
829
830         memcpy(labels, old, cp_size);
831
832         /* If needed set the predefined labels */
833         if ((old_limit <= LABEL_IPV6_EXPLICIT_NULL) &&
834             (limit > LABEL_IPV6_EXPLICIT_NULL)) {
835                 RCU_INIT_POINTER(labels[LABEL_IPV6_EXPLICIT_NULL], rt2);
836                 rt2 = NULL;
837         }
838
839         if ((old_limit <= LABEL_IPV4_EXPLICIT_NULL) &&
840             (limit > LABEL_IPV4_EXPLICIT_NULL)) {
841                 RCU_INIT_POINTER(labels[LABEL_IPV4_EXPLICIT_NULL], rt0);
842                 rt0 = NULL;
843         }
844
845         /* Update the global pointers */
846         net->mpls.platform_labels = limit;
847         rcu_assign_pointer(net->mpls.platform_label, labels);
848
849         rtnl_unlock();
850
851         mpls_rt_free(rt2);
852         mpls_rt_free(rt0);
853
854         if (old) {
855                 synchronize_rcu();
856                 kvfree(old);
857         }
858         return 0;
859
860 nort2:
861         mpls_rt_free(rt0);
862 nort0:
863         kvfree(labels);
864 nolabels:
865         return -ENOMEM;
866 }
867
868 static int mpls_platform_labels(struct ctl_table *table, int write,
869                                 void __user *buffer, size_t *lenp, loff_t *ppos)
870 {
871         struct net *net = table->data;
872         int platform_labels = net->mpls.platform_labels;
873         int ret;
874         struct ctl_table tmp = {
875                 .procname       = table->procname,
876                 .data           = &platform_labels,
877                 .maxlen         = sizeof(int),
878                 .mode           = table->mode,
879                 .extra1         = &zero,
880                 .extra2         = &label_limit,
881         };
882
883         ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
884
885         if (write && ret == 0)
886                 ret = resize_platform_label_table(net, platform_labels);
887
888         return ret;
889 }
890
891 static struct ctl_table mpls_table[] = {
892         {
893                 .procname       = "platform_labels",
894                 .data           = NULL,
895                 .maxlen         = sizeof(int),
896                 .mode           = 0644,
897                 .proc_handler   = mpls_platform_labels,
898         },
899         { }
900 };
901
902 static int mpls_net_init(struct net *net)
903 {
904         struct ctl_table *table;
905
906         net->mpls.platform_labels = 0;
907         net->mpls.platform_label = NULL;
908
909         table = kmemdup(mpls_table, sizeof(mpls_table), GFP_KERNEL);
910         if (table == NULL)
911                 return -ENOMEM;
912
913         table[0].data = net;
914         net->mpls.ctl = register_net_sysctl(net, "net/mpls", table);
915         if (net->mpls.ctl == NULL)
916                 return -ENOMEM;
917
918         return 0;
919 }
920
921 static void mpls_net_exit(struct net *net)
922 {
923         struct mpls_route __rcu **platform_label;
924         size_t platform_labels;
925         struct ctl_table *table;
926         unsigned int index;
927
928         table = net->mpls.ctl->ctl_table_arg;
929         unregister_net_sysctl_table(net->mpls.ctl);
930         kfree(table);
931
932         /* An rcu grace period has passed since there was a device in
933          * the network namespace (and thus the last in flight packet)
934          * left this network namespace.  This is because
935          * unregister_netdevice_many and netdev_run_todo has completed
936          * for each network device that was in this network namespace.
937          *
938          * As such no additional rcu synchronization is necessary when
939          * freeing the platform_label table.
940          */
941         rtnl_lock();
942         platform_label = rtnl_dereference(net->mpls.platform_label);
943         platform_labels = net->mpls.platform_labels;
944         for (index = 0; index < platform_labels; index++) {
945                 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
946                 RCU_INIT_POINTER(platform_label[index], NULL);
947                 mpls_rt_free(rt);
948         }
949         rtnl_unlock();
950
951         kvfree(platform_label);
952 }
953
954 static struct pernet_operations mpls_net_ops = {
955         .init = mpls_net_init,
956         .exit = mpls_net_exit,
957 };
958
959 static int __init mpls_init(void)
960 {
961         int err;
962
963         BUILD_BUG_ON(sizeof(struct mpls_shim_hdr) != 4);
964
965         err = register_pernet_subsys(&mpls_net_ops);
966         if (err)
967                 goto out;
968
969         err = register_netdevice_notifier(&mpls_dev_notifier);
970         if (err)
971                 goto out_unregister_pernet;
972
973         dev_add_pack(&mpls_packet_type);
974
975         rtnl_register(PF_MPLS, RTM_NEWROUTE, mpls_rtm_newroute, NULL, NULL);
976         rtnl_register(PF_MPLS, RTM_DELROUTE, mpls_rtm_delroute, NULL, NULL);
977         rtnl_register(PF_MPLS, RTM_GETROUTE, NULL, mpls_dump_routes, NULL);
978         err = 0;
979 out:
980         return err;
981
982 out_unregister_pernet:
983         unregister_pernet_subsys(&mpls_net_ops);
984         goto out;
985 }
986 module_init(mpls_init);
987
988 static void __exit mpls_exit(void)
989 {
990         rtnl_unregister_all(PF_MPLS);
991         dev_remove_pack(&mpls_packet_type);
992         unregister_netdevice_notifier(&mpls_dev_notifier);
993         unregister_pernet_subsys(&mpls_net_ops);
994 }
995 module_exit(mpls_exit);
996
997 MODULE_DESCRIPTION("MultiProtocol Label Switching");
998 MODULE_LICENSE("GPL v2");
999 MODULE_ALIAS_NETPROTO(PF_MPLS);