aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd_ssi.c
blob: f75805923549c206f8b37db19b17134e40a6b48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * Copyright (c) 2009 Denys Vlasenko <vda.linux@googlemail.com>
 *
 * Licensed under GPLv2, see file LICENSE in this tarball for details.
 */

/*
 * This program is a CGI application. It processes server-side includes:
 * <!--#include file="file.html" -->
 */

/* Build a-la
i486-linux-uclibc-gcc \
-static -static-libgcc \
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \
-Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Werror \
-Wold-style-definition -Wdeclaration-after-statement -Wno-pointer-sign \
-Wmissing-prototypes -Wmissing-declarations \
-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer \
-ffunction-sections -fdata-sections -fno-guess-branch-probability \
-funsigned-char \
-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 \
-march=i386 -mpreferred-stack-boundary=2 \
-Wl,-Map -Wl,link.map -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
httpd_ssi.c -o httpd_ssi
*/

/* Size (i386, static uclibc, approximate):
   text    data     bss     dec     hex filename
   8931     164   68552   77647   12f4f httpd_ssi
*/

#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
#include <time.h>

static char line[64 * 1024];

/*
 * Currently only handles directives which are alone on the line
 */
static void process_includes(const char *filename)
{
	FILE *fp = fopen(filename, "r");
	if (!fp)
		exit(1);

#define INCLUDE "<!--#include file=\""
	while (fgets(line, sizeof(line), fp)) {
		char *closing_dq;

		/* FIXME: output text leading to INCLUDE first */
		if (strncmp(line, INCLUDE, sizeof(INCLUDE)-1) != 0
		 || (closing_dq = strchr(line + sizeof(INCLUDE)-1, '"')) == NULL
		/* or strstr(line + sizeof(INCLUDE)-1, "\" -->")? */
		) {
			fputs(line, stdout);
			continue;
		}
		*closing_dq = '\0';
		/* FIXME: (1) are relative paths ok?
		 * (2) if we include a/1.htm and it includes b/2.htm,
		 * do we need to insert a/b/2.htm or b/2.htm?
		 * IOW, do we need to "cd $dirname"?
		 */
		process_includes(line + sizeof(INCLUDE)-1);
		/* FIXME: this should be the tail of line after --> */
		putchar('\n');
	}
}

int main(int argc, char *argv[])
{
	if (!argv[1])
		return 1;

	/* Seen from busybox.net's Apache:
	 * HTTP/1.1 200 OK
	 * Date: Thu, 10 Sep 2009 18:23:28 GMT
	 * Server: Apache
	 * Accept-Ranges: bytes
	 * Connection: close
	 * Content-Type: text/html
	 */
	printf(
		/* "Date: Thu, 10 Sep 2009 18:23:28 GMT\r\n" */
		/* "Server: Apache\r\n" */
		/* "Accept-Ranges: bytes\r\n" - do we really accept bytes?! */
		"Connection: close\r\n"
		"Content-Type: text/html\r\n"
		"\r\n"
	);
	process_includes(argv[1]);
	return 0;
}