-
Notifications
You must be signed in to change notification settings - Fork 0
/
wtfd.c
263 lines (212 loc) · 7.1 KB
/
wtfd.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
/*
* Copyright 2007 Quest Software, Inc.
* All rights reserved.
* Copyright 2018 Ted Percival <[email protected]>
*
* 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.
* * Neither the name of Quest Software, Inc. nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY QUEST SOFTWARE, INC "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL QUEST SOFTWARE, INC BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define _GNU_SOURCE 1
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/epoll.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <signal.h>
#include <unistd.h>
#define NCPUS 8
static void fatal(const char *cause) __attribute__((noreturn));
void fatal(const char *cause) {
perror(cause);
exit(1);
}
static const char response[] = "HTTP/1.1 200 OK\r\n"
"Server: wtfd\r\n"
"Content-Type: text/plain; charset=us-ascii\r\n"
"Content-Length: 4\r\n"
"\r\n"
"wtf\n";
static void unsubscribe(int epfd, int fd) {
if (epoll_ctl(epfd, EPOLL_CTL_DEL, fd, NULL) == -1)
perror("epoll_ctl DEL");
}
static void unsubscribe_and_close(int epfd, int fd) {
unsubscribe(epfd, fd);
if (close(fd) == -1)
perror("close");
}
static struct epoll_event *setup_event(struct epoll_event *event, int fd, uint32_t events) {
event->events = events;
event->data.fd = fd;
return event;
}
static void ep_mod_or_cleanup(int epfd, int fd, struct epoll_event *event) {
if (epoll_ctl(epfd, EPOLL_CTL_MOD, fd, event) == -1) {
perror("epoll_ctl MOD EPOLLOUT");
// This call might print spurious errors, but it's better than leaking.
unsubscribe_and_close(epfd, fd);
}
}
static void notify_when_readable(int epfd, int fd) {
struct epoll_event event;
setup_event(&event, fd, EPOLLIN | EPOLLONESHOT);
ep_mod_or_cleanup(epfd, fd, &event);
}
static void notify_when_writable(int epfd, int fd) {
struct epoll_event event;
setup_event(&event, fd, EPOLLOUT | EPOLLONESHOT);
ep_mod_or_cleanup(epfd, fd, &event);
}
static void read_client(int epfd, const struct epoll_event *event) {
int client = event->data.fd;
// Drain receive buffer
char buf[4096];
ssize_t len;
while ((len = recv(client, buf, sizeof(buf), 0)) == sizeof(buf))
;
if (len == -1 && errno != EAGAIN && errno != EWOULDBLOCK) {
perror("recv");
unsubscribe_and_close(epfd, client);
return;
}
notify_when_writable(epfd, client);
}
static void write_client(int epfd, const struct epoll_event *event) {
int client = event->data.fd;
const size_t resp_sz = sizeof(response) - 1;
ssize_t sz = send(client, response, resp_sz, 0);
if (sz == -1) {
perror("send()");
unsubscribe_and_close(epfd, client);
return;
}
if (sz < resp_sz)
fprintf(stderr, "short write\n");
notify_when_readable(epfd, client);
}
static void new_client(int epfd, const struct epoll_event *event) {
int client = accept4(event->data.fd, NULL, NULL, SOCK_NONBLOCK | SOCK_CLOEXEC);
if (client == -1) {
if (errno == EAGAIN || errno == EWOULDBLOCK) {
// other process probably got it.
return;
}
perror("accept4");
return;
}
struct epoll_event revent = {
.events = EPOLLIN,
.data = {
.fd = client,
},
};
if (epoll_ctl(epfd, EPOLL_CTL_ADD, client, &revent) == -1) {
perror("epoll_ctl ADD");
if (close(client) == -1)
perror("close");
}
}
static void dispatch(int epfd, const struct epoll_event *event, int listensock) {
if (event->events & EPOLLHUP) {
unsubscribe_and_close(epfd, event->data.fd);
return;
}
if (event->events & EPOLLIN) {
if (event->data.fd == listensock)
new_client(epfd, event);
else
read_client(epfd, event);
}
if (event->events & EPOLLOUT) {
write_client(epfd, event);
}
}
static void multiply() {
// parent keeps running too
for (unsigned i = 1; i < NCPUS; ++i) {
pid_t pid = fork();
if (pid == -1)
perror("fork");
if (pid == 0)
return;
}
}
static void reuseaddr(int sock) {
const int yes = 1;
if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) == -1)
perror("setsockopt SO_REUSEADDR");
}
int main(int argc, char *argv[]) {
int sock;
struct sockaddr_in6 sin6;
uint16_t portnum = 23206;
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
fatal("signal(SIGPIPE)");
// TODO: SO_REUSEPORT a unique socket per child
// TODO: Enable TCP_FASTOPEN
// TODO: Enable TCP_NODELAY (since we send the response in one go)
// TODO: Set TCP_DEFER_ACCEPT
sock = socket(PF_INET6, SOCK_STREAM | SOCK_NONBLOCK | SOCK_CLOEXEC, 0);
if (sock == -1)
fatal("socket");
reuseaddr(sock);
memset(&sin6, 0, sizeof(sin6));
sin6.sin6_family = AF_INET6;
sin6.sin6_port = htons(portnum);
sin6.sin6_addr = in6addr_any;
if (-1 == bind(sock, (struct sockaddr *)&sin6, sizeof(sin6)))
fatal("bind");
if (-1 == listen(sock, 1000))
fatal("listen");
multiply();
int epfd = epoll_create1(EPOLL_CLOEXEC);
if (epfd == -1)
fatal("epoll_create1");
struct epoll_event event = {
.events = EPOLLIN,
.data = {
.fd = sock,
},
};
#if defined(EPOLLEXCLUSIVE)
event.events |= EPOLLEXCLUSIVE;
#endif
if (epoll_ctl(epfd, EPOLL_CTL_ADD, sock, &event) == -1)
fatal("epoll_ctl add");
for (;;) {
struct epoll_event events[10];
int count = epoll_wait(epfd, events, sizeof(events) / sizeof(events[0]), -1);
if (count == -1)
fatal("epoll_wait");
if (count == 0)
continue;
for (unsigned i = 0; i < count; ++i)
dispatch(epfd, &events[i], sock);
}
close(sock);
return 0;
}
/* vim: ts=4 sw=4 et
*/