-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver2.c
328 lines (264 loc) · 10.3 KB
/
server2.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
#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/poll.h>
#include <sys/socket.h>
#include <unistd.h>
#include <liburing.h>
////#include "http.h"
#define MAX_CONNECTIONS 1024
#define BACKLOG 512
#define MAX_MESSAGE_LEN 4096
#define BUFFERS_COUNT MAX_CONNECTIONS
void add_accept(struct io_uring *ring, int fd, struct sockaddr *client_addr, socklen_t *client_len, unsigned flags);
void add_socket_read(struct io_uring *ring, int fd, unsigned gid, size_t size, unsigned flags);
void add_socket_write(struct io_uring *ring, int fd, __u16 bid, size_t size, unsigned flags);
void add_provide_buf(struct io_uring *ring, __u16 bid, unsigned gid);
enum {
ACCEPT,
RECV,
SEND,
SENDFILE,
PROV_BUF,
CLOSE
};
/*
typedef struct conn_info {
__u32 fd;
__u16 type;
__u16 bid;
} conn_info;*/
#define CREATE_CQE_INFO(fd, bid, type) (((uint64_t)fd << 32) | ((uint64_t)bid << 16) | type)
#define EXTRACT_FD(cqe_data) (cqe_data >> 32)
#define EXTRACT_BID(cqe_data) ((cqe_data >> 16) & 0xFFFF)
#define EXTRACT_TYPE(cqe_data) (cqe_data & 0xFFFF)
#define likely(x) __builtin_expect((x),1)
#define unlikely(x) __builtin_expect((x),0)
static struct io_uring ring;
static uint8_t recvbuf[10000];
static char bufs[BUFFERS_COUNT][MAX_MESSAGE_LEN] = {0};
int group_id = 1337;
int get_socket(int portno)
{
struct sockaddr_in serv_addr;
// setup socket
int sock_listen_fd = socket(AF_INET, SOCK_STREAM, 0);
const int val = 1;
setsockopt(sock_listen_fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
if (setsockopt(sock_listen_fd, SOL_SOCKET, SO_ZEROCOPY, &val, sizeof(val)))
perror("setsockopt zerocopy");
memset(&serv_addr, 0, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_port = htons(portno);
serv_addr.sin_addr.s_addr = INADDR_ANY;
// bind and listen
if (bind(sock_listen_fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0) {
perror("Error binding socket...\n");
exit(1);
}
if (listen(sock_listen_fd, BACKLOG) < 0) {
perror("Error listening on socket...\n");
exit(1);
}
printf("io_uring echo server listening for connections on port: %d\n", portno);
return sock_listen_fd;
}
void setup_params(struct io_uring* ring)
{
struct io_uring_params params;
memset(¶ms, 0, sizeof(params));
params.flags |= IORING_SETUP_DEFER_TASKRUN;
params.flags |= IORING_SETUP_SINGLE_ISSUER;
if (io_uring_queue_init_params(MAX_MESSAGE_LEN, ring, ¶ms) < 0) {
perror("io_uring_init_failed...\n");
exit(1);
}
// check if IORING_FEAT_FAST_POLL is supported
if (!(params.features & IORING_FEAT_FAST_POLL)) {
printf("IORING_FEAT_FAST_POLL not available in the kernel, quiting...\n");
exit(0);
}
}
int main(int argc, char *argv[])
{
// NETWORK only
// some variables we need
int portno = 9999;//strtol(argv[1], NULL, 10);
struct sockaddr_in client_addr;
socklen_t client_len = sizeof(client_addr);
int sock_listen_fd = get_socket(portno);
//struct __kernel_timespec *tsPtr, ts;
//memset(&ts, 0, sizeof(ts));
//tsPtr = &ts;
// IO after this
// initialize io_uring
setup_params(&ring);
// check if buffer selection is supported
struct io_uring_probe *probe;
probe = io_uring_get_probe_ring(&ring);
if (!probe || !io_uring_opcode_supported(probe, IORING_OP_PROVIDE_BUFFERS)) {
printf("Buffer select not supported, skipping...\n");
exit(0);
}
puts ("checked stats, now make rings");
//int res = 0;
// register buffers for buffer selection
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
sqe = io_uring_get_sqe(&ring);
if (!sqe) {
puts("sqe is null");
return 0;
}
io_uring_prep_provide_buffers(sqe, bufs, MAX_MESSAGE_LEN, BUFFERS_COUNT, group_id, 0);
puts("uring buffers provided");
io_uring_submit(&ring);
io_uring_wait_cqe(&ring, &cqe);
if (cqe->res < 0) {
printf("cqe->res = %d\n", cqe->res);
exit(1);
}
io_uring_cqe_seen(&ring, cqe);
puts("setup uring fully, now add accept");
// add first accept SQE to monitor for new incoming connections
add_accept(&ring, sock_listen_fd, (struct sockaddr *)&client_addr, &client_len, 0);
// start event loop
while (1) {
// io uring enter
io_uring_submit_and_wait(&ring, 1);
unsigned head;
unsigned count = 0;
// go through all CQEs
io_uring_for_each_cqe(&ring, head, cqe) {
++count;
//struct conn_info conn_i;
//memcpy(&conn_i, &cqe->user_data, sizeof(conn_i));
uint64_t cqe_data = cqe->user_data;
uint64_t cfd = EXTRACT_FD(cqe_data);
uint64_t ctype = EXTRACT_TYPE(cqe_data);
if (cqe->res != -ENOBUFS) {
if (ctype == PROV_BUF) {
if (unlikely(cqe->res < 0)) {
printf("cqe->res = %d\n", cqe->res);
exit(1);
}
} else if (ctype == RECV) {
int bytes_read = cqe->res;
int bid = cqe->flags >> 16;
if (cqe->res <= 0) {
//puts("failed");
// read failed, re-add the buffer
add_provide_buf(&ring, bid, group_id);
// connection closed or error
// SHOULD WE DO SPECIAL ONE
close(cfd);
} else {
//printf("%d\n",bytes_read);
//recvbuf[bytes_read]=0;
// parse here, to decide if socket or sendfile
////struct http_request req;
////struct phr_http_header hdrs[64];
if (true) {
// bytes have been read into bufs, now add write to socket sqe
add_socket_write(&ring, cfd, bid, bytes_read, 0);
} else {
// possibly [if there is a file requested]
////add_socket_sendfile(&ring,);
}
}
} else if (ctype == SEND) {
// write has been completed, first re-add the buffer
add_provide_buf(&ring, EXTRACT_BID(cqe_data), group_id);
// add a new read for the existing connection
add_socket_read(&ring, cfd, group_id, MAX_MESSAGE_LEN, IOSQE_BUFFER_SELECT);
} else if (ctype == ACCEPT) {
int sock_conn_fd = cqe->res;
// only read the future data when there is no error, >= 0
if (sock_conn_fd >= 0)
add_socket_read(&ring, sock_conn_fd, group_id, MAX_MESSAGE_LEN, IOSQE_BUFFER_SELECT);
// new connected client; read data from socket and re-add accept to monitor for new connections
// ALSO ACCEPT NEW CONNECTIONS FROM MORE CLIENTS
add_accept(&ring, sock_listen_fd, (struct sockaddr *)&client_addr, &client_len, 0);
} else if (ctype == SENDFILE) {
puts("lol sendfile");
}
} else {
fprintf(stdout, "bufs in automatic buffer selection empty, this should not happen...\n");
fflush(stdout);
exit(1);
}
}
io_uring_cq_advance(&ring, count);
}
return 0;
}
/*
void add_sendfile(struct io_uring *ring, int fd_file, int64_t off_file, int fd_socket, int64_t off_socket, int bytes)
{
//https://man7.org/linux/man-pages/man3/io_uring_prep_recv.3.html
io_uring_prep_splice(sqe,
fd_file,
off_file,
fd_socket,
off_socket?,
bytes_for_socket,
unsigned int splice_flags);
struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
io_uring_prep_splice(sqe, fd_file, off_file, fd_socket, off_socket, bytes, // num bytes for file to send
0); // unsigned int splice_flags);
io_uring_sqe_set_flags(sqe, flags);
conn_info conn_i = {
.fd = fd,
.type = SENDFILE,
};
sqe->user_data = *((uint64_t*)&conn_i);
memcpy(&sqe->user_data, &conn_i, sizeof(conn_i));
}
*/
void handle_recv(struct io_uring_cqe* cqe)
{
/*
*/
}
void add_accept(struct io_uring *ring, int fd, struct sockaddr *client_addr, socklen_t *client_len, unsigned flags)
{
struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
io_uring_prep_accept(sqe, fd, client_addr, client_len, 0);
io_uring_sqe_set_flags(sqe, flags);
sqe->user_data = CREATE_CQE_INFO(fd, 0, ACCEPT);
}
void add_socket_read(struct io_uring *ring, int fd, unsigned gid, size_t message_size, unsigned flags)
{
struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
io_uring_prep_recv(sqe, fd, recvbuf, message_size, 0);
io_uring_sqe_set_flags(sqe, flags);
sqe->buf_group = gid;
recvbuf[message_size] = 0;
sqe->user_data = CREATE_CQE_INFO(fd, 0, RECV);
}
const char* sz = "HTTP/1.1 200 OK\r\nServer: IOU69420\r\nConnection: keep-alive\r\nContent-Length: 10\r\n\r\nHello Baby";
void add_socket_write(struct io_uring *ring, int fd, __u16 bid, size_t message_size, unsigned flags)
{
struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
//puts(bufs[bid]);
//io_uring_prep_send(sqe, fd, &bufs[bid], message_size, 0);
io_uring_prep_send(sqe, fd, sz, strlen(sz), MSG_ZEROCOPY);
io_uring_sqe_set_flags(sqe, flags);
sqe->user_data = CREATE_CQE_INFO(fd, bid, SEND);
}
void add_provide_buf(struct io_uring *ring, __u16 bid, unsigned gid)
{
struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
io_uring_prep_provide_buffers(sqe, bufs[bid], MAX_MESSAGE_LEN, 1, gid, bid);
sqe->user_data = CREATE_CQE_INFO(0, 0, PROV_BUF);
}
void add_socket_close(struct io_uring *ring, int fd)
{
struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
io_uring_prep_close(sqe, fd);
sqe->user_data = CREATE_CQE_INFO(fd, 0, CLOSE);
}