ChangeLog 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308
  1. 2014-02-12 18:21 Christos Zoulas <christos@zoulas.com>
  2. * Count recursion levels through indirect magic
  3. 2014-02-11 10:40 Christos Zoulas <christos@zoulas.com>
  4. * Prevent infinite recursion on files with indirect offsets of 0
  5. 2014-01-30 21:00 Christos Zoulas <christos@zoulas.com>
  6. * Add -E flag that makes file print filesystem errors to stderr
  7. and exit.
  8. 2014-01-08 17:20 Christos Zoulas <christos@zoulas.com>
  9. * mime printing could print results from multiple magic entries
  10. if there were multiple matches.
  11. * in some cases overflow was not detected when computing offsets
  12. in softmagic.
  13. 2013-12-05 12:00 Christos Zoulas <christos@zoulas.com>
  14. * use strcasestr() to for cdf strings
  15. * reset to the "C" locale while doing regex operations, or case
  16. insensitive comparisons; this is provisional
  17. 2013-11-19 20:10 Christos Zoulas <christos@zoulas.com>
  18. * always leave magic file loaded, don't unload for magic_check, etc.
  19. * fix default encoding to binary instead of unknown which broke recently
  20. * handle empty and one byte files, less specially so that
  21. --mime-encoding does not break completely.
  22. `
  23. 2013-11-06 14:40 Christos Zoulas <christos@zoulas.com>
  24. * fix erroneous non-zero exit code from non-existant file and message
  25. 2013-10-29 14:25 Christos Zoulas <christos@zoulas.com>
  26. * add CDF MSI file detection (Guy Helmer)
  27. 2013-09-03 11:56 Christos Zoulas <christos@zoulas.com>
  28. * Don't mix errors and regular output if there was an error
  29. * in magic_descriptor() don't close the file and try to restore
  30. its position
  31. 2013-05-30 17:25 Christos Zoulas <christos@zoulas.com>
  32. * Don't treat magic as an error if offset was past EOF (Christoph Biedl)
  33. 2013-05-28 17:25 Christos Zoulas <christos@zoulas.com>
  34. * Fix spacing issues in softmagic and elf (Jan Kaluza)
  35. 2013-05-02 18:00 Christos Zoulas <christos@zoulas.com>
  36. * Fix segmentation fault with multiple magic_load commands.
  37. 2013-04-22 11:20 Christos Zoulas <christos@zoulas.com>
  38. * The way "default" was implemented was not very useful
  39. because the "if something was printed at that level"
  40. was not easily controlled by the user, and the format
  41. was bound to a string which is too restrictive. Add
  42. a "clear" for that level keyword and make "default"
  43. void. This way one can do:
  44. >>13 clear x
  45. >>13 lelong 1 foo
  46. >>13 lelong 2 bar
  47. >>13 default x
  48. >>>13 lelong x unknown %x
  49. 2013-03-25 13:20 Christos Zoulas <christos@zoulas.com>
  50. * disallow strength setting in "name" entries
  51. 2013-03-06 21:24 Christos Zoulas <christos@zoulas.com>
  52. * fix recursive magic separator printing
  53. 2013-02-26 19:28 Christos Zoulas <christos@zoulas.com>
  54. * limit recursion level for mget
  55. * fix pread() related breakage in cdf
  56. * handle offsets properly in recursive "use"
  57. 2013-02-18 10:39 Christos Zoulas <christos@zoulas.com>
  58. * add elf reading of debug info to determine if file is stripped
  59. (Jan Kaluza)
  60. * use pread()
  61. 2013-01-25 18:05 Christos Zoulas <christos@zoulas.com>
  62. * change mime description size from 64 to 80 to accommodate OOXML.
  63. 2013-01-11 14:50 Christos Zoulas <christos@zoulas.com>
  64. * Warn about inconsistent continuation levels.
  65. * Change fsmagic to add a space after it prints.
  66. 2013-01-10 21:00 Christos Zoulas <christos@zoulas.com>
  67. * Make getline public so that file can link against it.
  68. Perhaps it is better to rename it, or hide it differently.
  69. Fixes builds on platforms that do not provide it.
  70. 2013-01-07 16:30 Christos Zoulas <christos@zoulas.com>
  71. * Add SuS d{,1,2,4,8}, u{,1,2,4,8} and document
  72. what long, int, short, etc is (Guy Harris)
  73. 2013-01-06 11:20 Christos Zoulas <christos@zoulas.com>
  74. * add magic_version function and constant
  75. * Redo memory allocation and de-allocation.
  76. (prevents double frees on non mmap platforms)
  77. * Fix bug with name/use having to do with passing
  78. found state from the parent to the child and back.
  79. 2012-12-19 8:47 Christos Zoulas <christos@zoulas.com>
  80. * Only print elf capabilities for archs we know (Jan Kaluza)
  81. 2012-10-30 19:14 Christos Zoulas <christos@zoulas.com>
  82. * Add "name" and "use" file types in order to look
  83. inside mach-o files.
  84. 2012-09-06 10:40 Christos Zoulas <christos@zoulas.com>
  85. * make --version exit 0 (Matthew Schultz)
  86. * add string/T (Jan Kaluza)
  87. 2012-08-09 2:15 Christos Zoulas <christos@zoulas.com>
  88. * add z and t modifiers for our own vasprintf
  89. * search for $HOME/.magic.mgc if it is there first
  90. * fix reads from a pipe, and preserve errno
  91. 2012-05-15 13:12 Christos Zoulas <christos@zoulas.com>
  92. * use ctime_r, asctime_r
  93. 2012-04-06 17:18 Christos Zoulas <christos@zoulas.com>
  94. * Fixes for indirect offsets to handle apple disk formats
  95. 2012-04-03 18:26 Christos Zoulas <christos@zoulas.com>
  96. * Add windows date field types
  97. * More info for windows shortcuts (incomplete)
  98. 2012-02-20 17:33 Christos Zoulas <christos@zoulas.com>
  99. * Fix CDF parsing issues found by CERT's fuzzing tool (Will Dormann)
  100. 2011-12-15 12:17 Chris Metcalf <cmetcalf@tilera.com>
  101. * Support Tilera architectures (tile64, tilepro, tilegx).
  102. 2011-12-16 16:33 Reuben Thomas <rrt@sc3d.org>
  103. * Add magic for /usr/bin/env Perl scripts
  104. * Weaken generic script magic to avoid clashing with
  105. language-specific magic.
  106. 2011-12-08 13:37 Reuben Thomas <rrt@sc3d.org>
  107. * Simplify if (p) free(p) to free(p).
  108. 2011-12-08 13:07 Reuben Thomas <rrt@sc3d.org>
  109. * Remove hardwired token finding (names.h), turning it into soft
  110. magic. Patterns are either anchored regexs or search/8192. English
  111. language detection and PL/1 detection have been removed as they
  112. were too fragile. -e tokens is still accepted for backwards
  113. compatibility.
  114. * Move 3ds patterns (which are commented out anyway) into autodesk
  115. (they were, oddly, in c-lang).
  116. 2011-12-06 00:16 Reuben Thomas <rrt@sc3d.org>
  117. * Tweak strength of generic hash-bang detectors to be less than
  118. specific ones.
  119. * Make an inconsistent description of Python scripts consistent.
  120. 2011-12-05 23:58 Reuben Thomas <rrt@sc3d.org>
  121. * Fix minor error in file(1).
  122. 2011-11-05 00:00 Reuben Thomas <rrt@sc3d.org>
  123. * Fix issue #150 (I hope).
  124. 2011-09-22 12:57 Christos Zoulas <christos@zoulas.com>
  125. * Python3 binding fixes from Kelly Anderson
  126. 2011-09-20 11:32 Christos Zoulas <christos@zoulas.com>
  127. * If a string type magic entry is marked as text or binary
  128. only match text files against text entries and binary
  129. files against binary entries.
  130. 2011-09-01 12:12 Christos Zoulas <christos@zoulas.com>
  131. * Don't wait for any subprocess, just the one we forked.
  132. 2011-08-26 16:40 Christos Zoulas <christos@zoulas.com>
  133. * If the application name is not set in a cdf file, try to see
  134. if it has a directory with the application name on it.
  135. 2011-08-17 14:32 Christos Zoulas <christos@zoulas.com>
  136. * Fix ELF lseek(2) madness. Inspired by PR/134 by Jan Kaluza
  137. 2011-08-14 09:03 Christos Zoulas <christos@zoulas.com>
  138. * Don't use variable string formats.
  139. 2011-07-12 12:32 Reuben Thomas <rrt@sc3d.org>
  140. * Fix detection of Zip files (Mantis #128).
  141. * Make some minor improvements to file(1).
  142. * Rename MIME types for filesystem objects for consistency with
  143. xdg-utils. Typically this means that application/x-foo becomes
  144. inode/foo, but some names also change slightly, e.g.
  145. application/x-character-device becomes inode/chardevice.
  146. 2011-05-10 20:57 Christos Zoulas <christos@zoulas.com>
  147. * fix mingw compilation (Abradoks)
  148. 2011-05-10 20:57 Christos Zoulas <christos@zoulas.com>
  149. * remove patchlevel.h
  150. * Fix read past allocated memory caused by double-incrementing
  151. a pointer in a loop (reported by Roberto Maar)
  152. 2011-03-30 15:45 Christos Zoulas <christos@zoulas.com>
  153. * Fix cdf string buffer setting (Sven Anders)
  154. 2011-03-20 16:35 Christos Zoulas <christos@zoulas.com>
  155. * Eliminate MAXPATHLEN and use dynamic allocation for
  156. path and file buffers.
  157. 2011-03-15 18:15 Christos Zoulas <christos@zoulas.com>
  158. * binary tests on magic entries with masks could spuriously
  159. get converted to ascii.
  160. 2011-03-12 18:06 Reuben Thomas <rrt@sc3d.org>
  161. * Improve file.man (remove BUGS, present email addresses consistently).
  162. 2011-03-07 19:38 Christos Zoulas <christos@zoulas.com>
  163. * add lrzip support (from Ville Skytta)
  164. 2011-02-10 16:36 Christos Zoulas <christos@zoulas.com>
  165. * fix CDF bounds checking (Guy Helmer)
  166. 2011-02-10 12:03 Christos Zoulas <christos@zoulas.com>
  167. * add cdf_ctime() that prints a meaningful error when time cannot
  168. be converted.
  169. 2011-02-02 20:40 Christos Zoulas <christos@zoulas.com>
  170. * help and version output to stdout.
  171. * When matching softmagic for ascii files, don't just print
  172. the softmagic classification, keep going and print the
  173. text classification too. This fixes broken troff files when
  174. we moved them from keyword recognition to softmagic
  175. (they stopped printing "with CRLF" etc.)
  176. Reported by Doug McIlroy.
  177. 2011-01-16 19:31 Reuben Thomas <rrt@sc3d.org>
  178. * Fix two potential buffer overruns in apprentice_list.
  179. 2011-01-14 22:33 Reuben Thomas <rrt@sc3d.org>
  180. * New Python binding in pure Python.
  181. * Update libmagic(3).
  182. 2011-01-06 21:40 Reuben Thomas <rrt@sc3d.org>
  183. * Fix Python bindings (including recent Python 3 compatibility
  184. update).
  185. 2011-01-04 18:43 Reuben Thomas <rrt@sc3d.org>
  186. * magic/Makefile.am: make it easier to recover from magic build failures.
  187. * Fix pstring length specifier parsing to avoid generating invalid
  188. magic files.
  189. * Add pstring length "J" (for "JPEG") to specify that the length
  190. include itself.
  191. * Fix JPEG comment parsing at last using pstring/HJ!
  192. * Ignore section 5 man pages in doc/.cvsignore.
  193. 2010-12-22 13:12 Christos Zoulas <christos@zoulas.com>
  194. * Add pstring/BHhLl to specify the type of the length of pascal
  195. strings.
  196. 2010-11-26 18:39 Reuben Thomas <rrt@sc3d.org>
  197. * Fix "-e soft": it was ignored when softmagic was called
  198. during asciimagic.
  199. * Improve comments and use "unsigned char" in tar.h/is_tar.c.
  200. 2010-11-05 17:26 Reuben Thomas <rrt@sc3d.org>
  201. * Make bug reporting addresses more visible.
  202. 2010-11-01 18:35 Reuben Thomas <rrt@sc3d.org>
  203. * Add tcl magic from Gustaf Neumann
  204. 2010-10-24 10:42 Christos Zoulas <christos@zoulas.com>
  205. * Fix the whitespace comparing code (Christopher Chittleborough)
  206. 2010-10-06 21:05 Christos Zoulas <christos@zoulas.com>
  207. * allow string/t to work (Jan Kaluza)
  208. 2010-09-20 22:11 Reuben Thomas <rrt@sc3d.org>
  209. * Apply some patches from Ubuntu and Fedora.
  210. 2010-09-20 21:16 Reuben Thomas <rrt@sc3d.org>
  211. * Apply all patches from Debian package 5.04-6 which have not
  212. already been applied and are not Debian-specific.
  213. 2010-09-20 15:24 Reuben Thomas <rrt@sc3d.org>
  214. * Minor security fix to softmagic.c (don't use untrusted
  215. string as printf format).
  216. 2010-07-21 12:20 Christos Zoulas <christos@zoulas.com>
  217. * MINGW32 portability from LRN
  218. * Don't warn about escaping magic regex chars when we are in a regex.
  219. 2010-07-19 10:55 Christos Zoulas <christos@zoulas.com>
  220. * Only try to print prpsinfo for core files. (Jan Kaluza)
  221. 2010-04-22 12:55 Christos Zoulas <christos@zoulas.com>
  222. * Try more elf offsets for Debian core files. (Arnaud Giersch)
  223. 2010-02-20 15:18 Reuben Thomas <rrt@sc3d.org>
  224. * Clarify which sort of CDF we mean.
  225. 2010-02-14 22:58 Reuben Thomas <rrt@sc3d.org>
  226. * Re-jig Zip file type magic so that unsupported special
  227. Zip types (those with "mimetype" at offset 30) can be
  228. recognized.
  229. 2010-02-02 21:50 Reuben Thomas <rrt@sc3d.org>
  230. * Add support for OCF (EPUB) files (application/epub+zip)
  231. 2010-01-28 18:25 Christos Zoulas <christos@zoulas.com>
  232. * Fix core-dump from unbound loop:
  233. https://bugzilla.redhat.com/show_bug.cgi?id=533245
  234. 2010-01-22 15:45 Christos Zoulas <christos@zoulas.com>
  235. * print proper mime for crystal reports file
  236. * print the last summary information of a cdf document, not the
  237. first so that nested documents print the right info
  238. 2010-01-16 18:42 Charles Longeau <chl@tuxfamily.org>
  239. * bring back some fixes from OpenBSD:
  240. - make gcc2 builds file
  241. - fix typos in a magic file comment
  242. 2009-11-17 18:35 Christos Zoulas <christos@zoulas.com>
  243. * ctime/asctime can return NULL on some OS's although
  244. they should not (Toshit Antani)
  245. 2009-09-14 13:49 Christos Zoulas <christos@zoulas.com>
  246. * Centralize magic path handling routines and remove the
  247. special-casing from file.c so that the python module for
  248. example comes up with the same magic path (Fixes ~/.magic
  249. handling) (from Gab)
  250. 2009-09-11 23:38 Reuben Thomas <rrt@sc3d.org>
  251. * When magic argument is a directory, read the files in
  252. strcmp-sorted order (fixes Debian bug #488562 and our own FIXME).
  253. 2009-09-11 13:11 Reuben Thomas <rrt@sc3d.org>
  254. * Combine overlapping epoc and psion magic files into one (epoc).
  255. * Add some more EPOC MIME types.
  256. 2009-08-19 15:55 Christos Zoulas <christos@zoulas.com>
  257. * Fix 3 bugs (From Ian Darwin):
  258. - file_showstr could move one past the end of the array
  259. - parse_apple did not nul terminate the string in the overflow case
  260. - parse_mime truncated the wrong string in the overflow case
  261. 2009-08-12 12:28 Robert Byrnes <byrnes@wildpumpkin.net>
  262. * Include Localstuff when compiling magic.
  263. 2009-07-15 10:05 Christos Zoulas <christos@zoulas.com>
  264. * Fix logic for including mygetopts.h
  265. * Make cdf.c compile again with debugging
  266. * Add the necessary field handling for crystal reports files to work
  267. 2009-06-23 01:34 Reuben Thomas <rrt@sc3d.org>
  268. * Stop "(if" identifying Lisp files, that's plain dumb!
  269. 2009-06-09 22:13 Reuben Thomas <rrt@sc3d.org>
  270. * Add a couple of missing MP3 MIME types.
  271. 2009-05-27 23:00 Reuben Thomas <rrt@sc3d.org>
  272. * Add full range of hash-bang tests for Python and Ruby.
  273. * Add MIME types for Python and Ruby scripts.
  274. 2009-05-13 10:44 Christos Zoulas <christos@zoulas.com>
  275. * off by one in parsing hw capabilities in elf
  276. (Cheng Renquan)
  277. 2009-05-08 13:40 Christos Zoulas <christos@zoulas.com>
  278. * lint fixes and more from NetBSD
  279. 2009-05-06 10:25 Christos Zoulas <christos@zoulas.com>
  280. * Avoid null dereference in cdf code (Drew Yao)
  281. * More cdf bounds checks and overflow checks
  282. 2009-05-01 18:37 Christos Zoulas <christos@zoulas.com>
  283. * Buffer overflow fixes from Drew Yao
  284. 2009-04-30 17:10 Christos Zoulas <christos@zoulas.com>
  285. * Fix more cdf lossage. All the documents I have
  286. right now print the correct information.
  287. 2009-03-27 18:43 Christos Zoulas <christos@zoulas.com>
  288. * don't print \012- separators in the same magic entry
  289. if it consists of multiple magic printing lines.
  290. 2009-03-23 10:20 Christos Zoulas <christos@zoulas.com>
  291. * Avoid file descriptor leak in compress code from
  292. (Daniel Novotny)
  293. 2009-03-18 16:50 Christos Zoulas <christos@zoulas.com>
  294. * Allow escaping of relation characters, so that we can say \^[A-Z]
  295. and the ^ is not eaten as a relation char.
  296. * Fix troff and fortran to their previous glory using
  297. regex. This was broken since their removel from ascmagic.
  298. 2009-03-10 16:50 Christos Zoulas <christos@zoulas.com>
  299. * don't use strlen in strndup() (Toby Peterson)
  300. 2009-03-10 7:45 Christos Zoulas <christos@zoulas.com>
  301. * avoid c99 syntax.
  302. 2009-02-23 15:45 Christos Zoulas <christos@zoulas.com>
  303. * make the cdf code use the buffer first if available,
  304. and then the fd code.
  305. 2009-02-13 13:45 Christos Zoulas <christos@zoulas.com>
  306. * look for struct option to determine if getopt.h is usable for IRIX.
  307. * sanitize cdf document strings
  308. 2009-02-04 13:25 Christos Zoulas <christos@zoulas.com>
  309. * fix OS/2 warnings.
  310. 2008-12-12 15:50 Christos Zoulas <christos@zoulas.com>
  311. * fix initial offset calculation for non 4K sector files
  312. * add loop limits to avoid DoS attacks by constructing
  313. looping sector references.
  314. 2008-12-03 13:05 Christos Zoulas <christos@zoulas.com>
  315. * fix memory botches on cdf file parsing.
  316. * exit with non-zero value for any error, not just for the last
  317. file processed.
  318. 2008-11-09 20:42 Charles Longeau <chl@tuxfamily.org>
  319. * Replace all str{cpy,cat} functions with strl{cpy,cat}
  320. * Ensure that strl{cpy,cat} are included in libmagic,
  321. as needed.
  322. 2008-11-06 18:18 Christos Zoulas <christos@zoulas.com>
  323. * Handle ID3 format files.
  324. 2008-11-06 23:00 Reuben Thomas <rrt@sc3d.org>
  325. * Fix --mime, --mime-type and --mime-encoding under new scheme.
  326. * Rename "ascii" to "text" and add "encoding" test.
  327. * Return a precise ("utf-16le" or "utf-16be") MIME charset for
  328. UTF-16.
  329. * Fix error in comment caused by automatic indentation adding
  330. words!
  331. 2008-11-06 10:35 Christos Zoulas <christos@astron.com>
  332. * use memchr instead of strchr because the string
  333. might not be NUL terminated (Scott MacVicar)
  334. 2008-11-03 07:31 Reuben Thomas <rrt@sc3d.org>
  335. * Fix a printf with a non-literal format string.
  336. * Fix formatting and punctuation of help for "--apple".
  337. 2008-10-30 11:00 Reuben Thomas <rrt@sc3d.org>
  338. * Correct words counts in comments of struct magic.
  339. * Fix handle_annotation to allow both Apple and MIME types to be
  340. printed, and to return correct code if MIME type is
  341. printed (1, not 0) or if there's an error (-1 not 1).
  342. * Fix output of charset for MIME type (precede with semi-colon;
  343. fixes Debian bug #501460).
  344. * Fix potential attacks via conversion specifications in magic
  345. strings.
  346. * Add a FIXME for Debian bug #488562 (magic files should be
  347. read in a defined order, by sorting the names).
  348. 2008-10-18 16:45 Christos Zoulas <christos@astron.com>
  349. * Added APPLE file creator/type
  350. 2008-10-12 10:20 Christos Zoulas <christos@astron.com>
  351. * Added CDF parsing
  352. 2008-10-09 16:40 Christos Zoulas <christos@astron.com>
  353. * filesystem and msdos patches (Joerg Jenderek)
  354. 2008-10-09 13:20 Christos Zoulas <christos@astron.com>
  355. * correct --exclude documentation issues: remove troff and fortran
  356. and rename "token" to "tokens". (Randy McMurchy)
  357. 2008-10-01 10:30 Christos Zoulas <christos@astron.com>
  358. * Read ~/.magic in addition to the default magic file not instead
  359. of, as documented in the man page.
  360. 2008-09-10 21:30 Reuben Thomas <rrt@sc3d.org>
  361. * Comment out graphviz patterns, as they match too many files.
  362. 2008-08-30 12:54 Christos Zoulas <christos@astron.com>
  363. * Don't eat trailing \n in magic enties.
  364. * Cast defines to allow compilation using a c++ compiler.
  365. 2008-08-25 23:56 Reuben Thomas <rrt@sc3d.org>
  366. * Add text/x-lua MIME type for Lua scripts.
  367. * Escape { in regex in graphviz patterns.
  368. 2008-07-26 00:59 Reuben Thomas <rrt@sc3d.org>
  369. * Add MIME types for special files.
  370. * Use access to give more accurate information for files that
  371. can't be opened.
  372. * Add a TODO list.
  373. 2008-07-02 11:15 Christos Zoulas <christos@astron.com>
  374. * add !:strength op to adjust magic strength (experimental)
  375. 2008-06-16 21:41 Reuben Thomas <rrt@sc3d.org>
  376. * Fix automake error in configure.ac.
  377. * Add MIME type for Psion Sketch files.
  378. 2008-06-05 08:59 Christos Zoulas <christos@astron.com>
  379. * Don't print warnings about bad namesize in stripped
  380. binaries with PT_NOTE is still there, and the actual
  381. note is gone (Jakub Jelinek)
  382. 2008-05-28 15:12 Robert Byrnes <byrnes@wildpumpkin.net>
  383. * magic/Magdir/elf:
  384. Note invalid byte order for little-endian SPARC32PLUS.
  385. Add SPARC V9 vendor extensions and memory model.
  386. * src/elfclass.h:
  387. Pass target machine to doshn (for Solaris hardware capabilities).
  388. * src/readelf.c (doshn):
  389. Add support for Solaris hardware/software capabilities.
  390. * src/readelf.h:
  391. Ditto.
  392. * src/vasprintf.c (dispatch):
  393. Add support for ll modifier.
  394. 2008-05-16 10:25 Christos Zoulas <christos@astron.com>
  395. * Fix compiler warnings.
  396. * remove stray printf, and fix a vprintf bug. (Martin Dorey)
  397. 2008-05-06 00:13 Robert Byrnes <byrnes@wildpumpkin.net>
  398. * src/Makefile.am:
  399. Ensure that getopt_long and [v]asprintf are included in libmagic,
  400. as needed.
  401. Remove unnecessary EXTRA_DIST.
  402. * src/Makefile.in:
  403. Rerun automake.
  404. * src/vasprintf.c (dispatch):
  405. Fix variable precision bug: be sure to step past '*'.
  406. * src/vasprintf.c (core):
  407. Remove unreachable code.
  408. * src/apprentice.c (set_test_type):
  409. Add cast to avoid compiler warning.
  410. 2008-04-22 23:45 Christos Zoulas <christos@astron.com>
  411. * Add magic submission guidelines (Abel Cheung)
  412. * split msdos and windows magic (Abel Cheung)
  413. 2008-04-04 11:00 Christos Zoulas <christos@astron.com>
  414. * >= <= is not supported, so fix the magic and warn about it.
  415. reported by: Thien-Thi Nguyen <ttn@gnuvola.org>
  416. 2008-03-27 16:16 Robert Byrnes <byrnes@wildpumpkin.net>
  417. * src/readelf.c (donote):
  418. ELF core file command name/line bug fixes and enhancements:
  419. Try larger offsets first to avoid false matches
  420. from earlier data that happen to look like strings;
  421. this primarily affected SunOS 5.x 32-bit Intel core files.
  422. Add support for command line (instead of just short name)
  423. for SunOS 5.x.
  424. Add information about NT_PSINFO for SunOS 5.x.
  425. Only trim whitespace from end of command line.
  426. 2007-02-11 01:36 Reuben Thomas <rrt@sc3d.org>
  427. * Change strength of ! from MULT to 0, as it matches almost
  428. anything (Reuben Thomas)
  429. * Debian fixes (Reuben Thomas)
  430. 2007-02-11 00:17 Reuben Thomas <rrt@sc3d.org>
  431. * Clarify UTF-8 BOM message (Reuben Thomas)
  432. * Add HTML comment to token list in names.h
  433. 2007-02-04 15:50 Christos Zoulas <christos@astron.com>
  434. * Debian fixes (Reuben Thomas)
  435. 2007-02-04 11:31 Christos Zoulas <christos@astron.com>
  436. * !:mime annotations in magic files (Reuben Thomas)
  437. 2007-01-29 15:35 Christos Zoulas <christos@astron.com>
  438. * zero out utime/utimes structs (Gavin Atkinson)
  439. 2007-01-26 13:45 Christos Zoulas <christos@astron.com>
  440. * reduce writable data from Diego "Flameeyes" Petten
  441. 2007-12-28 15:06 Christos Zoulas <christos@astron.com>
  442. * strtof detection
  443. * remove bogus regex magic that could cause a DoS
  444. * better mismatch version message
  445. 2007-12-27 11:35 Christos Zoulas <christos@astron.com>
  446. * bring back some fixes from OpenBSD
  447. * treat ELF dynamic objects as executables
  448. * fix gcc warnings
  449. 2007-12-01 19:55 Christos Zoulas <christos@astron.com>
  450. * make sure we have zlib.h and libz to compile the builtin
  451. decompress code
  452. 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
  453. * float and double magic support (Behan Webster)
  454. 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
  455. * Convert fortran to a soft test (Reuben Thomas)
  456. 2007-10-23 5:25 Christos Zoulas <christos@astron.com>
  457. * Add --with-filename, and --no-filename (Reuben Thomas)
  458. 2007-10-23 3:59 Christos Zoulas <christos@astron.com>
  459. * Rest of the mime split (Reuben Thomas)
  460. * Make usage message generated from the flags so that
  461. they stay consistent (Reuben Thomas)
  462. 2007-10-20 3:06 Christos Zoulas <christos@astron.com>
  463. * typo in comment, missing ifdef QUICK, remove unneeded code
  464. (Charles Longeau)
  465. 2007-10-17 3:33 Christos Zoulas <christos@astron.com>
  466. * Fix problem printing -\012 in some entries
  467. * Separate magic type and encoding flags (Reuben Thomas)
  468. 2007-10-09 3:55 Christos Zoulas <christos@astron.com>
  469. * configure fix for int64 and strndup (Reuben Thomas)
  470. 2007-09-26 4:45 Christos Zoulas <christos@astron.com>
  471. * Add magic_descriptor() function.
  472. * Fix regression in elf reading code where the core name was
  473. not being printed.
  474. * Don't convert NUL's to spaces in {l,b}estring16 (Daniel Dawson)
  475. 2007-08-19 6:30 Christos Zoulas <christos@astron.com>
  476. * Make mime format consistent so that it can
  477. be easily parsed:
  478. mimetype [charset=character-set] [encoding=encoding-mime-type]
  479. Remove spurious extra text from some MIME type printouts
  480. (mostly in is_tar).
  481. Fix one case where -i produced nothing at all (for a 1-byte file,
  482. which is now classed as application/octet-stream).
  483. Remove 7/8bit classifications, since they were arbitrary
  484. and not based on the file data.
  485. This work was done by Reuben Thomas
  486. 2007-05-24 10:00 Christos Zoulas <christos@astron.com>
  487. * Fix another integer overflow (Colin Percival)
  488. 2007-03-26 13:58 Christos Zoulas <christos@astron.com>
  489. * make sure that all of struct magic_set is initialized appropriately
  490. (Brett)
  491. 2007-03-25 17:44 Christos Zoulas <christos@astron.com>
  492. * reset left bytes in the buffer (Dmitry V. Levin)
  493. * compilation failed with COMPILE_ONLY and ENABLE_CONDITIONALS
  494. (Peter Avalos)
  495. 2007-03-15 10:51 Christos Zoulas <christos@astron.com>
  496. * fix fortran and nroff reversed tests (Dmitry V. Levin)
  497. * fix exclude option (Dmitry V. Levin)
  498. 2007-02-08 17:30 Christos Zoulas <christos@astron.com>
  499. * fix integer underflow in file_printf which can lead to
  500. to exploitable heap overflow (Jean-Sebastien Guay-Lero)
  501. 2007-02-05 11:35 Christos Zoulas <christos@astron.com>
  502. * make socket/pipe reading more robust
  503. 2007-01-25 16:01 Christos Zoulas <christos@astron.com>
  504. * Centralize all the tests in file_buffer.
  505. * Add exclude flag.
  506. 2007-01-18 05:29 Anon Ymous <do@not.spam.me>
  507. * Move the "type" detection code from parse() into its own table
  508. driven routine. This avoids maintaining multiple lists in
  509. file.h.
  510. * Add an optional conditional field (ust before the type field).
  511. This code is wrapped in "#ifdef ENABLE_CONDITIONALS" as it is
  512. likely to go away.
  513. 2007-01-16 23:24 Anon Ymous <do@not.spam.me>
  514. * Fix an initialization bug in check_mem().
  515. 2007-01-16 14:58 Anon Ymous <do@not.spam.me>
  516. * Add a "default" type to print a message if nothing previously
  517. matched at that level or since the last default at that
  518. level. This is useful for setting up switch-like statements.
  519. It can also be used to do if/else constructions without a
  520. redundant second test.
  521. * Fix the "x" special case test so that one can test for that
  522. string with "=x".
  523. * Allow "search" to search the entire buffer if the "/N"
  524. search count is missing.
  525. * Make "regex" work! It now starts its search at the
  526. specified offset and takes an (optional) "/N" line count to
  527. specify the search range; otherwise it searches to the end
  528. of the file. The match is now grabbed correctly for format
  529. strings and the offset set to the end of the match.
  530. * Add a "/s" flag to "regex" and "search" to set the offset to
  531. the start of the match. By default the offset is set to the
  532. end of the match, as it is with other tests. This is mostly
  533. useful for "regex".
  534. * Make "search", "string" and "pstring" use the same
  535. file_strncmp() routine so that they support the same flags;
  536. "bestring16" and "lestring16" call the same routine, but
  537. with flags = 0. Also add a "/C" flag (in analogy to "/c")
  538. to ignore the case on uppercase (lowercase) characters in
  539. the test string.
  540. * Strict adherence to C style string escapes. A warnings are
  541. printed when compiling. Note: previously "\a" was
  542. incorrectly translated to 'a' instead of an <alert> (i.e.,
  543. BELL, typically 0x07).
  544. * Make this compile with "-Wall -Wextra" and all the warning
  545. flags used with WARNS=4 in the NetBSD source. Also make it
  546. pass lint.
  547. * Many "cleanups" and hopefully not too many new bugs!
  548. 2007-01-16 14:56 Anon Ymous <do@not.spam.me>
  549. * make several more files compile with gcc warnings
  550. on and also make them pass lint.
  551. 2007-01-16 14:54 Anon Ymous <do@not.spam.me>
  552. * fix a puts()/putc() usage goof in file.c
  553. * make file.c compile with gcc warnings and pass lint
  554. 2006-12-11 16:49 Christos Zoulas <christos@astron.com>
  555. * fix byteswapping issue
  556. * report the number of bytes we tried to
  557. allocate when allocation fails
  558. * add a few missed cases in the strength routine
  559. 2006-12-08 16:32 Christos Zoulas <christos@astron.com>
  560. * store and print the line number of the magic
  561. entry for debugging.
  562. * if the magic entry did not print anything,
  563. don't treat it as a match
  564. * change the magic strength algorithm to take
  565. into account the relationship op.
  566. * fix a bug in search where we could accidentally
  567. return a match.
  568. * propagate the error return from match to
  569. file_softmagic.
  570. 2006-11-25 13:35 Christos Zoulas <christos@astron.com>
  571. * Don't store the current offset in the magic
  572. struct, because it needs to be restored and
  573. it was not done properly all the time. Bug
  574. found by: Arkadiusz Miskiewicz
  575. * Fix problem in the '\0' separator; and don't
  576. print it as an additional separator; print
  577. it as the only separator.
  578. 2006-11-17 10:51 Christos Zoulas <christos@astron.com>
  579. * Added a -0 option to print a '\0' separator
  580. Etienne Buira <etienne.buira@free.fr>
  581. 2006-10-31 15:14 Christos Zoulas <christos@astron.com>
  582. * Check offset before copying (Mike Frysinger)
  583. * merge duplicated code
  584. * add quad date support
  585. * make sure that we nul terminate desc (Ryoji Kanai)
  586. * don't process elf notes multiple times
  587. * allow -z to report empty compressed files
  588. * use calloc to initialize the ascii buffers (Jos van den Oever)
  589. 2006-06-08 11:11 Christos Zoulas <christos@astron.com>
  590. * QNX fixes (Mike Gorchak)
  591. * Add quad support.
  592. * FIFO checks (Dr. Werner Fink)
  593. * Linux ELF fixes (Dr. Werner Fink)
  594. * Magic format checks (Dr. Werner Fink)
  595. * Magic format function improvent (Karl Chen)
  596. 2006-05-03 11:11 Christos Zoulas <christos@astron.com>
  597. * Pick up some elf changes and some constant fixes from SUSE
  598. * Identify gnu tar vs. posix tar
  599. * When keep going, don't print spurious newlines (Radek Vokál)
  600. 2006-04-01 12:02 Christos Zoulas <christos@astron.com>
  601. * Use calloc instead of malloc (Mike Frysinger)
  602. * Fix configure script to detect wctypes.h (Mike Frysinger)
  603. 2006-03-02 16:06 Christos Zoulas <christos@astron.com>
  604. * Print empty if the file is (Mike Frysinger)
  605. * Don't try to read past the end of the buffer (Mike Frysinger)
  606. * Sort magic entries by strength [experimental]
  607. 2005-11-29 13:26 Christos Zoulas <christos@astron.com>
  608. * Use iswprint() to convert the output string.
  609. (Bastien Nocera)
  610. 2005-10-31 8:54 Christos Zoulas <christos@astron.com>
  611. * Fix regression where the core info was not completely processed
  612. (Radek Vokál)
  613. 2005-10-20 11:15 Christos Zoulas <christos@astron.com>
  614. * Middle Endian magic (Diomidis Spinellis)
  615. 2005-10-17 11:15 Christos Zoulas <christos@astron.com>
  616. * Open with O_BINARY for CYGWIN (Corinna Vinschen)
  617. * Don't close stdin (Arkadiusz Miskiewicz)
  618. * Look for note sections in non executables.
  619. 2005-09-20 13:33 Christos Zoulas <christos@astron.com>
  620. * Don't print SVR4 Style in core files multiple times
  621. (Radek Vokál)
  622. 2005-08-27 04:09 Christos Zoulas <christos@astron.com>
  623. * Cygwin changes Corinna Vinschen
  624. 2005-08-18 09:53 Christos Zoulas <christos@astron.com>
  625. * Remove erroreous mention of /etc/magic in the file man page
  626. This is gentoo bug 101639. (Mike Frysinger)
  627. * Cross-compile support and detection (Mike Frysinger)
  628. 2005-08-12 10:17 Christos Zoulas <christos@astron.com>
  629. * Add -h flag and dereference symlinks if POSIXLY_CORRECT
  630. is set.
  631. 2005-07-29 13:57 Christos Zoulas <christos@astron.com>
  632. * Avoid search and regex buffer overflows (Kelledin)
  633. 2005-07-12 11:48 Christos Zoulas <christos@astron.com>
  634. * Provide stub implementations for {v,}nsprintf() for older
  635. OS's that don't have them.
  636. * Change mbstate_t autoconf detection macro from AC_MBSTATE_T
  637. to AC_TYPE_MBSTATE_T.
  638. 2005-06-25 11:48 Christos Zoulas <christos@astron.com>
  639. * Dynamically allocate the string buffers and make the
  640. default read size 256K.
  641. 2005-06-01 00:00 Joerg Sonnenberger <joerg@britannica.bec.de>
  642. * Dragonfly ELF note support
  643. 2005-03-14 00:00 Giuliano Bertoletti <gb@symbolic.it>
  644. * Avoid NULL pointer dereference in time conversion.
  645. 2005-03-06 00:00 Joerg Walter <jwalt@mail.garni.ch>
  646. * Add indirect magic offset support, and search mode.
  647. 2005-01-12 00:00 Stepan Kasal <kasal@ucw.cz>
  648. * src/ascmagic.c (file_ascmagic): Fix three bugs about text files:
  649. If a CRLF text file happens to have CR at offset HOWMANY - 1
  650. (currently 0xffff), it should not be counted as CR line
  651. terminator.
  652. If a line has length exactly MAXLINELEN, it should not yet be
  653. treated as a ``very long line'', as MAXLINELEN is ``longest sane
  654. line length''.
  655. With CRLF, the line length was not computed correctly, and even
  656. lines of length MAXLINELEN - 1 were treated as ``very long''.
  657. 2004-12-07 14:15 Christos Zoulas <christos@astron.com>
  658. * bzip2 needs a lot of input buffer space on some files
  659. before it can begin uncompressing. This makes file -z
  660. fail on some bz2 files. Fix it by giving it a copy of
  661. the file descriptor to read as much as it wants if we
  662. have access to it. <christos@astron.com>
  663. 2004-11-24 12:39 Christos Zoulas <christos@astron.com>
  664. * Stack smash fix, and ELF more conservative reading.
  665. Jakub Bogusz <qboosh@pld-linux.org>
  666. 2004-11-20 18:50 Christos Zoulas <christos@astron.com>
  667. * New FreeBSD version parsing code:
  668. Jon Noack <noackjr@alumni.rice.edu>
  669. * Hackish support for ucs16 strings <christos@astron.com>
  670. 2004-11-13 03:07 Christos Zoulas <christos@astron.com>
  671. * print the file name and line number in syntax errors.
  672. 2004 10-12 10:50 Christos Zoulas <christos@astron.com>
  673. * Fix stack overwriting on 0 length strings: Tim Waugh
  674. <twaugh@redhat.com> Ned Ludd <solar@gentoo.org>
  675. 2004-09-27 11:30 Christos Zoulas <christos@astron.com>
  676. * Remove 3rd and 4th copyright clause; approved by Ian Darwin.
  677. * Fix small memory leaks; caught by: Tamas Sarlos
  678. <stamas@csillag.ilab.sztaki.hu>
  679. 2004-07-24 16:33 Christos Zoulas <christos@astron.com>
  680. * magic.mime update Danny Milosavljevic <danny.milo@gmx.net>
  681. * FreeBSD version update Oliver Eikemeier <eikemeier@fillmore-labs.com>
  682. * utime/utimes detection Ian Lance Taylor <ian@wasabisystems.com>
  683. * errors reading elf magic Jakub Bogusz <qboosh@pld-linux.org>
  684. 2004-04-12 10:55 Christos Zoulas <christos@astron.com>
  685. * make sure that magic formats match magic types during compilation
  686. * fix broken sgi magic file
  687. 2004-04-06 20:36 Christos Zoulas <christos@astron.com>
  688. * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com>
  689. * magic fixes
  690. 2004-03-22 15:25 Christos Zoulas <christos@astron.com>
  691. * Lots of mime fixes
  692. (Joerg Ostertag) <ostertag@rechengilde.de>
  693. * FreeBSD ELF version handling
  694. (Edwin Groothuis) <edwin@mavetju.org>
  695. * correct cleanup in all cases; don't just close the file.
  696. (Christos Zoulas) <christos@astron.com>
  697. * add gettext message catalogue support
  698. (Michael Piefel) <piefel@debian.org>
  699. * better printout for unreadable files
  700. (Michael Piefel) <piefel@debian.org>
  701. * compensate for missing MAXPATHLEN
  702. (Michael Piefel) <piefel@debian.org>
  703. * add wide character string length computation
  704. (Michael Piefel) <piefel@debian.org>
  705. * Avoid infinite loops caused by bad elf alignments
  706. or name and description note sizes. Reported by
  707. (Mikael Magnusson) <mmikael@comhem.se>
  708. 2004-03-09 13:55 Christos Zoulas <christos@astron.com>
  709. * Fix possible memory leak on error and add missing regfree
  710. (Dmitry V. Levin) <ldv@altlinux.org>
  711. 2003-12-23 12:12 Christos Zoulas <christos@astron.com>
  712. * fix -k flag (Maciej W. Rozycki)
  713. 2003-11-18 14:10 Christos Zoulas <christos@astron.com>
  714. * Try to give us much info as possible on corrupt elf files.
  715. (Willy Tarreau) <willy@w.ods.org>
  716. * Updated python bindings (Brett Funderburg)
  717. <brettf@deepfile.com>
  718. 2003-11-11 15:03 Christos Zoulas <christos@astron.com>
  719. * Include file.h first, because it includes config.h
  720. breaks largefile test macros otherwise.
  721. (Paul Eggert <eggert@CS.UCLA.EDU> via
  722. Lars Hecking <lhecking@nmrc.ie>)
  723. 2003-10-14 21:39 Christos Zoulas <christos@astron.com>
  724. * Python bindings (Brett Funderburg) <brettf@deepfile.com>
  725. * Don't lookup past the end of the buffer
  726. (Chad Hanson) <chanson@tcs-sec.com>
  727. * Add MAGIC_ERROR and api on magic_errno()
  728. 2003-10-08 12:40 Christos Zoulas <christos@astron.com>
  729. * handle error conditions from compile as fatal
  730. (Antti Kantee) <pooka@netbsd.org>
  731. * handle magic filename parsing sanely
  732. * more magic fixes.
  733. * fix a memory leak (Illes Marton) <illes.marton@balabit.hu>
  734. * describe magic file handling
  735. (Bryan Henderson) <bryanh@giraffe-data.com>
  736. 2003-09-12 15:09 Christos Zoulas <christos@astron.com>
  737. * update magic files.
  738. * remove largefile support from file.h; it breaks things on most OS's
  739. 2003-08-10 10:25 Christos Zoulas <christos@astron.com>
  740. * fix unmapping'ing of mmaped files.
  741. 2003-07-10 12:03 Christos Zoulas <christos@astron.com>
  742. * don't exit with -1 on error; always exit 1 (Marty Leisner)
  743. * restore utimes code.
  744. 2003-06-10 17:03 Christos Zoulas <christos@astron.com>
  745. * make sure we don't access uninitialized memory.
  746. * pass lint
  747. * #ifdef __cplusplus in magic.h
  748. 2003-05-25 19:23 Christos Zoulas <christos@astron.com>
  749. * rename cvs magic file to revision to deal with
  750. case insensitive filesystems.
  751. 2003-05-23 17:03 Christos Zoulas <christos@astron.com>
  752. * documentation fixes from Michael Piefel <piefel@debian.org>
  753. * magic fixes (various)
  754. * revert basename magic in .mgc name determination
  755. * buffer protection in uncompress,
  756. signness issues,
  757. close files
  758. Maciej W. Rozycki <macro@ds2.pg.gda.pl
  759. 2003-04-21 20:12 Christos Zoulas <christos@astron.com>
  760. * fix zsh magic
  761. 2003-04-04 16:59 Christos Zoulas <christos@astron.com>
  762. * fix operand sort order in string.
  763. 2003-04-02 17:30 Christos Zoulas <christos@astron.com>
  764. * cleanup namespace in magic.h
  765. 2003-04-02 13:50 Christos Zoulas <christos@astron.com>
  766. * Magic additions (Alex Ott)
  767. * Fix bug that broke VPATH compilation (Peter Breitenlohner)
  768. 2003-03-28 16:03 Christos Zoulas <christos@astron.com>
  769. * remove packed attribute from magic struct.
  770. * make the magic struct properly aligned.
  771. * bump version number of compiled files to 2.
  772. 2003-03-27 13:10 Christos Zoulas <christos@astron.com>
  773. * separate tar detection and run it before softmagic.
  774. * fix reversed symlink test.
  775. * fix version printing.
  776. * make separator a string instead of a char.
  777. * update manual page and sort options.
  778. 2003-03-26 11:00 Christos Zoulas <christos@astron.com>
  779. * Pass lint
  780. * make NULL in magic_file mean stdin
  781. * Fix "-" argument to file to pass NULL to magic_file
  782. * avoid pointer casts by using memcpy
  783. * rename magic_buf -> magic_buffer
  784. * keep only the first error
  785. * manual page: new sentence, new line
  786. * fix typo in api function (magic_buf -> magic_buffer)