CHANGES revision 1.37
1$NetBSD: CHANGES,v 1.37 2019/01/22 05:32:57 mrg Exp $
2
3changes in bozohttpd 20190121:
4	o  don't display special files in the directory index.  they aren't
5	   served, but links to them are generated.
6
7changes in bozohttpd 20190116:
8	o  fix CGI '+' parameter handling, some error checking, and a double
9	   free.  from rajeev_v_pillai@yahoo.com
10	o  more directory indexing clean up.  from rajeev_v_pillai@yahoo.com
11
12changes in bozohttpd 20181215:
13	o  fix .htpasswd bypass for authenticated users.  reported by JP,
14	   from leot@netbsd.org
15	o  avoid possible null dereference when receiving a big request that
16	   timeout.  reported by maya@netbsd.org, from leot@netbsd.org
17	o  fix handling of -T option, from leot@netbsd.org
18	o  cleanups and portability improvements, from maya@netbsd.org
19	o  change directory indexing to use html tables, from
20	   rajeev_v_pillai@yahoo.com
21
22changes in bozohttpd 20181125:
23	o  fixes for option parsing introduced in bozohttpd 20181123
24
25changes in bozohttpd 20181121:
26	o  add url remap support via .bzremap file, from martin@netbsd.org
27	o  handle redirections for any protocol, not just http:
28	o  fix a denial of service attack against header contents, which
29	   is now bounded at 16KiB.  reported by JP
30	o  reduce default timeouts, and add expand timeouts to handle the
31	   initial line, each header, and the total time spent
32	o  add -T option to expose new timeout settings
33	o  minor RFC fixes related to timeout handling
34	o  fix special file (.htpasswd, .bz*) bypass.  reported by JP
35
36changes in bozohttpd 20170201:
37	o  fix an infinite loop in cgi processing
38	o  fixes and clean up for the testsuite
39	o  no longer sends encoding header for compressed formats
40
41changes in bozohttpd 20160517:
42	o  add a bozo_get_version() function which returns the version number
43
44changes in bozohttpd 20160415:
45	o  add search-word support for CGI
46	o  fix a security issue in CGI suffix handler support which would
47	   allow remote code execution, from shm@netbsd.org
48	o  -C option supports now CGI scripts only
49
50changes in bozohttpd 20151028:
51	o  add CGI support for ~user translation (-E switch)
52	o  add redirects to ~user translation
53	o  fix bugs around ~user translation
54	o  add schema detection for absolute redirects
55	o  fixed few memory leaks
56	o  bunch of minor tweaks
57	o  removed -r support
58	o  smarter redirects 
59
60changes in bozohttpd 20150320:
61	o  fix redirection handling
62	o  support transport stream (.ts) and video object (.vob) files
63	o  directory listings show correct file sizes for large files
64
65changes in bozohttpd 20140717:
66	o  properly handle SSL errors
67
68changes in bozohttpd 20140708:
69	o  fixes for virtual host support, from rajeev_v_pillai@yahoo.com
70	o  avoid printing double errors, from shm@netbsd.org
71	o  fix a security issue in basic HTTP authentication which would allow
72	   authentication to be bypassed, from shm@netbsd.org
73
74changes in bozohttpd 20140201:
75	o  support .svg files
76	o  fix a core dump when requests timeout
77
78changes in bozohttpd 20140102:
79	o  update a few content types
80	o  add support for directly calling lua scripts to handle
81	   processes, from mbalmer@netbsd.org
82	o  properly escape generated HTML
83	o  add authentication for redirections, from martin@netbsd.org
84	o  handle chained ssl certifications, from elric@netbsd.org
85	o  add basic support for gzipped files, from elric@netbsd.org
86	o  properly escape generated URIs
87
88changes in bozohttpd 20111118:
89	o  add -P <pidfile> option, from jmmv@netbsd.org
90	o  avoid crashes with http basic auth, from pooka@netbsd.org
91	o  add support for REDIRECT_STATUS variable, from tls@netbsd.org
92	o  support .mp4 files in the default map
93	o  directory indexes with files with : are now displayed properly, from
94	   reed@netbsd.org
95	o  allow -I option to be useful in non-inetd mode as well
96
97changes in bozohttpd 20100920:
98	o  properly fully disable multi-file mode for now
99	o  fix the -t and -U options when used without the -e option, broken since
100	   the library-ifcation
101	o  be explicit that logs go to the FTP facility in syslog
102	o  use scandir() with alphasort() for sorted directory lists, from moof
103	o  fix a serious error in vhost handling; "Host:.." would allow access to
104	   the next level directory from the virtual root directory, from seanb
105	o  fix some various non standard compile time errors, from rudolf
106	o  fix dynamic CGI content maps, from rudolf
107
108changes in bozohttpd 20100617:
109	o  fix some compile issues
110	o  fix SSL mode.  from rtr
111	o  fix some cgi-bin issues, as seen with cvsweb
112	o  disable multi-file daemon mode for now, it breaks
113	o  return 404's instead of 403's when chdir of ~user dirs fail
114	o  remove "noreturn" attribute from bozo_http_error() that was
115	   causing incorrect runtime behaviour
116
117changes in bozohttpd 20100509:
118	o  major rework and clean up of internal interfaces.  move the main
119	   program into main.c, the remaining parts are useable as library
120	   add bindings for lua.  by Alistair G. Crooks <agc@netbsd.org>
121	o  fix http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566325
122
123changes in bozohttpd 20090522:
124	o  avoid dying in daemon mode for some uncommon, but recoverable, errors
125	o  close leaking file descriptors for CGI and daemon mode
126	o  handle poll errors properly
127	o  don't try to handle more than one request per process yet
128	o  add subdirs for build "debug" and "small" versions
129	o  clean up a bad merge / duplicate code
130	o  make mmap() usage portable, fixes linux & ranges: support
131	o  document the -f option
132	o  daemon mode now serves 6 files per child
133
134changes in bozohttpd 20090417:
135	o  make bozohttpd internally more modular, preparing the way
136	   to handle more than one request per process
137	o  fix http-auth, set $REMOTE_USER not $REMOTEUSER.  also fix
138	   cgi-bin with cvsweb, from Holger Weiss <holger@CIS.FU-Berlin.DE>
139	o  fix an uninitialised variable use in daemon mode
140	o  fix ssl mode with newer OpenSSL
141	o  mmap large files in manageable sizes so we can serve any size file
142	o  refactor url processing to handle query strings correctly for CGI
143	   from Sergey Katsev at Coyote Point
144	o  add If-Modified-Since support, from Joerg Sonnenberger
145	   <joerg@netbsd.org>
146	o  many more manual fixes, from NetBSD
147
148changes in bozohttpd 20080303:
149	o  fix some cgi header processing, from <thelsdj@gmail.com>
150	o  add simple Range: header processing, from <bad@bsd.de>
151	o  man page fixes, from NetBSD
152	o  clean up various parts, from NetBSD
153
154changes in bozohttpd 20060710:
155	o  prefix some function names with "bozo"
156	o  align directory indexing <hr> markers
157	o  clean up some code GCC4 grumbled about
158
159changes in bozohttpd 20060517:
160	o  don't allow "/.." or "../" files
161	o  don't write ":80" into urls for the http port
162	o  fix a fd leak when fork() fails
163	o  make directory indexing mode not look so ugly
164	o  build a text version of the manual page
165	o  make "make clean" work properly
166
167changes in bozohttpd 20050410:
168	o  fix some off-by-one errors from <roland.illig@gmx.de>
169	o  properly support nph- CGI
170	o  make content maps case insensitive
171	o  fix proto header merging to include the missing comma
172	o  major source reorganisation; most features are in separate files now
173	o  new -V flag that makes unknown virtualhosts use slashdir
174	   from <rumble@ephemeral.org>
175	o  HTTP/1.x protocol headers are now properly merged for CGI
176
177changes in bozohttpd 20040808:
178	o  CGI status is now properly handled (-a flag has been removed)
179	o  CGI file upload support works
180	o  %xy translations are no longer ever applied after the first '?',
181	   ala RFC2396.  from lukem
182	o  daemon mode (-b) should no longer hang spinning forever if it
183	   sees no children.  from lukem
184	o  new .bzabsredirect file support. from <martin@netbsd.org>
185	o  return a 404 error if we see %00 or %2f (/)
186	o  don't print 2 "200" headers for CGI
187	o  support .torrent files
188
189changes in bozohttpd 20040218:
190	o  new .bzredirect file support for sane directory redirection
191	o  new -Z option that enables SSL mode, from <rtr@eterna.com.au>
192	o  the -C option has been changed to take two explicit options, rather
193	   than a single option with a space separating the suffix and the
194	   interpreter.  ``-C ".foo /path/to/bar"'' should now be written
195	   as ``-C .foo /path/to/bar''
196	o  the -M option has been changed like -C and no longer requires or
197	   supports a single argument with space-separated options
198	o  with -a, still print the 200 OK.  from <rtr@eterna.com.au>
199	o  with -r, if a .bzdirect file appears in a directory, allow direct
200	   access to this directory
201
202changes in bozohttpd 20031005:
203	o  fixes for basic authorisation.  from <ecu@ipv42.net>
204	o  always display file size in directory index mode
205	o  add .xbel, .xml & .xsl -> text/xml mappings.  from
206	   <wiz@danbala.ifoer.tuwien.ac.at>
207
208changes in bozohttpd 20030626:
209	o  fix a recent core dump when given no input
210	o  add new -r flag that ensures referrer is set to this host
211	o  fix several compile time errors with -DNO_CGIBIN_SUPPORT
212	o  fix some man page details. from lukem@wasabisystems.com
213	o  re-add a missing memset(), fixing a core dump. from lukem
214	o  support HTTP basic authorisation, disabled by default.  from lukem
215	o  print the port number in redirects and errors. from lukem
216	o  only syslog the basename of the program. from lukem
217	o  add __attribute__() format checking. from lukem
218	o  fix cgibin SCRIPT_NAME to have a leading /.  from zakj@nox.cx
219	o  simplify some code in -C to avoid a core dump.  from lukem
220	o  add a .css -> css/text entry to the content_map[].  from zakj@nox.cx
221
222changes in bozohttpd 20030409:
223	o  -d without DEBUG enabled only prints one warning and continues
224	o  one can now define the C macro SERVER_SOFTWARE when building to
225	   change the Server: header and CGI variable of the same name
226	o  add new -s flag the force logging output to stderr. from zakj@nox.cx
227	o  add new -a flag for CGI bin that stops bozohttpd from outputting
228	   any HTTP reply, the CGI program must output these.  from zakj@nox.cx
229	o  new REQUEST_URI and DATE_GMT environment variables for CGI.  from
230	   zakj@nox.cx
231	o  add a "Makefile.boot" that should work with any make program
232	o  build on linux again
233	o  fix core dumps when using -C
234
235changes in bozohttpd 20030313:
236	o  deprecate -r flag; make this the default and silently ignore -r now
237	o  add support for file extentions to call CGI programs (from lukem)
238	o  add dynamic support to add new content map entries, allowing both
239	   new file types and non /cgi-bin CGI programs to be run with the
240	   new -C "suffix cgihandler" and -M "suffix type encoding encoding11"
241	   options
242	o  in -b mode, set the http date after accept() returns, not before we
243	   call accept()
244	o  in -b mode, bind all addresses found not just the first one
245	o  unsupport old hostname API
246	o  in -b mode, set the SO_REUSEADDR socket option (lukem)
247	o  allow -x (index.html) mode to work with CGI handlers
248
249changes in bozohttpd 20021106:
250	o  add .bz2 support
251	o  properly escape <, > and & in error messages, partly from
252	   Nicolas Jombart <ecu@mariejeanne.net>
253	o  new -H flag to hide .* files in directory index mode
254	o  fix buffer reallocation when parsing a request, to avoid
255	   overflowing the buffer with carriage returns (\r)
256	o  do not decode "%XY"-style cgi-bin data beyond the "?"
257
258changes in bozohttpd 5.15 (20020913):
259	o  add .ogg support -> `application/x-ogg'
260	o  fix CGI requests with "/" in the query part
261
262changes in bozohttpd 5.14 (20020823):
263	o  allow -X mode to work for "/"
264	o  work on systems without MADV_SEQUENTIAL
265	o  make a local cut-down copy of "queue.h" (fixes linux & solaris
266	   support at the very least)
267	o  portability fixes for pre-ipv6 socket api systems (eg, solaris 7)
268	o  portability fixes for missing _PATH_DEFPATH, LOG_FTP and __progname
269	o  better documentation on virtual host support
270
271changes in bozohttpd 5.13 (20020804):
272	o  support .mp3 files (type audio/mpeg)
273	o  use stat() to find out if something is a directory, for -X mode
274
275changes in bozohttpd 5.12 (20020803):
276	o  constification
277	o  fixes & enhancements for directory index mode (-X)
278
279changes in bozohttpd 5.11 (20020730):
280	o  more man page fixes from Thomas Klausner
281	   <wiz@danbala.ifoer.tuwien.ac.at>
282	o  de-K&R C-ification
283	o  fix Date: header for daemon mode
284	o  fix core dump when asking for /cgi-bin/ when CGI isn't configured
285	o  use a valid Server: header
286
287changes in bozohttpd 5.10 (20020710):
288	- add freebsd support 
289	- fix a couple of header typos
290	- many cgi-bin fixes from lukem@netbsd.org
291	- add -T chrootdir and -U user, plus several minor other cleanups
292	with signals and return values.  from xs@kittenz.org
293	- add -e that does not clear the environment for -T/-U
294	- fix a formatting error noticed by ISIHARA Takanori <ishit@oak.dti.ne.jp>
295
296changes in bozohttpd 5.09 (20010922):
297	- add a daemon mode
298	- document how to use bozohttpd in netbsd inetd with more than 40 
299	connections per minute and also with cgibin
300	- man page fixes from wiz@netbsd.org
301
302changes in bozohttpd 5.08 (20010812):
303	- add directory index generation support (-X) from ad@netbsd.org
304	- add .pa as an alias for .pac
305	- make server software version configurable (RFC)
306
307changes in bozohttpd 5.07 (20010610):
308	- add .png support 
309	- new "-x index.html" flag to change default file
310	- new "-p public_html" flag to change default ~user directory
311	- fixes cgi-bin support and more from chuck@research.att.com
312	- add many new content-types, now support most common ones
313
314changes in bozohttpd 5.06 (20000825):
315	- add IPv6 support from itojun@iijlab.net
316	- man page fixes from jlam@netbsd.org
317
318changes in bozohttpd 5.05 (20000815):
319	- fix a virtual host bug, from kleink@netbsd.org
320
321changes in bozohttpd 5.04 (20000427):
322	- fix virtual host support; URI takes precedence over Host:
323
324changes in bozohttpd 5.03 (20000427):
325	- fix a bug with chdir() 
326
327changes in bozohttpd 5.02 (20000426):
328	- .pac spport from simonb
329
330changes in bozohttpd 5.01 (20000421):
331	- .swf support 
332	- virtual hosting support 
333