blob: e90f2b2eabd724cddc3d8ade1566c2dd849b5bcd [file] [log] [blame]
Sean Hefty7025fcd2006-06-17 20:37:28 -07001/*
2 * Copyright (c) 2005 Voltaire Inc. All rights reserved.
3 * Copyright (c) 2002-2005, Network Appliance, Inc. All rights reserved.
4 * Copyright (c) 1999-2005, Mellanox Technologies, Inc. All rights reserved.
5 * Copyright (c) 2005 Intel Corporation. All rights reserved.
6 *
Sean Heftya9474912008-07-14 23:48:43 -07007 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
Sean Hefty7025fcd2006-06-17 20:37:28 -070012 *
Sean Heftya9474912008-07-14 23:48:43 -070013 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
15 * conditions are met:
Sean Hefty7025fcd2006-06-17 20:37:28 -070016 *
Sean Heftya9474912008-07-14 23:48:43 -070017 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer.
Sean Hefty7025fcd2006-06-17 20:37:28 -070020 *
Sean Heftya9474912008-07-14 23:48:43 -070021 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
Sean Hefty7025fcd2006-06-17 20:37:28 -070025 *
Sean Heftya9474912008-07-14 23:48:43 -070026 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 * SOFTWARE.
Sean Hefty7025fcd2006-06-17 20:37:28 -070034 */
35
36#include <linux/mutex.h>
37#include <linux/inetdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Sean Hefty7025fcd2006-06-17 20:37:28 -070039#include <linux/workqueue.h>
Paul Gortmakere4dd23d2011-05-27 15:35:46 -040040#include <linux/module.h>
Sean Hefty7025fcd2006-06-17 20:37:28 -070041#include <net/arp.h>
42#include <net/neighbour.h>
43#include <net/route.h>
Tom Tuckere795d092006-07-30 20:44:19 -070044#include <net/netevent.h>
Aleksey Senin38617c62008-12-24 10:16:37 -080045#include <net/addrconf.h>
46#include <net/ip6_route.h>
Sean Hefty7025fcd2006-06-17 20:37:28 -070047#include <rdma/ib_addr.h>
Sean Heftyef560862013-05-29 10:09:10 -070048#include <rdma/ib.h>
Sean Hefty7025fcd2006-06-17 20:37:28 -070049
50MODULE_AUTHOR("Sean Hefty");
51MODULE_DESCRIPTION("IB Address Translation");
52MODULE_LICENSE("Dual BSD/GPL");
53
54struct addr_req {
55 struct list_head list;
Aleksey Senin38617c62008-12-24 10:16:37 -080056 struct sockaddr_storage src_addr;
57 struct sockaddr_storage dst_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -070058 struct rdma_dev_addr *addr;
Sean Hefty7a118df2006-10-31 11:12:59 -080059 struct rdma_addr_client *client;
Sean Hefty7025fcd2006-06-17 20:37:28 -070060 void *context;
61 void (*callback)(int status, struct sockaddr *src_addr,
62 struct rdma_dev_addr *addr, void *context);
63 unsigned long timeout;
64 int status;
65};
66
David Howellsc4028952006-11-22 14:57:56 +000067static void process_req(struct work_struct *work);
Sean Hefty7025fcd2006-06-17 20:37:28 -070068
69static DEFINE_MUTEX(lock);
70static LIST_HEAD(req_list);
David Howellsc4028952006-11-22 14:57:56 +000071static DECLARE_DELAYED_WORK(work, process_req);
Sean Hefty7025fcd2006-06-17 20:37:28 -070072static struct workqueue_struct *addr_wq;
73
Sean Heftyef560862013-05-29 10:09:10 -070074int rdma_addr_size(struct sockaddr *addr)
75{
76 switch (addr->sa_family) {
77 case AF_INET:
78 return sizeof(struct sockaddr_in);
79 case AF_INET6:
80 return sizeof(struct sockaddr_in6);
81 case AF_IB:
82 return sizeof(struct sockaddr_ib);
83 default:
84 return 0;
85 }
86}
87EXPORT_SYMBOL(rdma_addr_size);
88
Sean Hefty7a118df2006-10-31 11:12:59 -080089void rdma_addr_register_client(struct rdma_addr_client *client)
90{
91 atomic_set(&client->refcount, 1);
92 init_completion(&client->comp);
93}
94EXPORT_SYMBOL(rdma_addr_register_client);
95
96static inline void put_client(struct rdma_addr_client *client)
97{
98 if (atomic_dec_and_test(&client->refcount))
99 complete(&client->comp);
100}
101
102void rdma_addr_unregister_client(struct rdma_addr_client *client)
103{
104 put_client(client);
105 wait_for_completion(&client->comp);
106}
107EXPORT_SYMBOL(rdma_addr_unregister_client);
108
Tom Tucker07ebafb2006-08-03 16:02:42 -0500109int rdma_copy_addr(struct rdma_dev_addr *dev_addr, struct net_device *dev,
110 const unsigned char *dst_dev_addr)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700111{
Sean Heftyc4315d82009-11-19 12:57:18 -0800112 dev_addr->dev_type = dev->type;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700113 memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN);
114 memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN);
115 if (dst_dev_addr)
116 memcpy(dev_addr->dst_dev_addr, dst_dev_addr, MAX_ADDR_LEN);
Sean Hefty6266ed62009-11-19 12:55:22 -0800117 dev_addr->bound_dev_if = dev->ifindex;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700118 return 0;
119}
Tom Tucker07ebafb2006-08-03 16:02:42 -0500120EXPORT_SYMBOL(rdma_copy_addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700121
122int rdma_translate_ip(struct sockaddr *addr, struct rdma_dev_addr *dev_addr)
123{
124 struct net_device *dev;
Aleksey Senin38617c62008-12-24 10:16:37 -0800125 int ret = -EADDRNOTAVAIL;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700126
Sean Hefty6266ed62009-11-19 12:55:22 -0800127 if (dev_addr->bound_dev_if) {
128 dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if);
129 if (!dev)
130 return -ENODEV;
131 ret = rdma_copy_addr(dev_addr, dev, NULL);
132 dev_put(dev);
133 return ret;
134 }
135
Aleksey Senin38617c62008-12-24 10:16:37 -0800136 switch (addr->sa_family) {
137 case AF_INET:
138 dev = ip_dev_find(&init_net,
139 ((struct sockaddr_in *) addr)->sin_addr.s_addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700140
Aleksey Senin38617c62008-12-24 10:16:37 -0800141 if (!dev)
142 return ret;
143
144 ret = rdma_copy_addr(dev_addr, dev, NULL);
145 dev_put(dev);
146 break;
Roland Dreier2c4ab622008-12-29 23:37:14 -0800147
Roland Dreierd90f9b32012-07-05 22:39:34 -0700148#if IS_ENABLED(CONFIG_IPV6)
Aleksey Senin38617c62008-12-24 10:16:37 -0800149 case AF_INET6:
Eric Dumazet22f4fbd2010-11-24 11:41:56 -0800150 rcu_read_lock();
151 for_each_netdev_rcu(&init_net, dev) {
Aleksey Senin38617c62008-12-24 10:16:37 -0800152 if (ipv6_chk_addr(&init_net,
153 &((struct sockaddr_in6 *) addr)->sin6_addr,
154 dev, 1)) {
155 ret = rdma_copy_addr(dev_addr, dev, NULL);
156 break;
157 }
158 }
Eric Dumazet22f4fbd2010-11-24 11:41:56 -0800159 rcu_read_unlock();
Aleksey Senin38617c62008-12-24 10:16:37 -0800160 break;
Roland Dreier2c4ab622008-12-29 23:37:14 -0800161#endif
Aleksey Senin38617c62008-12-24 10:16:37 -0800162 }
Sean Hefty7025fcd2006-06-17 20:37:28 -0700163 return ret;
164}
165EXPORT_SYMBOL(rdma_translate_ip);
166
167static void set_timeout(unsigned long time)
168{
169 unsigned long delay;
170
Sean Hefty7025fcd2006-06-17 20:37:28 -0700171 delay = time - jiffies;
172 if ((long)delay <= 0)
173 delay = 1;
174
Tejun Heo41f63c52012-08-03 10:30:47 -0700175 mod_delayed_work(addr_wq, &work, delay);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700176}
177
178static void queue_req(struct addr_req *req)
179{
180 struct addr_req *temp_req;
181
182 mutex_lock(&lock);
183 list_for_each_entry_reverse(temp_req, &req_list, list) {
Krishna Kumarf115db42006-10-17 10:09:09 +0530184 if (time_after_eq(req->timeout, temp_req->timeout))
Sean Hefty7025fcd2006-06-17 20:37:28 -0700185 break;
186 }
187
188 list_add(&req->list, &temp_req->list);
189
190 if (req_list.next == &req->list)
191 set_timeout(req->timeout);
192 mutex_unlock(&lock);
193}
194
David Miller02b61952012-01-24 13:15:52 +0000195static int dst_fetch_ha(struct dst_entry *dst, struct rdma_dev_addr *dev_addr, void *daddr)
David Miller51d45972011-12-02 16:52:14 +0000196{
197 struct neighbour *n;
198 int ret;
199
David Miller02b61952012-01-24 13:15:52 +0000200 n = dst_neigh_lookup(dst, daddr);
201
David Miller51d45972011-12-02 16:52:14 +0000202 rcu_read_lock();
David Miller51d45972011-12-02 16:52:14 +0000203 if (!n || !(n->nud_state & NUD_VALID)) {
204 if (n)
205 neigh_event_send(n, NULL);
206 ret = -ENODATA;
207 } else {
David Miller02b61952012-01-24 13:15:52 +0000208 ret = rdma_copy_addr(dev_addr, dst->dev, n->ha);
David Miller51d45972011-12-02 16:52:14 +0000209 }
210 rcu_read_unlock();
211
David Miller02b61952012-01-24 13:15:52 +0000212 if (n)
213 neigh_release(n);
214
David Miller51d45972011-12-02 16:52:14 +0000215 return ret;
216}
217
Sean Hefty923c1002009-11-19 13:26:51 -0800218static int addr4_resolve(struct sockaddr_in *src_in,
219 struct sockaddr_in *dst_in,
220 struct rdma_dev_addr *addr)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700221{
Al Viro1b90c132008-03-29 03:10:28 +0000222 __be32 src_ip = src_in->sin_addr.s_addr;
223 __be32 dst_ip = dst_in->sin_addr.s_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700224 struct rtable *rt;
David S. Miller5fc35902011-05-09 14:52:02 -0700225 struct flowi4 fl4;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700226 int ret;
227
David S. Miller5fc35902011-05-09 14:52:02 -0700228 memset(&fl4, 0, sizeof(fl4));
229 fl4.daddr = dst_ip;
230 fl4.saddr = src_ip;
231 fl4.flowi4_oif = addr->bound_dev_if;
232 rt = ip_route_output_key(&init_net, &fl4);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800233 if (IS_ERR(rt)) {
234 ret = PTR_ERR(rt);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700235 goto out;
David S. Millerb23dd4f2011-03-02 14:31:35 -0800236 }
Sean Hefty923c1002009-11-19 13:26:51 -0800237 src_in->sin_family = AF_INET;
David S. Miller5fc35902011-05-09 14:52:02 -0700238 src_in->sin_addr.s_addr = fl4.saddr;
Sean Hefty923c1002009-11-19 13:26:51 -0800239
Eric Dumazet72cdd1d2010-11-11 07:14:07 +0000240 if (rt->dst.dev->flags & IFF_LOOPBACK) {
Sean Hefty923c1002009-11-19 13:26:51 -0800241 ret = rdma_translate_ip((struct sockaddr *) dst_in, addr);
242 if (!ret)
243 memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN);
244 goto put;
245 }
246
Sean Hefty7025fcd2006-06-17 20:37:28 -0700247 /* If the device does ARP internally, return 'done' */
Eric Dumazet72cdd1d2010-11-11 07:14:07 +0000248 if (rt->dst.dev->flags & IFF_NOARP) {
Sean Hefty1bdd6382011-03-17 23:35:39 +0000249 ret = rdma_copy_addr(addr, rt->dst.dev, NULL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700250 goto put;
251 }
252
David Miller02b61952012-01-24 13:15:52 +0000253 ret = dst_fetch_ha(&rt->dst, addr, &fl4.daddr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700254put:
255 ip_rt_put(rt);
256out:
257 return ret;
258}
259
Roland Dreierd90f9b32012-07-05 22:39:34 -0700260#if IS_ENABLED(CONFIG_IPV6)
Sean Heftyd14714d2009-11-19 16:46:25 -0800261static int addr6_resolve(struct sockaddr_in6 *src_in,
262 struct sockaddr_in6 *dst_in,
263 struct rdma_dev_addr *addr)
Aleksey Senin38617c62008-12-24 10:16:37 -0800264{
David S. Miller4c9483b2011-03-12 16:22:43 -0500265 struct flowi6 fl6;
Aleksey Senin38617c62008-12-24 10:16:37 -0800266 struct dst_entry *dst;
Sean Heftyd14714d2009-11-19 16:46:25 -0800267 int ret;
Aleksey Senin38617c62008-12-24 10:16:37 -0800268
David S. Miller4c9483b2011-03-12 16:22:43 -0500269 memset(&fl6, 0, sizeof fl6);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000270 fl6.daddr = dst_in->sin6_addr;
271 fl6.saddr = src_in->sin6_addr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500272 fl6.flowi6_oif = addr->bound_dev_if;
Aleksey Senin38617c62008-12-24 10:16:37 -0800273
David S. Miller4c9483b2011-03-12 16:22:43 -0500274 dst = ip6_route_output(&init_net, NULL, &fl6);
Sean Heftyd14714d2009-11-19 16:46:25 -0800275 if ((ret = dst->error))
276 goto put;
Aleksey Senin38617c62008-12-24 10:16:37 -0800277
David S. Miller4c9483b2011-03-12 16:22:43 -0500278 if (ipv6_addr_any(&fl6.saddr)) {
Sean Heftyd14714d2009-11-19 16:46:25 -0800279 ret = ipv6_dev_get_saddr(&init_net, ip6_dst_idev(dst)->dev,
David S. Miller4c9483b2011-03-12 16:22:43 -0500280 &fl6.daddr, 0, &fl6.saddr);
Sean Heftyd14714d2009-11-19 16:46:25 -0800281 if (ret)
282 goto put;
283
284 src_in->sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000285 src_in->sin6_addr = fl6.saddr;
Aleksey Senin38617c62008-12-24 10:16:37 -0800286 }
287
Sean Heftyd14714d2009-11-19 16:46:25 -0800288 if (dst->dev->flags & IFF_LOOPBACK) {
289 ret = rdma_translate_ip((struct sockaddr *) dst_in, addr);
290 if (!ret)
291 memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN);
292 goto put;
293 }
294
295 /* If the device does ARP internally, return 'done' */
296 if (dst->dev->flags & IFF_NOARP) {
297 ret = rdma_copy_addr(addr, dst->dev, NULL);
298 goto put;
299 }
300
David Miller02b61952012-01-24 13:15:52 +0000301 ret = dst_fetch_ha(dst, addr, &fl6.daddr);
Sean Heftyd14714d2009-11-19 16:46:25 -0800302put:
Aleksey Senin38617c62008-12-24 10:16:37 -0800303 dst_release(dst);
304 return ret;
305}
Roland Dreier2c4ab622008-12-29 23:37:14 -0800306#else
Sean Heftyd14714d2009-11-19 16:46:25 -0800307static int addr6_resolve(struct sockaddr_in6 *src_in,
308 struct sockaddr_in6 *dst_in,
309 struct rdma_dev_addr *addr)
Roland Dreier2c4ab622008-12-29 23:37:14 -0800310{
311 return -EADDRNOTAVAIL;
312}
313#endif
Aleksey Senin38617c62008-12-24 10:16:37 -0800314
Sean Hefty923c1002009-11-19 13:26:51 -0800315static int addr_resolve(struct sockaddr *src_in,
316 struct sockaddr *dst_in,
317 struct rdma_dev_addr *addr)
Aleksey Senin38617c62008-12-24 10:16:37 -0800318{
319 if (src_in->sa_family == AF_INET) {
Sean Hefty923c1002009-11-19 13:26:51 -0800320 return addr4_resolve((struct sockaddr_in *) src_in,
Aleksey Senin38617c62008-12-24 10:16:37 -0800321 (struct sockaddr_in *) dst_in, addr);
322 } else
Sean Heftyd14714d2009-11-19 16:46:25 -0800323 return addr6_resolve((struct sockaddr_in6 *) src_in,
Aleksey Senin38617c62008-12-24 10:16:37 -0800324 (struct sockaddr_in6 *) dst_in, addr);
325}
326
David Howellsc4028952006-11-22 14:57:56 +0000327static void process_req(struct work_struct *work)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700328{
329 struct addr_req *req, *temp_req;
Aleksey Senin38617c62008-12-24 10:16:37 -0800330 struct sockaddr *src_in, *dst_in;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700331 struct list_head done_list;
332
333 INIT_LIST_HEAD(&done_list);
334
335 mutex_lock(&lock);
336 list_for_each_entry_safe(req, temp_req, &req_list, list) {
Krishna Kumarc78bb842006-11-24 16:02:34 +0530337 if (req->status == -ENODATA) {
Aleksey Senin38617c62008-12-24 10:16:37 -0800338 src_in = (struct sockaddr *) &req->src_addr;
339 dst_in = (struct sockaddr *) &req->dst_addr;
Sean Hefty923c1002009-11-19 13:26:51 -0800340 req->status = addr_resolve(src_in, dst_in, req->addr);
Krishna Kumarc78bb842006-11-24 16:02:34 +0530341 if (req->status && time_after_eq(jiffies, req->timeout))
342 req->status = -ETIMEDOUT;
343 else if (req->status == -ENODATA)
344 continue;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700345 }
Roland Dreier04699a12006-11-29 15:33:09 -0800346 list_move_tail(&req->list, &done_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700347 }
348
349 if (!list_empty(&req_list)) {
350 req = list_entry(req_list.next, struct addr_req, list);
351 set_timeout(req->timeout);
352 }
353 mutex_unlock(&lock);
354
355 list_for_each_entry_safe(req, temp_req, &done_list, list) {
356 list_del(&req->list);
Aleksey Senin38617c62008-12-24 10:16:37 -0800357 req->callback(req->status, (struct sockaddr *) &req->src_addr,
358 req->addr, req->context);
Sean Hefty7a118df2006-10-31 11:12:59 -0800359 put_client(req->client);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700360 kfree(req);
361 }
362}
363
Sean Hefty7a118df2006-10-31 11:12:59 -0800364int rdma_resolve_ip(struct rdma_addr_client *client,
365 struct sockaddr *src_addr, struct sockaddr *dst_addr,
Sean Hefty7025fcd2006-06-17 20:37:28 -0700366 struct rdma_dev_addr *addr, int timeout_ms,
367 void (*callback)(int status, struct sockaddr *src_addr,
368 struct rdma_dev_addr *addr, void *context),
369 void *context)
370{
Aleksey Senin38617c62008-12-24 10:16:37 -0800371 struct sockaddr *src_in, *dst_in;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700372 struct addr_req *req;
373 int ret = 0;
374
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700375 req = kzalloc(sizeof *req, GFP_KERNEL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700376 if (!req)
377 return -ENOMEM;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700378
Sean Heftyd2e08862009-11-19 12:55:22 -0800379 src_in = (struct sockaddr *) &req->src_addr;
380 dst_in = (struct sockaddr *) &req->dst_addr;
381
382 if (src_addr) {
383 if (src_addr->sa_family != dst_addr->sa_family) {
384 ret = -EINVAL;
385 goto err;
386 }
387
Sean Heftyef560862013-05-29 10:09:10 -0700388 memcpy(src_in, src_addr, rdma_addr_size(src_addr));
Sean Heftyd2e08862009-11-19 12:55:22 -0800389 } else {
390 src_in->sa_family = dst_addr->sa_family;
391 }
392
Sean Heftyef560862013-05-29 10:09:10 -0700393 memcpy(dst_in, dst_addr, rdma_addr_size(dst_addr));
Sean Hefty7025fcd2006-06-17 20:37:28 -0700394 req->addr = addr;
395 req->callback = callback;
396 req->context = context;
Sean Hefty7a118df2006-10-31 11:12:59 -0800397 req->client = client;
398 atomic_inc(&client->refcount);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700399
Sean Heftyd14714d2009-11-19 16:46:25 -0800400 req->status = addr_resolve(src_in, dst_in, addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700401 switch (req->status) {
402 case 0:
403 req->timeout = jiffies;
404 queue_req(req);
405 break;
406 case -ENODATA:
407 req->timeout = msecs_to_jiffies(timeout_ms) + jiffies;
408 queue_req(req);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700409 break;
410 default:
411 ret = req->status;
Sean Hefty7a118df2006-10-31 11:12:59 -0800412 atomic_dec(&client->refcount);
Sean Heftyd2e08862009-11-19 12:55:22 -0800413 goto err;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700414 }
415 return ret;
Sean Heftyd2e08862009-11-19 12:55:22 -0800416err:
417 kfree(req);
418 return ret;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700419}
420EXPORT_SYMBOL(rdma_resolve_ip);
421
422void rdma_addr_cancel(struct rdma_dev_addr *addr)
423{
424 struct addr_req *req, *temp_req;
425
426 mutex_lock(&lock);
427 list_for_each_entry_safe(req, temp_req, &req_list, list) {
428 if (req->addr == addr) {
429 req->status = -ECANCELED;
430 req->timeout = jiffies;
Roland Dreier04699a12006-11-29 15:33:09 -0800431 list_move(&req->list, &req_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700432 set_timeout(req->timeout);
433 break;
434 }
435 }
436 mutex_unlock(&lock);
437}
438EXPORT_SYMBOL(rdma_addr_cancel);
439
Roland Dreier3cd96562006-09-22 15:22:46 -0700440static int netevent_callback(struct notifier_block *self, unsigned long event,
Tom Tuckere795d092006-07-30 20:44:19 -0700441 void *ctx)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700442{
Roland Dreier3cd96562006-09-22 15:22:46 -0700443 if (event == NETEVENT_NEIGH_UPDATE) {
Tom Tuckere795d092006-07-30 20:44:19 -0700444 struct neighbour *neigh = ctx;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700445
Steve Wise1f126672007-01-23 19:03:17 -0600446 if (neigh->nud_state & NUD_VALID) {
Tom Tuckere795d092006-07-30 20:44:19 -0700447 set_timeout(jiffies);
448 }
449 }
Sean Hefty7025fcd2006-06-17 20:37:28 -0700450 return 0;
451}
452
Tom Tuckere795d092006-07-30 20:44:19 -0700453static struct notifier_block nb = {
454 .notifier_call = netevent_callback
Sean Hefty7025fcd2006-06-17 20:37:28 -0700455};
456
Peter Huewe716abb12009-06-23 10:38:42 -0700457static int __init addr_init(void)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700458{
Sean Heftyc7f743a2007-02-01 12:23:37 -0800459 addr_wq = create_singlethread_workqueue("ib_addr");
Sean Hefty7025fcd2006-06-17 20:37:28 -0700460 if (!addr_wq)
461 return -ENOMEM;
462
Tom Tuckere795d092006-07-30 20:44:19 -0700463 register_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700464 return 0;
465}
466
Peter Huewe716abb12009-06-23 10:38:42 -0700467static void __exit addr_cleanup(void)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700468{
Tom Tuckere795d092006-07-30 20:44:19 -0700469 unregister_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700470 destroy_workqueue(addr_wq);
471}
472
473module_init(addr_init);
474module_exit(addr_cleanup);