tar -Z, uncompress support
[oweals/busybox.git] / networking / udhcp / ChangeLog
1 0.9.10
2   Size optimization (over 3k), more busybox integration
3   (Vladimir Oleynik <dzo@simtreas.ru>
4
5 0.9.9 (pending)
6 + Fixed a little endian problem in mton (Bastian Blank <waldi@debian.org>)
7 + Fixed a arpping alignment problem (Rui He <rhe@3eti.com>)
8 + Added sanity check for max_leases (udhcp bug #1285) (me)
9 + Finally got rid of the trailing space in enviromental vars (me)
10 + added an new enviromental variable: $mask. It contains the number
11   of subnet bits for tools like ip route that require it.
12   (Bastian Blank <waldi@debian.org>, me)
13
14 0.9.8 (021031)
15 + split up README files (me)
16 + use /dev/urandom to seed xid's (instead of time(0)) (me)
17 + fixed renew behavior (me)
18 + udhcp now fits nicely into busybox
19   (Glenn McGrath <bug1@optushome.com.au> as well as myself)
20 + updated client manpage (me)
21 + both client and server now use sockets for signal handling,
22   hopefully, this will be the last needed change in signal
23   handling, I'm fairly certain all the possible races are now
24   closed. (me)
25 + The server now restarts the auto_time timer when it receives
26   a SIGUSR1 (write out config file). (me)
27 + Improve signal handling (David Poole)
28 + Fix to config file parsing (Matt Kraai)
29 + Fix load lease logic (me)
30 + Fix clear_lease logic (me)
31 + -h is now an alias for -H (udhcp bug #1253)
32 + Shorter timeout on not receiving offers (me)
33 + Improved signal behavior by client (me)
34 + Would never assign end address (Keith Smith <keith@ksmith.com>)
35 + Was improperly reporting yiaddr as siaddr (ben-udhcp@bdlow.net)
36   udhcp bug#1256
37 + Fixed reading of client id (David Poole <davep@portsmith.com>)
38 + change sys_errlist[] to strerror() as it aparently doesn't exist
39   (Erik Andersen <andersen@codepoet.org>)
40 + fixed get_raw_packet so it returns -2 on non fatal errors
41   (Ted Lemon <Ted.Lemon@nominum.com>)
42 + Improved (hopefully) NAKing behavior (me)
43 + Added -b option (Jouni Malinen)
44 + Compute checksums correctly on big endian hosts 
45   (Jouni Malinen <jkmaline@cc.hut.fi>)
46
47 0.9.7 (020526)
48 + Use add_lease in read_leases, sanitizes leases more, and clears out exprired
49   ones if there is no more room (me)
50 + Moved udhcpd.leases to /var/lib/misc/udhcpd.leases (Debian bug #147747)
51 + Change (obsolete) AF_INET in arping.c to PF_PACKET (Debian bug #127049)
52 + Added script hook for DHCPNAK (nak), as well as providing the message option
53   (me)
54 + Generate the paramaters request list by seeing what options in options.c are
55   ored with OPTION_REQ in options.c
56 + Fix dhcp renew forgetfullness on client (bug #1230)
57 + Fix dhcp release bug on client (bug #1231)
58 + Set option request list for DHCP renew (bug #1233)
59 + Set BOOTREQUEST/REPLY properly
60 + Change client-identifier field to popularly expected behavior (me)
61 + Only reopen port on errors (me)
62 + Change fork/close/setsid structures to daemon() (me)
63 + Allow user to specify udhcpd config file at run time (Steven, me)
64 + Write pidfile after changing it (Steven CTR Carr <Steven.CTR.Carr@tc.faa.gov>)
65 + Added env var docs to udhcpc man page (Matt)
66 + Standardized lowercase udhcp in documentation (me)
67 + Accept packets without a UDP checksum (me)
68 + Accept packets with extra garbage (me)
69 + Better error handling in files.c (me)
70 + Combined read_interface function to reduce COMBINED_BINARY size (me)
71 + Drop calc_length(), some servers choke on smaller packets (me)
72 + Try to clean some fat out (me)
73
74 0.9.6 (011001)
75 + Added bootp paramaters to server (me)
76 + Added bootp paramaters to client (me)
77 + Added vendor id to client (me)
78 + Better pidfile handling in client and server (me)
79 + Added man pages (Matt Kraai <kraai@alumni.carnegiemellon.edu>)
80
81 0.9.5 (010914)
82 + Fixed $HOME and $PATH env passing (me)
83 + Fixed client to only listen for raw packets on correct interface (me)
84 + added --quit,-q option to quit after a lease is obtained (me)
85 + Fixed 100% CPU utilization by client when interface is down (me)
86
87 0.9.4 (010827)
88 + Force broadcast to broken clients that request unicast (ie, MSFT 98)
89 + Make install rules (Adam J. Richter <adam@yggdrasil.com>)
90 + One scripts, instead of many (Adam)
91 + Removed script paramater info files (env vars only) (Adam)
92 + Controlling of forking behavior in client (Adam)
93 + General script.c/dhcpc.c cleanups (Adam)
94
95 0.9.3 (010820)
96 + Increased debugging verbosity (me)
97 + Cut trailing whitespace when reading config file (me)
98 + added hostname option to client (me)
99 + fixed a strncpy bug in script.c (me)
100 + fixed a leaky socket in dhcpc.c (me)
101 + fixed a leaky socket in dhcpd.c (me)
102
103 0.9.2 (010810)
104 + Added raw sockets to client (me)
105 + alignment fixes (Mark Huang)
106 + compiler warning fixes (Mark Huang)
107 + client now sends parameter list (Mark Huang/me)
108 + added ipttl option
109 + Does now not request broadcast packets
110
111 0.9.1 (010806)
112 + Added udhcpc client
113 + reorganized functions/files
114 + listening socket now only binds to one interface
115
116 0.9.0 (010720) Major rewrite, current changes, goals:
117 + should not segfault on bogus packets.
118 + Options can be read from sname and file fields.
119 + supports all DHCP messages (release, decline, inform).
120 + IP block is now specified by a range of IP's.
121 + Leases file now contains lease time (relative, or absolute).
122 + Just about any DHCP option is now supported.
123 + DNS entries are no longer read from resolv.conf
124 + Lease file can be written periodically when the process receives a SIGUSR1
125 + arpping should be supported on all arches.
126 + support for DHCP relays.
127 + DHCP messages can be unicast if the client requests it.
128 + many, many, many other things.
129
130 0.8.29 (000323)
131 + stable(?) release
132
133
134 0.8.28 (000323)
135 + removed alarm as it was causing server to go down
136 + removed debugging
137 + break down dhcpd.c into manageable files
138
139
140 0.8.27 (000221)
141 + OFFER also sends gateway/subnet (for picky dhcp clients)
142 + multiple DNS now handled from resolv.conf if available
143 + multiple WINS (from dhcpd.conf)
144
145 0.8.25 (000120)
146 + now compiles *and* runs on a generic linux system
147         tested with a windows 98 client and the sample config
148         files in the samples directory.
149
150 0.8.24 (000117)
151 + makeiplist tool has basic functionality in place
152 + new sample config files
153 + route add -host 255.255.255.255 dev eth0 added for generic linux
154
155 0.8.23 (000117)
156 + NETtel specific fix for ignoring dhcp requests on 2nd interface
157
158 0.8.22 (000113)
159 + minor changes to compile under a generic linux system
160 + minor config file location changes for a generic linux system
161 + makeiplist fixes.. still incomplete.. but etting closer
162
163 0.8.21 (000113)
164 + now sends the correct server ip instead of hardcoded value
165 + minor debugging fixes for critical messages
166
167 0.8.20 (000106)
168 + cut out dhcp server checking.. this was causing dialout ppp
169         sessions with idle time set to never time out.
170 + also removed the 10 second pause before launching.. as this
171         was originally to stop it replying to a dhcp client
172         on a NETtel which was really a bad way to do it in the
173         first place :-)
174
175 0.8.19 (000104)
176 + fixes for route add -host on a machine that needs to run both
177         a DHCP client and server (dual eth box)
178
179 0.8.18 (991220)
180
181 + Race conditions fixed by disabling alarm whilst the server is busy
182 + Fixed continous clearing of the offered array so that it is only cleared
183   when it is dirty - (could change the position of when dirty is set)
184
185 0.8.17 (991212)
186
187 - has problems clearing out the offered array
188
189 0.8.16 (991203)
190 + Non blocking error is changes to informational as it is not really
191   an error
192
193 0.8.15 (991129)
194 + Servs the dns field 3 times (Nettel only) so that windows servers
195   dont time out whilst nettel is booting
196
197 0.8.14 (991126)
198 + added owner check for the offered array so clean out time may be
199   increased
200 + added new func to print out chadder/MAC
201
202 0.8.13 (991125)
203 + added win95 support (w95 changed xid halfway through conversation)
204 + had to change the offered array to use hardware addresses instead of xid
205 + fixed re offered bug
206 + added more debugging
207
208 0.8.12 (991111)
209 + debugging was real bad.. cleaned up a bit.. needs overhaul
210
211
212 0.8.11 (991110)
213 + fixed up offeredAddr array to actually be used now!! offeredAddr is
214         used to see if another simultaneous connecting client was offered
215         an address that we are about to offer another client (multiple
216         client bug)
217 + removed re_offered variable as it breaks multiple client support
218 + added lease time to ACK -- doesn't work if in OFFER
219 + decreased internal array clear delay to 60 seconds
220 + minor findAddr bug (returning -1 instead of 0)
221 + if clients xid already in offeredAddr offer the same addr and don't add a
222         new addr to offered (caused by a client issuing multiple DISCOVERs)
223
224 0.8.10 (991105)
225 + \n bug in arpping
226 + minor debugging changes (removed printfs etc)
227 + started browseiplist (not finished)
228
229 0.8.9 (19991105)
230 + fixed options array size bug (options were cut off)
231
232 0.8.8 (19991105)
233 + ignores requests from dhcpcd on the same machine
234
235 0.8.7 (19991104)
236 + don't die if we can't bind to search for existing DHCP server
237 + slightly more verbose syslogging
238
239 0.8.6 (19991103)
240 + added makeiplist (not finished -- core dumps)
241 + minor debug changes
242
243 0.8.5 (19991029)
244 + exits if another DHCP server is already on the network
245 + added Linux Makefile
246
247 0.8.4 (19991026)
248 + minor bug fix in findaddr preventing an addr being found
249
250 0.8.3 (19991025)
251 + fixed up debugging
252 + minor hwaddr issues
253
254 0.8.2 (19991022)
255 + free leases (new arpping code from dhcpcd)
256 + fixed bug where crashes if no leases/iplist file
257 + syslogging and debugging switch
258 + serve DNS from resolv.conf
259 + fixed bug where new lease added if same mac offered
260 + now checks the ip is free b4 offering
261 + now supports wins server
262