• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved.
3  * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved.
4  *
5  * This software is available to you under a choice of one of two
6  * licenses.  You may choose to be licensed under the terms of the GNU
7  * General Public License (GPL) Version 2, available from the file
8  * COPYING in the main directory of this source tree, or the
9  * OpenIB.org BSD license below:
10  *
11  *     Redistribution and use in source and binary forms, with or
12  *     without modification, are permitted provided that the following
13  *     conditions are met:
14  *
15  *	- Redistributions of source code must retain the above
16  *	  copyright notice, this list of conditions and the following
17  *	  disclaimer.
18  *
19  *	- Redistributions in binary form must reproduce the above
20  *	  copyright notice, this list of conditions and the following
21  *	  disclaimer in the documentation and/or other materials
22  *	  provided with the distribution.
23  *
24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31  * SOFTWARE.
32  */
33 
34 #include <linux/skbuff.h>
35 #include <linux/if_arp.h>
36 #include <linux/netdevice.h>
37 #include <linux/if.h>
38 #include <linux/if_vlan.h>
39 #include <net/udp_tunnel.h>
40 #include <net/sch_generic.h>
41 #include <linux/netfilter.h>
42 #include <rdma/ib_addr.h>
43 
44 #include "rxe.h"
45 #include "rxe_net.h"
46 #include "rxe_loc.h"
47 
48 static struct rxe_recv_sockets recv_sockets;
49 
rxe_dma_device(struct rxe_dev * rxe)50 struct device *rxe_dma_device(struct rxe_dev *rxe)
51 {
52 	struct net_device *ndev;
53 
54 	ndev = rxe->ndev;
55 
56 	if (is_vlan_dev(ndev))
57 		ndev = vlan_dev_real_dev(ndev);
58 
59 	return ndev->dev.parent;
60 }
61 
rxe_mcast_add(struct rxe_dev * rxe,union ib_gid * mgid)62 int rxe_mcast_add(struct rxe_dev *rxe, union ib_gid *mgid)
63 {
64 	int err;
65 	unsigned char ll_addr[ETH_ALEN];
66 
67 	ipv6_eth_mc_map((struct in6_addr *)mgid->raw, ll_addr);
68 	err = dev_mc_add(rxe->ndev, ll_addr);
69 
70 	return err;
71 }
72 
rxe_mcast_delete(struct rxe_dev * rxe,union ib_gid * mgid)73 int rxe_mcast_delete(struct rxe_dev *rxe, union ib_gid *mgid)
74 {
75 	int err;
76 	unsigned char ll_addr[ETH_ALEN];
77 
78 	ipv6_eth_mc_map((struct in6_addr *)mgid->raw, ll_addr);
79 	err = dev_mc_del(rxe->ndev, ll_addr);
80 
81 	return err;
82 }
83 
rxe_find_route4(struct net_device * ndev,struct in_addr * saddr,struct in_addr * daddr)84 static struct dst_entry *rxe_find_route4(struct net_device *ndev,
85 				  struct in_addr *saddr,
86 				  struct in_addr *daddr)
87 {
88 	struct rtable *rt;
89 	struct flowi4 fl = { { 0 } };
90 
91 	memset(&fl, 0, sizeof(fl));
92 	fl.flowi4_oif = ndev->ifindex;
93 	memcpy(&fl.saddr, saddr, sizeof(*saddr));
94 	memcpy(&fl.daddr, daddr, sizeof(*daddr));
95 	fl.flowi4_proto = IPPROTO_UDP;
96 
97 	rt = ip_route_output_key(&init_net, &fl);
98 	if (IS_ERR(rt)) {
99 		pr_err_ratelimited("no route to %pI4\n", &daddr->s_addr);
100 		return NULL;
101 	}
102 
103 	return &rt->dst;
104 }
105 
106 #if IS_ENABLED(CONFIG_IPV6)
rxe_find_route6(struct net_device * ndev,struct in6_addr * saddr,struct in6_addr * daddr)107 static struct dst_entry *rxe_find_route6(struct net_device *ndev,
108 					 struct in6_addr *saddr,
109 					 struct in6_addr *daddr)
110 {
111 	struct dst_entry *ndst;
112 	struct flowi6 fl6 = { { 0 } };
113 
114 	memset(&fl6, 0, sizeof(fl6));
115 	fl6.flowi6_oif = ndev->ifindex;
116 	memcpy(&fl6.saddr, saddr, sizeof(*saddr));
117 	memcpy(&fl6.daddr, daddr, sizeof(*daddr));
118 	fl6.flowi6_proto = IPPROTO_UDP;
119 
120 	ndst = ipv6_stub->ipv6_dst_lookup_flow(sock_net(recv_sockets.sk6->sk),
121 					       recv_sockets.sk6->sk, &fl6,
122 					       NULL);
123 	if (unlikely(IS_ERR(ndst))) {
124 		pr_err_ratelimited("no route to %pI6\n", daddr);
125 		return NULL;
126 	}
127 
128 	if (unlikely(ndst->error)) {
129 		pr_err("no route to %pI6\n", daddr);
130 		goto put;
131 	}
132 
133 	return ndst;
134 put:
135 	dst_release(ndst);
136 	return NULL;
137 }
138 
139 #else
140 
rxe_find_route6(struct net_device * ndev,struct in6_addr * saddr,struct in6_addr * daddr)141 static struct dst_entry *rxe_find_route6(struct net_device *ndev,
142 					 struct in6_addr *saddr,
143 					 struct in6_addr *daddr)
144 {
145 	return NULL;
146 }
147 
148 #endif
149 
rxe_find_route(struct net_device * ndev,struct rxe_qp * qp,struct rxe_av * av)150 static struct dst_entry *rxe_find_route(struct net_device *ndev,
151 					struct rxe_qp *qp,
152 					struct rxe_av *av)
153 {
154 	struct dst_entry *dst = NULL;
155 
156 	if (qp_type(qp) == IB_QPT_RC)
157 		dst = sk_dst_get(qp->sk->sk);
158 
159 	if (!dst || !dst_check(dst, qp->dst_cookie)) {
160 		if (dst)
161 			dst_release(dst);
162 
163 		if (av->network_type == RDMA_NETWORK_IPV4) {
164 			struct in_addr *saddr;
165 			struct in_addr *daddr;
166 
167 			saddr = &av->sgid_addr._sockaddr_in.sin_addr;
168 			daddr = &av->dgid_addr._sockaddr_in.sin_addr;
169 			dst = rxe_find_route4(ndev, saddr, daddr);
170 		} else if (av->network_type == RDMA_NETWORK_IPV6) {
171 			struct in6_addr *saddr6;
172 			struct in6_addr *daddr6;
173 
174 			saddr6 = &av->sgid_addr._sockaddr_in6.sin6_addr;
175 			daddr6 = &av->dgid_addr._sockaddr_in6.sin6_addr;
176 			dst = rxe_find_route6(ndev, saddr6, daddr6);
177 #if IS_ENABLED(CONFIG_IPV6)
178 			if (dst)
179 				qp->dst_cookie =
180 					rt6_get_cookie((struct rt6_info *)dst);
181 #endif
182 		}
183 
184 		if (dst && (qp_type(qp) == IB_QPT_RC)) {
185 			dst_hold(dst);
186 			sk_dst_set(qp->sk->sk, dst);
187 		}
188 	}
189 	return dst;
190 }
191 
rxe_udp_encap_recv(struct sock * sk,struct sk_buff * skb)192 static int rxe_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
193 {
194 	struct udphdr *udph;
195 	struct net_device *ndev = skb->dev;
196 	struct net_device *rdev = ndev;
197 	struct rxe_dev *rxe = rxe_get_dev_from_net(ndev);
198 	struct rxe_pkt_info *pkt = SKB_TO_PKT(skb);
199 
200 	if (!rxe && is_vlan_dev(rdev)) {
201 		rdev = vlan_dev_real_dev(ndev);
202 		rxe = rxe_get_dev_from_net(rdev);
203 	}
204 	if (!rxe)
205 		goto drop;
206 
207 	if (skb_linearize(skb)) {
208 		pr_err("skb_linearize failed\n");
209 		ib_device_put(&rxe->ib_dev);
210 		goto drop;
211 	}
212 
213 	udph = udp_hdr(skb);
214 	pkt->rxe = rxe;
215 	pkt->port_num = 1;
216 	pkt->hdr = (u8 *)(udph + 1);
217 	pkt->mask = RXE_GRH_MASK;
218 	pkt->paylen = be16_to_cpu(udph->len) - sizeof(*udph);
219 
220 	rxe_rcv(skb);
221 
222 	/*
223 	 * FIXME: this is in the wrong place, it needs to be done when pkt is
224 	 * destroyed
225 	 */
226 	ib_device_put(&rxe->ib_dev);
227 
228 	return 0;
229 drop:
230 	kfree_skb(skb);
231 
232 	return 0;
233 }
234 
rxe_setup_udp_tunnel(struct net * net,__be16 port,bool ipv6)235 static struct socket *rxe_setup_udp_tunnel(struct net *net, __be16 port,
236 					   bool ipv6)
237 {
238 	int err;
239 	struct socket *sock;
240 	struct udp_port_cfg udp_cfg = { };
241 	struct udp_tunnel_sock_cfg tnl_cfg = { };
242 
243 	if (ipv6) {
244 		udp_cfg.family = AF_INET6;
245 		udp_cfg.ipv6_v6only = 1;
246 	} else {
247 		udp_cfg.family = AF_INET;
248 	}
249 
250 	udp_cfg.local_udp_port = port;
251 
252 	/* Create UDP socket */
253 	err = udp_sock_create(net, &udp_cfg, &sock);
254 	if (err < 0)
255 		return ERR_PTR(err);
256 
257 	tnl_cfg.encap_type = 1;
258 	tnl_cfg.encap_rcv = rxe_udp_encap_recv;
259 
260 	/* Setup UDP tunnel */
261 	setup_udp_tunnel_sock(net, sock, &tnl_cfg);
262 
263 	return sock;
264 }
265 
rxe_release_udp_tunnel(struct socket * sk)266 static void rxe_release_udp_tunnel(struct socket *sk)
267 {
268 	if (sk)
269 		udp_tunnel_sock_release(sk);
270 }
271 
prepare_udp_hdr(struct sk_buff * skb,__be16 src_port,__be16 dst_port)272 static void prepare_udp_hdr(struct sk_buff *skb, __be16 src_port,
273 			    __be16 dst_port)
274 {
275 	struct udphdr *udph;
276 
277 	__skb_push(skb, sizeof(*udph));
278 	skb_reset_transport_header(skb);
279 	udph = udp_hdr(skb);
280 
281 	udph->dest = dst_port;
282 	udph->source = src_port;
283 	udph->len = htons(skb->len);
284 	udph->check = 0;
285 }
286 
prepare_ipv4_hdr(struct dst_entry * dst,struct sk_buff * skb,__be32 saddr,__be32 daddr,__u8 proto,__u8 tos,__u8 ttl,__be16 df,bool xnet)287 static void prepare_ipv4_hdr(struct dst_entry *dst, struct sk_buff *skb,
288 			     __be32 saddr, __be32 daddr, __u8 proto,
289 			     __u8 tos, __u8 ttl, __be16 df, bool xnet)
290 {
291 	struct iphdr *iph;
292 
293 	skb_scrub_packet(skb, xnet);
294 
295 	skb_clear_hash(skb);
296 	skb_dst_set(skb, dst_clone(dst));
297 	memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
298 
299 	skb_push(skb, sizeof(struct iphdr));
300 	skb_reset_network_header(skb);
301 
302 	iph = ip_hdr(skb);
303 
304 	iph->version	=	IPVERSION;
305 	iph->ihl	=	sizeof(struct iphdr) >> 2;
306 	iph->frag_off	=	df;
307 	iph->protocol	=	proto;
308 	iph->tos	=	tos;
309 	iph->daddr	=	daddr;
310 	iph->saddr	=	saddr;
311 	iph->ttl	=	ttl;
312 	__ip_select_ident(dev_net(dst->dev), iph,
313 			  skb_shinfo(skb)->gso_segs ?: 1);
314 	iph->tot_len = htons(skb->len);
315 	ip_send_check(iph);
316 }
317 
prepare_ipv6_hdr(struct dst_entry * dst,struct sk_buff * skb,struct in6_addr * saddr,struct in6_addr * daddr,__u8 proto,__u8 prio,__u8 ttl)318 static void prepare_ipv6_hdr(struct dst_entry *dst, struct sk_buff *skb,
319 			     struct in6_addr *saddr, struct in6_addr *daddr,
320 			     __u8 proto, __u8 prio, __u8 ttl)
321 {
322 	struct ipv6hdr *ip6h;
323 
324 	memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
325 	IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED
326 			    | IPSKB_REROUTED);
327 	skb_dst_set(skb, dst_clone(dst));
328 
329 	__skb_push(skb, sizeof(*ip6h));
330 	skb_reset_network_header(skb);
331 	ip6h		  = ipv6_hdr(skb);
332 	ip6_flow_hdr(ip6h, prio, htonl(0));
333 	ip6h->payload_len = htons(skb->len);
334 	ip6h->nexthdr     = proto;
335 	ip6h->hop_limit   = ttl;
336 	ip6h->daddr	  = *daddr;
337 	ip6h->saddr	  = *saddr;
338 	ip6h->payload_len = htons(skb->len - sizeof(*ip6h));
339 }
340 
prepare4(struct rxe_pkt_info * pkt,struct sk_buff * skb)341 static int prepare4(struct rxe_pkt_info *pkt, struct sk_buff *skb)
342 {
343 	struct rxe_qp *qp = pkt->qp;
344 	struct dst_entry *dst;
345 	bool xnet = false;
346 	__be16 df = htons(IP_DF);
347 	struct rxe_av *av = rxe_get_av(pkt);
348 	struct in_addr *saddr = &av->sgid_addr._sockaddr_in.sin_addr;
349 	struct in_addr *daddr = &av->dgid_addr._sockaddr_in.sin_addr;
350 
351 	dst = rxe_find_route(skb->dev, qp, av);
352 	if (!dst) {
353 		pr_err("Host not reachable\n");
354 		return -EHOSTUNREACH;
355 	}
356 
357 	prepare_udp_hdr(skb, cpu_to_be16(qp->src_port),
358 			cpu_to_be16(ROCE_V2_UDP_DPORT));
359 
360 	prepare_ipv4_hdr(dst, skb, saddr->s_addr, daddr->s_addr, IPPROTO_UDP,
361 			 av->grh.traffic_class, av->grh.hop_limit, df, xnet);
362 
363 	dst_release(dst);
364 	return 0;
365 }
366 
prepare6(struct rxe_pkt_info * pkt,struct sk_buff * skb)367 static int prepare6(struct rxe_pkt_info *pkt, struct sk_buff *skb)
368 {
369 	struct rxe_qp *qp = pkt->qp;
370 	struct dst_entry *dst;
371 	struct rxe_av *av = rxe_get_av(pkt);
372 	struct in6_addr *saddr = &av->sgid_addr._sockaddr_in6.sin6_addr;
373 	struct in6_addr *daddr = &av->dgid_addr._sockaddr_in6.sin6_addr;
374 
375 	dst = rxe_find_route(skb->dev, qp, av);
376 	if (!dst) {
377 		pr_err("Host not reachable\n");
378 		return -EHOSTUNREACH;
379 	}
380 
381 	prepare_udp_hdr(skb, cpu_to_be16(qp->src_port),
382 			cpu_to_be16(ROCE_V2_UDP_DPORT));
383 
384 	prepare_ipv6_hdr(dst, skb, saddr, daddr, IPPROTO_UDP,
385 			 av->grh.traffic_class,
386 			 av->grh.hop_limit);
387 
388 	dst_release(dst);
389 	return 0;
390 }
391 
rxe_prepare(struct rxe_pkt_info * pkt,struct sk_buff * skb,u32 * crc)392 int rxe_prepare(struct rxe_pkt_info *pkt, struct sk_buff *skb, u32 *crc)
393 {
394 	int err = 0;
395 
396 	if (skb->protocol == htons(ETH_P_IP))
397 		err = prepare4(pkt, skb);
398 	else if (skb->protocol == htons(ETH_P_IPV6))
399 		err = prepare6(pkt, skb);
400 
401 	*crc = rxe_icrc_hdr(pkt, skb);
402 
403 	if (ether_addr_equal(skb->dev->dev_addr, rxe_get_av(pkt)->dmac))
404 		pkt->mask |= RXE_LOOPBACK_MASK;
405 
406 	return err;
407 }
408 
rxe_skb_tx_dtor(struct sk_buff * skb)409 static void rxe_skb_tx_dtor(struct sk_buff *skb)
410 {
411 	struct sock *sk = skb->sk;
412 	struct rxe_qp *qp = sk->sk_user_data;
413 	int skb_out = atomic_dec_return(&qp->skb_out);
414 
415 	if (unlikely(qp->need_req_skb &&
416 		     skb_out < RXE_INFLIGHT_SKBS_PER_QP_LOW))
417 		rxe_run_task(&qp->req.task, 1);
418 
419 	rxe_drop_ref(qp);
420 }
421 
rxe_send(struct rxe_pkt_info * pkt,struct sk_buff * skb)422 int rxe_send(struct rxe_pkt_info *pkt, struct sk_buff *skb)
423 {
424 	int err;
425 
426 	skb->destructor = rxe_skb_tx_dtor;
427 	skb->sk = pkt->qp->sk->sk;
428 
429 	rxe_add_ref(pkt->qp);
430 	atomic_inc(&pkt->qp->skb_out);
431 
432 	if (skb->protocol == htons(ETH_P_IP)) {
433 		err = ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
434 	} else if (skb->protocol == htons(ETH_P_IPV6)) {
435 		err = ip6_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
436 	} else {
437 		pr_err("Unknown layer 3 protocol: %d\n", skb->protocol);
438 		atomic_dec(&pkt->qp->skb_out);
439 		rxe_drop_ref(pkt->qp);
440 		kfree_skb(skb);
441 		return -EINVAL;
442 	}
443 
444 	if (unlikely(net_xmit_eval(err))) {
445 		pr_debug("error sending packet: %d\n", err);
446 		return -EAGAIN;
447 	}
448 
449 	return 0;
450 }
451 
rxe_loopback(struct sk_buff * skb)452 void rxe_loopback(struct sk_buff *skb)
453 {
454 	if (skb->protocol == htons(ETH_P_IP))
455 		skb_pull(skb, sizeof(struct iphdr));
456 	else
457 		skb_pull(skb, sizeof(struct ipv6hdr));
458 
459 	rxe_rcv(skb);
460 }
461 
rxe_init_packet(struct rxe_dev * rxe,struct rxe_av * av,int paylen,struct rxe_pkt_info * pkt)462 struct sk_buff *rxe_init_packet(struct rxe_dev *rxe, struct rxe_av *av,
463 				int paylen, struct rxe_pkt_info *pkt)
464 {
465 	unsigned int hdr_len;
466 	struct sk_buff *skb = NULL;
467 	struct net_device *ndev;
468 	const struct ib_gid_attr *attr;
469 	const int port_num = 1;
470 
471 	attr = rdma_get_gid_attr(&rxe->ib_dev, port_num, av->grh.sgid_index);
472 	if (IS_ERR(attr))
473 		return NULL;
474 
475 	if (av->network_type == RDMA_NETWORK_IPV4)
476 		hdr_len = ETH_HLEN + sizeof(struct udphdr) +
477 			sizeof(struct iphdr);
478 	else
479 		hdr_len = ETH_HLEN + sizeof(struct udphdr) +
480 			sizeof(struct ipv6hdr);
481 
482 	rcu_read_lock();
483 	ndev = rdma_read_gid_attr_ndev_rcu(attr);
484 	if (IS_ERR(ndev)) {
485 		rcu_read_unlock();
486 		goto out;
487 	}
488 	skb = alloc_skb(paylen + hdr_len + LL_RESERVED_SPACE(ndev),
489 			GFP_ATOMIC);
490 
491 	if (unlikely(!skb)) {
492 		rcu_read_unlock();
493 		goto out;
494 	}
495 
496 	skb_reserve(skb, hdr_len + LL_RESERVED_SPACE(ndev));
497 
498 	/* FIXME: hold reference to this netdev until life of this skb. */
499 	skb->dev	= ndev;
500 	rcu_read_unlock();
501 
502 	if (av->network_type == RDMA_NETWORK_IPV4)
503 		skb->protocol = htons(ETH_P_IP);
504 	else
505 		skb->protocol = htons(ETH_P_IPV6);
506 
507 	pkt->rxe	= rxe;
508 	pkt->port_num	= port_num;
509 	pkt->hdr	= skb_put_zero(skb, paylen);
510 	pkt->mask	|= RXE_GRH_MASK;
511 
512 out:
513 	rdma_put_gid_attr(attr);
514 	return skb;
515 }
516 
517 /*
518  * this is required by rxe_cfg to match rxe devices in
519  * /sys/class/infiniband up with their underlying ethernet devices
520  */
rxe_parent_name(struct rxe_dev * rxe,unsigned int port_num)521 const char *rxe_parent_name(struct rxe_dev *rxe, unsigned int port_num)
522 {
523 	return rxe->ndev->name;
524 }
525 
rxe_link_layer(struct rxe_dev * rxe,unsigned int port_num)526 enum rdma_link_layer rxe_link_layer(struct rxe_dev *rxe, unsigned int port_num)
527 {
528 	return IB_LINK_LAYER_ETHERNET;
529 }
530 
rxe_net_add(const char * ibdev_name,struct net_device * ndev)531 int rxe_net_add(const char *ibdev_name, struct net_device *ndev)
532 {
533 	int err;
534 	struct rxe_dev *rxe = NULL;
535 
536 	rxe = ib_alloc_device(rxe_dev, ib_dev);
537 	if (!rxe)
538 		return -ENOMEM;
539 
540 	rxe->ndev = ndev;
541 
542 	err = rxe_add(rxe, ndev->mtu, ibdev_name);
543 	if (err) {
544 		ib_dealloc_device(&rxe->ib_dev);
545 		return err;
546 	}
547 
548 	return 0;
549 }
550 
rxe_port_event(struct rxe_dev * rxe,enum ib_event_type event)551 static void rxe_port_event(struct rxe_dev *rxe,
552 			   enum ib_event_type event)
553 {
554 	struct ib_event ev;
555 
556 	ev.device = &rxe->ib_dev;
557 	ev.element.port_num = 1;
558 	ev.event = event;
559 
560 	ib_dispatch_event(&ev);
561 }
562 
563 /* Caller must hold net_info_lock */
rxe_port_up(struct rxe_dev * rxe)564 void rxe_port_up(struct rxe_dev *rxe)
565 {
566 	struct rxe_port *port;
567 
568 	port = &rxe->port;
569 	port->attr.state = IB_PORT_ACTIVE;
570 
571 	rxe_port_event(rxe, IB_EVENT_PORT_ACTIVE);
572 	dev_info(&rxe->ib_dev.dev, "set active\n");
573 }
574 
575 /* Caller must hold net_info_lock */
rxe_port_down(struct rxe_dev * rxe)576 void rxe_port_down(struct rxe_dev *rxe)
577 {
578 	struct rxe_port *port;
579 
580 	port = &rxe->port;
581 	port->attr.state = IB_PORT_DOWN;
582 
583 	rxe_port_event(rxe, IB_EVENT_PORT_ERR);
584 	rxe_counter_inc(rxe, RXE_CNT_LINK_DOWNED);
585 	dev_info(&rxe->ib_dev.dev, "set down\n");
586 }
587 
rxe_set_port_state(struct rxe_dev * rxe)588 void rxe_set_port_state(struct rxe_dev *rxe)
589 {
590 	if (netif_running(rxe->ndev) && netif_carrier_ok(rxe->ndev))
591 		rxe_port_up(rxe);
592 	else
593 		rxe_port_down(rxe);
594 }
595 
rxe_notify(struct notifier_block * not_blk,unsigned long event,void * arg)596 static int rxe_notify(struct notifier_block *not_blk,
597 		      unsigned long event,
598 		      void *arg)
599 {
600 	struct net_device *ndev = netdev_notifier_info_to_dev(arg);
601 	struct rxe_dev *rxe = rxe_get_dev_from_net(ndev);
602 
603 	if (!rxe)
604 		return NOTIFY_OK;
605 
606 	switch (event) {
607 	case NETDEV_UNREGISTER:
608 		ib_unregister_device_queued(&rxe->ib_dev);
609 		break;
610 	case NETDEV_UP:
611 		rxe_port_up(rxe);
612 		break;
613 	case NETDEV_DOWN:
614 		rxe_port_down(rxe);
615 		break;
616 	case NETDEV_CHANGEMTU:
617 		pr_info("%s changed mtu to %d\n", ndev->name, ndev->mtu);
618 		rxe_set_mtu(rxe, ndev->mtu);
619 		break;
620 	case NETDEV_CHANGE:
621 		rxe_set_port_state(rxe);
622 		break;
623 	case NETDEV_REBOOT:
624 	case NETDEV_GOING_DOWN:
625 	case NETDEV_CHANGEADDR:
626 	case NETDEV_CHANGENAME:
627 	case NETDEV_FEAT_CHANGE:
628 	default:
629 		pr_info("ignoring netdev event = %ld for %s\n",
630 			event, ndev->name);
631 		break;
632 	}
633 
634 	ib_device_put(&rxe->ib_dev);
635 	return NOTIFY_OK;
636 }
637 
638 static struct notifier_block rxe_net_notifier = {
639 	.notifier_call = rxe_notify,
640 };
641 
rxe_net_ipv4_init(void)642 static int rxe_net_ipv4_init(void)
643 {
644 	recv_sockets.sk4 = rxe_setup_udp_tunnel(&init_net,
645 				htons(ROCE_V2_UDP_DPORT), false);
646 	if (IS_ERR(recv_sockets.sk4)) {
647 		recv_sockets.sk4 = NULL;
648 		pr_err("Failed to create IPv4 UDP tunnel\n");
649 		return -1;
650 	}
651 
652 	return 0;
653 }
654 
rxe_net_ipv6_init(void)655 static int rxe_net_ipv6_init(void)
656 {
657 #if IS_ENABLED(CONFIG_IPV6)
658 
659 	recv_sockets.sk6 = rxe_setup_udp_tunnel(&init_net,
660 						htons(ROCE_V2_UDP_DPORT), true);
661 	if (PTR_ERR(recv_sockets.sk6) == -EAFNOSUPPORT) {
662 		recv_sockets.sk6 = NULL;
663 		pr_warn("IPv6 is not supported, can not create a UDPv6 socket\n");
664 		return 0;
665 	}
666 
667 	if (IS_ERR(recv_sockets.sk6)) {
668 		recv_sockets.sk6 = NULL;
669 		pr_err("Failed to create IPv6 UDP tunnel\n");
670 		return -1;
671 	}
672 #endif
673 	return 0;
674 }
675 
rxe_net_exit(void)676 void rxe_net_exit(void)
677 {
678 	rxe_release_udp_tunnel(recv_sockets.sk6);
679 	rxe_release_udp_tunnel(recv_sockets.sk4);
680 	unregister_netdevice_notifier(&rxe_net_notifier);
681 }
682 
rxe_net_init(void)683 int rxe_net_init(void)
684 {
685 	int err;
686 
687 	recv_sockets.sk6 = NULL;
688 
689 	err = rxe_net_ipv4_init();
690 	if (err)
691 		return err;
692 	err = rxe_net_ipv6_init();
693 	if (err)
694 		goto err_out;
695 	err = register_netdevice_notifier(&rxe_net_notifier);
696 	if (err) {
697 		pr_err("Failed to register netdev notifier\n");
698 		goto err_out;
699 	}
700 	return 0;
701 err_out:
702 	rxe_net_exit();
703 	return err;
704 }
705