| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2005 Voltaire Inc.  All rights reserved. | 
					
						
							|  |  |  |  * Copyright (c) 2002-2005, Network Appliance, Inc. All rights reserved. | 
					
						
							|  |  |  |  * Copyright (c) 1999-2005, Mellanox Technologies, Inc. All rights reserved. | 
					
						
							|  |  |  |  * Copyright (c) 2005 Intel Corporation.  All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:43 -07:00
										 |  |  |  * This software is available to you under a choice of one of two | 
					
						
							|  |  |  |  * licenses.  You may choose to be licensed under the terms of the GNU | 
					
						
							|  |  |  |  * General Public License (GPL) Version 2, available from the file | 
					
						
							|  |  |  |  * COPYING in the main directory of this source tree, or the | 
					
						
							|  |  |  |  * OpenIB.org BSD license below: | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:43 -07:00
										 |  |  |  *     Redistribution and use in source and binary forms, with or | 
					
						
							|  |  |  |  *     without modification, are permitted provided that the following | 
					
						
							|  |  |  |  *     conditions are met: | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:43 -07:00
										 |  |  |  *      - Redistributions of source code must retain the above | 
					
						
							|  |  |  |  *        copyright notice, this list of conditions and the following | 
					
						
							|  |  |  |  *        disclaimer. | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:43 -07:00
										 |  |  |  *      - Redistributions in binary form must reproduce the above | 
					
						
							|  |  |  |  *        copyright notice, this list of conditions and the following | 
					
						
							|  |  |  |  *        disclaimer in the documentation and/or other materials | 
					
						
							|  |  |  |  *        provided with the distribution. | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-07-14 23:48:43 -07:00
										 |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | 
					
						
							|  |  |  |  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | 
					
						
							|  |  |  |  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | 
					
						
							|  |  |  |  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | 
					
						
							|  |  |  |  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | 
					
						
							|  |  |  |  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | 
					
						
							|  |  |  |  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | 
					
						
							|  |  |  |  * SOFTWARE. | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/mutex.h>
 | 
					
						
							|  |  |  | #include <linux/inetdevice.h>
 | 
					
						
							|  |  |  | #include <linux/workqueue.h>
 | 
					
						
							|  |  |  | #include <net/arp.h>
 | 
					
						
							|  |  |  | #include <net/neighbour.h>
 | 
					
						
							|  |  |  | #include <net/route.h>
 | 
					
						
							| 
									
										
										
										
											2006-07-30 20:44:19 -07:00
										 |  |  | #include <net/netevent.h>
 | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | #include <net/addrconf.h>
 | 
					
						
							|  |  |  | #include <net/ip6_route.h>
 | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | #include <rdma/ib_addr.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR("Sean Hefty"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("IB Address Translation"); | 
					
						
							|  |  |  | MODULE_LICENSE("Dual BSD/GPL"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct addr_req { | 
					
						
							|  |  |  | 	struct list_head list; | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	struct sockaddr_storage src_addr; | 
					
						
							|  |  |  | 	struct sockaddr_storage dst_addr; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	struct rdma_dev_addr *addr; | 
					
						
							| 
									
										
										
										
											2006-10-31 11:12:59 -08:00
										 |  |  | 	struct rdma_addr_client *client; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	void *context; | 
					
						
							|  |  |  | 	void (*callback)(int status, struct sockaddr *src_addr, | 
					
						
							|  |  |  | 			 struct rdma_dev_addr *addr, void *context); | 
					
						
							|  |  |  | 	unsigned long timeout; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-22 14:57:56 +00:00
										 |  |  | static void process_req(struct work_struct *work); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static DEFINE_MUTEX(lock); | 
					
						
							|  |  |  | static LIST_HEAD(req_list); | 
					
						
							| 
									
										
										
										
											2006-11-22 14:57:56 +00:00
										 |  |  | static DECLARE_DELAYED_WORK(work, process_req); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | static struct workqueue_struct *addr_wq; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-31 11:12:59 -08:00
										 |  |  | void rdma_addr_register_client(struct rdma_addr_client *client) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	atomic_set(&client->refcount, 1); | 
					
						
							|  |  |  | 	init_completion(&client->comp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(rdma_addr_register_client); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void put_client(struct rdma_addr_client *client) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (atomic_dec_and_test(&client->refcount)) | 
					
						
							|  |  |  | 		complete(&client->comp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void rdma_addr_unregister_client(struct rdma_addr_client *client) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	put_client(client); | 
					
						
							|  |  |  | 	wait_for_completion(&client->comp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(rdma_addr_unregister_client); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-03 16:02:42 -05:00
										 |  |  | int rdma_copy_addr(struct rdma_dev_addr *dev_addr, struct net_device *dev, | 
					
						
							|  |  |  | 		     const unsigned char *dst_dev_addr) | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-19 12:57:18 -08:00
										 |  |  | 	dev_addr->dev_type = dev->type; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN); | 
					
						
							|  |  |  | 	memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN); | 
					
						
							|  |  |  | 	if (dst_dev_addr) | 
					
						
							|  |  |  | 		memcpy(dev_addr->dst_dev_addr, dst_dev_addr, MAX_ADDR_LEN); | 
					
						
							| 
									
										
										
										
											2009-11-19 12:55:22 -08:00
										 |  |  | 	dev_addr->bound_dev_if = dev->ifindex; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-08-03 16:02:42 -05:00
										 |  |  | EXPORT_SYMBOL(rdma_copy_addr); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | int rdma_translate_ip(struct sockaddr *addr, struct rdma_dev_addr *dev_addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev; | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	int ret = -EADDRNOTAVAIL; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 12:55:22 -08:00
										 |  |  | 	if (dev_addr->bound_dev_if) { | 
					
						
							|  |  |  | 		dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if); | 
					
						
							|  |  |  | 		if (!dev) | 
					
						
							|  |  |  | 			return -ENODEV; | 
					
						
							|  |  |  | 		ret = rdma_copy_addr(dev_addr, dev, NULL); | 
					
						
							|  |  |  | 		dev_put(dev); | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	switch (addr->sa_family) { | 
					
						
							|  |  |  | 	case AF_INET: | 
					
						
							|  |  |  | 		dev = ip_dev_find(&init_net, | 
					
						
							|  |  |  | 			((struct sockaddr_in *) addr)->sin_addr.s_addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!dev) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 		ret = rdma_copy_addr(dev_addr, dev, NULL); | 
					
						
							|  |  |  | 		dev_put(dev); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-12-29 23:37:14 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
 | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	case AF_INET6: | 
					
						
							| 
									
										
										
										
											2009-11-18 14:24:34 -08:00
										 |  |  | 		read_lock(&dev_base_lock); | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 		for_each_netdev(&init_net, dev) { | 
					
						
							|  |  |  | 			if (ipv6_chk_addr(&init_net, | 
					
						
							|  |  |  | 					  &((struct sockaddr_in6 *) addr)->sin6_addr, | 
					
						
							|  |  |  | 					  dev, 1)) { | 
					
						
							|  |  |  | 				ret = rdma_copy_addr(dev_addr, dev, NULL); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-11-18 14:24:34 -08:00
										 |  |  | 		read_unlock(&dev_base_lock); | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-12-29 23:37:14 -08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(rdma_translate_ip); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void set_timeout(unsigned long time) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long delay; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cancel_delayed_work(&work); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	delay = time - jiffies; | 
					
						
							|  |  |  | 	if ((long)delay <= 0) | 
					
						
							|  |  |  | 		delay = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	queue_delayed_work(addr_wq, &work, delay); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void queue_req(struct addr_req *req) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct addr_req *temp_req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&lock); | 
					
						
							|  |  |  | 	list_for_each_entry_reverse(temp_req, &req_list, list) { | 
					
						
							| 
									
										
										
										
											2006-10-17 10:09:09 +05:30
										 |  |  | 		if (time_after_eq(req->timeout, temp_req->timeout)) | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_add(&req->list, &temp_req->list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (req_list.next == &req->list) | 
					
						
							|  |  |  | 		set_timeout(req->timeout); | 
					
						
							|  |  |  | 	mutex_unlock(&lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 13:26:51 -08:00
										 |  |  | static int addr4_resolve(struct sockaddr_in *src_in, | 
					
						
							|  |  |  | 			 struct sockaddr_in *dst_in, | 
					
						
							|  |  |  | 			 struct rdma_dev_addr *addr) | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-03-29 03:10:28 +00:00
										 |  |  | 	__be32 src_ip = src_in->sin_addr.s_addr; | 
					
						
							|  |  |  | 	__be32 dst_ip = dst_in->sin_addr.s_addr; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	struct flowi fl; | 
					
						
							|  |  |  | 	struct rtable *rt; | 
					
						
							|  |  |  | 	struct neighbour *neigh; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&fl, 0, sizeof fl); | 
					
						
							|  |  |  | 	fl.nl_u.ip4_u.daddr = dst_ip; | 
					
						
							|  |  |  | 	fl.nl_u.ip4_u.saddr = src_ip; | 
					
						
							| 
									
										
										
										
											2009-11-19 12:55:22 -08:00
										 |  |  | 	fl.oif = addr->bound_dev_if; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-22 22:07:34 -08:00
										 |  |  | 	ret = ip_route_output_key(&init_net, &rt, &fl); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 13:26:51 -08:00
										 |  |  | 	src_in->sin_family = AF_INET; | 
					
						
							|  |  |  | 	src_in->sin_addr.s_addr = rt->rt_src; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (rt->idev->dev->flags & IFF_LOOPBACK) { | 
					
						
							|  |  |  | 		ret = rdma_translate_ip((struct sockaddr *) dst_in, addr); | 
					
						
							|  |  |  | 		if (!ret) | 
					
						
							|  |  |  | 			memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN); | 
					
						
							|  |  |  | 		goto put; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	/* If the device does ARP internally, return 'done' */ | 
					
						
							|  |  |  | 	if (rt->idev->dev->flags & IFF_NOARP) { | 
					
						
							| 
									
										
										
										
											2006-08-03 16:02:42 -05:00
										 |  |  | 		rdma_copy_addr(addr, rt->idev->dev, NULL); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 		goto put; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	neigh = neigh_lookup(&arp_tbl, &rt->rt_gateway, rt->idev->dev); | 
					
						
							| 
									
										
										
										
											2009-11-19 13:26:51 -08:00
										 |  |  | 	if (!neigh || !(neigh->nud_state & NUD_VALID)) { | 
					
						
							|  |  |  | 		neigh_event_send(rt->u.dst.neighbour, NULL); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 		ret = -ENODATA; | 
					
						
							| 
									
										
										
										
											2009-11-19 13:26:51 -08:00
										 |  |  | 		if (neigh) | 
					
						
							|  |  |  | 			goto release; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 		goto put; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-03 16:02:42 -05:00
										 |  |  | 	ret = rdma_copy_addr(addr, neigh->dev, neigh->ha); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | release: | 
					
						
							|  |  |  | 	neigh_release(neigh); | 
					
						
							|  |  |  | put: | 
					
						
							|  |  |  | 	ip_rt_put(rt); | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-29 23:37:14 -08:00
										 |  |  | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
 | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | static int addr6_resolve(struct sockaddr_in6 *src_in, | 
					
						
							|  |  |  | 			 struct sockaddr_in6 *dst_in, | 
					
						
							|  |  |  | 			 struct rdma_dev_addr *addr) | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct flowi fl; | 
					
						
							|  |  |  | 	struct neighbour *neigh; | 
					
						
							|  |  |  | 	struct dst_entry *dst; | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 	int ret; | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(&fl, 0, sizeof fl); | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 	ipv6_addr_copy(&fl.fl6_dst, &dst_in->sin6_addr); | 
					
						
							|  |  |  | 	ipv6_addr_copy(&fl.fl6_src, &src_in->sin6_addr); | 
					
						
							| 
									
										
										
										
											2009-11-19 12:55:22 -08:00
										 |  |  | 	fl.oif = addr->bound_dev_if; | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dst = ip6_route_output(&init_net, NULL, &fl); | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 	if ((ret = dst->error)) | 
					
						
							|  |  |  | 		goto put; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ipv6_addr_any(&fl.fl6_src)) { | 
					
						
							|  |  |  | 		ret = ipv6_dev_get_saddr(&init_net, ip6_dst_idev(dst)->dev, | 
					
						
							|  |  |  | 					 &fl.fl6_dst, 0, &fl.fl6_src); | 
					
						
							|  |  |  | 		if (ret) | 
					
						
							|  |  |  | 			goto put; | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 		src_in->sin6_family = AF_INET6; | 
					
						
							|  |  |  | 		ipv6_addr_copy(&src_in->sin6_addr, &fl.fl6_src); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dst->dev->flags & IFF_LOOPBACK) { | 
					
						
							|  |  |  | 		ret = rdma_translate_ip((struct sockaddr *) dst_in, addr); | 
					
						
							|  |  |  | 		if (!ret) | 
					
						
							|  |  |  | 			memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN); | 
					
						
							|  |  |  | 		goto put; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If the device does ARP internally, return 'done' */ | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	if (dst->dev->flags & IFF_NOARP) { | 
					
						
							|  |  |  | 		ret = rdma_copy_addr(addr, dst->dev, NULL); | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 		goto put; | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 	neigh = dst->neighbour; | 
					
						
							|  |  |  | 	if (!neigh || !(neigh->nud_state & NUD_VALID)) { | 
					
						
							|  |  |  | 		neigh_event_send(dst->neighbour, NULL); | 
					
						
							|  |  |  | 		ret = -ENODATA; | 
					
						
							|  |  |  | 		goto put; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = rdma_copy_addr(addr, dst->dev, neigh->ha); | 
					
						
							|  |  |  | put: | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	dst_release(dst); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-29 23:37:14 -08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | static int addr6_resolve(struct sockaddr_in6 *src_in, | 
					
						
							|  |  |  | 			 struct sockaddr_in6 *dst_in, | 
					
						
							|  |  |  | 			 struct rdma_dev_addr *addr) | 
					
						
							| 
									
										
										
										
											2008-12-29 23:37:14 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	return -EADDRNOTAVAIL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 13:26:51 -08:00
										 |  |  | static int addr_resolve(struct sockaddr *src_in, | 
					
						
							|  |  |  | 			struct sockaddr *dst_in, | 
					
						
							|  |  |  | 			struct rdma_dev_addr *addr) | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (src_in->sa_family == AF_INET) { | 
					
						
							| 
									
										
										
										
											2009-11-19 13:26:51 -08:00
										 |  |  | 		return addr4_resolve((struct sockaddr_in *) src_in, | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 			(struct sockaddr_in *) dst_in, addr); | 
					
						
							|  |  |  | 	} else | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 		return addr6_resolve((struct sockaddr_in6 *) src_in, | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 			(struct sockaddr_in6 *) dst_in, addr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-22 14:57:56 +00:00
										 |  |  | static void process_req(struct work_struct *work) | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct addr_req *req, *temp_req; | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	struct sockaddr *src_in, *dst_in; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	struct list_head done_list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	INIT_LIST_HEAD(&done_list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&lock); | 
					
						
							|  |  |  | 	list_for_each_entry_safe(req, temp_req, &req_list, list) { | 
					
						
							| 
									
										
										
										
											2006-11-24 16:02:34 +05:30
										 |  |  | 		if (req->status == -ENODATA) { | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 			src_in = (struct sockaddr *) &req->src_addr; | 
					
						
							|  |  |  | 			dst_in = (struct sockaddr *) &req->dst_addr; | 
					
						
							| 
									
										
										
										
											2009-11-19 13:26:51 -08:00
										 |  |  | 			req->status = addr_resolve(src_in, dst_in, req->addr); | 
					
						
							| 
									
										
										
										
											2006-11-24 16:02:34 +05:30
										 |  |  | 			if (req->status && time_after_eq(jiffies, req->timeout)) | 
					
						
							|  |  |  | 				req->status = -ETIMEDOUT; | 
					
						
							|  |  |  | 			else if (req->status == -ENODATA) | 
					
						
							|  |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-11-29 15:33:09 -08:00
										 |  |  | 		list_move_tail(&req->list, &done_list); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!list_empty(&req_list)) { | 
					
						
							|  |  |  | 		req = list_entry(req_list.next, struct addr_req, list); | 
					
						
							|  |  |  | 		set_timeout(req->timeout); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	mutex_unlock(&lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry_safe(req, temp_req, &done_list, list) { | 
					
						
							|  |  |  | 		list_del(&req->list); | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 		req->callback(req->status, (struct sockaddr *) &req->src_addr, | 
					
						
							|  |  |  | 			req->addr, req->context); | 
					
						
							| 
									
										
										
										
											2006-10-31 11:12:59 -08:00
										 |  |  | 		put_client(req->client); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 		kfree(req); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-31 11:12:59 -08:00
										 |  |  | int rdma_resolve_ip(struct rdma_addr_client *client, | 
					
						
							|  |  |  | 		    struct sockaddr *src_addr, struct sockaddr *dst_addr, | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 		    struct rdma_dev_addr *addr, int timeout_ms, | 
					
						
							|  |  |  | 		    void (*callback)(int status, struct sockaddr *src_addr, | 
					
						
							|  |  |  | 				     struct rdma_dev_addr *addr, void *context), | 
					
						
							|  |  |  | 		    void *context) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-24 10:16:37 -08:00
										 |  |  | 	struct sockaddr *src_in, *dst_in; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	struct addr_req *req; | 
					
						
							|  |  |  | 	int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												some kmalloc/memset ->kzalloc (tree wide)
Transform some calls to kmalloc/memset to a single kzalloc (or kcalloc).
Here is a short excerpt of the semantic patch performing
this transformation:
@@
type T2;
expression x;
identifier f,fld;
expression E;
expression E1,E2;
expression e1,e2,e3,y;
statement S;
@@
 x =
- kmalloc
+ kzalloc
  (E1,E2)
  ...  when != \(x->fld=E;\|y=f(...,x,...);\|f(...,x,...);\|x=E;\|while(...) S\|for(e1;e2;e3) S\)
- memset((T2)x,0,E1);
@@
expression E1,E2,E3;
@@
- kzalloc(E1 * E2,E3)
+ kcalloc(E1,E2,E3)
[akpm@linux-foundation.org: get kcalloc args the right way around]
Signed-off-by: Yoann Padioleau <padator@wanadoo.fr>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Acked-by: Russell King <rmk@arm.linux.org.uk>
Cc: Bryan Wu <bryan.wu@analog.com>
Acked-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Dave Airlie <airlied@linux.ie>
Acked-by: Roland Dreier <rolandd@cisco.com>
Cc: Jiri Kosina <jkosina@suse.cz>
Acked-by: Dmitry Torokhov <dtor@mail.ru>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Acked-by: Pierre Ossman <drzeus-list@drzeus.cx>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: "David S. Miller" <davem@davemloft.net>
Acked-by: Greg KH <greg@kroah.com>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
											
										 
											2007-07-19 01:49:03 -07:00
										 |  |  | 	req = kzalloc(sizeof *req, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	if (!req) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 12:55:22 -08:00
										 |  |  | 	src_in = (struct sockaddr *) &req->src_addr; | 
					
						
							|  |  |  | 	dst_in = (struct sockaddr *) &req->dst_addr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (src_addr) { | 
					
						
							|  |  |  | 		if (src_addr->sa_family != dst_addr->sa_family) { | 
					
						
							|  |  |  | 			ret = -EINVAL; | 
					
						
							|  |  |  | 			goto err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		memcpy(src_in, src_addr, ip_addr_size(src_addr)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		src_in->sa_family = dst_addr->sa_family; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(dst_in, dst_addr, ip_addr_size(dst_addr)); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	req->addr = addr; | 
					
						
							|  |  |  | 	req->callback = callback; | 
					
						
							|  |  |  | 	req->context = context; | 
					
						
							| 
									
										
										
										
											2006-10-31 11:12:59 -08:00
										 |  |  | 	req->client = client; | 
					
						
							|  |  |  | 	atomic_inc(&client->refcount); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 16:46:25 -08:00
										 |  |  | 	req->status = addr_resolve(src_in, dst_in, addr); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	switch (req->status) { | 
					
						
							|  |  |  | 	case 0: | 
					
						
							|  |  |  | 		req->timeout = jiffies; | 
					
						
							|  |  |  | 		queue_req(req); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case -ENODATA: | 
					
						
							|  |  |  | 		req->timeout = msecs_to_jiffies(timeout_ms) + jiffies; | 
					
						
							|  |  |  | 		queue_req(req); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		ret = req->status; | 
					
						
							| 
									
										
										
										
											2006-10-31 11:12:59 -08:00
										 |  |  | 		atomic_dec(&client->refcount); | 
					
						
							| 
									
										
										
										
											2009-11-19 12:55:22 -08:00
										 |  |  | 		goto err; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2009-11-19 12:55:22 -08:00
										 |  |  | err: | 
					
						
							|  |  |  | 	kfree(req); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(rdma_resolve_ip); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void rdma_addr_cancel(struct rdma_dev_addr *addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct addr_req *req, *temp_req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&lock); | 
					
						
							|  |  |  | 	list_for_each_entry_safe(req, temp_req, &req_list, list) { | 
					
						
							|  |  |  | 		if (req->addr == addr) { | 
					
						
							|  |  |  | 			req->status = -ECANCELED; | 
					
						
							|  |  |  | 			req->timeout = jiffies; | 
					
						
							| 
									
										
										
										
											2006-11-29 15:33:09 -08:00
										 |  |  | 			list_move(&req->list, &req_list); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 			set_timeout(req->timeout); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	mutex_unlock(&lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL(rdma_addr_cancel); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:46 -07:00
										 |  |  | static int netevent_callback(struct notifier_block *self, unsigned long event, | 
					
						
							| 
									
										
										
										
											2006-07-30 20:44:19 -07:00
										 |  |  | 	void *ctx) | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-09-22 15:22:46 -07:00
										 |  |  | 	if (event == NETEVENT_NEIGH_UPDATE) { | 
					
						
							| 
									
										
										
										
											2006-07-30 20:44:19 -07:00
										 |  |  | 		struct neighbour *neigh = ctx; | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-23 19:03:17 -06:00
										 |  |  | 		if (neigh->nud_state & NUD_VALID) { | 
					
						
							| 
									
										
										
										
											2006-07-30 20:44:19 -07:00
										 |  |  | 			set_timeout(jiffies); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-30 20:44:19 -07:00
										 |  |  | static struct notifier_block nb = { | 
					
						
							|  |  |  | 	.notifier_call = netevent_callback | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-23 10:38:42 -07:00
										 |  |  | static int __init addr_init(void) | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-01 12:23:37 -08:00
										 |  |  | 	addr_wq = create_singlethread_workqueue("ib_addr"); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	if (!addr_wq) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-30 20:44:19 -07:00
										 |  |  | 	register_netevent_notifier(&nb); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-23 10:38:42 -07:00
										 |  |  | static void __exit addr_cleanup(void) | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-07-30 20:44:19 -07:00
										 |  |  | 	unregister_netevent_notifier(&nb); | 
					
						
							| 
									
										
										
										
											2006-06-17 20:37:28 -07:00
										 |  |  | 	destroy_workqueue(addr_wq); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(addr_init); | 
					
						
							|  |  |  | module_exit(addr_cleanup); |