1 /* $NetBSD: http-server.c,v 1.1.1.2 2015/01/29 06:38:19 spz Exp $ */
3 A trivial static http webserver using Libevent's evhttp.
5 This is not the best code in the world, and it does some fairly stupid stuff
6 that you would never want to do in a production webserver. Caveat hackor!
14 #include <sys/types.h>
24 #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
28 #include <sys/socket.h>
35 #include <event2/event.h>
36 #include <event2/http.h>
37 #include <event2/buffer.h>
38 #include <event2/util.h>
39 #include <event2/keyvalq_struct.h>
41 #ifdef _EVENT_HAVE_NETINET_IN_H
42 #include <netinet/in.h>
43 # ifdef _XOPEN_SOURCE_EXTENDED
44 # include <arpa/inet.h>
48 /* Compatibility for possible missing IPv6 declarations */
49 #include "../util-internal.h"
56 #define O_RDONLY _O_RDONLY
61 static const struct table_entry
{
62 const char *extension
;
63 const char *content_type
;
64 } content_type_table
[] = {
65 { "txt", "text/plain" },
66 { "c", "text/plain" },
67 { "h", "text/plain" },
68 { "html", "text/html" },
69 { "htm", "text/htm" },
70 { "css", "text/css" },
71 { "gif", "image/gif" },
72 { "jpg", "image/jpeg" },
73 { "jpeg", "image/jpeg" },
74 { "png", "image/png" },
75 { "pdf", "application/pdf" },
76 { "ps", "application/postsript" },
80 /* Try to guess a good content-type for 'path' */
82 guess_content_type(const char *path
)
84 const char *last_period
, *extension
;
85 const struct table_entry
*ent
;
86 last_period
= strrchr(path
, '.');
87 if (!last_period
|| strchr(last_period
, '/'))
88 goto not_found
; /* no exension */
89 extension
= last_period
+ 1;
90 for (ent
= &content_type_table
[0]; ent
->extension
; ++ent
) {
91 if (!evutil_ascii_strcasecmp(ent
->extension
, extension
))
92 return ent
->content_type
;
96 return "application/misc";
99 /* Callback used for the /dump URI, and for every non-GET request:
100 * dumps all information to stdout and gives back a trivial 200 ok */
102 dump_request_cb(struct evhttp_request
*req
, void *arg
)
105 struct evkeyvalq
*headers
;
106 struct evkeyval
*header
;
107 struct evbuffer
*buf
;
109 switch (evhttp_request_get_command(req
)) {
110 case EVHTTP_REQ_GET
: cmdtype
= "GET"; break;
111 case EVHTTP_REQ_POST
: cmdtype
= "POST"; break;
112 case EVHTTP_REQ_HEAD
: cmdtype
= "HEAD"; break;
113 case EVHTTP_REQ_PUT
: cmdtype
= "PUT"; break;
114 case EVHTTP_REQ_DELETE
: cmdtype
= "DELETE"; break;
115 case EVHTTP_REQ_OPTIONS
: cmdtype
= "OPTIONS"; break;
116 case EVHTTP_REQ_TRACE
: cmdtype
= "TRACE"; break;
117 case EVHTTP_REQ_CONNECT
: cmdtype
= "CONNECT"; break;
118 case EVHTTP_REQ_PATCH
: cmdtype
= "PATCH"; break;
119 default: cmdtype
= "unknown"; break;
122 printf("Received a %s request for %s\nHeaders:\n",
123 cmdtype
, evhttp_request_get_uri(req
));
125 headers
= evhttp_request_get_input_headers(req
);
126 for (header
= headers
->tqh_first
; header
;
127 header
= header
->next
.tqe_next
) {
128 printf(" %s: %s\n", header
->key
, header
->value
);
131 buf
= evhttp_request_get_input_buffer(req
);
132 puts("Input data: <<<");
133 while (evbuffer_get_length(buf
)) {
136 n
= evbuffer_remove(buf
, cbuf
, sizeof(cbuf
));
138 (void) fwrite(cbuf
, 1, n
, stdout
);
142 evhttp_send_reply(req
, 200, "OK", NULL
);
145 /* This callback gets invoked when we get any http request that doesn't match
146 * any other callback. Like any evhttp server callback, it has a simple job:
147 * it must eventually call evhttp_send_error() or evhttp_send_reply().
150 send_document_cb(struct evhttp_request
*req
, void *arg
)
152 struct evbuffer
*evb
= NULL
;
153 const char *docroot
= arg
;
154 const char *uri
= evhttp_request_get_uri(req
);
155 struct evhttp_uri
*decoded
= NULL
;
158 char *whole_path
= NULL
;
163 if (evhttp_request_get_command(req
) != EVHTTP_REQ_GET
) {
164 dump_request_cb(req
, arg
);
168 printf("Got a GET request for <%s>\n", uri
);
171 decoded
= evhttp_uri_parse(uri
);
173 printf("It's not a good URI. Sending BADREQUEST\n");
174 evhttp_send_error(req
, HTTP_BADREQUEST
, 0);
178 /* Let's see what path the user asked for. */
179 path
= evhttp_uri_get_path(decoded
);
180 if (!path
) path
= "/";
182 /* We need to decode it, to see what path the user really wanted. */
183 decoded_path
= evhttp_uridecode(path
, 0, NULL
);
184 if (decoded_path
== NULL
)
186 /* Don't allow any ".."s in the path, to avoid exposing stuff outside
187 * of the docroot. This test is both overzealous and underzealous:
188 * it forbids aceptable paths like "/this/one..here", but it doesn't
189 * do anything to prevent symlink following." */
190 if (strstr(decoded_path
, ".."))
193 len
= strlen(decoded_path
)+strlen(docroot
)+2;
194 if (!(whole_path
= malloc(len
))) {
198 evutil_snprintf(whole_path
, len
, "%s/%s", docroot
, decoded_path
);
200 if (stat(whole_path
, &st
)<0) {
204 /* This holds the content we're sending. */
205 evb
= evbuffer_new();
207 if (S_ISDIR(st
.st_mode
)) {
208 /* If it's a directory, read the comments and make a little
212 WIN32_FIND_DATAA ent
;
219 const char *trailing_slash
= "";
221 if (!strlen(path
) || path
[strlen(path
)-1] != '/')
222 trailing_slash
= "/";
225 dirlen
= strlen(whole_path
);
226 pattern
= malloc(dirlen
+3);
227 memcpy(pattern
, whole_path
, dirlen
);
228 pattern
[dirlen
] = '\\';
229 pattern
[dirlen
+1] = '*';
230 pattern
[dirlen
+2] = '\0';
231 d
= FindFirstFileA(pattern
, &ent
);
233 if (d
== INVALID_HANDLE_VALUE
)
236 if (!(d
= opendir(whole_path
)))
240 evbuffer_add_printf(evb
, "<html>\n <head>\n"
241 " <title>%s</title>\n"
242 " <base href='%s%s%s'>\n"
247 decoded_path
, /* XXX html-escape this. */
248 uri_root
, path
, /* XXX html-escape this? */
250 decoded_path
/* XXX html-escape this */);
253 const char *name
= ent
.cFileName
;
255 while ((ent
= readdir(d
))) {
256 const char *name
= ent
->d_name
;
258 evbuffer_add_printf(evb
,
259 " <li><a href=\"%s\">%s</a>\n",
260 name
, name
);/* XXX escape this */
262 } while (FindNextFileA(d
, &ent
));
266 evbuffer_add_printf(evb
, "</ul></body></html>\n");
272 evhttp_add_header(evhttp_request_get_output_headers(req
),
273 "Content-Type", "text/html");
275 /* Otherwise it's a file; add it to the buffer to get
276 * sent via sendfile */
277 const char *type
= guess_content_type(decoded_path
);
278 if ((fd
= open(whole_path
, O_RDONLY
)) < 0) {
283 if (fstat(fd
, &st
)<0) {
284 /* Make sure the length still matches, now that we
285 * opened the file :/ */
289 evhttp_add_header(evhttp_request_get_output_headers(req
),
290 "Content-Type", type
);
291 evbuffer_add_file(evb
, fd
, 0, st
.st_size
);
294 evhttp_send_reply(req
, 200, "OK", evb
);
297 evhttp_send_error(req
, 404, "Document was not found");
302 evhttp_uri_free(decoded
);
314 fprintf(stdout
, "Syntax: http-server <docroot>\n");
318 main(int argc
, char **argv
)
320 struct event_base
*base
;
322 struct evhttp_bound_socket
*handle
;
324 unsigned short port
= 0;
327 WSAStartup(0x101, &WSAData
);
329 if (signal(SIGPIPE
, SIG_IGN
) == SIG_ERR
)
337 base
= event_base_new();
339 fprintf(stderr
, "Couldn't create an event_base: exiting\n");
343 /* Create a new evhttp object to handle requests. */
344 http
= evhttp_new(base
);
346 fprintf(stderr
, "couldn't create evhttp. Exiting.\n");
350 /* The /dump URI will dump all requests to stdout and say 200 ok. */
351 evhttp_set_cb(http
, "/dump", dump_request_cb
, NULL
);
353 /* We want to accept arbitrary requests, so we need to set a "generic"
354 * cb. We can also add callbacks for specific paths. */
355 evhttp_set_gencb(http
, send_document_cb
, argv
[1]);
357 /* Now we tell the evhttp what port to listen on */
358 handle
= evhttp_bind_socket_with_handle(http
, "0.0.0.0", port
);
360 fprintf(stderr
, "couldn't bind to port %d. Exiting.\n",
366 /* Extract and display the address we're listening on. */
367 struct sockaddr_storage ss
;
369 ev_socklen_t socklen
= sizeof(ss
);
374 fd
= evhttp_bound_socket_get_fd(handle
);
375 memset(&ss
, 0, sizeof(ss
));
376 if (getsockname(fd
, (struct sockaddr
*)&ss
, &socklen
)) {
377 perror("getsockname() failed");
380 if (ss
.ss_family
== AF_INET
) {
381 got_port
= ntohs(((struct sockaddr_in
*)&ss
)->sin_port
);
382 inaddr
= &((struct sockaddr_in
*)&ss
)->sin_addr
;
383 } else if (ss
.ss_family
== AF_INET6
) {
384 got_port
= ntohs(((struct sockaddr_in6
*)&ss
)->sin6_port
);
385 inaddr
= &((struct sockaddr_in6
*)&ss
)->sin6_addr
;
387 fprintf(stderr
, "Weird address family %d\n",
391 addr
= evutil_inet_ntop(ss
.ss_family
, inaddr
, addrbuf
,
394 printf("Listening on %s:%d\n", addr
, got_port
);
395 evutil_snprintf(uri_root
, sizeof(uri_root
),
396 "http://%s:%d",addr
,got_port
);
398 fprintf(stderr
, "evutil_inet_ntop failed\n");
403 event_base_dispatch(base
);