blob: b4d746943bc5707f39b7253883157d48995de052 [file] [log] [blame]
David Ahern193125d2015-08-13 14:59:10 -06001/*
2 * vrf.c: device driver to encapsulate a VRF space
3 *
4 * Copyright (c) 2015 Cumulus Networks. All rights reserved.
5 * Copyright (c) 2015 Shrijeet Mukherjee <shm@cumulusnetworks.com>
6 * Copyright (c) 2015 David Ahern <dsa@cumulusnetworks.com>
7 *
8 * Based on dummy, team and ipvlan drivers
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 */
15
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/netdevice.h>
19#include <linux/etherdevice.h>
20#include <linux/ip.h>
21#include <linux/init.h>
22#include <linux/moduleparam.h>
23#include <linux/netfilter.h>
24#include <linux/rtnetlink.h>
25#include <net/rtnetlink.h>
26#include <linux/u64_stats_sync.h>
27#include <linux/hashtable.h>
28
29#include <linux/inetdevice.h>
David Ahern8f583362015-08-27 10:10:50 -070030#include <net/arp.h>
David Ahern193125d2015-08-13 14:59:10 -060031#include <net/ip.h>
32#include <net/ip_fib.h>
David Ahern35402e32015-10-12 11:47:09 -070033#include <net/ip6_fib.h>
David Ahern193125d2015-08-13 14:59:10 -060034#include <net/ip6_route.h>
David Ahern193125d2015-08-13 14:59:10 -060035#include <net/route.h>
36#include <net/addrconf.h>
David Ahernee15ee52015-09-29 20:07:12 -070037#include <net/l3mdev.h>
David Ahern1aa6c4f2016-06-08 10:55:40 -070038#include <net/fib_rules.h>
David Ahern193125d2015-08-13 14:59:10 -060039
David Ahern8cbb512c2015-10-05 08:51:26 -070040#define RT_FL_TOS(oldflp4) \
41 ((oldflp4)->flowi4_tos & (IPTOS_RT_MASK | RTO_ONLINK))
42
David Ahern193125d2015-08-13 14:59:10 -060043#define DRV_NAME "vrf"
44#define DRV_VERSION "1.0"
45
David Ahern1aa6c4f2016-06-08 10:55:40 -070046#define FIB_RULE_PREF 1000 /* default preference for FIB rules */
47static bool add_fib_rules = true;
48
David Ahernec539512015-09-29 20:07:17 -070049struct net_vrf {
David Ahernb0e95cc2016-05-13 12:23:45 -070050 struct rtable __rcu *rth;
David Ahernafe80a42016-06-06 20:50:39 -070051 struct rtable __rcu *rth_local;
David Ahernb0e95cc2016-05-13 12:23:45 -070052 struct rt6_info __rcu *rt6;
David Ahernb4869aa2016-06-06 20:50:40 -070053 struct rt6_info __rcu *rt6_local;
David Ahernec539512015-09-29 20:07:17 -070054 u32 tb_id;
55};
56
David Ahern193125d2015-08-13 14:59:10 -060057struct pcpu_dstats {
58 u64 tx_pkts;
59 u64 tx_bytes;
60 u64 tx_drps;
61 u64 rx_pkts;
62 u64 rx_bytes;
David Ahernafe80a42016-06-06 20:50:39 -070063 u64 rx_drps;
David Ahern193125d2015-08-13 14:59:10 -060064 struct u64_stats_sync syncp;
65};
66
David Ahernafe80a42016-06-06 20:50:39 -070067static void vrf_rx_stats(struct net_device *dev, int len)
68{
69 struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
70
71 u64_stats_update_begin(&dstats->syncp);
72 dstats->rx_pkts++;
73 dstats->rx_bytes += len;
74 u64_stats_update_end(&dstats->syncp);
75}
76
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +030077static void vrf_tx_error(struct net_device *vrf_dev, struct sk_buff *skb)
78{
79 vrf_dev->stats.tx_errors++;
80 kfree_skb(skb);
81}
82
David Ahern193125d2015-08-13 14:59:10 -060083static struct rtnl_link_stats64 *vrf_get_stats64(struct net_device *dev,
84 struct rtnl_link_stats64 *stats)
85{
86 int i;
87
88 for_each_possible_cpu(i) {
89 const struct pcpu_dstats *dstats;
90 u64 tbytes, tpkts, tdrops, rbytes, rpkts;
91 unsigned int start;
92
93 dstats = per_cpu_ptr(dev->dstats, i);
94 do {
95 start = u64_stats_fetch_begin_irq(&dstats->syncp);
96 tbytes = dstats->tx_bytes;
97 tpkts = dstats->tx_pkts;
98 tdrops = dstats->tx_drps;
99 rbytes = dstats->rx_bytes;
100 rpkts = dstats->rx_pkts;
101 } while (u64_stats_fetch_retry_irq(&dstats->syncp, start));
102 stats->tx_bytes += tbytes;
103 stats->tx_packets += tpkts;
104 stats->tx_dropped += tdrops;
105 stats->rx_bytes += rbytes;
106 stats->rx_packets += rpkts;
107 }
108 return stats;
109}
110
David Ahernafe80a42016-06-06 20:50:39 -0700111/* Local traffic destined to local address. Reinsert the packet to rx
112 * path, similar to loopback handling.
113 */
114static int vrf_local_xmit(struct sk_buff *skb, struct net_device *dev,
115 struct dst_entry *dst)
116{
117 int len = skb->len;
118
119 skb_orphan(skb);
120
121 skb_dst_set(skb, dst);
122 skb_dst_force(skb);
123
124 /* set pkt_type to avoid skb hitting packet taps twice -
125 * once on Tx and again in Rx processing
126 */
127 skb->pkt_type = PACKET_LOOPBACK;
128
129 skb->protocol = eth_type_trans(skb, dev);
130
131 if (likely(netif_rx(skb) == NET_RX_SUCCESS))
132 vrf_rx_stats(dev, len);
133 else
134 this_cpu_inc(dev->dstats->rx_drps);
135
136 return NETDEV_TX_OK;
137}
138
David Ahern35402e32015-10-12 11:47:09 -0700139#if IS_ENABLED(CONFIG_IPV6)
140static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
141 struct net_device *dev)
142{
143 const struct ipv6hdr *iph = ipv6_hdr(skb);
144 struct net *net = dev_net(skb->dev);
145 struct flowi6 fl6 = {
146 /* needed to match OIF rule */
147 .flowi6_oif = dev->ifindex,
148 .flowi6_iif = LOOPBACK_IFINDEX,
149 .daddr = iph->daddr,
150 .saddr = iph->saddr,
151 .flowlabel = ip6_flowinfo(iph),
152 .flowi6_mark = skb->mark,
153 .flowi6_proto = iph->nexthdr,
154 .flowi6_flags = FLOWI_FLAG_L3MDEV_SRC | FLOWI_FLAG_SKIP_NH_OIF,
155 };
156 int ret = NET_XMIT_DROP;
157 struct dst_entry *dst;
158 struct dst_entry *dst_null = &net->ipv6.ip6_null_entry->dst;
159
160 dst = ip6_route_output(net, NULL, &fl6);
161 if (dst == dst_null)
162 goto err;
163
164 skb_dst_drop(skb);
David Ahernb4869aa2016-06-06 20:50:40 -0700165
166 /* if dst.dev is loopback or the VRF device again this is locally
167 * originated traffic destined to a local address. Short circuit
168 * to Rx path using our local dst
169 */
170 if (dst->dev == net->loopback_dev || dst->dev == dev) {
171 struct net_vrf *vrf = netdev_priv(dev);
172 struct rt6_info *rt6_local;
173
174 /* release looked up dst and use cached local dst */
175 dst_release(dst);
176
177 rcu_read_lock();
178
179 rt6_local = rcu_dereference(vrf->rt6_local);
180 if (unlikely(!rt6_local)) {
181 rcu_read_unlock();
182 goto err;
183 }
184
185 /* Ordering issue: cached local dst is created on newlink
186 * before the IPv6 initialization. Using the local dst
187 * requires rt6i_idev to be set so make sure it is.
188 */
189 if (unlikely(!rt6_local->rt6i_idev)) {
190 rt6_local->rt6i_idev = in6_dev_get(dev);
191 if (!rt6_local->rt6i_idev) {
192 rcu_read_unlock();
193 goto err;
194 }
195 }
196
197 dst = &rt6_local->dst;
198 dst_hold(dst);
199
200 rcu_read_unlock();
201
202 return vrf_local_xmit(skb, dev, &rt6_local->dst);
203 }
204
David Ahern35402e32015-10-12 11:47:09 -0700205 skb_dst_set(skb, dst);
206
David Ahern911a66f2016-06-06 20:50:38 -0700207 /* strip the ethernet header added for pass through VRF device */
208 __skb_pull(skb, skb_network_offset(skb));
209
David Ahern35402e32015-10-12 11:47:09 -0700210 ret = ip6_local_out(net, skb->sk, skb);
211 if (unlikely(net_xmit_eval(ret)))
212 dev->stats.tx_errors++;
213 else
214 ret = NET_XMIT_SUCCESS;
215
216 return ret;
217err:
218 vrf_tx_error(dev, skb);
219 return NET_XMIT_DROP;
220}
221#else
David Ahern193125d2015-08-13 14:59:10 -0600222static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
223 struct net_device *dev)
224{
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +0300225 vrf_tx_error(dev, skb);
226 return NET_XMIT_DROP;
David Ahern193125d2015-08-13 14:59:10 -0600227}
David Ahern35402e32015-10-12 11:47:09 -0700228#endif
David Ahern193125d2015-08-13 14:59:10 -0600229
David Ahern193125d2015-08-13 14:59:10 -0600230static netdev_tx_t vrf_process_v4_outbound(struct sk_buff *skb,
231 struct net_device *vrf_dev)
232{
233 struct iphdr *ip4h = ip_hdr(skb);
234 int ret = NET_XMIT_DROP;
235 struct flowi4 fl4 = {
236 /* needed to match OIF rule */
237 .flowi4_oif = vrf_dev->ifindex,
238 .flowi4_iif = LOOPBACK_IFINDEX,
239 .flowi4_tos = RT_TOS(ip4h->tos),
David Ahern6e2895a2015-10-05 08:51:23 -0700240 .flowi4_flags = FLOWI_FLAG_ANYSRC | FLOWI_FLAG_L3MDEV_SRC |
David Ahern58189ca2015-09-15 15:10:50 -0700241 FLOWI_FLAG_SKIP_NH_OIF,
David Ahern193125d2015-08-13 14:59:10 -0600242 .daddr = ip4h->daddr,
243 };
David Ahern911a66f2016-06-06 20:50:38 -0700244 struct net *net = dev_net(vrf_dev);
245 struct rtable *rt;
David Ahern193125d2015-08-13 14:59:10 -0600246
David Ahern911a66f2016-06-06 20:50:38 -0700247 rt = ip_route_output_flow(net, &fl4, NULL);
248 if (IS_ERR(rt))
David Ahern193125d2015-08-13 14:59:10 -0600249 goto err;
250
David Ahern911a66f2016-06-06 20:50:38 -0700251 if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) {
252 ip_rt_put(rt);
253 goto err;
254 }
255
256 skb_dst_drop(skb);
David Ahernafe80a42016-06-06 20:50:39 -0700257
258 /* if dst.dev is loopback or the VRF device again this is locally
259 * originated traffic destined to a local address. Short circuit
260 * to Rx path using our local dst
261 */
262 if (rt->dst.dev == net->loopback_dev || rt->dst.dev == vrf_dev) {
263 struct net_vrf *vrf = netdev_priv(vrf_dev);
264 struct rtable *rth_local;
265 struct dst_entry *dst = NULL;
266
267 ip_rt_put(rt);
268
269 rcu_read_lock();
270
271 rth_local = rcu_dereference(vrf->rth_local);
272 if (likely(rth_local)) {
273 dst = &rth_local->dst;
274 dst_hold(dst);
275 }
276
277 rcu_read_unlock();
278
279 if (unlikely(!dst))
280 goto err;
281
282 return vrf_local_xmit(skb, vrf_dev, dst);
283 }
284
David Ahern911a66f2016-06-06 20:50:38 -0700285 skb_dst_set(skb, &rt->dst);
286
287 /* strip the ethernet header added for pass through VRF device */
288 __skb_pull(skb, skb_network_offset(skb));
289
David Ahern193125d2015-08-13 14:59:10 -0600290 if (!ip4h->saddr) {
291 ip4h->saddr = inet_select_addr(skb_dst(skb)->dev, 0,
292 RT_SCOPE_LINK);
293 }
294
Eric W. Biederman33224b12015-10-07 16:48:46 -0500295 ret = ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
David Ahern193125d2015-08-13 14:59:10 -0600296 if (unlikely(net_xmit_eval(ret)))
297 vrf_dev->stats.tx_errors++;
298 else
299 ret = NET_XMIT_SUCCESS;
300
301out:
302 return ret;
303err:
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +0300304 vrf_tx_error(vrf_dev, skb);
David Ahern193125d2015-08-13 14:59:10 -0600305 goto out;
306}
307
308static netdev_tx_t is_ip_tx_frame(struct sk_buff *skb, struct net_device *dev)
309{
310 switch (skb->protocol) {
311 case htons(ETH_P_IP):
312 return vrf_process_v4_outbound(skb, dev);
313 case htons(ETH_P_IPV6):
314 return vrf_process_v6_outbound(skb, dev);
315 default:
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +0300316 vrf_tx_error(dev, skb);
David Ahern193125d2015-08-13 14:59:10 -0600317 return NET_XMIT_DROP;
318 }
319}
320
321static netdev_tx_t vrf_xmit(struct sk_buff *skb, struct net_device *dev)
322{
323 netdev_tx_t ret = is_ip_tx_frame(skb, dev);
324
325 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
326 struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
327
328 u64_stats_update_begin(&dstats->syncp);
329 dstats->tx_pkts++;
330 dstats->tx_bytes += skb->len;
331 u64_stats_update_end(&dstats->syncp);
332 } else {
333 this_cpu_inc(dev->dstats->tx_drps);
334 }
335
336 return ret;
337}
338
David Ahern35402e32015-10-12 11:47:09 -0700339#if IS_ENABLED(CONFIG_IPV6)
David Ahern35402e32015-10-12 11:47:09 -0700340/* modelled after ip6_finish_output2 */
341static int vrf_finish_output6(struct net *net, struct sock *sk,
342 struct sk_buff *skb)
343{
344 struct dst_entry *dst = skb_dst(skb);
345 struct net_device *dev = dst->dev;
346 struct neighbour *neigh;
347 struct in6_addr *nexthop;
348 int ret;
349
350 skb->protocol = htons(ETH_P_IPV6);
351 skb->dev = dev;
352
353 rcu_read_lock_bh();
354 nexthop = rt6_nexthop((struct rt6_info *)dst, &ipv6_hdr(skb)->daddr);
355 neigh = __ipv6_neigh_lookup_noref(dst->dev, nexthop);
356 if (unlikely(!neigh))
357 neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false);
358 if (!IS_ERR(neigh)) {
359 ret = dst_neigh_output(dst, neigh, skb);
360 rcu_read_unlock_bh();
361 return ret;
362 }
363 rcu_read_unlock_bh();
364
365 IP6_INC_STATS(dev_net(dst->dev),
366 ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
367 kfree_skb(skb);
368 return -EINVAL;
369}
370
371/* modelled after ip6_output */
372static int vrf_output6(struct net *net, struct sock *sk, struct sk_buff *skb)
373{
374 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
375 net, sk, skb, NULL, skb_dst(skb)->dev,
376 vrf_finish_output6,
377 !(IP6CB(skb)->flags & IP6SKB_REROUTED));
378}
379
David Ahernb0e95cc2016-05-13 12:23:45 -0700380/* holding rtnl */
David Ahern9ab179d2016-04-07 11:10:06 -0700381static void vrf_rt6_release(struct net_vrf *vrf)
David Ahern35402e32015-10-12 11:47:09 -0700382{
David Ahernb0e95cc2016-05-13 12:23:45 -0700383 struct rt6_info *rt6 = rtnl_dereference(vrf->rt6);
David Ahernb4869aa2016-06-06 20:50:40 -0700384 struct rt6_info *rt6_local = rtnl_dereference(vrf->rt6_local);
David Ahernb0e95cc2016-05-13 12:23:45 -0700385
David Ahernb4869aa2016-06-06 20:50:40 -0700386 RCU_INIT_POINTER(vrf->rt6, NULL);
387 RCU_INIT_POINTER(vrf->rt6_local, NULL);
388 synchronize_rcu();
David Ahernb0e95cc2016-05-13 12:23:45 -0700389
390 if (rt6)
391 dst_release(&rt6->dst);
David Ahernb4869aa2016-06-06 20:50:40 -0700392
393 if (rt6_local) {
394 if (rt6_local->rt6i_idev)
395 in6_dev_put(rt6_local->rt6i_idev);
396
397 dst_release(&rt6_local->dst);
398 }
David Ahern35402e32015-10-12 11:47:09 -0700399}
400
401static int vrf_rt6_create(struct net_device *dev)
402{
David Ahernb4869aa2016-06-06 20:50:40 -0700403 int flags = DST_HOST | DST_NOPOLICY | DST_NOXFRM | DST_NOCACHE;
David Ahern35402e32015-10-12 11:47:09 -0700404 struct net_vrf *vrf = netdev_priv(dev);
David Ahern9ab179d2016-04-07 11:10:06 -0700405 struct net *net = dev_net(dev);
David Ahernb3b46632016-05-04 21:46:12 -0700406 struct fib6_table *rt6i_table;
David Ahernb4869aa2016-06-06 20:50:40 -0700407 struct rt6_info *rt6, *rt6_local;
David Ahern35402e32015-10-12 11:47:09 -0700408 int rc = -ENOMEM;
409
David Aherne4348632016-06-09 10:21:00 -0700410 /* IPv6 can be CONFIG enabled and then disabled runtime */
411 if (!ipv6_mod_enabled())
412 return 0;
413
David Ahernb3b46632016-05-04 21:46:12 -0700414 rt6i_table = fib6_new_table(net, vrf->tb_id);
415 if (!rt6i_table)
416 goto out;
417
David Ahernb4869aa2016-06-06 20:50:40 -0700418 /* create a dst for routing packets out a VRF device */
419 rt6 = ip6_dst_alloc(net, dev, flags);
David Ahern35402e32015-10-12 11:47:09 -0700420 if (!rt6)
421 goto out;
422
David Ahern9ab179d2016-04-07 11:10:06 -0700423 dst_hold(&rt6->dst);
David Ahernb3b46632016-05-04 21:46:12 -0700424
425 rt6->rt6i_table = rt6i_table;
426 rt6->dst.output = vrf_output6;
David Ahernb4869aa2016-06-06 20:50:40 -0700427
428 /* create a dst for local routing - packets sent locally
429 * to local address via the VRF device as a loopback
430 */
431 rt6_local = ip6_dst_alloc(net, dev, flags);
432 if (!rt6_local) {
433 dst_release(&rt6->dst);
434 goto out;
435 }
436
437 dst_hold(&rt6_local->dst);
438
439 rt6_local->rt6i_idev = in6_dev_get(dev);
440 rt6_local->rt6i_flags = RTF_UP | RTF_NONEXTHOP | RTF_LOCAL;
441 rt6_local->rt6i_table = rt6i_table;
442 rt6_local->dst.input = ip6_input;
443
David Ahernb0e95cc2016-05-13 12:23:45 -0700444 rcu_assign_pointer(vrf->rt6, rt6);
David Ahernb4869aa2016-06-06 20:50:40 -0700445 rcu_assign_pointer(vrf->rt6_local, rt6_local);
David Ahernb0e95cc2016-05-13 12:23:45 -0700446
David Ahern35402e32015-10-12 11:47:09 -0700447 rc = 0;
448out:
449 return rc;
450}
451#else
David Ahern9ab179d2016-04-07 11:10:06 -0700452static void vrf_rt6_release(struct net_vrf *vrf)
David Ahern35402e32015-10-12 11:47:09 -0700453{
454}
455
456static int vrf_rt6_create(struct net_device *dev)
457{
458 return 0;
459}
460#endif
461
David Ahern8f583362015-08-27 10:10:50 -0700462/* modelled after ip_finish_output2 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500463static int vrf_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
David Ahern193125d2015-08-13 14:59:10 -0600464{
David Ahern8f583362015-08-27 10:10:50 -0700465 struct dst_entry *dst = skb_dst(skb);
466 struct rtable *rt = (struct rtable *)dst;
467 struct net_device *dev = dst->dev;
468 unsigned int hh_len = LL_RESERVED_SPACE(dev);
469 struct neighbour *neigh;
470 u32 nexthop;
471 int ret = -EINVAL;
472
473 /* Be paranoid, rather than too clever. */
474 if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) {
475 struct sk_buff *skb2;
476
477 skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
478 if (!skb2) {
479 ret = -ENOMEM;
480 goto err;
481 }
482 if (skb->sk)
483 skb_set_owner_w(skb2, skb->sk);
484
485 consume_skb(skb);
486 skb = skb2;
487 }
488
489 rcu_read_lock_bh();
490
491 nexthop = (__force u32)rt_nexthop(rt, ip_hdr(skb)->daddr);
492 neigh = __ipv4_neigh_lookup_noref(dev, nexthop);
493 if (unlikely(!neigh))
494 neigh = __neigh_create(&arp_tbl, &nexthop, dev, false);
495 if (!IS_ERR(neigh))
496 ret = dst_neigh_output(dst, neigh, skb);
497
498 rcu_read_unlock_bh();
499err:
500 if (unlikely(ret < 0))
501 vrf_tx_error(skb->dev, skb);
502 return ret;
David Ahern193125d2015-08-13 14:59:10 -0600503}
504
Eric W. Biedermanede20592015-10-07 16:48:47 -0500505static int vrf_output(struct net *net, struct sock *sk, struct sk_buff *skb)
David Ahern193125d2015-08-13 14:59:10 -0600506{
507 struct net_device *dev = skb_dst(skb)->dev;
508
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500509 IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len);
David Ahern193125d2015-08-13 14:59:10 -0600510
511 skb->dev = dev;
512 skb->protocol = htons(ETH_P_IP);
513
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500514 return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
515 net, sk, skb, NULL, dev,
David Ahern8f583362015-08-27 10:10:50 -0700516 vrf_finish_output,
David Ahern193125d2015-08-13 14:59:10 -0600517 !(IPCB(skb)->flags & IPSKB_REROUTED));
518}
519
David Ahernb0e95cc2016-05-13 12:23:45 -0700520/* holding rtnl */
David Ahern9ab179d2016-04-07 11:10:06 -0700521static void vrf_rtable_release(struct net_vrf *vrf)
David Ahern193125d2015-08-13 14:59:10 -0600522{
David Ahernb0e95cc2016-05-13 12:23:45 -0700523 struct rtable *rth = rtnl_dereference(vrf->rth);
David Ahernafe80a42016-06-06 20:50:39 -0700524 struct rtable *rth_local = rtnl_dereference(vrf->rth_local);
David Ahern193125d2015-08-13 14:59:10 -0600525
David Ahernafe80a42016-06-06 20:50:39 -0700526 RCU_INIT_POINTER(vrf->rth, NULL);
527 RCU_INIT_POINTER(vrf->rth_local, NULL);
528 synchronize_rcu();
David Ahernb0e95cc2016-05-13 12:23:45 -0700529
530 if (rth)
531 dst_release(&rth->dst);
David Ahernafe80a42016-06-06 20:50:39 -0700532
533 if (rth_local)
534 dst_release(&rth_local->dst);
David Ahern193125d2015-08-13 14:59:10 -0600535}
536
David Ahernb0e95cc2016-05-13 12:23:45 -0700537static int vrf_rtable_create(struct net_device *dev)
David Ahern193125d2015-08-13 14:59:10 -0600538{
David Ahernb7503e02015-09-02 13:58:35 -0700539 struct net_vrf *vrf = netdev_priv(dev);
David Ahernafe80a42016-06-06 20:50:39 -0700540 struct rtable *rth, *rth_local;
David Ahern193125d2015-08-13 14:59:10 -0600541
David Ahernb3b46632016-05-04 21:46:12 -0700542 if (!fib_new_table(dev_net(dev), vrf->tb_id))
David Ahernb0e95cc2016-05-13 12:23:45 -0700543 return -ENOMEM;
David Ahernb3b46632016-05-04 21:46:12 -0700544
David Ahernafe80a42016-06-06 20:50:39 -0700545 /* create a dst for routing packets out through a VRF device */
David Ahern9ab179d2016-04-07 11:10:06 -0700546 rth = rt_dst_alloc(dev, 0, RTN_UNICAST, 1, 1, 0);
David Ahernb0e95cc2016-05-13 12:23:45 -0700547 if (!rth)
548 return -ENOMEM;
David Ahern193125d2015-08-13 14:59:10 -0600549
David Ahernafe80a42016-06-06 20:50:39 -0700550 /* create a dst for local ingress routing - packets sent locally
551 * to local address via the VRF device as a loopback
552 */
553 rth_local = rt_dst_alloc(dev, RTCF_LOCAL, RTN_LOCAL, 1, 1, 0);
554 if (!rth_local) {
555 dst_release(&rth->dst);
556 return -ENOMEM;
557 }
558
David Ahernb0e95cc2016-05-13 12:23:45 -0700559 rth->dst.output = vrf_output;
560 rth->rt_table_id = vrf->tb_id;
561
David Ahernafe80a42016-06-06 20:50:39 -0700562 rth_local->rt_table_id = vrf->tb_id;
563
David Ahernb0e95cc2016-05-13 12:23:45 -0700564 rcu_assign_pointer(vrf->rth, rth);
David Ahernafe80a42016-06-06 20:50:39 -0700565 rcu_assign_pointer(vrf->rth_local, rth_local);
David Ahernb0e95cc2016-05-13 12:23:45 -0700566
567 return 0;
David Ahern193125d2015-08-13 14:59:10 -0600568}
569
570/**************************** device handling ********************/
571
572/* cycle interface to flush neighbor cache and move routes across tables */
573static void cycle_netdev(struct net_device *dev)
574{
575 unsigned int flags = dev->flags;
576 int ret;
577
578 if (!netif_running(dev))
579 return;
580
581 ret = dev_change_flags(dev, flags & ~IFF_UP);
582 if (ret >= 0)
583 ret = dev_change_flags(dev, flags);
584
585 if (ret < 0) {
586 netdev_err(dev,
587 "Failed to cycle device %s; route tables might be wrong!\n",
588 dev->name);
589 }
590}
591
David Ahern193125d2015-08-13 14:59:10 -0600592static int do_vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
593{
Nikolay Aleksandrovbad53162015-11-24 14:29:16 +0100594 int ret;
David Ahern193125d2015-08-13 14:59:10 -0600595
Jiri Pirko29bf24a2015-12-03 12:12:11 +0100596 ret = netdev_master_upper_dev_link(port_dev, dev, NULL, NULL);
David Ahern193125d2015-08-13 14:59:10 -0600597 if (ret < 0)
David Ahern74b20582016-05-10 11:19:50 -0700598 return ret;
David Ahern193125d2015-08-13 14:59:10 -0600599
David Ahernfee6d4c2015-10-05 08:51:24 -0700600 port_dev->priv_flags |= IFF_L3MDEV_SLAVE;
David Ahern193125d2015-08-13 14:59:10 -0600601 cycle_netdev(port_dev);
602
603 return 0;
David Ahern193125d2015-08-13 14:59:10 -0600604}
605
606static int vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
607{
David Ahernfee6d4c2015-10-05 08:51:24 -0700608 if (netif_is_l3_master(port_dev) || netif_is_l3_slave(port_dev))
David Ahern193125d2015-08-13 14:59:10 -0600609 return -EINVAL;
610
611 return do_vrf_add_slave(dev, port_dev);
612}
613
614/* inverse of do_vrf_add_slave */
615static int do_vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
616{
David Ahern193125d2015-08-13 14:59:10 -0600617 netdev_upper_dev_unlink(port_dev, dev);
David Ahernfee6d4c2015-10-05 08:51:24 -0700618 port_dev->priv_flags &= ~IFF_L3MDEV_SLAVE;
David Ahern193125d2015-08-13 14:59:10 -0600619
David Ahern193125d2015-08-13 14:59:10 -0600620 cycle_netdev(port_dev);
621
David Ahern193125d2015-08-13 14:59:10 -0600622 return 0;
623}
624
625static int vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
626{
David Ahern193125d2015-08-13 14:59:10 -0600627 return do_vrf_del_slave(dev, port_dev);
628}
629
630static void vrf_dev_uninit(struct net_device *dev)
631{
632 struct net_vrf *vrf = netdev_priv(dev);
Nikolay Aleksandrovbad53162015-11-24 14:29:16 +0100633 struct net_device *port_dev;
634 struct list_head *iter;
David Ahern193125d2015-08-13 14:59:10 -0600635
David Ahern9ab179d2016-04-07 11:10:06 -0700636 vrf_rtable_release(vrf);
637 vrf_rt6_release(vrf);
David Ahern193125d2015-08-13 14:59:10 -0600638
Nikolay Aleksandrovbad53162015-11-24 14:29:16 +0100639 netdev_for_each_lower_dev(dev, port_dev, iter)
640 vrf_del_slave(dev, port_dev);
David Ahern193125d2015-08-13 14:59:10 -0600641
Nikolay Aleksandrov3a4a27d2015-08-18 20:28:03 +0300642 free_percpu(dev->dstats);
David Ahern193125d2015-08-13 14:59:10 -0600643 dev->dstats = NULL;
644}
645
646static int vrf_dev_init(struct net_device *dev)
647{
648 struct net_vrf *vrf = netdev_priv(dev);
649
David Ahern193125d2015-08-13 14:59:10 -0600650 dev->dstats = netdev_alloc_pcpu_stats(struct pcpu_dstats);
651 if (!dev->dstats)
652 goto out_nomem;
653
654 /* create the default dst which points back to us */
David Ahernb0e95cc2016-05-13 12:23:45 -0700655 if (vrf_rtable_create(dev) != 0)
David Ahern193125d2015-08-13 14:59:10 -0600656 goto out_stats;
657
David Ahern35402e32015-10-12 11:47:09 -0700658 if (vrf_rt6_create(dev) != 0)
659 goto out_rth;
660
David Ahern193125d2015-08-13 14:59:10 -0600661 dev->flags = IFF_MASTER | IFF_NOARP;
662
David Ahernb87ab6b2016-06-01 21:16:39 -0700663 /* MTU is irrelevant for VRF device; set to 64k similar to lo */
664 dev->mtu = 64 * 1024;
665
666 /* similarly, oper state is irrelevant; set to up to avoid confusion */
667 dev->operstate = IF_OPER_UP;
Eric Dumazet78e7a2a2016-06-09 07:45:13 -0700668 netdev_lockdep_set_classes(dev);
David Ahern193125d2015-08-13 14:59:10 -0600669 return 0;
670
David Ahern35402e32015-10-12 11:47:09 -0700671out_rth:
David Ahern9ab179d2016-04-07 11:10:06 -0700672 vrf_rtable_release(vrf);
David Ahern193125d2015-08-13 14:59:10 -0600673out_stats:
674 free_percpu(dev->dstats);
675 dev->dstats = NULL;
676out_nomem:
677 return -ENOMEM;
678}
679
680static const struct net_device_ops vrf_netdev_ops = {
681 .ndo_init = vrf_dev_init,
682 .ndo_uninit = vrf_dev_uninit,
683 .ndo_start_xmit = vrf_xmit,
684 .ndo_get_stats64 = vrf_get_stats64,
685 .ndo_add_slave = vrf_add_slave,
686 .ndo_del_slave = vrf_del_slave,
687};
688
David Ahernee15ee52015-09-29 20:07:12 -0700689static u32 vrf_fib_table(const struct net_device *dev)
690{
691 struct net_vrf *vrf = netdev_priv(dev);
692
693 return vrf->tb_id;
694}
695
696static struct rtable *vrf_get_rtable(const struct net_device *dev,
697 const struct flowi4 *fl4)
698{
699 struct rtable *rth = NULL;
700
David Ahern6e2895a2015-10-05 08:51:23 -0700701 if (!(fl4->flowi4_flags & FLOWI_FLAG_L3MDEV_SRC)) {
David Ahernee15ee52015-09-29 20:07:12 -0700702 struct net_vrf *vrf = netdev_priv(dev);
703
David Ahernb0e95cc2016-05-13 12:23:45 -0700704 rcu_read_lock();
705
706 rth = rcu_dereference(vrf->rth);
707 if (likely(rth))
708 dst_hold(&rth->dst);
709
710 rcu_read_unlock();
David Ahernee15ee52015-09-29 20:07:12 -0700711 }
712
713 return rth;
714}
715
David Ahern8cbb512c2015-10-05 08:51:26 -0700716/* called under rcu_read_lock */
David Ahernb5bdacf2016-01-04 09:09:27 -0800717static int vrf_get_saddr(struct net_device *dev, struct flowi4 *fl4)
David Ahern8cbb512c2015-10-05 08:51:26 -0700718{
719 struct fib_result res = { .tclassid = 0 };
720 struct net *net = dev_net(dev);
721 u32 orig_tos = fl4->flowi4_tos;
722 u8 flags = fl4->flowi4_flags;
723 u8 scope = fl4->flowi4_scope;
724 u8 tos = RT_FL_TOS(fl4);
David Ahernb5bdacf2016-01-04 09:09:27 -0800725 int rc;
David Ahern8cbb512c2015-10-05 08:51:26 -0700726
727 if (unlikely(!fl4->daddr))
David Ahernb5bdacf2016-01-04 09:09:27 -0800728 return 0;
David Ahern8cbb512c2015-10-05 08:51:26 -0700729
730 fl4->flowi4_flags |= FLOWI_FLAG_SKIP_NH_OIF;
731 fl4->flowi4_iif = LOOPBACK_IFINDEX;
David Ahern1ff23be2016-05-07 16:49:00 -0700732 /* make sure oif is set to VRF device for lookup */
733 fl4->flowi4_oif = dev->ifindex;
David Ahern8cbb512c2015-10-05 08:51:26 -0700734 fl4->flowi4_tos = tos & IPTOS_RT_MASK;
735 fl4->flowi4_scope = ((tos & RTO_ONLINK) ?
736 RT_SCOPE_LINK : RT_SCOPE_UNIVERSE);
737
David Ahernb5bdacf2016-01-04 09:09:27 -0800738 rc = fib_lookup(net, fl4, &res, 0);
739 if (!rc) {
David Ahern8cbb512c2015-10-05 08:51:26 -0700740 if (res.type == RTN_LOCAL)
741 fl4->saddr = res.fi->fib_prefsrc ? : fl4->daddr;
742 else
743 fib_select_path(net, &res, fl4, -1);
744 }
745
746 fl4->flowi4_flags = flags;
747 fl4->flowi4_tos = orig_tos;
748 fl4->flowi4_scope = scope;
David Ahernb5bdacf2016-01-04 09:09:27 -0800749
750 return rc;
David Ahern8cbb512c2015-10-05 08:51:26 -0700751}
752
David Ahern35402e32015-10-12 11:47:09 -0700753#if IS_ENABLED(CONFIG_IPV6)
David Ahern74b20582016-05-10 11:19:50 -0700754/* neighbor handling is done with actual device; do not want
755 * to flip skb->dev for those ndisc packets. This really fails
756 * for multiple next protocols (e.g., NEXTHDR_HOP). But it is
757 * a start.
758 */
759static bool ipv6_ndisc_frame(const struct sk_buff *skb)
760{
761 const struct ipv6hdr *iph = ipv6_hdr(skb);
762 bool rc = false;
763
764 if (iph->nexthdr == NEXTHDR_ICMP) {
765 const struct icmp6hdr *icmph;
766 struct icmp6hdr _icmph;
767
768 icmph = skb_header_pointer(skb, sizeof(*iph),
769 sizeof(_icmph), &_icmph);
770 if (!icmph)
771 goto out;
772
773 switch (icmph->icmp6_type) {
774 case NDISC_ROUTER_SOLICITATION:
775 case NDISC_ROUTER_ADVERTISEMENT:
776 case NDISC_NEIGHBOUR_SOLICITATION:
777 case NDISC_NEIGHBOUR_ADVERTISEMENT:
778 case NDISC_REDIRECT:
779 rc = true;
780 break;
781 }
782 }
783
784out:
785 return rc;
786}
787
788static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
789 struct sk_buff *skb)
790{
David Ahernb4869aa2016-06-06 20:50:40 -0700791 /* loopback traffic; do not push through packet taps again.
792 * Reset pkt_type for upper layers to process skb
793 */
794 if (skb->pkt_type == PACKET_LOOPBACK) {
795 skb->dev = vrf_dev;
796 skb->skb_iif = vrf_dev->ifindex;
797 skb->pkt_type = PACKET_HOST;
798 goto out;
799 }
800
David Ahern74b20582016-05-10 11:19:50 -0700801 /* if packet is NDISC keep the ingress interface */
802 if (!ipv6_ndisc_frame(skb)) {
803 skb->dev = vrf_dev;
804 skb->skb_iif = vrf_dev->ifindex;
805
806 skb_push(skb, skb->mac_len);
807 dev_queue_xmit_nit(skb, vrf_dev);
808 skb_pull(skb, skb->mac_len);
809
810 IP6CB(skb)->flags |= IP6SKB_L3SLAVE;
811 }
812
David Ahernb4869aa2016-06-06 20:50:40 -0700813out:
David Ahern74b20582016-05-10 11:19:50 -0700814 return skb;
815}
816
817#else
818static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
819 struct sk_buff *skb)
820{
821 return skb;
822}
823#endif
824
825static struct sk_buff *vrf_ip_rcv(struct net_device *vrf_dev,
826 struct sk_buff *skb)
827{
828 skb->dev = vrf_dev;
829 skb->skb_iif = vrf_dev->ifindex;
830
David Ahernafe80a42016-06-06 20:50:39 -0700831 /* loopback traffic; do not push through packet taps again.
832 * Reset pkt_type for upper layers to process skb
833 */
834 if (skb->pkt_type == PACKET_LOOPBACK) {
835 skb->pkt_type = PACKET_HOST;
836 goto out;
837 }
838
David Ahern74b20582016-05-10 11:19:50 -0700839 skb_push(skb, skb->mac_len);
840 dev_queue_xmit_nit(skb, vrf_dev);
841 skb_pull(skb, skb->mac_len);
842
David Ahernafe80a42016-06-06 20:50:39 -0700843out:
David Ahern74b20582016-05-10 11:19:50 -0700844 return skb;
845}
846
847/* called with rcu lock held */
848static struct sk_buff *vrf_l3_rcv(struct net_device *vrf_dev,
849 struct sk_buff *skb,
850 u16 proto)
851{
852 switch (proto) {
853 case AF_INET:
854 return vrf_ip_rcv(vrf_dev, skb);
855 case AF_INET6:
856 return vrf_ip6_rcv(vrf_dev, skb);
857 }
858
859 return skb;
860}
861
862#if IS_ENABLED(CONFIG_IPV6)
David Ahern35402e32015-10-12 11:47:09 -0700863static struct dst_entry *vrf_get_rt6_dst(const struct net_device *dev,
864 const struct flowi6 *fl6)
865{
David Ahernb0e95cc2016-05-13 12:23:45 -0700866 struct dst_entry *dst = NULL;
David Ahern35402e32015-10-12 11:47:09 -0700867
868 if (!(fl6->flowi6_flags & FLOWI_FLAG_L3MDEV_SRC)) {
869 struct net_vrf *vrf = netdev_priv(dev);
David Ahernb0e95cc2016-05-13 12:23:45 -0700870 struct rt6_info *rt;
David Ahern35402e32015-10-12 11:47:09 -0700871
David Ahernb0e95cc2016-05-13 12:23:45 -0700872 rcu_read_lock();
873
874 rt = rcu_dereference(vrf->rt6);
875 if (likely(rt)) {
876 dst = &rt->dst;
877 dst_hold(dst);
878 }
879
880 rcu_read_unlock();
David Ahern35402e32015-10-12 11:47:09 -0700881 }
882
David Ahernb0e95cc2016-05-13 12:23:45 -0700883 return dst;
David Ahern35402e32015-10-12 11:47:09 -0700884}
885#endif
886
David Ahernee15ee52015-09-29 20:07:12 -0700887static const struct l3mdev_ops vrf_l3mdev_ops = {
888 .l3mdev_fib_table = vrf_fib_table,
889 .l3mdev_get_rtable = vrf_get_rtable,
David Ahern8cbb512c2015-10-05 08:51:26 -0700890 .l3mdev_get_saddr = vrf_get_saddr,
David Ahern74b20582016-05-10 11:19:50 -0700891 .l3mdev_l3_rcv = vrf_l3_rcv,
David Ahern35402e32015-10-12 11:47:09 -0700892#if IS_ENABLED(CONFIG_IPV6)
893 .l3mdev_get_rt6_dst = vrf_get_rt6_dst,
894#endif
David Ahernee15ee52015-09-29 20:07:12 -0700895};
896
David Ahern193125d2015-08-13 14:59:10 -0600897static void vrf_get_drvinfo(struct net_device *dev,
898 struct ethtool_drvinfo *info)
899{
900 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
901 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
902}
903
904static const struct ethtool_ops vrf_ethtool_ops = {
905 .get_drvinfo = vrf_get_drvinfo,
906};
907
David Ahern1aa6c4f2016-06-08 10:55:40 -0700908static inline size_t vrf_fib_rule_nl_size(void)
909{
910 size_t sz;
911
912 sz = NLMSG_ALIGN(sizeof(struct fib_rule_hdr));
913 sz += nla_total_size(sizeof(u8)); /* FRA_L3MDEV */
914 sz += nla_total_size(sizeof(u32)); /* FRA_PRIORITY */
915
916 return sz;
917}
918
919static int vrf_fib_rule(const struct net_device *dev, __u8 family, bool add_it)
920{
921 struct fib_rule_hdr *frh;
922 struct nlmsghdr *nlh;
923 struct sk_buff *skb;
924 int err;
925
David Aherne4348632016-06-09 10:21:00 -0700926 if (family == AF_INET6 && !ipv6_mod_enabled())
927 return 0;
928
David Ahern1aa6c4f2016-06-08 10:55:40 -0700929 skb = nlmsg_new(vrf_fib_rule_nl_size(), GFP_KERNEL);
930 if (!skb)
931 return -ENOMEM;
932
933 nlh = nlmsg_put(skb, 0, 0, 0, sizeof(*frh), 0);
934 if (!nlh)
935 goto nla_put_failure;
936
937 /* rule only needs to appear once */
938 nlh->nlmsg_flags &= NLM_F_EXCL;
939
940 frh = nlmsg_data(nlh);
941 memset(frh, 0, sizeof(*frh));
942 frh->family = family;
943 frh->action = FR_ACT_TO_TBL;
944
945 if (nla_put_u32(skb, FRA_L3MDEV, 1))
946 goto nla_put_failure;
947
948 if (nla_put_u32(skb, FRA_PRIORITY, FIB_RULE_PREF))
949 goto nla_put_failure;
950
951 nlmsg_end(skb, nlh);
952
953 /* fib_nl_{new,del}rule handling looks for net from skb->sk */
954 skb->sk = dev_net(dev)->rtnl;
955 if (add_it) {
956 err = fib_nl_newrule(skb, nlh);
957 if (err == -EEXIST)
958 err = 0;
959 } else {
960 err = fib_nl_delrule(skb, nlh);
961 if (err == -ENOENT)
962 err = 0;
963 }
964 nlmsg_free(skb);
965
966 return err;
967
968nla_put_failure:
969 nlmsg_free(skb);
970
971 return -EMSGSIZE;
972}
973
974static int vrf_add_fib_rules(const struct net_device *dev)
975{
976 int err;
977
978 err = vrf_fib_rule(dev, AF_INET, true);
979 if (err < 0)
980 goto out_err;
981
982 err = vrf_fib_rule(dev, AF_INET6, true);
983 if (err < 0)
984 goto ipv6_err;
985
986 return 0;
987
988ipv6_err:
989 vrf_fib_rule(dev, AF_INET, false);
990
991out_err:
992 netdev_err(dev, "Failed to add FIB rules.\n");
993 return err;
994}
995
David Ahern193125d2015-08-13 14:59:10 -0600996static void vrf_setup(struct net_device *dev)
997{
998 ether_setup(dev);
999
1000 /* Initialize the device structure. */
1001 dev->netdev_ops = &vrf_netdev_ops;
David Ahernee15ee52015-09-29 20:07:12 -07001002 dev->l3mdev_ops = &vrf_l3mdev_ops;
David Ahern193125d2015-08-13 14:59:10 -06001003 dev->ethtool_ops = &vrf_ethtool_ops;
1004 dev->destructor = free_netdev;
1005
1006 /* Fill in device structure with ethernet-generic values. */
1007 eth_hw_addr_random(dev);
1008
1009 /* don't acquire vrf device's netif_tx_lock when transmitting */
1010 dev->features |= NETIF_F_LLTX;
1011
1012 /* don't allow vrf devices to change network namespaces. */
1013 dev->features |= NETIF_F_NETNS_LOCAL;
1014}
1015
1016static int vrf_validate(struct nlattr *tb[], struct nlattr *data[])
1017{
1018 if (tb[IFLA_ADDRESS]) {
1019 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1020 return -EINVAL;
1021 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1022 return -EADDRNOTAVAIL;
1023 }
1024 return 0;
1025}
1026
1027static void vrf_dellink(struct net_device *dev, struct list_head *head)
1028{
David Ahern193125d2015-08-13 14:59:10 -06001029 unregister_netdevice_queue(dev, head);
1030}
1031
1032static int vrf_newlink(struct net *src_net, struct net_device *dev,
1033 struct nlattr *tb[], struct nlattr *data[])
1034{
1035 struct net_vrf *vrf = netdev_priv(dev);
David Ahern1aa6c4f2016-06-08 10:55:40 -07001036 int err;
David Ahern193125d2015-08-13 14:59:10 -06001037
1038 if (!data || !data[IFLA_VRF_TABLE])
1039 return -EINVAL;
1040
1041 vrf->tb_id = nla_get_u32(data[IFLA_VRF_TABLE]);
1042
David Ahern007979e2015-09-29 20:07:10 -07001043 dev->priv_flags |= IFF_L3MDEV_MASTER;
David Ahern193125d2015-08-13 14:59:10 -06001044
David Ahern1aa6c4f2016-06-08 10:55:40 -07001045 err = register_netdevice(dev);
1046 if (err)
1047 goto out;
1048
1049 if (add_fib_rules) {
1050 err = vrf_add_fib_rules(dev);
1051 if (err) {
1052 unregister_netdevice(dev);
1053 goto out;
1054 }
1055 add_fib_rules = false;
1056 }
1057
1058out:
1059 return err;
David Ahern193125d2015-08-13 14:59:10 -06001060}
1061
1062static size_t vrf_nl_getsize(const struct net_device *dev)
1063{
1064 return nla_total_size(sizeof(u32)); /* IFLA_VRF_TABLE */
1065}
1066
1067static int vrf_fillinfo(struct sk_buff *skb,
1068 const struct net_device *dev)
1069{
1070 struct net_vrf *vrf = netdev_priv(dev);
1071
1072 return nla_put_u32(skb, IFLA_VRF_TABLE, vrf->tb_id);
1073}
1074
David Ahern67eb0332016-02-02 07:43:45 -08001075static size_t vrf_get_slave_size(const struct net_device *bond_dev,
1076 const struct net_device *slave_dev)
1077{
1078 return nla_total_size(sizeof(u32)); /* IFLA_VRF_PORT_TABLE */
1079}
1080
1081static int vrf_fill_slave_info(struct sk_buff *skb,
1082 const struct net_device *vrf_dev,
1083 const struct net_device *slave_dev)
1084{
1085 struct net_vrf *vrf = netdev_priv(vrf_dev);
1086
1087 if (nla_put_u32(skb, IFLA_VRF_PORT_TABLE, vrf->tb_id))
1088 return -EMSGSIZE;
1089
1090 return 0;
1091}
1092
David Ahern193125d2015-08-13 14:59:10 -06001093static const struct nla_policy vrf_nl_policy[IFLA_VRF_MAX + 1] = {
1094 [IFLA_VRF_TABLE] = { .type = NLA_U32 },
1095};
1096
1097static struct rtnl_link_ops vrf_link_ops __read_mostly = {
1098 .kind = DRV_NAME,
1099 .priv_size = sizeof(struct net_vrf),
1100
1101 .get_size = vrf_nl_getsize,
1102 .policy = vrf_nl_policy,
1103 .validate = vrf_validate,
1104 .fill_info = vrf_fillinfo,
1105
David Ahern67eb0332016-02-02 07:43:45 -08001106 .get_slave_size = vrf_get_slave_size,
1107 .fill_slave_info = vrf_fill_slave_info,
1108
David Ahern193125d2015-08-13 14:59:10 -06001109 .newlink = vrf_newlink,
1110 .dellink = vrf_dellink,
1111 .setup = vrf_setup,
1112 .maxtype = IFLA_VRF_MAX,
1113};
1114
1115static int vrf_device_event(struct notifier_block *unused,
1116 unsigned long event, void *ptr)
1117{
1118 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1119
1120 /* only care about unregister events to drop slave references */
1121 if (event == NETDEV_UNREGISTER) {
David Ahern193125d2015-08-13 14:59:10 -06001122 struct net_device *vrf_dev;
1123
David Ahernfee6d4c2015-10-05 08:51:24 -07001124 if (!netif_is_l3_slave(dev))
David Ahern193125d2015-08-13 14:59:10 -06001125 goto out;
1126
Nikolay Aleksandrov58aa9082015-08-18 20:28:04 +03001127 vrf_dev = netdev_master_upper_dev_get(dev);
1128 vrf_del_slave(vrf_dev, dev);
David Ahern193125d2015-08-13 14:59:10 -06001129 }
1130out:
1131 return NOTIFY_DONE;
1132}
1133
1134static struct notifier_block vrf_notifier_block __read_mostly = {
1135 .notifier_call = vrf_device_event,
1136};
1137
1138static int __init vrf_init_module(void)
1139{
1140 int rc;
1141
David Ahern193125d2015-08-13 14:59:10 -06001142 register_netdevice_notifier(&vrf_notifier_block);
1143
1144 rc = rtnl_link_register(&vrf_link_ops);
1145 if (rc < 0)
1146 goto error;
1147
1148 return 0;
1149
1150error:
1151 unregister_netdevice_notifier(&vrf_notifier_block);
David Ahern193125d2015-08-13 14:59:10 -06001152 return rc;
1153}
1154
David Ahern193125d2015-08-13 14:59:10 -06001155module_init(vrf_init_module);
David Ahern193125d2015-08-13 14:59:10 -06001156MODULE_AUTHOR("Shrijeet Mukherjee, David Ahern");
1157MODULE_DESCRIPTION("Device driver to instantiate VRF domains");
1158MODULE_LICENSE("GPL");
1159MODULE_ALIAS_RTNL_LINK(DRV_NAME);
1160MODULE_VERSION(DRV_VERSION);