blob: 12743d5bd546a2e6ff393bcb140b4d536483d10b [file] [log] [blame]
Rich Felkerdf6e3ec2011-02-14 21:58:53 -050010.5.0 - initial release
2
Rich Felker26761982011-03-11 09:46:12 -05003
4
Rich Felkerdf6e3ec2011-02-14 21:58:53 -050050.5.9 - signal ABI bugfix, various cleanup and fixes:
6
7sigset_t was wrongly defined as 1024 bytes instead of 1024 bits,
8breaking the intended ABI compatibility with the LSB/glibc sigaction
9structure. users should upgrade immediately and rebuild any libraries
10or object files that might be using the incorrect definitions.
11
12improved security against DoS with tcb shadow passwords by checking
13that the file opened was really an ordinary file.
14
15fixed a bug in the implementation of atomic ops that could have
16allowed the compiler to incorrectly reorder them (in practice, gcc
17with the default settings on i386 was not reordering them).
18
19greatly improved conformance to the C and POSIX standards regarding
20what the standard header files make visible. _POSIX_C_SOURCE is now
21needed to get POSIX functions in standard C headers, and _XOPEN_SOURCE
22or _GNU_SOURCE are required to get XSI interfaces or GNU extensions,
23respectively.
24
25many internal improvements have been made to the syscall-related code
26in preparation for porting to x86_64 and other archs.
27
Rich Felker26761982011-03-11 09:46:12 -050028
29
Rich Felker982a4782011-02-17 19:15:08 -0500300.6.0 - x86_64 port, various important bugs fixed
Rich Felker62275f72011-02-15 15:52:26 -050031
32new x86_64 (amd64) architecture port, contributed by Nicholas J. Kain,
33along with PORTING guide. source tree layout and build system have
34been improved to accommodate further ports.
35
36various bugs that were introduced while making the headers respect C
Rich Felkerd09d0682011-02-17 17:57:50 -050037and POSIX namespace standards have been fixed. conformance to the
38standards has been improved.
39
40fixed an inefficiency in qsort that triggered a bug (occasionaly
41internal compiler error) in some versions of gcc.
42
43fixed a major bug in the printf %n specifier that prevented it from
44working and caused memory corruption.
Rich Felker8d07a032011-03-11 00:48:40 -050045
Rich Felker26761982011-03-11 09:46:12 -050046
47
Rich Felker6f05b6b2011-03-11 13:38:09 -0500480.7.0 - major improvements to posix conformance and completeness
Rich Felker8d07a032011-03-11 00:48:40 -050049
50implemented posix shared memory and semaphore interfaces.
51
52implemented all remaining required pthread and clock interfaces.
53
54major fixes to signal semantics.
55
56greatly improved temporary file name generation for safety against
57denial of service due to intentional name collisions.
58
59added syscall wrappers for the linux inotify interface.
60
Rich Felker6f05b6b2011-03-11 13:38:09 -050061malloc(0) now returns a non-null pointer.
Rich Felker8d07a032011-03-11 00:48:40 -050062
Rich Felker9f50b772011-03-11 14:51:36 -050063fixed printf %n specifier (again), pthread_once (it was always
64hanging), and non-default-type mutex behavior.
Rich Felker8d07a032011-03-11 00:48:40 -050065
66added ucontext/sigcontext support in headers to facilitate building
67libgcc with dwarf2 unwind support, and possibly other low-level tools.
68
Rich Felker6f05b6b2011-03-11 13:38:09 -050069improved musl-gcc compiler wrapper.
70
Rich Felker8d07a032011-03-11 00:48:40 -050071implemented many small missing functions here and there, minor header
72fixes, etc.
Rich Felkerfc27b962011-03-18 09:59:20 -040073
74
75
760.7.1 - improvements to completeness, bug fixes
77
78implemented flockfile, wprintf, and robust mutex functions.
79
80fixed stack corruption bug in times(), minor header bugs, and some
81error return value bugs in thread interfaces.
Rich Felker78eb0872011-04-01 20:36:01 -040082
83
84
850.7.5 - new features, major optimization, and robustness
86
87implemented POSIX timers.
88
89optimized and simplified many thread-related functions.
90
Rich Felkerd1c24ac2011-04-01 23:15:29 -040091eliminated resource leak races in thread cancellation. (almost all
92existing implementations, including glibc, have these leaks.)
Rich Felker78eb0872011-04-01 20:36:01 -040093
94overhauled stdio implementation to take advantage of readv/writev for
95reduced syscall load, and improved stdio's handling of error status.
96
97added syscall header and interface for applications to use and
98greatly simplified internal system for making syscalls.
99
100strangthened tmpnam/tempnam/tmpfile filename generation and made the
101straight C functions not depend on POSIX symbols.
Rich Felkerc1f15002011-04-01 20:47:54 -0400102
103fixed pthread cancellation ABI on i386 to match the LSB/glibc ABI
104
105better double-free handling in malloc
106
107various minor bug fixes
Rich Felkerbd1f6eb2011-04-04 18:00:02 -0400108
109
110
1110.7.6 - major bug fixes
112
113fixed rare but serious under-allocation bug in malloc.
114
115fixed signedness bug in strchr that prevented finding high bytes.
116
117fixed serious parsing bugs in strtold.
118
119fixed statvfs syscall (it was always failing with EINVAL).
120
121fixed race condition in set*id() functions with threads (possible
122deadlock). further audit still needed though.
123
124fseek no longer sets the stream error flag on failed seeks (this was
125wrong and broke some programs, notably GNU m4).
126
127nl_langinfo is no longer a dummy function. (the functionality was
128previously implemented but accidentally left unused).
129
130various small fixes have been made to the implementations and
131prototypes for nonstandard and obsolete functions
Rich Felker25ce7622011-04-05 10:28:08 -0400132
133
134
Rich Felker00817f02011-04-06 14:46:37 -04001350.7.7 - more bug fixes and program-compatibility improvements
Rich Felker25ce7622011-04-05 10:28:08 -0400136
137fixed floating point formatting and rounding bugs in printf.
138
139fixed broken %N$ positional argument specifiers in printf.
140
141fixed misaligned read/overread bug in strchr which could lead to
142crashes scanning tiny strings at the end of a page when the next page
143is not readable, or on archs (not yet supported) that forbid
144misaligned reads.
145
Rich Felker00817f02011-04-06 14:46:37 -0400146fixed breakage of statvfs on x86_64
147
148fixed crash in getmntent_r
149
150fixed bug in POSIX timers created with NULL sigevent argument
151
152improved semaphore performance, and sem_wait is now interruptable by
153signals, as required by POSIX.
154
Rich Felker59a37f82011-04-05 18:58:47 -0400155added many compatibility and system-level interfaces, increasing the
156proportion of busybox that works with musl.
Rich Felker2d1d62e2011-04-09 01:32:38 -0400157
158
159
Rich Felker088ae592011-04-14 23:33:46 -04001600.7.8 - more bug fixes and compatibility improvements
Rich Felker2d1d62e2011-04-09 01:32:38 -0400161
162fixed problems with ipv6 dns and address printing code that made ipv6
163support practically unusable, and some other getaddrinfo bugs.
164
165fixed broken sendmsg/recvmsg functions on x86_64 (caused by incorrect
166msghdr structure).
167
168fixed broken sigsetjmp asm on x86_64.
169
170worked around a problem with input buffering on terminals reblocking
171after getting a blank line, due to a bug in the linux readv syscall.
172
173various improvements to the "rsyscall" system used to implement
174threaded setuid, setgid, etc.
Rich Felker09135602011-04-12 13:36:22 -0400175
176exiting/cancelling the a timer handler thread no longer kills the
177timer.
178
179fixed incorrect trailing zeros on some %g conversions in printf.
180
181fixed buggy byte-swapping functions and moved them to inlines in
182byteswap.h.
183
184many small improvements to header/application compatibility, support
185for nonstandard macros, etc.
Rich Felker088ae592011-04-14 23:33:46 -0400186
187
188
Rich Felkerdb9915e2011-04-22 20:14:04 -04001890.7.9 release notes
Rich Felkercbb65af2011-04-21 23:33:39 -0400190
Rich Felkerdb9915e2011-04-22 20:14:04 -0400191new pthread cancellation implementation:
192- safe against resource-leak/side-effect-leak race conditions
193- safe against interruption by signal handlers
194- reduced bloat in all cancellable functions
195- reduced bloat for blocking cancellation
Rich Felkercbb65af2011-04-21 23:33:39 -0400196
Rich Felkerdb9915e2011-04-22 20:14:04 -0400197new interfaces implemented:
198- realpath (limited functionality)
199- wordexp (limited functionality)
200- flock (nonstandard)
201- forkpty (nonstandard)
202- posix_fadvise
203- posix_fallocate
Rich Felkercbb65af2011-04-21 23:33:39 -0400204
Rich Felkerdb9915e2011-04-22 20:14:04 -0400205general bug fixes:
206- syslog function failure to communicate with syslogd
207- bug in siginfo_t definition if wait.h was included before signal.h
208- incorrect struct definitions for most of sysv ipc
209- pthread_exit/cancel on timer handler wrongly destroying the timer
210- linux dup2 ebusy workaround
211- obscure issues in non-threaded programs using some pthread functions
212- getopt_long allowed mismatch in last char of option name
213- incorrect parsing of obscure ip address forms
214- initgroups not working reliably (uninitialized var)
215- shadow pass treating empty expiry field as pass-expired-in-1970
216- bogus longjmp if pthread_exit was called from cancellation handlers
Rich Felker088ae592011-04-14 23:33:46 -0400217
Rich Felkerdb9915e2011-04-22 20:14:04 -0400218x86_64-specific bug fixes:
219- fcntl file locking
220- thread stack alignment
221- broken select timeouts due to incorrect timeval definition
Rich Felkerc5025bf2011-05-17 14:13:06 -0400222
223
224
2250.7.10 release notes
226
227new features:
228- ipv6 numeric string parsing
229- eventfd syscall wrappers
230
231optimizations:
232- new qsort implementation using the smoothsort algorithm
233- much smaller/faster sigset_t handling functions
234- lowered spin count before futex wait in synchronization functions
235
236general bug fixes:
237- incorrect floating point round-to-even behavior in printf
238- major bugs in pthread barrier implementation
239- off-by-one error in scanf %n results
240- scanf failure to report EOF when scanning for literal text
241- minor missing/incorrect prototype issues
242- dependency on undefined call order in fclose
243
244compiler issue workarounds:
245- incorrect inlining of variadic functions on recent gcc versions
246- pcc preprocessor bug with recursive macro expansion
Rich Felker2cee4572011-06-28 22:06:58 -0400247
248
249
2500.7.11 release notes
251
252new features:
253- integrated dynamic linker
254- dynamic loading (dlopen/dlsym) (for dynamic-linked programs only)
255- XSI search.h API
256- POSIX message queues
257- POSIX spawn interfaces
258- BSD pseudo-random number generator API (random/srandom/initstate/etc.)
259- floating point environment (limited usefulness due to gcc bugs)
260
261general bug fixes:
262- possible crashes with wordexp due to uninitialized variable
263- race condition in pthread_kill (also present and unfixed in glibc/nptl)
264- pthread exit destructors called too late
265- dangerous unbounded vla in glob
266- brk/sbrk legacy functions mismatching legacy semantics
267- wcsncpy dest buffer overflow
268- strncat and wcsncat possible overflows due to double-termination
Rich Felker58483f02011-07-03 16:41:20 -0400269
270
271
2720.7.12 release notes
273
274new features:
275- support for textrels in shared objects
276- rpath support in dynamic linker
277- stdio_ext.h functions (for better gnu software compatibility)
278
279bug fixes:
280- some compilers miscompiling dlopen due to misuse of longjmp
281- safe handling of invalid long-double bit patterns (affects printf)
282- workaround for bugs in linux mprotect syscall
283- thread-safety for random() functions
284- various minor issues
Rich Felker801b3112011-09-13 13:41:40 -0400285
286
287
Rich Felker5e9deea2011-09-13 16:12:57 -04002880.8.0 release notes
Rich Felker801b3112011-09-13 13:41:40 -0400289
290new features:
291- chinese and japanese legacy charset support in iconv
292- zero-syscall clock_gettime support (dynamic-linked x86_64 only)
293- futex-based locking for stdio (previously used spinlocks)
294- LD_PRELOAD and RTLD_NEXT support in dynamic linker
295- strptime (mostly working but incomplete)
296- posix aio (mostly working but not entirely conformant)
297- memory streams (fmemopen, open_memstream, ...)
298- stub/dummy implementations for various useless legacy functions
299- if_nameindex
300
301security hardening:
302- setuid, etc. should not longer be able to "partially fail" with threads
303- ensure suid programs start with fd 0,1,2 open
304- improved openpty/forkpty failure checks
305
306threads/synchronization bug fixes:
307- dangerous spurious wakeup in pthread_join lead to early return
308- race condition enabling async cancellation (delayed/lost cancellation)
309- destruction/unmapping race conditions in semaphores, mutexes, rwlocks
310- recursive rwlock_rdlock deadlock when a writer is waiting
311- race condition in sigqueue with fork
312- timer expiration thread exit wasn't running dtors
313- timer threads weren't blocking signals
314- close was wrongly cancellable after succeeding on some devices
315- robust mutex list was not reset on fork
316
317general bug fixes:
318- incorrect logic in fread (spurious blocking; crash on write-only files)
319- many corner cases and overflow cases for strtol-family functions
320- various printf integer formatting issues with flags/width/precision
321- incorrect iconv return value on failure
322- broken FD_* macros on 64-bit targets
323- clock function returning wrong value (real time not cpu time)
324- siglongjmp signal mask clobbering (off-by-one pointer error)
325- dynamic linker weak symbol resolution issues
326- fdopendir failure to set errno
327- various minor header fixes