945be1604615a76a75356bc58fb3444fe97181ea
[project/uhttpd.git] / main.c
1 /*
2  * uhttpd - Tiny single-threaded httpd
3  *
4  *   Copyright (C) 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
5  *   Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
6  *
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  */
19
20 #include <sys/types.h>
21 #include <sys/socket.h>
22 #include <netinet/in.h>
23
24 #include <getopt.h>
25 #include <errno.h>
26 #include <netdb.h>
27 #include <signal.h>
28
29 #include <libubox/usock.h>
30
31 #include "uhttpd.h"
32
33
34 static int run_server(void)
35 {
36         uloop_init();
37         uh_setup_listeners();
38         uloop_run();
39
40         return 0;
41 }
42
43 static void add_listener_arg(char *arg, bool tls)
44 {
45         char *host = NULL;
46         char *port = arg;
47         char *s;
48
49         s = strrchr(arg, ':');
50         if (s) {
51                 host = arg;
52                 port = s + 1;
53                 *s = 0;
54         }
55         uh_socket_bind(host, port, tls);
56 }
57
58 static int usage(const char *name)
59 {
60         fprintf(stderr, "Usage: %s -p <port>\n", name);
61         return 1;
62 }
63
64 static void init_defaults(void)
65 {
66         conf.network_timeout = 30;
67         conf.http_keepalive = 0; /* fixme */
68         conf.max_requests = 3;
69
70         uh_index_add("index.html");
71         uh_index_add("index.htm");
72         uh_index_add("default.html");
73         uh_index_add("default.htm");
74 }
75
76 int main(int argc, char **argv)
77 {
78         int ch;
79
80         init_defaults();
81         signal(SIGPIPE, SIG_IGN);
82
83         while ((ch = getopt(argc, argv, "sp:h:")) != -1) {
84                 bool tls = false;
85                 switch(ch) {
86                 case 's':
87                         tls = true;
88                 case 'p':
89                         add_listener_arg(optarg, tls);
90                         break;
91
92                 case 'h':
93                         /* docroot */
94                         if (!realpath(optarg, conf.docroot)) {
95                                 fprintf(stderr, "Error: Invalid directory %s: %s\n",
96                                                 optarg, strerror(errno));
97                                 exit(1);
98                         }
99                         break;
100                 default:
101                         return usage(argv[0]);
102                 }
103         }
104
105         return run_server();
106 }