]> git.sesse.net Git - cubemap/blob - server.cpp
2f55589ac75773af7494417e099b0b58112814db
[cubemap] / server.cpp
1 #include <assert.h>
2 #include <errno.h>
3 #include <inttypes.h>
4 #include <netinet/in.h>
5 #include <netinet/tcp.h>
6 #include <pthread.h>
7 #include <stdint.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <sys/epoll.h>
12 #include <sys/sendfile.h>
13 #include <sys/socket.h>
14 #include <sys/types.h>
15 #include <unistd.h>
16 #include <algorithm>
17 #include <map>
18 #include <string>
19 #include <utility>
20 #include <vector>
21
22 #include "ktls.h"
23 #include "tlse.h"
24
25 #include "acceptor.h"
26 #include "accesslog.h"
27 #include "log.h"
28 #include "metacube2.h"
29 #include "parse.h"
30 #include "server.h"
31 #include "state.pb.h"
32 #include "stream.h"
33 #include "util.h"
34
35 #ifndef SO_MAX_PACING_RATE
36 #define SO_MAX_PACING_RATE 47
37 #endif
38
39 using namespace std;
40
41 extern AccessLogThread *access_log;
42
43 namespace {
44
45 inline bool is_equal(timespec a, timespec b)
46 {
47         return a.tv_sec == b.tv_sec &&
48                a.tv_nsec == b.tv_nsec;
49 }
50
51 inline bool is_earlier(timespec a, timespec b)
52 {
53         if (a.tv_sec != b.tv_sec)
54                 return a.tv_sec < b.tv_sec;
55         return a.tv_nsec < b.tv_nsec;
56 }
57
58 }  // namespace
59
60 Server::Server()
61 {
62         epoll_fd = epoll_create(1024);  // Size argument is ignored.
63         if (epoll_fd == -1) {
64                 log_perror("epoll_fd");
65                 exit(1);
66         }
67 }
68
69 Server::~Server()
70 {
71         safe_close(epoll_fd);
72 }
73
74 vector<ClientStats> Server::get_client_stats() const
75 {
76         vector<ClientStats> ret;
77
78         lock_guard<mutex> lock(mu);
79         for (const auto &fd_and_client : clients) {
80                 ret.push_back(fd_and_client.second.get_stats());
81         }
82         return ret;
83 }
84
85 void Server::do_work()
86 {
87         while (!should_stop()) {
88                 // Wait until there's activity on at least one of the fds,
89                 // or 20 ms (about one frame at 50 fps) has elapsed.
90                 //
91                 // We could in theory wait forever and rely on wakeup()
92                 // from add_client_deferred() and add_data_deferred(),
93                 // but wakeup is a pretty expensive operation, and the
94                 // two threads might end up fighting over a lock, so it's
95                 // seemingly (much) more efficient to just have a timeout here.
96                 int nfds = epoll_pwait(epoll_fd, events, EPOLL_MAX_EVENTS, EPOLL_TIMEOUT_MS, &sigset_without_usr1_block);
97                 if (nfds == -1 && errno != EINTR) {
98                         log_perror("epoll_wait");
99                         exit(1);
100                 }
101
102                 lock_guard<mutex> lock(mu);  // We release the mutex between iterations.
103         
104                 process_queued_data();
105
106                 // Process each client where we have socket activity.
107                 for (int i = 0; i < nfds; ++i) {
108                         Client *client = reinterpret_cast<Client *>(events[i].data.ptr);
109
110                         if (events[i].events & (EPOLLERR | EPOLLRDHUP | EPOLLHUP)) {
111                                 close_client(client);
112                                 continue;
113                         }
114
115                         process_client(client);
116                 }
117
118                 // Process each client where its stream has new data,
119                 // even if there was no socket activity.
120                 for (unique_ptr<Stream> &stream : streams) {
121                         vector<Client *> to_process;
122                         swap(stream->to_process, to_process);
123                         for (Client *client : to_process) {
124                                 process_client(client);
125                         }
126                 }
127
128                 // Finally, go through each client to see if it's timed out
129                 // in the READING_REQUEST state. (Seemingly there are clients
130                 // that can hold sockets up for days at a time without sending
131                 // anything at all.)
132                 timespec timeout_time;
133                 if (clock_gettime(CLOCK_MONOTONIC_COARSE, &timeout_time) == -1) {
134                         log_perror("clock_gettime(CLOCK_MONOTONIC_COARSE)");
135                         continue;
136                 }
137                 timeout_time.tv_sec -= REQUEST_READ_TIMEOUT_SEC;
138                 while (!clients_ordered_by_connect_time.empty()) {
139                         const pair<timespec, int> &connect_time_and_fd = clients_ordered_by_connect_time.front();
140
141                         // See if we have reached the end of clients to process.
142                         if (is_earlier(timeout_time, connect_time_and_fd.first)) {
143                                 break;
144                         }
145
146                         // If this client doesn't exist anymore, just ignore it
147                         // (it was deleted earlier).
148                         auto client_it = clients.find(connect_time_and_fd.second);
149                         if (client_it == clients.end()) {
150                                 clients_ordered_by_connect_time.pop();
151                                 continue;
152                         }
153                         Client *client = &client_it->second;
154                         if (!is_equal(client->connect_time, connect_time_and_fd.first)) {
155                                 // Another client has taken this fd in the meantime.
156                                 clients_ordered_by_connect_time.pop();
157                                 continue;
158                         }
159
160                         if (client->state != Client::READING_REQUEST) {
161                                 // Only READING_REQUEST can time out.
162                                 clients_ordered_by_connect_time.pop();
163                                 continue;
164                         }
165
166                         // OK, it timed out.
167                         close_client(client);
168                         clients_ordered_by_connect_time.pop();
169                 }
170         }
171 }
172
173 CubemapStateProto Server::serialize(unordered_map<const string *, size_t> *short_response_pool)
174 {
175         // We don't serialize anything queued, so empty the queues.
176         process_queued_data();
177
178         // Set all clients in a consistent state before serializing
179         // (ie., they have no remaining lost data). Otherwise, increasing
180         // the backlog could take clients into a newly valid area of the backlog,
181         // sending a stream of zeros instead of skipping the data as it should.
182         //
183         // TODO: Do this when clients are added back from serialized state instead;
184         // it would probably be less wasteful.
185         for (auto &fd_and_client : clients) {
186                 skip_lost_data(&fd_and_client.second);
187         }
188
189         CubemapStateProto serialized;
190         for (const auto &fd_and_client : clients) {
191                 serialized.add_clients()->MergeFrom(fd_and_client.second.serialize(short_response_pool));
192         }
193         for (unique_ptr<Stream> &stream : streams) {
194                 serialized.add_streams()->MergeFrom(stream->serialize());
195         }
196         return serialized;
197 }
198
199 void Server::add_client_deferred(int sock, Acceptor *acceptor)
200 {
201         lock_guard<mutex> lock(queued_clients_mutex);
202         queued_add_clients.push_back(std::make_pair(sock, acceptor));
203 }
204
205 void Server::add_client(int sock, Acceptor *acceptor)
206 {
207         const bool is_tls = acceptor->is_tls();
208         auto inserted = clients.insert(make_pair(sock, Client(sock)));
209         assert(inserted.second == true);  // Should not already exist.
210         Client *client_ptr = &inserted.first->second;
211
212         // Connection timestamps must be nondecreasing. I can't find any guarantee
213         // that even the monotonic clock can't go backwards by a small amount
214         // (think switching between CPUs with non-synchronized TSCs), so if
215         // this actually should happen, we hack around it by fudging
216         // connect_time.
217         if (!clients_ordered_by_connect_time.empty() &&
218             is_earlier(client_ptr->connect_time, clients_ordered_by_connect_time.back().first)) {
219                 client_ptr->connect_time = clients_ordered_by_connect_time.back().first;
220         }
221         clients_ordered_by_connect_time.push(make_pair(client_ptr->connect_time, sock));
222
223         // Start listening on data from this socket.
224         epoll_event ev;
225         if (is_tls) {
226                 // Even in the initial state (READING_REQUEST), TLS needs to
227                 // send data for the handshake, and thus might end up needing
228                 // to know about EPOLLOUT.
229                 ev.events = EPOLLIN | EPOLLOUT | EPOLLET | EPOLLRDHUP;
230         } else {
231                 // EPOLLOUT will be added once we go out of READING_REQUEST.
232                 ev.events = EPOLLIN | EPOLLET | EPOLLRDHUP;
233         }
234         ev.data.ptr = client_ptr;
235         if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sock, &ev) == -1) {
236                 log_perror("epoll_ctl(EPOLL_CTL_ADD)");
237                 exit(1);
238         }
239
240         if (is_tls) {
241                 assert(tls_server_contexts.count(acceptor));
242                 client_ptr->tls_context = tls_accept(tls_server_contexts[acceptor]);
243                 if (client_ptr->tls_context == nullptr) {
244                         log(ERROR, "tls_accept() failed");
245                         close_client(client_ptr);
246                         return;
247                 }
248                 tls_make_exportable(client_ptr->tls_context, 1);
249         }
250
251         process_client(client_ptr);
252 }
253
254 void Server::add_client_from_serialized(const ClientProto &client, const vector<shared_ptr<const string>> &short_responses)
255 {
256         lock_guard<mutex> lock(mu);
257         Stream *stream;
258         int stream_index = lookup_stream_by_url(client.url());
259         if (stream_index == -1) {
260                 assert(client.state() != Client::SENDING_DATA);
261                 stream = nullptr;
262         } else {
263                 stream = streams[stream_index].get();
264         }
265         auto inserted = clients.insert(make_pair(client.sock(), Client(client, short_responses, stream)));
266         assert(inserted.second == true);  // Should not already exist.
267         Client *client_ptr = &inserted.first->second;
268
269         // Connection timestamps must be nondecreasing.
270         assert(clients_ordered_by_connect_time.empty() ||
271                !is_earlier(client_ptr->connect_time, clients_ordered_by_connect_time.back().first));
272         clients_ordered_by_connect_time.push(make_pair(client_ptr->connect_time, client.sock()));
273
274         // Start listening on data from this socket.
275         epoll_event ev;
276         if (client.state() == Client::READING_REQUEST) {
277                 // See the corresponding comment in Server::add_client().
278                 if (client.has_tls_context()) {
279                         ev.events = EPOLLIN | EPOLLOUT | EPOLLET | EPOLLRDHUP;
280                 } else {
281                         ev.events = EPOLLIN | EPOLLET | EPOLLRDHUP;
282                 }
283         } else {
284                 // If we don't have more data for this client, we'll be putting it into
285                 // the sleeping array again soon.
286                 ev.events = EPOLLOUT | EPOLLET | EPOLLRDHUP;
287         }
288         ev.data.ptr = client_ptr;
289         if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, client.sock(), &ev) == -1) {
290                 log_perror("epoll_ctl(EPOLL_CTL_ADD)");
291                 exit(1);
292         }
293
294         if (client_ptr->state == Client::WAITING_FOR_KEYFRAME ||
295             client_ptr->state == Client::PREBUFFERING ||
296             (client_ptr->state == Client::SENDING_DATA &&
297              client_ptr->stream_pos == client_ptr->stream->bytes_received)) {
298                 client_ptr->stream->put_client_to_sleep(client_ptr);
299         } else {
300                 process_client(client_ptr);
301         }
302 }
303
304 int Server::lookup_stream_by_url(const string &url) const
305 {
306         const auto stream_url_it = stream_url_map.find(url);
307         if (stream_url_it == stream_url_map.end()) {
308                 return -1;
309         }
310         return stream_url_it->second;
311 }
312
313 int Server::add_stream(const string &url,
314                        const string &hls_url,
315                        size_t backlog_size,
316                        size_t prebuffering_bytes,
317                        Stream::Encoding encoding,
318                        Stream::Encoding src_encoding,
319                        unsigned hls_frag_duration,
320                        size_t hls_backlog_margin,
321                        const string &allow_origin)
322 {
323         lock_guard<mutex> lock(mu);
324         stream_url_map.insert(make_pair(url, streams.size()));
325         if (!hls_url.empty()) {
326                 stream_hls_url_map.insert(make_pair(hls_url, streams.size()));
327         }
328         streams.emplace_back(new Stream(url, backlog_size, prebuffering_bytes, encoding, src_encoding, hls_frag_duration, hls_backlog_margin, allow_origin));
329         return streams.size() - 1;
330 }
331
332 int Server::add_stream_from_serialized(const StreamProto &stream, int data_fd)
333 {
334         lock_guard<mutex> lock(mu);
335         stream_url_map.insert(make_pair(stream.url(), streams.size()));
336         // stream_hls_url_map will be updated in register_hls_url(), since it is not part
337         // of the serialized state (it will always be picked out from the configuration).
338         streams.emplace_back(new Stream(stream, data_fd));
339         return streams.size() - 1;
340 }
341         
342 void Server::set_backlog_size(int stream_index, size_t new_size)
343 {
344         lock_guard<mutex> lock(mu);
345         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
346         streams[stream_index]->set_backlog_size(new_size);
347 }
348
349 void Server::set_prebuffering_bytes(int stream_index, size_t new_amount)
350 {
351         lock_guard<mutex> lock(mu);
352         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
353         streams[stream_index]->prebuffering_bytes = new_amount;
354 }
355         
356 void Server::set_encoding(int stream_index, Stream::Encoding encoding)
357 {
358         lock_guard<mutex> lock(mu);
359         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
360         streams[stream_index]->encoding = encoding;
361 }
362
363 void Server::set_src_encoding(int stream_index, Stream::Encoding encoding)
364 {
365         lock_guard<mutex> lock(mu);
366         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
367         streams[stream_index]->src_encoding = encoding;
368 }
369
370 void Server::set_hls_frag_duration(int stream_index, unsigned hls_frag_duration)
371 {
372         lock_guard<mutex> lock(mu);
373         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
374         streams[stream_index]->hls_frag_duration = hls_frag_duration;
375 }
376
377 void Server::set_hls_backlog_margin(int stream_index, size_t hls_backlog_margin)
378 {
379         lock_guard<mutex> lock(mu);
380         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
381         assert(hls_backlog_margin >= 0);
382         assert(hls_backlog_margin < streams[stream_index]->backlog_size);
383         streams[stream_index]->hls_backlog_margin = hls_backlog_margin;
384 }
385
386 void Server::set_allow_origin(int stream_index, const string &allow_origin)
387 {
388         lock_guard<mutex> lock(mu);
389         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
390         streams[stream_index]->allow_origin = allow_origin;
391 }
392
393 void Server::register_hls_url(int stream_index, const string &hls_url)
394 {
395         lock_guard<mutex> lock(mu);
396         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
397         assert(!hls_url.empty());
398         stream_hls_url_map.insert(make_pair(hls_url, stream_index));
399 }
400         
401 void Server::set_header(int stream_index, const string &http_header, const string &stream_header)
402 {
403         lock_guard<mutex> lock(mu);
404         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
405         Stream *stream = streams[stream_index].get();
406         stream->http_header = http_header;
407
408         if (stream_header != stream->stream_header) {
409                 // We cannot start at any of the older starting points anymore,
410                 // since they'd get the wrong header for the stream (not to mention
411                 // that a changed header probably means the stream restarted,
412                 // which means any client starting on the old one would probably
413                 // stop playing properly at the change point). Next block
414                 // should be a suitable starting point (if not, something is
415                 // pretty strange), so it will fill up again soon enough.
416                 stream->suitable_starting_points.clear();
417
418                 if (!stream->fragments.empty()) {
419                         stream->fragments.clear();
420                         ++stream->discontinuity_counter;
421                         stream->clear_hls_playlist_cache();
422                 }
423         }
424         stream->stream_header = stream_header;
425 }
426         
427 void Server::set_pacing_rate(int stream_index, uint32_t pacing_rate)
428 {
429         lock_guard<mutex> lock(mu);
430         assert(clients.empty());
431         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
432         streams[stream_index]->pacing_rate = pacing_rate;
433 }
434
435 void Server::add_gen204(const std::string &url, const std::string &allow_origin)
436 {
437         lock_guard<mutex> lock(mu);
438         assert(clients.empty());
439         ping_url_map[url] = allow_origin;
440 }
441
442 void Server::create_tls_context_for_acceptor(const Acceptor *acceptor)
443 {
444         assert(acceptor->is_tls());
445
446         bool is_server = true;
447         TLSContext *server_context = tls_create_context(is_server, TLS_V12);
448
449         const string &cert = acceptor->get_certificate_chain();
450         int num_cert = tls_load_certificates(server_context, reinterpret_cast<const unsigned char *>(cert.data()), cert.size());
451         assert(num_cert > 0);  // Should have been checked by config earlier.
452
453         const string &key = acceptor->get_private_key();
454         int num_key = tls_load_private_key(server_context, reinterpret_cast<const unsigned char *>(key.data()), key.size());
455         assert(num_key > 0);  // Should have been checked by config earlier.
456
457         tls_server_contexts.insert(make_pair(acceptor, server_context));
458 }
459
460 void Server::add_data_deferred(int stream_index, const char *data, size_t bytes, uint16_t metacube_flags, const RationalPTS &pts)
461 {
462         assert(stream_index >= 0 && stream_index < ssize_t(streams.size()));
463         streams[stream_index]->add_data_deferred(data, bytes, metacube_flags, pts);
464 }
465
466 // See the .h file for postconditions after this function.      
467 void Server::process_client(Client *client)
468 {
469         switch (client->state) {
470         case Client::READING_REQUEST: {
471                 if (client->tls_context != nullptr) {
472                         if (send_pending_tls_data(client)) {
473                                 // send_pending_tls_data() hit postconditions #1 or #4.
474                                 return;
475                         }
476                 }
477
478 read_request_again:
479                 // Try to read more of the request.
480                 char buf[1024];
481                 int ret;
482                 if (client->tls_context == nullptr) {
483                         ret = read_nontls_data(client, buf, sizeof(buf));
484                         if (ret == -1) {
485                                 // read_nontls_data() hit postconditions #1 or #2.
486                                 return;
487                         }
488                 } else {
489                         ret = read_tls_data(client, buf, sizeof(buf));
490                         if (ret == -1) {
491                                 // read_tls_data() hit postconditions #1, #2 or #4.
492                                 return;
493                         }
494                 }
495
496                 RequestParseStatus status = wait_for_double_newline(&client->request, buf, ret);
497         
498                 switch (status) {
499                 case RP_OUT_OF_SPACE:
500                         log(WARNING, "[%s] Client sent overlong request!", client->remote_addr.c_str());
501                         close_client(client);
502                         return;
503                 case RP_NOT_FINISHED_YET:
504                         // OK, we don't have the entire header yet. Fine; we'll get it later.
505                         // See if there's more data for us.
506                         goto read_request_again;
507                 case RP_EXTRA_DATA:
508                         log(WARNING, "[%s] Junk data after request!", client->remote_addr.c_str());
509                         close_client(client);
510                         return;
511                 case RP_FINISHED:
512                         break;
513                 }
514
515                 assert(status == RP_FINISHED);
516
517                 if (client->tls_context && !client->in_ktls_mode && tls_established(client->tls_context)) {
518                         // We're ready to enter kTLS mode, unless we still have some
519                         // handshake data to send (which then must be sent as non-kTLS).
520                         if (send_pending_tls_data(client)) {
521                                 // send_pending_tls_data() hit postconditions #1 or #4.
522                                 return;
523                         }
524                         ret = tls_make_ktls(client->tls_context, client->sock);
525                         if (ret < 0) {
526                                 log_tls_error("tls_make_ktls", ret);
527                                 close_client(client);
528                                 return;
529                         }
530                         client->in_ktls_mode = true;
531                 }
532
533                 int error_code = parse_request(client);
534                 if (error_code == 200) {
535                         if (client->serving_hls_playlist) {
536                                 construct_hls_playlist(client);
537                         } else {
538                                 construct_stream_header(client);
539                         }
540                 } else if (error_code == 204) {
541                         construct_204(client);
542                 } else {
543                         construct_error(client, error_code);
544                 }
545
546                 // We've changed states, so fall through.
547                 assert(client->state == Client::SENDING_SHORT_RESPONSE ||
548                        client->state == Client::SENDING_HEADER);
549         }
550         case Client::SENDING_SHORT_RESPONSE:
551         case Client::SENDING_HEADER: {
552 sending_header_or_short_response_again:
553                 int ret;
554                 do {
555                         ret = write(client->sock,
556                                     client->header_or_short_response->data() + client->header_or_short_response_bytes_sent,
557                                     client->header_or_short_response->size() - client->header_or_short_response_bytes_sent);
558                 } while (ret == -1 && errno == EINTR);
559
560                 if (ret == -1 && errno == EAGAIN) {
561                         // We're out of socket space, so now we're at the “low edge” of epoll's
562                         // edge triggering. epoll will tell us when there is more room, so for now,
563                         // just return.
564                         // This is postcondition #4.
565                         return;
566                 }
567
568                 if (ret == -1) {
569                         // Error! Postcondition #1.
570                         log_perror("write");
571                         close_client(client);
572                         return;
573                 }
574                 
575                 client->header_or_short_response_bytes_sent += ret;
576                 assert(client->header_or_short_response_bytes_sent <= client->header_or_short_response->size());
577
578                 if (client->header_or_short_response_bytes_sent < client->header_or_short_response->size()) {
579                         // We haven't sent all yet. Fine; go another round.
580                         goto sending_header_or_short_response_again;
581                 }
582
583                 // We're done sending the header or error! Clear it to release some memory.
584                 client->header_or_short_response = nullptr;
585                 client->header_or_short_response_holder.clear();
586                 client->header_or_short_response_ref.reset();
587
588                 if (client->state == Client::SENDING_SHORT_RESPONSE) {
589                         if (more_requests(client)) {
590                                 // We're done sending the error, but should keep on reading new requests.
591                                 goto read_request_again;
592                         } else {
593                                 // We're done sending the error, so now close.
594                                 // This is postcondition #1.
595                                 close_client(client);
596                         }
597                         return;
598                 }
599
600                 Stream *stream = client->stream;
601                 if (client->stream_pos == Client::STREAM_POS_AT_START) {
602                         // Start sending from the beginning of the backlog.
603                         client->stream_pos = min<size_t>(
604                             stream->bytes_received - stream->backlog_size,
605                             0);
606                         client->state = Client::SENDING_DATA;
607                         goto sending_data;
608                 } else if (client->stream_pos_end != Client::STREAM_POS_NO_END) {
609                         // We're sending a fragment, and should have all of it,
610                         // so start sending right away.
611                         assert(client->stream_pos >= 0);
612                         client->state = Client::SENDING_DATA;
613                         goto sending_data;
614                 } else if (stream->prebuffering_bytes == 0) {
615                         // Start sending from the first keyframe we get. In other
616                         // words, we won't send any of the backlog, but we'll start
617                         // sending immediately as we get the next keyframe block.
618                         // Note that this is functionally identical to the next if branch,
619                         // except that we save a binary search.
620                         assert(client->stream_pos == Client::STREAM_POS_AT_END);
621                         assert(client->stream_pos_end == Client::STREAM_POS_NO_END);
622                         client->stream_pos = stream->bytes_received;
623                         client->state = Client::WAITING_FOR_KEYFRAME;
624                 } else {
625                         // We're not going to send anything to the client before we have
626                         // N bytes. However, this wait might be boring; we can just as well
627                         // use it to send older data if we have it. We use lower_bound()
628                         // so that we are conservative and never add extra latency over just
629                         // waiting (assuming CBR or nearly so); otherwise, we could want e.g.
630                         // 100 kB prebuffer but end up sending a 10 MB GOP.
631                         assert(client->stream_pos == Client::STREAM_POS_AT_END);
632                         assert(client->stream_pos_end == Client::STREAM_POS_NO_END);
633                         deque<size_t>::const_iterator starting_point_it =
634                                 lower_bound(stream->suitable_starting_points.begin(),
635                                             stream->suitable_starting_points.end(),
636                                             stream->bytes_received - stream->prebuffering_bytes);
637                         if (starting_point_it == stream->suitable_starting_points.end()) {
638                                 // None found. Just put us at the end, and then wait for the
639                                 // first keyframe to appear.
640                                 client->stream_pos = stream->bytes_received;
641                                 client->state = Client::WAITING_FOR_KEYFRAME;
642                         } else {
643                                 client->stream_pos = *starting_point_it;
644                                 client->state = Client::PREBUFFERING;
645                                 goto prebuffering;
646                         }
647                 }
648                 // Fall through.
649         }
650         case Client::WAITING_FOR_KEYFRAME: {
651                 Stream *stream = client->stream;
652                 if (stream->suitable_starting_points.empty() ||
653                     client->stream_pos > stream->suitable_starting_points.back()) {
654                         // We haven't received a keyframe since this stream started waiting,
655                         // so keep on waiting for one.
656                         // This is postcondition #3.
657                         stream->put_client_to_sleep(client);
658                         return;
659                 }
660                 client->stream_pos = stream->suitable_starting_points.back();
661                 client->state = Client::PREBUFFERING;
662                 // Fall through.
663         }
664         case Client::PREBUFFERING: {
665 prebuffering:
666                 Stream *stream = client->stream;
667                 size_t bytes_to_send = stream->bytes_received - client->stream_pos;
668                 assert(bytes_to_send <= stream->backlog_size);
669                 if (bytes_to_send < stream->prebuffering_bytes) {
670                         // We don't have enough bytes buffered to start this client yet.
671                         // This is postcondition #3.
672                         stream->put_client_to_sleep(client);
673                         return;
674                 }
675                 client->state = Client::SENDING_DATA;
676                 // Fall through.
677         }
678         case Client::SENDING_DATA: {
679 sending_data:
680                 skip_lost_data(client);
681                 Stream *stream = client->stream;
682
683 sending_data_again:
684                 size_t bytes_to_send;
685                 if (client->stream_pos_end == Client::STREAM_POS_NO_END) {
686                          bytes_to_send = stream->bytes_received - client->stream_pos;
687                 } else {
688                          bytes_to_send = client->stream_pos_end - client->stream_pos;
689                 }
690                 assert(bytes_to_send <= stream->backlog_size);
691                 if (bytes_to_send == 0) {
692                         if (client->stream_pos == client->stream_pos_end) {  // We have a definite end, and we're at it.
693                                 if (more_requests(client)) {
694                                         // We're done sending the fragment, but should keep on reading new requests.
695                                         goto read_request_again;
696                                 } else {
697                                         // We're done sending the fragment, so now close.
698                                         // This is postcondition #1.
699                                         close_client(client);
700                                 }
701                         }
702                         return;
703                 }
704
705                 // See if we need to split across the circular buffer.
706                 bool more_data = false;
707                 if ((client->stream_pos % stream->backlog_size) + bytes_to_send > stream->backlog_size) {
708                         bytes_to_send = stream->backlog_size - (client->stream_pos % stream->backlog_size);
709                         more_data = true;
710                 }
711
712                 ssize_t ret;
713                 do {
714                         off_t offset = client->stream_pos % stream->backlog_size;
715                         ret = sendfile(client->sock, stream->data_fd, &offset, bytes_to_send);
716                 } while (ret == -1 && errno == EINTR);
717
718                 if (ret == -1 && errno == EAGAIN) {
719                         // We're out of socket space, so return; epoll will wake us up
720                         // when there is more room.
721                         // This is postcondition #4.
722                         return;
723                 }
724                 if (ret == -1) {
725                         // Error, close; postcondition #1.
726                         log_perror("sendfile");
727                         close_client(client);
728                         return;
729                 }
730                 client->stream_pos += ret;
731                 client->bytes_sent += ret;
732
733                 assert(client->stream_pos_end == Client::STREAM_POS_NO_END || client->stream_pos <= client->stream_pos_end);
734                 if (client->stream_pos == client->stream_pos_end) {
735                         goto sending_data_again;  // Will see that bytes_to_send == 0 and end.
736                 } else if (client->stream_pos == stream->bytes_received) {
737                         // We don't have any more data for this client, so put it to sleep.
738                         // This is postcondition #3.
739                         stream->put_client_to_sleep(client);
740                 } else if (more_data && size_t(ret) == bytes_to_send) {
741                         goto sending_data_again;
742                 }
743                 // We'll also get here for postcondition #4 (similar to the EAGAIN path above).
744                 break;
745         }
746         default:
747                 assert(false);
748         }
749 }
750
751 bool Server::send_pending_tls_data(Client *client)
752 {
753         // See if there's data from the TLS library to write.
754         if (client->tls_data_to_send == nullptr) {
755                 client->tls_data_to_send = tls_get_write_buffer(client->tls_context, &client->tls_data_left_to_send);
756                 if (client->tls_data_to_send == nullptr) {
757                         // Really no data to send.
758                         return false;
759                 }
760         }
761
762 send_data_again:
763         int ret;
764         do {
765                 ret = write(client->sock, client->tls_data_to_send, client->tls_data_left_to_send);
766         } while (ret == -1 && errno == EINTR);
767         assert(ret < 0 || size_t(ret) <= client->tls_data_left_to_send);
768
769         if (ret == -1 && errno == EAGAIN) {
770                 // We're out of socket space, so now we're at the “low edge” of epoll's
771                 // edge triggering. epoll will tell us when there is more room, so for now,
772                 // just return.
773                 // This is postcondition #4.
774                 return true;
775         }
776         if (ret == -1) {
777                 // Error! Postcondition #1.
778                 log_perror("write");
779                 close_client(client);
780                 return true;
781         }
782         if (ret > 0 && size_t(ret) == client->tls_data_left_to_send) {
783                 // All data has been sent, so we don't need to go to sleep.
784                 tls_buffer_clear(client->tls_context);
785                 client->tls_data_to_send = nullptr;
786                 return false;
787         }
788
789         // More data to send, so try again.
790         client->tls_data_to_send += ret;
791         client->tls_data_left_to_send -= ret;
792         goto send_data_again;
793 }
794
795 int Server::read_nontls_data(Client *client, char *buf, size_t max_size)
796 {
797         int ret;
798         do {
799                 ret = read(client->sock, buf, max_size);
800         } while (ret == -1 && errno == EINTR);
801
802         if (ret == -1 && errno == EAGAIN) {
803                 // No more data right now. Nothing to do.
804                 // This is postcondition #2.
805                 return -1;
806         }
807         if (ret == -1) {
808                 log_perror("read");
809                 close_client(client);
810                 return -1;
811         }
812         if (ret == 0) {
813                 // OK, the socket is closed.
814                 close_client(client);
815                 return -1;
816         }
817
818         return ret;
819 }
820
821 int Server::read_tls_data(Client *client, char *buf, size_t max_size)
822 {
823 read_again:
824         int ret;
825         do {
826                 ret = read(client->sock, buf, max_size);
827         } while (ret == -1 && errno == EINTR);
828
829         if (ret == -1 && errno == EAGAIN) {
830                 // No more data right now. Nothing to do.
831                 // This is postcondition #2.
832                 return -1;
833         }
834         if (ret == -1) {
835                 log_perror("read");
836                 close_client(client);
837                 return -1;
838         }
839         if (ret == 0) {
840                 // OK, the socket is closed.
841                 close_client(client);
842                 return -1;
843         }
844
845         // Give it to the TLS library.
846         int err = tls_consume_stream(client->tls_context, reinterpret_cast<const unsigned char *>(buf), ret, nullptr);
847         if (err < 0) {
848                 log_tls_error("tls_consume_stream", err);
849                 close_client(client);
850                 return -1;
851         }
852         if (err == 0) {
853                 // Not consumed any data. See if we can read more.
854                 goto read_again;
855         }
856
857         // Read any decrypted data available for us. (We can reuse buf, since it's free now.)
858         ret = tls_read(client->tls_context, reinterpret_cast<unsigned char *>(buf), max_size);
859         if (ret == 0) {
860                 // No decrypted data for us yet, but there might be some more handshaking
861                 // to send. Do that if needed, then look for more data.
862                 if (send_pending_tls_data(client)) {
863                         // send_pending_tls_data() hit postconditions #1 or #4.
864                         return -1;
865                 }
866                 goto read_again;
867         }
868         if (ret < 0) {
869                 log_tls_error("tls_read", ret);
870                 close_client(client);
871                 return -1;
872         }
873
874         assert(ret > 0);
875         return ret;
876 }
877
878 // See if there's some data we've lost. Ideally, we should drop to a block boundary,
879 // but resync will be the mux's problem.
880 void Server::skip_lost_data(Client *client)
881 {
882         Stream *stream = client->stream;
883         if (stream == nullptr) {
884                 return;
885         }
886         size_t bytes_to_send = stream->bytes_received - client->stream_pos;
887         if (bytes_to_send > stream->backlog_size) {
888                 size_t bytes_lost = bytes_to_send - stream->backlog_size;
889                 client->bytes_lost += bytes_lost;
890                 ++client->num_loss_events;
891                 if (!client->close_after_response) {
892                         assert(client->stream_pos_end != Client::STREAM_POS_NO_END);
893
894                         // We've already sent a Content-length, so we can't just skip data.
895                         // Close the connection immediately and hope the other side
896                         // is able to figure out that there was an error and it needs to skip.
897                         client->close_after_response = true;
898                         client->stream_pos = client->stream_pos_end;
899                 } else {
900                         client->stream_pos = stream->bytes_received - stream->backlog_size;
901                 }
902         }
903 }
904
905 int Server::parse_request(Client *client)
906 {
907         vector<string> lines = split_lines(client->request);
908         client->request.clear();
909         if (lines.empty()) {
910                 return 400;  // Bad request (empty).
911         }
912
913         // Parse the headers, for logging purposes.
914         // TODO: Case-insensitivity.
915         unordered_multimap<string, string> headers = extract_headers(lines, client->remote_addr);
916         const auto referer_it = headers.find("Referer");
917         if (referer_it != headers.end()) {
918                 client->referer = referer_it->second;
919         }
920         const auto user_agent_it = headers.find("User-Agent");
921         if (user_agent_it != headers.end()) {
922                 client->user_agent = user_agent_it->second;
923         }
924
925         vector<string> request_tokens = split_tokens(lines[0]);
926         if (request_tokens.size() < 3) {
927                 return 400;  // Bad request (empty).
928         }
929         if (request_tokens[0] != "GET") {
930                 return 400;  // Should maybe be 405 instead?
931         }
932
933         string url = request_tokens[1];
934         client->url = url;
935         if (url.size() > 8 && url.find("?backlog") == url.size() - 8) {
936                 client->stream_pos = Client::STREAM_POS_AT_START;
937                 url = url.substr(0, url.size() - 8);
938         } else {
939                 size_t pos = url.find("?frag=");
940                 if (pos != string::npos) {
941                         // Parse an endpoint of the type /stream.mp4?frag=1234-5678.
942                         const char *ptr = url.c_str() + pos + 6;
943
944                         // "?frag=header" is special.
945                         if (strcmp(ptr, "header") == 0) {
946                                 client->stream_pos = Client::STREAM_POS_HEADER_ONLY;
947                                 client->stream_pos_end = -1;
948                         } else {
949                                 char *endptr;
950                                 long long frag_start = strtol(ptr, &endptr, 10);
951                                 if (ptr == endptr || frag_start < 0 || frag_start == LLONG_MAX) {
952                                         return 400;  // Bad request.
953                                 }
954                                 if (*endptr != '-') {
955                                         return 400;  // Bad request.
956                                 }
957                                 ptr = endptr + 1;
958
959                                 long long frag_end = strtol(ptr, &endptr, 10);
960                                 if (ptr == endptr || frag_end < frag_start || frag_end == LLONG_MAX) {
961                                         return 400;  // Bad request.
962                                 }
963
964                                 if (*endptr != '\0') {
965                                         return 400;  // Bad request.
966                                 }
967
968                                 client->stream_pos = frag_start;
969                                 client->stream_pos_end = frag_end;
970                         }
971                         url = url.substr(0, pos);
972                 } else {
973                         client->stream_pos = -1;
974                         client->stream_pos_end = -1;
975                 }
976         }
977
978         // Figure out if we're supposed to close the socket after we've delivered the response.
979         string protocol = request_tokens[2];
980         if (protocol.find("HTTP/") != 0) {
981                 return 400;  // Bad request.
982         }
983         client->close_after_response = false;
984         client->http_11 = true;
985         if (protocol == "HTTP/1.0") {
986                 // No persistent connections.
987                 client->close_after_response = true;
988                 client->http_11 = false;
989         } else {
990                 const auto connection_it = headers.find("Connection");
991                 if (connection_it != headers.end() && connection_it->second == "close") {
992                         client->close_after_response = true;
993                 }
994         }
995
996         const auto stream_url_map_it = stream_url_map.find(url);
997         if (stream_url_map_it != stream_url_map.end()) {
998                 // Serve a regular stream..
999                 client->stream = streams[stream_url_map_it->second].get();
1000                 client->serving_hls_playlist = false;
1001         } else {
1002                 const auto stream_hls_url_map_it = stream_hls_url_map.find(url);
1003                 if (stream_hls_url_map_it != stream_hls_url_map.end()) {
1004                         // Serve HLS playlist.
1005                         client->stream = streams[stream_hls_url_map_it->second].get();
1006                         client->serving_hls_playlist = true;
1007                 } else {
1008                         const auto ping_url_map_it = ping_url_map.find(url);
1009                         if (ping_url_map_it == ping_url_map.end()) {
1010                                 return 404;  // Not found.
1011                         } else {
1012                                 // Serve a ping (204 no error).
1013                                 return 204;
1014                         }
1015                 }
1016         }
1017
1018         Stream *stream = client->stream;
1019         if (stream->http_header.empty()) {
1020                 return 503;  // Service unavailable.
1021         }
1022
1023         if (client->serving_hls_playlist) {
1024                 if (stream->encoding == Stream::STREAM_ENCODING_METACUBE) {
1025                         // This doesn't make any sense, and is hard to implement, too.
1026                         return 404;
1027                 } else {
1028                         return 200;
1029                 }
1030         }
1031
1032         if (client->stream_pos_end == Client::STREAM_POS_NO_END) {
1033                 // This stream won't end, so we don't have a content-length,
1034                 // and can just as well tell the client it's Connection: close
1035                 // (otherwise, we'd have to implement chunking TE for no good reason).
1036                 client->close_after_response = true;
1037         } else {
1038                 if (stream->encoding == Stream::STREAM_ENCODING_METACUBE) {
1039                         // This doesn't make any sense, and is hard to implement, too.
1040                         return 416;  // Range not satisfiable.
1041                 }
1042
1043                 // Check that we have the requested fragment in our backlog.
1044                 size_t buffer_end = stream->bytes_received;
1045                 size_t buffer_start = (buffer_end <= stream->backlog_size) ? 0 : buffer_end - stream->backlog_size;
1046
1047                 if (client->stream_pos_end > buffer_end ||
1048                     client->stream_pos < buffer_start) {
1049                         return 416;  // Range not satisfiable.
1050                 }
1051         }
1052
1053         client->stream = stream;
1054         if (setsockopt(client->sock, SOL_SOCKET, SO_MAX_PACING_RATE, &client->stream->pacing_rate, sizeof(client->stream->pacing_rate)) == -1) {
1055                 if (client->stream->pacing_rate != ~0U) {
1056                         log_perror("setsockopt(SO_MAX_PACING_RATE)");
1057                 }
1058         }
1059         client->request.clear();
1060
1061         return 200;  // OK!
1062 }
1063
1064 void Server::construct_stream_header(Client *client)
1065 {
1066         Stream *stream = client->stream;
1067         string response = stream->http_header;
1068         if (client->stream_pos == Client::STREAM_POS_HEADER_ONLY) {
1069                 char buf[64];
1070                 snprintf(buf, sizeof(buf), "Content-length: %zu\r\n", stream->stream_header.size());
1071                 response.append(buf);
1072         } else if (client->stream_pos_end != Client::STREAM_POS_NO_END) {
1073                 char buf[64];
1074                 snprintf(buf, sizeof(buf), "Content-length: %" PRIu64 "\r\n", client->stream_pos_end - client->stream_pos);
1075                 response.append(buf);
1076         }
1077         if (client->http_11) {
1078                 assert(response.find("HTTP/1.0") == 0);
1079                 response[7] = '1';  // Change to HTTP/1.1.
1080                 if (client->close_after_response) {
1081                         response.append("Connection: close\r\n");
1082                 }
1083         } else {
1084                 assert(client->close_after_response);
1085         }
1086         if (!stream->allow_origin.empty()) {
1087                 response.append("Access-Control-Allow-Origin: ");
1088                 response.append(stream->allow_origin);
1089                 response.append("\r\n");
1090         }
1091         if (stream->encoding == Stream::STREAM_ENCODING_RAW) {
1092                 response.append("\r\n");
1093         } else if (stream->encoding == Stream::STREAM_ENCODING_METACUBE) {
1094                 response.append("Content-encoding: metacube\r\n\r\n");
1095                 if (!stream->stream_header.empty()) {
1096                         metacube2_block_header hdr;
1097                         memcpy(hdr.sync, METACUBE2_SYNC, sizeof(hdr.sync));
1098                         hdr.size = htonl(stream->stream_header.size());
1099                         hdr.flags = htons(METACUBE_FLAGS_HEADER);
1100                         hdr.csum = htons(metacube2_compute_crc(&hdr));
1101                         response.append(string(reinterpret_cast<char *>(&hdr), sizeof(hdr)));
1102                 }
1103         } else {
1104                 assert(false);
1105         }
1106         if (client->stream_pos == Client::STREAM_POS_HEADER_ONLY) {
1107                 client->state = Client::SENDING_SHORT_RESPONSE;
1108                 response.append(stream->stream_header);
1109         } else {
1110                 client->state = Client::SENDING_HEADER;
1111                 if (client->stream_pos_end == Client::STREAM_POS_NO_END) {  // Fragments don't contain stream headers.
1112                         response.append(stream->stream_header);
1113                 }
1114         }
1115
1116         client->header_or_short_response_holder = move(response);
1117         client->header_or_short_response = &client->header_or_short_response_holder;
1118
1119         // Switch states.
1120         change_epoll_events(client, EPOLLOUT | EPOLLET | EPOLLRDHUP);
1121 }
1122         
1123 void Server::construct_error(Client *client, int error_code)
1124 {
1125         char error[256];
1126         if (client->http_11 && client->close_after_response) {
1127                 snprintf(error, sizeof(error),
1128                         "HTTP/1.1 %d Error\r\nContent-type: text/plain\r\nConnection: close\r\n\r\nSomething went wrong. Sorry.\r\n",
1129                         error_code);
1130         } else {
1131                 snprintf(error, sizeof(error),
1132                         "HTTP/1.%d %d Error\r\nContent-type: text/plain\r\nContent-length: 30\r\n\r\nSomething went wrong. Sorry.\r\n",
1133                         client->http_11, error_code);
1134         }
1135         client->header_or_short_response_holder = error;
1136         client->header_or_short_response = &client->header_or_short_response_holder;
1137
1138         // Switch states.
1139         client->state = Client::SENDING_SHORT_RESPONSE;
1140         change_epoll_events(client, EPOLLOUT | EPOLLET | EPOLLRDHUP);
1141 }
1142
1143 void Server::construct_hls_playlist(Client *client)
1144 {
1145         Stream *stream = client->stream;
1146         shared_ptr<const string> *cache;
1147         if (client->http_11) {
1148                 if (client->close_after_response) {
1149                         cache = &stream->hls_playlist_http11_close;
1150                 } else {
1151                         cache = &stream->hls_playlist_http11_persistent;
1152                 }
1153         } else {
1154                 assert(client->close_after_response);
1155                 cache = &stream->hls_playlist_http10;
1156         }
1157
1158         if (*cache == nullptr) {
1159                 *cache = stream->generate_hls_playlist(client->http_11, client->close_after_response);
1160         }
1161         client->header_or_short_response_ref = *cache;
1162         client->header_or_short_response = cache->get();
1163
1164         // Switch states.
1165         client->state = Client::SENDING_SHORT_RESPONSE;
1166         change_epoll_events(client, EPOLLOUT | EPOLLET | EPOLLRDHUP);
1167 }
1168
1169 void Server::construct_204(Client *client)
1170 {
1171         const auto ping_url_map_it = ping_url_map.find(client->url);
1172         assert(ping_url_map_it != ping_url_map.end());
1173
1174         string response;
1175         if (client->http_11) {
1176                 response = "HTTP/1.1 204 No Content\r\n";
1177                 if (client->close_after_response) {
1178                         response.append("Connection: close\r\n");
1179                 }
1180         } else {
1181                 response = "HTTP/1.0 204 No Content\r\n";
1182                 assert(client->close_after_response);
1183         }
1184         if (!ping_url_map_it->second.empty()) {
1185                 response.append("Access-Control-Allow-Origin: ");
1186                 response.append(ping_url_map_it->second);
1187                 response.append("\r\n");
1188         }
1189         response.append("\r\n");
1190
1191         client->header_or_short_response_holder = move(response);
1192         client->header_or_short_response = &client->header_or_short_response_holder;
1193
1194         // Switch states.
1195         client->state = Client::SENDING_SHORT_RESPONSE;
1196         change_epoll_events(client, EPOLLOUT | EPOLLET | EPOLLRDHUP);
1197 }
1198
1199 namespace {
1200
1201 template<class T>
1202 void delete_from(vector<T> *v, T elem)
1203 {
1204         typename vector<T>::iterator new_end = remove(v->begin(), v->end(), elem);
1205         v->erase(new_end, v->end());
1206 }
1207
1208 void send_ktls_close(int sock)
1209 {
1210         uint8_t record_type = 21;  // Alert.
1211         uint8_t body[] = {
1212                 1,   // Warning level (but still fatal!).
1213                 0,   // close_notify.
1214         };
1215
1216         int cmsg_len = sizeof(record_type);
1217         char buf[CMSG_SPACE(cmsg_len)];
1218
1219         msghdr msg = {0};
1220         msg.msg_control = buf;
1221         msg.msg_controllen = sizeof(buf);
1222         cmsghdr *cmsg = CMSG_FIRSTHDR(&msg);
1223         cmsg->cmsg_level = SOL_TLS;
1224         cmsg->cmsg_type = TLS_SET_RECORD_TYPE;
1225         cmsg->cmsg_len = CMSG_LEN(cmsg_len);
1226         *CMSG_DATA(cmsg) = record_type;
1227         msg.msg_controllen = cmsg->cmsg_len;
1228
1229         iovec msg_iov;
1230         msg_iov.iov_base = body;
1231         msg_iov.iov_len = sizeof(body);
1232         msg.msg_iov = &msg_iov;
1233         msg.msg_iovlen = 1;
1234
1235         int err;
1236         do {
1237                 err = sendmsg(sock, &msg, 0);
1238         } while (err == -1 && errno == EINTR);  // Ignore all other errors.
1239 }
1240
1241 }  // namespace
1242         
1243 void Server::close_client(Client *client)
1244 {
1245         if (epoll_ctl(epoll_fd, EPOLL_CTL_DEL, client->sock, nullptr) == -1) {
1246                 log_perror("epoll_ctl(EPOLL_CTL_DEL)");
1247                 exit(1);
1248         }
1249
1250         // This client could be sleeping, so we'll need to fix that. (Argh, O(n).)
1251         if (client->stream != nullptr) {
1252                 delete_from(&client->stream->sleeping_clients, client);
1253                 delete_from(&client->stream->to_process, client);
1254         }
1255
1256         if (client->tls_context) {
1257                 if (client->in_ktls_mode) {
1258                         // Keep GnuTLS happy.
1259                         send_ktls_close(client->sock);
1260                 }
1261                 tls_destroy_context(client->tls_context);
1262         }
1263
1264         // Log to access_log.
1265         access_log->write(client->get_stats());
1266
1267         // Bye-bye!
1268         safe_close(client->sock);
1269
1270         clients.erase(client->sock);
1271 }
1272
1273 void Server::change_epoll_events(Client *client, uint32_t events)
1274 {
1275         epoll_event ev;
1276         ev.events = events;
1277         ev.data.ptr = client;
1278
1279         if (epoll_ctl(epoll_fd, EPOLL_CTL_MOD, client->sock, &ev) == -1) {
1280                 log_perror("epoll_ctl(EPOLL_CTL_MOD)");
1281                 exit(1);
1282         }
1283 }
1284
1285 bool Server::more_requests(Client *client)
1286 {
1287         if (client->close_after_response) {
1288                 return false;
1289         }
1290
1291         // Log to access_log.
1292         access_log->write(client->get_stats());
1293
1294         // Flush pending data; does not cancel out TCP_CORK (since that still takes priority),
1295         // but does a one-off flush.
1296         int one = 1;
1297         if (setsockopt(client->sock, SOL_TCP, TCP_NODELAY, &one, sizeof(one)) == -1) {
1298                 log_perror("setsockopt(TCP_NODELAY)");
1299                 // Can still continue.
1300         }
1301
1302         // Switch states and reset the parsers. We don't reset statistics.
1303         client->state = Client::READING_REQUEST;
1304         client->url.clear();
1305         client->stream = NULL;
1306         client->header_or_short_response = nullptr;
1307         client->header_or_short_response_holder.clear();
1308         client->header_or_short_response_ref.reset();
1309         client->header_or_short_response_bytes_sent = 0;
1310
1311         change_epoll_events(client, EPOLLIN | EPOLLET | EPOLLRDHUP);  // No TLS handshake, so no EPOLLOUT needed.
1312
1313         return true;
1314 }
1315
1316 void Server::process_queued_data()
1317 {
1318         {
1319                 lock_guard<mutex> lock(queued_clients_mutex);
1320
1321                 for (const pair<int, Acceptor *> &id_and_acceptor : queued_add_clients) {
1322                         add_client(id_and_acceptor.first, id_and_acceptor.second);
1323                 }
1324                 queued_add_clients.clear();
1325         }
1326
1327         for (unique_ptr<Stream> &stream : streams) {
1328                 stream->process_queued_data();
1329         }
1330 }