CHANGES revision 1.8
1$eterna: CHANGES,v 1.75 2010/06/17 19:26:54 mrg Exp $
2
3changes since bozohttpd 20100509:
4	o  fix some compile issues
5	o  fix SSL mode.  from rtr
6	o  fix some cgi-bin issues, as seen with cvsweb
7	o  disable multi-file daemon mode for now, it breaks
8	o  return 404's instead of 403's when chdir of ~user dirs fail
9	o  remove "noreturn" attribute from bozo_http_error() that was
10	   causing incorrect runtime behaviour
11
12changes since bozohttpd 20090522:
13	o  major rework and clean up of internal interfaces.  move the main
14	   program into main.c, the remaining parts are useable as library.
15	   add bindings for lua.  by Alistair G. Crooks <agc@netbsd.org>
16	o  fix http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566325
17
18changes since bozohttpd 20090417:
19	o  avoid dying in daemon mode for some uncommon, but recoverable, errors
20	o  close leaking file descriptors for CGI and daemon mode
21	o  handle poll errors properly
22	o  don't try to handle more than one request per process yet
23	o  add subdirs for build "debug" and "small" versions
24	o  clean up a bad merge / duplicate code
25	o  make mmap() usage portable, fixes linux & ranges: support
26	o  document the -f option
27	o  daemon mode now serves 6 files per child
28
29changes since bozohttpd 20080303:
30	o  make bozohttpd internally more modular, preparing the way
31	   to handle more than one request per process
32	o  fix http-auth, set $REMOTE_USER not $REMOTEUSER.  also fix
33	   cgi-bin with cvsweb, from Holger Weiss <holger@CIS.FU-Berlin.DE>
34	o  fix an uninitialised variable use in daemon mode
35	o  fix ssl mode with newer OpenSSL
36	o  mmap large files in manageable sizes so we can serve any size file
37	o  refactor url processing to handle query strings correctly for CGI
38	   from Sergey Katsev at Coyote Point
39	o  add If-Modified-Since support, from Joerg Sonnenberger
40	   <joerg@netbsd.org>
41	o  many more manual fixes, from NetBSD
42
43changes since bozohttpd 20060710:
44	o  fix some cgi header processing, from <thelsdj@gmail.com>
45	o  add simple Range: header processing, from <bad@bsd.de>
46	o  man page fixes, from NetBSD
47	o  clean up various parts, from NetBSD
48
49changes since bozohttpd 20060517:
50	o  prefix some function names with "bozo"
51	o  align directory indexing <hr> markers
52	o  clean up some code GCC4 grumbled about
53
54changes since bozohttpd 20050410:
55	o  don't allow "/.." or "../" files
56	o  don't write ":80" into urls for the http port
57	o  fix a fd leak when fork() fails
58	o  make directory indexing mode not look so ugly
59	o  build a text version of the manual page
60	o  make "make clean" work properly
61
62changes since bozohttpd 20040808:
63	o  fix some off-by-one errors from <roland.illig@gmx.de>
64	o  properly support nph- CGI
65	o  make content maps case insensitive
66	o  fix proto header merging to include the missing comma
67	o  major source reorganisation; most features are in separate files now
68	o  new -V flag that makes unknown virtualhosts use slashdir
69	   from <rumble@ephemeral.org>
70	o  HTTP/1.x protocol headers are now properly merged for CGI
71
72changes since bozohttpd 20040218:
73	o  CGI status is now properly handled (-a flag has been removed)
74	o  CGI file upload support works
75	o  %xy translations are no longer ever applied after the first '?',
76	   ala RFC2396.  from lukem
77	o  daemon mode (-b) should no longer hang spinning forever if it
78	   sees no children.  from lukem
79	o  new .bzabsredirect file support. from <martin@netbsd.org>
80	o  return a 404 error if we see %00 or %2f (/)
81	o  don't print 2 "200" headers for CGI
82	o  support .torrent files
83
84changes since bozohttpd 20031005:
85	o  new .bzredirect file support for sane directory redirection
86	o  new -Z option that enables SSL mode, from <rtr@eterna.com.au>
87	o  the -C option has been changed to take two explicit options, rather
88	   than a single option with a space separating the suffix and the
89	   interpreter.  ``-C ".foo /path/to/bar"'' should now be written
90	   as ``-C .foo /path/to/bar''
91	o  the -M option has been changed like -C and no longer requires or
92	   supports a single argument with space-separated options
93	o  with -a, still print the 200 OK.  from <rtr@eterna.com.au>
94	o  with -r, if a .bzdirect file appears in a directory, allow direct
95	   access to this directory
96
97changes since bozohttpd 20030626:
98	o  fixes for basic authorisation.  from <ecu@ipv42.net>
99	o  always display file size in directory index mode
100	o  add .xbel, .xml & .xsl -> text/xml mappings.  from
101	   <wiz@danbala.ifoer.tuwien.ac.at>
102
103changes since bozohttpd 20030409:
104	o  fix a recent core dump when given no input
105	o  add new -r flag that ensures referrer is set to this host
106	o  fix several compile time errors with -DNO_CGIBIN_SUPPORT
107	o  fix some man page details. from lukem@wasabisystems.com
108	o  re-add a missing memset(), fixing a core dump. from lukem
109	o  support HTTP basic authorisation, disabled by default.  from lukem
110	o  print the port number in redirects and errors. from lukem
111	o  only syslog the basename of the program. from lukem
112	o  add __attribute__() format checking. from lukem
113	o  fix cgibin SCRIPT_NAME to have a leading /.  from zakj@nox.cx
114	o  simplify some code in -C to avoid a core dump.  from lukem
115	o  add a .css -> css/text entry to the content_map[].  from zakj@nox.cx
116
117changes since bozohttpd 20030313:
118	o  -d without DEBUG enabled only prints one warning and continues
119	o  one can now define the C macro SERVER_SOFTWARE when building to
120	   change the Server: header and CGI variable of the same name
121	o  add new -s flag the force logging output to stderr. from zakj@nox.cx
122	o  add new -a flag for CGI bin that stops bozohttpd from outputting
123	   any HTTP reply, the CGI program must output these.  from zakj@nox.cx
124	o  new REQUEST_URI and DATE_GMT environment variables for CGI.  from
125	   zakj@nox.cx
126	o  add a "Makefile.boot" that should work with any make program
127	o  build on linux again
128	o  fix core dumps when using -C
129
130changes since bozohttpd 20021106:
131	o  deprecate -r flag; make this the default and silently ignore -r now
132	o  add support for file extentions to call CGI programs (from lukem)
133	o  add dynamic support to add new content map entries, allowing both
134	   new file types and non /cgi-bin CGI programs to be run with the
135	   new -C "suffix cgihandler" and -M "suffix type encoding encoding11"
136	   options
137	o  in -b mode, set the http date after accept() returns, not before we
138	   call accept()
139	o  in -b mode, bind all addresses found not just the first one
140	o  unsupport old hostname API
141	o  in -b mode, set the SO_REUSEADDR socket option (lukem)
142	o  allow -x (index.html) mode to work with CGI handlers
143
144changes since bozohttpd 5.15 (20020913):
145	o  add .bz2 support
146	o  properly escape <, > and & in error messages, partly from
147	   Nicolas Jombart <ecu@mariejeanne.net>
148	o  new -H flag to hide .* files in directory index mode
149	o  fix buffer reallocation when parsing a request, to avoid
150	   overflowing the buffer with carriage returns (\r)
151	o  do not decode "%XY"-style cgi-bin data beyond the "?"
152
153changes since bozohttpd 5.14 (20020823):
154	o  add .ogg support -> `application/x-ogg'
155	o  fix CGI requests with "/" in the query part
156
157changes since bozohttpd 5.13 (20020804):
158	o  allow -X mode to work for "/"
159	o  work on systems without MADV_SEQUENTIAL
160	o  make a local cut-down copy of "queue.h" (fixes linux & solaris
161	   support at the very least)
162	o  portability fixes for pre-ipv6 socket api systems (eg, solaris 7)
163	o  portability fixes for missing _PATH_DEFPATH, LOG_FTP and __progname
164	o  better documentation on virtual host support
165
166changes since bozohttpd 5.12 (20020803):
167	o  support .mp3 files (type audio/mpeg)
168	o  use stat() to find out if something is a directory, for -X mode
169
170changes since bozohttpd 5.11 (20020730):
171	o  constification
172	o  fixes & enhancements for directory index mode (-X)
173
174changes since bozohttpd 5.10 (20020710):
175	o  more man page fixes from Thomas Klausner
176	   <wiz@danbala.ifoer.tuwien.ac.at>
177	o  de-K&R C-ification
178	o  fix Date: header for daemon mode
179	o  fix core dump when asking for /cgi-bin/ when CGI isn't configured
180	o  use a valid Server: header
181
182changes since bozohttpd 5.09 (20010922):
183	- add freebsd support 
184	- fix a couple of header typos
185	- many cgi-bin fixes from lukem@netbsd.org
186	- add -T chrootdir and -U user, plus several minor other cleanups
187	with signals and return values.  from xs@kittenz.org
188	- add -e that does not clear the environment for -T/-U
189	- fix a formatting error noticed by ISIHARA Takanori <ishit@oak.dti.ne.jp>
190
191changes since bozohttpd 5.08 (20010812):
192	- add a daemon mode
193	- document how to use bozohttpd in netbsd inetd with more than 40 
194	connections per minute and also with cgibin
195	- man page fixes from wiz@netbsd.org
196
197changes since bozohttpd 5.07 (20010610):
198	- add directory index generation support (-X) from ad@netbsd.org
199	- add .pa as an alias for .pac
200	- make server software version configurable (RFC)
201
202changes since bozohttpd 5.06 (20000825):
203	- add .png support 
204	- new "-x index.html" flag to change default file
205	- new "-p public_html" flag to change default ~user directory
206	- fixes cgi-bin support and more from chuck@research.att.com
207	- add many new content-types, now support most common ones
208
209changes since bozohttpd 5.05 (20000815):
210	- add IPv6 suppor from itojun@iijlab.net
211	- man page fixes from jlam@netbsd.org
212
213changes since bozohttpd 5.04 (20000427):
214	- fix a virtual host bug, from kleink@netbsd.org
215
216changes since bozohttpd 5.03 (20000427):
217	- fix virtual host support; URI takes precedence over Host:
218
219changes since bozohttpd 5.02 (20000426):
220	- fix a bug with chdir() 
221
222changes since bozohttpd 5.01 (20000421):
223	- .pac spport from simonb
224
225changes since bozohttpd 5.00 (19990519):
226	- .swf support 
227	- virtual hosting support 
228
229