ChangeLog 49 KB

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