file.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * file.h - definitions for file(1) program
  3. * @(#)$Id: file.h,v 1.29 1999/02/14 17:16:06 christos Exp $
  4. *
  5. * Copyright (c) Ian F. Darwin, 1987.
  6. * Written by Ian F. Darwin.
  7. *
  8. * This software is not subject to any license of the American Telephone
  9. * and Telegraph Company or of the Regents of the University of California.
  10. *
  11. * Permission is granted to anyone to use this software for any purpose on
  12. * any computer system, and to alter it and redistribute it freely, subject
  13. * to the following restrictions:
  14. *
  15. * 1. The author is not responsible for the consequences of use of this
  16. * software, no matter how awful, even if they arise from flaws in it.
  17. *
  18. * 2. The origin of this software must not be misrepresented, either by
  19. * explicit claim or by omission. Since few users ever read sources,
  20. * credits must appear in the documentation.
  21. *
  22. * 3. Altered versions must be plainly marked as such, and must not be
  23. * misrepresented as being the original software. Since few users
  24. * ever read sources, credits must appear in the documentation.
  25. *
  26. * 4. This notice may not be removed or altered.
  27. */
  28. #ifndef __file_h__
  29. #define __file_h__
  30. #ifdef HAVE_CONFIG_H
  31. #include <config.h>
  32. #endif
  33. typedef int int32;
  34. typedef unsigned int uint32;
  35. #ifndef HOWMANY
  36. # define HOWMANY 16384 /* how much of the file to look at */
  37. #endif
  38. #define MAXMAGIS 1000 /* max entries in /etc/magic */
  39. #define MAXDESC 50 /* max leng of text description */
  40. #define MAXstring 32 /* max leng of "string" types */
  41. struct magic {
  42. short flag;
  43. #define INDIR 1 /* if '>(...)' appears, */
  44. #define UNSIGNED 2 /* comparison is unsigned */
  45. #define ADD 4 /* if '>&' appears, */
  46. short cont_level; /* level of ">" */
  47. struct {
  48. unsigned char type; /* byte short long */
  49. int32 offset; /* offset from indirection */
  50. } in;
  51. int32 offset; /* offset to magic number */
  52. unsigned char reln; /* relation (0=eq, '>'=gt, etc) */
  53. unsigned char type; /* int, short, long or string. */
  54. char vallen; /* length of string value, if any */
  55. #define BYTE 1
  56. #define SHORT 2
  57. #define LONG 4
  58. #define STRING 5
  59. #define DATE 6
  60. #define BESHORT 7
  61. #define BELONG 8
  62. #define BEDATE 9
  63. #define LESHORT 10
  64. #define LELONG 11
  65. #define LEDATE 12
  66. union VALUETYPE {
  67. unsigned char b;
  68. unsigned short h;
  69. uint32 l;
  70. char s[MAXstring];
  71. unsigned char hs[2]; /* 2 bytes of a fixed-endian "short" */
  72. unsigned char hl[4]; /* 2 bytes of a fixed-endian "long" */
  73. } value; /* either number or string */
  74. uint32 mask; /* mask before comparison with value */
  75. char nospflag; /* supress space character */
  76. char desc[MAXDESC]; /* description */
  77. };
  78. #include <stdio.h> /* Include that here, to make sure __P gets defined */
  79. #ifndef __P
  80. # if defined(__STDC__) || defined(__cplusplus)
  81. # define __P(a) a
  82. # else
  83. # define __P(a) ()
  84. # define const
  85. # endif
  86. #endif
  87. extern int apprentice __P((const char *, int));
  88. extern int ascmagic __P((unsigned char *, int));
  89. extern void error __P((const char *, ...));
  90. extern void ckfputs __P((const char *, FILE *));
  91. struct stat;
  92. extern int fsmagic __P((const char *, struct stat *));
  93. extern int is_compress __P((const unsigned char *, int *));
  94. extern int is_tar __P((unsigned char *, int));
  95. extern void magwarn __P((const char *, ...));
  96. extern void mdump __P((struct magic *));
  97. extern void process __P((const char *, int));
  98. extern void showstr __P((FILE *, const char *, int));
  99. extern int softmagic __P((unsigned char *, int));
  100. extern int tryit __P((unsigned char *, int, int));
  101. extern int zmagic __P((unsigned char *, int));
  102. extern void ckfprintf __P((FILE *, const char *, ...));
  103. extern uint32 signextend __P((struct magic *, unsigned int32));
  104. extern int internatmagic __P((unsigned char *, int));
  105. extern void tryelf __P((int, unsigned char *, int));
  106. extern int errno; /* Some unixes don't define this.. */
  107. extern char *progname; /* the program name */
  108. extern const char *magicfile; /* name of the magic file */
  109. extern int lineno; /* current line number in magic file */
  110. extern struct magic *magic; /* array of magic entries */
  111. extern int nmagic; /* number of valid magic[]s */
  112. extern int debug; /* enable debugging? */
  113. extern int zflag; /* process compressed files? */
  114. extern int lflag; /* follow symbolic links? */
  115. extern int sflag; /* read/analyze block special files? */
  116. extern int optind; /* From getopt(3) */
  117. extern char *optarg;
  118. #ifndef HAVE_STRERROR
  119. extern int sys_nerr;
  120. extern char *sys_errlist[];
  121. #define strerror(e) \
  122. (((e) >= 0 && (e) < sys_nerr) ? sys_errlist[(e)] : "Unknown error")
  123. #endif
  124. #ifndef HAVE_STRTOUL
  125. #define strtoul(a, b, c) strtol(a, b, c)
  126. #endif
  127. #ifdef __STDC__
  128. #define FILE_RCSID(id) \
  129. static const char *rcsid(const char *p) { \
  130. return rcsid(p = id); \
  131. }
  132. #else
  133. #define FILE_RCSID(id) static char *rcsid[] = id;
  134. #endif
  135. #endif /* __file_h__ */