blob: f3830951fb1c89441c61fe349f63d52ccd071811 [file] [log] [blame]
Eric W. Biederman01891972015-03-03 19:10:47 -06001#include <linux/types.h>
2#include <linux/skbuff.h>
3#include <linux/socket.h>
Eric W. Biederman7720c012015-03-03 19:11:20 -06004#include <linux/sysctl.h>
Eric W. Biederman01891972015-03-03 19:10:47 -06005#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>
David Ahern24045a02017-02-20 08:03:30 -080010#include <linux/netconf.h>
Stephen Rothwell4b5edb22015-03-05 13:37:05 +110011#include <linux/vmalloc.h>
Robert Shearman27d69102017-01-16 14:16:37 +000012#include <linux/percpu.h>
Eric W. Biederman01891972015-03-03 19:10:47 -060013#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>
Roopa Prabhubf215632015-07-30 13:34:54 -070020#if IS_ENABLED(CONFIG_IPV6)
21#include <net/ipv6.h>
Roopa Prabhubf215632015-07-30 13:34:54 -070022#endif
Robert Shearman27d69102017-01-16 14:16:37 +000023#include <net/addrconf.h>
Roopa Prabhuf8efb732015-10-23 06:03:27 -070024#include <net/nexthop.h>
Eric W. Biederman01891972015-03-03 19:10:47 -060025#include "internal.h"
26
David Aherndf1c6312017-03-31 07:14:02 -070027/* max memory we will use for mpls_route */
28#define MAX_MPLS_ROUTE_MEM 4096
29
Robert Shearman1c78efa2015-10-23 06:03:28 -070030/* 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
Robert Shearmaneb7809f2015-12-10 19:30:50 +000035#define MPLS_NEIGH_TABLE_UNSPEC (NEIGH_LINK_TABLE + 1)
36
Eric W. Biederman7720c012015-03-03 19:11:20 -060037static int zero = 0;
Robert Shearman5b441ac2017-03-10 20:43:24 +000038static int one = 1;
Eric W. Biederman7720c012015-03-03 19:11:20 -060039static int label_limit = (1 << 20) - 1;
Robert Shearmana59166e2017-03-10 20:43:25 +000040static int ttl_max = 255;
Eric W. Biederman7720c012015-03-03 19:11:20 -060041
Eric W. Biederman8de147d2015-03-03 19:14:31 -060042static 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
Eric W. Biederman01891972015-03-03 19:10:47 -060046static 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
Roopa Prabhuface0182015-07-21 10:43:52 +020058bool mpls_output_possible(const struct net_device *dev)
Eric W. Biederman01891972015-03-03 19:10:47 -060059{
60 return dev && (dev->flags & IFF_UP) && netif_carrier_ok(dev);
61}
Roopa Prabhuface0182015-07-21 10:43:52 +020062EXPORT_SYMBOL_GPL(mpls_output_possible);
Eric W. Biederman01891972015-03-03 19:10:47 -060063
Robert Shearmancf4b24f2015-10-27 00:37:36 +000064static u8 *__mpls_nh_via(struct mpls_route *rt, struct mpls_nh *nh)
65{
David Ahern59b20962017-03-31 07:14:01 -070066 return (u8 *)nh + rt->rt_via_offset;
Robert Shearmancf4b24f2015-10-27 00:37:36 +000067}
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
Roopa Prabhuf8efb732015-10-23 06:03:27 -070075static unsigned int mpls_nh_header_size(const struct mpls_nh *nh)
Eric W. Biederman01891972015-03-03 19:10:47 -060076{
77 /* The size of the layer 2.5 labels to be added for this route */
Roopa Prabhuf8efb732015-10-23 06:03:27 -070078 return nh->nh_labels * sizeof(struct mpls_shim_hdr);
Eric W. Biederman01891972015-03-03 19:10:47 -060079}
80
Roopa Prabhuface0182015-07-21 10:43:52 +020081unsigned int mpls_dev_mtu(const struct net_device *dev)
Eric W. Biederman01891972015-03-03 19:10:47 -060082{
83 /* The amount of data the layer 2 frame can hold */
84 return dev->mtu;
85}
Roopa Prabhuface0182015-07-21 10:43:52 +020086EXPORT_SYMBOL_GPL(mpls_dev_mtu);
Eric W. Biederman01891972015-03-03 19:10:47 -060087
Roopa Prabhuface0182015-07-21 10:43:52 +020088bool mpls_pkt_too_big(const struct sk_buff *skb, unsigned int mtu)
Eric W. Biederman01891972015-03-03 19:10:47 -060089{
90 if (skb->len <= mtu)
91 return false;
92
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -030093 if (skb_is_gso(skb) && skb_gso_validate_mtu(skb, mtu))
Eric W. Biederman01891972015-03-03 19:10:47 -060094 return false;
95
96 return true;
97}
Roopa Prabhuface0182015-07-21 10:43:52 +020098EXPORT_SYMBOL_GPL(mpls_pkt_too_big);
Eric W. Biederman01891972015-03-03 19:10:47 -060099
Robert Shearman27d69102017-01-16 14:16:37 +0000100void 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
David Ahern9f427a0e2017-01-20 12:58:34 -0800125static u32 mpls_multipath_hash(struct mpls_route *rt, struct sk_buff *skb)
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700126{
Robert Shearman1c78efa2015-10-23 06:03:28 -0700127 struct mpls_entry_decoded dec;
David Ahern9f427a0e2017-01-20 12:58:34 -0800128 unsigned int mpls_hdr_len = 0;
Robert Shearman1c78efa2015-10-23 06:03:28 -0700129 struct mpls_shim_hdr *hdr;
130 bool eli_seen = false;
131 int label_index;
Robert Shearman1c78efa2015-10-23 06:03:28 -0700132 u32 hash = 0;
133
David Ahern9f427a0e2017-01-20 12:58:34 -0800134 for (label_index = 0; label_index < MAX_MP_SELECT_LABELS;
Robert Shearman1c78efa2015-10-23 06:03:28 -0700135 label_index++) {
David Ahern9f427a0e2017-01-20 12:58:34 -0800136 mpls_hdr_len += sizeof(*hdr);
137 if (!pskb_may_pull(skb, mpls_hdr_len))
Robert Shearman1c78efa2015-10-23 06:03:28 -0700138 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
David Ahern9f427a0e2017-01-20 12:58:34 -0800162 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))) {
Robert Shearman1c78efa2015-10-23 06:03:28 -0700167 const struct iphdr *v4hdr;
168
David Ahern9f427a0e2017-01-20 12:58:34 -0800169 v4hdr = (const struct iphdr *)(hdr + 1);
Robert Shearman1c78efa2015-10-23 06:03:28 -0700170 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 &&
David Ahern9f427a0e2017-01-20 12:58:34 -0800175 pskb_may_pull(skb, mpls_hdr_len +
176 sizeof(struct ipv6hdr))) {
Robert Shearman1c78efa2015-10-23 06:03:28 -0700177 const struct ipv6hdr *v6hdr;
178
David Ahern9f427a0e2017-01-20 12:58:34 -0800179 v6hdr = (const struct ipv6hdr *)(hdr + 1);
Robert Shearman1c78efa2015-10-23 06:03:28 -0700180 hash = __ipv6_addr_jhash(&v6hdr->saddr, hash);
181 hash = __ipv6_addr_jhash(&v6hdr->daddr, hash);
182 hash = jhash_1word(v6hdr->nexthdr, hash);
183 }
184 }
David Ahern9f427a0e2017-01-20 12:58:34 -0800185
186 break;
Robert Shearman1c78efa2015-10-23 06:03:28 -0700187 }
188
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800189 return hash;
190}
191
David Ahern59b20962017-03-31 07:14:01 -0700192static 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
David Ahern39eb8cd2017-03-31 07:13:59 -0700197/* 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 */
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800202static struct mpls_nh *mpls_select_multipath(struct mpls_route *rt,
David Ahern9f427a0e2017-01-20 12:58:34 -0800203 struct sk_buff *skb)
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800204{
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800205 u32 hash = 0;
206 int nh_index = 0;
207 int n = 0;
David Ahern77ef013a2017-03-31 07:14:00 -0700208 u8 alive;
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800209
210 /* No need to look further into packet if there's only
211 * one path
212 */
213 if (rt->rt_nhn == 1)
David Ahern59b20962017-03-31 07:14:01 -0700214 return rt->rt_nh;
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800215
David Ahern39eb8cd2017-03-31 07:13:59 -0700216 alive = READ_ONCE(rt->rt_nhn_alive);
217 if (alive == 0)
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800218 return NULL;
219
David Ahern9f427a0e2017-01-20 12:58:34 -0800220 hash = mpls_multipath_hash(rt, skb);
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800221 nh_index = hash % alive;
222 if (alive == rt->rt_nhn)
223 goto out;
224 for_nexthops(rt) {
David Ahern39eb8cd2017-03-31 07:13:59 -0700225 unsigned int nh_flags = READ_ONCE(nh->nh_flags);
226
227 if (nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN))
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800228 continue;
229 if (n == nh_index)
230 return nh;
231 n++;
232 } endfor_nexthops(rt);
233
Robert Shearman1c78efa2015-10-23 06:03:28 -0700234out:
David Ahern59b20962017-03-31 07:14:01 -0700235 return mpls_get_nexthop(rt, nh_index);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700236}
237
Robert Shearman5b441ac2017-03-10 20:43:24 +0000238static bool mpls_egress(struct net *net, struct mpls_route *rt,
239 struct sk_buff *skb, struct mpls_entry_decoded dec)
Eric W. Biederman01891972015-03-03 19:10:47 -0600240{
Robert Shearman118d5232015-08-06 11:04:56 +0100241 enum mpls_payload_type payload_type;
242 bool success = false;
Eric W. Biederman01891972015-03-03 19:10:47 -0600243
Eric W. Biederman76fecd82015-03-12 18:22:59 -0500244 /* 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
Robert Shearman118d5232015-08-06 11:04:56 +0100257 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);
Robert Shearman5b441ac2017-03-10 20:43:24 +0000264 u8 new_ttl;
Eric W. Biederman01891972015-03-03 19:10:47 -0600265 skb->protocol = htons(ETH_P_IP);
Robert Shearman5b441ac2017-03-10 20:43:24 +0000266
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
Eric W. Biederman01891972015-03-03 19:10:47 -0600278 csum_replace2(&hdr4->check,
279 htons(hdr4->ttl << 8),
Robert Shearman5b441ac2017-03-10 20:43:24 +0000280 htons(new_ttl << 8));
281 hdr4->ttl = new_ttl;
Robert Shearman118d5232015-08-06 11:04:56 +0100282 success = true;
283 break;
Eric W. Biederman01891972015-03-03 19:10:47 -0600284 }
Robert Shearman118d5232015-08-06 11:04:56 +0100285 case MPT_IPV6: {
Eric W. Biederman01891972015-03-03 19:10:47 -0600286 struct ipv6hdr *hdr6 = ipv6_hdr(skb);
287 skb->protocol = htons(ETH_P_IPV6);
Robert Shearman5b441ac2017-03-10 20:43:24 +0000288
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;
Robert Shearman118d5232015-08-06 11:04:56 +0100299 success = true;
300 break;
Eric W. Biederman01891972015-03-03 19:10:47 -0600301 }
Robert Shearman118d5232015-08-06 11:04:56 +0100302 case MPT_UNSPEC:
Robert Shearman5b441ac2017-03-10 20:43:24 +0000303 /* Should have decided which protocol it is by now */
Robert Shearman118d5232015-08-06 11:04:56 +0100304 break;
305 }
306
Eric W. Biederman01891972015-03-03 19:10:47 -0600307 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;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700316 struct mpls_nh *nh;
Eric W. Biederman01891972015-03-03 19:10:47 -0600317 struct mpls_entry_decoded dec;
318 struct net_device *out_dev;
Robert Shearman27d69102017-01-16 14:16:37 +0000319 struct mpls_dev *out_mdev;
Robert Shearman03c57742015-04-22 11:14:37 +0100320 struct mpls_dev *mdev;
Eric W. Biederman01891972015-03-03 19:10:47 -0600321 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
Robert Shearman03c57742015-04-22 11:14:37 +0100328 mdev = mpls_dev_get(dev);
Robert Shearman27d69102017-01-16 14:16:37 +0000329 if (!mdev)
Robert Shearman03c57742015-04-22 11:14:37 +0100330 goto drop;
331
Robert Shearman27d69102017-01-16 14:16:37 +0000332 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);
337 goto drop;
338 }
339
Eric W. Biederman01891972015-03-03 19:10:47 -0600340 if (skb->pkt_type != PACKET_HOST)
Robert Shearman27d69102017-01-16 14:16:37 +0000341 goto err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600342
343 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
Robert Shearman27d69102017-01-16 14:16:37 +0000344 goto err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600345
346 if (!pskb_may_pull(skb, sizeof(*hdr)))
Robert Shearman27d69102017-01-16 14:16:37 +0000347 goto err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600348
349 /* Read and decode the label */
350 hdr = mpls_hdr(skb);
351 dec = mpls_entry_decode(hdr);
352
Eric W. Biederman01891972015-03-03 19:10:47 -0600353 rt = mpls_route_input_rcu(net, dec.label);
Robert Shearman27d69102017-01-16 14:16:37 +0000354 if (!rt) {
355 MPLS_INC_STATS(mdev, rx_noroute);
Eric W. Biederman01891972015-03-03 19:10:47 -0600356 goto drop;
Robert Shearman27d69102017-01-16 14:16:37 +0000357 }
Eric W. Biederman01891972015-03-03 19:10:47 -0600358
David Ahern9f427a0e2017-01-20 12:58:34 -0800359 nh = mpls_select_multipath(rt, skb);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700360 if (!nh)
Robert Shearman27d69102017-01-16 14:16:37 +0000361 goto err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600362
David Ahern9f427a0e2017-01-20 12:58:34 -0800363 /* Pop the label */
364 skb_pull(skb, sizeof(*hdr));
365 skb_reset_network_header(skb);
366
367 skb_orphan(skb);
368
Eric W. Biederman01891972015-03-03 19:10:47 -0600369 if (skb_warn_if_lro(skb))
Robert Shearman27d69102017-01-16 14:16:37 +0000370 goto err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600371
372 skb_forward_csum(skb);
373
374 /* Verify ttl is valid */
Eric W. Biedermanaa7da932015-03-07 16:23:23 -0600375 if (dec.ttl <= 1)
Robert Shearman27d69102017-01-16 14:16:37 +0000376 goto err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600377 dec.ttl -= 1;
378
Robert Shearman27d69102017-01-16 14:16:37 +0000379 /* Find the output device */
380 out_dev = rcu_dereference(nh->nh_dev);
381 if (!mpls_output_possible(out_dev))
382 goto tx_err;
383
Eric W. Biederman01891972015-03-03 19:10:47 -0600384 /* Verify the destination can hold the packet */
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700385 new_header_size = mpls_nh_header_size(nh);
Eric W. Biederman01891972015-03-03 19:10:47 -0600386 mtu = mpls_dev_mtu(out_dev);
387 if (mpls_pkt_too_big(skb, mtu - new_header_size))
Robert Shearman27d69102017-01-16 14:16:37 +0000388 goto tx_err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600389
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))
Robert Shearman27d69102017-01-16 14:16:37 +0000396 goto tx_err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600397
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 */
Robert Shearman5b441ac2017-03-10 20:43:24 +0000403 if (!mpls_egress(dev_net(out_dev), rt, skb, dec))
Robert Shearman27d69102017-01-16 14:16:37 +0000404 goto err;
Eric W. Biederman01891972015-03-03 19:10:47 -0600405 } 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;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700413 for (i = nh->nh_labels - 1; i >= 0; i--) {
414 hdr[i] = mpls_entry_encode(nh->nh_label[i],
415 dec.ttl, 0, bos);
Eric W. Biederman01891972015-03-03 19:10:47 -0600416 bos = false;
417 }
418 }
419
Robert Shearman27d69102017-01-16 14:16:37 +0000420 mpls_stats_inc_outucastpkts(out_dev, skb);
421
Robert Shearmaneb7809f2015-12-10 19:30:50 +0000422 /* 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);
Eric W. Biederman01891972015-03-03 19:10:47 -0600429 if (err)
430 net_dbg_ratelimited("%s: packet transmission failed: %d\n",
431 __func__, err);
432 return 0;
433
Robert Shearman27d69102017-01-16 14:16:37 +0000434tx_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);
Eric W. Biederman01891972015-03-03 19:10:47 -0600441drop:
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
Wu Fengguangf0126532015-03-05 05:33:54 +0800451static const struct nla_policy rtm_mpls_policy[RTA_MAX+1] = {
Eric W. Biederman03c05662015-03-03 19:13:56 -0600452 [RTA_DST] = { .type = NLA_U32 },
453 [RTA_OIF] = { .type = NLA_U32 },
Robert Shearman5b441ac2017-03-10 20:43:24 +0000454 [RTA_TTL_PROPAGATE] = { .type = NLA_U8 },
Eric W. Biederman03c05662015-03-03 19:13:56 -0600455};
456
Eric W. Biedermana2519922015-03-03 19:12:40 -0600457struct mpls_route_config {
Robert Shearman118d5232015-08-06 11:04:56 +0100458 u32 rc_protocol;
459 u32 rc_ifindex;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700460 u8 rc_via_table;
461 u8 rc_via_alen;
Robert Shearman118d5232015-08-06 11:04:56 +0100462 u8 rc_via[MAX_VIA_ALEN];
463 u32 rc_label;
Robert Shearman5b441ac2017-03-10 20:43:24 +0000464 u8 rc_ttl_propagate;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700465 u8 rc_output_labels;
Robert Shearman118d5232015-08-06 11:04:56 +0100466 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;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700470 struct rtnexthop *rc_mp;
471 int rc_mp_len;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600472};
473
David Ahern59b20962017-03-31 07:14:01 -0700474/* 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)
Eric W. Biederman01891972015-03-03 19:10:47 -0600478{
David Ahern59b20962017-03-31 07:14:01 -0700479 u8 nh_size = MPLS_NH_SIZE(max_labels, max_alen);
Eric W. Biederman01891972015-03-03 19:10:47 -0600480 struct mpls_route *rt;
David Aherndf1c6312017-03-31 07:14:02 -0700481 size_t size;
Eric W. Biederman01891972015-03-03 19:10:47 -0600482
David Aherndf1c6312017-03-31 07:14:02 -0700483 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);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700495
Eric W. Biederman01891972015-03-03 19:10:47 -0600496 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
Eric W. Biederman8de147d2015-03-03 19:14:31 -0600505static 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 */
Robert Shearmana6affd22015-08-03 17:50:04 +0100515 if (rt && (index >= MPLS_LABEL_FIRST_UNRESERVED))
Eric W. Biederman8de147d2015-03-03 19:14:31 -0600516 rtmsg_lfib(event, index, rt, nlh, net, portid, nlm_flags);
517}
518
Eric W. Biederman01891972015-03-03 19:10:47 -0600519static void mpls_route_update(struct net *net, unsigned index,
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700520 struct mpls_route *new,
Eric W. Biederman01891972015-03-03 19:10:47 -0600521 const struct nl_info *info)
522{
Eric W. Biederman19d0c342015-03-07 16:21:56 -0600523 struct mpls_route __rcu **platform_label;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700524 struct mpls_route *rt;
Eric W. Biederman01891972015-03-03 19:10:47 -0600525
526 ASSERT_RTNL();
527
Eric W. Biederman19d0c342015-03-07 16:21:56 -0600528 platform_label = rtnl_dereference(net->mpls.platform_label);
529 rt = rtnl_dereference(platform_label[index]);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700530 rcu_assign_pointer(platform_label[index], new);
Eric W. Biederman01891972015-03-03 19:10:47 -0600531
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700532 mpls_notify_route(net, index, rt, new, info);
Eric W. Biederman8de147d2015-03-03 19:14:31 -0600533
Eric W. Biederman01891972015-03-03 19:10:47 -0600534 /* If we removed a route free it now */
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700535 mpls_rt_free(rt);
Eric W. Biederman01891972015-03-03 19:10:47 -0600536}
537
Eric W. Biedermana2519922015-03-03 19:12:40 -0600538static unsigned find_free_label(struct net *net)
539{
Eric W. Biederman19d0c342015-03-07 16:21:56 -0600540 struct mpls_route __rcu **platform_label;
541 size_t platform_labels;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600542 unsigned index;
Eric W. Biederman19d0c342015-03-07 16:21:56 -0600543
544 platform_label = rtnl_dereference(net->mpls.platform_label);
545 platform_labels = net->mpls.platform_labels;
Robert Shearmana6affd22015-08-03 17:50:04 +0100546 for (index = MPLS_LABEL_FIRST_UNRESERVED; index < platform_labels;
547 index++) {
Eric W. Biederman19d0c342015-03-07 16:21:56 -0600548 if (!rtnl_dereference(platform_label[index]))
Eric W. Biedermana2519922015-03-03 19:12:40 -0600549 return index;
550 }
551 return LABEL_NOT_SPECIFIED;
552}
553
Roopa Prabhubf215632015-07-30 13:34:54 -0700554#if IS_ENABLED(CONFIG_INET)
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000555static struct net_device *inet_fib_lookup_dev(struct net *net,
556 const void *addr)
Roopa Prabhu01faef22015-07-21 09:16:24 -0700557{
Dan Carpenter5a9348b2015-08-04 10:44:22 +0300558 struct net_device *dev;
Roopa Prabhu01faef22015-07-21 09:16:24 -0700559 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))
Dan Carpenter5a9348b2015-08-04 10:44:22 +0300565 return ERR_CAST(rt);
Roopa Prabhu01faef22015-07-21 09:16:24 -0700566
567 dev = rt->dst.dev;
568 dev_hold(dev);
569
570 ip_rt_put(rt);
571
Roopa Prabhu01faef22015-07-21 09:16:24 -0700572 return dev;
573}
Roopa Prabhubf215632015-07-30 13:34:54 -0700574#else
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000575static struct net_device *inet_fib_lookup_dev(struct net *net,
576 const void *addr)
Roopa Prabhubf215632015-07-30 13:34:54 -0700577{
578 return ERR_PTR(-EAFNOSUPPORT);
579}
580#endif
Roopa Prabhu01faef22015-07-21 09:16:24 -0700581
Roopa Prabhubf215632015-07-30 13:34:54 -0700582#if IS_ENABLED(CONFIG_IPV6)
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000583static struct net_device *inet6_fib_lookup_dev(struct net *net,
584 const void *addr)
Roopa Prabhu01faef22015-07-21 09:16:24 -0700585{
Dan Carpenter5a9348b2015-08-04 10:44:22 +0300586 struct net_device *dev;
Roopa Prabhu01faef22015-07-21 09:16:24 -0700587 struct dst_entry *dst;
588 struct flowi6 fl6;
Roopa Prabhubf215632015-07-30 13:34:54 -0700589 int err;
590
591 if (!ipv6_stub)
592 return ERR_PTR(-EAFNOSUPPORT);
Roopa Prabhu01faef22015-07-21 09:16:24 -0700593
594 memset(&fl6, 0, sizeof(fl6));
595 memcpy(&fl6.daddr, addr, sizeof(struct in6_addr));
Roopa Prabhubf215632015-07-30 13:34:54 -0700596 err = ipv6_stub->ipv6_dst_lookup(net, NULL, &dst, &fl6);
597 if (err)
Dan Carpenter5a9348b2015-08-04 10:44:22 +0300598 return ERR_PTR(err);
Roopa Prabhu01faef22015-07-21 09:16:24 -0700599
600 dev = dst->dev;
601 dev_hold(dev);
Roopa Prabhu01faef22015-07-21 09:16:24 -0700602 dst_release(dst);
603
604 return dev;
605}
Roopa Prabhubf215632015-07-30 13:34:54 -0700606#else
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000607static struct net_device *inet6_fib_lookup_dev(struct net *net,
608 const void *addr)
Roopa Prabhubf215632015-07-30 13:34:54 -0700609{
610 return ERR_PTR(-EAFNOSUPPORT);
611}
612#endif
Roopa Prabhu01faef22015-07-21 09:16:24 -0700613
614static struct net_device *find_outdev(struct net *net,
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000615 struct mpls_route *rt,
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700616 struct mpls_nh *nh, int oif)
Roopa Prabhu01faef22015-07-21 09:16:24 -0700617{
618 struct net_device *dev = NULL;
619
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700620 if (!oif) {
621 switch (nh->nh_via_table) {
Roopa Prabhu01faef22015-07-21 09:16:24 -0700622 case NEIGH_ARP_TABLE:
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000623 dev = inet_fib_lookup_dev(net, mpls_nh_via(rt, nh));
Roopa Prabhu01faef22015-07-21 09:16:24 -0700624 break;
625 case NEIGH_ND_TABLE:
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000626 dev = inet6_fib_lookup_dev(net, mpls_nh_via(rt, nh));
Roopa Prabhu01faef22015-07-21 09:16:24 -0700627 break;
628 case NEIGH_LINK_TABLE:
629 break;
630 }
631 } else {
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700632 dev = dev_get_by_index(net, oif);
Roopa Prabhu01faef22015-07-21 09:16:24 -0700633 }
634
Roopa Prabhu3dcb6152015-08-04 06:36:24 -0700635 if (!dev)
636 return ERR_PTR(-ENODEV);
637
Roopa Prabhu94a57f12016-04-07 21:28:38 -0700638 if (IS_ERR(dev))
639 return dev;
640
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700641 /* The caller is holding rtnl anyways, so release the dev reference */
642 dev_put(dev);
643
Roopa Prabhu01faef22015-07-21 09:16:24 -0700644 return dev;
645}
646
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000647static int mpls_nh_assign_dev(struct net *net, struct mpls_route *rt,
648 struct mpls_nh *nh, int oif)
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700649{
650 struct net_device *dev = NULL;
651 int err = -ENODEV;
652
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000653 dev = find_outdev(net, rt, nh, oif);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700654 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
Robert Shearmana3e948e2015-12-10 19:30:48 +0000665 if ((nh->nh_via_table == NEIGH_LINK_TABLE) &&
666 (dev->addr_len != nh->nh_via_alen))
667 goto errout;
668
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700669 RCU_INIT_POINTER(nh->nh_dev, dev);
670
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800671 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
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700681 return 0;
682
683errout:
684 return err;
685}
686
687static int mpls_nh_build_from_cfg(struct mpls_route_config *cfg,
688 struct mpls_route *rt)
689{
690 struct net *net = cfg->rc_nlinfo.nl_net;
691 struct mpls_nh *nh = rt->rt_nh;
692 int err;
693 int i;
694
695 if (!nh)
696 return -ENOMEM;
697
698 err = -EINVAL;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700699
700 nh->nh_labels = cfg->rc_output_labels;
701 for (i = 0; i < nh->nh_labels; i++)
702 nh->nh_label[i] = cfg->rc_output_label[i];
703
704 nh->nh_via_table = cfg->rc_via_table;
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000705 memcpy(__mpls_nh_via(rt, nh), cfg->rc_via, cfg->rc_via_alen);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700706 nh->nh_via_alen = cfg->rc_via_alen;
707
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000708 err = mpls_nh_assign_dev(net, rt, nh, cfg->rc_ifindex);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700709 if (err)
710 goto errout;
711
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800712 if (nh->nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN))
713 rt->rt_nhn_alive--;
714
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700715 return 0;
716
717errout:
718 return err;
719}
720
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000721static int mpls_nh_build(struct net *net, struct mpls_route *rt,
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800722 struct mpls_nh *nh, int oif, struct nlattr *via,
David Aherna4ac8c92017-03-31 07:14:03 -0700723 struct nlattr *newdst, u8 max_labels)
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700724{
725 int err = -ENOMEM;
726
727 if (!nh)
728 goto errout;
729
730 if (newdst) {
David Aherna1f10ab2017-05-27 16:19:29 -0600731 err = nla_get_labels(newdst, max_labels, &nh->nh_labels,
732 nh->nh_label, NULL);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700733 if (err)
734 goto errout;
735 }
736
Robert Shearmanf20367d2015-12-10 19:30:51 +0000737 if (via) {
738 err = nla_get_via(via, &nh->nh_via_alen, &nh->nh_via_table,
739 __mpls_nh_via(rt, nh));
740 if (err)
741 goto errout;
742 } else {
743 nh->nh_via_table = MPLS_NEIGH_TABLE_UNSPEC;
744 }
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700745
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000746 err = mpls_nh_assign_dev(net, rt, nh, oif);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700747 if (err)
748 goto errout;
749
750 return 0;
751
752errout:
753 return err;
754}
755
David Ahern77ef013a2017-03-31 07:14:00 -0700756static u8 mpls_count_nexthops(struct rtnexthop *rtnh, int len,
David Aherna4ac8c92017-03-31 07:14:03 -0700757 u8 cfg_via_alen, u8 *max_via_alen,
758 u8 *max_labels)
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700759{
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700760 int remaining = len;
David Ahern77ef013a2017-03-31 07:14:00 -0700761 u8 nhs = 0;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700762
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000763 *max_via_alen = 0;
David Aherna4ac8c92017-03-31 07:14:03 -0700764 *max_labels = 0;
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000765
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700766 while (rtnh_ok(rtnh, remaining)) {
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000767 struct nlattr *nla, *attrs = rtnh_attrs(rtnh);
768 int attrlen;
David Aherna4ac8c92017-03-31 07:14:03 -0700769 u8 n_labels = 0;
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000770
771 attrlen = rtnh_attrlen(rtnh);
772 nla = nla_find(attrs, attrlen, RTA_VIA);
773 if (nla && nla_len(nla) >=
774 offsetof(struct rtvia, rtvia_addr)) {
775 int via_alen = nla_len(nla) -
776 offsetof(struct rtvia, rtvia_addr);
777
778 if (via_alen <= MAX_VIA_ALEN)
779 *max_via_alen = max_t(u16, *max_via_alen,
780 via_alen);
781 }
782
David Aherna4ac8c92017-03-31 07:14:03 -0700783 nla = nla_find(attrs, attrlen, RTA_NEWDST);
784 if (nla &&
David Aherna1f10ab2017-05-27 16:19:29 -0600785 nla_get_labels(nla, MAX_NEW_LABELS, &n_labels,
786 NULL, NULL) != 0)
David Aherna4ac8c92017-03-31 07:14:03 -0700787 return 0;
788
789 *max_labels = max_t(u8, *max_labels, n_labels);
790
David Ahern77ef013a2017-03-31 07:14:00 -0700791 /* number of nexthops is tracked by a u8.
792 * Check for overflow.
793 */
794 if (nhs == 255)
795 return 0;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700796 nhs++;
David Ahern77ef013a2017-03-31 07:14:00 -0700797
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700798 rtnh = rtnh_next(rtnh, &remaining);
799 }
800
801 /* leftover implies invalid nexthop configuration, discard it */
802 return remaining > 0 ? 0 : nhs;
803}
804
805static int mpls_nh_build_multi(struct mpls_route_config *cfg,
David Aherna4ac8c92017-03-31 07:14:03 -0700806 struct mpls_route *rt, u8 max_labels)
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700807{
808 struct rtnexthop *rtnh = cfg->rc_mp;
809 struct nlattr *nla_via, *nla_newdst;
810 int remaining = cfg->rc_mp_len;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700811 int err = 0;
David Ahern77ef013a2017-03-31 07:14:00 -0700812 u8 nhs = 0;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700813
814 change_nexthops(rt) {
815 int attrlen;
816
817 nla_via = NULL;
818 nla_newdst = NULL;
819
820 err = -EINVAL;
821 if (!rtnh_ok(rtnh, remaining))
822 goto errout;
823
Robert Shearman1c78efa2015-10-23 06:03:28 -0700824 /* neither weighted multipath nor any flags
825 * are supported
826 */
827 if (rtnh->rtnh_hops || rtnh->rtnh_flags)
828 goto errout;
829
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700830 attrlen = rtnh_attrlen(rtnh);
831 if (attrlen > 0) {
832 struct nlattr *attrs = rtnh_attrs(rtnh);
833
834 nla_via = nla_find(attrs, attrlen, RTA_VIA);
835 nla_newdst = nla_find(attrs, attrlen, RTA_NEWDST);
836 }
837
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000838 err = mpls_nh_build(cfg->rc_nlinfo.nl_net, rt, nh,
David Aherna4ac8c92017-03-31 07:14:03 -0700839 rtnh->rtnh_ifindex, nla_via, nla_newdst,
840 max_labels);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700841 if (err)
842 goto errout;
843
Roopa Prabhuc89359a2015-12-01 22:18:11 -0800844 if (nh->nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN))
845 rt->rt_nhn_alive--;
846
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700847 rtnh = rtnh_next(rtnh, &remaining);
848 nhs++;
849 } endfor_nexthops(rt);
850
851 rt->rt_nhn = nhs;
852
853 return 0;
854
855errout:
856 return err;
857}
858
Eric W. Biedermana2519922015-03-03 19:12:40 -0600859static int mpls_route_add(struct mpls_route_config *cfg)
860{
Eric W. Biederman19d0c342015-03-07 16:21:56 -0600861 struct mpls_route __rcu **platform_label;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600862 struct net *net = cfg->rc_nlinfo.nl_net;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600863 struct mpls_route *rt, *old;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600864 int err = -EINVAL;
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000865 u8 max_via_alen;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700866 unsigned index;
David Aherna4ac8c92017-03-31 07:14:03 -0700867 u8 max_labels;
David Ahern77ef013a2017-03-31 07:14:00 -0700868 u8 nhs;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600869
870 index = cfg->rc_label;
871
872 /* If a label was not specified during insert pick one */
873 if ((index == LABEL_NOT_SPECIFIED) &&
874 (cfg->rc_nlflags & NLM_F_CREATE)) {
875 index = find_free_label(net);
876 }
877
Robert Shearmana6affd22015-08-03 17:50:04 +0100878 /* Reserved labels may not be set */
879 if (index < MPLS_LABEL_FIRST_UNRESERVED)
Eric W. Biedermana2519922015-03-03 19:12:40 -0600880 goto errout;
881
882 /* The full 20 bit range may not be supported. */
883 if (index >= net->mpls.platform_labels)
884 goto errout;
885
Eric W. Biedermana2519922015-03-03 19:12:40 -0600886 /* Append makes no sense with mpls */
Eric W. Biederman0f7bbd52015-03-07 16:22:40 -0600887 err = -EOPNOTSUPP;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600888 if (cfg->rc_nlflags & NLM_F_APPEND)
889 goto errout;
890
891 err = -EEXIST;
Eric W. Biederman19d0c342015-03-07 16:21:56 -0600892 platform_label = rtnl_dereference(net->mpls.platform_label);
893 old = rtnl_dereference(platform_label[index]);
Eric W. Biedermana2519922015-03-03 19:12:40 -0600894 if ((cfg->rc_nlflags & NLM_F_EXCL) && old)
895 goto errout;
896
897 err = -EEXIST;
898 if (!(cfg->rc_nlflags & NLM_F_REPLACE) && old)
899 goto errout;
900
901 err = -ENOENT;
902 if (!(cfg->rc_nlflags & NLM_F_CREATE) && !old)
903 goto errout;
904
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000905 err = -EINVAL;
David Aherna4ac8c92017-03-31 07:14:03 -0700906 if (cfg->rc_mp) {
907 nhs = mpls_count_nexthops(cfg->rc_mp, cfg->rc_mp_len,
908 cfg->rc_via_alen, &max_via_alen,
909 &max_labels);
910 } else {
911 max_via_alen = cfg->rc_via_alen;
912 max_labels = cfg->rc_output_labels;
913 nhs = 1;
914 }
915
Robert Shearmancf4b24f2015-10-27 00:37:36 +0000916 if (nhs == 0)
917 goto errout;
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700918
Eric W. Biedermana2519922015-03-03 19:12:40 -0600919 err = -ENOMEM;
David Aherna4ac8c92017-03-31 07:14:03 -0700920 rt = mpls_rt_alloc(nhs, max_via_alen, max_labels);
David Aherndf1c6312017-03-31 07:14:02 -0700921 if (IS_ERR(rt)) {
922 err = PTR_ERR(rt);
Eric W. Biedermana2519922015-03-03 19:12:40 -0600923 goto errout;
David Aherndf1c6312017-03-31 07:14:02 -0700924 }
Eric W. Biedermana2519922015-03-03 19:12:40 -0600925
Eric W. Biedermana2519922015-03-03 19:12:40 -0600926 rt->rt_protocol = cfg->rc_protocol;
Robert Shearman118d5232015-08-06 11:04:56 +0100927 rt->rt_payload_type = cfg->rc_payload_type;
Robert Shearman5b441ac2017-03-10 20:43:24 +0000928 rt->rt_ttl_propagate = cfg->rc_ttl_propagate;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600929
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700930 if (cfg->rc_mp)
David Aherna4ac8c92017-03-31 07:14:03 -0700931 err = mpls_nh_build_multi(cfg, rt, max_labels);
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700932 else
933 err = mpls_nh_build_from_cfg(cfg, rt);
934 if (err)
935 goto freert;
Eric W. Biedermana2519922015-03-03 19:12:40 -0600936
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700937 mpls_route_update(net, index, rt, &cfg->rc_nlinfo);
938
Eric W. Biedermana2519922015-03-03 19:12:40 -0600939 return 0;
940
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700941freert:
942 mpls_rt_free(rt);
Eric W. Biedermana2519922015-03-03 19:12:40 -0600943errout:
Eric W. Biedermana2519922015-03-03 19:12:40 -0600944 return err;
945}
946
947static int mpls_route_del(struct mpls_route_config *cfg)
948{
949 struct net *net = cfg->rc_nlinfo.nl_net;
950 unsigned index;
951 int err = -EINVAL;
952
953 index = cfg->rc_label;
954
Robert Shearmana6affd22015-08-03 17:50:04 +0100955 /* Reserved labels may not be removed */
956 if (index < MPLS_LABEL_FIRST_UNRESERVED)
Eric W. Biedermana2519922015-03-03 19:12:40 -0600957 goto errout;
958
959 /* The full 20 bit range may not be supported */
960 if (index >= net->mpls.platform_labels)
961 goto errout;
962
Roopa Prabhuf8efb732015-10-23 06:03:27 -0700963 mpls_route_update(net, index, NULL, &cfg->rc_nlinfo);
Eric W. Biedermana2519922015-03-03 19:12:40 -0600964
965 err = 0;
966errout:
967 return err;
968}
969
Robert Shearman27d69102017-01-16 14:16:37 +0000970static void mpls_get_stats(struct mpls_dev *mdev,
971 struct mpls_link_stats *stats)
972{
973 struct mpls_pcpu_stats *p;
974 int i;
975
976 memset(stats, 0, sizeof(*stats));
977
978 for_each_possible_cpu(i) {
979 struct mpls_link_stats local;
980 unsigned int start;
981
982 p = per_cpu_ptr(mdev->stats, i);
983 do {
984 start = u64_stats_fetch_begin(&p->syncp);
985 local = p->stats;
986 } while (u64_stats_fetch_retry(&p->syncp, start));
987
988 stats->rx_packets += local.rx_packets;
989 stats->rx_bytes += local.rx_bytes;
990 stats->tx_packets += local.tx_packets;
991 stats->tx_bytes += local.tx_bytes;
992 stats->rx_errors += local.rx_errors;
993 stats->tx_errors += local.tx_errors;
994 stats->rx_dropped += local.rx_dropped;
995 stats->tx_dropped += local.tx_dropped;
996 stats->rx_noroute += local.rx_noroute;
997 }
998}
999
1000static int mpls_fill_stats_af(struct sk_buff *skb,
1001 const struct net_device *dev)
1002{
1003 struct mpls_link_stats *stats;
1004 struct mpls_dev *mdev;
1005 struct nlattr *nla;
1006
1007 mdev = mpls_dev_get(dev);
1008 if (!mdev)
1009 return -ENODATA;
1010
1011 nla = nla_reserve_64bit(skb, MPLS_STATS_LINK,
1012 sizeof(struct mpls_link_stats),
1013 MPLS_STATS_UNSPEC);
1014 if (!nla)
1015 return -EMSGSIZE;
1016
1017 stats = nla_data(nla);
1018 mpls_get_stats(mdev, stats);
1019
1020 return 0;
1021}
1022
1023static size_t mpls_get_stats_af_size(const struct net_device *dev)
1024{
1025 struct mpls_dev *mdev;
1026
1027 mdev = mpls_dev_get(dev);
1028 if (!mdev)
1029 return 0;
1030
1031 return nla_total_size_64bit(sizeof(struct mpls_link_stats));
1032}
1033
David Ahern24045a02017-02-20 08:03:30 -08001034static int mpls_netconf_fill_devconf(struct sk_buff *skb, struct mpls_dev *mdev,
1035 u32 portid, u32 seq, int event,
1036 unsigned int flags, int type)
1037{
1038 struct nlmsghdr *nlh;
1039 struct netconfmsg *ncm;
1040 bool all = false;
1041
1042 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
1043 flags);
1044 if (!nlh)
1045 return -EMSGSIZE;
1046
1047 if (type == NETCONFA_ALL)
1048 all = true;
1049
1050 ncm = nlmsg_data(nlh);
1051 ncm->ncm_family = AF_MPLS;
1052
1053 if (nla_put_s32(skb, NETCONFA_IFINDEX, mdev->dev->ifindex) < 0)
1054 goto nla_put_failure;
1055
1056 if ((all || type == NETCONFA_INPUT) &&
1057 nla_put_s32(skb, NETCONFA_INPUT,
1058 mdev->input_enabled) < 0)
1059 goto nla_put_failure;
1060
1061 nlmsg_end(skb, nlh);
1062 return 0;
1063
1064nla_put_failure:
1065 nlmsg_cancel(skb, nlh);
1066 return -EMSGSIZE;
1067}
1068
1069static int mpls_netconf_msgsize_devconf(int type)
1070{
1071 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
1072 + nla_total_size(4); /* NETCONFA_IFINDEX */
1073 bool all = false;
1074
1075 if (type == NETCONFA_ALL)
1076 all = true;
1077
1078 if (all || type == NETCONFA_INPUT)
1079 size += nla_total_size(4);
1080
1081 return size;
1082}
1083
David Ahern823566a2017-03-28 14:28:06 -07001084static void mpls_netconf_notify_devconf(struct net *net, int event,
1085 int type, struct mpls_dev *mdev)
David Ahern24045a02017-02-20 08:03:30 -08001086{
1087 struct sk_buff *skb;
1088 int err = -ENOBUFS;
1089
1090 skb = nlmsg_new(mpls_netconf_msgsize_devconf(type), GFP_KERNEL);
1091 if (!skb)
1092 goto errout;
1093
David Ahern823566a2017-03-28 14:28:06 -07001094 err = mpls_netconf_fill_devconf(skb, mdev, 0, 0, event, 0, type);
David Ahern24045a02017-02-20 08:03:30 -08001095 if (err < 0) {
1096 /* -EMSGSIZE implies BUG in mpls_netconf_msgsize_devconf() */
1097 WARN_ON(err == -EMSGSIZE);
1098 kfree_skb(skb);
1099 goto errout;
1100 }
1101
1102 rtnl_notify(skb, net, 0, RTNLGRP_MPLS_NETCONF, NULL, GFP_KERNEL);
1103 return;
1104errout:
1105 if (err < 0)
1106 rtnl_set_sk_err(net, RTNLGRP_MPLS_NETCONF, err);
1107}
1108
1109static const struct nla_policy devconf_mpls_policy[NETCONFA_MAX + 1] = {
1110 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
1111};
1112
1113static int mpls_netconf_get_devconf(struct sk_buff *in_skb,
David Ahernc21ef3e2017-04-16 09:48:24 -07001114 struct nlmsghdr *nlh,
1115 struct netlink_ext_ack *extack)
David Ahern24045a02017-02-20 08:03:30 -08001116{
1117 struct net *net = sock_net(in_skb->sk);
1118 struct nlattr *tb[NETCONFA_MAX + 1];
1119 struct netconfmsg *ncm;
1120 struct net_device *dev;
1121 struct mpls_dev *mdev;
1122 struct sk_buff *skb;
1123 int ifindex;
1124 int err;
1125
1126 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
Johannes Bergfceb6432017-04-12 14:34:07 +02001127 devconf_mpls_policy, NULL);
David Ahern24045a02017-02-20 08:03:30 -08001128 if (err < 0)
1129 goto errout;
1130
1131 err = -EINVAL;
1132 if (!tb[NETCONFA_IFINDEX])
1133 goto errout;
1134
1135 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
1136 dev = __dev_get_by_index(net, ifindex);
1137 if (!dev)
1138 goto errout;
1139
1140 mdev = mpls_dev_get(dev);
1141 if (!mdev)
1142 goto errout;
1143
1144 err = -ENOBUFS;
1145 skb = nlmsg_new(mpls_netconf_msgsize_devconf(NETCONFA_ALL), GFP_KERNEL);
1146 if (!skb)
1147 goto errout;
1148
1149 err = mpls_netconf_fill_devconf(skb, mdev,
1150 NETLINK_CB(in_skb).portid,
1151 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
1152 NETCONFA_ALL);
1153 if (err < 0) {
1154 /* -EMSGSIZE implies BUG in mpls_netconf_msgsize_devconf() */
1155 WARN_ON(err == -EMSGSIZE);
1156 kfree_skb(skb);
1157 goto errout;
1158 }
1159 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
1160errout:
1161 return err;
1162}
1163
1164static int mpls_netconf_dump_devconf(struct sk_buff *skb,
1165 struct netlink_callback *cb)
1166{
1167 struct net *net = sock_net(skb->sk);
1168 struct hlist_head *head;
1169 struct net_device *dev;
1170 struct mpls_dev *mdev;
1171 int idx, s_idx;
1172 int h, s_h;
1173
1174 s_h = cb->args[0];
1175 s_idx = idx = cb->args[1];
1176
1177 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1178 idx = 0;
1179 head = &net->dev_index_head[h];
1180 rcu_read_lock();
1181 cb->seq = net->dev_base_seq;
1182 hlist_for_each_entry_rcu(dev, head, index_hlist) {
1183 if (idx < s_idx)
1184 goto cont;
1185 mdev = mpls_dev_get(dev);
1186 if (!mdev)
1187 goto cont;
1188 if (mpls_netconf_fill_devconf(skb, mdev,
1189 NETLINK_CB(cb->skb).portid,
1190 cb->nlh->nlmsg_seq,
1191 RTM_NEWNETCONF,
1192 NLM_F_MULTI,
1193 NETCONFA_ALL) < 0) {
1194 rcu_read_unlock();
1195 goto done;
1196 }
1197 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1198cont:
1199 idx++;
1200 }
1201 rcu_read_unlock();
1202 }
1203done:
1204 cb->args[0] = h;
1205 cb->args[1] = idx;
1206
1207 return skb->len;
1208}
1209
Robert Shearman37bde792015-04-22 11:14:38 +01001210#define MPLS_PERDEV_SYSCTL_OFFSET(field) \
1211 (&((struct mpls_dev *)0)->field)
1212
David Ahern24045a02017-02-20 08:03:30 -08001213static int mpls_conf_proc(struct ctl_table *ctl, int write,
1214 void __user *buffer,
1215 size_t *lenp, loff_t *ppos)
1216{
1217 int oval = *(int *)ctl->data;
1218 int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
1219
1220 if (write) {
1221 struct mpls_dev *mdev = ctl->extra1;
1222 int i = (int *)ctl->data - (int *)mdev;
1223 struct net *net = ctl->extra2;
1224 int val = *(int *)ctl->data;
1225
1226 if (i == offsetof(struct mpls_dev, input_enabled) &&
1227 val != oval) {
David Ahern823566a2017-03-28 14:28:06 -07001228 mpls_netconf_notify_devconf(net, RTM_NEWNETCONF,
1229 NETCONFA_INPUT, mdev);
David Ahern24045a02017-02-20 08:03:30 -08001230 }
1231 }
1232
1233 return ret;
1234}
1235
Robert Shearman37bde792015-04-22 11:14:38 +01001236static const struct ctl_table mpls_dev_table[] = {
1237 {
1238 .procname = "input",
1239 .maxlen = sizeof(int),
1240 .mode = 0644,
David Ahern24045a02017-02-20 08:03:30 -08001241 .proc_handler = mpls_conf_proc,
Robert Shearman37bde792015-04-22 11:14:38 +01001242 .data = MPLS_PERDEV_SYSCTL_OFFSET(input_enabled),
1243 },
1244 { }
1245};
1246
1247static int mpls_dev_sysctl_register(struct net_device *dev,
1248 struct mpls_dev *mdev)
1249{
1250 char path[sizeof("net/mpls/conf/") + IFNAMSIZ];
David Ahern24045a02017-02-20 08:03:30 -08001251 struct net *net = dev_net(dev);
Robert Shearman37bde792015-04-22 11:14:38 +01001252 struct ctl_table *table;
1253 int i;
1254
1255 table = kmemdup(&mpls_dev_table, sizeof(mpls_dev_table), GFP_KERNEL);
1256 if (!table)
1257 goto out;
1258
1259 /* Table data contains only offsets relative to the base of
1260 * the mdev at this point, so make them absolute.
1261 */
David Ahern24045a02017-02-20 08:03:30 -08001262 for (i = 0; i < ARRAY_SIZE(mpls_dev_table); i++) {
Robert Shearman37bde792015-04-22 11:14:38 +01001263 table[i].data = (char *)mdev + (uintptr_t)table[i].data;
David Ahern24045a02017-02-20 08:03:30 -08001264 table[i].extra1 = mdev;
1265 table[i].extra2 = net;
1266 }
Robert Shearman37bde792015-04-22 11:14:38 +01001267
1268 snprintf(path, sizeof(path), "net/mpls/conf/%s", dev->name);
1269
David Ahern1182e4d2017-03-28 14:28:07 -07001270 mdev->sysctl = register_net_sysctl(net, path, table);
Robert Shearman37bde792015-04-22 11:14:38 +01001271 if (!mdev->sysctl)
1272 goto free;
1273
David Ahern1182e4d2017-03-28 14:28:07 -07001274 mpls_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL, mdev);
Robert Shearman37bde792015-04-22 11:14:38 +01001275 return 0;
1276
1277free:
1278 kfree(table);
1279out:
1280 return -ENOBUFS;
1281}
1282
David Ahern1182e4d2017-03-28 14:28:07 -07001283static void mpls_dev_sysctl_unregister(struct net_device *dev,
1284 struct mpls_dev *mdev)
Robert Shearman37bde792015-04-22 11:14:38 +01001285{
David Ahern1182e4d2017-03-28 14:28:07 -07001286 struct net *net = dev_net(dev);
Robert Shearman37bde792015-04-22 11:14:38 +01001287 struct ctl_table *table;
1288
1289 table = mdev->sysctl->ctl_table_arg;
1290 unregister_net_sysctl_table(mdev->sysctl);
1291 kfree(table);
David Ahern1182e4d2017-03-28 14:28:07 -07001292
1293 mpls_netconf_notify_devconf(net, RTM_DELNETCONF, 0, mdev);
Robert Shearman37bde792015-04-22 11:14:38 +01001294}
1295
Robert Shearman03c57742015-04-22 11:14:37 +01001296static struct mpls_dev *mpls_add_dev(struct net_device *dev)
1297{
1298 struct mpls_dev *mdev;
1299 int err = -ENOMEM;
Robert Shearman27d69102017-01-16 14:16:37 +00001300 int i;
Robert Shearman03c57742015-04-22 11:14:37 +01001301
1302 ASSERT_RTNL();
1303
1304 mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
1305 if (!mdev)
1306 return ERR_PTR(err);
1307
Robert Shearman27d69102017-01-16 14:16:37 +00001308 mdev->stats = alloc_percpu(struct mpls_pcpu_stats);
1309 if (!mdev->stats)
1310 goto free;
1311
1312 for_each_possible_cpu(i) {
1313 struct mpls_pcpu_stats *mpls_stats;
1314
1315 mpls_stats = per_cpu_ptr(mdev->stats, i);
1316 u64_stats_init(&mpls_stats->syncp);
1317 }
1318
David Ahern1182e4d2017-03-28 14:28:07 -07001319 mdev->dev = dev;
1320
Robert Shearman37bde792015-04-22 11:14:38 +01001321 err = mpls_dev_sysctl_register(dev, mdev);
1322 if (err)
1323 goto free;
1324
Robert Shearman03c57742015-04-22 11:14:37 +01001325 rcu_assign_pointer(dev->mpls_ptr, mdev);
1326
1327 return mdev;
Robert Shearman37bde792015-04-22 11:14:38 +01001328
1329free:
Robert Shearman27d69102017-01-16 14:16:37 +00001330 free_percpu(mdev->stats);
Robert Shearman37bde792015-04-22 11:14:38 +01001331 kfree(mdev);
1332 return ERR_PTR(err);
Robert Shearman03c57742015-04-22 11:14:37 +01001333}
1334
Robert Shearman27d69102017-01-16 14:16:37 +00001335static void mpls_dev_destroy_rcu(struct rcu_head *head)
1336{
1337 struct mpls_dev *mdev = container_of(head, struct mpls_dev, rcu);
1338
1339 free_percpu(mdev->stats);
1340 kfree(mdev);
1341}
1342
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001343static void mpls_ifdown(struct net_device *dev, int event)
Eric W. Biederman01891972015-03-03 19:10:47 -06001344{
Eric W. Biederman19d0c342015-03-07 16:21:56 -06001345 struct mpls_route __rcu **platform_label;
Eric W. Biederman01891972015-03-03 19:10:47 -06001346 struct net *net = dev_net(dev);
David Ahern77ef013a2017-03-31 07:14:00 -07001347 u8 alive, deleted;
Eric W. Biederman01891972015-03-03 19:10:47 -06001348 unsigned index;
1349
Eric W. Biederman19d0c342015-03-07 16:21:56 -06001350 platform_label = rtnl_dereference(net->mpls.platform_label);
Eric W. Biederman01891972015-03-03 19:10:47 -06001351 for (index = 0; index < net->mpls.platform_labels; index++) {
Eric W. Biederman19d0c342015-03-07 16:21:56 -06001352 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001353
Eric W. Biederman01891972015-03-03 19:10:47 -06001354 if (!rt)
1355 continue;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001356
David Ahern61733c92017-03-13 16:49:10 -07001357 alive = 0;
David Ahern4ea8efa2017-03-24 15:21:57 -07001358 deleted = 0;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001359 change_nexthops(rt) {
David Ahern39eb8cd2017-03-31 07:13:59 -07001360 unsigned int nh_flags = nh->nh_flags;
1361
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001362 if (rtnl_dereference(nh->nh_dev) != dev)
David Ahern61733c92017-03-13 16:49:10 -07001363 goto next;
1364
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001365 switch (event) {
1366 case NETDEV_DOWN:
1367 case NETDEV_UNREGISTER:
David Ahern39eb8cd2017-03-31 07:13:59 -07001368 nh_flags |= RTNH_F_DEAD;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001369 /* fall through */
1370 case NETDEV_CHANGE:
David Ahern39eb8cd2017-03-31 07:13:59 -07001371 nh_flags |= RTNH_F_LINKDOWN;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001372 break;
1373 }
1374 if (event == NETDEV_UNREGISTER)
1375 RCU_INIT_POINTER(nh->nh_dev, NULL);
David Ahern39eb8cd2017-03-31 07:13:59 -07001376
1377 if (nh->nh_flags != nh_flags)
1378 WRITE_ONCE(nh->nh_flags, nh_flags);
David Ahern61733c92017-03-13 16:49:10 -07001379next:
David Ahern39eb8cd2017-03-31 07:13:59 -07001380 if (!(nh_flags & (RTNH_F_DEAD | RTNH_F_LINKDOWN)))
David Ahern61733c92017-03-13 16:49:10 -07001381 alive++;
David Ahern4ea8efa2017-03-24 15:21:57 -07001382 if (!rtnl_dereference(nh->nh_dev))
1383 deleted++;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001384 } endfor_nexthops(rt);
David Ahern61733c92017-03-13 16:49:10 -07001385
1386 WRITE_ONCE(rt->rt_nhn_alive, alive);
David Ahern4ea8efa2017-03-24 15:21:57 -07001387
1388 /* if there are no more nexthops, delete the route */
1389 if (event == NETDEV_UNREGISTER && deleted == rt->rt_nhn)
1390 mpls_route_update(net, index, NULL, NULL);
Eric W. Biederman01891972015-03-03 19:10:47 -06001391 }
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001392}
Robert Shearman37bde792015-04-22 11:14:38 +01001393
David Ahern39eb8cd2017-03-31 07:13:59 -07001394static void mpls_ifup(struct net_device *dev, unsigned int flags)
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001395{
1396 struct mpls_route __rcu **platform_label;
1397 struct net *net = dev_net(dev);
1398 unsigned index;
David Ahern77ef013a2017-03-31 07:14:00 -07001399 u8 alive;
Robert Shearman03c57742015-04-22 11:14:37 +01001400
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001401 platform_label = rtnl_dereference(net->mpls.platform_label);
1402 for (index = 0; index < net->mpls.platform_labels; index++) {
1403 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
1404
1405 if (!rt)
1406 continue;
1407
1408 alive = 0;
1409 change_nexthops(rt) {
David Ahern39eb8cd2017-03-31 07:13:59 -07001410 unsigned int nh_flags = nh->nh_flags;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001411 struct net_device *nh_dev =
1412 rtnl_dereference(nh->nh_dev);
1413
David Ahern39eb8cd2017-03-31 07:13:59 -07001414 if (!(nh_flags & flags)) {
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001415 alive++;
1416 continue;
1417 }
1418 if (nh_dev != dev)
1419 continue;
1420 alive++;
David Ahern39eb8cd2017-03-31 07:13:59 -07001421 nh_flags &= ~flags;
1422 WRITE_ONCE(nh->nh_flags, flags);
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001423 } endfor_nexthops(rt);
1424
David Ahern39eb8cd2017-03-31 07:13:59 -07001425 WRITE_ONCE(rt->rt_nhn_alive, alive);
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001426 }
Eric W. Biederman01891972015-03-03 19:10:47 -06001427}
1428
1429static int mpls_dev_notify(struct notifier_block *this, unsigned long event,
1430 void *ptr)
1431{
1432 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Robert Shearman03c57742015-04-22 11:14:37 +01001433 struct mpls_dev *mdev;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001434 unsigned int flags;
Eric W. Biederman01891972015-03-03 19:10:47 -06001435
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001436 if (event == NETDEV_REGISTER) {
Simon Horman407f31b2016-07-07 07:56:15 +02001437 /* For now just support Ethernet, IPGRE, SIT and IPIP devices */
Simon Horman0d227a82016-06-16 17:09:09 +09001438 if (dev->type == ARPHRD_ETHER ||
1439 dev->type == ARPHRD_LOOPBACK ||
Simon Horman407f31b2016-07-07 07:56:15 +02001440 dev->type == ARPHRD_IPGRE ||
1441 dev->type == ARPHRD_SIT ||
1442 dev->type == ARPHRD_TUNNEL) {
Robert Shearman03c57742015-04-22 11:14:37 +01001443 mdev = mpls_add_dev(dev);
1444 if (IS_ERR(mdev))
1445 return notifier_from_errno(PTR_ERR(mdev));
1446 }
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001447 return NOTIFY_OK;
1448 }
Robert Shearman03c57742015-04-22 11:14:37 +01001449
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001450 mdev = mpls_dev_get(dev);
1451 if (!mdev)
1452 return NOTIFY_OK;
1453
1454 switch (event) {
1455 case NETDEV_DOWN:
1456 mpls_ifdown(dev, event);
1457 break;
1458 case NETDEV_UP:
1459 flags = dev_get_flags(dev);
1460 if (flags & (IFF_RUNNING | IFF_LOWER_UP))
1461 mpls_ifup(dev, RTNH_F_DEAD | RTNH_F_LINKDOWN);
1462 else
1463 mpls_ifup(dev, RTNH_F_DEAD);
1464 break;
1465 case NETDEV_CHANGE:
1466 flags = dev_get_flags(dev);
1467 if (flags & (IFF_RUNNING | IFF_LOWER_UP))
1468 mpls_ifup(dev, RTNH_F_DEAD | RTNH_F_LINKDOWN);
1469 else
1470 mpls_ifdown(dev, event);
1471 break;
Eric W. Biederman01891972015-03-03 19:10:47 -06001472 case NETDEV_UNREGISTER:
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001473 mpls_ifdown(dev, event);
1474 mdev = mpls_dev_get(dev);
1475 if (mdev) {
David Ahern1182e4d2017-03-28 14:28:07 -07001476 mpls_dev_sysctl_unregister(dev, mdev);
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001477 RCU_INIT_POINTER(dev->mpls_ptr, NULL);
Robert Shearman27d69102017-01-16 14:16:37 +00001478 call_rcu(&mdev->rcu, mpls_dev_destroy_rcu);
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001479 }
Eric W. Biederman01891972015-03-03 19:10:47 -06001480 break;
Robert Shearman0fae3bf2015-06-11 19:58:26 +01001481 case NETDEV_CHANGENAME:
1482 mdev = mpls_dev_get(dev);
1483 if (mdev) {
1484 int err;
1485
David Ahern1182e4d2017-03-28 14:28:07 -07001486 mpls_dev_sysctl_unregister(dev, mdev);
Robert Shearman0fae3bf2015-06-11 19:58:26 +01001487 err = mpls_dev_sysctl_register(dev, mdev);
1488 if (err)
1489 return notifier_from_errno(err);
1490 }
1491 break;
Eric W. Biederman01891972015-03-03 19:10:47 -06001492 }
1493 return NOTIFY_OK;
1494}
1495
1496static struct notifier_block mpls_dev_notifier = {
1497 .notifier_call = mpls_dev_notify,
1498};
1499
Eric W. Biederman03c05662015-03-03 19:13:56 -06001500static int nla_put_via(struct sk_buff *skb,
Eric W. Biedermanb79bda32015-03-07 16:25:56 -06001501 u8 table, const void *addr, int alen)
Eric W. Biederman03c05662015-03-03 19:13:56 -06001502{
Eric W. Biedermanb79bda32015-03-07 16:25:56 -06001503 static const int table_to_family[NEIGH_NR_TABLES + 1] = {
1504 AF_INET, AF_INET6, AF_DECnet, AF_PACKET,
1505 };
Eric W. Biederman03c05662015-03-03 19:13:56 -06001506 struct nlattr *nla;
1507 struct rtvia *via;
Eric W. Biedermanb79bda32015-03-07 16:25:56 -06001508 int family = AF_UNSPEC;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001509
1510 nla = nla_reserve(skb, RTA_VIA, alen + 2);
1511 if (!nla)
1512 return -EMSGSIZE;
1513
Eric W. Biedermanb79bda32015-03-07 16:25:56 -06001514 if (table <= NEIGH_NR_TABLES)
1515 family = table_to_family[table];
1516
Eric W. Biederman03c05662015-03-03 19:13:56 -06001517 via = nla_data(nla);
1518 via->rtvia_family = family;
1519 memcpy(via->rtvia_addr, addr, alen);
1520 return 0;
1521}
1522
Eric W. Biederman966bae32015-03-03 19:13:19 -06001523int nla_put_labels(struct sk_buff *skb, int attrtype,
1524 u8 labels, const u32 label[])
1525{
1526 struct nlattr *nla;
1527 struct mpls_shim_hdr *nla_label;
1528 bool bos;
1529 int i;
1530 nla = nla_reserve(skb, attrtype, labels*4);
1531 if (!nla)
1532 return -EMSGSIZE;
1533
1534 nla_label = nla_data(nla);
1535 bos = true;
1536 for (i = labels - 1; i >= 0; i--) {
1537 nla_label[i] = mpls_entry_encode(label[i], 0, 0, bos);
1538 bos = false;
1539 }
1540
1541 return 0;
1542}
Roopa Prabhuface0182015-07-21 10:43:52 +02001543EXPORT_SYMBOL_GPL(nla_put_labels);
Eric W. Biederman966bae32015-03-03 19:13:19 -06001544
David Aherna1f10ab2017-05-27 16:19:29 -06001545int nla_get_labels(const struct nlattr *nla, u8 max_labels, u8 *labels,
1546 u32 label[], struct netlink_ext_ack *extack)
Eric W. Biederman966bae32015-03-03 19:13:19 -06001547{
1548 unsigned len = nla_len(nla);
Eric W. Biederman966bae32015-03-03 19:13:19 -06001549 struct mpls_shim_hdr *nla_label;
David Aherna4ac8c92017-03-31 07:14:03 -07001550 u8 nla_labels;
Eric W. Biederman966bae32015-03-03 19:13:19 -06001551 bool bos;
1552 int i;
1553
David Aherna4ac8c92017-03-31 07:14:03 -07001554 /* len needs to be an even multiple of 4 (the label size). Number
1555 * of labels is a u8 so check for overflow.
1556 */
David Aherna1f10ab2017-05-27 16:19:29 -06001557 if (len & 3 || len / 4 > 255) {
1558 NL_SET_ERR_MSG_ATTR(extack, nla,
1559 "Invalid length for labels attribute");
Eric W. Biederman966bae32015-03-03 19:13:19 -06001560 return -EINVAL;
David Aherna1f10ab2017-05-27 16:19:29 -06001561 }
Eric W. Biederman966bae32015-03-03 19:13:19 -06001562
1563 /* Limit the number of new labels allowed */
1564 nla_labels = len/4;
David Aherna1f10ab2017-05-27 16:19:29 -06001565 if (nla_labels > max_labels) {
1566 NL_SET_ERR_MSG(extack, "Too many labels");
Eric W. Biederman966bae32015-03-03 19:13:19 -06001567 return -EINVAL;
David Aherna1f10ab2017-05-27 16:19:29 -06001568 }
Eric W. Biederman966bae32015-03-03 19:13:19 -06001569
David Aherna4ac8c92017-03-31 07:14:03 -07001570 /* when label == NULL, caller wants number of labels */
1571 if (!label)
1572 goto out;
1573
Eric W. Biederman966bae32015-03-03 19:13:19 -06001574 nla_label = nla_data(nla);
1575 bos = true;
1576 for (i = nla_labels - 1; i >= 0; i--, bos = false) {
1577 struct mpls_entry_decoded dec;
1578 dec = mpls_entry_decode(nla_label + i);
1579
1580 /* Ensure the bottom of stack flag is properly set
1581 * and ttl and tc are both clear.
1582 */
David Aherna1f10ab2017-05-27 16:19:29 -06001583 if (dec.ttl) {
1584 NL_SET_ERR_MSG_ATTR(extack, nla,
1585 "TTL in label must be 0");
Eric W. Biederman966bae32015-03-03 19:13:19 -06001586 return -EINVAL;
David Aherna1f10ab2017-05-27 16:19:29 -06001587 }
1588
1589 if (dec.tc) {
1590 NL_SET_ERR_MSG_ATTR(extack, nla,
1591 "Traffic class in label must be 0");
1592 return -EINVAL;
1593 }
1594
1595 if (dec.bos != bos) {
1596 NL_SET_BAD_ATTR(extack, nla);
1597 if (bos) {
1598 NL_SET_ERR_MSG(extack,
1599 "BOS bit must be set in first label");
1600 } else {
1601 NL_SET_ERR_MSG(extack,
1602 "BOS bit can only be set in first label");
1603 }
1604 return -EINVAL;
1605 }
Eric W. Biederman966bae32015-03-03 19:13:19 -06001606
Robert Shearman5a9ab012015-04-22 11:14:39 +01001607 switch (dec.label) {
Tom Herbert78f5b892015-05-07 08:08:51 -07001608 case MPLS_LABEL_IMPLNULL:
Robert Shearman5a9ab012015-04-22 11:14:39 +01001609 /* RFC3032: This is a label that an LSR may
1610 * assign and distribute, but which never
1611 * actually appears in the encapsulation.
1612 */
David Aherna1f10ab2017-05-27 16:19:29 -06001613 NL_SET_ERR_MSG_ATTR(extack, nla,
1614 "Implicit NULL Label (3) can not be used in encapsulation");
Robert Shearman5a9ab012015-04-22 11:14:39 +01001615 return -EINVAL;
1616 }
1617
Eric W. Biederman966bae32015-03-03 19:13:19 -06001618 label[i] = dec.label;
1619 }
David Aherna4ac8c92017-03-31 07:14:03 -07001620out:
Eric W. Biederman966bae32015-03-03 19:13:19 -06001621 *labels = nla_labels;
1622 return 0;
1623}
Roopa Prabhuface0182015-07-21 10:43:52 +02001624EXPORT_SYMBOL_GPL(nla_get_labels);
Eric W. Biederman966bae32015-03-03 19:13:19 -06001625
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001626int nla_get_via(const struct nlattr *nla, u8 *via_alen,
1627 u8 *via_table, u8 via_addr[])
1628{
1629 struct rtvia *via = nla_data(nla);
1630 int err = -EINVAL;
1631 int alen;
1632
1633 if (nla_len(nla) < offsetof(struct rtvia, rtvia_addr))
1634 goto errout;
1635 alen = nla_len(nla) -
1636 offsetof(struct rtvia, rtvia_addr);
1637 if (alen > MAX_VIA_ALEN)
1638 goto errout;
1639
1640 /* Validate the address family */
1641 switch (via->rtvia_family) {
1642 case AF_PACKET:
1643 *via_table = NEIGH_LINK_TABLE;
1644 break;
1645 case AF_INET:
1646 *via_table = NEIGH_ARP_TABLE;
1647 if (alen != 4)
1648 goto errout;
1649 break;
1650 case AF_INET6:
1651 *via_table = NEIGH_ND_TABLE;
1652 if (alen != 16)
1653 goto errout;
1654 break;
1655 default:
1656 /* Unsupported address family */
1657 goto errout;
1658 }
1659
1660 memcpy(via_addr, via->rtvia_addr, alen);
1661 *via_alen = alen;
1662 err = 0;
1663
1664errout:
1665 return err;
1666}
1667
Eric W. Biederman03c05662015-03-03 19:13:56 -06001668static int rtm_to_route_config(struct sk_buff *skb, struct nlmsghdr *nlh,
1669 struct mpls_route_config *cfg)
1670{
1671 struct rtmsg *rtm;
1672 struct nlattr *tb[RTA_MAX+1];
1673 int index;
1674 int err;
1675
Johannes Bergfceb6432017-04-12 14:34:07 +02001676 err = nlmsg_parse(nlh, sizeof(*rtm), tb, RTA_MAX, rtm_mpls_policy,
1677 NULL);
Eric W. Biederman03c05662015-03-03 19:13:56 -06001678 if (err < 0)
1679 goto errout;
1680
1681 err = -EINVAL;
1682 rtm = nlmsg_data(nlh);
Eric W. Biederman03c05662015-03-03 19:13:56 -06001683
1684 if (rtm->rtm_family != AF_MPLS)
1685 goto errout;
1686 if (rtm->rtm_dst_len != 20)
1687 goto errout;
1688 if (rtm->rtm_src_len != 0)
1689 goto errout;
1690 if (rtm->rtm_tos != 0)
1691 goto errout;
1692 if (rtm->rtm_table != RT_TABLE_MAIN)
1693 goto errout;
1694 /* Any value is acceptable for rtm_protocol */
1695
1696 /* As mpls uses destination specific addresses
1697 * (or source specific address in the case of multicast)
1698 * all addresses have universal scope.
1699 */
1700 if (rtm->rtm_scope != RT_SCOPE_UNIVERSE)
1701 goto errout;
1702 if (rtm->rtm_type != RTN_UNICAST)
1703 goto errout;
1704 if (rtm->rtm_flags != 0)
1705 goto errout;
1706
1707 cfg->rc_label = LABEL_NOT_SPECIFIED;
1708 cfg->rc_protocol = rtm->rtm_protocol;
Robert Shearmaneb7809f2015-12-10 19:30:50 +00001709 cfg->rc_via_table = MPLS_NEIGH_TABLE_UNSPEC;
Robert Shearman5b441ac2017-03-10 20:43:24 +00001710 cfg->rc_ttl_propagate = MPLS_TTL_PROP_DEFAULT;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001711 cfg->rc_nlflags = nlh->nlmsg_flags;
1712 cfg->rc_nlinfo.portid = NETLINK_CB(skb).portid;
1713 cfg->rc_nlinfo.nlh = nlh;
1714 cfg->rc_nlinfo.nl_net = sock_net(skb->sk);
1715
1716 for (index = 0; index <= RTA_MAX; index++) {
1717 struct nlattr *nla = tb[index];
1718 if (!nla)
1719 continue;
1720
Suraj Deshmukh14dd3e12016-12-03 07:59:26 +00001721 switch (index) {
Eric W. Biederman03c05662015-03-03 19:13:56 -06001722 case RTA_OIF:
1723 cfg->rc_ifindex = nla_get_u32(nla);
1724 break;
1725 case RTA_NEWDST:
1726 if (nla_get_labels(nla, MAX_NEW_LABELS,
1727 &cfg->rc_output_labels,
David Aherna1f10ab2017-05-27 16:19:29 -06001728 cfg->rc_output_label, NULL))
Eric W. Biederman03c05662015-03-03 19:13:56 -06001729 goto errout;
1730 break;
1731 case RTA_DST:
1732 {
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001733 u8 label_count;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001734 if (nla_get_labels(nla, 1, &label_count,
David Aherna1f10ab2017-05-27 16:19:29 -06001735 &cfg->rc_label, NULL))
Eric W. Biederman03c05662015-03-03 19:13:56 -06001736 goto errout;
1737
Robert Shearmana6affd22015-08-03 17:50:04 +01001738 /* Reserved labels may not be set */
1739 if (cfg->rc_label < MPLS_LABEL_FIRST_UNRESERVED)
Eric W. Biederman03c05662015-03-03 19:13:56 -06001740 goto errout;
1741
1742 break;
1743 }
1744 case RTA_VIA:
1745 {
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001746 if (nla_get_via(nla, &cfg->rc_via_alen,
1747 &cfg->rc_via_table, cfg->rc_via))
Robert Shearmanf8d54af2015-03-06 10:47:00 +00001748 goto errout;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001749 break;
1750 }
1751 case RTA_MULTIPATH:
1752 {
1753 cfg->rc_mp = nla_data(nla);
1754 cfg->rc_mp_len = nla_len(nla);
Eric W. Biederman03c05662015-03-03 19:13:56 -06001755 break;
1756 }
Robert Shearman5b441ac2017-03-10 20:43:24 +00001757 case RTA_TTL_PROPAGATE:
1758 {
1759 u8 ttl_propagate = nla_get_u8(nla);
1760
1761 if (ttl_propagate > 1)
1762 goto errout;
1763 cfg->rc_ttl_propagate = ttl_propagate ?
1764 MPLS_TTL_PROP_ENABLED :
1765 MPLS_TTL_PROP_DISABLED;
1766 break;
1767 }
Eric W. Biederman03c05662015-03-03 19:13:56 -06001768 default:
1769 /* Unsupported attribute */
1770 goto errout;
1771 }
1772 }
1773
1774 err = 0;
1775errout:
1776 return err;
1777}
1778
David Ahernc21ef3e2017-04-16 09:48:24 -07001779static int mpls_rtm_delroute(struct sk_buff *skb, struct nlmsghdr *nlh,
1780 struct netlink_ext_ack *extack)
Eric W. Biederman03c05662015-03-03 19:13:56 -06001781{
David Aherna4ac8c92017-03-31 07:14:03 -07001782 struct mpls_route_config *cfg;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001783 int err;
1784
David Aherna4ac8c92017-03-31 07:14:03 -07001785 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1786 if (!cfg)
1787 return -ENOMEM;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001788
David Aherna4ac8c92017-03-31 07:14:03 -07001789 err = rtm_to_route_config(skb, nlh, cfg);
1790 if (err < 0)
1791 goto out;
1792
1793 err = mpls_route_del(cfg);
1794out:
1795 kfree(cfg);
1796
1797 return err;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001798}
1799
1800
David Ahernc21ef3e2017-04-16 09:48:24 -07001801static int mpls_rtm_newroute(struct sk_buff *skb, struct nlmsghdr *nlh,
1802 struct netlink_ext_ack *extack)
Eric W. Biederman03c05662015-03-03 19:13:56 -06001803{
David Aherna4ac8c92017-03-31 07:14:03 -07001804 struct mpls_route_config *cfg;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001805 int err;
1806
David Aherna4ac8c92017-03-31 07:14:03 -07001807 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1808 if (!cfg)
1809 return -ENOMEM;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001810
David Aherna4ac8c92017-03-31 07:14:03 -07001811 err = rtm_to_route_config(skb, nlh, cfg);
1812 if (err < 0)
1813 goto out;
1814
1815 err = mpls_route_add(cfg);
1816out:
1817 kfree(cfg);
1818
1819 return err;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001820}
1821
1822static int mpls_dump_route(struct sk_buff *skb, u32 portid, u32 seq, int event,
1823 u32 label, struct mpls_route *rt, int flags)
1824{
Eric W. Biederman19d0c342015-03-07 16:21:56 -06001825 struct net_device *dev;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001826 struct nlmsghdr *nlh;
1827 struct rtmsg *rtm;
1828
1829 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), flags);
1830 if (nlh == NULL)
1831 return -EMSGSIZE;
1832
1833 rtm = nlmsg_data(nlh);
1834 rtm->rtm_family = AF_MPLS;
1835 rtm->rtm_dst_len = 20;
1836 rtm->rtm_src_len = 0;
1837 rtm->rtm_tos = 0;
1838 rtm->rtm_table = RT_TABLE_MAIN;
1839 rtm->rtm_protocol = rt->rt_protocol;
1840 rtm->rtm_scope = RT_SCOPE_UNIVERSE;
1841 rtm->rtm_type = RTN_UNICAST;
1842 rtm->rtm_flags = 0;
1843
Eric W. Biederman03c05662015-03-03 19:13:56 -06001844 if (nla_put_labels(skb, RTA_DST, 1, &label))
1845 goto nla_put_failure;
Robert Shearman5b441ac2017-03-10 20:43:24 +00001846
1847 if (rt->rt_ttl_propagate != MPLS_TTL_PROP_DEFAULT) {
1848 bool ttl_propagate =
1849 rt->rt_ttl_propagate == MPLS_TTL_PROP_ENABLED;
1850
1851 if (nla_put_u8(skb, RTA_TTL_PROPAGATE,
1852 ttl_propagate))
1853 goto nla_put_failure;
1854 }
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001855 if (rt->rt_nhn == 1) {
Robert Shearmancf4b24f2015-10-27 00:37:36 +00001856 const struct mpls_nh *nh = rt->rt_nh;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001857
1858 if (nh->nh_labels &&
1859 nla_put_labels(skb, RTA_NEWDST, nh->nh_labels,
1860 nh->nh_label))
1861 goto nla_put_failure;
Robert Shearmaneb7809f2015-12-10 19:30:50 +00001862 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC &&
Robert Shearman72dcac92015-12-10 19:30:49 +00001863 nla_put_via(skb, nh->nh_via_table, mpls_nh_via(rt, nh),
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001864 nh->nh_via_alen))
1865 goto nla_put_failure;
1866 dev = rtnl_dereference(nh->nh_dev);
1867 if (dev && nla_put_u32(skb, RTA_OIF, dev->ifindex))
1868 goto nla_put_failure;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001869 if (nh->nh_flags & RTNH_F_LINKDOWN)
1870 rtm->rtm_flags |= RTNH_F_LINKDOWN;
1871 if (nh->nh_flags & RTNH_F_DEAD)
1872 rtm->rtm_flags |= RTNH_F_DEAD;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001873 } else {
1874 struct rtnexthop *rtnh;
1875 struct nlattr *mp;
David Ahern77ef013a2017-03-31 07:14:00 -07001876 u8 linkdown = 0;
1877 u8 dead = 0;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001878
1879 mp = nla_nest_start(skb, RTA_MULTIPATH);
1880 if (!mp)
1881 goto nla_put_failure;
1882
1883 for_nexthops(rt) {
David Ahernc00e51d2017-03-24 15:21:56 -07001884 dev = rtnl_dereference(nh->nh_dev);
1885 if (!dev)
1886 continue;
1887
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001888 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh));
1889 if (!rtnh)
1890 goto nla_put_failure;
1891
David Ahernc00e51d2017-03-24 15:21:56 -07001892 rtnh->rtnh_ifindex = dev->ifindex;
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001893 if (nh->nh_flags & RTNH_F_LINKDOWN) {
1894 rtnh->rtnh_flags |= RTNH_F_LINKDOWN;
1895 linkdown++;
1896 }
1897 if (nh->nh_flags & RTNH_F_DEAD) {
1898 rtnh->rtnh_flags |= RTNH_F_DEAD;
1899 dead++;
1900 }
1901
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001902 if (nh->nh_labels && nla_put_labels(skb, RTA_NEWDST,
1903 nh->nh_labels,
1904 nh->nh_label))
1905 goto nla_put_failure;
Robert Shearmanf20367d2015-12-10 19:30:51 +00001906 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC &&
1907 nla_put_via(skb, nh->nh_via_table,
Robert Shearmancf4b24f2015-10-27 00:37:36 +00001908 mpls_nh_via(rt, nh),
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001909 nh->nh_via_alen))
1910 goto nla_put_failure;
1911
1912 /* length of rtnetlink header + attributes */
1913 rtnh->rtnh_len = nlmsg_get_pos(skb) - (void *)rtnh;
1914 } endfor_nexthops(rt);
1915
Roopa Prabhuc89359a2015-12-01 22:18:11 -08001916 if (linkdown == rt->rt_nhn)
1917 rtm->rtm_flags |= RTNH_F_LINKDOWN;
1918 if (dead == rt->rt_nhn)
1919 rtm->rtm_flags |= RTNH_F_DEAD;
1920
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001921 nla_nest_end(skb, mp);
1922 }
Eric W. Biederman03c05662015-03-03 19:13:56 -06001923
1924 nlmsg_end(skb, nlh);
1925 return 0;
1926
1927nla_put_failure:
1928 nlmsg_cancel(skb, nlh);
1929 return -EMSGSIZE;
1930}
1931
1932static int mpls_dump_routes(struct sk_buff *skb, struct netlink_callback *cb)
1933{
1934 struct net *net = sock_net(skb->sk);
Eric W. Biederman19d0c342015-03-07 16:21:56 -06001935 struct mpls_route __rcu **platform_label;
1936 size_t platform_labels;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001937 unsigned int index;
1938
1939 ASSERT_RTNL();
1940
1941 index = cb->args[0];
Robert Shearmana6affd22015-08-03 17:50:04 +01001942 if (index < MPLS_LABEL_FIRST_UNRESERVED)
1943 index = MPLS_LABEL_FIRST_UNRESERVED;
Eric W. Biederman03c05662015-03-03 19:13:56 -06001944
Eric W. Biederman19d0c342015-03-07 16:21:56 -06001945 platform_label = rtnl_dereference(net->mpls.platform_label);
1946 platform_labels = net->mpls.platform_labels;
1947 for (; index < platform_labels; index++) {
Eric W. Biederman03c05662015-03-03 19:13:56 -06001948 struct mpls_route *rt;
Eric W. Biederman19d0c342015-03-07 16:21:56 -06001949 rt = rtnl_dereference(platform_label[index]);
Eric W. Biederman03c05662015-03-03 19:13:56 -06001950 if (!rt)
1951 continue;
1952
1953 if (mpls_dump_route(skb, NETLINK_CB(cb->skb).portid,
1954 cb->nlh->nlmsg_seq, RTM_NEWROUTE,
1955 index, rt, NLM_F_MULTI) < 0)
1956 break;
1957 }
1958 cb->args[0] = index;
1959
1960 return skb->len;
1961}
1962
Eric W. Biederman8de147d2015-03-03 19:14:31 -06001963static inline size_t lfib_nlmsg_size(struct mpls_route *rt)
1964{
1965 size_t payload =
1966 NLMSG_ALIGN(sizeof(struct rtmsg))
Robert Shearman5b441ac2017-03-10 20:43:24 +00001967 + nla_total_size(4) /* RTA_DST */
1968 + nla_total_size(1); /* RTA_TTL_PROPAGATE */
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001969
1970 if (rt->rt_nhn == 1) {
1971 struct mpls_nh *nh = rt->rt_nh;
1972
1973 if (nh->nh_dev)
1974 payload += nla_total_size(4); /* RTA_OIF */
Robert Shearmaneb7809f2015-12-10 19:30:50 +00001975 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC) /* RTA_VIA */
Robert Shearman72dcac92015-12-10 19:30:49 +00001976 payload += nla_total_size(2 + nh->nh_via_alen);
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001977 if (nh->nh_labels) /* RTA_NEWDST */
1978 payload += nla_total_size(nh->nh_labels * 4);
1979 } else {
1980 /* each nexthop is packed in an attribute */
1981 size_t nhsize = 0;
1982
1983 for_nexthops(rt) {
David Aherne944e972017-03-28 15:19:49 -07001984 if (!rtnl_dereference(nh->nh_dev))
1985 continue;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001986 nhsize += nla_total_size(sizeof(struct rtnexthop));
Robert Shearmanf20367d2015-12-10 19:30:51 +00001987 /* RTA_VIA */
1988 if (nh->nh_via_table != MPLS_NEIGH_TABLE_UNSPEC)
1989 nhsize += nla_total_size(2 + nh->nh_via_alen);
Roopa Prabhuf8efb732015-10-23 06:03:27 -07001990 if (nh->nh_labels)
1991 nhsize += nla_total_size(nh->nh_labels * 4);
1992 } endfor_nexthops(rt);
1993 /* nested attribute */
1994 payload += nla_total_size(nhsize);
1995 }
1996
Eric W. Biederman8de147d2015-03-03 19:14:31 -06001997 return payload;
1998}
1999
2000static void rtmsg_lfib(int event, u32 label, struct mpls_route *rt,
2001 struct nlmsghdr *nlh, struct net *net, u32 portid,
2002 unsigned int nlm_flags)
2003{
2004 struct sk_buff *skb;
2005 u32 seq = nlh ? nlh->nlmsg_seq : 0;
2006 int err = -ENOBUFS;
2007
2008 skb = nlmsg_new(lfib_nlmsg_size(rt), GFP_KERNEL);
2009 if (skb == NULL)
2010 goto errout;
2011
2012 err = mpls_dump_route(skb, portid, seq, event, label, rt, nlm_flags);
2013 if (err < 0) {
2014 /* -EMSGSIZE implies BUG in lfib_nlmsg_size */
2015 WARN_ON(err == -EMSGSIZE);
2016 kfree_skb(skb);
2017 goto errout;
2018 }
2019 rtnl_notify(skb, net, portid, RTNLGRP_MPLS_ROUTE, nlh, GFP_KERNEL);
2020
2021 return;
2022errout:
2023 if (err < 0)
2024 rtnl_set_sk_err(net, RTNLGRP_MPLS_ROUTE, err);
2025}
2026
Eric W. Biederman7720c012015-03-03 19:11:20 -06002027static int resize_platform_label_table(struct net *net, size_t limit)
2028{
2029 size_t size = sizeof(struct mpls_route *) * limit;
2030 size_t old_limit;
2031 size_t cp_size;
2032 struct mpls_route __rcu **labels = NULL, **old;
2033 struct mpls_route *rt0 = NULL, *rt2 = NULL;
2034 unsigned index;
2035
2036 if (size) {
Michal Hocko752ade62017-05-08 15:57:27 -07002037 labels = kvzalloc(size, GFP_KERNEL);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002038 if (!labels)
2039 goto nolabels;
2040 }
2041
2042 /* In case the predefined labels need to be populated */
Tom Herbert78f5b892015-05-07 08:08:51 -07002043 if (limit > MPLS_LABEL_IPV4NULL) {
Eric W. Biederman7720c012015-03-03 19:11:20 -06002044 struct net_device *lo = net->loopback_dev;
David Aherna4ac8c92017-03-31 07:14:03 -07002045 rt0 = mpls_rt_alloc(1, lo->addr_len, 0);
David Aherndf1c6312017-03-31 07:14:02 -07002046 if (IS_ERR(rt0))
Eric W. Biederman7720c012015-03-03 19:11:20 -06002047 goto nort0;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07002048 RCU_INIT_POINTER(rt0->rt_nh->nh_dev, lo);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002049 rt0->rt_protocol = RTPROT_KERNEL;
Robert Shearman118d5232015-08-06 11:04:56 +01002050 rt0->rt_payload_type = MPT_IPV4;
Robert Shearman5b441ac2017-03-10 20:43:24 +00002051 rt0->rt_ttl_propagate = MPLS_TTL_PROP_DEFAULT;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07002052 rt0->rt_nh->nh_via_table = NEIGH_LINK_TABLE;
Robert Shearmanb4e04fc2015-10-27 00:37:35 +00002053 rt0->rt_nh->nh_via_alen = lo->addr_len;
Robert Shearmancf4b24f2015-10-27 00:37:36 +00002054 memcpy(__mpls_nh_via(rt0, rt0->rt_nh), lo->dev_addr,
2055 lo->addr_len);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002056 }
Tom Herbert78f5b892015-05-07 08:08:51 -07002057 if (limit > MPLS_LABEL_IPV6NULL) {
Eric W. Biederman7720c012015-03-03 19:11:20 -06002058 struct net_device *lo = net->loopback_dev;
David Aherna4ac8c92017-03-31 07:14:03 -07002059 rt2 = mpls_rt_alloc(1, lo->addr_len, 0);
David Aherndf1c6312017-03-31 07:14:02 -07002060 if (IS_ERR(rt2))
Eric W. Biederman7720c012015-03-03 19:11:20 -06002061 goto nort2;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07002062 RCU_INIT_POINTER(rt2->rt_nh->nh_dev, lo);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002063 rt2->rt_protocol = RTPROT_KERNEL;
Robert Shearman118d5232015-08-06 11:04:56 +01002064 rt2->rt_payload_type = MPT_IPV6;
David Ahern6a18c312017-03-23 19:02:27 -06002065 rt2->rt_ttl_propagate = MPLS_TTL_PROP_DEFAULT;
Roopa Prabhuf8efb732015-10-23 06:03:27 -07002066 rt2->rt_nh->nh_via_table = NEIGH_LINK_TABLE;
Robert Shearmanb4e04fc2015-10-27 00:37:35 +00002067 rt2->rt_nh->nh_via_alen = lo->addr_len;
Robert Shearmancf4b24f2015-10-27 00:37:36 +00002068 memcpy(__mpls_nh_via(rt2, rt2->rt_nh), lo->dev_addr,
2069 lo->addr_len);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002070 }
2071
2072 rtnl_lock();
2073 /* Remember the original table */
Eric W. Biederman19d0c342015-03-07 16:21:56 -06002074 old = rtnl_dereference(net->mpls.platform_label);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002075 old_limit = net->mpls.platform_labels;
2076
2077 /* Free any labels beyond the new table */
2078 for (index = limit; index < old_limit; index++)
Roopa Prabhuf8efb732015-10-23 06:03:27 -07002079 mpls_route_update(net, index, NULL, NULL);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002080
2081 /* Copy over the old labels */
2082 cp_size = size;
2083 if (old_limit < limit)
2084 cp_size = old_limit * sizeof(struct mpls_route *);
2085
2086 memcpy(labels, old, cp_size);
2087
2088 /* If needed set the predefined labels */
Tom Herbert78f5b892015-05-07 08:08:51 -07002089 if ((old_limit <= MPLS_LABEL_IPV6NULL) &&
2090 (limit > MPLS_LABEL_IPV6NULL)) {
2091 RCU_INIT_POINTER(labels[MPLS_LABEL_IPV6NULL], rt2);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002092 rt2 = NULL;
2093 }
2094
Tom Herbert78f5b892015-05-07 08:08:51 -07002095 if ((old_limit <= MPLS_LABEL_IPV4NULL) &&
2096 (limit > MPLS_LABEL_IPV4NULL)) {
2097 RCU_INIT_POINTER(labels[MPLS_LABEL_IPV4NULL], rt0);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002098 rt0 = NULL;
2099 }
2100
2101 /* Update the global pointers */
2102 net->mpls.platform_labels = limit;
Eric W. Biederman19d0c342015-03-07 16:21:56 -06002103 rcu_assign_pointer(net->mpls.platform_label, labels);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002104
2105 rtnl_unlock();
2106
2107 mpls_rt_free(rt2);
2108 mpls_rt_free(rt0);
2109
2110 if (old) {
2111 synchronize_rcu();
2112 kvfree(old);
2113 }
2114 return 0;
2115
2116nort2:
2117 mpls_rt_free(rt0);
2118nort0:
2119 kvfree(labels);
2120nolabels:
2121 return -ENOMEM;
2122}
2123
2124static int mpls_platform_labels(struct ctl_table *table, int write,
2125 void __user *buffer, size_t *lenp, loff_t *ppos)
2126{
2127 struct net *net = table->data;
2128 int platform_labels = net->mpls.platform_labels;
2129 int ret;
2130 struct ctl_table tmp = {
2131 .procname = table->procname,
2132 .data = &platform_labels,
2133 .maxlen = sizeof(int),
2134 .mode = table->mode,
2135 .extra1 = &zero,
2136 .extra2 = &label_limit,
2137 };
2138
2139 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
2140
2141 if (write && ret == 0)
2142 ret = resize_platform_label_table(net, platform_labels);
2143
2144 return ret;
2145}
2146
Robert Shearman5b441ac2017-03-10 20:43:24 +00002147#define MPLS_NS_SYSCTL_OFFSET(field) \
2148 (&((struct net *)0)->field)
2149
Robert Shearman37bde792015-04-22 11:14:38 +01002150static const struct ctl_table mpls_table[] = {
Eric W. Biederman7720c012015-03-03 19:11:20 -06002151 {
2152 .procname = "platform_labels",
2153 .data = NULL,
2154 .maxlen = sizeof(int),
2155 .mode = 0644,
2156 .proc_handler = mpls_platform_labels,
2157 },
Robert Shearman5b441ac2017-03-10 20:43:24 +00002158 {
2159 .procname = "ip_ttl_propagate",
2160 .data = MPLS_NS_SYSCTL_OFFSET(mpls.ip_ttl_propagate),
2161 .maxlen = sizeof(int),
2162 .mode = 0644,
2163 .proc_handler = proc_dointvec_minmax,
2164 .extra1 = &zero,
2165 .extra2 = &one,
2166 },
Robert Shearmana59166e2017-03-10 20:43:25 +00002167 {
2168 .procname = "default_ttl",
2169 .data = MPLS_NS_SYSCTL_OFFSET(mpls.default_ttl),
2170 .maxlen = sizeof(int),
2171 .mode = 0644,
2172 .proc_handler = proc_dointvec_minmax,
2173 .extra1 = &one,
2174 .extra2 = &ttl_max,
2175 },
Eric W. Biederman7720c012015-03-03 19:11:20 -06002176 { }
2177};
2178
Eric W. Biederman01891972015-03-03 19:10:47 -06002179static int mpls_net_init(struct net *net)
2180{
Eric W. Biederman7720c012015-03-03 19:11:20 -06002181 struct ctl_table *table;
Robert Shearman5b441ac2017-03-10 20:43:24 +00002182 int i;
Eric W. Biederman7720c012015-03-03 19:11:20 -06002183
Eric W. Biederman01891972015-03-03 19:10:47 -06002184 net->mpls.platform_labels = 0;
2185 net->mpls.platform_label = NULL;
Robert Shearman5b441ac2017-03-10 20:43:24 +00002186 net->mpls.ip_ttl_propagate = 1;
Robert Shearmana59166e2017-03-10 20:43:25 +00002187 net->mpls.default_ttl = 255;
Eric W. Biederman01891972015-03-03 19:10:47 -06002188
Eric W. Biederman7720c012015-03-03 19:11:20 -06002189 table = kmemdup(mpls_table, sizeof(mpls_table), GFP_KERNEL);
2190 if (table == NULL)
2191 return -ENOMEM;
2192
Robert Shearman5b441ac2017-03-10 20:43:24 +00002193 /* Table data contains only offsets relative to the base of
2194 * the mdev at this point, so make them absolute.
2195 */
2196 for (i = 0; i < ARRAY_SIZE(mpls_table) - 1; i++)
2197 table[i].data = (char *)net + (uintptr_t)table[i].data;
2198
Eric W. Biederman7720c012015-03-03 19:11:20 -06002199 net->mpls.ctl = register_net_sysctl(net, "net/mpls", table);
Nikolay Aleksandrov6ea3c9d52015-08-31 10:44:19 -07002200 if (net->mpls.ctl == NULL) {
2201 kfree(table);
Eric W. Biederman7720c012015-03-03 19:11:20 -06002202 return -ENOMEM;
Nikolay Aleksandrov6ea3c9d52015-08-31 10:44:19 -07002203 }
Eric W. Biederman7720c012015-03-03 19:11:20 -06002204
Eric W. Biederman01891972015-03-03 19:10:47 -06002205 return 0;
2206}
2207
2208static void mpls_net_exit(struct net *net)
2209{
Eric W. Biederman19d0c342015-03-07 16:21:56 -06002210 struct mpls_route __rcu **platform_label;
2211 size_t platform_labels;
Eric W. Biederman7720c012015-03-03 19:11:20 -06002212 struct ctl_table *table;
Eric W. Biederman01891972015-03-03 19:10:47 -06002213 unsigned int index;
2214
Eric W. Biederman7720c012015-03-03 19:11:20 -06002215 table = net->mpls.ctl->ctl_table_arg;
2216 unregister_net_sysctl_table(net->mpls.ctl);
2217 kfree(table);
2218
Eric W. Biederman19d0c342015-03-07 16:21:56 -06002219 /* An rcu grace period has passed since there was a device in
2220 * the network namespace (and thus the last in flight packet)
Eric W. Biederman01891972015-03-03 19:10:47 -06002221 * left this network namespace. This is because
2222 * unregister_netdevice_many and netdev_run_todo has completed
2223 * for each network device that was in this network namespace.
2224 *
2225 * As such no additional rcu synchronization is necessary when
2226 * freeing the platform_label table.
2227 */
2228 rtnl_lock();
Eric W. Biederman19d0c342015-03-07 16:21:56 -06002229 platform_label = rtnl_dereference(net->mpls.platform_label);
2230 platform_labels = net->mpls.platform_labels;
2231 for (index = 0; index < platform_labels; index++) {
2232 struct mpls_route *rt = rtnl_dereference(platform_label[index]);
2233 RCU_INIT_POINTER(platform_label[index], NULL);
David Aherne37791e2017-03-10 09:46:15 -08002234 mpls_notify_route(net, index, rt, NULL, NULL);
Eric W. Biederman01891972015-03-03 19:10:47 -06002235 mpls_rt_free(rt);
2236 }
2237 rtnl_unlock();
2238
Eric W. Biederman19d0c342015-03-07 16:21:56 -06002239 kvfree(platform_label);
Eric W. Biederman01891972015-03-03 19:10:47 -06002240}
2241
2242static struct pernet_operations mpls_net_ops = {
2243 .init = mpls_net_init,
2244 .exit = mpls_net_exit,
2245};
2246
Robert Shearman27d69102017-01-16 14:16:37 +00002247static struct rtnl_af_ops mpls_af_ops __read_mostly = {
2248 .family = AF_MPLS,
2249 .fill_stats_af = mpls_fill_stats_af,
2250 .get_stats_af_size = mpls_get_stats_af_size,
2251};
2252
Eric W. Biederman01891972015-03-03 19:10:47 -06002253static int __init mpls_init(void)
2254{
2255 int err;
2256
2257 BUILD_BUG_ON(sizeof(struct mpls_shim_hdr) != 4);
2258
2259 err = register_pernet_subsys(&mpls_net_ops);
2260 if (err)
2261 goto out;
2262
2263 err = register_netdevice_notifier(&mpls_dev_notifier);
2264 if (err)
2265 goto out_unregister_pernet;
2266
2267 dev_add_pack(&mpls_packet_type);
2268
Robert Shearman27d69102017-01-16 14:16:37 +00002269 rtnl_af_register(&mpls_af_ops);
2270
Eric W. Biederman03c05662015-03-03 19:13:56 -06002271 rtnl_register(PF_MPLS, RTM_NEWROUTE, mpls_rtm_newroute, NULL, NULL);
2272 rtnl_register(PF_MPLS, RTM_DELROUTE, mpls_rtm_delroute, NULL, NULL);
2273 rtnl_register(PF_MPLS, RTM_GETROUTE, NULL, mpls_dump_routes, NULL);
David Ahern24045a02017-02-20 08:03:30 -08002274 rtnl_register(PF_MPLS, RTM_GETNETCONF, mpls_netconf_get_devconf,
2275 mpls_netconf_dump_devconf, NULL);
Eric W. Biederman01891972015-03-03 19:10:47 -06002276 err = 0;
2277out:
2278 return err;
2279
2280out_unregister_pernet:
2281 unregister_pernet_subsys(&mpls_net_ops);
2282 goto out;
2283}
2284module_init(mpls_init);
2285
2286static void __exit mpls_exit(void)
2287{
Eric W. Biederman03c05662015-03-03 19:13:56 -06002288 rtnl_unregister_all(PF_MPLS);
Robert Shearman27d69102017-01-16 14:16:37 +00002289 rtnl_af_unregister(&mpls_af_ops);
Eric W. Biederman01891972015-03-03 19:10:47 -06002290 dev_remove_pack(&mpls_packet_type);
2291 unregister_netdevice_notifier(&mpls_dev_notifier);
2292 unregister_pernet_subsys(&mpls_net_ops);
2293}
2294module_exit(mpls_exit);
2295
2296MODULE_DESCRIPTION("MultiProtocol Label Switching");
2297MODULE_LICENSE("GPL v2");
2298MODULE_ALIAS_NETPROTO(PF_MPLS);