drm: Add Linux wake_up() and wait_event()
[dragonfly.git] / contrib / file / ChangeLog
blobdd90401863720a26f53949122d16a7cef213da06
1 2014-03-26  11:25  Christos Zoulas <christos@zoulas.com>
3         * release 5.18
5 2014-03-15  17:45  Christos Zoulas <christos@zoulas.com>
7         * add fmtcheck(3) for those who don't have it
9 2014-03-14  15:12  Christos Zoulas <christos@zoulas.com>
11         * prevent mime entries from being attached to magic
12           entries with no descriptions
14         * adjust magic strength for regex type
16         * remove superfluous ascmagic with encoding test
18 2014-03-06  12:01  Christos Zoulas <christos@zoulas.com>
20         * fix regression fix echo -ne "\012\013\014" | file -i -
21           which printed "binary" instead of "application/octet-stream"
23         * add size_t overflow check for magic file size
25 2014-02-27  16:01  Christos Zoulas <christos@zoulas.com>
27         * experimental support for matching with CFD CLSID
29 2014-02-18  13:04  Kimmo Suominen (kimmo@suominen.com)
31         * Cache old LC_CTYPE locale before setting it to "C", so
32           we can use it to restore LC_CTYPE instead of asking
33           setlocale() to scan the environment variables.
35 2014-02-12  18:21  Christos Zoulas <christos@zoulas.com>
37         * Count recursion levels through indirect magic
39 2014-02-11  10:40  Christos Zoulas <christos@zoulas.com>
41         * Prevent infinite recursion on files with indirect offsets of 0
43 2014-01-30  21:00  Christos Zoulas <christos@zoulas.com>
45         * Add -E flag that makes file print filesystem errors to stderr
46           and exit.
48 2014-01-08  17:20  Christos Zoulas <christos@zoulas.com>
50         * mime printing could print results from multiple magic entries
51           if there were multiple matches.
52         * in some cases overflow was not detected when computing offsets
53           in softmagic.
55 2013-12-05  12:00  Christos Zoulas <christos@zoulas.com>
57         * use strcasestr() to for cdf strings
58         * reset to the "C" locale while doing regex operations, or case
59           insensitive comparisons; this is provisional
61 2013-11-19  20:10  Christos Zoulas <christos@zoulas.com>
63         * always leave magic file loaded, don't unload for magic_check, etc.
64         * fix default encoding to binary instead of unknown which broke recently
65         * handle empty and one byte files, less specially so that
66           --mime-encoding does not break completely.
67                 `
68 2013-11-06  14:40  Christos Zoulas <christos@zoulas.com>
70         * fix erroneous non-zero exit code from non-existant file and message
72 2013-10-29  14:25  Christos Zoulas <christos@zoulas.com>
74         * add CDF MSI file detection (Guy Helmer)
76 2013-09-03  11:56  Christos Zoulas <christos@zoulas.com>
78         * Don't mix errors and regular output if there was an error
79         * in magic_descriptor() don't close the file and try to restore
80           its position
82 2013-05-30  17:25  Christos Zoulas <christos@zoulas.com>
84         * Don't treat magic as an error if offset was past EOF (Christoph Biedl)
86 2013-05-28  17:25  Christos Zoulas <christos@zoulas.com>
87         
88         * Fix spacing issues in softmagic and elf (Jan Kaluza)
90 2013-05-02  18:00  Christos Zoulas <christos@zoulas.com>
92         * Fix segmentation fault with multiple magic_load commands.
94 2013-04-22  11:20  Christos Zoulas <christos@zoulas.com>
96         * The way "default" was implemented was not very useful
97           because the "if something was printed at that level"
98           was not easily controlled by the user, and the format
99           was bound to a string which is too restrictive. Add
100           a "clear" for that level keyword and make "default"
101           void. This way one can do:
103                 >>13    clear   x
104                 >>13    lelong  1       foo
105                 >>13    lelong  2       bar
106                 >>13    default x
107                 >>>13   lelong  x       unknown %x
109 2013-03-25  13:20  Christos Zoulas <christos@zoulas.com>
111         * disallow strength setting in "name" entries
113 2013-03-06  21:24  Christos Zoulas <christos@zoulas.com>
115         * fix recursive magic separator printing
117 2013-02-26  19:28  Christos Zoulas <christos@zoulas.com>
119         * limit recursion level for mget
120         * fix pread() related breakage in cdf
121         * handle offsets properly in recursive "use"
123 2013-02-18  10:39  Christos Zoulas <christos@zoulas.com>
125         * add elf reading of debug info to determine if file is stripped
126           (Jan Kaluza)
127         * use pread()
129 2013-01-25  18:05  Christos Zoulas <christos@zoulas.com>
131         * change mime description size from 64 to 80 to accommodate OOXML.
133 2013-01-11  14:50  Christos Zoulas <christos@zoulas.com>
135         * Warn about inconsistent continuation levels.
136         * Change fsmagic to add a space after it prints.
138 2013-01-10  21:00  Christos Zoulas <christos@zoulas.com>
140         * Make getline public so that file can link against it.
141           Perhaps it is better to rename it, or hide it differently.
142           Fixes builds on platforms that do not provide it.
143           
144 2013-01-07  16:30  Christos Zoulas <christos@zoulas.com>
146         * Add SuS d{,1,2,4,8}, u{,1,2,4,8} and document
147           what long, int, short, etc is (Guy Harris)
149 2013-01-06  11:20  Christos Zoulas <christos@zoulas.com>
151         * add magic_version function and constant
152         * Redo memory allocation and de-allocation.
153           (prevents double frees on non mmap platforms)
154         * Fix bug with name/use having to do with passing
155           found state from the parent to the child and back.
157 2012-12-19   8:47  Christos Zoulas <christos@zoulas.com>
159         * Only print elf capabilities for archs we know (Jan Kaluza)
161 2012-10-30  19:14  Christos Zoulas <christos@zoulas.com>
163         * Add "name" and "use" file types in order to look
164           inside mach-o files.
166 2012-09-06  10:40  Christos Zoulas <christos@zoulas.com>
168         * make --version exit 0 (Matthew Schultz)
169         * add string/T (Jan Kaluza)
171 2012-08-09  2:15  Christos Zoulas <christos@zoulas.com>
173         * add z and t modifiers for our own vasprintf
174         * search for $HOME/.magic.mgc if it is there first
175         * fix reads from a pipe, and preserve errno
177 2012-05-15  13:12  Christos Zoulas <christos@zoulas.com>
179         * use ctime_r, asctime_r
181 2012-04-06  17:18  Christos Zoulas <christos@zoulas.com>
183         * Fixes for indirect offsets to handle apple disk formats
185 2012-04-03  18:26  Christos Zoulas <christos@zoulas.com>
187         * Add windows date field types
188         * More info for windows shortcuts (incomplete)
190 2012-02-20  17:33  Christos Zoulas <christos@zoulas.com>
192         * Fix CDF parsing issues found by CERT's fuzzing tool (Will Dormann)
194 2011-12-15  12:17  Chris Metcalf <cmetcalf@tilera.com>
196         * Support Tilera architectures (tile64, tilepro, tilegx).
198 2011-12-16  16:33  Reuben Thomas <rrt@sc3d.org>
200         * Add magic for /usr/bin/env Perl scripts
201         * Weaken generic script magic to avoid clashing with
202         language-specific magic.
204 2011-12-08  13:37  Reuben Thomas <rrt@sc3d.org>
206         * Simplify if (p) free(p) to free(p).
208 2011-12-08  13:07  Reuben Thomas <rrt@sc3d.org>
210         * Remove hardwired token finding (names.h), turning it into soft
211         magic. Patterns are either anchored regexs or search/8192. English
212         language detection and PL/1 detection have been removed as they
213         were too fragile. -e tokens is still accepted for backwards
214         compatibility.
215         * Move 3ds patterns (which are commented out anyway) into autodesk
216         (they were, oddly, in c-lang).
218 2011-12-06  00:16  Reuben Thomas <rrt@sc3d.org>
220         * Tweak strength of generic hash-bang detectors to be less than
221         specific ones.
222         * Make an inconsistent description of Python scripts consistent.
224 2011-12-05  23:58  Reuben Thomas <rrt@sc3d.org>
226         * Fix minor error in file(1).
228 2011-11-05  00:00  Reuben Thomas <rrt@sc3d.org>
230         * Fix issue #150 (I hope).
232 2011-09-22  12:57  Christos Zoulas <christos@zoulas.com>
234         * Python3 binding fixes from Kelly Anderson
236 2011-09-20  11:32  Christos Zoulas <christos@zoulas.com>
238         * If a string type magic entry is marked as text or binary
239           only match text files against text entries and binary
240           files against binary entries.
242 2011-09-01  12:12  Christos Zoulas <christos@zoulas.com>
244         * Don't wait for any subprocess, just the one we forked.
246 2011-08-26  16:40  Christos Zoulas <christos@zoulas.com>
248         * If the application name is not set in a cdf file, try to see
249           if it has a directory with the application name on it.
251 2011-08-17  14:32  Christos Zoulas <christos@zoulas.com>
253         * Fix ELF lseek(2) madness. Inspired by PR/134 by Jan Kaluza
255 2011-08-14  09:03  Christos Zoulas <christos@zoulas.com>
257         * Don't use variable string formats.
259 2011-07-12  12:32  Reuben Thomas <rrt@sc3d.org>
261         * Fix detection of Zip files (Mantis #128).
262         * Make some minor improvements to file(1).
263         * Rename MIME types for filesystem objects for consistency with
264           xdg-utils. Typically this means that application/x-foo becomes
265           inode/foo, but some names also change slightly, e.g.
266           application/x-character-device becomes inode/chardevice.
268 2011-05-10  20:57  Christos Zoulas <christos@zoulas.com>
270         * fix mingw compilation (Abradoks)
272 2011-05-10  20:57  Christos Zoulas <christos@zoulas.com>
274         * remove patchlevel.h
275         * Fix read past allocated memory caused by double-incrementing
276           a pointer in a loop (reported by Roberto Maar)
278 2011-03-30  15:45  Christos Zoulas <christos@zoulas.com>
280         * Fix cdf string buffer setting (Sven Anders)
282 2011-03-20  16:35  Christos Zoulas <christos@zoulas.com>
284         * Eliminate MAXPATHLEN and use dynamic allocation for
285           path and file buffers.
287 2011-03-15  18:15  Christos Zoulas <christos@zoulas.com>
289         * binary tests on magic entries with masks could spuriously
290           get converted to ascii.
292 2011-03-12  18:06  Reuben Thomas <rrt@sc3d.org>
294         * Improve file.man (remove BUGS, present email addresses consistently).
296 2011-03-07  19:38  Christos Zoulas <christos@zoulas.com>
298         * add lrzip support (from Ville Skytta)
300 2011-02-10  16:36  Christos Zoulas <christos@zoulas.com>
302         * fix CDF bounds checking (Guy Helmer)
304 2011-02-10  12:03  Christos Zoulas <christos@zoulas.com>
306         * add cdf_ctime() that prints a meaningful error when time cannot
307           be converted.
309 2011-02-02  20:40  Christos Zoulas <christos@zoulas.com>
311         * help and version output to stdout.
313         * When matching softmagic for ascii files, don't just print
314           the softmagic classification, keep going and print the
315           text classification too. This fixes broken troff files when
316           we moved them from keyword recognition to softmagic
317           (they stopped printing "with CRLF" etc.)
318           Reported by Doug McIlroy.
320 2011-01-16  19:31  Reuben Thomas <rrt@sc3d.org>
322         * Fix two potential buffer overruns in apprentice_list.
324 2011-01-14  22:33  Reuben Thomas <rrt@sc3d.org>
326         * New Python binding in pure Python.
327         * Update libmagic(3).
329 2011-01-06  21:40  Reuben Thomas <rrt@sc3d.org>
331         * Fix Python bindings (including recent Python 3 compatibility
332           update).
334 2011-01-04  18:43  Reuben Thomas <rrt@sc3d.org>
336         * magic/Makefile.am: make it easier to recover from magic build failures.
337         * Fix pstring length specifier parsing to avoid generating invalid
338           magic files.
339         * Add pstring length "J" (for "JPEG") to specify that the length
340           include itself.
341         * Fix JPEG comment parsing at last using pstring/HJ!
342         * Ignore section 5 man pages in doc/.cvsignore.
344 2010-12-22  13:12  Christos Zoulas <christos@zoulas.com>
346         * Add pstring/BHhLl to specify the type of the length of pascal
347           strings.
349 2010-11-26  18:39  Reuben Thomas <rrt@sc3d.org>
351         * Fix "-e soft": it was ignored when softmagic was called
352           during asciimagic.
353         * Improve comments and use "unsigned char" in tar.h/is_tar.c.
355 2010-11-05  17:26  Reuben Thomas <rrt@sc3d.org>
357         * Make bug reporting addresses more visible.
359 2010-11-01  18:35  Reuben Thomas <rrt@sc3d.org>
361         * Add tcl magic from Gustaf Neumann
363 2010-10-24  10:42  Christos Zoulas <christos@zoulas.com>
365         * Fix the whitespace comparing code (Christopher Chittleborough)
367 2010-10-06  21:05  Christos Zoulas <christos@zoulas.com>
369         * allow string/t to work (Jan Kaluza)
371 2010-09-20  22:11  Reuben Thomas <rrt@sc3d.org>
373         * Apply some patches from Ubuntu and Fedora.
375 2010-09-20  21:16  Reuben Thomas <rrt@sc3d.org>
377         * Apply all patches from Debian package 5.04-6 which have not
378           already been applied and are not Debian-specific.
380 2010-09-20  15:24  Reuben Thomas <rrt@sc3d.org>
382         * Minor security fix to softmagic.c (don't use untrusted
383           string as printf format).
385 2010-07-21  12:20  Christos Zoulas <christos@zoulas.com>
387         * MINGW32 portability from LRN
389         * Don't warn about escaping magic regex chars when we are in a regex.
391 2010-07-19  10:55  Christos Zoulas <christos@zoulas.com>
393         * Only try to print prpsinfo for core files. (Jan Kaluza)
395 2010-04-22  12:55  Christos Zoulas <christos@zoulas.com>
397         * Try more elf offsets for Debian core files.  (Arnaud Giersch)
399 2010-02-20  15:18  Reuben Thomas <rrt@sc3d.org>
401         * Clarify which sort of CDF we mean.
403 2010-02-14  22:58  Reuben Thomas <rrt@sc3d.org>
405         * Re-jig Zip file type magic so that unsupported special
406           Zip types (those with "mimetype" at offset 30) can be
407           recognized.
409 2010-02-02  21:50  Reuben Thomas <rrt@sc3d.org>
411         * Add support for OCF (EPUB) files (application/epub+zip)
413 2010-01-28  18:25  Christos Zoulas <christos@zoulas.com>
415         * Fix core-dump from unbound loop:
416           https://bugzilla.redhat.com/show_bug.cgi?id=533245
418 2010-01-22  15:45  Christos Zoulas <christos@zoulas.com>
420         * print proper mime for crystal reports file
422         * print the last summary information of a cdf document, not the
423           first so that nested documents print the right info
425 2010-01-16  18:42  Charles Longeau <chl@tuxfamily.org>
427         * bring back some fixes from OpenBSD:
428                 - make gcc2 builds file
429                 - fix typos in a magic file comment
431 2009-11-17  18:35  Christos Zoulas <christos@zoulas.com>
433         * ctime/asctime can return NULL on some OS's although
434           they should not (Toshit Antani)
436 2009-09-14  13:49  Christos Zoulas <christos@zoulas.com>
438         * Centralize magic path handling routines and remove the
439           special-casing from file.c so that the python module for
440           example comes up with the same magic path (Fixes ~/.magic
441           handling) (from Gab)
443 2009-09-11  23:38  Reuben Thomas <rrt@sc3d.org>
445         * When magic argument is a directory, read the files in
446           strcmp-sorted order (fixes Debian bug #488562 and our own FIXME).
448 2009-09-11  13:11  Reuben Thomas <rrt@sc3d.org>
450         * Combine overlapping epoc and psion magic files into one (epoc).
452         * Add some more EPOC MIME types.
454 2009-08-19  15:55  Christos Zoulas <christos@zoulas.com>
456         * Fix 3 bugs (From Ian Darwin):
457             - file_showstr could move one past the end of the array
458             - parse_apple did not nul terminate the string in the overflow case
459             - parse_mime truncated the wrong string in the overflow case
461 2009-08-12  12:28  Robert Byrnes  <byrnes@wildpumpkin.net>
463         * Include Localstuff when compiling magic.
465 2009-07-15  10:05  Christos Zoulas <christos@zoulas.com>
467         * Fix logic for including mygetopts.h
469         * Make cdf.c compile again with debugging
471         * Add the necessary field handling for crystal reports files to work
473 2009-06-23 01:34  Reuben Thomas <rrt@sc3d.org>
475         * Stop "(if" identifying Lisp files, that's plain dumb!
477 2009-06-09 22:13  Reuben Thomas <rrt@sc3d.org>
479         * Add a couple of missing MP3 MIME types.
481 2009-05-27 23:00  Reuben Thomas <rrt@sc3d.org>
483         * Add full range of hash-bang tests for Python and Ruby.
485         * Add MIME types for Python and Ruby scripts.
487 2009-05-13  10:44  Christos Zoulas <christos@zoulas.com>
489         * off by one in parsing hw capabilities in elf
490           (Cheng Renquan)
492 2009-05-08  13:40  Christos Zoulas <christos@zoulas.com>
493         
494         * lint fixes and more from NetBSD
496 2009-05-06  10:25  Christos Zoulas <christos@zoulas.com>
498         * Avoid null dereference in cdf code (Drew Yao)
500         * More cdf bounds checks and overflow checks
502 2009-05-01  18:37  Christos Zoulas <christos@zoulas.com>
504         * Buffer overflow fixes from Drew Yao
506 2009-04-30  17:10  Christos Zoulas <christos@zoulas.com>
508         * Fix more cdf lossage. All the documents I have
509           right now print the correct information.
511 2009-03-27  18:43  Christos Zoulas <christos@zoulas.com>
513         * don't print \012- separators in the same magic entry 
514           if it consists of multiple magic printing lines.
516 2009-03-23  10:20  Christos Zoulas <christos@zoulas.com>
518         * Avoid file descriptor leak in compress code from
519           (Daniel Novotny)
521 2009-03-18  16:50  Christos Zoulas <christos@zoulas.com>
523         * Allow escaping of relation characters, so that we can say \^[A-Z]
524           and the ^ is not eaten as a relation char.
526         * Fix troff and fortran to their previous glory using
527           regex. This was broken since their removel from ascmagic.
529 2009-03-10  16:50  Christos Zoulas <christos@zoulas.com>
531         * don't use strlen in strndup() (Toby Peterson)
533 2009-03-10  7:45  Christos Zoulas <christos@zoulas.com>
535         * avoid c99 syntax.
537 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.
542 2009-02-13 13:45  Christos Zoulas <christos@zoulas.com>
544         * look for struct option to determine if getopt.h is usable for IRIX.
546         * sanitize cdf document strings
548 2009-02-04 13:25  Christos Zoulas <christos@zoulas.com>
550         * fix OS/2 warnings.
552 2008-12-12 15:50  Christos Zoulas <christos@zoulas.com>
554         * fix initial offset calculation for non 4K sector files
556         * add loop limits to avoid DoS attacks by constructing
557           looping sector references.
559 2008-12-03 13:05  Christos Zoulas <christos@zoulas.com>
561         * fix memory botches on cdf file parsing.
563         * exit with non-zero value for any error, not just for the last
564           file processed.
566 2008-11-09 20:42  Charles Longeau <chl@tuxfamily.org>
568         * Replace all str{cpy,cat} functions with strl{cpy,cat}
569         * Ensure that strl{cpy,cat} are included in libmagic,
570           as needed.
572 2008-11-06 18:18  Christos Zoulas <christos@zoulas.com>
574         * Handle ID3 format files.
576 2008-11-06 23:00  Reuben Thomas <rrt@sc3d.org>
578         * Fix --mime, --mime-type and --mime-encoding under new scheme.
580         * Rename "ascii" to "text" and add "encoding" test.
582         * Return a precise ("utf-16le" or "utf-16be") MIME charset for
583           UTF-16.
585         * Fix error in comment caused by automatic indentation adding
586           words!
588 2008-11-06 10:35  Christos Zoulas <christos@astron.com>
590         * use memchr instead of strchr because the string
591           might not be NUL terminated (Scott MacVicar)
593 2008-11-03 07:31  Reuben Thomas <rrt@sc3d.org>
595         * Fix a printf with a non-literal format string.
597         * Fix formatting and punctuation of help for "--apple".
599 2008-10-30 11:00  Reuben Thomas <rrt@sc3d.org>
601         * Correct words counts in comments of struct magic.
603         * Fix handle_annotation to allow both Apple and MIME types to be
604           printed, and to return correct code if MIME type is
605           printed (1, not 0) or if there's an error (-1 not 1).
607         * Fix output of charset for MIME type (precede with semi-colon;
608           fixes Debian bug #501460).
610         * Fix potential attacks via conversion specifications in magic
611           strings.
613         * Add a FIXME for Debian bug #488562 (magic files should be
614           read in a defined order, by sorting the names).
616 2008-10-18 16:45  Christos Zoulas <christos@astron.com>
618         * Added APPLE file creator/type
620 2008-10-12 10:20  Christos Zoulas <christos@astron.com>
622         * Added CDF parsing
624 2008-10-09 16:40  Christos Zoulas <christos@astron.com>
626         * filesystem and msdos patches (Joerg Jenderek)
628 2008-10-09 13:20  Christos Zoulas <christos@astron.com>
630         * correct --exclude documentation issues: remove troff and fortran
631           and rename "token" to "tokens". (Randy McMurchy)
633 2008-10-01 10:30  Christos Zoulas <christos@astron.com>
635         * Read ~/.magic in addition to the default magic file not instead
636           of, as documented in the man page.
638 2008-09-10 21:30  Reuben Thomas  <rrt@sc3d.org>
640         * Comment out graphviz patterns, as they match too many files.
642 2008-08-30 12:54  Christos Zoulas <christos@astron.com>
644         * Don't eat trailing \n in magic enties.
646         * Cast defines to allow compilation using a c++ compiler.
648 2008-08-25 23:56  Reuben Thomas  <rrt@sc3d.org>
650         * Add text/x-lua MIME type for Lua scripts.
652         * Escape { in regex in graphviz patterns.
654 2008-07-26 00:59  Reuben Thomas  <rrt@sc3d.org>
656         * Add MIME types for special files.
658         * Use access to give more accurate information for files that
659           can't be opened.
661         * Add a TODO list.
663 2008-07-02 11:15  Christos Zoulas  <christos@astron.com>
665         * add !:strength op to adjust magic strength (experimental)
667 2008-06-16 21:41  Reuben Thomas  <rrt@sc3d.org>
669         * Fix automake error in configure.ac.
671         * Add MIME type for Psion Sketch files.
673 2008-06-05 08:59  Christos Zoulas  <christos@astron.com>
675         * Don't print warnings about bad namesize in stripped
676           binaries with PT_NOTE is still there, and the actual
677           note is gone (Jakub Jelinek)
679 2008-05-28 15:12  Robert Byrnes  <byrnes@wildpumpkin.net>
681         * magic/Magdir/elf:
682           Note invalid byte order for little-endian SPARC32PLUS.
683           Add SPARC V9 vendor extensions and memory model.
685         * src/elfclass.h:
686           Pass target machine to doshn (for Solaris hardware capabilities).
688         * src/readelf.c (doshn):
689           Add support for Solaris hardware/software capabilities.
691         * src/readelf.h:
692           Ditto.
694         * src/vasprintf.c (dispatch):
695           Add support for ll modifier.
697 2008-05-16 10:25  Christos Zoulas  <christos@astron.com>
699         * Fix compiler warnings.
701         * remove stray printf, and fix a vprintf bug. (Martin Dorey)
703 2008-05-06 00:13  Robert Byrnes  <byrnes@wildpumpkin.net>
705         * src/Makefile.am:
706           Ensure that getopt_long and [v]asprintf are included in libmagic,
707           as needed.
709           Remove unnecessary EXTRA_DIST.
711         * src/Makefile.in:
712           Rerun automake.
714         * src/vasprintf.c (dispatch):
715           Fix variable precision bug: be sure to step past '*'.
717         * src/vasprintf.c (core):
718           Remove unreachable code.
720         * src/apprentice.c (set_test_type):
721           Add cast to avoid compiler warning.
723 2008-04-22 23:45  Christos Zoulas  <christos@astron.com>
725         * Add magic submission guidelines (Abel Cheung)
727         * split msdos and windows magic (Abel Cheung)
729 2008-04-04 11:00  Christos Zoulas  <christos@astron.com>
731         * >= <= is not supported, so fix the magic and warn about it.
732           reported by: Thien-Thi Nguyen <ttn@gnuvola.org>
734 2008-03-27 16:16  Robert Byrnes  <byrnes@wildpumpkin.net>
736         * src/readelf.c (donote):
737           ELF core file command name/line bug fixes and enhancements:
739           Try larger offsets first to avoid false matches
740           from earlier data that happen to look like strings;
741           this primarily affected SunOS 5.x 32-bit Intel core files.
743           Add support for command line (instead of just short name)
744           for SunOS 5.x.
746           Add information about NT_PSINFO for SunOS 5.x.
748           Only trim whitespace from end of command line.
750 2007-02-11 01:36 Reuben Thomas <rrt@sc3d.org>
752         * Change strength of ! from MULT to 0, as it matches almost
753                   anything (Reuben Thomas)
755         * Debian fixes (Reuben Thomas)
757 2007-02-11 00:17 Reuben Thomas <rrt@sc3d.org>
759         * Clarify UTF-8 BOM message (Reuben Thomas)
761         * Add HTML comment to token list in names.h
763 2007-02-04 15:50 Christos Zoulas <christos@astron.com>
765         * Debian fixes (Reuben Thomas)
767 2007-02-04 11:31 Christos Zoulas <christos@astron.com>
769         * !:mime annotations in magic files (Reuben Thomas)
771 2007-01-29 15:35 Christos Zoulas <christos@astron.com>
773         * zero out utime/utimes structs (Gavin Atkinson)
775 2007-01-26 13:45 Christos Zoulas <christos@astron.com>
777         * reduce writable data from Diego "Flameeyes" Petten
779 2007-12-28 15:06 Christos Zoulas <christos@astron.com>
781         * strtof detection
783         * remove bogus regex magic that could cause a DoS
785         * better mismatch version message
787 2007-12-27 11:35 Christos Zoulas <christos@astron.com>
789         * bring back some fixes from OpenBSD
791         * treat ELF dynamic objects as executables
793         * fix gcc warnings
795 2007-12-01 19:55 Christos Zoulas <christos@astron.com>
797         * make sure we have zlib.h and libz to compile the builtin
798           decompress code
800 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
802         * float and double magic support (Behan Webster)
804 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
806         * Convert fortran to a soft test (Reuben Thomas)
808 2007-10-23  5:25 Christos Zoulas <christos@astron.com>
810         * Add --with-filename, and --no-filename (Reuben Thomas)
812 2007-10-23  3:59 Christos Zoulas <christos@astron.com>
814         * Rest of the mime split (Reuben Thomas)
816         * Make usage message generated from the flags so that
817           they stay consistent (Reuben Thomas)
819 2007-10-20  3:06 Christos Zoulas <christos@astron.com>
821         * typo in comment, missing ifdef QUICK, remove unneeded code
822                 (Charles Longeau)
824 2007-10-17  3:33 Christos Zoulas <christos@astron.com>
826         * Fix problem printing -\012 in some entries
828         * Separate magic type and encoding flags (Reuben Thomas)
830 2007-10-09  3:55 Christos Zoulas <christos@astron.com>
832         * configure fix for int64 and strndup (Reuben Thomas)
834 2007-09-26  4:45 Christos Zoulas <christos@astron.com>
836         * Add magic_descriptor() function.
838         * Fix regression in elf reading code where the core name was
839           not being printed.
841         * Don't convert NUL's to spaces in {l,b}estring16 (Daniel Dawson)
843 2007-08-19  6:30 Christos Zoulas <christos@astron.com>
845         * Make mime format consistent so that it can
846           be easily parsed:
847               mimetype [charset=character-set] [encoding=encoding-mime-type]
849           Remove spurious extra text from some MIME type printouts
850           (mostly in is_tar).
852           Fix one case where -i produced nothing at all (for a 1-byte file,
853           which is now classed as application/octet-stream).
855           Remove 7/8bit classifications, since they were arbitrary
856           and not based on the file data.
858           This work was done by Reuben Thomas
860 2007-05-24 10:00 Christos Zoulas <christos@astron.com>
862         * Fix another integer overflow (Colin Percival)
864 2007-03-26 13:58 Christos Zoulas <christos@astron.com>
866         * make sure that all of struct magic_set is initialized appropriately
867           (Brett)
869 2007-03-25 17:44 Christos Zoulas <christos@astron.com>
871         * reset left bytes in the buffer (Dmitry V. Levin)
873         * compilation failed with COMPILE_ONLY and ENABLE_CONDITIONALS
874           (Peter Avalos)
876 2007-03-15 10:51 Christos Zoulas <christos@astron.com>
878         * fix fortran and nroff reversed tests (Dmitry V. Levin)
880         * fix exclude option (Dmitry V. Levin)
882 2007-02-08 17:30 Christos Zoulas <christos@astron.com>
884         * fix integer underflow in file_printf which can lead to
885           to exploitable heap overflow (Jean-Sebastien Guay-Lero)
887 2007-02-05 11:35 Christos Zoulas <christos@astron.com>
889         * make socket/pipe reading more robust
891 2007-01-25 16:01 Christos Zoulas <christos@astron.com>
893         * Centralize all the tests in file_buffer.
895         * Add exclude flag.
897 2007-01-18 05:29 Anon Ymous <do@not.spam.me>
899         * Move the "type" detection code from parse() into its own table
900           driven routine.  This avoids maintaining multiple lists in
901           file.h.
903         * Add an optional conditional field (ust before the type field).
904           This code is wrapped in "#ifdef ENABLE_CONDITIONALS" as it is
905           likely to go away.
907 2007-01-16 23:24 Anon Ymous <do@not.spam.me>
909         * Fix an initialization bug in check_mem().
911 2007-01-16 14:58 Anon Ymous <do@not.spam.me>
913         * Add a "default" type to print a message if nothing previously
914           matched at that level or since the last default at that
915           level.  This is useful for setting up switch-like statements.
916           It can also be used to do if/else constructions without a
917           redundant second test.
919         * Fix the "x" special case test so that one can test for that
920           string with "=x".
922         * Allow "search" to search the entire buffer if the "/N"
923           search count is missing.
925         * Make "regex" work!  It now starts its search at the
926           specified offset and takes an (optional) "/N" line count to
927           specify the search range; otherwise it searches to the end
928           of the file.  The match is now grabbed correctly for format
929           strings and the offset set to the end of the match.
931         * Add a "/s" flag to "regex" and "search" to set the offset to
932           the start of the match.  By default the offset is set to the
933           end of the match, as it is with other tests.  This is mostly
934           useful for "regex".
936         * Make "search", "string" and "pstring" use the same
937           file_strncmp() routine so that they support the same flags;
938           "bestring16" and "lestring16" call the same routine, but
939           with flags = 0.  Also add a "/C" flag (in analogy to "/c")
940           to ignore the case on uppercase (lowercase) characters in
941           the test string.
943         * Strict adherence to C style string escapes.  A warnings are
944           printed when compiling.  Note: previously "\a" was
945           incorrectly translated to 'a' instead of an <alert> (i.e.,
946           BELL, typically 0x07).
948         * Make this compile with "-Wall -Wextra" and all the warning
949           flags used with WARNS=4 in the NetBSD source.  Also make it
950           pass lint.
952         * Many "cleanups" and hopefully not too many new bugs!
954 2007-01-16 14:56 Anon Ymous <do@not.spam.me>
956         * make several more files compile with gcc warnings
957           on and also make them pass lint.
959 2007-01-16 14:54 Anon Ymous <do@not.spam.me>
961         * fix a puts()/putc() usage goof in file.c
963         * make file.c compile with gcc warnings and pass lint
965 2006-12-11 16:49 Christos Zoulas <christos@astron.com>
967         * fix byteswapping issue
969         * report the number of bytes we tried to
970           allocate when allocation fails
972         * add a few missed cases in the strength routine
974 2006-12-08 16:32 Christos Zoulas <christos@astron.com>
976         * store and print the line number of the magic
977           entry for debugging.
979         * if the magic entry did not print anything,
980           don't treat it as a match
982         * change the magic strength algorithm to take
983           into account the relationship op.
985         * fix a bug in search where we could accidentally
986           return a match.
988         * propagate the error return from match to
989           file_softmagic.
991 2006-11-25 13:35 Christos Zoulas <christos@astron.com>
993         * Don't store the current offset in the magic
994           struct, because it needs to be restored and
995           it was not done properly all the time. Bug
996           found by: Arkadiusz Miskiewicz
998         * Fix problem in the '\0' separator; and don't
999           print it as an additional separator; print
1000           it as the only separator.
1002 2006-11-17 10:51 Christos Zoulas <christos@astron.com>
1004         * Added a -0 option to print a '\0' separator
1005           Etienne Buira <etienne.buira@free.fr>
1007 2006-10-31 15:14 Christos Zoulas <christos@astron.com>
1009         * Check offset before copying (Mike Frysinger)
1011         * merge duplicated code
1013         * add quad date support
1015         * make sure that we nul terminate desc (Ryoji Kanai)
1017         * don't process elf notes multiple times
1019         * allow -z to report empty compressed files
1021         * use calloc to initialize the ascii buffers (Jos van den Oever)
1023 2006-06-08 11:11 Christos Zoulas <christos@astron.com>
1025         * QNX fixes (Mike Gorchak)
1027         * Add quad support.
1029         * FIFO checks (Dr. Werner Fink)
1031         * Linux ELF fixes (Dr. Werner Fink)
1033         * Magic format checks (Dr. Werner Fink)
1035         * Magic format function improvent (Karl Chen)
1037 2006-05-03 11:11 Christos Zoulas <christos@astron.com>
1039         * Pick up some elf changes and some constant fixes from SUSE
1041         * Identify gnu tar vs. posix tar
1043         * When keep going, don't print spurious newlines (Radek Vokál)
1045 2006-04-01 12:02 Christos Zoulas <christos@astron.com>
1047         * Use calloc instead of malloc (Mike Frysinger)
1049         * Fix configure script to detect wctypes.h (Mike Frysinger)
1051 2006-03-02 16:06 Christos Zoulas <christos@astron.com>
1053         * Print empty if the file is (Mike Frysinger)
1055         * Don't try to read past the end of the buffer (Mike Frysinger)
1057         * Sort magic entries by strength [experimental]
1059 2005-11-29 13:26 Christos Zoulas <christos@astron.com>
1061         * Use iswprint() to convert the output string.
1062             (Bastien Nocera)
1064 2005-10-31 8:54 Christos Zoulas <christos@astron.com>
1066         * Fix regression where the core info was not completely processed
1067             (Radek Vokál)
1069 2005-10-20 11:15 Christos Zoulas <christos@astron.com>
1071         * Middle Endian magic (Diomidis Spinellis)
1073 2005-10-17 11:15 Christos Zoulas <christos@astron.com>
1075         * Open with O_BINARY for CYGWIN (Corinna Vinschen)
1077         * Don't close stdin (Arkadiusz Miskiewicz)
1079         * Look for note sections in non executables.
1081 2005-09-20 13:33 Christos Zoulas <christos@astron.com>
1083         * Don't print SVR4 Style in core files multiple times
1084             (Radek Vokál)
1086 2005-08-27 04:09 Christos Zoulas <christos@astron.com>
1088         * Cygwin changes Corinna Vinschen
1090 2005-08-18 09:53 Christos Zoulas <christos@astron.com>
1092         * Remove erroreous mention of /etc/magic in the file man page
1093           This is gentoo bug 101639. (Mike Frysinger)
1095         * Cross-compile support and detection (Mike Frysinger)
1097 2005-08-12 10:17 Christos Zoulas <christos@astron.com>
1099         * Add -h flag and dereference symlinks if POSIXLY_CORRECT
1100           is set.
1102 2005-07-29 13:57 Christos Zoulas <christos@astron.com>
1104         * Avoid search and regex buffer overflows (Kelledin)
1106 2005-07-12 11:48 Christos Zoulas <christos@astron.com>
1108         * Provide stub implementations for {v,}nsprintf() for older
1109           OS's that don't have them.
1110         * Change mbstate_t autoconf detection macro from AC_MBSTATE_T
1111           to AC_TYPE_MBSTATE_T.
1113 2005-06-25 11:48 Christos Zoulas <christos@astron.com>
1115         * Dynamically allocate the string buffers and make the
1116           default read size 256K.
1118 2005-06-01 00:00 Joerg Sonnenberger <joerg@britannica.bec.de>
1120         * Dragonfly ELF note support
1122 2005-03-14 00:00 Giuliano Bertoletti <gb@symbolic.it>
1124         * Avoid NULL pointer dereference in time conversion.
1126 2005-03-06 00:00  Joerg Walter <jwalt@mail.garni.ch>
1128         * Add indirect magic offset support, and search mode.
1130 2005-01-12 00:00  Stepan Kasal  <kasal@ucw.cz>
1132         * src/ascmagic.c (file_ascmagic): Fix three bugs about text files:
1133           If a CRLF text file happens to have CR at offset HOWMANY - 1
1134           (currently 0xffff), it should not be counted as CR line
1135           terminator.
1136           If a line has length exactly MAXLINELEN, it should not yet be
1137           treated as a ``very long line'', as MAXLINELEN is ``longest sane
1138           line length''.
1139           With CRLF, the line length was not computed correctly, and even
1140           lines of length MAXLINELEN - 1 were treated as ``very long''.
1142 2004-12-07 14:15  Christos Zoulas  <christos@astron.com>
1144         * bzip2 needs a lot of input buffer space on some files
1145           before it can begin uncompressing. This makes file -z
1146           fail on some bz2 files. Fix it by giving it a copy of
1147           the file descriptor to read as much as it wants if we
1148           have access to it. <christos@astron.com>
1150 2004-11-24 12:39  Christos Zoulas  <christos@astron.com>
1152         * Stack smash fix, and ELF more conservative reading.
1153           Jakub Bogusz <qboosh@pld-linux.org>
1155 2004-11-20 18:50  Christos Zoulas  <christos@astron.com>
1157         * New FreeBSD version parsing code:
1158           Jon Noack <noackjr@alumni.rice.edu>
1160         * Hackish support for ucs16 strings <christos@astron.com>
1162 2004-11-13 03:07  Christos Zoulas  <christos@astron.com>
1164         * print the file name and line number in syntax errors.
1166 2004 10-12 10:50  Christos Zoulas  <christos@astron.com>
1168         * Fix stack overwriting on 0 length strings: Tim Waugh
1169             <twaugh@redhat.com> Ned Ludd <solar@gentoo.org>
1171 2004-09-27 11:30  Christos Zoulas  <christos@astron.com>
1173         * Remove 3rd and 4th copyright clause; approved by Ian Darwin.
1175         * Fix small memory leaks; caught by: Tamas Sarlos
1176             <stamas@csillag.ilab.sztaki.hu>
1178 2004-07-24 16:33  Christos Zoulas  <christos@astron.com>
1180         * magic.mime update Danny Milosavljevic <danny.milo@gmx.net>
1182         * FreeBSD version update Oliver Eikemeier <eikemeier@fillmore-labs.com>
1184         * utime/utimes detection Ian Lance Taylor <ian@wasabisystems.com>
1186         * errors reading elf magic Jakub Bogusz <qboosh@pld-linux.org>
1188 2004-04-12 10:55  Christos Zoulas  <christos@astron.com>
1190         * make sure that magic formats match magic types during compilation
1192         * fix broken sgi magic file
1194 2004-04-06 20:36  Christos Zoulas  <christos@astron.com>
1196         * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com>
1198         * magic fixes
1200 2004-03-22 15:25  Christos Zoulas  <christos@astron.com>
1202         * Lots of mime fixes
1203           (Joerg Ostertag) <ostertag@rechengilde.de>
1205         * FreeBSD ELF version handling
1206           (Edwin Groothuis) <edwin@mavetju.org>
1208         * correct cleanup in all cases; don't just close the file.
1209           (Christos Zoulas) <christos@astron.com>
1211         * add gettext message catalogue support
1212           (Michael Piefel) <piefel@debian.org>
1214         * better printout for unreadable files
1215           (Michael Piefel) <piefel@debian.org>
1217         * compensate for missing MAXPATHLEN
1218           (Michael Piefel) <piefel@debian.org>
1220         * add wide character string length computation
1221           (Michael Piefel) <piefel@debian.org>
1223         * Avoid infinite loops caused by bad elf alignments
1224           or name and description note sizes. Reported by
1225           (Mikael Magnusson) <mmikael@comhem.se>
1227 2004-03-09 13:55  Christos Zoulas  <christos@astron.com>
1229         * Fix possible memory leak on error and add missing regfree
1230           (Dmitry V. Levin) <ldv@altlinux.org>
1232 2003-12-23 12:12  Christos Zoulas  <christos@astron.com>
1234         * fix -k flag (Maciej W. Rozycki)
1236 2003-11-18 14:10  Christos Zoulas  <christos@astron.com>
1238         * Try to give us much info as possible on corrupt elf files.
1239           (Willy Tarreau) <willy@w.ods.org>
1240         * Updated python bindings (Brett Funderburg)
1241            <brettf@deepfile.com>
1243 2003-11-11 15:03  Christos Zoulas  <christos@astron.com>
1245         * Include file.h first, because it includes config.h
1246           breaks largefile test macros otherwise.
1247           (Paul Eggert <eggert@CS.UCLA.EDU> via
1248            Lars Hecking <lhecking@nmrc.ie>)
1250 2003-10-14 21:39  Christos Zoulas  <christos@astron.com>
1252         * Python bindings (Brett Funderburg) <brettf@deepfile.com>
1253         * Don't lookup past the end of the buffer
1254           (Chad Hanson) <chanson@tcs-sec.com>
1255         * Add MAGIC_ERROR and api on magic_errno()
1257 2003-10-08 12:40  Christos Zoulas  <christos@astron.com>
1259         * handle error conditions from compile as fatal
1260           (Antti Kantee) <pooka@netbsd.org>
1261         * handle magic filename parsing sanely
1262         * more magic fixes.
1263         * fix a memory leak (Illes Marton) <illes.marton@balabit.hu>
1264         * describe magic file handling
1265           (Bryan Henderson) <bryanh@giraffe-data.com>
1267 2003-09-12 15:09  Christos Zoulas  <christos@astron.com>
1269         * update magic files.
1270         * remove largefile support from file.h; it breaks things on most OS's
1272 2003-08-10 10:25  Christos Zoulas  <christos@astron.com>
1274         * fix unmapping'ing of mmaped files.
1276 2003-07-10 12:03  Christos Zoulas  <christos@astron.com>
1278         * don't exit with -1 on error; always exit 1 (Marty Leisner)
1279         * restore utimes code.
1281 2003-06-10 17:03  Christos Zoulas  <christos@astron.com>
1283         * make sure we don't access uninitialized memory.
1284         * pass lint
1285         * #ifdef __cplusplus in magic.h
1287 2003-05-25 19:23  Christos Zoulas  <christos@astron.com>
1289         * rename cvs magic file to revision to deal with
1290           case insensitive filesystems.
1292 2003-05-23 17:03  Christos Zoulas  <christos@astron.com>
1294         * documentation fixes from Michael Piefel <piefel@debian.org>
1295         * magic fixes (various)
1296         * revert basename magic in .mgc name determination
1297         * buffer protection in uncompress,
1298           signness issues,
1299           close files
1300           Maciej W. Rozycki <macro@ds2.pg.gda.pl
1302 2003-04-21 20:12  Christos Zoulas  <christos@astron.com>
1304         * fix zsh magic
1306 2003-04-04 16:59  Christos Zoulas  <christos@astron.com>
1308         * fix operand sort order in string.
1310 2003-04-02 17:30  Christos Zoulas  <christos@astron.com>
1312         * cleanup namespace in magic.h
1314 2003-04-02 13:50  Christos Zoulas  <christos@astron.com>
1316         * Magic additions (Alex Ott)
1317         * Fix bug that broke VPATH compilation (Peter Breitenlohner)
1319 2003-03-28 16:03  Christos Zoulas  <christos@astron.com>
1321         * remove packed attribute from magic struct.
1322         * make the magic struct properly aligned.
1323         * bump version number of compiled files to 2.
1325 2003-03-27 13:10  Christos Zoulas  <christos@astron.com>
1327         * separate tar detection and run it before softmagic.
1328         * fix reversed symlink test.
1329         * fix version printing.
1330         * make separator a string instead of a char.
1331         * update manual page and sort options.
1333 2003-03-26 11:00  Christos Zoulas  <christos@astron.com>
1335         * Pass lint
1336         * make NULL in magic_file mean stdin
1337         * Fix "-" argument to file to pass NULL to magic_file
1338         * avoid pointer casts by using memcpy
1339         * rename magic_buf -> magic_buffer
1340         * keep only the first error
1341         * manual page: new sentence, new line
1342         * fix typo in api function (magic_buf -> magic_buffer)