-
Notifications
You must be signed in to change notification settings - Fork 720
/
Copy pathverbs.c
1128 lines (951 loc) · 26.9 KB
/
verbs.c
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2005 Topspin Communications. All rights reserved.
* Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2020 Intel Corperation. All rights reserved.
*
* 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:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - 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.
*
* 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.
*/
#define _GNU_SOURCE
#include <config.h>
#include <endian.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <linux/ip.h>
#include <dirent.h>
#include <netinet/in.h>
#include <util/compiler.h>
#include <util/symver.h>
#include <infiniband/cmd_write.h>
#include "ibverbs.h"
#include <net/if.h>
#include <net/if_arp.h>
#include "neigh.h"
#undef ibv_query_port
int __attribute__((const)) ibv_rate_to_mult(enum ibv_rate rate)
{
switch (rate) {
case IBV_RATE_2_5_GBPS: return 1;
case IBV_RATE_5_GBPS: return 2;
case IBV_RATE_10_GBPS: return 4;
case IBV_RATE_20_GBPS: return 8;
case IBV_RATE_30_GBPS: return 12;
case IBV_RATE_40_GBPS: return 16;
case IBV_RATE_60_GBPS: return 24;
case IBV_RATE_80_GBPS: return 32;
case IBV_RATE_120_GBPS: return 48;
case IBV_RATE_28_GBPS: return 11;
case IBV_RATE_50_GBPS: return 20;
case IBV_RATE_400_GBPS: return 160;
case IBV_RATE_600_GBPS: return 240;
case IBV_RATE_800_GBPS: return 320;
case IBV_RATE_1200_GBPS: return 480;
default: return -1;
}
}
enum ibv_rate __attribute__((const)) mult_to_ibv_rate(int mult)
{
switch (mult) {
case 1: return IBV_RATE_2_5_GBPS;
case 2: return IBV_RATE_5_GBPS;
case 4: return IBV_RATE_10_GBPS;
case 8: return IBV_RATE_20_GBPS;
case 12: return IBV_RATE_30_GBPS;
case 16: return IBV_RATE_40_GBPS;
case 24: return IBV_RATE_60_GBPS;
case 32: return IBV_RATE_80_GBPS;
case 48: return IBV_RATE_120_GBPS;
case 11: return IBV_RATE_28_GBPS;
case 20: return IBV_RATE_50_GBPS;
case 160: return IBV_RATE_400_GBPS;
case 240: return IBV_RATE_600_GBPS;
case 320: return IBV_RATE_800_GBPS;
case 480: return IBV_RATE_1200_GBPS;
default: return IBV_RATE_MAX;
}
}
int __attribute__((const)) ibv_rate_to_mbps(enum ibv_rate rate)
{
switch (rate) {
case IBV_RATE_2_5_GBPS: return 2500;
case IBV_RATE_5_GBPS: return 5000;
case IBV_RATE_10_GBPS: return 10000;
case IBV_RATE_20_GBPS: return 20000;
case IBV_RATE_30_GBPS: return 30000;
case IBV_RATE_40_GBPS: return 40000;
case IBV_RATE_60_GBPS: return 60000;
case IBV_RATE_80_GBPS: return 80000;
case IBV_RATE_120_GBPS: return 120000;
case IBV_RATE_14_GBPS: return 14062;
case IBV_RATE_56_GBPS: return 56250;
case IBV_RATE_112_GBPS: return 112500;
case IBV_RATE_168_GBPS: return 168750;
case IBV_RATE_25_GBPS: return 25781;
case IBV_RATE_100_GBPS: return 103125;
case IBV_RATE_200_GBPS: return 206250;
case IBV_RATE_300_GBPS: return 309375;
case IBV_RATE_28_GBPS: return 28125;
case IBV_RATE_50_GBPS: return 53125;
case IBV_RATE_400_GBPS: return 425000;
case IBV_RATE_600_GBPS: return 637500;
case IBV_RATE_800_GBPS: return 850000;
case IBV_RATE_1200_GBPS: return 1275000;
default: return -1;
}
}
enum ibv_rate __attribute__((const)) mbps_to_ibv_rate(int mbps)
{
switch (mbps) {
case 2500: return IBV_RATE_2_5_GBPS;
case 5000: return IBV_RATE_5_GBPS;
case 10000: return IBV_RATE_10_GBPS;
case 20000: return IBV_RATE_20_GBPS;
case 30000: return IBV_RATE_30_GBPS;
case 40000: return IBV_RATE_40_GBPS;
case 60000: return IBV_RATE_60_GBPS;
case 80000: return IBV_RATE_80_GBPS;
case 120000: return IBV_RATE_120_GBPS;
case 14062: return IBV_RATE_14_GBPS;
case 56250: return IBV_RATE_56_GBPS;
case 112500: return IBV_RATE_112_GBPS;
case 168750: return IBV_RATE_168_GBPS;
case 25781: return IBV_RATE_25_GBPS;
case 103125: return IBV_RATE_100_GBPS;
case 206250: return IBV_RATE_200_GBPS;
case 309375: return IBV_RATE_300_GBPS;
case 28125: return IBV_RATE_28_GBPS;
case 53125: return IBV_RATE_50_GBPS;
case 425000: return IBV_RATE_400_GBPS;
case 637500: return IBV_RATE_600_GBPS;
case 850000: return IBV_RATE_800_GBPS;
case 1275000: return IBV_RATE_1200_GBPS;
default: return IBV_RATE_MAX;
}
}
LATEST_SYMVER_FUNC(ibv_query_device, 1_1, "IBVERBS_1.1",
int,
struct ibv_context *context,
struct ibv_device_attr *device_attr)
{
return get_ops(context)->query_device_ex(
context, NULL,
container_of(device_attr, struct ibv_device_attr_ex, orig_attr),
sizeof(*device_attr));
}
int __lib_query_port(struct ibv_context *context, uint8_t port_num,
struct ibv_port_attr *port_attr, size_t port_attr_len)
{
/* Don't expose this mess to the provider, provide a large enough
* temporary buffer if the user buffer is too small.
*/
if (port_attr_len < sizeof(struct ibv_port_attr)) {
struct ibv_port_attr tmp_attr = {};
int rc;
rc = get_ops(context)->query_port(context, port_num,
&tmp_attr);
if (rc)
return rc;
memcpy(port_attr, &tmp_attr, port_attr_len);
return 0;
}
memset(port_attr, 0, port_attr_len);
return get_ops(context)->query_port(context, port_num, port_attr);
}
struct _compat_ibv_port_attr {
enum ibv_port_state state;
enum ibv_mtu max_mtu;
enum ibv_mtu active_mtu;
int gid_tbl_len;
uint32_t port_cap_flags;
uint32_t max_msg_sz;
uint32_t bad_pkey_cntr;
uint32_t qkey_viol_cntr;
uint16_t pkey_tbl_len;
uint16_t lid;
uint16_t sm_lid;
uint8_t lmc;
uint8_t max_vl_num;
uint8_t sm_sl;
uint8_t subnet_timeout;
uint8_t init_type_reply;
uint8_t active_width;
uint8_t active_speed;
uint8_t phys_state;
uint8_t link_layer;
uint8_t flags;
};
LATEST_SYMVER_FUNC(ibv_query_port, 1_1, "IBVERBS_1.1",
int,
struct ibv_context *context, uint8_t port_num,
struct _compat_ibv_port_attr *port_attr)
{
return __lib_query_port(context, port_num,
(struct ibv_port_attr *)port_attr,
sizeof(*port_attr));
}
LATEST_SYMVER_FUNC(ibv_query_gid, 1_1, "IBVERBS_1.1",
int,
struct ibv_context *context, uint8_t port_num,
int index, union ibv_gid *gid)
{
struct ibv_gid_entry entry = {};
int ret;
ret = __ibv_query_gid_ex(context, port_num, index, &entry, 0,
sizeof(entry), VERBS_QUERY_GID_ATTR_GID);
/* Preserve API behavior for empty GID */
if (ret == ENODATA) {
memset(gid, 0, sizeof(*gid));
return 0;
}
if (ret)
return -1;
memcpy(gid, &entry.gid, sizeof(entry.gid));
return 0;
}
LATEST_SYMVER_FUNC(ibv_query_pkey, 1_1, "IBVERBS_1.1",
int,
struct ibv_context *context, uint8_t port_num,
int index, __be16 *pkey)
{
struct verbs_device *verbs_device = verbs_get_device(context->device);
char attr[8];
uint16_t val;
if (ibv_read_ibdev_sysfs_file(attr, sizeof(attr), verbs_device->sysfs,
"ports/%d/pkeys/%d", port_num, index) < 0)
return -1;
if (sscanf(attr, "%hx", &val) != 1)
return -1;
*pkey = htobe16(val);
return 0;
}
LATEST_SYMVER_FUNC(ibv_get_pkey_index, 1_5, "IBVERBS_1.5",
int,
struct ibv_context *context, uint8_t port_num, __be16 pkey)
{
__be16 pkey_i;
int i, ret;
for (i = 0; ; i++) {
ret = ibv_query_pkey(context, port_num, i, &pkey_i);
if (ret < 0)
return ret;
if (pkey == pkey_i)
return i;
}
}
LATEST_SYMVER_FUNC(ibv_alloc_pd, 1_1, "IBVERBS_1.1",
struct ibv_pd *,
struct ibv_context *context)
{
struct ibv_pd *pd;
pd = get_ops(context)->alloc_pd(context);
if (pd)
pd->context = context;
return pd;
}
LATEST_SYMVER_FUNC(ibv_dealloc_pd, 1_1, "IBVERBS_1.1",
int,
struct ibv_pd *pd)
{
return get_ops(pd->context)->dealloc_pd(pd);
}
struct ibv_mr *ibv_reg_mr_iova2(struct ibv_pd *pd, void *addr, size_t length,
uint64_t iova, unsigned int access)
{
struct verbs_device *device = verbs_get_device(pd->context->device);
bool odp_mr = access & IBV_ACCESS_ON_DEMAND;
struct ibv_mr *mr;
if (!(device->core_support & IB_UVERBS_CORE_SUPPORT_OPTIONAL_MR_ACCESS))
access &= ~IBV_ACCESS_OPTIONAL_RANGE;
if (!odp_mr && ibv_dontfork_range(addr, length))
return NULL;
mr = get_ops(pd->context)->reg_mr(pd, addr, length, iova, access);
if (mr) {
mr->context = pd->context;
mr->pd = pd;
mr->addr = addr;
mr->length = length;
} else {
if (!odp_mr)
ibv_dofork_range(addr, length);
}
return mr;
}
#undef ibv_reg_mr
LATEST_SYMVER_FUNC(ibv_reg_mr, 1_1, "IBVERBS_1.1",
struct ibv_mr *,
struct ibv_pd *pd, void *addr,
size_t length, int access)
{
return ibv_reg_mr_iova2(pd, addr, length, (uintptr_t)addr, access);
}
#undef ibv_reg_mr_iova
struct ibv_mr *ibv_reg_mr_iova(struct ibv_pd *pd, void *addr, size_t length,
uint64_t iova, int access)
{
return ibv_reg_mr_iova2(pd, addr, length, iova, access);
}
struct ibv_pd *ibv_import_pd(struct ibv_context *context,
uint32_t pd_handle)
{
return get_ops(context)->import_pd(context, pd_handle);
}
void ibv_unimport_pd(struct ibv_pd *pd)
{
get_ops(pd->context)->unimport_pd(pd);
}
/**
* ibv_import_mr - Import a memory region
*/
struct ibv_mr *ibv_import_mr(struct ibv_pd *pd, uint32_t mr_handle)
{
return get_ops(pd->context)->import_mr(pd, mr_handle);
}
/**
* ibv_unimport_mr - Unimport a memory region
*/
void ibv_unimport_mr(struct ibv_mr *mr)
{
get_ops(mr->context)->unimport_mr(mr);
}
/**
* ibv_import_dm - Import a device memory
*/
struct ibv_dm *ibv_import_dm(struct ibv_context *context, uint32_t dm_handle)
{
return get_ops(context)->import_dm(context, dm_handle);
}
/**
* ibv_unimport_dm - Unimport a device memory
*/
void ibv_unimport_dm(struct ibv_dm *dm)
{
get_ops(dm->context)->unimport_dm(dm);
}
struct ibv_mr *ibv_reg_dmabuf_mr(struct ibv_pd *pd, uint64_t offset,
size_t length, uint64_t iova, int fd,
int access)
{
struct ibv_mr *mr;
mr = get_ops(pd->context)->reg_dmabuf_mr(pd, offset, length, iova,
fd, access);
if (!mr)
return NULL;
mr->context = pd->context;
mr->pd = pd;
mr->addr = (void *)(uintptr_t)offset;
mr->length = length;
return mr;
}
LATEST_SYMVER_FUNC(ibv_rereg_mr, 1_1, "IBVERBS_1.1",
int,
struct ibv_mr *mr, int flags,
struct ibv_pd *pd, void *addr,
size_t length, int access)
{
int dofork_onfail = 0;
int err;
void *old_addr;
size_t old_len;
if (verbs_get_mr(mr)->mr_type != IBV_MR_TYPE_MR) {
errno = EINVAL;
return IBV_REREG_MR_ERR_INPUT;
}
if (flags & ~IBV_REREG_MR_FLAGS_SUPPORTED) {
errno = EINVAL;
return IBV_REREG_MR_ERR_INPUT;
}
if ((flags & IBV_REREG_MR_CHANGE_TRANSLATION) &&
(!length || !addr)) {
errno = EINVAL;
return IBV_REREG_MR_ERR_INPUT;
}
if (access && !(flags & IBV_REREG_MR_CHANGE_ACCESS)) {
errno = EINVAL;
return IBV_REREG_MR_ERR_INPUT;
}
if (flags & IBV_REREG_MR_CHANGE_TRANSLATION) {
err = ibv_dontfork_range(addr, length);
if (err)
return IBV_REREG_MR_ERR_DONT_FORK_NEW;
dofork_onfail = 1;
}
old_addr = mr->addr;
old_len = mr->length;
err = get_ops(mr->context)->rereg_mr(verbs_get_mr(mr),
flags, pd, addr,
length, access);
if (!err) {
if (flags & IBV_REREG_MR_CHANGE_PD)
mr->pd = pd;
if (flags & IBV_REREG_MR_CHANGE_TRANSLATION) {
mr->addr = addr;
mr->length = length;
err = ibv_dofork_range(old_addr, old_len);
if (err)
return IBV_REREG_MR_ERR_DO_FORK_OLD;
}
} else {
err = IBV_REREG_MR_ERR_CMD;
if (dofork_onfail) {
if (ibv_dofork_range(addr, length))
err = IBV_REREG_MR_ERR_CMD_AND_DO_FORK_NEW;
}
}
return err;
}
LATEST_SYMVER_FUNC(ibv_dereg_mr, 1_1, "IBVERBS_1.1",
int,
struct ibv_mr *mr)
{
int ret;
void *addr = mr->addr;
size_t length = mr->length;
enum ibv_mr_type type = verbs_get_mr(mr)->mr_type;
int access = verbs_get_mr(mr)->access;
ret = get_ops(mr->context)->dereg_mr(verbs_get_mr(mr));
if (!ret && type == IBV_MR_TYPE_MR && !(access & IBV_ACCESS_ON_DEMAND))
ibv_dofork_range(addr, length);
return ret;
}
struct ibv_comp_channel *ibv_create_comp_channel(struct ibv_context *context)
{
struct ibv_create_comp_channel req;
struct ib_uverbs_create_comp_channel_resp resp = {};
struct ibv_comp_channel *channel;
channel = malloc(sizeof *channel);
if (!channel)
return NULL;
req.core_payload = (struct ib_uverbs_create_comp_channel){};
if (execute_cmd_write(context, IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL,
&req, sizeof(req), &resp, sizeof(resp))) {
free(channel);
return NULL;
}
channel->context = context;
channel->fd = resp.fd;
channel->refcnt = 0;
return channel;
}
int ibv_destroy_comp_channel(struct ibv_comp_channel *channel)
{
struct ibv_context *context;
int ret;
context = channel->context;
pthread_mutex_lock(&context->mutex);
if (channel->refcnt) {
ret = EBUSY;
goto out;
}
close(channel->fd);
free(channel);
ret = 0;
out:
pthread_mutex_unlock(&context->mutex);
return ret;
}
LATEST_SYMVER_FUNC(ibv_create_cq, 1_1, "IBVERBS_1.1",
struct ibv_cq *,
struct ibv_context *context, int cqe, void *cq_context,
struct ibv_comp_channel *channel, int comp_vector)
{
struct ibv_cq *cq;
cq = get_ops(context)->create_cq(context, cqe, channel, comp_vector);
if (cq)
verbs_init_cq(cq, context, channel, cq_context);
return cq;
}
LATEST_SYMVER_FUNC(ibv_resize_cq, 1_1, "IBVERBS_1.1",
int,
struct ibv_cq *cq, int cqe)
{
return get_ops(cq->context)->resize_cq(cq, cqe);
}
LATEST_SYMVER_FUNC(ibv_destroy_cq, 1_1, "IBVERBS_1.1",
int,
struct ibv_cq *cq)
{
struct ibv_comp_channel *channel = cq->channel;
int ret;
ret = get_ops(cq->context)->destroy_cq(cq);
if (channel) {
if (!ret) {
pthread_mutex_lock(&channel->context->mutex);
--channel->refcnt;
pthread_mutex_unlock(&channel->context->mutex);
}
}
return ret;
}
LATEST_SYMVER_FUNC(ibv_get_cq_event, 1_1, "IBVERBS_1.1",
int,
struct ibv_comp_channel *channel,
struct ibv_cq **cq, void **cq_context)
{
struct ib_uverbs_comp_event_desc ev;
if (read(channel->fd, &ev, sizeof ev) != sizeof ev)
return -1;
*cq = (struct ibv_cq *) (uintptr_t) ev.cq_handle;
*cq_context = (*cq)->cq_context;
get_ops((*cq)->context)->cq_event(*cq);
return 0;
}
LATEST_SYMVER_FUNC(ibv_ack_cq_events, 1_1, "IBVERBS_1.1",
void,
struct ibv_cq *cq, unsigned int nevents)
{
pthread_mutex_lock(&cq->mutex);
cq->comp_events_completed += nevents;
pthread_cond_signal(&cq->cond);
pthread_mutex_unlock(&cq->mutex);
}
LATEST_SYMVER_FUNC(ibv_create_srq, 1_1, "IBVERBS_1.1",
struct ibv_srq *,
struct ibv_pd *pd,
struct ibv_srq_init_attr *srq_init_attr)
{
struct ibv_srq *srq;
srq = get_ops(pd->context)->create_srq(pd, srq_init_attr);
if (srq) {
srq->context = pd->context;
srq->srq_context = srq_init_attr->srq_context;
srq->pd = pd;
srq->events_completed = 0;
pthread_mutex_init(&srq->mutex, NULL);
pthread_cond_init(&srq->cond, NULL);
}
return srq;
}
LATEST_SYMVER_FUNC(ibv_modify_srq, 1_1, "IBVERBS_1.1",
int,
struct ibv_srq *srq,
struct ibv_srq_attr *srq_attr,
int srq_attr_mask)
{
return get_ops(srq->context)->modify_srq(srq, srq_attr, srq_attr_mask);
}
LATEST_SYMVER_FUNC(ibv_query_srq, 1_1, "IBVERBS_1.1",
int,
struct ibv_srq *srq, struct ibv_srq_attr *srq_attr)
{
return get_ops(srq->context)->query_srq(srq, srq_attr);
}
LATEST_SYMVER_FUNC(ibv_destroy_srq, 1_1, "IBVERBS_1.1",
int,
struct ibv_srq *srq)
{
return get_ops(srq->context)->destroy_srq(srq);
}
LATEST_SYMVER_FUNC(ibv_create_qp, 1_1, "IBVERBS_1.1",
struct ibv_qp *,
struct ibv_pd *pd,
struct ibv_qp_init_attr *qp_init_attr)
{
struct ibv_qp *qp = get_ops(pd->context)->create_qp(pd, qp_init_attr);
return qp;
}
struct ibv_qp_ex *ibv_qp_to_qp_ex(struct ibv_qp *qp)
{
struct verbs_qp *vqp = (struct verbs_qp *)qp;
if (vqp->comp_mask & VERBS_QP_EX)
return &vqp->qp_ex;
return NULL;
}
LATEST_SYMVER_FUNC(ibv_query_qp, 1_1, "IBVERBS_1.1",
int,
struct ibv_qp *qp, struct ibv_qp_attr *attr,
int attr_mask,
struct ibv_qp_init_attr *init_attr)
{
int ret;
ret = get_ops(qp->context)->query_qp(qp, attr, attr_mask, init_attr);
if (ret)
return ret;
if (attr_mask & IBV_QP_STATE)
qp->state = attr->qp_state;
return 0;
}
int ibv_query_qp_data_in_order(struct ibv_qp *qp, enum ibv_wr_opcode op,
uint32_t flags)
{
#if !defined(__i386__) && !defined(__x86_64__)
/* Currently this API is only supported for x86 architectures since most
* non-x86 platforms are known to be OOO and need to do a per-platform study.
*/
return 0;
#else
int result;
if (!check_comp_mask(flags, IBV_QUERY_QP_DATA_IN_ORDER_RETURN_CAPS))
return 0;
result = get_ops(qp->context)->query_qp_data_in_order(qp, op, flags);
if (result & IBV_QUERY_QP_DATA_IN_ORDER_WHOLE_MSG)
result |= IBV_QUERY_QP_DATA_IN_ORDER_ALIGNED_128_BYTES;
return flags ? result : !!(result & IBV_QUERY_QP_DATA_IN_ORDER_WHOLE_MSG);
#endif
}
LATEST_SYMVER_FUNC(ibv_modify_qp, 1_1, "IBVERBS_1.1",
int,
struct ibv_qp *qp, struct ibv_qp_attr *attr,
int attr_mask)
{
int ret;
ret = get_ops(qp->context)->modify_qp(qp, attr, attr_mask);
if (ret)
return ret;
if (attr_mask & IBV_QP_STATE)
qp->state = attr->qp_state;
return 0;
}
LATEST_SYMVER_FUNC(ibv_destroy_qp, 1_1, "IBVERBS_1.1",
int,
struct ibv_qp *qp)
{
return get_ops(qp->context)->destroy_qp(qp);
}
LATEST_SYMVER_FUNC(ibv_create_ah, 1_1, "IBVERBS_1.1",
struct ibv_ah *,
struct ibv_pd *pd, struct ibv_ah_attr *attr)
{
struct ibv_ah *ah = get_ops(pd->context)->create_ah(pd, attr);
if (ah) {
ah->context = pd->context;
ah->pd = pd;
}
return ah;
}
int ibv_query_gid_type(struct ibv_context *context, uint8_t port_num,
unsigned int index, enum ibv_gid_type_sysfs *type)
{
struct ibv_gid_entry entry = {};
int ret;
ret = __ibv_query_gid_ex(context, port_num, index, &entry, 0,
sizeof(entry), VERBS_QUERY_GID_ATTR_TYPE);
/* Preserve API behavior for empty GID */
if (ret == ENODATA) {
*type = IBV_GID_TYPE_SYSFS_IB_ROCE_V1;
return 0;
}
if (ret)
return -1;
if (entry.gid_type == IBV_GID_TYPE_IB ||
entry.gid_type == IBV_GID_TYPE_ROCE_V1)
*type = IBV_GID_TYPE_SYSFS_IB_ROCE_V1;
else
*type = IBV_GID_TYPE_SYSFS_ROCE_V2;
return 0;
}
static int ibv_find_gid_index(struct ibv_context *context, uint8_t port_num,
union ibv_gid *gid,
enum ibv_gid_type_sysfs gid_type)
{
enum ibv_gid_type_sysfs sgid_type = 0;
union ibv_gid sgid;
int i = 0, ret;
do {
ret = ibv_query_gid(context, port_num, i, &sgid);
if (!ret) {
ret = ibv_query_gid_type(context, port_num, i,
&sgid_type);
}
i++;
} while (!ret && (memcmp(&sgid, gid, sizeof(*gid)) ||
(gid_type != sgid_type)));
return ret ? ret : i - 1;
}
static inline void map_ipv4_addr_to_ipv6(__be32 ipv4, struct in6_addr *ipv6)
{
ipv6->s6_addr32[0] = 0;
ipv6->s6_addr32[1] = 0;
ipv6->s6_addr32[2] = htobe32(0x0000FFFF);
ipv6->s6_addr32[3] = ipv4;
}
static inline __sum16 ipv4_calc_hdr_csum(uint16_t *data, unsigned int num_hwords)
{
unsigned int i = 0;
uint32_t sum = 0;
for (i = 0; i < num_hwords; i++)
sum += *(data++);
sum = (sum & 0xffff) + (sum >> 16);
return (__force __sum16)~sum;
}
static inline int get_grh_header_version(struct ibv_grh *grh)
{
int ip6h_version = (be32toh(grh->version_tclass_flow) >> 28) & 0xf;
struct iphdr *ip4h = (struct iphdr *)((void *)grh + 20);
struct iphdr ip4h_checked;
if (ip6h_version != 6) {
if (ip4h->version == 4)
return 4;
errno = EPROTONOSUPPORT;
return -1;
}
/* version may be 6 or 4 */
if (ip4h->ihl != 5) /* IPv4 header length must be 5 for RoCE v2. */
return 6;
/*
* Verify checksum.
* We can't write on scattered buffers so we have to copy to temp
* buffer.
*/
memcpy(&ip4h_checked, ip4h, sizeof(ip4h_checked));
/* Need to set the checksum field (check) to 0 before re-calculating
* the checksum.
*/
ip4h_checked.check = 0;
ip4h_checked.check = ipv4_calc_hdr_csum((uint16_t *)&ip4h_checked, 10);
/* if IPv4 header checksum is OK, believe it */
if (ip4h->check == ip4h_checked.check)
return 4;
return 6;
}
static inline void set_ah_attr_generic_fields(struct ibv_ah_attr *ah_attr,
struct ibv_wc *wc,
struct ibv_grh *grh,
uint8_t port_num)
{
uint32_t flow_class;
flow_class = be32toh(grh->version_tclass_flow);
ah_attr->grh.flow_label = flow_class & 0xFFFFF;
ah_attr->dlid = wc->slid;
ah_attr->sl = wc->sl;
ah_attr->src_path_bits = wc->dlid_path_bits;
ah_attr->port_num = port_num;
}
static inline int set_ah_attr_by_ipv4(struct ibv_context *context,
struct ibv_ah_attr *ah_attr,
struct iphdr *ip4h, uint8_t port_num)
{
union ibv_gid sgid;
int ret;
/* No point searching multicast GIDs in GID table */
if (IN_CLASSD(be32toh(ip4h->daddr))) {
errno = EINVAL;
return -1;
}
map_ipv4_addr_to_ipv6(ip4h->daddr, (struct in6_addr *)&sgid);
ret = ibv_find_gid_index(context, port_num, &sgid,
IBV_GID_TYPE_SYSFS_ROCE_V2);
if (ret < 0)
return ret;
map_ipv4_addr_to_ipv6(ip4h->saddr,
(struct in6_addr *)&ah_attr->grh.dgid);
ah_attr->grh.sgid_index = (uint8_t) ret;
ah_attr->grh.hop_limit = ip4h->ttl;
ah_attr->grh.traffic_class = ip4h->tos;
return 0;
}
#define IB_NEXT_HDR 0x1b
static inline int set_ah_attr_by_ipv6(struct ibv_context *context,
struct ibv_ah_attr *ah_attr,
struct ibv_grh *grh, uint8_t port_num)
{
uint32_t flow_class;
uint32_t sgid_type;
int ret;
/* No point searching multicast GIDs in GID table */
if (grh->dgid.raw[0] == 0xFF) {
errno = EINVAL;
return -1;
}
ah_attr->grh.dgid = grh->sgid;
if (grh->next_hdr == IPPROTO_UDP) {
sgid_type = IBV_GID_TYPE_SYSFS_ROCE_V2;
} else if (grh->next_hdr == IB_NEXT_HDR) {
sgid_type = IBV_GID_TYPE_SYSFS_IB_ROCE_V1;
} else {
errno = EPROTONOSUPPORT;
return -1;
}
ret = ibv_find_gid_index(context, port_num, &grh->dgid,
sgid_type);
if (ret < 0)
return ret;
ah_attr->grh.sgid_index = (uint8_t) ret;
flow_class = be32toh(grh->version_tclass_flow);
ah_attr->grh.hop_limit = grh->hop_limit;
ah_attr->grh.traffic_class = (flow_class >> 20) & 0xFF;
return 0;
}
int ibv_init_ah_from_wc(struct ibv_context *context, uint8_t port_num,
struct ibv_wc *wc, struct ibv_grh *grh,
struct ibv_ah_attr *ah_attr)
{
int version;
int ret = 0;
memset(ah_attr, 0, sizeof *ah_attr);
set_ah_attr_generic_fields(ah_attr, wc, grh, port_num);
if (wc->wc_flags & IBV_WC_GRH) {
ah_attr->is_global = 1;
version = get_grh_header_version(grh);
if (version == 4)
ret = set_ah_attr_by_ipv4(context, ah_attr,
(struct iphdr *)((void *)grh + 20),
port_num);
else if (version == 6)
ret = set_ah_attr_by_ipv6(context, ah_attr, grh,
port_num);
else
ret = -1;
}
return ret;
}
struct ibv_ah *ibv_create_ah_from_wc(struct ibv_pd *pd, struct ibv_wc *wc,
struct ibv_grh *grh, uint8_t port_num)
{
struct ibv_ah_attr ah_attr;
int ret;
ret = ibv_init_ah_from_wc(pd->context, port_num, wc, grh, &ah_attr);
if (ret)
return NULL;
return ibv_create_ah(pd, &ah_attr);
}
LATEST_SYMVER_FUNC(ibv_destroy_ah, 1_1, "IBVERBS_1.1",
int,
struct ibv_ah *ah)
{
return get_ops(ah->context)->destroy_ah(ah);
}
LATEST_SYMVER_FUNC(ibv_attach_mcast, 1_1, "IBVERBS_1.1",
int,
struct ibv_qp *qp, const union ibv_gid *gid, uint16_t lid)
{
return get_ops(qp->context)->attach_mcast(qp, gid, lid);
}
LATEST_SYMVER_FUNC(ibv_detach_mcast, 1_1, "IBVERBS_1.1",
int,
struct ibv_qp *qp, const union ibv_gid *gid, uint16_t lid)
{
return get_ops(qp->context)->detach_mcast(qp, gid, lid);
}
static inline int ipv6_addr_v4mapped(const struct in6_addr *a)
{
return IN6_IS_ADDR_V4MAPPED(&a->s6_addr32) ||
/* IPv4 encoded multicast addresses */