summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authormrg <mrg@pkgsrc.org>2004-08-20 03:06:38 +0000
committermrg <mrg@pkgsrc.org>2004-08-20 03:06:38 +0000
commit02ec5ad70a7b4fb2cee9288de484100c48b91a7c (patch)
tree2f5e2e7c7c2dc0466cc2627d6f1c774bb1e71368 /www
parentf0354340af7b3b46589082f6decdcc45494bb8bc (diff)
downloadpkgsrc-02ec5ad70a7b4fb2cee9288de484100c48b91a7c.tar.gz
update to bozohttpd 20040808. changes since previous version (many
already in pkgsrc) include: o CGI status is now properly handled (-a flag has been removed) o CGI file upload support works o %xy translations are no longer ever applied after the first '?', ala RFC2396. from lukem o daemon mode (-b) should no longer hang spinning forever if it sees no children. from lukem o new .bzabsredirect file support. from <martin@netbsd.org> o return a 404 error if we see %00 or %2f (/) o don't print 2 "200" headers for CGI o support .torrent files
Diffstat (limited to 'www')
-rw-r--r--www/bozohttpd/Makefile5
-rw-r--r--www/bozohttpd/distinfo8
-rw-r--r--www/bozohttpd/patches/patch-aa241
-rw-r--r--www/bozohttpd/patches/patch-ab27
4 files changed, 5 insertions, 276 deletions
diff --git a/www/bozohttpd/Makefile b/www/bozohttpd/Makefile
index aedaab31e74..0ab9c0cff01 100644
--- a/www/bozohttpd/Makefile
+++ b/www/bozohttpd/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.44 2004/06/21 01:45:22 lukem Exp $
+# $NetBSD: Makefile,v 1.45 2004/08/20 03:06:38 mrg Exp $
#
-DISTNAME= bozohttpd-20040218
-PKGREVISION= 6
+DISTNAME= bozohttpd-20040808
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_LOCAL}
EXTRACT_SUFX= .tar.bz2
diff --git a/www/bozohttpd/distinfo b/www/bozohttpd/distinfo
index 3c8bed3ec57..b3ffa88dcf4 100644
--- a/www/bozohttpd/distinfo
+++ b/www/bozohttpd/distinfo
@@ -1,6 +1,4 @@
-$NetBSD: distinfo,v 1.35 2004/06/21 01:45:22 lukem Exp $
+$NetBSD: distinfo,v 1.36 2004/08/20 03:06:38 mrg Exp $
-SHA1 (bozohttpd-20040218.tar.bz2) = 849753fd96c75a2df7b7f79a0be329d52eabeaf9
-Size (bozohttpd-20040218.tar.bz2) = 31936 bytes
-SHA1 (patch-aa) = 7460e5725c82d36c9c7ba284df6e7ffe131e44d5
-SHA1 (patch-ab) = 900a578833b82d45ad1a5f30600e0f0143b4bc6c
+SHA1 (bozohttpd-20040808.tar.bz2) = 47ffdc58ae71dc6367ebeb7f3f57336a5ad5581f
+Size (bozohttpd-20040808.tar.bz2) = 69301 bytes
diff --git a/www/bozohttpd/patches/patch-aa b/www/bozohttpd/patches/patch-aa
deleted file mode 100644
index 07c073865a0..00000000000
--- a/www/bozohttpd/patches/patch-aa
+++ /dev/null
@@ -1,241 +0,0 @@
-$NetBSD: patch-aa,v 1.15 2004/06/21 01:45:22 lukem Exp $
-
---- bozohttpd.c.orig 2004-02-19 00:11:57.000000000 +1100
-+++ bozohttpd.c
-@@ -118,6 +118,9 @@
- #undef NO_SSL_SUPPORT /* don't support ssl (https) */
- #endif
-
-+/* XXXPKGSRC: change in sync with PKGREVISION */
-+#define SERVER_SOFTWARE "bozohttpd/20040218nb6"
-+
- #ifndef INDEX_HTML
- #define INDEX_HTML "index.html"
- #endif
-@@ -136,6 +139,9 @@
- #ifndef REDIRECT_FILE
- #define REDIRECT_FILE ".bzredirect"
- #endif
-+#ifndef ABSREDIRECT_FILE
-+#define ABSREDIRECT_FILE ".bzabsredirect"
-+#endif
-
- /*
- * And so it begins ..
-@@ -329,7 +335,7 @@ static void process_request(http_req *);
- static void check_special_files(http_req *, const char *);
- static int check_direct_access(http_req *request);
- static char *transform_request(http_req *, int *);
--static void handle_redirect(http_req *, const char *);
-+static void handle_redirect(http_req *, const char *, int absolute);
- static void print_header(http_req *, struct stat *, const char *,
- const char *);
-
-@@ -1186,7 +1192,7 @@ process_request(request)
- if (fstat(fd, &sb) < 0)
- http_error(500, request, "can't fstat");
- if (S_ISDIR(sb.st_mode))
-- handle_redirect(request, NULL);
-+ handle_redirect(request, NULL, 0);
- /* NOTREACHED */
- /* XXX RFC1945 10.9 If-Modified-Since (http code 304) */
-
-@@ -1346,9 +1352,8 @@ static void
- sigchild(signo)
- int signo;
- {
-- int status;
-
-- while (waitpid(-1, &status, WNOHANG) != -1)
-+ while (waitpid(-1, NULL, WNOHANG) > 0)
- ;
- }
- #endif /* NO_DAEMON_MODE */
-@@ -1438,6 +1443,9 @@ check_special_files(http_req *request, c
- if (strcmp(name, REDIRECT_FILE) == 0)
- http_error(403, request,
- "no permission to open redirect file");
-+ if (strcmp(name, ABSREDIRECT_FILE) == 0)
-+ http_error(403, request,
-+ "no permission to open redirect file");
- #ifdef DO_HTPASSWD
- if (strcmp(name, AUTH_FILE) == 0)
- http_error(403, request,
-@@ -1454,8 +1462,8 @@ check_bzredirect(http_req *request)
- {
- struct stat sb;
- char dir[MAXPATHLEN], redir[MAXPATHLEN], redirpath[MAXPATHLEN];
-- char *basename;
-- int rv;
-+ char *basename, *finalredir;
-+ int rv, absolute;
-
-
- /*
-@@ -1477,19 +1485,35 @@ check_bzredirect(http_req *request)
- }
-
- snprintf(redir, sizeof(redir), "%s/%s", dir, REDIRECT_FILE);
-- if (lstat(redir, &sb) < 0 || S_ISLNK(sb.st_mode) == 0)
-- return;
-+ if (lstat(redir, &sb) == 0) {
-+ if (S_ISLNK(sb.st_mode) == 0)
-+ return;
-+ absolute = 0;
-+ } else {
-+ snprintf(redir, sizeof(redir), "%s/%s", dir, ABSREDIRECT_FILE);
-+ if (lstat(redir, &sb) < 0 || S_ISLNK(sb.st_mode) == 0)
-+ return;
-+ absolute = 1;
-+ }
- debug((DEBUG_FAT, "check_bzredirect: calling readlink"));
- rv = readlink(redir, redirpath, sizeof redirpath);
-- if (rv == -1)
-+ if (rv == -1) {
-+ debug((DEBUG_FAT, "readlink failed"));
- return;
-+ }
- if (rv - 1 < sizeof redirpath)
- redirpath[rv] = '\0';
-+ debug((DEBUG_FAT, "readlink returned \"%s\"", redirpath));
-
- /* now we have the link pointer, redirect to the real place */
-- snprintf(redir, sizeof(redir), "/%s/%s", dir, redirpath);
-- debug((DEBUG_FAT, "check_bzredirect: new redir %s", redir));
-- handle_redirect(request, redir);
-+ if (absolute) {
-+ finalredir = redirpath;
-+ } else {
-+ snprintf(redir, sizeof(redir), "/%s/%s", dir, redirpath);
-+ finalredir = redir;
-+ }
-+ debug((DEBUG_FAT, "check_bzredirect: new redir %s", finalredir));
-+ handle_redirect(request, finalredir, absolute);
- }
-
- /*
-@@ -1602,7 +1626,7 @@ transform_request(request, isindex)
- if (asprintf(&slashindexhtml, "/%s", index_html) < 0)
- error(1, "asprintf");
- debug((DEBUG_FAT, "rflag: redirecting %s to %s", url, slashindexhtml));
-- handle_redirect(request, slashindexhtml);
-+ handle_redirect(request, slashindexhtml, 0);
- /* NOTREACHED */
- }
- }
-@@ -1619,7 +1643,7 @@ transform_request(request, isindex)
- if (url[2] == '\0')
- http_error(404, request, "missing username");
- if (strchr(url + 2, '/') == NULL)
-- handle_redirect(request, NULL);
-+ handle_redirect(request, NULL, 0);
- /* NOTREACHED */
- debug((DEBUG_FAT, "calling transform_user"));
- return (transform_user(request, isindex));
-@@ -1733,9 +1757,10 @@ transform_user(request, isindex)
- * do automatic redirection
- */
- static void
--handle_redirect(request, url)
-+handle_redirect(request, url, absolute)
- http_req *request;
- const char *url;
-+ int absolute;
- {
- char *urlbuf;
- char portbuf[20];
-@@ -1755,16 +1780,24 @@ handle_redirect(request, url)
- (void)bozoprintf("%s 301 Document Moved\r\n", request->hr_proto);
- if (request->hr_proto != http_09)
- print_header(request, NULL, "text/html", NULL);
-- if (request->hr_proto != http_09)
-- (void)bozoprintf("Location: http://%s%s%s\r\n", myname, portbuf,
-- url);
-+ if (request->hr_proto != http_09) {
-+ if (absolute)
-+ (void)bozoprintf("Location: http://%s\r\n", url);
-+ else
-+ (void)bozoprintf("Location: http://%s%s%s\r\n", myname, portbuf,
-+ url);
-+ }
- (void)bozoprintf("\r\n");
- if (request->hr_method == HTTP_HEAD)
- goto head;
- (void)bozoprintf("<html><head><title>Document Moved</title></head>\n");
- (void)bozoprintf("<body><h1>Document Moved</h1>\n");
-- (void)bozoprintf("This document had moved <a href=\"http://%s%s%s\">here</a>\n",
-- myname, portbuf, url);
-+ if (absolute)
-+ (void)bozoprintf("This document had moved <a href=\"http://%s\">here</a>\n",
-+ url);
-+ else
-+ (void)bozoprintf("This document had moved <a href=\"http://%s%s%s\">here</a>\n",
-+ myname, portbuf, url);
- (void)bozoprintf("</body></html>\n");
- head:
- fflush(stdout);
-@@ -1951,6 +1984,7 @@ process_cgi(request)
- spsetenv("SERVER_PROTOCOL", request->hr_proto, curenvp++);
- spsetenv("REQUEST_METHOD", request->hr_methodstr, curenvp++);
- spsetenv("SCRIPT_NAME", url, curenvp++);
-+ spsetenv("SCRIPT_FILENAME", url+1, curenvp++);
- spsetenv("SERVER_SOFTWARE", server_software, curenvp++);
- spsetenv("REQUEST_URI", request->hr_url, curenvp++);
- spsetenv("DATE_GMT", date, curenvp++);
-@@ -1977,8 +2011,8 @@ process_cgi(request)
-
- /* may as well wait as long as possible */
- print_cgi_header:
-- (void)bozoprintf("%s 200 Here it is\r\n", request->hr_proto);
- if (!aflag) {
-+ (void)bozoprintf("%s 200 Here it is\r\n", request->hr_proto);
- debug((DEBUG_OBESE, "process_cgi: writing HTTP header .."));
- if (request->hr_proto != http_09)
- print_header(NULL, NULL, NULL, NULL);
-@@ -1988,8 +2022,6 @@ print_cgi_header:
- } else
- debug((DEBUG_OBESE, "process_cgi: not-writing HTTP header .."));
-
-- /* XXX we should be printing 200 here? */
-- (void)bozoprintf("%s 200 Here it is\r\n", request->hr_proto);
- debug((DEBUG_FAT, "process_cgi: going exec %s, %s %s %s",
- path, argv[0], strornull(argv[1]), strornull(argv[2])));
-
-@@ -2078,7 +2110,7 @@ escape_html(request)
- request->hr_url = tmp;
- }
-
--/* this fixes the %HH hack that RFC1738 requires. */
-+/* this fixes the %HH hack that RFC2396 requires. */
- static void
- fix_url_percent(request)
- http_req *request;
-@@ -2089,19 +2121,7 @@ fix_url_percent(request)
- url = request->hr_url;
-
- /* make sure we don't translate *too* much */
--#ifndef NO_CGIBIN_SUPPORT
-- /*
-- * XXX somewhat duplicate cgibin check here, but this one lets
-- * and encoded "/cgi-bin" work, but not to stop everything past
-- * the '?' being not fixed.
-- *
-- * XXX cgihandlers support
-- */
-- if (cgibin && strncmp(url + 1, CGIBIN_PREFIX, CGIBIN_PREFIX_LEN) == 0) {
-- end = strchr(request->hr_url + CGIBIN_PREFIX_LEN, '?');
-- } else
--#endif /* NO_CGIBIN_SUPPORT */
-- end = 0;
-+ end = strchr(request->hr_url, '?');
-
- /* fast forward to the first % */
- if ((s = strchr(url, '%')) == NULL)
-@@ -2291,6 +2311,7 @@ static struct content_map content_map[]
- { ".ppt", "application/powerpoint", "", "", NULL },
- { ".rtf", "application/rtf", "", "", NULL },
- { ".bcpio", "application/x-bcpio", "", "", NULL },
-+ { ".torrent", "application/x-bittorrent", "", "", NULL },
- { ".vcd", "application/x-cdlink", "", "", NULL },
- { ".cpio", "application/x-cpio", "", "", NULL },
- { ".csh", "application/x-csh", "", "", NULL },
diff --git a/www/bozohttpd/patches/patch-ab b/www/bozohttpd/patches/patch-ab
deleted file mode 100644
index 8a77a35b2b4..00000000000
--- a/www/bozohttpd/patches/patch-ab
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-ab,v 1.15 2004/03/28 21:24:12 martin Exp $
-
---- bozohttpd.8.orig 2004-02-18 14:25:39.000000000 +0100
-+++ bozohttpd.8 2004-03-28 23:20:36.000000000 +0200
-@@ -26,7 +26,7 @@
- .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- .\" SUCH DAMAGE.
- .\"
--.Dd February 18, 2004
-+.Dd March 28, 2004
- .Dt BOZOHTTPD 8
- .Os BOZOS
- .Sh NAME
-@@ -366,6 +366,13 @@
- symbolic link is found,
- .Nm
- will perform a smart redirect to the target of this symlink.
-+The target is assumed to live on the same server.
-+If a
-+.Pa .bzabsredirect
-+symbolic link is found,
-+.Nm
-+will redirect to the absolute url pointed to by this symlink.
-+This is useful to redirect to different servers.
- .Sh SSL SUPPORT
- .Nm
- has support for SSLv2, SSLv3, and TLSv1 protocols that is included by