ChangeLog 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. 2009-04-30 17:10 Christos Zoulas <christos@zoulas.com>
  2. * Fix more cdf lossage. All the documents I have
  3. right now print the correct information.
  4. 2009-03-27 18:43 Christos Zoulas <christos@zoulas.com>
  5. * don't print \012- separators in the same magic entry
  6. if it consists of multiple magic printing lines.
  7. 2009-03-23 10:20 Christos Zoulas <christos@zoulas.com>
  8. * Avoid file descriptor leak in compress code from
  9. (Daniel Novotny)
  10. 2009-03-18 16:50 Christos Zoulas <christos@zoulas.com>
  11. * Allow escaping of relation characters, so that we can say \^[A-Z]
  12. and the ^ is not eaten as a relation char.
  13. * Fix troff and fortran to their previous glory using
  14. regex. This was broken since their removel from ascmagic.
  15. 2009-03-10 16:50 Christos Zoulas <christos@zoulas.com>
  16. * don't use strlen in strndup() (Toby Peterson)
  17. 2009-03-10 7:45 Christos Zoulas <christos@zoulas.com>
  18. * avoid c99 syntax.
  19. 2009-02-23 15:45 Christos Zoulas <christos@zoulas.com>
  20. * make the cdf code use the buffer first if available,
  21. and then the fd code.
  22. 2009-02-13 13:45 Christos Zoulas <christos@zoulas.com>
  23. * look for struct option to determine if getopt.h is usable for IRIX.
  24. * sanitize cdf document strings
  25. 2009-02-04 13:25 Christos Zoulas <christos@zoulas.com>
  26. * fix OS/2 warnings.
  27. 2008-12-12 15:50 Christos Zoulas <christos@zoulas.com>
  28. * fix initial offset calculation for non 4K sector files
  29. * add loop limits to avoid DoS attacks by constructing
  30. looping sector references.
  31. 2008-12-03 13:05 Christos Zoulas <christos@zoulas.com>
  32. * fix memory botches on cdf file parsing.
  33. * exit with non-zero value for any error, not just for the last
  34. file processed.
  35. 2008-11-09 20:42 Charles Longeau <chl@tuxfamily.org>
  36. * Replace all str{cpy,cat} functions with strl{cpy,cat}
  37. * Ensure that strl{cpy,cat} are included in libmagic,
  38. as needed.
  39. 2008-11-06 18:18 Christos Zoulas <christos@zoulas.com>
  40. * Handle ID3 format files.
  41. 2008-11-06 23:00 Reuben Thomas <rrt@sc3d.org>
  42. * Fix --mime, --mime-type and --mime-encoding under new scheme.
  43. * Rename "ascii" to "text" and add "encoding" test.
  44. * Return a precise ("utf-16le" or "utf-16be") MIME charset for
  45. UTF-16.
  46. * Fix error in comment caused by automatic indentation adding
  47. words!
  48. 2008-11-06 10:35 Christos Zoulas <christos@astron.com>
  49. * use memchr instead of strchr because the string
  50. might not be NUL terminated (Scott MacVicar)
  51. 2008-11-03 07:31 Reuben Thomas <rrt@sc3d.org>
  52. * Fix a printf with a non-literal format string.
  53. * Fix formatting and punctuation of help for "--apple".
  54. 2008-10-30 11:00 Reuben Thomas <rrt@sc3d.org>
  55. * Correct words counts in comments of struct magic.
  56. * Fix handle_annotation to allow both Apple and MIME types to be
  57. printed, and to return correct code if MIME type is
  58. printed (1, not 0) or if there's an error (-1 not 1).
  59. * Fix output of charset for MIME type (precede with semi-colon;
  60. fixes Debian bug #501460).
  61. * Fix potential attacks via conversion specifications in magic
  62. strings.
  63. * Add a FIXME for Debian bug #488562 (magic files should be
  64. read in a defined order, by sorting the names).
  65. 2008-10-18 16:45 Christos Zoulas <christos@astron.com>
  66. * Added APPLE file creator/type
  67. 2008-10-12 10:20 Christos Zoulas <christos@astron.com>
  68. * Added CDF parsing
  69. 2008-10-09 16:40 Christos Zoulas <christos@astron.com>
  70. * filesystem and msdos patches (Joerg Jenderek)
  71. 2008-10-09 13:20 Christos Zoulas <christos@astron.com>
  72. * correct --exclude documentation issues: remove troff and fortran
  73. and rename "token" to "tokens". (Randy McMurchy)
  74. 2008-10-01 10:30 Christos Zoulas <christos@astron.com>
  75. * Read ~/.magic in addition to the default magic file not instead
  76. of, as documented in the man page.
  77. 2008-09-10 21:30 Reuben Thomas <rrt@sc3d.org>
  78. * Comment out graphviz patterns, as they match too many files.
  79. 2008-08-30 12:54 Christos Zoulas <christos@astron.com>
  80. * Don't eat trailing \n in magic enties.
  81. * Cast defines to allow compilation using a c++ compiler.
  82. 2008-08-25 23:56 Reuben Thomas <rrt@sc3d.org>
  83. * Add text/x-lua MIME type for Lua scripts.
  84. * Escape { in regex in graphviz patterns.
  85. 2008-07-26 00:59 Reuben Thomas <rrt@sc3d.org>
  86. * Add MIME types for special files.
  87. * Use access to give more accurate information for files that
  88. can't be opened.
  89. * Add a TODO list.
  90. 2008-07-02 11:15 Christos Zoulas <christos@astron.com>
  91. * add !:strength op to adjust magic strength (experimental)
  92. 2008-06-16 21:41 Reuben Thomas <rrt@sc3d.org>
  93. * Fix automake error in configure.ac.
  94. * Add MIME type for Psion Sketch files.
  95. 2008-06-05 08:59 Christos Zoulas <christos@astron.com>
  96. * Don't print warnings about bad namesize in stripped
  97. binaries with PT_NOTE is still there, and the actual
  98. note is gone (Jakub Jelinek)
  99. 2008-05-28 15:12 Robert Byrnes <byrnes@wildpumpkin.net>
  100. * magic/Magdir/elf:
  101. Note invalid byte order for little-endian SPARC32PLUS.
  102. Add SPARC V9 vendor extensions and memory model.
  103. * src/elfclass.h:
  104. Pass target machine to doshn (for Solaris hardware capabilities).
  105. * src/readelf.c (doshn):
  106. Add support for Solaris hardware/software capabilities.
  107. * src/readelf.h:
  108. Ditto.
  109. * src/vasprintf.c (dispatch):
  110. Add support for ll modifier.
  111. 2008-05-16 10:25 Christos Zoulas <christos@astron.com>
  112. * Fix compiler warnings.
  113. * remove stray printf, and fix a vprintf bug. (Martin Dorey)
  114. 2008-05-06 00:13 Robert Byrnes <byrnes@wildpumpkin.net>
  115. * src/Makefile.am:
  116. Ensure that getopt_long and [v]asprintf are included in libmagic,
  117. as needed.
  118. Remove unnecessary EXTRA_DIST.
  119. * src/Makefile.in:
  120. Rerun automake.
  121. * src/vasprintf.c (dispatch):
  122. Fix variable precision bug: be sure to step past '*'.
  123. * src/vasprintf.c (core):
  124. Remove unreachable code.
  125. * src/apprentice.c (set_test_type):
  126. Add cast to avoid compiler warning.
  127. 2008-04-22 23:45 Christos Zoulas <christos@astron.com>
  128. * Add magic submission guidelines (Abel Cheung)
  129. * split msdos and windows magic (Abel Cheung)
  130. 2008-04-04 11:00 Christos Zoulas <christos@astron.com>
  131. * >= <= is not supported, so fix the magic and warn about it.
  132. reported by: Thien-Thi Nguyen <ttn@gnuvola.org>
  133. 2008-03-27 16:16 Robert Byrnes <byrnes@wildpumpkin.net>
  134. * src/readelf.c (donote):
  135. ELF core file command name/line bug fixes and enhancements:
  136. Try larger offsets first to avoid false matches
  137. from earlier data that happen to look like strings;
  138. this primarily affected SunOS 5.x 32-bit Intel core files.
  139. Add support for command line (instead of just short name)
  140. for SunOS 5.x.
  141. Add information about NT_PSINFO for SunOS 5.x.
  142. Only trim whitespace from end of command line.
  143. 2007-02-11 01:36 Reuben Thomas <rrt@sc3d.org>
  144. * Change strength of ! from MULT to 0, as it matches almost
  145. anything (Reuben Thomas)
  146. * Debian fixes (Reuben Thomas)
  147. 2007-02-11 00:17 Reuben Thomas <rrt@sc3d.org>
  148. * Clarify UTF-8 BOM message (Reuben Thomas)
  149. * Add HTML comment to token list in names.h
  150. 2007-02-04 15:50 Christos Zoulas <christos@astron.com>
  151. * Debian fixes (Reuben Thomas)
  152. 2007-02-04 11:31 Christos Zoulas <christos@astron.com>
  153. * !:mime annotations in magic files (Reuben Thomas)
  154. 2007-01-29 15:35 Christos Zoulas <christos@astron.com>
  155. * zero out utime/utimes structs (Gavin Atkinson)
  156. 2007-01-26 13:45 Christos Zoulas <christos@astron.com>
  157. * reduce writable data from Diego "Flameeyes" Petten
  158. 2007-12-28 15:06 Christos Zoulas <christos@astron.com>
  159. * strtof detection
  160. * remove bogus regex magic that could cause a DoS
  161. * better mismatch version message
  162. 2007-12-27 11:35 Christos Zoulas <christos@astron.com>
  163. * bring back some fixes from OpenBSD
  164. * treat ELF dynamic objects as executables
  165. * fix gcc warnings
  166. 2007-12-01 19:55 Christos Zoulas <christos@astron.com>
  167. * make sure we have zlib.h and libz to compile the builtin
  168. decompress code
  169. 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
  170. * float and double magic support (Behan Webster)
  171. 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
  172. * Convert fortran to a soft test (Reuben Thomas)
  173. 2007-10-23 5:25 Christos Zoulas <christos@astron.com>
  174. * Add --with-filename, and --no-filename (Reuben Thomas)
  175. 2007-10-23 3:59 Christos Zoulas <christos@astron.com>
  176. * Rest of the mime split (Reuben Thomas)
  177. * Make usage message generated from the flags so that
  178. they stay consistent (Reuben Thomas)
  179. 2007-10-20 3:06 Christos Zoulas <christos@astron.com>
  180. * typo in comment, missing ifdef QUICK, remove unneeded code
  181. (Charles Longeau)
  182. 2007-10-17 3:33 Christos Zoulas <christos@astron.com>
  183. * Fix problem printing -\012 in some entries
  184. * Separate magic type and encoding flags (Reuben Thomas)
  185. 2007-10-09 3:55 Christos Zoulas <christos@astron.com>
  186. * configure fix for int64 and strndup (Reuben Thomas)
  187. 2007-09-26 4:45 Christos Zoulas <christos@astron.com>
  188. * Add magic_descriptor() function.
  189. * Fix regression in elf reading code where the core name was
  190. not being printed.
  191. * Don't convert NUL's to spaces in {l,b}estring16 (Daniel Dawson)
  192. 2007-08-19 6:30 Christos Zoulas <christos@astron.com>
  193. * Make mime format consistent so that it can
  194. be easily parsed:
  195. mimetype [charset=character-set] [encoding=encoding-mime-type]
  196. Remove spurious extra text from some MIME type printouts
  197. (mostly in is_tar).
  198. Fix one case where -i produced nothing at all (for a 1-byte file,
  199. which is now classed as application/octet-stream).
  200. Remove 7/8bit classifications, since they were arbitrary
  201. and not based on the file data.
  202. This work was done by Reuben Thomas
  203. 2007-05-24 10:00 Christos Zoulas <christos@astron.com>
  204. * Fix another integer overflow (Colin Percival)
  205. 2007-03-26 13:58 Christos Zoulas <christos@astron.com>
  206. * make sure that all of struct magic_set is initialized appropriately
  207. (Brett)
  208. 2007-03-25 17:44 Christos Zoulas <christos@astron.com>
  209. * reset left bytes in the buffer (Dmitry V. Levin)
  210. * compilation failed with COMPILE_ONLY and ENABLE_CONDITIONALS
  211. (Peter Avalos)
  212. 2007-03-15 10:51 Christos Zoulas <christos@astron.com>
  213. * fix fortran and nroff reversed tests (Dmitry V. Levin)
  214. * fix exclude option (Dmitry V. Levin)
  215. 2007-02-08 17:30 Christos Zoulas <christos@astron.com>
  216. * fix integer underflow in file_printf which can lead to
  217. to exploitable heap overflow (Jean-Sebastien Guay-Lero)
  218. 2007-02-05 11:35 Christos Zoulas <christos@astron.com>
  219. * make socket/pipe reading more robust
  220. 2007-01-25 16:01 Christos Zoulas <christos@astron.com>
  221. * Centralize all the tests in file_buffer.
  222. * Add exclude flag.
  223. 2007-01-18 05:29 Anon Ymous <do@not.spam.me>
  224. * Move the "type" detection code from parse() into its own table
  225. driven routine. This avoids maintaining multiple lists in
  226. file.h.
  227. * Add an optional conditional field (ust before the type field).
  228. This code is wrapped in "#ifdef ENABLE_CONDITIONALS" as it is
  229. likely to go away.
  230. 2007-01-16 23:24 Anon Ymous <do@not.spam.me>
  231. * Fix an initialization bug in check_mem().
  232. 2007-01-16 14:58 Anon Ymous <do@not.spam.me>
  233. * Add a "default" type to print a message if nothing previously
  234. matched at that level or since the last default at that
  235. level. This is useful for setting up switch-like statements.
  236. It can also be used to do if/else constructions without a
  237. redundant second test.
  238. * Fix the "x" special case test so that one can test for that
  239. string with "=x".
  240. * Allow "search" to search the entire buffer if the "/N"
  241. search count is missing.
  242. * Make "regex" work! It now starts its search at the
  243. specified offset and takes an (optional) "/N" line count to
  244. specify the search range; otherwise it searches to the end
  245. of the file. The match is now grabbed correctly for format
  246. strings and the offset set to the end of the match.
  247. * Add a "/s" flag to "regex" and "search" to set the offset to
  248. the start of the match. By default the offset is set to the
  249. end of the match, as it is with other tests. This is mostly
  250. useful for "regex".
  251. * Make "search", "string" and "pstring" use the same
  252. file_strncmp() routine so that they support the same flags;
  253. "bestring16" and "lestring16" call the same routine, but
  254. with flags = 0. Also add a "/C" flag (in analogy to "/c")
  255. to ignore the case on uppercase (lowercase) characters in
  256. the test string.
  257. * Strict adherence to C style string escapes. A warnings are
  258. printed when compiling. Note: previously "\a" was
  259. incorrectly translated to 'a' instead of an <alert> (i.e.,
  260. BELL, typically 0x07).
  261. * Make this compile with "-Wall -Wextra" and all the warning
  262. flags used with WARNS=4 in the NetBSD source. Also make it
  263. pass lint.
  264. * Many "cleanups" and hopefully not too many new bugs!
  265. 2007-01-16 14:56 Anon Ymous <do@not.spam.me>
  266. * make several more files compile with gcc warnings
  267. on and also make them pass lint.
  268. 2007-01-16 14:54 Anon Ymous <do@not.spam.me>
  269. * fix a puts()/putc() usage goof in file.c
  270. * make file.c compile with gcc warnings and pass lint
  271. 2006-12-11 16:49 Christos Zoulas <christos@astron.com>
  272. * fix byteswapping issue
  273. * report the number of bytes we tried to
  274. allocate when allocation fails
  275. * add a few missed cases in the strength routine
  276. 2006-12-08 16:32 Christos Zoulas <christos@astron.com>
  277. * store and print the line number of the magic
  278. entry for debugging.
  279. * if the magic entry did not print anything,
  280. don't treat it as a match
  281. * change the magic strength algorithm to take
  282. into account the relationship op.
  283. * fix a bug in search where we could accidentally
  284. return a match.
  285. * propagate the error return from match to
  286. file_softmagic.
  287. 2006-11-25 13:35 Christos Zoulas <christos@astron.com>
  288. * Don't store the current offset in the magic
  289. struct, because it needs to be restored and
  290. it was not done properly all the time. Bug
  291. found by: Arkadiusz Miskiewicz
  292. * Fix problem in the '\0' separator; and don't
  293. print it as an additional separator; print
  294. it as the only separator.
  295. 2006-11-17 10:51 Christos Zoulas <christos@astron.com>
  296. * Added a -0 option to print a '\0' separator
  297. Etienne Buira <etienne.buira@free.fr>
  298. 2006-10-31 15:14 Christos Zoulas <christos@astron.com>
  299. * Check offset before copying (Mike Frysinger)
  300. * merge duplicated code
  301. * add quad date support
  302. * make sure that we nul terminate desc (Ryoji Kanai)
  303. * don't process elf notes multiple times
  304. * allow -z to report empty compressed files
  305. * use calloc to initialize the ascii buffers (Jos van den Oever)
  306. 2006-06-08 11:11 Christos Zoulas <christos@astron.com>
  307. * QNX fixes (Mike Gorchak)
  308. * Add quad support.
  309. * FIFO checks (Dr. Werner Fink)
  310. * Linux ELF fixes (Dr. Werner Fink)
  311. * Magic format checks (Dr. Werner Fink)
  312. * Magic format function improvent (Karl Chen)
  313. 2006-05-03 11:11 Christos Zoulas <christos@astron.com>
  314. * Pick up some elf changes and some constant fixes from SUSE
  315. * Identify gnu tar vs. posix tar
  316. * When keep going, don't print spurious newlines (Radek Vokál)
  317. 2006-04-01 12:02 Christos Zoulas <christos@astron.com>
  318. * Use calloc instead of malloc (Mike Frysinger)
  319. * Fix configure script to detect wctypes.h (Mike Frysinger)
  320. 2006-03-02 16:06 Christos Zoulas <christos@astron.com>
  321. * Print empty if the file is (Mike Frysinger)
  322. * Don't try to read past the end of the buffer (Mike Frysinger)
  323. * Sort magic entries by strength [experimental]
  324. 2005-11-29 13:26 Christos Zoulas <christos@astron.com>
  325. * Use iswprint() to convert the output string.
  326. (Bastien Nocera)
  327. 2005-10-31 8:54 Christos Zoulas <christos@astron.com>
  328. * Fix regression where the core info was not completely processed
  329. (Radek Vokál)
  330. 2005-10-20 11:15 Christos Zoulas <christos@astron.com>
  331. * Middle Endian magic (Diomidis Spinellis)
  332. 2005-10-17 11:15 Christos Zoulas <christos@astron.com>
  333. * Open with O_BINARY for CYGWIN (Corinna Vinschen)
  334. * Don't close stdin (Arkadiusz Miskiewicz)
  335. * Look for note sections in non executables.
  336. 2005-09-20 13:33 Christos Zoulas <christos@astron.com>
  337. * Don't print SVR4 Style in core files multiple times
  338. (Radek Vokál)
  339. 2005-08-27 04:09 Christos Zoulas <christos@astron.com>
  340. * Cygwin changes Corinna Vinschen
  341. 2005-08-18 09:53 Christos Zoulas <christos@astron.com>
  342. * Remove erroreous mention of /etc/magic in the file man page
  343. This is gentoo bug 101639. (Mike Frysinger)
  344. * Cross-compile support and detection (Mike Frysinger)
  345. 2005-08-12 10:17 Christos Zoulas <christos@astron.com>
  346. * Add -h flag and dereference symlinks if POSIXLY_CORRECT
  347. is set.
  348. 2005-07-29 13:57 Christos Zoulas <christos@astron.com>
  349. * Avoid search and regex buffer overflows (Kelledin)
  350. 2005-07-12 11:48 Christos Zoulas <christos@astron.com>
  351. * Provide stub implementations for {v,}nsprintf() for older
  352. OS's that don't have them.
  353. * Change mbstate_t autoconf detection macro from AC_MBSTATE_T
  354. to AC_TYPE_MBSTATE_T.
  355. 2005-06-25 11:48 Christos Zoulas <christos@astron.com>
  356. * Dynamically allocate the string buffers and make the
  357. default read size 256K.
  358. 2005-06-01 00:00 Joerg Sonnenberger <joerg@britannica.bec.de>
  359. * Dragonfly ELF note support
  360. 2005-03-14 00:00 Giuliano Bertoletti <gb@symbolic.it>
  361. * Avoid NULL pointer dereference in time conversion.
  362. 2005-03-06 00:00 Joerg Walter <jwalt@mail.garni.ch>
  363. * Add indirect magic offset support, and search mode.
  364. 2005-01-12 00:00 Stepan Kasal <kasal@ucw.cz>
  365. * src/ascmagic.c (file_ascmagic): Fix three bugs about text files:
  366. If a CRLF text file happens to have CR at offset HOWMANY - 1
  367. (currently 0xffff), it should not be counted as CR line
  368. terminator.
  369. If a line has length exactly MAXLINELEN, it should not yet be
  370. treated as a ``very long line'', as MAXLINELEN is ``longest sane
  371. line length''.
  372. With CRLF, the line length was not computed correctly, and even
  373. lines of length MAXLINELEN - 1 were treated as ``very long''.
  374. 2004-12-07 14:15 Christos Zoulas <christos@astron.com>
  375. * bzip2 needs a lot of input buffer space on some files
  376. before it can begin uncompressing. This makes file -z
  377. fail on some bz2 files. Fix it by giving it a copy of
  378. the file descriptor to read as much as it wants if we
  379. have access to it. <christos@astron.com>
  380. 2004-11-24 12:39 Christos Zoulas <christos@astron.com>
  381. * Stack smash fix, and ELF more conservative reading.
  382. Jakub Bogusz <qboosh@pld-linux.org>
  383. 2004-11-20 18:50 Christos Zoulas <christos@astron.com>
  384. * New FreeBSD version parsing code:
  385. Jon Noack <noackjr@alumni.rice.edu>
  386. * Hackish support for ucs16 strings <christos@astron.com>
  387. 2004-11-13 03:07 Christos Zoulas <christos@astron.com>
  388. * print the file name and line number in syntax errors.
  389. 2004 10-12 10:50 Christos Zoulas <christos@astron.com>
  390. * Fix stack overwriting on 0 length strings: Tim Waugh
  391. <twaugh@redhat.com> Ned Ludd <solar@gentoo.org>
  392. 2004-09-27 11:30 Christos Zoulas <christos@astron.com>
  393. * Remove 3rd and 4th copyright clause; approved by Ian Darwin.
  394. * Fix small memory leaks; caught by: Tamas Sarlos
  395. <stamas@csillag.ilab.sztaki.hu>
  396. 2004-07-24 16:33 Christos Zoulas <christos@astron.com>
  397. * magic.mime update Danny Milosavljevic <danny.milo@gmx.net>
  398. * FreeBSD version update Oliver Eikemeier <eikemeier@fillmore-labs.com>
  399. * utime/utimes detection Ian Lance Taylor <ian@wasabisystems.com>
  400. * errors reading elf magic Jakub Bogusz <qboosh@pld-linux.org>
  401. 2004-04-12 10:55 Christos Zoulas <christos@astron.com>
  402. * make sure that magic formats match magic types during compilation
  403. * fix broken sgi magic file
  404. 2004-04-06 20:36 Christos Zoulas <christos@astron.com>
  405. * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com>
  406. * magic fixes
  407. 2004-03-22 15:25 Christos Zoulas <christos@astron.com>
  408. * Lots of mime fixes
  409. (Joerg Ostertag) <ostertag@rechengilde.de>
  410. * FreeBSD ELF version handling
  411. (Edwin Groothuis) <edwin@mavetju.org>
  412. * correct cleanup in all cases; don't just close the file.
  413. (Christos Zoulas) <christos@astron.com>
  414. * add gettext message catalogue support
  415. (Michael Piefel) <piefel@debian.org>
  416. * better printout for unreadable files
  417. (Michael Piefel) <piefel@debian.org>
  418. * compensate for missing MAXPATHLEN
  419. (Michael Piefel) <piefel@debian.org>
  420. * add wide character string length computation
  421. (Michael Piefel) <piefel@debian.org>
  422. * Avoid infinite loops caused by bad elf alignments
  423. or name and description note sizes. Reported by
  424. (Mikael Magnusson) <mmikael@comhem.se>
  425. 2004-03-09 13:55 Christos Zoulas <christos@astron.com>
  426. * Fix possible memory leak on error and add missing regfree
  427. (Dmitry V. Levin) <ldv@altlinux.org>
  428. 2003-12-23 12:12 Christos Zoulas <christos@astron.com>
  429. * fix -k flag (Maciej W. Rozycki)
  430. 2003-11-18 14:10 Christos Zoulas <christos@astron.com>
  431. * Try to give us much info as possible on corrupt elf files.
  432. (Willy Tarreau) <willy@w.ods.org>
  433. * Updated python bindings (Brett Funderburg)
  434. <brettf@deepfile.com>
  435. 2003-11-11 15:03 Christos Zoulas <christos@astron.com>
  436. * Include file.h first, because it includes config.h
  437. breaks largefile test macros otherwise.
  438. (Paul Eggert <eggert@CS.UCLA.EDU> via
  439. Lars Hecking <lhecking@nmrc.ie>)
  440. 2003-10-14 21:39 Christos Zoulas <christos@astron.com>
  441. * Python bindings (Brett Funderburg) <brettf@deepfile.com>
  442. * Don't lookup past the end of the buffer
  443. (Chad Hanson) <chanson@tcs-sec.com>
  444. * Add MAGIC_ERROR and api on magic_errno()
  445. 2003-10-08 12:40 Christos Zoulas <christos@astron.com>
  446. * handle error conditions from compile as fatal
  447. (Antti Kantee) <pooka@netbsd.org>
  448. * handle magic filename parsing sanely
  449. * more magic fixes.
  450. * fix a memory leak (Illes Marton) <illes.marton@balabit.hu>
  451. * describe magic file handling
  452. (Bryan Henderson) <bryanh@giraffe-data.com>
  453. 2003-09-12 15:09 Christos Zoulas <christos@astron.com>
  454. * update magic files.
  455. * remove largefile support from file.h; it breaks things on most OS's
  456. 2003-08-10 10:25 Christos Zoulas <christos@astron.com>
  457. * fix unmapping'ing of mmaped files.
  458. 2003-07-10 12:03 Christos Zoulas <christos@astron.com>
  459. * don't exit with -1 on error; always exit 1 (Marty Leisner)
  460. * restore utimes code.
  461. 2003-06-10 17:03 Christos Zoulas <christos@astron.com>
  462. * make sure we don't access uninitialized memory.
  463. * pass lint
  464. * #ifdef __cplusplus in magic.h
  465. 2003-05-25 19:23 Christos Zoulas <christos@astron.com>
  466. * rename cvs magic file to revision to deal with
  467. case insensitive filesystems.
  468. 2003-05-23 17:03 Christos Zoulas <christos@astron.com>
  469. * documentation fixes from Michael Piefel <piefel@debian.org>
  470. * magic fixes (various)
  471. * revert basename magic in .mgc name determination
  472. * buffer protection in uncompress,
  473. signness issues,
  474. close files
  475. Maciej W. Rozycki <macro@ds2.pg.gda.pl
  476. 2003-04-21 20:12 Christos Zoulas <christos@astron.com>
  477. * fix zsh magic
  478. 2003-04-04 16:59 Christos Zoulas <christos@astron.com>
  479. * fix operand sort order in string.
  480. 2003-04-02 17:30 Christos Zoulas <christos@astron.com>
  481. * cleanup namespace in magic.h
  482. 2003-04-02 13:50 Christos Zoulas <christos@astron.com>
  483. * Magic additions (Alex Ott)
  484. * Fix bug that broke VPATH compilation (Peter Breitenlohner)
  485. 2003-03-28 16:03 Christos Zoulas <christos@astron.com>
  486. * remove packed attribute from magic struct.
  487. * make the magic struct properly aligned.
  488. * bump version number of compiled files to 2.
  489. 2003-03-27 13:10 Christos Zoulas <christos@astron.com>
  490. * separate tar detection and run it before softmagic.
  491. * fix reversed symlink test.
  492. * fix version printing.
  493. * make separator a string instead of a char.
  494. * update manual page and sort options.
  495. 2003-03-26 11:00 Christos Zoulas <christos@astron.com>
  496. * Pass lint
  497. * make NULL in magic_file mean stdin
  498. * Fix "-" argument to file to pass NULL to magic_file
  499. * avoid pointer casts by using memcpy
  500. * rename magic_buf -> magic_buffer
  501. * keep only the first error
  502. * manual page: new sentence, new line
  503. * fix typo in api function (magic_buf -> magic_buffer)