]> git.sesse.net Git - cubemap/blob - server.cpp
Move Server:add_data() into Stream, where it more logically belongs.
[cubemap] / server.cpp
1 #include <assert.h>
2 #include <errno.h>
3 #include <pthread.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <sys/epoll.h>
7 #include <sys/sendfile.h>
8 #include <sys/socket.h>
9 #include <sys/types.h>
10 #include <time.h>
11 #include <unistd.h>
12 #include <algorithm>
13 #include <map>
14 #include <string>
15 #include <utility>
16 #include <vector>
17
18 #include "markpool.h"
19 #include "mutexlock.h"
20 #include "parse.h"
21 #include "server.h"
22 #include "state.pb.h"
23 #include "stream.h"
24
25 using namespace std;
26
27 Server::Server()
28 {
29         pthread_mutex_init(&mutex, NULL);
30         pthread_mutex_init(&queued_data_mutex, NULL);
31
32         epoll_fd = epoll_create(1024);  // Size argument is ignored.
33         if (epoll_fd == -1) {
34                 perror("epoll_fd");
35                 exit(1);
36         }
37 }
38
39 Server::~Server()
40 {
41         int ret;
42         do {
43                 ret = close(epoll_fd);
44         } while (ret == -1 && errno == EINTR);
45
46         if (ret == -1) {
47                 perror("close(epoll_fd)");
48         }
49 }
50
51 vector<ClientStats> Server::get_client_stats() const
52 {
53         vector<ClientStats> ret;
54
55         MutexLock lock(&mutex);
56         for (map<int, Client>::const_iterator client_it = clients.begin();
57              client_it != clients.end();
58              ++client_it) {
59                 ret.push_back(client_it->second.get_stats());
60         }
61         return ret;
62 }
63
64 void Server::do_work()
65 {
66         for ( ;; ) {
67                 int nfds = epoll_wait(epoll_fd, events, EPOLL_MAX_EVENTS, EPOLL_TIMEOUT_MS);
68                 if (nfds == -1 && errno == EINTR) {
69                         if (should_stop) {
70                                 return;
71                         }
72                         continue;
73                 }
74                 if (nfds == -1) {
75                         perror("epoll_wait");
76                         exit(1);
77                 }
78
79                 MutexLock lock(&mutex);  // We release the mutex between iterations.
80         
81                 process_queued_data();
82
83                 for (int i = 0; i < nfds; ++i) {
84                         int fd = events[i].data.fd;
85                         assert(clients.count(fd) != 0);
86                         Client *client = &clients[fd];
87
88                         if (events[i].events & (EPOLLERR | EPOLLRDHUP | EPOLLHUP)) {
89                                 close_client(client);
90                                 continue;
91                         }
92
93                         process_client(client);
94                 }
95
96                 for (map<string, Stream *>::iterator stream_it = streams.begin();
97                      stream_it != streams.end();
98                      ++stream_it) {
99                         vector<Client *> to_process;
100                         swap(stream_it->second->to_process, to_process);
101                         for (size_t i = 0; i < to_process.size(); ++i) {
102                                 process_client(to_process[i]);
103                         }
104                 }
105
106                 if (should_stop) {
107                         return;
108                 }
109         }
110 }
111
112 CubemapStateProto Server::serialize()
113 {
114         // We don't serialize anything queued, so empty the queues.
115         process_queued_data();
116
117         CubemapStateProto serialized;
118         for (map<int, Client>::const_iterator client_it = clients.begin();
119              client_it != clients.end();
120              ++client_it) {
121                 serialized.add_clients()->MergeFrom(client_it->second.serialize());
122         }
123         for (map<string, Stream *>::const_iterator stream_it = streams.begin();
124              stream_it != streams.end();
125              ++stream_it) {
126                 serialized.add_streams()->MergeFrom(stream_it->second->serialize());
127         }
128         return serialized;
129 }
130
131 void Server::add_client_deferred(int sock)
132 {
133         MutexLock lock(&queued_data_mutex);
134         queued_add_clients.push_back(sock);
135 }
136
137 void Server::add_client(int sock)
138 {
139         clients.insert(make_pair(sock, Client(sock)));
140
141         // Start listening on data from this socket.
142         epoll_event ev;
143         ev.events = EPOLLIN | EPOLLET | EPOLLRDHUP;
144         ev.data.u64 = 0;  // Keep Valgrind happy.
145         ev.data.fd = sock;
146         if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, sock, &ev) == -1) {
147                 perror("epoll_ctl(EPOLL_CTL_ADD)");
148                 exit(1);
149         }
150
151         process_client(&clients[sock]);
152 }
153
154 void Server::add_client_from_serialized(const ClientProto &client)
155 {
156         MutexLock lock(&mutex);
157         Stream *stream = find_stream(client.stream_id());
158         clients.insert(make_pair(client.sock(), Client(client, stream)));
159         Client *client_ptr = &clients[client.sock()];
160
161         // Start listening on data from this socket.
162         epoll_event ev;
163         if (client.state() == Client::READING_REQUEST) {
164                 ev.events = EPOLLIN | EPOLLET | EPOLLRDHUP;
165         } else {
166                 // If we don't have more data for this client, we'll be putting it into
167                 // the sleeping array again soon.
168                 ev.events = EPOLLOUT | EPOLLET | EPOLLRDHUP;
169         }
170         ev.data.u64 = 0;  // Keep Valgrind happy.
171         ev.data.fd = client.sock();
172         if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, client.sock(), &ev) == -1) {
173                 perror("epoll_ctl(EPOLL_CTL_ADD)");
174                 exit(1);
175         }
176
177         if (client_ptr->state == Client::SENDING_DATA && 
178             client_ptr->bytes_sent == client_ptr->stream->bytes_received) {
179                 client_ptr->stream->put_client_to_sleep(client_ptr);
180         } else {
181                 process_client(client_ptr);
182         }
183 }
184
185 void Server::add_stream(const string &stream_id, size_t backlog_size)
186 {
187         MutexLock lock(&mutex);
188         streams.insert(make_pair(stream_id, new Stream(stream_id, backlog_size)));
189 }
190
191 void Server::add_stream_from_serialized(const StreamProto &stream)
192 {
193         MutexLock lock(&mutex);
194         streams.insert(make_pair(stream.stream_id(), new Stream(stream)));
195 }
196         
197 void Server::set_header(const string &stream_id, const string &header)
198 {
199         MutexLock lock(&mutex);
200         find_stream(stream_id)->header = header;
201
202         // If there are clients we haven't sent anything to yet, we should give
203         // them the header, so push back into the SENDING_HEADER state.
204         for (map<int, Client>::iterator client_it = clients.begin();
205              client_it != clients.end();
206              ++client_it) {
207                 Client *client = &client_it->second;
208                 if (client->state == Client::SENDING_DATA &&
209                     client->bytes_sent == 0) {
210                         construct_header(client);
211                 }
212         }
213 }
214         
215 void Server::set_mark_pool(const std::string &stream_id, MarkPool *mark_pool)
216 {
217         MutexLock lock(&mutex);
218         assert(clients.empty());
219         find_stream(stream_id)->mark_pool = mark_pool;
220 }
221
222 void Server::add_data_deferred(const string &stream_id, const char *data, size_t bytes)
223 {
224         MutexLock lock(&queued_data_mutex);
225         queued_data[stream_id].append(string(data, data + bytes));
226 }
227
228 // See the .h file for postconditions after this function.      
229 void Server::process_client(Client *client)
230 {
231         switch (client->state) {
232         case Client::READING_REQUEST: {
233 read_request_again:
234                 // Try to read more of the request.
235                 char buf[1024];
236                 int ret;
237                 do {
238                         ret = read(client->sock, buf, sizeof(buf));
239                 } while (ret == -1 && errno == EINTR);
240
241                 if (ret == -1 && errno == EAGAIN) {
242                         // No more data right now. Nothing to do.
243                         // This is postcondition #2.
244                         return;
245                 }
246                 if (ret == -1) {
247                         perror("read");
248                         close_client(client);
249                         return;
250                 }
251                 if (ret == 0) {
252                         // OK, the socket is closed.
253                         close_client(client);
254                         return;
255                 }
256
257                 RequestParseStatus status = wait_for_double_newline(&client->request, buf, ret);
258         
259                 switch (status) {
260                 case RP_OUT_OF_SPACE:
261                         fprintf(stderr, "WARNING: fd %d sent overlong request!\n", client->sock);
262                         close_client(client);
263                         return;
264                 case RP_NOT_FINISHED_YET:
265                         // OK, we don't have the entire header yet. Fine; we'll get it later.
266                         // See if there's more data for us.
267                         goto read_request_again;
268                 case RP_EXTRA_DATA:
269                         fprintf(stderr, "WARNING: fd %d had junk data after request!\n", client->sock);
270                         close_client(client);
271                         return;
272                 case RP_FINISHED:
273                         break;
274                 }
275
276                 assert(status == RP_FINISHED);
277
278                 int error_code = parse_request(client);
279                 if (error_code == 200) {
280                         construct_header(client);
281                 } else {
282                         construct_error(client, error_code);
283                 }
284
285                 // We've changed states, so fall through.
286                 assert(client->state == Client::SENDING_ERROR ||
287                        client->state == Client::SENDING_HEADER);
288         }
289         case Client::SENDING_ERROR:
290         case Client::SENDING_HEADER: {
291 sending_header_or_error_again:
292                 int ret;
293                 do {
294                         ret = write(client->sock,
295                                     client->header_or_error.data() + client->header_or_error_bytes_sent,
296                                     client->header_or_error.size() - client->header_or_error_bytes_sent);
297                 } while (ret == -1 && errno == EINTR);
298
299                 if (ret == -1 && errno == EAGAIN) {
300                         // We're out of socket space, so now we're at the “low edge” of epoll's
301                         // edge triggering. epoll will tell us when there is more room, so for now,
302                         // just return.
303                         // This is postcondition #4.
304                         return;
305                 }
306
307                 if (ret == -1) {
308                         // Error! Postcondition #1.
309                         perror("write");
310                         close_client(client);
311                         return;
312                 }
313                 
314                 client->header_or_error_bytes_sent += ret;
315                 assert(client->header_or_error_bytes_sent <= client->header_or_error.size());
316
317                 if (client->header_or_error_bytes_sent < client->header_or_error.size()) {
318                         // We haven't sent all yet. Fine; go another round.
319                         goto sending_header_or_error_again;
320                 }
321
322                 // We're done sending the header or error! Clear it to release some memory.
323                 client->header_or_error.clear();
324
325                 if (client->state == Client::SENDING_ERROR) {
326                         // We're done sending the error, so now close.  
327                         // This is postcondition #1.
328                         close_client(client);
329                         return;
330                 }
331
332                 // Start sending from the end. In other words, we won't send any of the backlog,
333                 // but we'll start sending immediately as we get data.
334                 // This is postcondition #3.
335                 client->state = Client::SENDING_DATA;
336                 client->bytes_sent = client->stream->bytes_received;
337                 client->stream->put_client_to_sleep(client);
338                 return;
339         }
340         case Client::SENDING_DATA: {
341 sending_data_again:
342                 // See if there's some data we've lost. Ideally, we should drop to a block boundary,
343                 // but resync will be the mux's problem.
344                 Stream *stream = client->stream;
345                 size_t bytes_to_send = stream->bytes_received - client->bytes_sent;
346                 if (bytes_to_send == 0) {
347                         return;
348                 }
349                 if (bytes_to_send > stream->backlog_size) {
350                         fprintf(stderr, "WARNING: fd %d lost %lld bytes, maybe too slow connection\n",
351                                 client->sock,
352                                 (long long int)(bytes_to_send - stream->backlog_size));
353                         client->bytes_sent = stream->bytes_received - stream->backlog_size;
354                         bytes_to_send = stream->backlog_size;
355                 }
356
357                 // See if we need to split across the circular buffer.
358                 bool more_data = false;
359                 if ((client->bytes_sent % stream->backlog_size) + bytes_to_send > stream->backlog_size) {
360                         bytes_to_send = stream->backlog_size - (client->bytes_sent % stream->backlog_size);
361                         more_data = true;
362                 }
363
364                 ssize_t ret;
365                 do {
366                         loff_t offset = client->bytes_sent % stream->backlog_size;
367                         ret = sendfile(client->sock, stream->data_fd, &offset, bytes_to_send);
368                 } while (ret == -1 && errno == EINTR);
369
370                 if (ret == -1 && errno == EAGAIN) {
371                         // We're out of socket space, so return; epoll will wake us up
372                         // when there is more room.
373                         // This is postcondition #4.
374                         return;
375                 }
376                 if (ret == -1) {
377                         // Error, close; postcondition #1.
378                         perror("sendfile");
379                         close_client(client);
380                         return;
381                 }
382                 client->bytes_sent += ret;
383
384                 if (client->bytes_sent == stream->bytes_received) {
385                         // We don't have any more data for this client, so put it to sleep.
386                         // This is postcondition #3.
387                         stream->put_client_to_sleep(client);
388                 } else if (more_data) {
389                         goto sending_data_again;
390                 }
391                 break;
392         }
393         default:
394                 assert(false);
395         }
396 }
397
398 int Server::parse_request(Client *client)
399 {
400         vector<string> lines = split_lines(client->request);
401         if (lines.empty()) {
402                 return 400;  // Bad request (empty).
403         }
404
405         vector<string> request_tokens = split_tokens(lines[0]);
406         if (request_tokens.size() < 2) {
407                 return 400;  // Bad request (empty).
408         }
409         if (request_tokens[0] != "GET") {
410                 return 400;  // Should maybe be 405 instead?
411         }
412         if (streams.count(request_tokens[1]) == 0) {
413                 return 404;  // Not found.
414         }
415
416         client->stream_id = request_tokens[1];
417         client->stream = find_stream(client->stream_id);
418         if (client->stream->mark_pool != NULL) {
419                 client->fwmark = client->stream->mark_pool->get_mark();
420         } else {
421                 client->fwmark = 0;  // No mark.
422         }
423         if (setsockopt(client->sock, SOL_SOCKET, SO_MARK, &client->fwmark, sizeof(client->fwmark)) == -1) {                          
424                 if (client->fwmark != 0) {
425                         perror("setsockopt(SO_MARK)");
426                 }
427         }
428         client->request.clear();
429
430         return 200;  // OK!
431 }
432
433 void Server::construct_header(Client *client)
434 {
435         client->header_or_error = find_stream(client->stream_id)->header;
436
437         // Switch states.
438         client->state = Client::SENDING_HEADER;
439
440         epoll_event ev;
441         ev.events = EPOLLOUT | EPOLLET | EPOLLRDHUP;
442         ev.data.u64 = 0;  // Keep Valgrind happy.
443         ev.data.fd = client->sock;
444
445         if (epoll_ctl(epoll_fd, EPOLL_CTL_MOD, client->sock, &ev) == -1) {
446                 perror("epoll_ctl(EPOLL_CTL_MOD)");
447                 exit(1);
448         }
449 }
450         
451 void Server::construct_error(Client *client, int error_code)
452 {
453         char error[256];
454         snprintf(error, 256, "HTTP/1.0 %d Error\r\nContent-type: text/plain\r\n\r\nSomething went wrong. Sorry.\r\n",
455                 error_code);
456         client->header_or_error = error;
457
458         // Switch states.
459         client->state = Client::SENDING_ERROR;
460
461         epoll_event ev;
462         ev.events = EPOLLOUT | EPOLLET | EPOLLRDHUP;
463         ev.data.u64 = 0;  // Keep Valgrind happy.
464         ev.data.fd = client->sock;
465
466         if (epoll_ctl(epoll_fd, EPOLL_CTL_MOD, client->sock, &ev) == -1) {
467                 perror("epoll_ctl(EPOLL_CTL_MOD)");
468                 exit(1);
469         }
470 }
471
472 template<class T>
473 void delete_from(vector<T> *v, T elem)
474 {
475         typename vector<T>::iterator new_end = remove(v->begin(), v->end(), elem);
476         v->erase(new_end, v->end());
477 }
478         
479 void Server::close_client(Client *client)
480 {
481         if (epoll_ctl(epoll_fd, EPOLL_CTL_DEL, client->sock, NULL) == -1) {
482                 perror("epoll_ctl(EPOLL_CTL_DEL)");
483                 exit(1);
484         }
485
486         // This client could be sleeping, so we'll need to fix that. (Argh, O(n).)
487         if (client->stream != NULL) {
488                 delete_from(&client->stream->sleeping_clients, client);
489                 delete_from(&client->stream->to_process, client);
490                 if (client->stream->mark_pool != NULL) {
491                         int fwmark = client->fwmark;
492                         client->stream->mark_pool->release_mark(fwmark);
493                 }
494         }
495
496         // Bye-bye!
497         int ret;
498         do {
499                 ret = close(client->sock);
500         } while (ret == -1 && errno == EINTR);
501
502         if (ret == -1) {
503                 perror("close");
504         }
505
506         clients.erase(client->sock);
507 }
508         
509 Stream *Server::find_stream(const string &stream_id)
510 {
511         map<string, Stream *>::iterator it = streams.find(stream_id);
512         assert(it != streams.end());
513         return it->second;
514 }
515
516 void Server::process_queued_data()
517 {
518         MutexLock lock(&queued_data_mutex);
519
520         for (size_t i = 0; i < queued_add_clients.size(); ++i) {
521                 add_client(queued_add_clients[i]);
522         }
523         queued_add_clients.clear();     
524         
525         for (map<string, string>::iterator queued_it = queued_data.begin();
526              queued_it != queued_data.end();
527              ++queued_it) {
528                 Stream *stream = find_stream(queued_it->first);
529                 stream->add_data(queued_it->second.data(), queued_it->second.size());
530         }
531         queued_data.clear();
532 }