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