-
Notifications
You must be signed in to change notification settings - Fork 44
/
homa_api.c
207 lines (188 loc) · 7.18 KB
/
homa_api.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
// SPDX-License-Identifier: BSD-2-Clause
/* This file contains functions that implement the Homa API visible to
* applications. It is intended to be part of the user-level run-time library.
*/
#include <errno.h>
#include <inttypes.h>
#include <stddef.h>
#include <stdio.h>
#ifndef NDEBUG
#include <stdlib.h>
#endif
#include <sys/ioctl.h>
#include <sys/types.h>
#include "homa.h"
/**
* homa_reply() - Send a response message for an RPC previously received
* with a call to recvmsg.
* @sockfd: File descriptor for the socket on which to send the message.
* @message_buf: First byte of buffer containing the response message.
* @length: Number of bytes in the message at @message_buf.
* @dest_addr: Address of the RPC's client (returned by recvmsg when
* the message was received).
* @id: Unique identifier for the request, as returned by recvmsg
* when the request was received.
*
* @dest_addr and @id must correspond to a previously-received request
* for which no reply has yet been sent; if there is no such active request,
* then this function does nothing.
*
* Return: 0 means the response has been accepted for delivery. If an
* error occurred, -1 is returned and errno is set appropriately.
*/
ssize_t homa_reply(int sockfd, const void *message_buf, size_t length,
const union sockaddr_in_union *dest_addr, uint64_t id)
{
struct homa_sendmsg_args args;
struct iovec vec;
struct msghdr hdr;
int result;
args.id = id;
args.completion_cookie = 0;
vec.iov_base = (void *) message_buf;
vec.iov_len = length;
hdr.msg_name = (void *) dest_addr;
hdr.msg_namelen = sizeof(*dest_addr);
hdr.msg_iov = &vec;
hdr.msg_iovlen = 1;
hdr.msg_control = &args;
hdr.msg_controllen = 0;
result = sendmsg(sockfd, &hdr, 0);
return result;
}
/**
* homa_replyv() - Similar to homa_reply, except the response
* message can be divided among several chunks of memory.
* @sockfd: File descriptor for the socket on which to send the message.
* @iov: Pointer to array that describes the chunks of the response
* message.
* @iovcnt: Number of elements in @iov.
* @dest_addr: Address of the RPC's client (returned by recvmsg when
* the message was received).
* @id: Unique identifier for the request, as returned by recvmsg
* when the request was received.
*
* @dest_addr and @id must correspond to a previously-received request
* for which no reply has yet been sent; if there is no such active request,
* then this function does nothing.
*
* Return: 0 means the response has been accepted for delivery. If an
* error occurred, -1 is returned and errno is set appropriately.
*/
ssize_t homa_replyv(int sockfd, const struct iovec *iov, int iovcnt,
const union sockaddr_in_union *dest_addr, uint64_t id)
{
struct homa_sendmsg_args args;
struct msghdr hdr;
int result;
args.id = id;
args.completion_cookie = 0;
hdr.msg_name = (void *) dest_addr;
hdr.msg_namelen = sizeof(*dest_addr);
hdr.msg_iov = (struct iovec *) iov;
hdr.msg_iovlen = iovcnt;
hdr.msg_control = &args;
hdr.msg_controllen = 0;
result = sendmsg(sockfd, &hdr, 0);
return result;
}
/**
* homa_send() - Send a request message to initiate an RPC.
* @sockfd: File descriptor for the socket on which to send the
* message.
* @message_buf: First byte of buffer containing the request message.
* @length: Number of bytes at @message_buf.
* @dest_addr: Address of server to which the request should be sent.
* @id: A unique identifier for the request will be returned
* here; this can be used later to find the response for
* this request.
* @completion_cookie: Value to be returned by recvmsg when RPC completes.
*
* Return: 0 means the request has been accepted for delivery. If an
* error occurred, -1 is returned and errno is set appropriately.
*/
int homa_send(int sockfd, const void *message_buf, size_t length,
const union sockaddr_in_union *dest_addr, uint64_t *id,
uint64_t completion_cookie)
{
struct homa_sendmsg_args args;
struct iovec vec;
struct msghdr hdr;
int result;
args.id = 0;
args.completion_cookie = completion_cookie;
vec.iov_base = (void *) message_buf;
vec.iov_len = length;
hdr.msg_name = (void *) dest_addr;
/* For some unknown reason, this change improves short-message P99
* latency by 20% in W3 under IPv4 (as of December 2022).
*/
// hdr.msg_namelen = sizeof(*dest_addr);
hdr.msg_namelen = dest_addr->in4.sin_family == AF_INET ?
sizeof(dest_addr->in4) : sizeof(dest_addr->in6);
hdr.msg_iov = &vec;
hdr.msg_iovlen = 1;
hdr.msg_control = &args;
hdr.msg_controllen = 0;
result = sendmsg(sockfd, &hdr, 0);
if ((result >= 0) && (id != NULL))
*id = args.id;
return result;
}
/**
* homa_sendv() - Same as homa_send, except that the request message can
* be divided among multiple disjoint chunks of memory.
* @sockfd: File descriptor for the socket on which to send the
* message.
* @iov: Pointer to array that describes the chunks of the request
* message.
* @iovcnt: Number of elements in @iov.
* @dest_addr: Address of server to which the request should be sent.
* @id: A unique identifier for the request will be returned
* here; this can be used later to find the response for
* this request.
* @completion_cookie: Value to be returned by recvmsg when RPC completes.
*
* Return: 0 means the request has been accepted for delivery. If an
* error occurred, -1 is returned and errno is set appropriately.
*/
int homa_sendv(int sockfd, const struct iovec *iov, int iovcnt,
const union sockaddr_in_union *dest_addr, uint64_t *id,
uint64_t completion_cookie)
{
struct homa_sendmsg_args args;
struct msghdr hdr;
int result;
args.id = 0;
args.completion_cookie = completion_cookie;
hdr.msg_name = (void *) dest_addr;
hdr.msg_namelen = sizeof(*dest_addr);
hdr.msg_iov = (struct iovec *) iov;
hdr.msg_iovlen = iovcnt;
hdr.msg_control = &args;
hdr.msg_controllen = 0;
result = sendmsg(sockfd, &hdr, 0);
if ((result >= 0) && (id != NULL))
*id = args.id;
return result;
}
/**
* homa_abort() - Terminate the execution of an RPC.
* @sockfd: File descriptor for the socket associated with the RPC.
* @id: Unique identifier for a client RPC to abort (return value
* from previous call to homa_send). 0 means abort all client
* RPCs on this socket.
* @error: 0 means that the aborted RPCs should be destroyed
* immediately (they will never be returned by recvmsg).
* Nonzero means that the RPCs should be moved to the
* completed state; recvmsg will return an error for these
* RPCs, with @error as the errno value.
*
* Return: If an error occurred, -1 is returned and errno is set
* appropriately. Otherwise zero is returned.
*/
int homa_abort(int sockfd, uint64_t id, int error)
{
struct homa_abort_args args = {id, error};
return ioctl(sockfd, HOMAIOCABORT, &args);
}