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