file.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. /*
  2. * Copyright (c) Ian F. Darwin 1986-1995.
  3. * Software written by Ian F. Darwin and others;
  4. * maintained 1995-present by Christos Zoulas and others.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice immediately at the beginning of the file, without modification,
  11. * this list of conditions, and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  20. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. /*
  29. * file.h - definitions for file(1) program
  30. * @(#)$File: file.h,v 1.168 2015/04/09 20:01:41 christos Exp $
  31. */
  32. #ifndef __file_h__
  33. #define __file_h__
  34. #ifdef HAVE_CONFIG_H
  35. #include <config.h>
  36. #endif
  37. #ifdef WIN32
  38. #ifdef _WIN64
  39. #define SIZE_T_FORMAT "I64"
  40. #else
  41. #define SIZE_T_FORMAT ""
  42. #endif
  43. #define INT64_T_FORMAT "I64"
  44. #else
  45. #define SIZE_T_FORMAT "z"
  46. #define INT64_T_FORMAT "ll"
  47. #endif
  48. #include <stdio.h> /* Include that here, to make sure __P gets defined */
  49. #include <errno.h>
  50. #include <fcntl.h> /* For open and flags */
  51. #ifdef HAVE_STDINT_H
  52. #ifndef __STDC_LIMIT_MACROS
  53. #define __STDC_LIMIT_MACROS
  54. #endif
  55. #include <stdint.h>
  56. #endif
  57. #ifdef HAVE_INTTYPES_H
  58. #include <inttypes.h>
  59. #endif
  60. #include <regex.h>
  61. #include <time.h>
  62. #include <sys/types.h>
  63. #ifndef WIN32
  64. #include <sys/param.h>
  65. #endif
  66. /* Do this here and now, because struct stat gets re-defined on solaris */
  67. #include <sys/stat.h>
  68. #include <stdarg.h>
  69. #define ENABLE_CONDITIONALS
  70. #ifndef MAGIC
  71. #define MAGIC "/etc/magic"
  72. #endif
  73. #if defined(__EMX__) || defined (WIN32)
  74. #define PATHSEP ';'
  75. #else
  76. #define PATHSEP ':'
  77. #endif
  78. #define private static
  79. #if HAVE_VISIBILITY && !defined(WIN32)
  80. #define public __attribute__ ((__visibility__("default")))
  81. #ifndef protected
  82. #define protected __attribute__ ((__visibility__("hidden")))
  83. #endif
  84. #else
  85. #define public
  86. #ifndef protected
  87. #define protected
  88. #endif
  89. #endif
  90. #ifndef __arraycount
  91. #define __arraycount(a) (sizeof(a) / sizeof(a[0]))
  92. #endif
  93. #ifndef __GNUC_PREREQ__
  94. #ifdef __GNUC__
  95. #define __GNUC_PREREQ__(x, y) \
  96. ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || \
  97. (__GNUC__ > (x)))
  98. #else
  99. #define __GNUC_PREREQ__(x, y) 0
  100. #endif
  101. #endif
  102. #ifndef __GNUC__
  103. #ifndef __attribute__
  104. #define __attribute__(a)
  105. #endif
  106. #endif
  107. #ifndef MIN
  108. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  109. #endif
  110. #ifndef MAX
  111. #define MAX(a,b) (((a) > (b)) ? (a) : (b))
  112. #endif
  113. #ifndef HOWMANY
  114. # define HOWMANY (1024 * 1024) /* how much of the file to look at */
  115. #endif
  116. #define MAXMAGIS 8192 /* max entries in any one magic file
  117. or directory */
  118. #define MAXDESC 64 /* max len of text description/MIME type */
  119. #define MAXMIME 80 /* max len of text MIME type */
  120. #define MAXstring 64 /* max len of "string" types */
  121. #define MAGICNO 0xF11E041C
  122. #define VERSIONNO 13
  123. #define FILE_MAGICSIZE 312
  124. #define FILE_LOAD 0
  125. #define FILE_CHECK 1
  126. #define FILE_COMPILE 2
  127. #define FILE_LIST 3
  128. union VALUETYPE {
  129. uint8_t b;
  130. uint16_t h;
  131. uint32_t l;
  132. uint64_t q;
  133. uint8_t hs[2]; /* 2 bytes of a fixed-endian "short" */
  134. uint8_t hl[4]; /* 4 bytes of a fixed-endian "long" */
  135. uint8_t hq[8]; /* 8 bytes of a fixed-endian "quad" */
  136. char s[MAXstring]; /* the search string or regex pattern */
  137. unsigned char us[MAXstring];
  138. float f;
  139. double d;
  140. };
  141. struct magic {
  142. /* Word 1 */
  143. uint16_t cont_level; /* level of ">" */
  144. uint8_t flag;
  145. #define INDIR 0x01 /* if '(...)' appears */
  146. #define OFFADD 0x02 /* if '>&' or '>...(&' appears */
  147. #define INDIROFFADD 0x04 /* if '>&(' appears */
  148. #define UNSIGNED 0x08 /* comparison is unsigned */
  149. #define NOSPACE 0x10 /* suppress space character before output */
  150. #define BINTEST 0x20 /* test is for a binary type (set only
  151. for top-level tests) */
  152. #define TEXTTEST 0x40 /* for passing to file_softmagic */
  153. uint8_t factor;
  154. /* Word 2 */
  155. uint8_t reln; /* relation (0=eq, '>'=gt, etc) */
  156. uint8_t vallen; /* length of string value, if any */
  157. uint8_t type; /* comparison type (FILE_*) */
  158. uint8_t in_type; /* type of indirection */
  159. #define FILE_INVALID 0
  160. #define FILE_BYTE 1
  161. #define FILE_SHORT 2
  162. #define FILE_DEFAULT 3
  163. #define FILE_LONG 4
  164. #define FILE_STRING 5
  165. #define FILE_DATE 6
  166. #define FILE_BESHORT 7
  167. #define FILE_BELONG 8
  168. #define FILE_BEDATE 9
  169. #define FILE_LESHORT 10
  170. #define FILE_LELONG 11
  171. #define FILE_LEDATE 12
  172. #define FILE_PSTRING 13
  173. #define FILE_LDATE 14
  174. #define FILE_BELDATE 15
  175. #define FILE_LELDATE 16
  176. #define FILE_REGEX 17
  177. #define FILE_BESTRING16 18
  178. #define FILE_LESTRING16 19
  179. #define FILE_SEARCH 20
  180. #define FILE_MEDATE 21
  181. #define FILE_MELDATE 22
  182. #define FILE_MELONG 23
  183. #define FILE_QUAD 24
  184. #define FILE_LEQUAD 25
  185. #define FILE_BEQUAD 26
  186. #define FILE_QDATE 27
  187. #define FILE_LEQDATE 28
  188. #define FILE_BEQDATE 29
  189. #define FILE_QLDATE 30
  190. #define FILE_LEQLDATE 31
  191. #define FILE_BEQLDATE 32
  192. #define FILE_FLOAT 33
  193. #define FILE_BEFLOAT 34
  194. #define FILE_LEFLOAT 35
  195. #define FILE_DOUBLE 36
  196. #define FILE_BEDOUBLE 37
  197. #define FILE_LEDOUBLE 38
  198. #define FILE_BEID3 39
  199. #define FILE_LEID3 40
  200. #define FILE_INDIRECT 41
  201. #define FILE_QWDATE 42
  202. #define FILE_LEQWDATE 43
  203. #define FILE_BEQWDATE 44
  204. #define FILE_NAME 45
  205. #define FILE_USE 46
  206. #define FILE_CLEAR 47
  207. #define FILE_NAMES_SIZE 48 /* size of array to contain all names */
  208. #define IS_STRING(t) \
  209. ((t) == FILE_STRING || \
  210. (t) == FILE_PSTRING || \
  211. (t) == FILE_BESTRING16 || \
  212. (t) == FILE_LESTRING16 || \
  213. (t) == FILE_REGEX || \
  214. (t) == FILE_SEARCH || \
  215. (t) == FILE_INDIRECT || \
  216. (t) == FILE_NAME || \
  217. (t) == FILE_USE)
  218. #define FILE_FMT_NONE 0
  219. #define FILE_FMT_NUM 1 /* "cduxXi" */
  220. #define FILE_FMT_STR 2 /* "s" */
  221. #define FILE_FMT_QUAD 3 /* "ll" */
  222. #define FILE_FMT_FLOAT 4 /* "eEfFgG" */
  223. #define FILE_FMT_DOUBLE 5 /* "eEfFgG" */
  224. /* Word 3 */
  225. uint8_t in_op; /* operator for indirection */
  226. uint8_t mask_op; /* operator for mask */
  227. #ifdef ENABLE_CONDITIONALS
  228. uint8_t cond; /* conditional type */
  229. #else
  230. uint8_t dummy;
  231. #endif
  232. uint8_t factor_op;
  233. #define FILE_FACTOR_OP_PLUS '+'
  234. #define FILE_FACTOR_OP_MINUS '-'
  235. #define FILE_FACTOR_OP_TIMES '*'
  236. #define FILE_FACTOR_OP_DIV '/'
  237. #define FILE_FACTOR_OP_NONE '\0'
  238. #define FILE_OPS "&|^+-*/%"
  239. #define FILE_OPAND 0
  240. #define FILE_OPOR 1
  241. #define FILE_OPXOR 2
  242. #define FILE_OPADD 3
  243. #define FILE_OPMINUS 4
  244. #define FILE_OPMULTIPLY 5
  245. #define FILE_OPDIVIDE 6
  246. #define FILE_OPMODULO 7
  247. #define FILE_OPS_MASK 0x07 /* mask for above ops */
  248. #define FILE_UNUSED_1 0x08
  249. #define FILE_UNUSED_2 0x10
  250. #define FILE_UNUSED_3 0x20
  251. #define FILE_OPINVERSE 0x40
  252. #define FILE_OPINDIRECT 0x80
  253. #ifdef ENABLE_CONDITIONALS
  254. #define COND_NONE 0
  255. #define COND_IF 1
  256. #define COND_ELIF 2
  257. #define COND_ELSE 3
  258. #endif /* ENABLE_CONDITIONALS */
  259. /* Word 4 */
  260. uint32_t offset; /* offset to magic number */
  261. /* Word 5 */
  262. int32_t in_offset; /* offset from indirection */
  263. /* Word 6 */
  264. uint32_t lineno; /* line number in magic file */
  265. /* Word 7,8 */
  266. union {
  267. uint64_t _mask; /* for use with numeric and date types */
  268. struct {
  269. uint32_t _count; /* repeat/line count */
  270. uint32_t _flags; /* modifier flags */
  271. } _s; /* for use with string types */
  272. } _u;
  273. #define num_mask _u._mask
  274. #define str_range _u._s._count
  275. #define str_flags _u._s._flags
  276. /* Words 9-16 */
  277. union VALUETYPE value; /* either number or string */
  278. /* Words 17-32 */
  279. char desc[MAXDESC]; /* description */
  280. /* Words 33-52 */
  281. char mimetype[MAXMIME]; /* MIME type */
  282. /* Words 53-54 */
  283. char apple[8]; /* APPLE CREATOR/TYPE */
  284. /* Words 55-63 */
  285. char ext[64]; /* Popular extensions */
  286. };
  287. #define BIT(A) (1 << (A))
  288. #define STRING_COMPACT_WHITESPACE BIT(0)
  289. #define STRING_COMPACT_OPTIONAL_WHITESPACE BIT(1)
  290. #define STRING_IGNORE_LOWERCASE BIT(2)
  291. #define STRING_IGNORE_UPPERCASE BIT(3)
  292. #define REGEX_OFFSET_START BIT(4)
  293. #define STRING_TEXTTEST BIT(5)
  294. #define STRING_BINTEST BIT(6)
  295. #define PSTRING_1_BE BIT(7)
  296. #define PSTRING_1_LE BIT(7)
  297. #define PSTRING_2_BE BIT(8)
  298. #define PSTRING_2_LE BIT(9)
  299. #define PSTRING_4_BE BIT(10)
  300. #define PSTRING_4_LE BIT(11)
  301. #define REGEX_LINE_COUNT BIT(11)
  302. #define PSTRING_LEN \
  303. (PSTRING_1_BE|PSTRING_2_LE|PSTRING_2_BE|PSTRING_4_LE|PSTRING_4_BE)
  304. #define PSTRING_LENGTH_INCLUDES_ITSELF BIT(12)
  305. #define STRING_TRIM BIT(13)
  306. #define CHAR_COMPACT_WHITESPACE 'W'
  307. #define CHAR_COMPACT_OPTIONAL_WHITESPACE 'w'
  308. #define CHAR_IGNORE_LOWERCASE 'c'
  309. #define CHAR_IGNORE_UPPERCASE 'C'
  310. #define CHAR_REGEX_OFFSET_START 's'
  311. #define CHAR_TEXTTEST 't'
  312. #define CHAR_TRIM 'T'
  313. #define CHAR_BINTEST 'b'
  314. #define CHAR_PSTRING_1_BE 'B'
  315. #define CHAR_PSTRING_1_LE 'B'
  316. #define CHAR_PSTRING_2_BE 'H'
  317. #define CHAR_PSTRING_2_LE 'h'
  318. #define CHAR_PSTRING_4_BE 'L'
  319. #define CHAR_PSTRING_4_LE 'l'
  320. #define CHAR_PSTRING_LENGTH_INCLUDES_ITSELF 'J'
  321. #define STRING_IGNORE_CASE (STRING_IGNORE_LOWERCASE|STRING_IGNORE_UPPERCASE)
  322. #define STRING_DEFAULT_RANGE 100
  323. #define INDIRECT_RELATIVE BIT(0)
  324. #define CHAR_INDIRECT_RELATIVE 'r'
  325. /* list of magic entries */
  326. struct mlist {
  327. struct magic *magic; /* array of magic entries */
  328. uint32_t nmagic; /* number of entries in array */
  329. void *map; /* internal resources used by entry */
  330. struct mlist *next, *prev;
  331. };
  332. #ifdef __cplusplus
  333. #define CAST(T, b) static_cast<T>(b)
  334. #define RCAST(T, b) reinterpret_cast<T>(b)
  335. #else
  336. #define CAST(T, b) (T)(b)
  337. #define RCAST(T, b) (T)(b)
  338. #endif
  339. struct level_info {
  340. int32_t off;
  341. int got_match;
  342. #ifdef ENABLE_CONDITIONALS
  343. int last_match;
  344. int last_cond; /* used for error checking by parse() */
  345. #endif
  346. };
  347. #define MAGIC_SETS 2
  348. struct magic_set {
  349. struct mlist *mlist[MAGIC_SETS]; /* list of regular entries */
  350. struct cont {
  351. size_t len;
  352. struct level_info *li;
  353. } c;
  354. struct out {
  355. char *buf; /* Accumulation buffer */
  356. char *pbuf; /* Printable buffer */
  357. } o;
  358. uint32_t offset;
  359. int error;
  360. int flags; /* Control magic tests. */
  361. int event_flags; /* Note things that happened. */
  362. #define EVENT_HAD_ERR 0x01
  363. const char *file;
  364. size_t line; /* current magic line number */
  365. /* data for searches */
  366. struct {
  367. const char *s; /* start of search in original source */
  368. size_t s_len; /* length of search region */
  369. size_t offset; /* starting offset in source: XXX - should this be off_t? */
  370. size_t rm_len; /* match length */
  371. } search;
  372. /* FIXME: Make the string dynamically allocated so that e.g.
  373. strings matched in files can be longer than MAXstring */
  374. union VALUETYPE ms_value; /* either number or string */
  375. uint16_t indir_max;
  376. uint16_t name_max;
  377. uint16_t elf_shnum_max;
  378. uint16_t elf_phnum_max;
  379. uint16_t elf_notes_max;
  380. #define FILE_INDIR_MAX 15
  381. #define FILE_NAME_MAX 30
  382. #define FILE_ELF_SHNUM_MAX 32768
  383. #define FILE_ELF_PHNUM_MAX 128
  384. #define FILE_ELF_NOTES_MAX 256
  385. };
  386. /* Type for Unicode characters */
  387. typedef unsigned long unichar;
  388. struct stat;
  389. #define FILE_T_LOCAL 1
  390. #define FILE_T_WINDOWS 2
  391. protected const char *file_fmttime(uint64_t, int, char *);
  392. protected struct magic_set *file_ms_alloc(int);
  393. protected void file_ms_free(struct magic_set *);
  394. protected int file_buffer(struct magic_set *, int, const char *, const void *,
  395. size_t);
  396. protected int file_fsmagic(struct magic_set *, const char *, struct stat *);
  397. protected int file_pipe2file(struct magic_set *, int, const void *, size_t);
  398. protected int file_vprintf(struct magic_set *, const char *, va_list)
  399. __attribute__((__format__(__printf__, 2, 0)));
  400. protected size_t file_printedlen(const struct magic_set *);
  401. protected int file_replace(struct magic_set *, const char *, const char *);
  402. protected int file_printf(struct magic_set *, const char *, ...)
  403. __attribute__((__format__(__printf__, 2, 3)));
  404. protected int file_reset(struct magic_set *);
  405. protected int file_tryelf(struct magic_set *, int, const unsigned char *,
  406. size_t);
  407. protected int file_trycdf(struct magic_set *, int, const unsigned char *,
  408. size_t);
  409. #if HAVE_FORK
  410. protected int file_zmagic(struct magic_set *, int, const char *,
  411. const unsigned char *, size_t);
  412. #endif
  413. protected int file_ascmagic(struct magic_set *, const unsigned char *, size_t,
  414. int);
  415. protected int file_ascmagic_with_encoding(struct magic_set *,
  416. const unsigned char *, size_t, unichar *, size_t, const char *,
  417. const char *, int);
  418. protected int file_encoding(struct magic_set *, const unsigned char *, size_t,
  419. unichar **, size_t *, const char **, const char **, const char **);
  420. protected int file_is_tar(struct magic_set *, const unsigned char *, size_t);
  421. protected int file_softmagic(struct magic_set *, const unsigned char *, size_t,
  422. uint16_t, uint16_t *, int, int);
  423. protected int file_apprentice(struct magic_set *, const char *, int);
  424. protected int buffer_apprentice(struct magic_set *, struct magic **,
  425. size_t *, size_t);
  426. protected int file_magicfind(struct magic_set *, const char *, struct mlist *);
  427. protected uint64_t file_signextend(struct magic_set *, struct magic *,
  428. uint64_t);
  429. protected void file_badread(struct magic_set *);
  430. protected void file_badseek(struct magic_set *);
  431. protected void file_oomem(struct magic_set *, size_t);
  432. protected void file_error(struct magic_set *, int, const char *, ...)
  433. __attribute__((__format__(__printf__, 3, 4)));
  434. protected void file_magerror(struct magic_set *, const char *, ...)
  435. __attribute__((__format__(__printf__, 2, 3)));
  436. protected void file_magwarn(struct magic_set *, const char *, ...)
  437. __attribute__((__format__(__printf__, 2, 3)));
  438. protected void file_mdump(struct magic *);
  439. protected void file_showstr(FILE *, const char *, size_t);
  440. protected size_t file_mbswidth(const char *);
  441. protected const char *file_getbuffer(struct magic_set *);
  442. protected ssize_t sread(int, void *, size_t, int);
  443. protected int file_check_mem(struct magic_set *, unsigned int);
  444. protected int file_looks_utf8(const unsigned char *, size_t, unichar *,
  445. size_t *);
  446. protected size_t file_pstring_length_size(const struct magic *);
  447. protected size_t file_pstring_get_length(const struct magic *, const char *);
  448. protected char * file_printable(char *, size_t, const char *);
  449. #ifdef __EMX__
  450. protected int file_os2_apptype(struct magic_set *, const char *, const void *,
  451. size_t);
  452. #endif /* __EMX__ */
  453. #if defined(HAVE_LOCALE_H)
  454. #include <locale.h>
  455. #endif
  456. #if defined(HAVE_XLOCALE_H)
  457. #include <xlocale.h>
  458. #endif
  459. typedef struct {
  460. const char *pat;
  461. #if defined(HAVE_NEWLOCALE) && defined(HAVE_USELOCALE) && defined(HAVE_FREELOCALE)
  462. #define USE_C_LOCALE
  463. locale_t old_lc_ctype;
  464. locale_t c_lc_ctype;
  465. #endif
  466. int rc;
  467. regex_t rx;
  468. } file_regex_t;
  469. protected int file_regcomp(file_regex_t *, const char *, int);
  470. protected int file_regexec(file_regex_t *, const char *, size_t, regmatch_t *,
  471. int);
  472. protected void file_regfree(file_regex_t *);
  473. protected void file_regerror(file_regex_t *, int, struct magic_set *);
  474. typedef struct {
  475. char *buf;
  476. uint32_t offset;
  477. } file_pushbuf_t;
  478. protected file_pushbuf_t *file_push_buffer(struct magic_set *);
  479. protected char *file_pop_buffer(struct magic_set *, file_pushbuf_t *);
  480. #ifndef COMPILE_ONLY
  481. extern const char *file_names[];
  482. extern const size_t file_nnames;
  483. #endif
  484. #ifndef HAVE_STRERROR
  485. extern int sys_nerr;
  486. extern char *sys_errlist[];
  487. #define strerror(e) \
  488. (((e) >= 0 && (e) < sys_nerr) ? sys_errlist[(e)] : "Unknown error")
  489. #endif
  490. #ifndef HAVE_STRTOUL
  491. #define strtoul(a, b, c) strtol(a, b, c)
  492. #endif
  493. #ifndef HAVE_PREAD
  494. ssize_t pread(int, void *, size_t, off_t);
  495. #endif
  496. #ifndef HAVE_VASPRINTF
  497. int vasprintf(char **, const char *, va_list);
  498. #endif
  499. #ifndef HAVE_ASPRINTF
  500. int asprintf(char **, const char *, ...);
  501. #endif
  502. #ifndef HAVE_STRLCPY
  503. size_t strlcpy(char *, const char *, size_t);
  504. #endif
  505. #ifndef HAVE_STRLCAT
  506. size_t strlcat(char *, const char *, size_t);
  507. #endif
  508. #ifndef HAVE_STRCASESTR
  509. char *strcasestr(const char *, const char *);
  510. #endif
  511. #ifndef HAVE_GETLINE
  512. ssize_t getline(char **, size_t *, FILE *);
  513. ssize_t getdelim(char **, size_t *, int, FILE *);
  514. #endif
  515. #ifndef HAVE_CTIME_R
  516. char *ctime_r(const time_t *, char *);
  517. #endif
  518. #ifndef HAVE_ASCTIME_R
  519. char *asctime_r(const struct tm *, char *);
  520. #endif
  521. #ifndef HAVE_GMTIME_R
  522. struct tm *gmtime_r(const time_t *, struct tm *);
  523. #endif
  524. #ifndef HAVE_LOCALTIME_R
  525. struct tm *localtime_r(const time_t *, struct tm *);
  526. #endif
  527. #ifndef HAVE_FMTCHECK
  528. const char *fmtcheck(const char *, const char *)
  529. __attribute__((__format_arg__(2)));
  530. #endif
  531. #if defined(HAVE_MMAP) && defined(HAVE_SYS_MMAN_H) && !defined(QUICK)
  532. #define QUICK
  533. #endif
  534. #ifndef O_BINARY
  535. #define O_BINARY 0
  536. #endif
  537. #ifndef __cplusplus
  538. #if defined(__GNUC__) && (__GNUC__ >= 3)
  539. #define FILE_RCSID(id) \
  540. static const char rcsid[] __attribute__((__used__)) = id;
  541. #else
  542. #define FILE_RCSID(id) \
  543. static const char *rcsid(const char *p) { \
  544. return rcsid(p = id); \
  545. }
  546. #endif
  547. #else
  548. #define FILE_RCSID(id)
  549. #endif
  550. #ifndef __RCSID
  551. #define __RCSID(a)
  552. #endif
  553. #endif /* __file_h__ */