blob: a58ad8a470f98219f9286a12ed8bd9195dbae1bf [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 *
7 * This Software is licensed under one of the following licenses:
8 *
9 * 1) under the terms of the "Common Public License 1.0" a copy of which is
10 * available from the Open Source Initiative, see
11 * http://www.opensource.org/licenses/cpl.php.
12 *
13 * 2) under the terms of the "The BSD License" a copy of which is
14 * available from the Open Source Initiative, see
15 * http://www.opensource.org/licenses/bsd-license.php.
16 *
17 * 3) under the terms of the "GNU General Public License (GPL) Version 2" a
18 * copy of which is available from the Open Source Initiative, see
19 * http://www.opensource.org/licenses/gpl-license.php.
20 *
21 * Licensee has the right to choose one of the above licenses.
22 *
23 * Redistributions of source code must retain the above copyright
24 * notice and one of the license notices.
25 *
26 * Redistributions in binary form must reproduce both the above copyright
27 * notice, one of the license notices in the documentation
28 * and/or other materials provided with the distribution.
29 */
30
31#include <linux/mutex.h>
32#include <linux/inetdevice.h>
33#include <linux/workqueue.h>
34#include <linux/if_arp.h>
35#include <net/arp.h>
36#include <net/neighbour.h>
37#include <net/route.h>
Tom Tuckere795d092006-07-30 20:44:19 -070038#include <net/netevent.h>
Sean Hefty7025fcd2006-06-17 20:37:28 -070039#include <rdma/ib_addr.h>
40
41MODULE_AUTHOR("Sean Hefty");
42MODULE_DESCRIPTION("IB Address Translation");
43MODULE_LICENSE("Dual BSD/GPL");
44
45struct addr_req {
46 struct list_head list;
47 struct sockaddr src_addr;
48 struct sockaddr dst_addr;
49 struct rdma_dev_addr *addr;
Sean Hefty7a118df2006-10-31 11:12:59 -080050 struct rdma_addr_client *client;
Sean Hefty7025fcd2006-06-17 20:37:28 -070051 void *context;
52 void (*callback)(int status, struct sockaddr *src_addr,
53 struct rdma_dev_addr *addr, void *context);
54 unsigned long timeout;
55 int status;
56};
57
David Howellsc4028952006-11-22 14:57:56 +000058static void process_req(struct work_struct *work);
Sean Hefty7025fcd2006-06-17 20:37:28 -070059
60static DEFINE_MUTEX(lock);
61static LIST_HEAD(req_list);
David Howellsc4028952006-11-22 14:57:56 +000062static DECLARE_DELAYED_WORK(work, process_req);
Sean Hefty7025fcd2006-06-17 20:37:28 -070063static struct workqueue_struct *addr_wq;
64
Sean Hefty7a118df2006-10-31 11:12:59 -080065void rdma_addr_register_client(struct rdma_addr_client *client)
66{
67 atomic_set(&client->refcount, 1);
68 init_completion(&client->comp);
69}
70EXPORT_SYMBOL(rdma_addr_register_client);
71
72static inline void put_client(struct rdma_addr_client *client)
73{
74 if (atomic_dec_and_test(&client->refcount))
75 complete(&client->comp);
76}
77
78void rdma_addr_unregister_client(struct rdma_addr_client *client)
79{
80 put_client(client);
81 wait_for_completion(&client->comp);
82}
83EXPORT_SYMBOL(rdma_addr_unregister_client);
84
Tom Tucker07ebafb2006-08-03 16:02:42 -050085int rdma_copy_addr(struct rdma_dev_addr *dev_addr, struct net_device *dev,
86 const unsigned char *dst_dev_addr)
Sean Hefty7025fcd2006-06-17 20:37:28 -070087{
88 switch (dev->type) {
89 case ARPHRD_INFINIBAND:
Tom Tucker07ebafb2006-08-03 16:02:42 -050090 dev_addr->dev_type = RDMA_NODE_IB_CA;
91 break;
92 case ARPHRD_ETHER:
93 dev_addr->dev_type = RDMA_NODE_RNIC;
Sean Hefty7025fcd2006-06-17 20:37:28 -070094 break;
95 default:
96 return -EADDRNOTAVAIL;
97 }
98
99 memcpy(dev_addr->src_dev_addr, dev->dev_addr, MAX_ADDR_LEN);
100 memcpy(dev_addr->broadcast, dev->broadcast, MAX_ADDR_LEN);
101 if (dst_dev_addr)
102 memcpy(dev_addr->dst_dev_addr, dst_dev_addr, MAX_ADDR_LEN);
103 return 0;
104}
Tom Tucker07ebafb2006-08-03 16:02:42 -0500105EXPORT_SYMBOL(rdma_copy_addr);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700106
107int rdma_translate_ip(struct sockaddr *addr, struct rdma_dev_addr *dev_addr)
108{
109 struct net_device *dev;
Al Viro60cad5d2006-09-26 22:17:09 -0700110 __be32 ip = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700111 int ret;
112
Denis V. Lunev1ab35272008-01-22 22:04:30 -0800113 dev = ip_dev_find(&init_net, ip);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700114 if (!dev)
115 return -EADDRNOTAVAIL;
116
Tom Tucker07ebafb2006-08-03 16:02:42 -0500117 ret = rdma_copy_addr(dev_addr, dev, NULL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700118 dev_put(dev);
119 return ret;
120}
121EXPORT_SYMBOL(rdma_translate_ip);
122
123static void set_timeout(unsigned long time)
124{
125 unsigned long delay;
126
127 cancel_delayed_work(&work);
128
129 delay = time - jiffies;
130 if ((long)delay <= 0)
131 delay = 1;
132
133 queue_delayed_work(addr_wq, &work, delay);
134}
135
136static void queue_req(struct addr_req *req)
137{
138 struct addr_req *temp_req;
139
140 mutex_lock(&lock);
141 list_for_each_entry_reverse(temp_req, &req_list, list) {
Krishna Kumarf115db42006-10-17 10:09:09 +0530142 if (time_after_eq(req->timeout, temp_req->timeout))
Sean Hefty7025fcd2006-06-17 20:37:28 -0700143 break;
144 }
145
146 list_add(&req->list, &temp_req->list);
147
148 if (req_list.next == &req->list)
149 set_timeout(req->timeout);
150 mutex_unlock(&lock);
151}
152
153static void addr_send_arp(struct sockaddr_in *dst_in)
154{
155 struct rtable *rt;
156 struct flowi fl;
157 u32 dst_ip = dst_in->sin_addr.s_addr;
158
159 memset(&fl, 0, sizeof fl);
160 fl.nl_u.ip4_u.daddr = dst_ip;
Denis V. Lunevf2063512008-01-22 22:07:34 -0800161 if (ip_route_output_key(&init_net, &rt, &fl))
Sean Hefty7025fcd2006-06-17 20:37:28 -0700162 return;
163
Steve Wise935ef2d2007-09-12 05:00:25 -0500164 neigh_event_send(rt->u.dst.neighbour, NULL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700165 ip_rt_put(rt);
166}
167
168static int addr_resolve_remote(struct sockaddr_in *src_in,
169 struct sockaddr_in *dst_in,
170 struct rdma_dev_addr *addr)
171{
172 u32 src_ip = src_in->sin_addr.s_addr;
173 u32 dst_ip = dst_in->sin_addr.s_addr;
174 struct flowi fl;
175 struct rtable *rt;
176 struct neighbour *neigh;
177 int ret;
178
179 memset(&fl, 0, sizeof fl);
180 fl.nl_u.ip4_u.daddr = dst_ip;
181 fl.nl_u.ip4_u.saddr = src_ip;
Denis V. Lunevf2063512008-01-22 22:07:34 -0800182 ret = ip_route_output_key(&init_net, &rt, &fl);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700183 if (ret)
184 goto out;
185
186 /* If the device does ARP internally, return 'done' */
187 if (rt->idev->dev->flags & IFF_NOARP) {
Tom Tucker07ebafb2006-08-03 16:02:42 -0500188 rdma_copy_addr(addr, rt->idev->dev, NULL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700189 goto put;
190 }
191
192 neigh = neigh_lookup(&arp_tbl, &rt->rt_gateway, rt->idev->dev);
193 if (!neigh) {
194 ret = -ENODATA;
195 goto put;
196 }
197
198 if (!(neigh->nud_state & NUD_VALID)) {
199 ret = -ENODATA;
200 goto release;
201 }
202
203 if (!src_ip) {
204 src_in->sin_family = dst_in->sin_family;
205 src_in->sin_addr.s_addr = rt->rt_src;
206 }
207
Tom Tucker07ebafb2006-08-03 16:02:42 -0500208 ret = rdma_copy_addr(addr, neigh->dev, neigh->ha);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700209release:
210 neigh_release(neigh);
211put:
212 ip_rt_put(rt);
213out:
214 return ret;
215}
216
David Howellsc4028952006-11-22 14:57:56 +0000217static void process_req(struct work_struct *work)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700218{
219 struct addr_req *req, *temp_req;
220 struct sockaddr_in *src_in, *dst_in;
221 struct list_head done_list;
222
223 INIT_LIST_HEAD(&done_list);
224
225 mutex_lock(&lock);
226 list_for_each_entry_safe(req, temp_req, &req_list, list) {
Krishna Kumarc78bb842006-11-24 16:02:34 +0530227 if (req->status == -ENODATA) {
Sean Hefty7025fcd2006-06-17 20:37:28 -0700228 src_in = (struct sockaddr_in *) &req->src_addr;
229 dst_in = (struct sockaddr_in *) &req->dst_addr;
230 req->status = addr_resolve_remote(src_in, dst_in,
231 req->addr);
Krishna Kumarc78bb842006-11-24 16:02:34 +0530232 if (req->status && time_after_eq(jiffies, req->timeout))
233 req->status = -ETIMEDOUT;
234 else if (req->status == -ENODATA)
235 continue;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700236 }
Roland Dreier04699a12006-11-29 15:33:09 -0800237 list_move_tail(&req->list, &done_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700238 }
239
240 if (!list_empty(&req_list)) {
241 req = list_entry(req_list.next, struct addr_req, list);
242 set_timeout(req->timeout);
243 }
244 mutex_unlock(&lock);
245
246 list_for_each_entry_safe(req, temp_req, &done_list, list) {
247 list_del(&req->list);
248 req->callback(req->status, &req->src_addr, req->addr,
249 req->context);
Sean Hefty7a118df2006-10-31 11:12:59 -0800250 put_client(req->client);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700251 kfree(req);
252 }
253}
254
255static int addr_resolve_local(struct sockaddr_in *src_in,
256 struct sockaddr_in *dst_in,
257 struct rdma_dev_addr *addr)
258{
259 struct net_device *dev;
260 u32 src_ip = src_in->sin_addr.s_addr;
Al Viro60cad5d2006-09-26 22:17:09 -0700261 __be32 dst_ip = dst_in->sin_addr.s_addr;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700262 int ret;
263
Denis V. Lunev1ab35272008-01-22 22:04:30 -0800264 dev = ip_dev_find(&init_net, dst_ip);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700265 if (!dev)
266 return -EADDRNOTAVAIL;
267
Joe Perches6360a022007-12-16 13:47:33 -0800268 if (ipv4_is_zeronet(src_ip)) {
Sean Hefty7025fcd2006-06-17 20:37:28 -0700269 src_in->sin_family = dst_in->sin_family;
270 src_in->sin_addr.s_addr = dst_ip;
Tom Tucker07ebafb2006-08-03 16:02:42 -0500271 ret = rdma_copy_addr(addr, dev, dev->dev_addr);
Joe Perches6360a022007-12-16 13:47:33 -0800272 } else if (ipv4_is_loopback(src_ip)) {
Sean Hefty7025fcd2006-06-17 20:37:28 -0700273 ret = rdma_translate_ip((struct sockaddr *)dst_in, addr);
274 if (!ret)
275 memcpy(addr->dst_dev_addr, dev->dev_addr, MAX_ADDR_LEN);
276 } else {
277 ret = rdma_translate_ip((struct sockaddr *)src_in, addr);
278 if (!ret)
279 memcpy(addr->dst_dev_addr, dev->dev_addr, MAX_ADDR_LEN);
280 }
281
282 dev_put(dev);
283 return ret;
284}
285
Sean Hefty7a118df2006-10-31 11:12:59 -0800286int rdma_resolve_ip(struct rdma_addr_client *client,
287 struct sockaddr *src_addr, struct sockaddr *dst_addr,
Sean Hefty7025fcd2006-06-17 20:37:28 -0700288 struct rdma_dev_addr *addr, int timeout_ms,
289 void (*callback)(int status, struct sockaddr *src_addr,
290 struct rdma_dev_addr *addr, void *context),
291 void *context)
292{
293 struct sockaddr_in *src_in, *dst_in;
294 struct addr_req *req;
295 int ret = 0;
296
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700297 req = kzalloc(sizeof *req, GFP_KERNEL);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700298 if (!req)
299 return -ENOMEM;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700300
301 if (src_addr)
302 memcpy(&req->src_addr, src_addr, ip_addr_size(src_addr));
303 memcpy(&req->dst_addr, dst_addr, ip_addr_size(dst_addr));
304 req->addr = addr;
305 req->callback = callback;
306 req->context = context;
Sean Hefty7a118df2006-10-31 11:12:59 -0800307 req->client = client;
308 atomic_inc(&client->refcount);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700309
310 src_in = (struct sockaddr_in *) &req->src_addr;
311 dst_in = (struct sockaddr_in *) &req->dst_addr;
312
313 req->status = addr_resolve_local(src_in, dst_in, addr);
314 if (req->status == -EADDRNOTAVAIL)
315 req->status = addr_resolve_remote(src_in, dst_in, addr);
316
317 switch (req->status) {
318 case 0:
319 req->timeout = jiffies;
320 queue_req(req);
321 break;
322 case -ENODATA:
323 req->timeout = msecs_to_jiffies(timeout_ms) + jiffies;
324 queue_req(req);
325 addr_send_arp(dst_in);
326 break;
327 default:
328 ret = req->status;
Sean Hefty7a118df2006-10-31 11:12:59 -0800329 atomic_dec(&client->refcount);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700330 kfree(req);
331 break;
332 }
333 return ret;
334}
335EXPORT_SYMBOL(rdma_resolve_ip);
336
337void rdma_addr_cancel(struct rdma_dev_addr *addr)
338{
339 struct addr_req *req, *temp_req;
340
341 mutex_lock(&lock);
342 list_for_each_entry_safe(req, temp_req, &req_list, list) {
343 if (req->addr == addr) {
344 req->status = -ECANCELED;
345 req->timeout = jiffies;
Roland Dreier04699a12006-11-29 15:33:09 -0800346 list_move(&req->list, &req_list);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700347 set_timeout(req->timeout);
348 break;
349 }
350 }
351 mutex_unlock(&lock);
352}
353EXPORT_SYMBOL(rdma_addr_cancel);
354
Roland Dreier3cd96562006-09-22 15:22:46 -0700355static int netevent_callback(struct notifier_block *self, unsigned long event,
Tom Tuckere795d092006-07-30 20:44:19 -0700356 void *ctx)
Sean Hefty7025fcd2006-06-17 20:37:28 -0700357{
Roland Dreier3cd96562006-09-22 15:22:46 -0700358 if (event == NETEVENT_NEIGH_UPDATE) {
Tom Tuckere795d092006-07-30 20:44:19 -0700359 struct neighbour *neigh = ctx;
Sean Hefty7025fcd2006-06-17 20:37:28 -0700360
Steve Wise1f126672007-01-23 19:03:17 -0600361 if (neigh->nud_state & NUD_VALID) {
Tom Tuckere795d092006-07-30 20:44:19 -0700362 set_timeout(jiffies);
363 }
364 }
Sean Hefty7025fcd2006-06-17 20:37:28 -0700365 return 0;
366}
367
Tom Tuckere795d092006-07-30 20:44:19 -0700368static struct notifier_block nb = {
369 .notifier_call = netevent_callback
Sean Hefty7025fcd2006-06-17 20:37:28 -0700370};
371
372static int addr_init(void)
373{
Sean Heftyc7f743a2007-02-01 12:23:37 -0800374 addr_wq = create_singlethread_workqueue("ib_addr");
Sean Hefty7025fcd2006-06-17 20:37:28 -0700375 if (!addr_wq)
376 return -ENOMEM;
377
Tom Tuckere795d092006-07-30 20:44:19 -0700378 register_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700379 return 0;
380}
381
382static void addr_cleanup(void)
383{
Tom Tuckere795d092006-07-30 20:44:19 -0700384 unregister_netevent_notifier(&nb);
Sean Hefty7025fcd2006-06-17 20:37:28 -0700385 destroy_workqueue(addr_wq);
386}
387
388module_init(addr_init);
389module_exit(addr_cleanup);