Changelog 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. 0.9.13 9 August 2002
  2. Security Fixes
  3. o There was an off-by-one buffer overflow in the group
  4. handling code, fix thanks to Joseph Chiu.
  5. o There was an integer overflow bug in calloc, per
  6. http://online.securityfocus.com/bid/5398
  7. o There was an integer overflow bug in the xdr_array
  8. RPC code, per http://online.securityfocus.com/bid/5356
  9. See Changelog.full for the complete list of who did what.
  10. Release highlights:
  11. o Add full shared library support for Hitachi SuperH (sh)
  12. thanks to Stefan Allius and Edie C. Dost
  13. o Lots of reentrance cleanups (we should now be fully
  14. reentrant when compiled with pthread support).
  15. o Miles Bader implemented a new mmap based malloc which is much
  16. smarter than the old "malloc-simple", and actually works, unlike
  17. the old "malloc". This is now the default for mmu-less systems
  18. and should greatly help reduce memory fragmentation and wastage.
  19. o Reworked syscall handling for i386 and ARM, smaller and cleaner.
  20. o Support for the syscall() function on i386 and ARM
  21. o The uClibc g++ wrapper now automagically adds the proper include
  22. search path and and libraries.
  23. o Lots of shared library loader updates
  24. o dlopen'd shred libraries not properly run destructors
  25. when ctor/dtor support is enabled
  26. o pread/pwrite/pread64/pwrite64 now all work as expected
  27. o Lots and lots of other bug fixes and cleanups.
  28. -Erik
  29. 0.9.12 20 June 2002
  30. See Changelog.full for the complete list of who did what.
  31. Release highlights:
  32. o Add full shared library support for mips (big and little
  33. endian), thanks to a lot of hard work from Steven J. Hill
  34. o i960 architecture support, thanks to Martin Proulx
  35. o An initial alpha port (works, but needs some cleanup)
  36. o Fixes shared library support for powerpc
  37. o Fixes for mmu-less systems
  38. o Much improved thread locking and reentrance.
  39. o More gcc wrapper updates. XFree86 really does link
  40. this time around. It still didn't last time.
  41. o Libcrypt now passes conformance tests
  42. o Nearly complete locale supporti thanks to a lot
  43. of hard work by Manuel Novoa III. This stuff is
  44. _way_ smaller than glibc's
  45. o Completely new time handling functions also by Manuel
  46. o Lots of other bug fixes and cleanups.
  47. -Erik
  48. Erik Andersen:
  49. 0.9.11 10 April 2002
  50. Release highlights:
  51. o Lots of bug fixes
  52. o Much better large file support
  53. o Several gcc wrapper bug fixes, so things like iproute2 and
  54. XFree86 should now link properly.
  55. o Fixes a stdio thread locking bug that could cause random
  56. deadlocks on s*printf calls when threading was enabled.
  57. Erik Andersen:
  58. o Added a generic implementation of truncate64.c and ftruncate64.c
  59. o Added missing creat64, glob64, mkstemp64, getrlimit64, setrlimit64
  60. o Removed internal erroneous use of __USE_FILE_OFFSET64
  61. o Made libpthread compile on sparc and powerpc
  62. o Made libpthread soname and symlinks match the other libraries.
  63. o Added finite() to the C89 math lib, since some math functions use it.
  64. o Added missing function pointer to error.c (some apps wanted it)
  65. o Fixed initfini build for arches where gcc tries to be sneaky
  66. o Fixed m68k/bits/setjmp.h which I has broken in the last release.
  67. o Fixed a buffer overflow in the dynamic library loader
  68. o Fixed a stdio thread locking bug that could cause random
  69. deadlocks on s*printf calls when threading was enabled.
  70. o Implemented sqrtf(), needed for libstdc++ on arm
  71. Miles Bader:
  72. o Make clean fixes to not blindly wipe all symlinks
  73. o Re-enabled clnt_perror()
  74. o Re-implemented swab()
  75. Dwayne Fontenot:
  76. o Many updates to the uClibc Working Application List
  77. Steven J. Hill:
  78. o Many updates to the mips dynamic loader. Not yet working but
  79. getting very close now.
  80. o Fixed locking bug in getttyent()
  81. o Support libpthread on mips
  82. Richard June:
  83. o Fixed several bugs in utmp code (pututline was only writing the
  84. first sizeof-a-pointer bytes to the utmpfile).
  85. o setutent() was only opening utmp readonly.
  86. m4@brecis.COM:
  87. o Fixed a silly typing problem with the getuid syscall.
  88. Manuel Novoa III:
  89. o Fixed stdio FILE read/write auto-transition bugs.
  90. o Better stdio errno handling
  91. o Changed setvbuf() to more closely match glibc's behavior
  92. o Fixed getpass() to not echo passwords to the console
  93. o Fixed locale ISblank flag.
  94. o Fixed an arg promotion handling bug in _do_one_spec for %c reported
  95. by Ilguiz Latypov.
  96. Kensuke Otake:
  97. o Implemented swab()
  98. Yoshinori Sato:
  99. o Fixed h8300 architecture support for pthreads and changes to
  100. the include files
  101. David Schleef:
  102. o Made powerpc assembly code PIC-compatible
  103. o Removed powerpc R_PPC_REL24 handling, since it was deceptively useless.
  104. John Traill:
  105. o Several types on powerpc, such as dev_t, are different than on other
  106. architectures. John spotted this, which fixed a _ton_ of problems since
  107. anything calling stat() was previously broken.
  108. Jim Treadway:
  109. o Eliminated use of alarm() from the DNS resolver by converting
  110. it to use select instead (much cleaner).
  111. 0.9.10 21 March 2002
  112. Major new features:
  113. o pthreads support (derived from glibc 2.1.3's linuxthreads library)
  114. by Stefan Soucek and Erik Andersen
  115. o pthreads support for MMU-less systems, by Stefan Soucek
  116. o Complete rewrite of all stdio functions for standards compliance,
  117. small size, pthreads support, wide/narrow stream support, large
  118. file support, unbuffered support, etc, etc by Manuel Novoa III
  119. o gcc wrapper reworked by Erik Andersen. Now operated correctly in
  120. all known cases, and now wraps g++ as well for C++ support.
  121. o constructor/destructor support, for C++ by Erik Andersen.
  122. o Eliminated duplicate include/bits header files, by Erik Andersen.
  123. Now all common include/bits headers are grouped together.
  124. Erik Andersen:
  125. o Lots of changes and improvements to the shared library loader
  126. o Cleaned up a piles of bugs
  127. o Fixed a segfault when scandir was called on empty directories.
  128. o Several syscalls added: pread/pwrite
  129. o Makefile/build system cleanups
  130. o Sighandling fixes
  131. o pthreads support (with Stefan Soucek)
  132. o Added ldexp to the C89 math library, per POSIX
  133. o fclose() EINTR handling is now correct per IEEE Std 1003.1-2001
  134. o Support isblank()
  135. o Reworked libcrypt to avoid leaking private symbols into the namespace
  136. o Added strtof(), strtold(), updwtmp(), strptime()
  137. o Fix ldso build for older arm cross compilers
  138. Miles Bader:
  139. o atexit cleanups
  140. o fixed gcc wrapper handling of -M* options
  141. o Fixed truncate64/ftruncate64 to restrict them to 64-bit systems,
  142. since we can't be sure that the _syscall macros can cope with 64
  143. bit args on 32 bit arches.
  144. o Large File support on the v850
  145. o Fixed v850 headers after Erik messed them up
  146. o Eliminate include/features.h namespace pollution
  147. M. R. Brown:
  148. o Fixed pthread support for SH, and fixed SH vfork as well
  149. o Fixed SH headers after Erik messed them up
  150. Geoffrey Espin:
  151. o Mips architecture cleanups. Now works perfectly
  152. with busybox, vi, ash, etc...
  153. o Merged in the random number support (rand, srand, etc) from glibc.
  154. Thomas Fritzsche:
  155. o Fixes DNS resolver bug from 0.9.9
  156. Steven J. Hill:
  157. o Fixed build to support both mips and mipsel
  158. o Beginnings of a mips ldso port
  159. Andrew Ip:
  160. o Support for gnu error() functions
  161. David McCullough:
  162. o Coldfire platform updates: clone, setjmp
  163. o Fixed simple malloc to work on systems with an MMU
  164. Manuel Novoa III:
  165. o Rewrote all stdio functions for standards compliance, small size,
  166. pthreads support, wide/narrow stream support, large file support,
  167. unbuffered support, etc, etc, etc.
  168. o Rewrote the various string to int functions to be smaller, more
  169. standards compilant, and reduce dependance on libgcc.a.
  170. Yoshinori Sato:
  171. o ptrace for the Hitachi h8300 fix
  172. David Schleef:
  173. o Debian packaging updates
  174. o Check for proper 16-byte aliged stack pointer on powerpc
  175. Stefan Soucek:
  176. o pthreads support for MMU-less systems
  177. o pthreads support (with Erik Andersen)
  178. Brian Stafford:
  179. o Rewrote strcasecmp() per SUSv2.
  180. Bart Visscher:
  181. o Added missing IPV6 support and reentrant networking function
  182. additions so iptables now runs with IPV6 support.
  183. 0.9.9 February 4, 2002
  184. Erik Andersen:
  185. o A bunch of doc updates. Major update to the working
  186. apps list.
  187. o Added a configurator script (extra/Configs/uClibc_config_fix.pl)
  188. which can simplify configuring uClibc.
  189. o Fixed setjmp/longjmp on x86,arm,powerpc,mips,and sparc.
  190. Hitting ^C in ash kills client apps now, not ash.
  191. o Reworked signal handling code so it now passes POSIX
  192. conformance tests.
  193. o Fixed sleep and usleep to work correctly when
  194. interrupted by signals.
  195. o Made getopt behave the same when staticly linking
  196. as when dynamicly linking. It was using different
  197. implementations depending on how apps were linked.
  198. o Added missing inttypes.h header file
  199. o Eliminate all C++ style comments from header files
  200. o Support statvfs and statfs
  201. o Support getmntent_r
  202. o Scandir and scandir64 were calling malloc without
  203. checking for ENOMEM
  204. o Fixed stpcpy function declaration
  205. o Many large file support improvements.
  206. o Fixed fcntl to work when DOLFS is enabled
  207. o Fixed termios code to do the Right Thing(tm)
  208. o Allow regex to be excluded at compile time
  209. o Implemented mempcpy
  210. o Build ldd and readelf for the target system and for the
  211. host system
  212. o Fix several cases where get-needed-libgcc-objects.sh
  213. could fail, breaking the shared uClibc library.
  214. o Include all shared library loader objects into a
  215. single C file, thereby reducing its size further.
  216. o Reworked the shared library linking process to be more
  217. flexible so that gcc and ld can more easily be built to
  218. target uClibc library.
  219. o Better error checking in the Makefiles. Be more pedantic
  220. about tar, chmod, etc to avoid system dependent failures.
  221. o We can now autodetect the target architecture
  222. o Hide references to wchar_t so GNU autoconf
  223. configure scripts won't get confused and try to
  224. enable wide char support.
  225. o Fixed stdio.h so apps can use varargs.h if they want to.
  226. o Added brk/sbrk support for ARM, powerpc, mips, and sparc
  227. and set them to default to the much faster brk using malloc
  228. o Added missing syscalls: get_kernel_syms, fcntl64,
  229. fdatasync, sched_setparam, sched_getparam,
  230. sched_setscheduler, sched_getscheduler,
  231. sched_get_priority_max, sched_get_priority_min,
  232. sched_rr_get_interval, sigaltstack, sendfile,
  233. pivot_root, sigsuspend, setfsuid, and setfsgid
  234. o Force DOPIC be true when HAVE_SHARED is true.
  235. o Fixed hstrerror()
  236. o Implemented gethostent(), sethostent(), and endhostent()
  237. o Added arch specific support so that sparc and mips actually
  238. compile and work
  239. Miles Bader:
  240. o Fixes for the v850 architecture: crt0, setjmp,
  241. arch autodetection, etc.
  242. o Fixed `make install' to not build ldso stuff on
  243. non-shared-library systems.
  244. Michael E Brown:
  245. o Allow the gcc wrapper to support setting DEVEL_PREFIX
  246. and BUILD_DIR at runtime (no more need to recompile).
  247. M. R. Brown and Erik Andersen:
  248. o Fixed the SH port so it now works. Tested and shown
  249. working on an SH4 Dreamcast system.
  250. Kim Heino:
  251. o Made 'make clean' remove generated bits/syscall.h
  252. David McCullough:
  253. o SH architecture updates. Added brk, sbrk,
  254. o Fixed simple malloc to work on systems with an MMU
  255. o Taught getutent to return NULL if utmp doesn't exist.
  256. o Added insque/remque support
  257. o Fixed DNS resolver version number so apps won't get
  258. confused and use the wrong API.
  259. o Added Config selectable shadow password support
  260. Yoshinori Sato
  261. o Contributed support for the Hitach H8/300H architecture
  262. Cédric Schieli:
  263. o Add support for inet_netof, inet_lnaof, inet_makeaddr
  264. and hstrerror.
  265. David Schleef:
  266. o Added libstrip, a nifty script to automagically
  267. strip unneeded content from the uClibc shared
  268. libraries.
  269. Martin Sieper
  270. o Added getw() and putw()
  271. o Added missing header files -- lastlog.h, sgtty.h,
  272. netipx/ipx.h, sys/perm.h
  273. Stefan Soucek:
  274. o Add rcmd support, i.e. rsh, rlogin, etc.
  275. o Fix rcmd to avoid alloca, which is dangerous
  276. on mmu-less systems
  277. spudmonkey@racsa.co.cr:
  278. o Eliminate a buffer overflow in the shared library loader
  279. Brian Stafford:
  280. o Enable support for Unix98 PTYs, and add option
  281. to disable old style PTYs.