1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36#include <linux/module.h>
37#include <linux/string.h>
38#include <linux/errno.h>
39#include <linux/kernel.h>
40#include <linux/slab.h>
41#include <linux/init.h>
42#include <linux/mutex.h>
43#include <linux/workqueue.h>
44
45#include "core_priv.h"
46
47MODULE_AUTHOR("Roland Dreier");
48MODULE_DESCRIPTION("core kernel InfiniBand API");
49MODULE_LICENSE("Dual BSD/GPL");
50
51struct ib_client_data {
52 struct list_head list;
53 struct ib_client *client;
54 void * data;
55};
56
57static LIST_HEAD(device_list);
58static LIST_HEAD(client_list);
59
60
61
62
63
64
65
66
67static DEFINE_MUTEX(device_mutex);
68
69static int ib_device_check_mandatory(struct ib_device *device)
70{
71#define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
72 static const struct {
73 size_t offset;
74 char *name;
75 } mandatory_table[] = {
76 IB_MANDATORY_FUNC(query_device),
77 IB_MANDATORY_FUNC(query_port),
78 IB_MANDATORY_FUNC(query_pkey),
79 IB_MANDATORY_FUNC(query_gid),
80 IB_MANDATORY_FUNC(alloc_pd),
81 IB_MANDATORY_FUNC(dealloc_pd),
82 IB_MANDATORY_FUNC(create_ah),
83 IB_MANDATORY_FUNC(destroy_ah),
84 IB_MANDATORY_FUNC(create_qp),
85 IB_MANDATORY_FUNC(modify_qp),
86 IB_MANDATORY_FUNC(destroy_qp),
87 IB_MANDATORY_FUNC(post_send),
88 IB_MANDATORY_FUNC(post_recv),
89 IB_MANDATORY_FUNC(create_cq),
90 IB_MANDATORY_FUNC(destroy_cq),
91 IB_MANDATORY_FUNC(poll_cq),
92 IB_MANDATORY_FUNC(req_notify_cq),
93 IB_MANDATORY_FUNC(get_dma_mr),
94 IB_MANDATORY_FUNC(dereg_mr)
95 };
96 int i;
97
98 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
99 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
100 printk(KERN_WARNING "Device %s is missing mandatory function %s\n",
101 device->name, mandatory_table[i].name);
102 return -EINVAL;
103 }
104 }
105
106 return 0;
107}
108
109static struct ib_device *__ib_device_get_by_name(const char *name)
110{
111 struct ib_device *device;
112
113 list_for_each_entry(device, &device_list, core_list)
114 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
115 return device;
116
117 return NULL;
118}
119
120
121static int alloc_name(char *name)
122{
123 unsigned long *inuse;
124 char buf[IB_DEVICE_NAME_MAX];
125 struct ib_device *device;
126 int i;
127
128 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
129 if (!inuse)
130 return -ENOMEM;
131
132 list_for_each_entry(device, &device_list, core_list) {
133 if (!sscanf(device->name, name, &i))
134 continue;
135 if (i < 0 || i >= PAGE_SIZE * 8)
136 continue;
137 snprintf(buf, sizeof buf, name, i);
138 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
139 set_bit(i, inuse);
140 }
141
142 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
143 free_page((unsigned long) inuse);
144 snprintf(buf, sizeof buf, name, i);
145
146 if (__ib_device_get_by_name(buf))
147 return -ENFILE;
148
149 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
150 return 0;
151}
152
153static int start_port(struct ib_device *device)
154{
155 return (device->node_type == RDMA_NODE_IB_SWITCH) ? 0 : 1;
156}
157
158
159static int end_port(struct ib_device *device)
160{
161 return (device->node_type == RDMA_NODE_IB_SWITCH) ?
162 0 : device->phys_port_cnt;
163}
164
165
166
167
168
169
170
171
172
173
174
175struct ib_device *ib_alloc_device(size_t size)
176{
177 BUG_ON(size < sizeof (struct ib_device));
178
179 return kzalloc(size, GFP_KERNEL);
180}
181EXPORT_SYMBOL(ib_alloc_device);
182
183
184
185
186
187
188
189void ib_dealloc_device(struct ib_device *device)
190{
191 if (device->reg_state == IB_DEV_UNINITIALIZED) {
192 kfree(device);
193 return;
194 }
195
196 BUG_ON(device->reg_state != IB_DEV_UNREGISTERED);
197
198 ib_device_unregister_sysfs(device);
199}
200EXPORT_SYMBOL(ib_dealloc_device);
201
202static int add_client_context(struct ib_device *device, struct ib_client *client)
203{
204 struct ib_client_data *context;
205 unsigned long flags;
206
207 context = kmalloc(sizeof *context, GFP_KERNEL);
208 if (!context) {
209 printk(KERN_WARNING "Couldn't allocate client context for %s/%s\n",
210 device->name, client->name);
211 return -ENOMEM;
212 }
213
214 context->client = client;
215 context->data = NULL;
216
217 spin_lock_irqsave(&device->client_data_lock, flags);
218 list_add(&context->list, &device->client_data_list);
219 spin_unlock_irqrestore(&device->client_data_lock, flags);
220
221 return 0;
222}
223
224static int read_port_table_lengths(struct ib_device *device)
225{
226 struct ib_port_attr *tprops = NULL;
227 int num_ports, ret = -ENOMEM;
228 u8 port_index;
229
230 tprops = kmalloc(sizeof *tprops, GFP_KERNEL);
231 if (!tprops)
232 goto out;
233
234 num_ports = end_port(device) - start_port(device) + 1;
235
236 device->pkey_tbl_len = kmalloc(sizeof *device->pkey_tbl_len * num_ports,
237 GFP_KERNEL);
238 device->gid_tbl_len = kmalloc(sizeof *device->gid_tbl_len * num_ports,
239 GFP_KERNEL);
240 if (!device->pkey_tbl_len || !device->gid_tbl_len)
241 goto err;
242
243 for (port_index = 0; port_index < num_ports; ++port_index) {
244 ret = ib_query_port(device, port_index + start_port(device),
245 tprops);
246 if (ret)
247 goto err;
248 device->pkey_tbl_len[port_index] = tprops->pkey_tbl_len;
249 device->gid_tbl_len[port_index] = tprops->gid_tbl_len;
250 }
251
252 ret = 0;
253 goto out;
254
255err:
256 kfree(device->gid_tbl_len);
257 kfree(device->pkey_tbl_len);
258out:
259 kfree(tprops);
260 return ret;
261}
262
263
264
265
266
267
268
269
270
271
272int ib_register_device(struct ib_device *device)
273{
274 int ret;
275
276 mutex_lock(&device_mutex);
277
278 if (strchr(device->name, '%')) {
279 ret = alloc_name(device->name);
280 if (ret)
281 goto out;
282 }
283
284 if (ib_device_check_mandatory(device)) {
285 ret = -EINVAL;
286 goto out;
287 }
288
289 INIT_LIST_HEAD(&device->event_handler_list);
290 INIT_LIST_HEAD(&device->client_data_list);
291 spin_lock_init(&device->event_handler_lock);
292 spin_lock_init(&device->client_data_lock);
293
294 ret = read_port_table_lengths(device);
295 if (ret) {
296 printk(KERN_WARNING "Couldn't create table lengths cache for device %s\n",
297 device->name);
298 goto out;
299 }
300
301 ret = ib_device_register_sysfs(device);
302 if (ret) {
303 printk(KERN_WARNING "Couldn't register device %s with driver model\n",
304 device->name);
305 kfree(device->gid_tbl_len);
306 kfree(device->pkey_tbl_len);
307 goto out;
308 }
309
310 list_add_tail(&device->core_list, &device_list);
311
312 device->reg_state = IB_DEV_REGISTERED;
313
314 {
315 struct ib_client *client;
316
317 list_for_each_entry(client, &client_list, list)
318 if (client->add && !add_client_context(device, client))
319 client->add(device);
320 }
321
322 out:
323 mutex_unlock(&device_mutex);
324 return ret;
325}
326EXPORT_SYMBOL(ib_register_device);
327
328
329
330
331
332
333
334void ib_unregister_device(struct ib_device *device)
335{
336 struct ib_client *client;
337 struct ib_client_data *context, *tmp;
338 unsigned long flags;
339
340 mutex_lock(&device_mutex);
341
342 list_for_each_entry_reverse(client, &client_list, list)
343 if (client->remove)
344 client->remove(device);
345
346 list_del(&device->core_list);
347
348 kfree(device->gid_tbl_len);
349 kfree(device->pkey_tbl_len);
350
351 mutex_unlock(&device_mutex);
352
353 spin_lock_irqsave(&device->client_data_lock, flags);
354 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
355 kfree(context);
356 spin_unlock_irqrestore(&device->client_data_lock, flags);
357
358 device->reg_state = IB_DEV_UNREGISTERED;
359}
360EXPORT_SYMBOL(ib_unregister_device);
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375int ib_register_client(struct ib_client *client)
376{
377 struct ib_device *device;
378
379 mutex_lock(&device_mutex);
380
381 list_add_tail(&client->list, &client_list);
382 list_for_each_entry(device, &device_list, core_list)
383 if (client->add && !add_client_context(device, client))
384 client->add(device);
385
386 mutex_unlock(&device_mutex);
387
388 return 0;
389}
390EXPORT_SYMBOL(ib_register_client);
391
392
393
394
395
396
397
398
399
400void ib_unregister_client(struct ib_client *client)
401{
402 struct ib_client_data *context, *tmp;
403 struct ib_device *device;
404 unsigned long flags;
405
406 mutex_lock(&device_mutex);
407
408 list_for_each_entry(device, &device_list, core_list) {
409 if (client->remove)
410 client->remove(device);
411
412 spin_lock_irqsave(&device->client_data_lock, flags);
413 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
414 if (context->client == client) {
415 list_del(&context->list);
416 kfree(context);
417 }
418 spin_unlock_irqrestore(&device->client_data_lock, flags);
419 }
420 list_del(&client->list);
421
422 mutex_unlock(&device_mutex);
423}
424EXPORT_SYMBOL(ib_unregister_client);
425
426
427
428
429
430
431
432
433
434void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
435{
436 struct ib_client_data *context;
437 void *ret = NULL;
438 unsigned long flags;
439
440 spin_lock_irqsave(&device->client_data_lock, flags);
441 list_for_each_entry(context, &device->client_data_list, list)
442 if (context->client == client) {
443 ret = context->data;
444 break;
445 }
446 spin_unlock_irqrestore(&device->client_data_lock, flags);
447
448 return ret;
449}
450EXPORT_SYMBOL(ib_get_client_data);
451
452
453
454
455
456
457
458
459
460
461void ib_set_client_data(struct ib_device *device, struct ib_client *client,
462 void *data)
463{
464 struct ib_client_data *context;
465 unsigned long flags;
466
467 spin_lock_irqsave(&device->client_data_lock, flags);
468 list_for_each_entry(context, &device->client_data_list, list)
469 if (context->client == client) {
470 context->data = data;
471 goto out;
472 }
473
474 printk(KERN_WARNING "No client context found for %s/%s\n",
475 device->name, client->name);
476
477out:
478 spin_unlock_irqrestore(&device->client_data_lock, flags);
479}
480EXPORT_SYMBOL(ib_set_client_data);
481
482
483
484
485
486
487
488
489
490
491int ib_register_event_handler (struct ib_event_handler *event_handler)
492{
493 unsigned long flags;
494
495 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
496 list_add_tail(&event_handler->list,
497 &event_handler->device->event_handler_list);
498 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
499
500 return 0;
501}
502EXPORT_SYMBOL(ib_register_event_handler);
503
504
505
506
507
508
509
510
511int ib_unregister_event_handler(struct ib_event_handler *event_handler)
512{
513 unsigned long flags;
514
515 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
516 list_del(&event_handler->list);
517 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
518
519 return 0;
520}
521EXPORT_SYMBOL(ib_unregister_event_handler);
522
523
524
525
526
527
528
529
530
531void ib_dispatch_event(struct ib_event *event)
532{
533 unsigned long flags;
534 struct ib_event_handler *handler;
535
536 spin_lock_irqsave(&event->device->event_handler_lock, flags);
537
538 list_for_each_entry(handler, &event->device->event_handler_list, list)
539 handler->handler(handler, event);
540
541 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
542}
543EXPORT_SYMBOL(ib_dispatch_event);
544
545
546
547
548
549
550
551
552
553int ib_query_device(struct ib_device *device,
554 struct ib_device_attr *device_attr)
555{
556 return device->query_device(device, device_attr);
557}
558EXPORT_SYMBOL(ib_query_device);
559
560
561
562
563
564
565
566
567
568
569int ib_query_port(struct ib_device *device,
570 u8 port_num,
571 struct ib_port_attr *port_attr)
572{
573 if (port_num < start_port(device) || port_num > end_port(device))
574 return -EINVAL;
575
576 return device->query_port(device, port_num, port_attr);
577}
578EXPORT_SYMBOL(ib_query_port);
579
580
581
582
583
584
585
586
587
588
589int ib_query_gid(struct ib_device *device,
590 u8 port_num, int index, union ib_gid *gid)
591{
592 return device->query_gid(device, port_num, index, gid);
593}
594EXPORT_SYMBOL(ib_query_gid);
595
596
597
598
599
600
601
602
603
604
605int ib_query_pkey(struct ib_device *device,
606 u8 port_num, u16 index, u16 *pkey)
607{
608 return device->query_pkey(device, port_num, index, pkey);
609}
610EXPORT_SYMBOL(ib_query_pkey);
611
612
613
614
615
616
617
618
619
620
621int ib_modify_device(struct ib_device *device,
622 int device_modify_mask,
623 struct ib_device_modify *device_modify)
624{
625 return device->modify_device(device, device_modify_mask,
626 device_modify);
627}
628EXPORT_SYMBOL(ib_modify_device);
629
630
631
632
633
634
635
636
637
638
639
640
641int ib_modify_port(struct ib_device *device,
642 u8 port_num, int port_modify_mask,
643 struct ib_port_modify *port_modify)
644{
645 if (port_num < start_port(device) || port_num > end_port(device))
646 return -EINVAL;
647
648 return device->modify_port(device, port_num, port_modify_mask,
649 port_modify);
650}
651EXPORT_SYMBOL(ib_modify_port);
652
653
654
655
656
657
658
659
660
661
662int ib_find_gid(struct ib_device *device, union ib_gid *gid,
663 u8 *port_num, u16 *index)
664{
665 union ib_gid tmp_gid;
666 int ret, port, i;
667
668 for (port = start_port(device); port <= end_port(device); ++port) {
669 for (i = 0; i < device->gid_tbl_len[port - start_port(device)]; ++i) {
670 ret = ib_query_gid(device, port, i, &tmp_gid);
671 if (ret)
672 return ret;
673 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
674 *port_num = port;
675 if (index)
676 *index = i;
677 return 0;
678 }
679 }
680 }
681
682 return -ENOENT;
683}
684EXPORT_SYMBOL(ib_find_gid);
685
686
687
688
689
690
691
692
693
694int ib_find_pkey(struct ib_device *device,
695 u8 port_num, u16 pkey, u16 *index)
696{
697 int ret, i;
698 u16 tmp_pkey;
699
700 for (i = 0; i < device->pkey_tbl_len[port_num - start_port(device)]; ++i) {
701 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
702 if (ret)
703 return ret;
704
705 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
706 *index = i;
707 return 0;
708 }
709 }
710
711 return -ENOENT;
712}
713EXPORT_SYMBOL(ib_find_pkey);
714
715static int __init ib_core_init(void)
716{
717 int ret;
718
719 ret = ib_sysfs_setup();
720 if (ret)
721 printk(KERN_WARNING "Couldn't create InfiniBand device class\n");
722
723 ret = ib_cache_setup();
724 if (ret) {
725 printk(KERN_WARNING "Couldn't set up InfiniBand P_Key/GID cache\n");
726 ib_sysfs_cleanup();
727 }
728
729 return ret;
730}
731
732static void __exit ib_core_cleanup(void)
733{
734 ib_cache_cleanup();
735 ib_sysfs_cleanup();
736
737 flush_scheduled_work();
738}
739
740module_init(ib_core_init);
741module_exit(ib_core_cleanup);
742