ChangeLog 24 KB

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