ChangeLog 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. 2006-03-02 16:06 Christos Zoulas <christos@zoulas.com>
  2. * Print empty if the file is (Mike Frysinger)
  3. * Don't try to read past the end of the buffer (Mike Frysinger)
  4. * Sort magic entries by strength [experimental]
  5. 2005-11-29 13:26 Christos Zoulas <christos@zoulas.com>
  6. * Use iswprint() to convert the output string.
  7. (Bastien Nocera)
  8. 2005-10-31 8:54 Christos Zoulas <christos@zoulas.com>
  9. * Fix regression where the core info was not completely processed
  10. (Radek Vokál)
  11. 2005-10-20 11:15 Christos Zoulas <christos@zoulas.com>
  12. * Middle Endian magic (Diomidis Spinellis)
  13. 2005-10-17 11:15 Christos Zoulas <christos@zoulas.com>
  14. * Open with O_BINARY for CYGWIN (Corinna Vinschen)
  15. * Don't close stdin (Arkadiusz Miskiewicz)
  16. * Look for note sections in non executables.
  17. 2005-09-20 13:33 Christos Zoulas <christos@zoulas.com>
  18. * Don't print SVR4 Style in core files multiple times
  19. (Radek Vokál)
  20. 2005-08-27 04:09 Christos Zoulas <christos@zoulas.com>
  21. * Cygwin changes Corinna Vinschen
  22. 2005-08-18 09:53 Christos Zoulas <christos@zoulas.com>
  23. * Remove erroreous mention of /etc/magic in the file man page
  24. This is gentoo bug 101639. (Mike Frysinger)
  25. * Cross-compile support and detection (Mike Frysinger)
  26. 2005-08-12 10:17 Christos Zoulas <christos@zoulas.com>
  27. * Add -h flag and dereference symlinks if POSIXLY_CORRECT
  28. is set.
  29. 2005-07-29 13:57 Christos Zoulas <christos@zoulas.com>
  30. * Avoid search and regex buffer overflows (Kelledin)
  31. 2005-07-12 11:48 Christos Zoulas <christos@zoulas.com>
  32. * Provide stub implementations for {v,}nsprintf() for older
  33. OS's that don't have them.
  34. * Change mbstate_t autoconf detection macro from AC_MBSTATE_T
  35. to AC_TYPE_MBSTATE_T.
  36. 2005-06-25 11:48 Christos Zoulas <christos@zoulas.com>
  37. * Dynamically allocate the string buffers and make the
  38. default read size 256K.
  39. 2005-06-01 00:00 Joerg Sonnenberger <joerg@britannica.bec.de>
  40. * Dragonfly ELF note support
  41. 2005-03-14 00:00 Giuliano Bertoletti <gb@symbolic.it>
  42. * Avoid NULL pointer dereference in time conversion.
  43. 2005-03-06 00:00 Joerg Walter <jwalt@mail.garni.ch>
  44. * Add indirect magic offset support, and search mode.
  45. 2005-01-12 00:00 Stepan Kasal <kasal@ucw.cz>
  46. * src/ascmagic.c (file_ascmagic): Fix three bugs about text files:
  47. If a CRLF text file happens to have CR at offset HOWMANY - 1
  48. (currently 0xffff), it should not be counted as CR line
  49. terminator.
  50. If a line has length exactly MAXLINELEN, it should not yet be
  51. treated as a ``very long line'', as MAXLINELEN is ``longest sane
  52. line length''.
  53. With CRLF, the line length was not computed correctly, and even
  54. lines of length MAXLINELEN - 1 were treated as ``very long''.
  55. 2004-12-07 14:15 Christos Zoulas <christos@zoulas.com>
  56. * bzip2 needs a lot of input buffer space on some files
  57. before it can begin uncompressing. This makes file -z
  58. fail on some bz2 files. Fix it by giving it a copy of
  59. the file descriptor to read as much as it wants if we
  60. have access to it. <christos@zoulas.com>
  61. 2004-11-24 12:39 Christos Zoulas <christos@zoulas.com>
  62. * Stack smash fix, and ELF more conservative reading.
  63. Jakub Bogusz <qboosh@pld-linux.org>
  64. 2004-11-20 18:50 Christos Zoulas <christos@zoulas.com>
  65. * New FreeBSD version parsing code:
  66. Jon Noack <noackjr@alumni.rice.edu>
  67. * Hackish support for ucs16 strings <christos@zoulas.com>
  68. 2004-11-13 03:07 Christos Zoulas <christos@zoulas.com>
  69. * print the file name and line number in syntax errors.
  70. 2004 10-12 10:50 Christos Zoulas <christos@zoulas.com>
  71. * Fix stack overwriting on 0 length strings: Tim Waugh
  72. <twaugh@redhat.com> Ned Ludd <solar@gentoo.org>
  73. 2004-09-27 11:30 Christos Zoulas <christos@zoulas.com>
  74. * Remove 3rd and 4th copyright clause; approved by Ian Darwin.
  75. * Fix small memory leaks; caught by: Tamas Sarlos
  76. <stamas@csillag.ilab.sztaki.hu>
  77. 2004-07-24 16:33 Christos Zoulas <christos@zoulas.com>
  78. * magic.mime update Danny Milosavljevic <danny.milo@gmx.net>
  79. * FreeBSD version update Oliver Eikemeier <eikemeier@fillmore-labs.com>
  80. * utime/utimes detection Ian Lance Taylor <ian@wasabisystems.com>
  81. * errors reading elf magic Jakub Bogusz <qboosh@pld-linux.org>
  82. 2004-04-12 10:55 Christos Zoulas <christos@zoulas.com>
  83. * make sure that magic formats match magic types during compilation
  84. * fix broken sgi magic file
  85. 2004-04-06 20:36 Christos Zoulas <christos@zoulas.com>
  86. * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com>
  87. * magic fixes
  88. 2004-03-22 15:25 Christos Zoulas <christos@zoulas.com>
  89. * Lots of mime fixes
  90. (Joerg Ostertag) <ostertag@rechengilde.de>
  91. * FreeBSD ELF version handling
  92. (Edwin Groothuis) <edwin@mavetju.org>
  93. * correct cleanup in all cases; don't just close the file.
  94. (Christos Zoulas) <christos@zoulas.com>
  95. * add gettext message catalogue support
  96. (Michael Piefel) <piefel@debian.org>
  97. * better printout for unreadable files
  98. (Michael Piefel) <piefel@debian.org>
  99. * compensate for missing MAXPATHLEN
  100. (Michael Piefel) <piefel@debian.org>
  101. * add wide character string length computation
  102. (Michael Piefel) <piefel@debian.org>
  103. * Avoid infinite loops caused by bad elf alignments
  104. or name and description note sizes. Reported by
  105. (Mikael Magnusson) <mmikael@comhem.se>
  106. 2004-03-09 13:55 Christos Zoulas <christos@zoulas.com>
  107. * Fix possible memory leak on error and add missing regfree
  108. (Dmitry V. Levin) <ldv@altlinux.org>
  109. 2003-12-23 12:12 Christos Zoulas <christos@zoulas.com>
  110. * fix -k flag (Maciej W. Rozycki)
  111. 2003-11-18 14:10 Christos Zoulas <christos@zoulas.com>
  112. * Try to give us much info as possible on corrupt elf files.
  113. (Willy Tarreau) <willy@w.ods.org>
  114. * Updated python bindings (Brett Funderburg)
  115. <brettf@deepfile.com>
  116. 2003-11-11 15:03 Christos Zoulas <christos@zoulas.com>
  117. * Include file.h first, because it includes config.h
  118. breaks largefile test macros otherwise.
  119. (Paul Eggert <eggert@CS.UCLA.EDU> via
  120. Lars Hecking <lhecking@nmrc.ie>)
  121. 2003-10-14 21:39 Christos Zoulas <christos@zoulas.com>
  122. * Python bindings (Brett Funderburg) <brettf@deepfile.com>
  123. * Don't lookup past the end of the buffer
  124. (Chad Hanson) <chanson@tcs-sec.com>
  125. * Add MAGIC_ERROR and api on magic_errno()
  126. 2003-10-08 12:40 Christos Zoulas <christos@zoulas.com>
  127. * handle error conditions from compile as fatal
  128. (Antti Kantee) <pooka@netbsd.org>
  129. * handle magic filename parsing sanely
  130. * more magic fixes.
  131. * fix a memory leak (Illes Marton) <illes.marton@balabit.hu>
  132. * describe magic file handling
  133. (Bryan Henderson) <bryanh@giraffe-data.com>
  134. 2003-09-12 15:09 Christos Zoulas <christos@zoulas.com>
  135. * update magic files.
  136. * remove largefile support from file.h; it breaks things on most OS's
  137. 2003-08-10 10:25 Christos Zoulas <christos@zoulas.com>
  138. * fix unmapping'ing of mmaped files.
  139. 2003-07-10 12:03 Christos Zoulas <christos@zoulas.com>
  140. * don't exit with -1 on error; always exit 1 (Marty Leisner)
  141. * restore utimes code.
  142. 2003-06-10 17:03 Christos Zoulas <christos@zoulas.com>
  143. * make sure we don't access uninitialized memory.
  144. * pass lint
  145. * #ifdef __cplusplus in magic.h
  146. 2003-05-25 19:23 Christos Zoulas <christos@zoulas.com>
  147. * rename cvs magic file to revision to deal with
  148. case insensitive filesystems.
  149. 2003-05-23 17:03 Christos Zoulas <christos@zoulas.com>
  150. * documentation fixes from Michael Piefel <piefel@debian.org>
  151. * magic fixes (various)
  152. * revert basename magic in .mgc name determination
  153. * buffer protection in uncompress,
  154. signness issues,
  155. close files
  156. Maciej W. Rozycki <macro@ds2.pg.gda.pl
  157. 2003-04-21 20:12 Christos Zoulas <christos@zoulas.com>
  158. * fix zsh magic
  159. 2003-04-04 16:59 Christos Zoulas <christos@zoulas.com>
  160. * fix operand sort order in string.
  161. 2003-04-02 17:30 Christos Zoulas <christos@zoulas.com>
  162. * cleanup namespace in magic.h
  163. 2003-04-02 13:50 Christos Zoulas <christos@zoulas.com>
  164. * Magic additions (Alex Ott)
  165. * Fix bug that broke VPATH compilation (Peter Breitenlohner)
  166. 2003-03-28 16:03 Christos Zoulas <christos@zoulas.com>
  167. * remove packed attribute from magic struct.
  168. * make the magic struct properly aligned.
  169. * bump version number of compiled files to 2.
  170. 2003-03-27 13:10 Christos Zoulas <christos@zoulas.com>
  171. * separate tar detection and run it before softmagic.
  172. * fix reversed symlink test.
  173. * fix version printing.
  174. * make separator a string instead of a char.
  175. * update manual page and sort options.
  176. 2003-03-26 11:00 Christos Zoulas <christos@zoulas.com>
  177. * Pass lint
  178. * make NULL in magic_file mean stdin
  179. * Fix "-" argument to file to pass NULL to magic_file
  180. * avoid pointer casts by using memcpy
  181. * rename magic_buf -> magic_buffer
  182. * keep only the first error
  183. * manual page: new sentence, new line
  184. * fix typo in api function (magic_buf -> magic_buffer)