blob: e9cf51b1343ba520d8928367a1eca80f9f531657 [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>
48
49MODULE_AUTHOR("Sean Hefty");
50MODULE_DESCRIPTION("IB Address Translation");
51MODULE_LICENSE("Dual BSD/GPL");
52
53struct addr_req {
54 struct list_head list;
Aleksey Senin38617c62008-12-24 10:16:37 -080055 struct sockaddr_storage src_addr;
56 struct sockaddr_storage dst_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -070057 struct rdma_dev_addr *addr;
Sean Hefty7a118df2006-10-31 11:12:59 -080058 struct rdma_addr_client *client;
Sean Hefty7025fcd2006-06-17 20:37:28 -070059 void *context;
60 void (*callback)(int status, struct sockaddr *src_addr,
61 struct rdma_dev_addr *addr, void *context);
62 unsigned long timeout;
63 int status;
64};
65
David Howellsc4028952006-11-22 14:57:56 +000066static void process_req(struct work_struct *work);
Sean Hefty7025fcd2006-06-17 20:37:28 -070067
68static DEFINE_MUTEX(lock);
69static LIST_HEAD(req_list);
David Howellsc4028952006-11-22 14:57:56 +000070static DECLARE_DELAYED_WORK(work, process_req);
Sean Hefty7025fcd2006-06-17 20:37:28 -070071static struct workqueue_struct *addr_wq;
72
Sean Hefty7a118df2006-10-31 11:12:59 -080073void rdma_addr_register_client(struct rdma_addr_client *client)
74{
75 atomic_set(&client->refcount, 1);
76 init_completion(&client->comp);
77}
78EXPORT_SYMBOL(rdma_addr_register_client);
79
80static inline void put_client(struct rdma_addr_client *client)
81{
82 if (atomic_dec_and_test(&client->refcount))
83 complete(&client->comp);
84}
85
86void rdma_addr_unregister_client(struct rdma_addr_client *client)
87{
88 put_client(client);
89 wait_for_completion(&client->comp);
90}
91EXPORT_SYMBOL(rdma_addr_unregister_client);
92
Tom Tucker07ebafb2006-08-03 16:02:42 -050093int rdma_copy_addr(struct rdma_dev_addr *dev_addr, struct net_device *dev,
94 const unsigned char *dst_dev_addr)
Sean Hefty7025fcd2006-06-17 20:37:28 -070095{
Sean Heftyc4315d82009-11-19 12:57:18 -080096 dev_addr->dev_type = dev->type;
Sean Hefty7025fcd2006-06-17 20:37:28 -070097 memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN);
98 memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN);
99 if (dst_dev_addr)
100 memcpy(dev_addr->dst_dev_addr, dst_dev_addr, MAX_ADDR_LEN);
Sean Hefty6266ed62009-11-19 12:55:22 -0800101 dev_addr->bound_dev_if = dev->ifindex;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700102 return 0;
103}
Tom Tucker07ebafb2006-08-03 16:02:42 -0500104EXPORT_SYMBOL(rdma_copy_addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700105
106int rdma_translate_ip(struct sockaddr *addr, struct rdma_dev_addr *dev_addr)
107{
108 struct net_device *dev;
Aleksey Senin38617c62008-12-24 10:16:37 -0800109 int ret = -EADDRNOTAVAIL;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700110
Sean Hefty6266ed62009-11-19 12:55:22 -0800111 if (dev_addr->bound_dev_if) {
112 dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if);
113 if (!dev)
114 return -ENODEV;
115 ret = rdma_copy_addr(dev_addr, dev, NULL);
116 dev_put(dev);
117 return ret;
118 }
119
Aleksey Senin38617c62008-12-24 10:16:37 -0800120 switch (addr->sa_family) {
121 case AF_INET:
122 dev = ip_dev_find(&init_net,
123 ((struct sockaddr_in *) addr)->sin_addr.s_addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700124
Aleksey Senin38617c62008-12-24 10:16:37 -0800125 if (!dev)
126 return ret;
127
128 ret = rdma_copy_addr(dev_addr, dev, NULL);
129 dev_put(dev);
130 break;
Roland Dreier2c4ab622008-12-29 23:37:14 -0800131
132#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Aleksey Senin38617c62008-12-24 10:16:37 -0800133 case AF_INET6:
Eric Dumazet22f4fbd2010-11-24 11:41:56 -0800134 rcu_read_lock();
135 for_each_netdev_rcu(&init_net, dev) {
Aleksey Senin38617c62008-12-24 10:16:37 -0800136 if (ipv6_chk_addr(&init_net,
137 &((struct sockaddr_in6 *) addr)->sin6_addr,
138 dev, 1)) {
139 ret = rdma_copy_addr(dev_addr, dev, NULL);
140 break;
141 }
142 }
Eric Dumazet22f4fbd2010-11-24 11:41:56 -0800143 rcu_read_unlock();
Aleksey Senin38617c62008-12-24 10:16:37 -0800144 break;
Roland Dreier2c4ab622008-12-29 23:37:14 -0800145#endif
Aleksey Senin38617c62008-12-24 10:16:37 -0800146 }
Sean Hefty7025fcd2006-06-17 20:37:28 -0700147 return ret;
148}
149EXPORT_SYMBOL(rdma_translate_ip);
150
151static void set_timeout(unsigned long time)
152{
153 unsigned long delay;
154
155 cancel_delayed_work(&work);
156
157 delay = time - jiffies;
158 if ((long)delay <= 0)
159 delay = 1;
160
161 queue_delayed_work(addr_wq, &work, delay);
162}
163
164static void queue_req(struct addr_req *req)
165{
166 struct addr_req *temp_req;
167
168 mutex_lock(&lock);
169 list_for_each_entry_reverse(temp_req, &req_list, list) {
Krishna Kumarf115db42006-10-17 10:09:09 +0530170 if (time_after_eq(req->timeout, temp_req->timeout))
Sean Hefty7025fcd2006-06-17 20:37:28 -0700171 break;
172 }
173
174 list_add(&req->list, &temp_req->list);
175
176 if (req_list.next == &req->list)
177 set_timeout(req->timeout);
178 mutex_unlock(&lock);
179}
180
Sean Hefty923c1002009-11-19 13:26:51 -0800181static int addr4_resolve(struct sockaddr_in *src_in,
182 struct sockaddr_in *dst_in,
183 struct rdma_dev_addr *addr)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700184{
Al Viro1b90c132008-03-29 03:10:28 +0000185 __be32 src_ip = src_in->sin_addr.s_addr;
186 __be32 dst_ip = dst_in->sin_addr.s_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700187 struct rtable *rt;
188 struct neighbour *neigh;
David S. Miller5fc35902011-05-09 14:52:02 -0700189 struct flowi4 fl4;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700190 int ret;
191
David S. Miller5fc35902011-05-09 14:52:02 -0700192 memset(&fl4, 0, sizeof(fl4));
193 fl4.daddr = dst_ip;
194 fl4.saddr = src_ip;
195 fl4.flowi4_oif = addr->bound_dev_if;
196 rt = ip_route_output_key(&init_net, &fl4);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800197 if (IS_ERR(rt)) {
198 ret = PTR_ERR(rt);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700199 goto out;
David S. Millerb23dd4f2011-03-02 14:31:35 -0800200 }
Sean Hefty923c1002009-11-19 13:26:51 -0800201 src_in->sin_family = AF_INET;
David S. Miller5fc35902011-05-09 14:52:02 -0700202 src_in->sin_addr.s_addr = fl4.saddr;
Sean Hefty923c1002009-11-19 13:26:51 -0800203
Eric Dumazet72cdd1d2010-11-11 07:14:07 +0000204 if (rt->dst.dev->flags & IFF_LOOPBACK) {
Sean Hefty923c1002009-11-19 13:26:51 -0800205 ret = rdma_translate_ip((struct sockaddr *) dst_in, addr);
206 if (!ret)
207 memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN);
208 goto put;
209 }
210
Sean Hefty7025fcd2006-06-17 20:37:28 -0700211 /* If the device does ARP internally, return 'done' */
Eric Dumazet72cdd1d2010-11-11 07:14:07 +0000212 if (rt->dst.dev->flags & IFF_NOARP) {
Sean Hefty1bdd6382011-03-17 23:35:39 +0000213 ret = rdma_copy_addr(addr, rt->dst.dev, NULL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700214 goto put;
215 }
216
Eric Dumazet72cdd1d2010-11-11 07:14:07 +0000217 neigh = neigh_lookup(&arp_tbl, &rt->rt_gateway, rt->dst.dev);
Sean Hefty923c1002009-11-19 13:26:51 -0800218 if (!neigh || !(neigh->nud_state & NUD_VALID)) {
Eric Dumazet580da352011-11-29 22:31:23 +0100219 rcu_read_lock();
David S. Miller69cce1d2011-07-17 23:09:49 -0700220 neigh_event_send(dst_get_neighbour(&rt->dst), NULL);
Eric Dumazet580da352011-11-29 22:31:23 +0100221 rcu_read_unlock();
Sean Hefty7025fcd2006-06-17 20:37:28 -0700222 ret = -ENODATA;
Sean Hefty923c1002009-11-19 13:26:51 -0800223 if (neigh)
224 goto release;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700225 goto put;
226 }
227
Tom Tucker07ebafb2006-08-03 16:02:42 -0500228 ret = rdma_copy_addr(addr, neigh->dev, neigh->ha);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700229release:
230 neigh_release(neigh);
231put:
232 ip_rt_put(rt);
233out:
234 return ret;
235}
236
Roland Dreier2c4ab622008-12-29 23:37:14 -0800237#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Sean Heftyd14714d2009-11-19 16:46:25 -0800238static int addr6_resolve(struct sockaddr_in6 *src_in,
239 struct sockaddr_in6 *dst_in,
240 struct rdma_dev_addr *addr)
Aleksey Senin38617c62008-12-24 10:16:37 -0800241{
David S. Miller4c9483b2011-03-12 16:22:43 -0500242 struct flowi6 fl6;
Aleksey Senin38617c62008-12-24 10:16:37 -0800243 struct neighbour *neigh;
244 struct dst_entry *dst;
Sean Heftyd14714d2009-11-19 16:46:25 -0800245 int ret;
Aleksey Senin38617c62008-12-24 10:16:37 -0800246
David S. Miller4c9483b2011-03-12 16:22:43 -0500247 memset(&fl6, 0, sizeof fl6);
248 ipv6_addr_copy(&fl6.daddr, &dst_in->sin6_addr);
249 ipv6_addr_copy(&fl6.saddr, &src_in->sin6_addr);
250 fl6.flowi6_oif = addr->bound_dev_if;
Aleksey Senin38617c62008-12-24 10:16:37 -0800251
David S. Miller4c9483b2011-03-12 16:22:43 -0500252 dst = ip6_route_output(&init_net, NULL, &fl6);
Sean Heftyd14714d2009-11-19 16:46:25 -0800253 if ((ret = dst->error))
254 goto put;
Aleksey Senin38617c62008-12-24 10:16:37 -0800255
David S. Miller4c9483b2011-03-12 16:22:43 -0500256 if (ipv6_addr_any(&fl6.saddr)) {
Sean Heftyd14714d2009-11-19 16:46:25 -0800257 ret = ipv6_dev_get_saddr(&init_net, ip6_dst_idev(dst)->dev,
David S. Miller4c9483b2011-03-12 16:22:43 -0500258 &fl6.daddr, 0, &fl6.saddr);
Sean Heftyd14714d2009-11-19 16:46:25 -0800259 if (ret)
260 goto put;
261
262 src_in->sin6_family = AF_INET6;
David S. Miller4c9483b2011-03-12 16:22:43 -0500263 ipv6_addr_copy(&src_in->sin6_addr, &fl6.saddr);
Aleksey Senin38617c62008-12-24 10:16:37 -0800264 }
265
Sean Heftyd14714d2009-11-19 16:46:25 -0800266 if (dst->dev->flags & IFF_LOOPBACK) {
267 ret = rdma_translate_ip((struct sockaddr *) dst_in, addr);
268 if (!ret)
269 memcpy(addr->dst_dev_addr, addr->src_dev_addr, MAX_ADDR_LEN);
270 goto put;
271 }
272
273 /* If the device does ARP internally, return 'done' */
274 if (dst->dev->flags & IFF_NOARP) {
275 ret = rdma_copy_addr(addr, dst->dev, NULL);
276 goto put;
277 }
278
Eric Dumazet580da352011-11-29 22:31:23 +0100279 rcu_read_lock();
David S. Miller69cce1d2011-07-17 23:09:49 -0700280 neigh = dst_get_neighbour(dst);
Sean Heftyd14714d2009-11-19 16:46:25 -0800281 if (!neigh || !(neigh->nud_state & NUD_VALID)) {
David S. Miller69cce1d2011-07-17 23:09:49 -0700282 if (neigh)
283 neigh_event_send(neigh, NULL);
Sean Heftyd14714d2009-11-19 16:46:25 -0800284 ret = -ENODATA;
Eric Dumazet580da352011-11-29 22:31:23 +0100285 } else {
286 ret = rdma_copy_addr(addr, dst->dev, neigh->ha);
Sean Heftyd14714d2009-11-19 16:46:25 -0800287 }
Eric Dumazet580da352011-11-29 22:31:23 +0100288 rcu_read_unlock();
Sean Heftyd14714d2009-11-19 16:46:25 -0800289put:
Aleksey Senin38617c62008-12-24 10:16:37 -0800290 dst_release(dst);
291 return ret;
292}
Roland Dreier2c4ab622008-12-29 23:37:14 -0800293#else
Sean Heftyd14714d2009-11-19 16:46:25 -0800294static int addr6_resolve(struct sockaddr_in6 *src_in,
295 struct sockaddr_in6 *dst_in,
296 struct rdma_dev_addr *addr)
Roland Dreier2c4ab622008-12-29 23:37:14 -0800297{
298 return -EADDRNOTAVAIL;
299}
300#endif
Aleksey Senin38617c62008-12-24 10:16:37 -0800301
Sean Hefty923c1002009-11-19 13:26:51 -0800302static int addr_resolve(struct sockaddr *src_in,
303 struct sockaddr *dst_in,
304 struct rdma_dev_addr *addr)
Aleksey Senin38617c62008-12-24 10:16:37 -0800305{
306 if (src_in->sa_family == AF_INET) {
Sean Hefty923c1002009-11-19 13:26:51 -0800307 return addr4_resolve((struct sockaddr_in *) src_in,
Aleksey Senin38617c62008-12-24 10:16:37 -0800308 (struct sockaddr_in *) dst_in, addr);
309 } else
Sean Heftyd14714d2009-11-19 16:46:25 -0800310 return addr6_resolve((struct sockaddr_in6 *) src_in,
Aleksey Senin38617c62008-12-24 10:16:37 -0800311 (struct sockaddr_in6 *) dst_in, addr);
312}
313
David Howellsc4028952006-11-22 14:57:56 +0000314static void process_req(struct work_struct *work)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700315{
316 struct addr_req *req, *temp_req;
Aleksey Senin38617c62008-12-24 10:16:37 -0800317 struct sockaddr *src_in, *dst_in;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700318 struct list_head done_list;
319
320 INIT_LIST_HEAD(&done_list);
321
322 mutex_lock(&lock);
323 list_for_each_entry_safe(req, temp_req, &req_list, list) {
Krishna Kumarc78bb842006-11-24 16:02:34 +0530324 if (req->status == -ENODATA) {
Aleksey Senin38617c62008-12-24 10:16:37 -0800325 src_in = (struct sockaddr *) &req->src_addr;
326 dst_in = (struct sockaddr *) &req->dst_addr;
Sean Hefty923c1002009-11-19 13:26:51 -0800327 req->status = addr_resolve(src_in, dst_in, req->addr);
Krishna Kumarc78bb842006-11-24 16:02:34 +0530328 if (req->status && time_after_eq(jiffies, req->timeout))
329 req->status = -ETIMEDOUT;
330 else if (req->status == -ENODATA)
331 continue;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700332 }
Roland Dreier04699a12006-11-29 15:33:09 -0800333 list_move_tail(&req->list, &done_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700334 }
335
336 if (!list_empty(&req_list)) {
337 req = list_entry(req_list.next, struct addr_req, list);
338 set_timeout(req->timeout);
339 }
340 mutex_unlock(&lock);
341
342 list_for_each_entry_safe(req, temp_req, &done_list, list) {
343 list_del(&req->list);
Aleksey Senin38617c62008-12-24 10:16:37 -0800344 req->callback(req->status, (struct sockaddr *) &req->src_addr,
345 req->addr, req->context);
Sean Hefty7a118df2006-10-31 11:12:59 -0800346 put_client(req->client);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700347 kfree(req);
348 }
349}
350
Sean Hefty7a118df2006-10-31 11:12:59 -0800351int rdma_resolve_ip(struct rdma_addr_client *client,
352 struct sockaddr *src_addr, struct sockaddr *dst_addr,
Sean Hefty7025fcd2006-06-17 20:37:28 -0700353 struct rdma_dev_addr *addr, int timeout_ms,
354 void (*callback)(int status, struct sockaddr *src_addr,
355 struct rdma_dev_addr *addr, void *context),
356 void *context)
357{
Aleksey Senin38617c62008-12-24 10:16:37 -0800358 struct sockaddr *src_in, *dst_in;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700359 struct addr_req *req;
360 int ret = 0;
361
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700362 req = kzalloc(sizeof *req, GFP_KERNEL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700363 if (!req)
364 return -ENOMEM;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700365
Sean Heftyd2e08862009-11-19 12:55:22 -0800366 src_in = (struct sockaddr *) &req->src_addr;
367 dst_in = (struct sockaddr *) &req->dst_addr;
368
369 if (src_addr) {
370 if (src_addr->sa_family != dst_addr->sa_family) {
371 ret = -EINVAL;
372 goto err;
373 }
374
375 memcpy(src_in, src_addr, ip_addr_size(src_addr));
376 } else {
377 src_in->sa_family = dst_addr->sa_family;
378 }
379
380 memcpy(dst_in, dst_addr, ip_addr_size(dst_addr));
Sean Hefty7025fcd2006-06-17 20:37:28 -0700381 req->addr = addr;
382 req->callback = callback;
383 req->context = context;
Sean Hefty7a118df2006-10-31 11:12:59 -0800384 req->client = client;
385 atomic_inc(&client->refcount);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700386
Sean Heftyd14714d2009-11-19 16:46:25 -0800387 req->status = addr_resolve(src_in, dst_in, addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700388 switch (req->status) {
389 case 0:
390 req->timeout = jiffies;
391 queue_req(req);
392 break;
393 case -ENODATA:
394 req->timeout = msecs_to_jiffies(timeout_ms) + jiffies;
395 queue_req(req);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700396 break;
397 default:
398 ret = req->status;
Sean Hefty7a118df2006-10-31 11:12:59 -0800399 atomic_dec(&client->refcount);
Sean Heftyd2e08862009-11-19 12:55:22 -0800400 goto err;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700401 }
402 return ret;
Sean Heftyd2e08862009-11-19 12:55:22 -0800403err:
404 kfree(req);
405 return ret;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700406}
407EXPORT_SYMBOL(rdma_resolve_ip);
408
409void rdma_addr_cancel(struct rdma_dev_addr *addr)
410{
411 struct addr_req *req, *temp_req;
412
413 mutex_lock(&lock);
414 list_for_each_entry_safe(req, temp_req, &req_list, list) {
415 if (req->addr == addr) {
416 req->status = -ECANCELED;
417 req->timeout = jiffies;
Roland Dreier04699a12006-11-29 15:33:09 -0800418 list_move(&req->list, &req_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700419 set_timeout(req->timeout);
420 break;
421 }
422 }
423 mutex_unlock(&lock);
424}
425EXPORT_SYMBOL(rdma_addr_cancel);
426
Roland Dreier3cd96562006-09-22 15:22:46 -0700427static int netevent_callback(struct notifier_block *self, unsigned long event,
Tom Tuckere795d092006-07-30 20:44:19 -0700428 void *ctx)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700429{
Roland Dreier3cd96562006-09-22 15:22:46 -0700430 if (event == NETEVENT_NEIGH_UPDATE) {
Tom Tuckere795d092006-07-30 20:44:19 -0700431 struct neighbour *neigh = ctx;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700432
Steve Wise1f126672007-01-23 19:03:17 -0600433 if (neigh->nud_state & NUD_VALID) {
Tom Tuckere795d092006-07-30 20:44:19 -0700434 set_timeout(jiffies);
435 }
436 }
Sean Hefty7025fcd2006-06-17 20:37:28 -0700437 return 0;
438}
439
Tom Tuckere795d092006-07-30 20:44:19 -0700440static struct notifier_block nb = {
441 .notifier_call = netevent_callback
Sean Hefty7025fcd2006-06-17 20:37:28 -0700442};
443
Peter Huewe716abb12009-06-23 10:38:42 -0700444static int __init addr_init(void)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700445{
Sean Heftyc7f743a2007-02-01 12:23:37 -0800446 addr_wq = create_singlethread_workqueue("ib_addr");
Sean Hefty7025fcd2006-06-17 20:37:28 -0700447 if (!addr_wq)
448 return -ENOMEM;
449
Tom Tuckere795d092006-07-30 20:44:19 -0700450 register_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700451 return 0;
452}
453
Peter Huewe716abb12009-06-23 10:38:42 -0700454static void __exit addr_cleanup(void)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700455{
Tom Tuckere795d092006-07-30 20:44:19 -0700456 unregister_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700457 destroy_workqueue(addr_wq);
458}
459
460module_init(addr_init);
461module_exit(addr_cleanup);