]> git.sesse.net Git - cubemap/blob - main.cpp
5ba79f95a6baa30cddd1d9f6c085274ff455f487
[cubemap] / main.cpp
1 #include <assert.h>
2 #include <errno.h>
3 #include <getopt.h>
4 #include <limits.h>
5 #include <signal.h>
6 #include <stddef.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <sys/time.h>
11 #include <sys/wait.h>
12 #include <unistd.h>
13 #include <map>
14 #include <set>
15 #include <string>
16 #include <utility>
17 #include <vector>
18
19 #include "acceptor.h"
20 #include "accesslog.h"
21 #include "config.h"
22 #include "input.h"
23 #include "input_stats.h"
24 #include "log.h"
25 #include "sa_compare.h"
26 #include "serverpool.h"
27 #include "state.pb.h"
28 #include "stats.h"
29 #include "stream.h"
30 #include "util.h"
31 #include "version.h"
32
33 using namespace std;
34
35 AccessLogThread *access_log = NULL;
36 ServerPool *servers = NULL;
37 volatile bool hupped = false;
38 volatile bool stopped = false;
39
40 struct InputWithRefcount {
41         Input *input;
42         int refcount;
43 };
44
45 void hup(int signum)
46 {
47         hupped = true;
48         if (signum == SIGINT) {
49                 stopped = true;
50         }
51 }
52
53 void do_nothing(int signum)
54 {
55 }
56
57 CubemapStateProto collect_state(const timeval &serialize_start,
58                                 const vector<Acceptor *> acceptors,
59                                 const multimap<string, InputWithRefcount> inputs,
60                                 ServerPool *servers)
61 {
62         CubemapStateProto state = servers->serialize();  // Fills streams() and clients().
63         state.set_serialize_start_sec(serialize_start.tv_sec);
64         state.set_serialize_start_usec(serialize_start.tv_usec);
65         
66         for (size_t i = 0; i < acceptors.size(); ++i) {
67                 state.add_acceptors()->MergeFrom(acceptors[i]->serialize());
68         }
69
70         for (multimap<string, InputWithRefcount>::const_iterator input_it = inputs.begin();
71              input_it != inputs.end();
72              ++input_it) {
73                 state.add_inputs()->MergeFrom(input_it->second.input->serialize());
74         }
75
76         return state;
77 }
78
79 // Find all port statements in the configuration file, and create acceptors for htem.
80 vector<Acceptor *> create_acceptors(
81         const Config &config,
82         map<sockaddr_in6, Acceptor *, Sockaddr6Compare> *deserialized_acceptors)
83 {
84         vector<Acceptor *> acceptors;
85         for (unsigned i = 0; i < config.acceptors.size(); ++i) {
86                 const AcceptorConfig &acceptor_config = config.acceptors[i];
87                 Acceptor *acceptor = NULL;
88                 map<sockaddr_in6, Acceptor *, Sockaddr6Compare>::iterator deserialized_acceptor_it =
89                         deserialized_acceptors->find(acceptor_config.addr);
90                 if (deserialized_acceptor_it != deserialized_acceptors->end()) {
91                         acceptor = deserialized_acceptor_it->second;
92                         deserialized_acceptors->erase(deserialized_acceptor_it);
93                 } else {
94                         int server_sock = create_server_socket(acceptor_config.addr, TCP_SOCKET);
95                         acceptor = new Acceptor(server_sock, acceptor_config.addr);
96                 }
97                 acceptor->run();
98                 acceptors.push_back(acceptor);
99         }
100
101         // Close all acceptors that are no longer in the configuration file.
102         for (map<sockaddr_in6, Acceptor *, Sockaddr6Compare>::iterator
103                  acceptor_it = deserialized_acceptors->begin();
104              acceptor_it != deserialized_acceptors->end();
105              ++acceptor_it) {
106                 acceptor_it->second->close_socket();
107                 delete acceptor_it->second;
108         }
109
110         return acceptors;
111 }
112
113 void create_config_input(const string &src, multimap<string, InputWithRefcount> *inputs)
114 {
115         if (src.empty()) {
116                 return;
117         }
118         if (inputs->count(src) != 0) {
119                 return;
120         }
121
122         InputWithRefcount iwr;
123         iwr.input = create_input(src);
124         if (iwr.input == NULL) {
125                 log(ERROR, "did not understand URL '%s', clients will not get any data.",
126                         src.c_str());
127                 return;
128         }
129         iwr.refcount = 0;
130         inputs->insert(make_pair(src, iwr));
131 }
132
133 // Find all streams in the configuration file, and create inputs for them.
134 void create_config_inputs(const Config &config, multimap<string, InputWithRefcount> *inputs)
135 {
136         for (unsigned i = 0; i < config.streams.size(); ++i) {
137                 const StreamConfig &stream_config = config.streams[i];
138                 if (stream_config.src != "delete") {
139                         create_config_input(stream_config.src, inputs);
140                 }
141         }
142         for (unsigned i = 0; i < config.udpstreams.size(); ++i) {
143                 const UDPStreamConfig &udpstream_config = config.udpstreams[i];
144                 create_config_input(udpstream_config.src, inputs);
145         }
146 }
147
148 void create_streams(const Config &config,
149                     const set<string> &deserialized_urls,
150                     multimap<string, InputWithRefcount> *inputs)
151 {
152         // HTTP streams.
153         set<string> expecting_urls = deserialized_urls;
154         for (unsigned i = 0; i < config.streams.size(); ++i) {
155                 const StreamConfig &stream_config = config.streams[i];
156                 int stream_index;
157
158                 expecting_urls.erase(stream_config.url);
159
160                 // Special-case deleted streams; they were never deserialized in the first place,
161                 // so just ignore them.
162                 if (stream_config.src == "delete") {
163                         continue;
164                 }
165
166                 if (deserialized_urls.count(stream_config.url) == 0) {
167                         stream_index = servers->add_stream(stream_config.url,
168                                                            stream_config.backlog_size,
169                                                            Stream::Encoding(stream_config.encoding));
170                 } else {
171                         stream_index = servers->lookup_stream_by_url(stream_config.url);
172                         assert(stream_index != -1);
173                         servers->set_backlog_size(stream_index, stream_config.backlog_size);
174                         servers->set_encoding(stream_index,
175                                               Stream::Encoding(stream_config.encoding));
176                 }
177
178                 servers->set_pacing_rate(stream_index, stream_config.pacing_rate);
179
180                 string src = stream_config.src;
181                 if (!src.empty()) {
182                         multimap<string, InputWithRefcount>::iterator input_it = inputs->find(src);
183                         if (input_it != inputs->end()) {
184                                 input_it->second.input->add_destination(stream_index);
185                                 ++input_it->second.refcount;
186                         }
187                 }
188         }
189
190         // Warn about any streams servers we've lost.
191         for (set<string>::const_iterator stream_it = expecting_urls.begin();
192              stream_it != expecting_urls.end();
193              ++stream_it) {
194                 string url = *stream_it;
195                 log(WARNING, "stream '%s' disappeared from the configuration file. "
196                              "It will not be deleted, but clients will not get any new inputs. "
197                              "If you really meant to delete it, set src=delete and reload.",
198                              url.c_str());
199         }
200
201         // UDP streams.
202         for (unsigned i = 0; i < config.udpstreams.size(); ++i) {
203                 const UDPStreamConfig &udpstream_config = config.udpstreams[i];
204                 int stream_index = servers->add_udpstream(udpstream_config.dst, udpstream_config.pacing_rate);
205
206                 string src = udpstream_config.src;
207                 if (!src.empty()) {
208                         multimap<string, InputWithRefcount>::iterator input_it = inputs->find(src);
209                         assert(input_it != inputs->end());
210                         input_it->second.input->add_destination(stream_index);
211                         ++input_it->second.refcount;
212                 }
213         }
214 }
215         
216 void open_logs(const vector<LogConfig> &log_destinations)
217 {
218         for (size_t i = 0; i < log_destinations.size(); ++i) {
219                 if (log_destinations[i].type == LogConfig::LOG_TYPE_FILE) {
220                         add_log_destination_file(log_destinations[i].filename);
221                 } else if (log_destinations[i].type == LogConfig::LOG_TYPE_CONSOLE) {
222                         add_log_destination_console();
223                 } else if (log_destinations[i].type == LogConfig::LOG_TYPE_SYSLOG) {
224                         add_log_destination_syslog();
225                 } else {
226                         assert(false);
227                 }
228         }
229         start_logging();
230 }
231         
232 bool dry_run_config(const std::string &argv0, const std::string &config_filename)
233 {
234         char *argv0_copy = strdup(argv0.c_str());
235         char *config_filename_copy = strdup(config_filename.c_str());
236
237         pid_t pid = fork();
238         switch (pid) {
239         case -1:
240                 log_perror("fork()");
241                 free(argv0_copy);
242                 free(config_filename_copy);
243                 return false;
244         case 0:
245                 // Child.
246                 execlp(argv0_copy, argv0_copy, "--test-config", config_filename_copy, NULL);
247                 log_perror(argv0_copy);
248                 _exit(1);
249         default:
250                 // Parent.
251                 break;
252         }
253                 
254         free(argv0_copy);
255         free(config_filename_copy);
256
257         int status;
258         pid_t err;
259         do {
260                 err = waitpid(pid, &status, 0);
261         } while (err == -1 && errno == EINTR);
262
263         if (err == -1) {
264                 log_perror("waitpid()");
265                 return false;
266         }       
267
268         return (WIFEXITED(status) && WEXITSTATUS(status) == 0);
269 }
270
271 void find_deleted_streams(const Config &config, set<string> *deleted_urls)
272 {
273         for (unsigned i = 0; i < config.streams.size(); ++i) {
274                 const StreamConfig &stream_config = config.streams[i];
275                 if (stream_config.src == "delete") {
276                         log(INFO, "Deleting stream '%s'.", stream_config.url.c_str());
277                         deleted_urls->insert(stream_config.url);
278                 }
279         }
280 }
281
282 int main(int argc, char **argv)
283 {
284         signal(SIGHUP, hup);
285         signal(SIGINT, hup);
286         signal(SIGUSR1, do_nothing);  // Used in internal signalling.
287         signal(SIGPIPE, SIG_IGN);
288         
289         // Parse options.
290         int state_fd = -1;
291         bool test_config = false;
292         for ( ;; ) {
293                 static const option long_options[] = {
294                         { "state", required_argument, 0, 's' },
295                         { "test-config", no_argument, 0, 't' },
296                         { 0, 0, 0, 0 }
297                 };
298                 int option_index = 0;
299                 int c = getopt_long(argc, argv, "s:t", long_options, &option_index);
300      
301                 if (c == -1) {
302                         break;
303                 }
304                 switch (c) {
305                 case 's':
306                         state_fd = atoi(optarg);
307                         break;
308                 case 't':
309                         test_config = true;
310                         break;
311                 default:
312                         fprintf(stderr, "Unknown option '%s'\n", argv[option_index]);
313                         exit(1);
314                 }
315         }
316
317         string config_filename = "cubemap.config";
318         if (optind < argc) {
319                 config_filename = argv[optind++];
320         }
321
322         // Canonicalize argv[0] and config_filename.
323         char argv0_canon[PATH_MAX];
324         char config_filename_canon[PATH_MAX];
325
326         if (realpath("/proc/self/exe", argv0_canon) == NULL) {
327                 log_perror(argv[0]);
328                 exit(1);
329         }
330         if (realpath(config_filename.c_str(), config_filename_canon) == NULL) {
331                 log_perror(config_filename.c_str());
332                 exit(1);
333         }
334
335         // Now parse the configuration file.
336         Config config;
337         if (!parse_config(config_filename_canon, &config)) {
338                 exit(1);
339         }
340         if (test_config) {
341                 exit(0);
342         }
343         
344         // Ideally we'd like to daemonize only when we've started up all threads etc.,
345         // but daemon() forks, which is not good in multithreaded software, so we'll
346         // have to do it here.
347         if (config.daemonize) {
348                 if (daemon(0, 0) == -1) {
349                         log_perror("daemon");
350                         exit(1);
351                 }
352         }
353
354 start:
355         // Open logs as soon as possible.
356         open_logs(config.log_destinations);
357
358         log(INFO, "Cubemap " SERVER_VERSION " starting.");
359         if (config.access_log_file.empty()) {
360                 // Create a dummy logger.
361                 access_log = new AccessLogThread();
362         } else {
363                 access_log = new AccessLogThread(config.access_log_file);
364         }
365         access_log->run();
366
367         servers = new ServerPool(config.num_servers);
368
369         // Find all the streams that are to be deleted.
370         set<string> deleted_urls;
371         find_deleted_streams(config, &deleted_urls);
372
373         CubemapStateProto loaded_state;
374         struct timeval serialize_start;
375         set<string> deserialized_urls;
376         map<sockaddr_in6, Acceptor *, Sockaddr6Compare> deserialized_acceptors;
377         multimap<string, InputWithRefcount> inputs;  // multimap due to older versions without deduplication.
378         if (state_fd != -1) {
379                 log(INFO, "Deserializing state from previous process...");
380                 string serialized;
381                 if (!read_tempfile_and_close(state_fd, &serialized)) {
382                         exit(1);
383                 }
384                 if (!loaded_state.ParseFromString(serialized)) {
385                         log(ERROR, "Failed deserialization of state.");
386                         exit(1);
387                 }
388
389                 serialize_start.tv_sec = loaded_state.serialize_start_sec();
390                 serialize_start.tv_usec = loaded_state.serialize_start_usec();
391
392                 // Deserialize the streams.
393                 map<string, string> stream_headers_for_url;  // See below.
394                 for (int i = 0; i < loaded_state.streams_size(); ++i) {
395                         const StreamProto &stream = loaded_state.streams(i);
396
397                         if (deleted_urls.count(stream.url()) != 0) {
398                                 // Delete the stream backlogs.
399                                 for (int j = 0; j < stream.data_fds_size(); ++j) {
400                                         safe_close(stream.data_fds(j));
401                                 }
402                         } else {
403                                 vector<int> data_fds;
404                                 for (int j = 0; j < stream.data_fds_size(); ++j) {
405                                         data_fds.push_back(stream.data_fds(j));
406                                 }
407
408                                 servers->add_stream_from_serialized(stream, data_fds);
409                                 deserialized_urls.insert(stream.url());
410
411                                 stream_headers_for_url.insert(make_pair(stream.url(), stream.stream_header()));
412                         }
413                 }
414
415                 // Deserialize the inputs. Note that we don't actually add them to any stream yet.
416                 for (int i = 0; i < loaded_state.inputs_size(); ++i) {
417                         InputProto serialized_input = loaded_state.inputs(i);
418
419                         InputWithRefcount iwr;
420                         iwr.input = create_input(serialized_input);
421                         iwr.refcount = 0;
422                         inputs.insert(make_pair(serialized_input.url(), iwr));
423                 } 
424
425                 // Deserialize the acceptors.
426                 for (int i = 0; i < loaded_state.acceptors_size(); ++i) {
427                         sockaddr_in6 sin6 = ExtractAddressFromAcceptorProto(loaded_state.acceptors(i));
428                         deserialized_acceptors.insert(make_pair(
429                                 sin6,
430                                 new Acceptor(loaded_state.acceptors(i))));
431                 }
432
433                 log(INFO, "Deserialization done.");
434         }
435
436         // Add any new inputs coming from the config.
437         create_config_inputs(config, &inputs);
438         
439         // Find all streams in the configuration file, create them, and connect to the inputs.
440         create_streams(config, deserialized_urls, &inputs);
441         vector<Acceptor *> acceptors = create_acceptors(config, &deserialized_acceptors);
442         
443         // Put back the existing clients. It doesn't matter which server we
444         // allocate them to, so just do round-robin.
445         for (int i = 0; i < loaded_state.clients_size(); ++i) {
446                 if (deleted_urls.count(loaded_state.clients(i).url()) != 0) {
447                         safe_close(loaded_state.clients(i).sock());
448                 } else {
449                         servers->add_client_from_serialized(loaded_state.clients(i));
450                 }
451         }
452         
453         servers->run();
454
455         // Now delete all inputs that are longer in use, and start the others.
456         for (multimap<string, InputWithRefcount>::iterator input_it = inputs.begin();
457              input_it != inputs.end(); ) {
458                 if (input_it->second.refcount == 0) {
459                         log(WARNING, "Input '%s' no longer in use, closing.",
460                             input_it->first.c_str());
461                         input_it->second.input->close_socket();
462                         delete input_it->second.input;
463                         inputs.erase(input_it++);
464                 } else {
465                         input_it->second.input->run();
466                         ++input_it;
467                 }
468         }
469
470         // Start writing statistics.
471         StatsThread *stats_thread = NULL;
472         if (!config.stats_file.empty()) {
473                 stats_thread = new StatsThread(config.stats_file, config.stats_interval);
474                 stats_thread->run();
475         }
476
477         InputStatsThread *input_stats_thread = NULL;
478         if (!config.input_stats_file.empty()) {
479                 vector<Input*> inputs_no_refcount;
480                 for (multimap<string, InputWithRefcount>::iterator input_it = inputs.begin();
481                      input_it != inputs.end(); ++input_it) {
482                         inputs_no_refcount.push_back(input_it->second.input);
483                 }
484
485                 input_stats_thread = new InputStatsThread(config.input_stats_file, config.input_stats_interval, inputs_no_refcount);
486                 input_stats_thread->run();
487         }
488
489         struct timeval server_start;
490         gettimeofday(&server_start, NULL);
491         if (state_fd != -1) {
492                 // Measure time from we started deserializing (below) to now, when basically everything
493                 // is up and running. This is, in other words, a conservative estimate of how long our
494                 // “glitch” period was, not counting of course reconnects if the configuration changed.
495                 double glitch_time = server_start.tv_sec - serialize_start.tv_sec +
496                         1e-6 * (server_start.tv_usec - serialize_start.tv_usec);
497                 log(INFO, "Re-exec happened in approx. %.0f ms.", glitch_time * 1000.0);
498         }
499
500         while (!hupped) {
501                 usleep(100000);
502         }
503
504         // OK, we've been HUPed. Time to shut down everything, serialize, and re-exec.
505         gettimeofday(&serialize_start, NULL);
506
507         if (input_stats_thread != NULL) {
508                 input_stats_thread->stop();
509                 delete input_stats_thread;
510         }
511         if (stats_thread != NULL) {
512                 stats_thread->stop();
513                 delete stats_thread;
514         }
515         for (size_t i = 0; i < acceptors.size(); ++i) {
516                 acceptors[i]->stop();
517         }
518         for (multimap<string, InputWithRefcount>::iterator input_it = inputs.begin();
519              input_it != inputs.end();
520              ++input_it) {
521                 input_it->second.input->stop();
522         }
523         servers->stop();
524
525         CubemapStateProto state;
526         if (stopped) {
527                 log(INFO, "Shutting down.");
528         } else {
529                 log(INFO, "Serializing state and re-execing...");
530                 state = collect_state(
531                         serialize_start, acceptors, inputs, servers);
532                 string serialized;
533                 state.SerializeToString(&serialized);
534                 state_fd = make_tempfile(serialized);
535                 if (state_fd == -1) {
536                         exit(1);
537                 }
538         }
539         delete servers;
540
541         access_log->stop();
542         delete access_log;
543         shut_down_logging();
544
545         if (stopped) {
546                 exit(0);
547         }
548
549         // OK, so the signal was SIGHUP. Check that the new config is okay, then exec the new binary.
550         if (!dry_run_config(argv0_canon, config_filename_canon)) {
551                 open_logs(config.log_destinations);
552                 log(ERROR, "%s --test-config failed. Restarting old version instead of new.", argv[0]);
553                 hupped = false;
554                 shut_down_logging();
555                 goto start;
556         }
557          
558         char buf[16];
559         sprintf(buf, "%d", state_fd);
560
561         for ( ;; ) {
562                 execlp(argv0_canon, argv0_canon, config_filename_canon, "--state", buf, NULL);
563                 open_logs(config.log_destinations);
564                 log_perror("execlp");
565                 log(ERROR, "re-exec of %s failed. Waiting 0.2 seconds and trying again...", argv0_canon);
566                 shut_down_logging();
567                 usleep(200000);
568         }
569 }