-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathvma_extra.h
738 lines (668 loc) · 25.7 KB
/
vma_extra.h
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
/*
* SPDX-FileCopyrightText: NVIDIA CORPORATION & AFFILIATES
* Copyright (c) 2001-2025 NVIDIA CORPORATION & AFFILIATES. 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
* 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.
*/
#ifndef VMA_EXTRA_H
#define VMA_EXTRA_H
#include <stddef.h>
#include <stdint.h>
#include <netinet/in.h>
/*
* Flags for recvfrom_zcopy()
*/
#define MSG_VMA_ZCOPY_FORCE 0x01000000 // don't fallback to bcopy
#define MSG_VMA_ZCOPY 0x00040000 // return: zero copy was done
/*
* Options for setsockopt()/getsockopt()
*/
#define SO_VMA_GET_API 2800
#define SO_VMA_USER_DATA 2801
#define SO_VMA_RING_ALLOC_LOGIC 2810
#define SO_VMA_RING_USER_MEMORY 2811
#define SO_VMA_FLOW_TAG 2820
#define SO_VMA_SHUTDOWN_RX 2821
/*
* Flags for Dummy send API
*/
#define VMA_SND_FLAGS_DUMMY MSG_SYN // equals to 0x400
/*
* Return values for the receive packet notify callback function
*/
typedef enum {
VMA_PACKET_DROP, /* VMA will drop the received packet and recycle
the buffer if no other socket needs it */
VMA_PACKET_RECV, /* VMA will queue the received packet on this socket ready queue.
The application will read it with the usual recv socket APIs */
VMA_PACKET_HOLD /* Application will handle the queuing of the received packet. The application
must return the descriptor to VMA using the free_packet function
But not in the context of VMA's callback itself. */
} vma_recv_callback_retval_t;
/************ SocketXtreme API types definition start***************/
typedef enum {
VMA_SOCKETXTREME_PACKET = (1ULL << 32), /* New packet is available */
VMA_SOCKETXTREME_NEW_CONNECTION_ACCEPTED = (1ULL << 33) /* New connection is auto accepted by server */
} vma_socketxtreme_events_t;
/*
* Represents VMA buffer
* Used in SocketXtreme extended API.
*/
struct vma_buff_t {
struct vma_buff_t* next; /* next buffer (for last buffer next == NULL) */
void* payload; /* pointer to data */
uint16_t len; /* data length */
};
/**
* Represents one VMA packet
* Used in SocketXtreme extended API.
*/
struct vma_packet_desc_t {
size_t num_bufs; /* number of packet's buffers */
uint16_t total_len; /* total data length */
struct vma_buff_t* buff_lst; /* list of packet's buffers */
struct timespec hw_timestamp; /* packet hw_timestamp */
};
/*
* Represents VMA Completion.
* Used in SocketXtreme extended API.
*/
struct vma_completion_t {
/* Packet is valid in case VMA_SOCKETXTREME_PACKET event is set
*/
struct vma_packet_desc_t packet;
/* Set of events
*/
uint64_t events;
/* User provided data.
* By default this field has FD of the socket
* User is able to change the content using setsockopt()
* with level argument SOL_SOCKET and opname as SO_VMA_USER_DATA
*/
uint64_t user_data;
/* Source address (in network byte order) set for:
* VMA_SOCKETXTREME_PACKET and VMA_SOCKETXTREME_NEW_CONNECTION_ACCEPTED events
*/
struct sockaddr_in src;
/* Connected socket's parent/listen socket fd number.
* Valid in case VMA_SOCKETXTREME_NEW_CONNECTION_ACCEPTED event is set.
*/
int listen_fd;
};
/************ SocketXtreme API types definition end ***************/
/**
* Represents one VMA packets
* Used in zero-copy extended API.
*/
struct __attribute__ ((packed)) vma_packet_t {
void* packet_id; // packet identifier
size_t sz_iov; // number of fragments
struct iovec iov[]; // fragments size+data
};
/**
* Represents received packets in VMA
* Used in zero-copy extended API.
*/
struct __attribute__ ((packed)) vma_packets_t {
size_t n_packet_num; // number of received packets
struct vma_packet_t pkts[]; // array of received packets
};
/*
* Structure holding additional information on the packet and socket
* Note: Check structure size value for future VMA libraries changes
*/
struct __attribute__ ((packed)) vma_info_t {
size_t struct_sz; /* Compare this value with sizeof(vma_info_t) to check version compatability */
void* packet_id; /* VMA's handle to received packet buffer to be return if zero copy logic is used */
/* Packet addressing information (in network byte order) */
struct sockaddr_in* src;
struct sockaddr_in* dst;
/* Packet information */
size_t payload_sz;
/* Socket's information */
uint32_t socket_ready_queue_pkt_count; /* Current count of packets waiting to be read from the socket */
uint32_t socket_ready_queue_byte_count; /* Current count of bytes waiting to be read from the socket */
/* Packet timestamping information */
struct timespec hw_timestamp;
struct timespec sw_timestamp;
};
struct vma_rate_limit_t {
uint32_t rate; /* rate limit in Kbps */
uint32_t max_burst_sz; /* maximum burst size in bytes */
uint16_t typical_pkt_sz; /* typical packet size in bytes */
};
typedef int vma_ring_profile_key;
typedef enum {
RING_LOGIC_PER_INTERFACE = 0, //!< RING_LOGIC_PER_INTERFACE
RING_LOGIC_PER_IP = 1, //!< RING_LOGIC_PER_IP
RING_LOGIC_PER_SOCKET = 10, //!< RING_LOGIC_PER_SOCKET
RING_LOGIC_PER_USER_ID = 11, //!< RING_LOGIC_PER_USER_ID
RING_LOGIC_PER_THREAD = 20, //!< RING_LOGIC_PER_THREAD
RING_LOGIC_PER_CORE = 30, //!< RING_LOGIC_PER_CORE
RING_LOGIC_PER_CORE_ATTACH_THREADS = 31, //!< RING_LOGIC_PER_CORE_ATTACH_THREADS
RING_LOGIC_LAST //!< RING_LOGIC_LAST
} ring_logic_t;
typedef enum {
VMA_RING_ALLOC_MASK_RING_PROFILE_KEY = (1 << 0),
VMA_RING_ALLOC_MASK_RING_USER_ID = (1 << 1),
VMA_RING_ALLOC_MASK_RING_INGRESS = (1 << 2),
VMA_RING_ALLOC_MASK_RING_ENGRESS = (1 << 3),
} vma_ring_alloc_logic_attr_comp_mask;
/**
* @brief pass this struct to vma using setsockopt with @ref SO_VMA_RING_ALLOC_LOGIC
* to set the allocation logic of this FD when he requests a ring.
* @note ring_alloc_logic is a mandatory
* @param comp_mask - what fields are read when processing this struct
* see @ref vma_ring_alloc_logic_attr_comp_mask
* @param ring_alloc_logic- allocation ratio to use
* @param ring_profile_key - what ring profile to use - get the profile when
* creating ring using @ref vma_add_ring_profile in extra_api
* can only be set once
* @param user_idx - when used RING_LOGIC_PER_USER_ID int @ref ring_alloc_logic
* this is the user id to define. This lets you define the same ring for
* few FD's regardless the interface\thread\core.
* @param ingress - RX ring
* @param engress - TX ring
*/
struct vma_ring_alloc_logic_attr {
uint32_t comp_mask;
ring_logic_t ring_alloc_logic;
uint32_t ring_profile_key;
uint32_t user_id;
uint32_t ingress:1;
uint32_t engress:1;
uint32_t reserved:30;
};
typedef enum {
VMA_MODIFY_RING_CQ_MODERATION = (1 << 0),
VMA_MODIFY_RING_CQ_ARM = (1 << 1),
} vma_modify_ring_mask;
struct vma_cq_moderation_attr {
uint32_t cq_moderation_count;
uint32_t cq_moderation_period_usec;
};
struct vma_cq_arm_attr {
};
/**
* @param comp_mask - what fields should be read when processing this struct
* see @ref vma_modify_ring_mask
* @param ring_fd - ring fd
*/
struct vma_modify_ring_attr {
uint32_t comp_bit_mask;
int ring_fd;
union {
struct vma_cq_moderation_attr cq_moderation;
struct vma_cq_arm_attr cq_arm;
};
};
struct vma_packet_queue_ring_attr {
uint32_t comp_mask;
};
struct vma_external_mem_attr {
uint32_t comp_mask;
};
typedef enum {
// for future use
VMA_RING_ATTR_LAST
} vma_ring_type_attr_mask;
typedef enum {
VMA_RING_PACKET,
VMA_RING_EXTERNAL_MEM,
} vma_ring_type;
/**
* @param comp_mask - what fields are read when processing this struct
* see @ref vma_ring_type_attr_mask
* @param ring_type - use cyclic buffer ring or default packets ring
*
*/
struct vma_ring_type_attr {
uint32_t comp_mask;
vma_ring_type ring_type;
union {
struct vma_packet_queue_ring_attr ring_pktq;
struct vma_external_mem_attr ring_ext;
};
};
typedef enum {
VMA_HW_PP_EN = (1 << 0),
VMA_HW_PP_BURST_EN = (1 << 3),
} mlx_hw_device_cap;
struct dev_data {
uint32_t vendor_id;
uint32_t vendor_part_id;
uint32_t device_cap; // mlx_hw_device_cap
};
struct hw_cq_data {
void *buf;
volatile uint32_t *dbrec;
uint32_t cq_size;
uint32_t cqe_size;
uint32_t cqn;
void *uar;
// for notifications
uint32_t *cons_idx;
};
struct hw_wq_data {
void *buf;
uint32_t wqe_cnt;
uint32_t stride;
volatile uint32_t *dbrec;
struct hw_cq_data cq_data;
};
struct hw_rq_data {
struct hw_wq_data wq_data;
// TBD do we need it
uint32_t *head;
uint32_t *tail;
};
struct hw_sq_data {
struct hw_wq_data wq_data;
uint32_t sq_num;
struct {
void *reg;
uint32_t size;
uint32_t offset;
} bf;
};
typedef enum {
DATA_VALID_DEV,
DATA_VALID_SQ,
DATA_VALID_RQ,
} vma_mlx_hw_valid_data_mask;
struct vma_mlx_hw_device_data {
uint32_t valid_mask; // see vma_mlx_hw_valid_data_mask
struct dev_data dev_data;
struct hw_sq_data sq_data;
struct hw_rq_data rq_data;
};
typedef enum {
VMA_EXTRA_API_REGISTER_RECV_CALLBACK = (1 << 0),
VMA_EXTRA_API_RECVFROM_ZCOPY = (1 << 1),
VMA_EXTRA_API_FREE_PACKETS = (1 << 2),
VMA_EXTRA_API_ADD_CONF_RULE = (1 << 3),
VMA_EXTRA_API_THREAD_OFFLOAD = (1 << 4),
VMA_EXTRA_API_DUMP_FD_STATS = (1 << 5),
VMA_EXTRA_API_SOCKETXTREME_POLL = (1 << 6),
VMA_EXTRA_API_SOCKETXTREME_FREE_VMA_PACKETS = (1 << 7),
VMA_EXTRA_API_SOCKETXTREME_REF_VMA_BUFF = (1 << 8),
VMA_EXTRA_API_SOCKETXTREME_FREE_VMA_BUFF = (1 << 9),
VMA_EXTRA_API_GET_SOCKET_RINGS_NUM = (1 << 10),
VMA_EXTRA_API_GET_SOCKET_RINGS_FDS = (1 << 11),
VMA_EXTRA_API_GET_SOCKET_TX_RING_FD = (1 << 12),
VMA_EXTRA_API_GET_SOCKET_NETWORK_HEADER = (1 << 13),
VMA_EXTRA_API_GET_RING_DIRECT_DESCRIPTORS = (1 << 14),
VMA_EXTRA_API_ADD_RING_PROFILE = (1 << 16),
VMA_EXTRA_API_REGISTER_MEMORY_ON_RING = (1 << 17),
VMA_EXTRA_API_DEREGISTER_MEMORY_ON_RING = (1 << 18),
VMA_EXTRA_API_MODIFY_RING = (1 << 20),
} vma_extra_api_mask;
/**
*
* VMA Notification callback for incoming packet on socket
* @param fd Socket's file descriptor which this packet refers to
* @param iov iovector structure array point holding the packet
* received data buffer pointers and size of each buffer
* @param iov_sz Size of iov array
* @param vma_info Additional information on the packet and socket
* @param context User-defined value provided during callback
* registration for each socket
*
* This callback function should be registered with VMA by calling
* register_recv_callback() in the extended API. It can be unregistered by
* setting a NULL function pointer. VMA will call the callback to notify
* of new incoming packets after the IP & UDP header processing and before
* they are queued in the socket's receive queue.
* Context of the callback will always be from one of the user's application
* threads when calling the following socket APIs: select, poll, epoll, recv,
* recvfrom, recvmsg, read, readv.
*
* Notes:
* - The application can call all of the Socket APIs control and send from
* within the callback context.
* - Packet loss might occur depending on the applications behavior in the
* callback context.
* - Parameters `iov' and `vma_info' are only valid until callback context
* is returned to VMA. User should copy these structures for later use
* if working with zero copy logic.
*/
typedef vma_recv_callback_retval_t
(*vma_recv_callback_t)(int fd, size_t sz_iov, struct iovec iov[],
struct vma_info_t* vma_info, void *context);
/**
* VMA Extended Socket API
*/
struct __attribute__ ((packed)) vma_api_t {
/**
* Register a received packet notification callback.
*
* @param s Socket file descriptor.
* @param callback Callback function.
* @param context user contex for callback function.
* @return 0 - success, -1 - error
*
* errno is set to: EINVAL - not VMA offloaded socket
*/
int (*register_recv_callback)(int s, vma_recv_callback_t callback, void *context);
/**
* Zero-copy revcfrom implementation.
*
* @param s Socket file descriptor.
* @param buf Buffer to fill with received data or pointers to data (see below).
* @param flags Pointer to flags (see below).
* @param from If not NULL, will be filled with source address (same as recvfrom).
* @param fromlen If not NULL, will be filled with source address size (same as recvfrom).
*
* This function attempts to receive a packet without doing data copy.
* The flags argument can contain the usual flags of recvmsg(), and also the
* MSG_VMA_ZCOPY_FORCE flag. If the latter is set, the function will not
* fall back to data copy. Otherwise, the function falls back to data copy
* if zero-copy cannot be performed. If zero-copy is done then MSG_VMA_ZCOPY
* flag is set upon exit.
*
* If zero copy is performed (MSG_VMA_ZCOPY flag is returned), the buffer
* is filled with a vma_packets_t structure, holding as much fragments
* as `len' allows. The total size of all fragments is returned.
* Otherwise the MSG_VMA_ZCOPY flag is not set and the buffer is filled
* with actual data and it's size is returned (same as recvfrom())
* If no data was received the return value is zero.
*
* NOTE: The returned packet must be freed with free_packet() after
* the application finished using it.
*/
int (*recvfrom_zcopy)(int s, void *buf, size_t len, int *flags,
struct sockaddr *from, socklen_t *fromlen);
/**
* Frees a packet received by recvfrom_zcopy() or held by receive callback.
*
* @param s Socket from which the packet was received.
* @param pkts Array of packet.
* @param count Number of packets in the array.
* @return 0 on success, -1 on failure
*
* errno is set to: EINVAL - not a VMA offloaded socket
* ENOENT - the packet was not received from `s'.
*/
int (*free_packets)(int s, struct vma_packet_t *pkts, size_t count);
/*
* Add a libvma.conf rule to the top of the list.
* This rule will not apply to existing sockets which already considered the conf rules.
* (around connect/listen/send/recv ..)
* @param config_line A char buffer with the exact format as defined in libvma.conf, and should end with '\0'.
* @return 0 on success, or error code on failure.
*/
int (*add_conf_rule)(const char *config_line);
/*
* Create sockets on pthread tid as offloaded/not-offloaded.
* This does not affect existing sockets.
* Offloaded sockets are still subject to libvma.conf rules.
* @param offload 1 for offloaded, 0 for not-offloaded.
* @return 0 on success, or error code on failure.
*/
int (*thread_offload)(int offload, pthread_t tid);
/**
* socketxtreme_poll() polls for VMA completions
*
* @param fd File descriptor.
* @param completions VMA completions array.
* @param ncompletions Maximum number of completion to return.
* @param flags Flags.
* @return On success, return the number of ready completions.
* On error, -1 is returned, and TBD:errno is set?.
*
* This function polls the `fd` for VMA completions and returns maximum `ncompletions` ready
* completions via `completions` array.
* The `fd` can represent a ring, socket or epoll file descriptor.
*
* VMA completions are indicated for incoming packets and/or for other events.
* If VMA_SOCKETXTREME_PACKET flag is enabled in vma_completion_t.events field
* the completion points to incoming packet descriptor that can be accesses
* via vma_completion_t.packet field.
* Packet descriptor points to VMA buffers that contain data scattered
* by HW, so the data is deliver to application with zero copy.
* Notice: after application finished using the returned packets
* and their buffers it must free them using socketxtreme_free_vma_packets(),
* socketxtreme_free_vma_buff() functions.
*
* If VMA_SOCKETXTREME_PACKET flag is disabled vma_completion_t.packet field is
* reserved.
*
* In addition to packet arrival event (indicated by VMA_SOCKETXTREME_PACKET flag)
* VMA also reports VMA_SOCKETXTREME_NEW_CONNECTION_ACCEPTED event and standard
* epoll events via vma_completion_t.events field.
* VMA_SOCKETXTREME_NEW_CONNECTION_ACCEPTED event is reported when new connection is
* accepted by the server.
* When working with socketxtreme_poll() new connections are accepted
* automatically and accept(listen_socket) must not be called.
* VMA_SOCKETXTREME_NEW_CONNECTION_ACCEPTED event is reported for the new
* connected/child socket (vma_completion_t.user_data refers to child socket)
* and EPOLLIN event is not generated for the listen socket.
* For events other than packet arrival and new connection acceptance
* vma_completion_t.events bitmask composed using standard epoll API
* events types.
* Notice: the same completion can report multiple events, for example
* VMA_SOCKETXTREME_PACKET flag can be enabled together with EPOLLOUT event,
* etc...
*
* * errno is set to: EOPNOTSUPP - socketXtreme was not enabled during configuration time.
*/
int (*socketxtreme_poll)(int fd, struct vma_completion_t* completions, unsigned int ncompletions, int flags);
/**
* Returns the amount of rings that are associated with socket.
*
* @param fd File Descriptor number of the socket.
* @return On success, return the amount of rings.
* On error, -1 is returned.
*
* errno is set to: EINVAL - not a VMA offloaded fd
*/
int (*get_socket_rings_num)(int fd);
/**
* Returns FDs of the RX rings that are associated with the socket.
*
* This function gets socket FD + int array + array size and populates
* the array with FD numbers of the rings that are associated
* with the socket.
*
* @param fd File Descriptor number.
* @param ring_fds Array of ring fds
* @param ring_fds_sz Size of the array
* @return On success, return the number populated array entries.
* On error, -1 is returned.
*
* errno is set to: EINVAL - not a VMA offloaded fd + TBD
*/
int (*get_socket_rings_fds)(int fd, int *ring_fds, int ring_fds_sz);
/**
* Returns the ring FD of the TX rings used by this socket.
* should be used after connect or joining a MC group.
* @param sock_fd - UDP socket fd
* @param to - the destination the socket is connected to.
* @param tolen - so len
* @return ring fd on success -1 on failure (e.g. no ring, non offloaded fd)
* @note @ref get_socket_rings_fds returns the RX ring fd
* errno is set to: EINVAL - not a VMA offloaded fd
* ENODATA - no rings fds available
*/
int (*get_socket_tx_ring_fd)(int sock_fd, struct sockaddr *to, socklen_t tolen);
/**
* Frees packets received by socketxtreme_poll().
*
* @param packets Packets to free.
* @param num Number of packets in `packets` array
* @return 0 on success, -1 on failure
*
* For each packet in `packet` array this function:
* - Updates receive queue size and the advertised TCP
* window size, if needed, for the socket that received
* the packet.
* - Frees vma buffer list that is associated with the packet.
* Notice: for each buffer in buffer list VMA decreases buffer's
* reference count and only buffers with reference count zero are deallocated.
* Notice:
* - Application can increase buffer reference count,
* in order to hold the buffer even after socketxtreme_free_vma_packets()
* was called for the buffer, using socketxtreme_ref_vma_buff().
* - Application is responsible to free buffers, that
* couldn't be deallocated during socketxtreme_free_vma_packets() due to
* non zero reference count, using socketxtreme_free_vma_buff() function.
*
* errno is set to: EINVAL - NULL pointer is provided.
* EOPNOTSUPP - socketXtreme was not enabled during configuration time.
*/
int (*socketxtreme_free_vma_packets)(struct vma_packet_desc_t *packets, int num);
/* This function increments the reference count of the buffer.
* This function should be used in order to hold the buffer
* even after socketxtreme_free_vma_packets() call.
* When buffer is not needed any more it should be freed via
* socketxtreme_free_vma_buff().
*
* @param buff Buffer to update.
* @return On success, return buffer's reference count after the change
* On errors -1 is returned
*
* errno is set to: EINVAL - NULL pointer is provided.
* EOPNOTSUPP - socketXtreme was not enabled during configuration time.
*/
int (*socketxtreme_ref_vma_buff)(struct vma_buff_t *buff);
/* This function decrements the buff reference count.
* When buff's reference count reaches zero, the buff is
* deallocated.
*
* @param buff Buffer to free.
* @return On success, return buffer's reference count after the change
* On error -1 is returned
*
* Notice: return value zero means that buffer was deallocated.
*
* errno is set to: EINVAL - NULL pointer is provided.
* EOPNOTSUPP - socketXtreme was not enabled during configuration time.
*/
int (*socketxtreme_free_vma_buff)(struct vma_buff_t *buff);
/*
* Dump fd statistics using VMA logger.
* @param fd to dump, 0 for all open fds.
* @param log_level dumping level corresponding vlog_levels_t enum (vlogger.h).
* @return 0 on success, or error code on failure.
*
* errno is set to: EOPNOTSUPP - Function is not supported when socketXtreme is enabled.
*/
int (*dump_fd_stats)(int fd, int log_level);
/**
* add a ring profile to VMA ring profile list. you can use this
* to create advacned rings like MP_RQ ring
* the need to pass vma the ring profile using the fd's setsockopt
* @param profile the profile to add to the list
* @param key - the profile key
* @return 0 on success -1 on failure
*/
int (*vma_add_ring_profile)(struct vma_ring_type_attr *profile, int *key);
/**
* get the socket's network header created by VMA
* @param fd - the socket's fd
* @param ptr - pointer to write the data to. can be NULL see notes
* @param len - IN\OUT parameter
* IN - len given by user
* OUT- len used by header
* @return 0 on success -1 on error
* errno EINVAL - bad fd
* errno ENOBUFS - ptr is too small
* errno ENOTCONN - header no available since socket is not
* ofloaded or not connected
* @note this function should be called for connected socket
* @note calling with ptr NULL will update the len with the size needed
* by VMA so application will allocate the exact needed space
* @note application can:
* call twice once with ptr == NULL and get the size needed to allocate
* and call again to get the data.
* if application called with big enough buffer vma will update the
* size actually used.
*/
int (*get_socket_network_header)(int fd, void *ptr, uint16_t *len);
/**
* get the HW descriptors created by VMA
* @param fd - the ring fd
* @param data - result see @ref vma_mlx_hw_device_data
* @return -1 on failure 0 on success
*/
int (*get_ring_direct_descriptors)(int fd,
struct vma_mlx_hw_device_data *data);
/**
* register memory to use on a ring.
* @param fd - the ring fd see @ref socketxtreme_get_socket_rings_fds
* @param addr - the virtual address to register
* @param length - hte length of addr
* @param key - out parameter to use when accessing this memory
* @return 0 on success, -1 on failure
*
* @note in vma_extra_api ring is associated with device, although you
* can use the key in other rings using the same port we decided to leave
* the ring fd as the bridge in the "extra" convention instead of
* using an opaque ib_ctx or src ip (that can cause routing issues).
*/
int (*register_memory_on_ring)(int fd, void *addr, size_t length,
uint32_t *key);
/**
* deregister the addr that was previously registered in this ring
* @return 0 on success, -1 on failure
*
* @note - this function doens't free the memory
*/
int (*deregister_memory_on_ring)(int fd, void *addr, size_t length);
/**
* perform ring modifications
*
* @param mr_data ring modification parameters
*
* @return 0 on success -1 on failure 1 on busy
*/
int (*vma_modify_ring)(struct vma_modify_ring_attr *mr_data);
/**
* Used to identify which methods were initialized by VMA as part of vma_get_api().
* The value content is based on vma_extra_api_mask enum.
*/
uint64_t vma_extra_supported_mask;
};
/**
* Retrieve VMA extended API.
*
* @return Pointer to the VMA Extended Socket API, of NULL if VMA not found.
*/
static inline struct vma_api_t* vma_get_api()
{
struct vma_api_t *api_ptr = NULL;
socklen_t len = sizeof(api_ptr);
/* coverity[negative_returns] */
int err = getsockopt(-1, SOL_SOCKET, SO_VMA_GET_API, &api_ptr, &len);
if (err < 0) {
return NULL;
}
return api_ptr;
}
#endif /* VMA_EXTRA_H */