3.6 branching and setup.
[dragonfly.git] / contrib / file / ChangeLog
blob4c19cc6034bac74af43ef73ea54652e5441ac896
1 2012-02-20  17:33  Christos Zoulas <christos@zoulas.com>
3         * Fix CDF parsing issues found by CERT's fuzzing tool (Will Dormann)
5 2011-12-15  12:17  Chris Metcalf <cmetcalf@tilera.com>
7         * Support Tilera architectures (tile64, tilepro, tilegx).
9 2011-12-16  16:33  Reuben Thomas <rrt@sc3d.org>
11         * Add magic for /usr/bin/env Perl scripts
12         * Weaken generic script magic to avoid clashing with
13         language-specific magic.
15 2011-12-08  13:37  Reuben Thomas <rrt@sc3d.org>
17         * Simplify if (p) free(p) to free(p).
19 2011-12-08  13:07  Reuben Thomas <rrt@sc3d.org>
21         * Remove hardwired token finding (names.h), turning it into soft
22         magic. Patterns are either anchored regexs or search/8192. English
23         language detection and PL/1 detection have been removed as they
24         were too fragile. -e tokens is still accepted for backwards
25         compatibility.
26         * Move 3ds patterns (which are commented out anyway) into autodesk
27         (they were, oddly, in c-lang).
29 2011-12-06  00:16  Reuben Thomas <rrt@sc3d.org>
31         * Tweak strength of generic hash-bang detectors to be less than
32         specific ones.
33         * Make an inconsistent description of Python scripts consistent.
35 2011-12-05  23:58  Reuben Thomas <rrt@sc3d.org>
37         * Fix minor error in file(1).
39 2011-11-05  00:00  Reuben Thomas <rrt@sc3d.org>
41         * Fix issue #150 (I hope).
43 2011-09-22  12:57  Christos Zoulas <christos@zoulas.com>
45         * Python3 binding fixes from Kelly Anderson
47 2011-09-20  11:32  Christos Zoulas <christos@zoulas.com>
49         * If a string type magic entry is marked as text or binary
50           only match text files against text entries and binary
51           files against binary entries.
53 2011-09-01  12:12  Christos Zoulas <christos@zoulas.com>
55         * Don't wait for any subprocess, just the one we forked.
57 2011-08-26  16:40  Christos Zoulas <christos@zoulas.com>
59         * If the application name is not set in a cdf file, try to see
60           if it has a directory with the application name on it.
62 2011-08-17  14:32  Christos Zoulas <christos@zoulas.com>
64         * Fix ELF lseek(2) madness. Inspired by PR/134 by Jan Kaluza
66 2011-08-14  09:03  Christos Zoulas <christos@zoulas.com>
68         * Don't use variable string formats.
70 2011-07-12  12:32  Reuben Thomas <rrt@sc3d.org>
72         * Fix detection of Zip files (Mantis #128).
73         * Make some minor improvements to file(1).
74         * Rename MIME types for filesystem objects for consistency with
75           xdg-utils. Typically this means that application/x-foo becomes
76           inode/foo, but some names also change slightly, e.g.
77           application/x-character-device becomes inode/chardevice.
79 2011-05-10  20:57  Christos Zoulas <christos@zoulas.com>
81         * fix mingw compilation (Abradoks)
83 2011-05-10  20:57  Christos Zoulas <christos@zoulas.com>
85         * remove patchlevel.h
86         * Fix read past allocated memory caused by double-incrementing
87           a pointer in a loop (reported by Roberto Maar)
89 2011-03-30  15:45  Christos Zoulas <christos@zoulas.com>
91         * Fix cdf string buffer setting (Sven Anders)
93 2011-03-20  16:35  Christos Zoulas <christos@zoulas.com>
95         * Eliminate MAXPATHLEN and use dynamic allocation for
96           path and file buffers.
98 2011-03-15  18:15  Christos Zoulas <christos@zoulas.com>
100         * binary tests on magic entries with masks could spuriously
101           get converted to ascii.
103 2011-03-12  18:06  Reuben Thomas <rrt@sc3d.org>
105         * Improve file.man (remove BUGS, present email addresses consistently).
107 2011-03-07  19:38  Christos Zoulas <christos@zoulas.com>
109         * add lrzip support (from Ville Skytta)
111 2011-02-10  16:36  Christos Zoulas <christos@zoulas.com>
113         * fix CDF bounds checking (Guy Helmer)
115 2011-02-10  12:03  Christos Zoulas <christos@zoulas.com>
117         * add cdf_ctime() that prints a meaningful error when time cannot
118           be converted.
120 2011-02-02  20:40  Christos Zoulas <christos@zoulas.com>
122         * help and version output to stdout.
124         * When matching softmagic for ascii files, don't just print
125           the softmagic classification, keep going and print the
126           text classification too. This fixes broken troff files when
127           we moved them from keyword recognition to softmagic
128           (they stopped printing "with CRLF" etc.)
129           Reported by Doug McIlroy.
131 2011-01-16  19:31  Reuben Thomas <rrt@sc3d.org>
133         * Fix two potential buffer overruns in apprentice_list.
135 2011-01-14  22:33  Reuben Thomas <rrt@sc3d.org>
137         * New Python binding in pure Python.
138         * Update libmagic(3).
140 2011-01-06  21:40  Reuben Thomas <rrt@sc3d.org>
142         * Fix Python bindings (including recent Python 3 compatibility
143           update).
145 2011-01-04  18:43  Reuben Thomas <rrt@sc3d.org>
147         * magic/Makefile.am: make it easier to recover from magic build failures.
148         * Fix pstring length specifier parsing to avoid generating invalid
149           magic files.
150         * Add pstring length "J" (for "JPEG") to specify that the length
151           include itself.
152         * Fix JPEG comment parsing at last using pstring/HJ!
153         * Ignore section 5 man pages in doc/.cvsignore.
155 2010-12-22  13:12  Christos Zoulas <christos@zoulas.com>
157         * Add pstring/BHhLl to specify the type of the length of pascal
158           strings.
160 2010-11-26  18:39  Reuben Thomas <rrt@sc3d.org>
162         * Fix "-e soft": it was ignored when softmagic was called
163           during asciimagic.
164         * Improve comments and use "unsigned char" in tar.h/is_tar.c.
166 2010-11-05  17:26  Reuben Thomas <rrt@sc3d.org>
168         * Make bug reporting addresses more visible.
170 2010-11-01  18:35  Reuben Thomas <rrt@sc3d.org>
172         * Add tcl magic from Gustaf Neumann
174 2010-10-24  10:42  Christos Zoulas <christos@zoulas.com>
176         * Fix the whitespace comparing code (Christopher Chittleborough)
178 2010-10-06  21:05  Christos Zoulas <christos@zoulas.com>
180         * allow string/t to work (Jan Kaluza)
182 2010-09-20  22:11  Reuben Thomas <rrt@sc3d.org>
184         * Apply some patches from Ubuntu and Fedora.
186 2010-09-20  21:16  Reuben Thomas <rrt@sc3d.org>
188         * Apply all patches from Debian package 5.04-6 which have not
189           already been applied and are not Debian-specific.
191 2010-09-20  15:24  Reuben Thomas <rrt@sc3d.org>
193         * Minor security fix to softmagic.c (don't use untrusted
194           string as printf format).
196 2010-07-21  12:20  Christos Zoulas <christos@zoulas.com>
198         * MINGW32 portability from LRN
200         * Don't warn about escaping magic regex chars when we are in a regex.
202 2010-07-19  10:55  Christos Zoulas <christos@zoulas.com>
204         * Only try to print prpsinfo for core files. (Jan Kaluza)
206 2010-04-22  12:55  Christos Zoulas <christos@zoulas.com>
208         * Try more elf offsets for Debian core files.  (Arnaud Giersch)
210 2010-02-20  15:18  Reuben Thomas <rrt@sc3d.org>
212         * Clarify which sort of CDF we mean.
214 2010-02-14  22:58  Reuben Thomas <rrt@sc3d.org>
216         * Re-jig Zip file type magic so that unsupported special
217           Zip types (those with "mimetype" at offset 30) can be
218           recognized.
220 2010-02-02  21:50  Reuben Thomas <rrt@sc3d.org>
222         * Add support for OCF (EPUB) files (application/epub+zip)
224 2010-01-28  18:25  Christos Zoulas <christos@zoulas.com>
226         * Fix core-dump from unbound loop:
227           https://bugzilla.redhat.com/show_bug.cgi?id=533245
229 2010-01-22  15:45  Christos Zoulas <christos@zoulas.com>
231         * print proper mime for crystal reports file
233         * print the last summary information of a cdf document, not the
234           first so that nested documents print the right info
236 2010-01-16  18:42  Charles Longeau <chl@tuxfamily.org>
238         * bring back some fixes from OpenBSD:
239                 - make gcc2 builds file
240                 - fix typos in a magic file comment
242 2009-11-17  18:35  Christos Zoulas <christos@zoulas.com>
244         * ctime/asctime can return NULL on some OS's although
245           they should not (Toshit Antani)
247 2009-09-14  13:49  Christos Zoulas <christos@zoulas.com>
249         * Centralize magic path handling routines and remove the
250           special-casing from file.c so that the python module for
251           example comes up with the same magic path (Fixes ~/.magic
252           handling) (from Gab)
254 2009-09-11  23:38  Reuben Thomas <rrt@sc3d.org>
256         * When magic argument is a directory, read the files in
257           strcmp-sorted order (fixes Debian bug #488562 and our own FIXME).
259 2009-09-11  13:11  Reuben Thomas <rrt@sc3d.org>
261         * Combine overlapping epoc and psion magic files into one (epoc).
263         * Add some more EPOC MIME types.
265 2009-08-19  15:55  Christos Zoulas <christos@zoulas.com>
267         * Fix 3 bugs (From Ian Darwin):
268             - file_showstr could move one past the end of the array
269             - parse_apple did not nul terminate the string in the overflow case
270             - parse_mime truncated the wrong string in the overflow case
272 2009-08-12  12:28  Robert Byrnes  <byrnes@wildpumpkin.net>
274         * Include Localstuff when compiling magic.
276 2009-07-15  10:05  Christos Zoulas <christos@zoulas.com>
278         * Fix logic for including mygetopts.h
280         * Make cdf.c compile again with debugging
282         * Add the necessary field handling for crystal reports files to work
284 2009-06-23 01:34  Reuben Thomas <rrt@sc3d.org>
286         * Stop "(if" identifying Lisp files, that's plain dumb!
288 2009-06-09 22:13  Reuben Thomas <rrt@sc3d.org>
290         * Add a couple of missing MP3 MIME types.
292 2009-05-27 23:00  Reuben Thomas <rrt@sc3d.org>
294         * Add full range of hash-bang tests for Python and Ruby.
296         * Add MIME types for Python and Ruby scripts.
298 2009-05-13  10:44  Christos Zoulas <christos@zoulas.com>
300         * off by one in parsing hw capabilities in elf
301           (Cheng Renquan)
303 2009-05-08  13:40  Christos Zoulas <christos@zoulas.com>
304         
305         * lint fixes and more from NetBSD
307 2009-05-06  10:25  Christos Zoulas <christos@zoulas.com>
309         * Avoid null dereference in cdf code (Drew Yao)
311         * More cdf bounds checks and overflow checks
313 2009-05-01  18:37  Christos Zoulas <christos@zoulas.com>
315         * Buffer overflow fixes from Drew Yao
317 2009-04-30  17:10  Christos Zoulas <christos@zoulas.com>
319         * Fix more cdf lossage. All the documents I have
320           right now print the correct information.
322 2009-03-27  18:43  Christos Zoulas <christos@zoulas.com>
324         * don't print \012- separators in the same magic entry 
325           if it consists of multiple magic printing lines.
327 2009-03-23  10:20  Christos Zoulas <christos@zoulas.com>
329         * Avoid file descriptor leak in compress code from
330           (Daniel Novotny)
332 2009-03-18  16:50  Christos Zoulas <christos@zoulas.com>
334         * Allow escaping of relation characters, so that we can say \^[A-Z]
335           and the ^ is not eaten as a relation char.
337         * Fix troff and fortran to their previous glory using
338           regex. This was broken since their removel from ascmagic.
340 2009-03-10  16:50  Christos Zoulas <christos@zoulas.com>
342         * don't use strlen in strndup() (Toby Peterson)
344 2009-03-10  7:45  Christos Zoulas <christos@zoulas.com>
346         * avoid c99 syntax.
348 2009-02-23 15:45  Christos Zoulas <christos@zoulas.com>
350         * make the cdf code use the buffer first if available,
351           and then the fd code.
353 2009-02-13 13:45  Christos Zoulas <christos@zoulas.com>
355         * look for struct option to determine if getopt.h is usable for IRIX.
357         * sanitize cdf document strings
359 2009-02-04 13:25  Christos Zoulas <christos@zoulas.com>
361         * fix OS/2 warnings.
363 2008-12-12 15:50  Christos Zoulas <christos@zoulas.com>
365         * fix initial offset calculation for non 4K sector files
367         * add loop limits to avoid DoS attacks by constructing
368           looping sector references.
370 2008-12-03 13:05  Christos Zoulas <christos@zoulas.com>
372         * fix memory botches on cdf file parsing.
374         * exit with non-zero value for any error, not just for the last
375           file processed.
377 2008-11-09 20:42  Charles Longeau <chl@tuxfamily.org>
379         * Replace all str{cpy,cat} functions with strl{cpy,cat}
380         * Ensure that strl{cpy,cat} are included in libmagic,
381           as needed.
383 2008-11-06 18:18  Christos Zoulas <christos@zoulas.com>
385         * Handle ID3 format files.
387 2008-11-06 23:00  Reuben Thomas <rrt@sc3d.org>
389         * Fix --mime, --mime-type and --mime-encoding under new scheme.
391         * Rename "ascii" to "text" and add "encoding" test.
393         * Return a precise ("utf-16le" or "utf-16be") MIME charset for
394           UTF-16.
396         * Fix error in comment caused by automatic indentation adding
397           words!
399 2008-11-06 10:35  Christos Zoulas <christos@astron.com>
401         * use memchr instead of strchr because the string
402           might not be NUL terminated (Scott MacVicar)
404 2008-11-03 07:31  Reuben Thomas <rrt@sc3d.org>
406         * Fix a printf with a non-literal format string.
408         * Fix formatting and punctuation of help for "--apple".
410 2008-10-30 11:00  Reuben Thomas <rrt@sc3d.org>
412         * Correct words counts in comments of struct magic.
414         * Fix handle_annotation to allow both Apple and MIME types to be
415           printed, and to return correct code if MIME type is
416           printed (1, not 0) or if there's an error (-1 not 1).
418         * Fix output of charset for MIME type (precede with semi-colon;
419           fixes Debian bug #501460).
421         * Fix potential attacks via conversion specifications in magic
422           strings.
424         * Add a FIXME for Debian bug #488562 (magic files should be
425           read in a defined order, by sorting the names).
427 2008-10-18 16:45  Christos Zoulas <christos@astron.com>
429         * Added APPLE file creator/type
431 2008-10-12 10:20  Christos Zoulas <christos@astron.com>
433         * Added CDF parsing
435 2008-10-09 16:40  Christos Zoulas <christos@astron.com>
437         * filesystem and msdos patches (Joerg Jenderek)
439 2008-10-09 13:20  Christos Zoulas <christos@astron.com>
441         * correct --exclude documentation issues: remove troff and fortran
442           and rename "token" to "tokens". (Randy McMurchy)
444 2008-10-01 10:30  Christos Zoulas <christos@astron.com>
446         * Read ~/.magic in addition to the default magic file not instead
447           of, as documented in the man page.
449 2008-09-10 21:30  Reuben Thomas  <rrt@sc3d.org>
451         * Comment out graphviz patterns, as they match too many files.
453 2008-08-30 12:54  Christos Zoulas <christos@astron.com>
455         * Don't eat trailing \n in magic enties.
457         * Cast defines to allow compilation using a c++ compiler.
459 2008-08-25 23:56  Reuben Thomas  <rrt@sc3d.org>
461         * Add text/x-lua MIME type for Lua scripts.
463         * Escape { in regex in graphviz patterns.
465 2008-07-26 00:59  Reuben Thomas  <rrt@sc3d.org>
467         * Add MIME types for special files.
469         * Use access to give more accurate information for files that
470           can't be opened.
472         * Add a TODO list.
474 2008-07-02 11:15  Christos Zoulas  <christos@astron.com>
476         * add !:strength op to adjust magic strength (experimental)
478 2008-06-16 21:41  Reuben Thomas  <rrt@sc3d.org>
480         * Fix automake error in configure.ac.
482         * Add MIME type for Psion Sketch files.
484 2008-06-05 08:59  Christos Zoulas  <christos@astron.com>
486         * Don't print warnings about bad namesize in stripped
487           binaries with PT_NOTE is still there, and the actual
488           note is gone (Jakub Jelinek)
490 2008-05-28 15:12  Robert Byrnes  <byrnes@wildpumpkin.net>
492         * magic/Magdir/elf:
493           Note invalid byte order for little-endian SPARC32PLUS.
494           Add SPARC V9 vendor extensions and memory model.
496         * src/elfclass.h:
497           Pass target machine to doshn (for Solaris hardware capabilities).
499         * src/readelf.c (doshn):
500           Add support for Solaris hardware/software capabilities.
502         * src/readelf.h:
503           Ditto.
505         * src/vasprintf.c (dispatch):
506           Add support for ll modifier.
508 2008-05-16 10:25  Christos Zoulas  <christos@astron.com>
510         * Fix compiler warnings.
512         * remove stray printf, and fix a vprintf bug. (Martin Dorey)
514 2008-05-06 00:13  Robert Byrnes  <byrnes@wildpumpkin.net>
516         * src/Makefile.am:
517           Ensure that getopt_long and [v]asprintf are included in libmagic,
518           as needed.
520           Remove unnecessary EXTRA_DIST.
522         * src/Makefile.in:
523           Rerun automake.
525         * src/vasprintf.c (dispatch):
526           Fix variable precision bug: be sure to step past '*'.
528         * src/vasprintf.c (core):
529           Remove unreachable code.
531         * src/apprentice.c (set_test_type):
532           Add cast to avoid compiler warning.
534 2008-04-22 23:45  Christos Zoulas  <christos@astron.com>
536         * Add magic submission guidelines (Abel Cheung)
538         * split msdos and windows magic (Abel Cheung)
540 2008-04-04 11:00  Christos Zoulas  <christos@astron.com>
542         * >= <= is not supported, so fix the magic and warn about it.
543           reported by: Thien-Thi Nguyen <ttn@gnuvola.org>
545 2008-03-27 16:16  Robert Byrnes  <byrnes@wildpumpkin.net>
547         * src/readelf.c (donote):
548           ELF core file command name/line bug fixes and enhancements:
550           Try larger offsets first to avoid false matches
551           from earlier data that happen to look like strings;
552           this primarily affected SunOS 5.x 32-bit Intel core files.
554           Add support for command line (instead of just short name)
555           for SunOS 5.x.
557           Add information about NT_PSINFO for SunOS 5.x.
559           Only trim whitespace from end of command line.
561 2007-02-11 01:36 Reuben Thomas <rrt@sc3d.org>
563         * Change strength of ! from MULT to 0, as it matches almost
564                   anything (Reuben Thomas)
566         * Debian fixes (Reuben Thomas)
568 2007-02-11 00:17 Reuben Thomas <rrt@sc3d.org>
570         * Clarify UTF-8 BOM message (Reuben Thomas)
572         * Add HTML comment to token list in names.h
574 2007-02-04 15:50 Christos Zoulas <christos@astron.com>
576         * Debian fixes (Reuben Thomas)
578 2007-02-04 11:31 Christos Zoulas <christos@astron.com>
580         * !:mime annotations in magic files (Reuben Thomas)
582 2007-01-29 15:35 Christos Zoulas <christos@astron.com>
584         * zero out utime/utimes structs (Gavin Atkinson)
586 2007-01-26 13:45 Christos Zoulas <christos@astron.com>
588         * reduce writable data from Diego "Flameeyes" Petten
590 2007-12-28 15:06 Christos Zoulas <christos@astron.com>
592         * strtof detection
594         * remove bogus regex magic that could cause a DoS
596         * better mismatch version message
598 2007-12-27 11:35 Christos Zoulas <christos@astron.com>
600         * bring back some fixes from OpenBSD
602         * treat ELF dynamic objects as executables
604         * fix gcc warnings
606 2007-12-01 19:55 Christos Zoulas <christos@astron.com>
608         * make sure we have zlib.h and libz to compile the builtin
609           decompress code
611 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
613         * float and double magic support (Behan Webster)
615 2007-10-28 20:48 Christos Zoulas <christos@astron.com>
617         * Convert fortran to a soft test (Reuben Thomas)
619 2007-10-23  5:25 Christos Zoulas <christos@astron.com>
621         * Add --with-filename, and --no-filename (Reuben Thomas)
623 2007-10-23  3:59 Christos Zoulas <christos@astron.com>
625         * Rest of the mime split (Reuben Thomas)
627         * Make usage message generated from the flags so that
628           they stay consistent (Reuben Thomas)
630 2007-10-20  3:06 Christos Zoulas <christos@astron.com>
632         * typo in comment, missing ifdef QUICK, remove unneeded code
633                 (Charles Longeau)
635 2007-10-17  3:33 Christos Zoulas <christos@astron.com>
637         * Fix problem printing -\012 in some entries
639         * Separate magic type and encoding flags (Reuben Thomas)
641 2007-10-09  3:55 Christos Zoulas <christos@astron.com>
643         * configure fix for int64 and strndup (Reuben Thomas)
645 2007-09-26  4:45 Christos Zoulas <christos@astron.com>
647         * Add magic_descriptor() function.
649         * Fix regression in elf reading code where the core name was
650           not being printed.
652         * Don't convert NUL's to spaces in {l,b}estring16 (Daniel Dawson)
654 2007-08-19  6:30 Christos Zoulas <christos@astron.com>
656         * Make mime format consistent so that it can
657           be easily parsed:
658               mimetype [charset=character-set] [encoding=encoding-mime-type]
660           Remove spurious extra text from some MIME type printouts
661           (mostly in is_tar).
663           Fix one case where -i produced nothing at all (for a 1-byte file,
664           which is now classed as application/octet-stream).
666           Remove 7/8bit classifications, since they were arbitrary
667           and not based on the file data.
669           This work was done by Reuben Thomas
671 2007-05-24 10:00 Christos Zoulas <christos@astron.com>
673         * Fix another integer overflow (Colin Percival)
675 2007-03-26 13:58 Christos Zoulas <christos@astron.com>
677         * make sure that all of struct magic_set is initialized appropriately
678           (Brett)
680 2007-03-25 17:44 Christos Zoulas <christos@astron.com>
682         * reset left bytes in the buffer (Dmitry V. Levin)
684         * compilation failed with COMPILE_ONLY and ENABLE_CONDITIONALS
685           (Peter Avalos)
687 2007-03-15 10:51 Christos Zoulas <christos@astron.com>
689         * fix fortran and nroff reversed tests (Dmitry V. Levin)
691         * fix exclude option (Dmitry V. Levin)
693 2007-02-08 17:30 Christos Zoulas <christos@astron.com>
695         * fix integer underflow in file_printf which can lead to
696           to exploitable heap overflow (Jean-Sebastien Guay-Lero)
698 2007-02-05 11:35 Christos Zoulas <christos@astron.com>
700         * make socket/pipe reading more robust
702 2007-01-25 16:01 Christos Zoulas <christos@astron.com>
704         * Centralize all the tests in file_buffer.
706         * Add exclude flag.
708 2007-01-18 05:29 Anon Ymous <do@not.spam.me>
710         * Move the "type" detection code from parse() into its own table
711           driven routine.  This avoids maintaining multiple lists in
712           file.h.
714         * Add an optional conditional field (ust before the type field).
715           This code is wrapped in "#ifdef ENABLE_CONDITIONALS" as it is
716           likely to go away.
718 2007-01-16 23:24 Anon Ymous <do@not.spam.me>
720         * Fix an initialization bug in check_mem().
722 2007-01-16 14:58 Anon Ymous <do@not.spam.me>
724         * Add a "default" type to print a message if nothing previously
725           matched at that level or since the last default at that
726           level.  This is useful for setting up switch-like statements.
727           It can also be used to do if/else constructions without a
728           redundant second test.
730         * Fix the "x" special case test so that one can test for that
731           string with "=x".
733         * Allow "search" to search the entire buffer if the "/N"
734           search count is missing.
736         * Make "regex" work!  It now starts its search at the
737           specified offset and takes an (optional) "/N" line count to
738           specify the search range; otherwise it searches to the end
739           of the file.  The match is now grabbed correctly for format
740           strings and the offset set to the end of the match.
742         * Add a "/s" flag to "regex" and "search" to set the offset to
743           the start of the match.  By default the offset is set to the
744           end of the match, as it is with other tests.  This is mostly
745           useful for "regex".
747         * Make "search", "string" and "pstring" use the same
748           file_strncmp() routine so that they support the same flags;
749           "bestring16" and "lestring16" call the same routine, but
750           with flags = 0.  Also add a "/C" flag (in analogy to "/c")
751           to ignore the case on uppercase (lowercase) characters in
752           the test string.
754         * Strict adherence to C style string escapes.  A warnings are
755           printed when compiling.  Note: previously "\a" was
756           incorrectly translated to 'a' instead of an <alert> (i.e.,
757           BELL, typically 0x07).
759         * Make this compile with "-Wall -Wextra" and all the warning
760           flags used with WARNS=4 in the NetBSD source.  Also make it
761           pass lint.
763         * Many "cleanups" and hopefully not too many new bugs!
765 2007-01-16 14:56 Anon Ymous <do@not.spam.me>
767         * make several more files compile with gcc warnings
768           on and also make them pass lint.
770 2007-01-16 14:54 Anon Ymous <do@not.spam.me>
772         * fix a puts()/putc() usage goof in file.c
774         * make file.c compile with gcc warnings and pass lint
776 2006-12-11 16:49 Christos Zoulas <christos@astron.com>
778         * fix byteswapping issue
780         * report the number of bytes we tried to
781           allocate when allocation fails
783         * add a few missed cases in the strength routine
785 2006-12-08 16:32 Christos Zoulas <christos@astron.com>
787         * store and print the line number of the magic
788           entry for debugging.
790         * if the magic entry did not print anything,
791           don't treat it as a match
793         * change the magic strength algorithm to take
794           into account the relationship op.
796         * fix a bug in search where we could accidentally
797           return a match.
799         * propagate the error return from match to
800           file_softmagic.
802 2006-11-25 13:35 Christos Zoulas <christos@astron.com>
804         * Don't store the current offset in the magic
805           struct, because it needs to be restored and
806           it was not done properly all the time. Bug
807           found by: Arkadiusz Miskiewicz
809         * Fix problem in the '\0' separator; and don't
810           print it as an additional separator; print
811           it as the only separator.
813 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>
818 2006-10-31 15:14 Christos Zoulas <christos@astron.com>
820         * Check offset before copying (Mike Frysinger)
822         * merge duplicated code
824         * add quad date support
826         * make sure that we nul terminate desc (Ryoji Kanai)
828         * don't process elf notes multiple times
830         * allow -z to report empty compressed files
832         * use calloc to initialize the ascii buffers (Jos van den Oever)
834 2006-06-08 11:11 Christos Zoulas <christos@astron.com>
836         * QNX fixes (Mike Gorchak)
838         * Add quad support.
840         * FIFO checks (Dr. Werner Fink)
842         * Linux ELF fixes (Dr. Werner Fink)
844         * Magic format checks (Dr. Werner Fink)
846         * Magic format function improvent (Karl Chen)
848 2006-05-03 11:11 Christos Zoulas <christos@astron.com>
850         * Pick up some elf changes and some constant fixes from SUSE
852         * Identify gnu tar vs. posix tar
854         * When keep going, don't print spurious newlines (Radek Vokál)
856 2006-04-01 12:02 Christos Zoulas <christos@astron.com>
858         * Use calloc instead of malloc (Mike Frysinger)
860         * Fix configure script to detect wctypes.h (Mike Frysinger)
862 2006-03-02 16:06 Christos Zoulas <christos@astron.com>
864         * Print empty if the file is (Mike Frysinger)
866         * Don't try to read past the end of the buffer (Mike Frysinger)
868         * Sort magic entries by strength [experimental]
870 2005-11-29 13:26 Christos Zoulas <christos@astron.com>
872         * Use iswprint() to convert the output string.
873             (Bastien Nocera)
875 2005-10-31 8:54 Christos Zoulas <christos@astron.com>
877         * Fix regression where the core info was not completely processed
878             (Radek Vokál)
880 2005-10-20 11:15 Christos Zoulas <christos@astron.com>
882         * Middle Endian magic (Diomidis Spinellis)
884 2005-10-17 11:15 Christos Zoulas <christos@astron.com>
886         * Open with O_BINARY for CYGWIN (Corinna Vinschen)
888         * Don't close stdin (Arkadiusz Miskiewicz)
890         * Look for note sections in non executables.
892 2005-09-20 13:33 Christos Zoulas <christos@astron.com>
894         * Don't print SVR4 Style in core files multiple times
895             (Radek Vokál)
897 2005-08-27 04:09 Christos Zoulas <christos@astron.com>
899         * Cygwin changes Corinna Vinschen
901 2005-08-18 09:53 Christos Zoulas <christos@astron.com>
903         * Remove erroreous mention of /etc/magic in the file man page
904           This is gentoo bug 101639. (Mike Frysinger)
906         * Cross-compile support and detection (Mike Frysinger)
908 2005-08-12 10:17 Christos Zoulas <christos@astron.com>
910         * Add -h flag and dereference symlinks if POSIXLY_CORRECT
911           is set.
913 2005-07-29 13:57 Christos Zoulas <christos@astron.com>
915         * Avoid search and regex buffer overflows (Kelledin)
917 2005-07-12 11:48 Christos Zoulas <christos@astron.com>
919         * Provide stub implementations for {v,}nsprintf() for older
920           OS's that don't have them.
921         * Change mbstate_t autoconf detection macro from AC_MBSTATE_T
922           to AC_TYPE_MBSTATE_T.
924 2005-06-25 11:48 Christos Zoulas <christos@astron.com>
926         * Dynamically allocate the string buffers and make the
927           default read size 256K.
929 2005-06-01 00:00 Joerg Sonnenberger <joerg@britannica.bec.de>
931         * Dragonfly ELF note support
933 2005-03-14 00:00 Giuliano Bertoletti <gb@symbolic.it>
935         * Avoid NULL pointer dereference in time conversion.
937 2005-03-06 00:00  Joerg Walter <jwalt@mail.garni.ch>
939         * Add indirect magic offset support, and search mode.
941 2005-01-12 00:00  Stepan Kasal  <kasal@ucw.cz>
943         * src/ascmagic.c (file_ascmagic): Fix three bugs about text files:
944           If a CRLF text file happens to have CR at offset HOWMANY - 1
945           (currently 0xffff), it should not be counted as CR line
946           terminator.
947           If a line has length exactly MAXLINELEN, it should not yet be
948           treated as a ``very long line'', as MAXLINELEN is ``longest sane
949           line length''.
950           With CRLF, the line length was not computed correctly, and even
951           lines of length MAXLINELEN - 1 were treated as ``very long''.
953 2004-12-07 14:15  Christos Zoulas  <christos@astron.com>
955         * bzip2 needs a lot of input buffer space on some files
956           before it can begin uncompressing. This makes file -z
957           fail on some bz2 files. Fix it by giving it a copy of
958           the file descriptor to read as much as it wants if we
959           have access to it. <christos@astron.com>
961 2004-11-24 12:39  Christos Zoulas  <christos@astron.com>
963         * Stack smash fix, and ELF more conservative reading.
964           Jakub Bogusz <qboosh@pld-linux.org>
966 2004-11-20 18:50  Christos Zoulas  <christos@astron.com>
968         * New FreeBSD version parsing code:
969           Jon Noack <noackjr@alumni.rice.edu>
971         * Hackish support for ucs16 strings <christos@astron.com>
973 2004-11-13 03:07  Christos Zoulas  <christos@astron.com>
975         * print the file name and line number in syntax errors.
977 2004 10-12 10:50  Christos Zoulas  <christos@astron.com>
979         * Fix stack overwriting on 0 length strings: Tim Waugh
980             <twaugh@redhat.com> Ned Ludd <solar@gentoo.org>
982 2004-09-27 11:30  Christos Zoulas  <christos@astron.com>
984         * Remove 3rd and 4th copyright clause; approved by Ian Darwin.
986         * Fix small memory leaks; caught by: Tamas Sarlos
987             <stamas@csillag.ilab.sztaki.hu>
989 2004-07-24 16:33  Christos Zoulas  <christos@astron.com>
991         * magic.mime update Danny Milosavljevic <danny.milo@gmx.net>
993         * FreeBSD version update Oliver Eikemeier <eikemeier@fillmore-labs.com>
995         * utime/utimes detection Ian Lance Taylor <ian@wasabisystems.com>
997         * errors reading elf magic Jakub Bogusz <qboosh@pld-linux.org>
999 2004-04-12 10:55  Christos Zoulas  <christos@astron.com>
1001         * make sure that magic formats match magic types during compilation
1003         * fix broken sgi magic file
1005 2004-04-06 20:36  Christos Zoulas  <christos@astron.com>
1007         * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com>
1009         * magic fixes
1011 2004-03-22 15:25  Christos Zoulas  <christos@astron.com>
1013         * Lots of mime fixes
1014           (Joerg Ostertag) <ostertag@rechengilde.de>
1016         * FreeBSD ELF version handling
1017           (Edwin Groothuis) <edwin@mavetju.org>
1019         * correct cleanup in all cases; don't just close the file.
1020           (Christos Zoulas) <christos@astron.com>
1022         * add gettext message catalogue support
1023           (Michael Piefel) <piefel@debian.org>
1025         * better printout for unreadable files
1026           (Michael Piefel) <piefel@debian.org>
1028         * compensate for missing MAXPATHLEN
1029           (Michael Piefel) <piefel@debian.org>
1031         * add wide character string length computation
1032           (Michael Piefel) <piefel@debian.org>
1034         * Avoid infinite loops caused by bad elf alignments
1035           or name and description note sizes. Reported by
1036           (Mikael Magnusson) <mmikael@comhem.se>
1038 2004-03-09 13:55  Christos Zoulas  <christos@astron.com>
1040         * Fix possible memory leak on error and add missing regfree
1041           (Dmitry V. Levin) <ldv@altlinux.org>
1043 2003-12-23 12:12  Christos Zoulas  <christos@astron.com>
1045         * fix -k flag (Maciej W. Rozycki)
1047 2003-11-18 14:10  Christos Zoulas  <christos@astron.com>
1049         * Try to give us much info as possible on corrupt elf files.
1050           (Willy Tarreau) <willy@w.ods.org>
1051         * Updated python bindings (Brett Funderburg)
1052            <brettf@deepfile.com>
1054 2003-11-11 15:03  Christos Zoulas  <christos@astron.com>
1056         * Include file.h first, because it includes config.h
1057           breaks largefile test macros otherwise.
1058           (Paul Eggert <eggert@CS.UCLA.EDU> via
1059            Lars Hecking <lhecking@nmrc.ie>)
1061 2003-10-14 21:39  Christos Zoulas  <christos@astron.com>
1063         * Python bindings (Brett Funderburg) <brettf@deepfile.com>
1064         * Don't lookup past the end of the buffer
1065           (Chad Hanson) <chanson@tcs-sec.com>
1066         * Add MAGIC_ERROR and api on magic_errno()
1068 2003-10-08 12:40  Christos Zoulas  <christos@astron.com>
1070         * handle error conditions from compile as fatal
1071           (Antti Kantee) <pooka@netbsd.org>
1072         * handle magic filename parsing sanely
1073         * more magic fixes.
1074         * fix a memory leak (Illes Marton) <illes.marton@balabit.hu>
1075         * describe magic file handling
1076           (Bryan Henderson) <bryanh@giraffe-data.com>
1078 2003-09-12 15:09  Christos Zoulas  <christos@astron.com>
1080         * update magic files.
1081         * remove largefile support from file.h; it breaks things on most OS's
1083 2003-08-10 10:25  Christos Zoulas  <christos@astron.com>
1085         * fix unmapping'ing of mmaped files.
1087 2003-07-10 12:03  Christos Zoulas  <christos@astron.com>
1089         * don't exit with -1 on error; always exit 1 (Marty Leisner)
1090         * restore utimes code.
1092 2003-06-10 17:03  Christos Zoulas  <christos@astron.com>
1094         * make sure we don't access uninitialized memory.
1095         * pass lint
1096         * #ifdef __cplusplus in magic.h
1098 2003-05-25 19:23  Christos Zoulas  <christos@astron.com>
1100         * rename cvs magic file to revision to deal with
1101           case insensitive filesystems.
1103 2003-05-23 17:03  Christos Zoulas  <christos@astron.com>
1105         * documentation fixes from Michael Piefel <piefel@debian.org>
1106         * magic fixes (various)
1107         * revert basename magic in .mgc name determination
1108         * buffer protection in uncompress,
1109           signness issues,
1110           close files
1111           Maciej W. Rozycki <macro@ds2.pg.gda.pl
1113 2003-04-21 20:12  Christos Zoulas  <christos@astron.com>
1115         * fix zsh magic
1117 2003-04-04 16:59  Christos Zoulas  <christos@astron.com>
1119         * fix operand sort order in string.
1121 2003-04-02 17:30  Christos Zoulas  <christos@astron.com>
1123         * cleanup namespace in magic.h
1125 2003-04-02 13:50  Christos Zoulas  <christos@astron.com>
1127         * Magic additions (Alex Ott)
1128         * Fix bug that broke VPATH compilation (Peter Breitenlohner)
1130 2003-03-28 16:03  Christos Zoulas  <christos@astron.com>
1132         * remove packed attribute from magic struct.
1133         * make the magic struct properly aligned.
1134         * bump version number of compiled files to 2.
1136 2003-03-27 13:10  Christos Zoulas  <christos@astron.com>
1138         * separate tar detection and run it before softmagic.
1139         * fix reversed symlink test.
1140         * fix version printing.
1141         * make separator a string instead of a char.
1142         * update manual page and sort options.
1144 2003-03-26 11:00  Christos Zoulas  <christos@astron.com>
1146         * Pass lint
1147         * make NULL in magic_file mean stdin
1148         * Fix "-" argument to file to pass NULL to magic_file
1149         * avoid pointer casts by using memcpy
1150         * rename magic_buf -> magic_buffer
1151         * keep only the first error
1152         * manual page: new sentence, new line
1153         * fix typo in api function (magic_buf -> magic_buffer)