1 /* file.c - describe file type
2 *
3 * Copyright 2016 The Android Open Source Project
4 *
5 * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/file.html
6
7 USE_FILE(NEWTOY(file, "<1hL[!hL]", TOYFLAG_USR|TOYFLAG_BIN))
8
9 config FILE
10 bool "file"
11 default y
12 help
13 usage: file [-hL] [file...]
14
15 Examine the given files and describe their content types.
16
17 -h Don't follow symlinks (default)
18 -L Follow symlinks
19 */
20
21 #define FOR_file
22 #include "toys.h"
23
GLOBALS(int max_name_len;off_t len;)24 GLOBALS(
25 int max_name_len;
26
27 off_t len;
28 )
29
30 // We don't trust elf.h to be there, and two codepaths for 32/64 is awkward
31 // anyway, so calculate struct offsets manually. (It's a fixed ABI.)
32 static void do_elf_file(int fd)
33 {
34 int endian = toybuf[5], bits = toybuf[4], i, j, dynamic = 0, stripped = 1,
35 phentsize, phnum, shsize, shnum;
36 int64_t (*elf_int)(void *ptr, unsigned size);
37 // Values from include/linux/elf-em.h (plus arch/*/include/asm/elf.h)
38 // Names are linux/arch/ directory (sometimes before 32/64 bit merges)
39 struct {int val; char *name;} type[] = {{0x9026, "alpha"}, {93, "arc"},
40 {195, "arcv2"}, {40, "arm"}, {183, "arm64"}, {0x18ad, "avr32"},
41 {247, "bpf"}, {106, "blackfin"}, {140, "c6x"}, {23, "cell"}, {76, "cris"},
42 {252, "csky"}, {0x5441, "frv"}, {46, "h8300"}, {164, "hexagon"},
43 {50, "ia64"}, {88, "m32r"}, {0x9041, "m32r"}, {4, "m68k"}, {174, "metag"},
44 {189, "microblaze"}, {0xbaab, "microblaze-old"}, {8, "mips"},
45 {10, "mips-old"}, {89, "mn10300"}, {0xbeef, "mn10300-old"}, {113, "nios2"},
46 {92, "openrisc"}, {0x8472, "openrisc-old"}, {15, "parisc"}, {20, "ppc"},
47 {21, "ppc64"}, {243, "riscv"}, {22, "s390"}, {0xa390, "s390-old"},
48 {135, "score"}, {42, "sh"}, {2, "sparc"}, {18, "sparc8+"}, {43, "sparc9"},
49 {188, "tile"}, {191, "tilegx"}, {3, "386"}, {6, "486"}, {62, "x86-64"},
50 {94, "xtensa"}, {0xabc7, "xtensa-old"}
51 };
52 char *map = 0;
53 off_t phoff, shoff;
54
55 printf("ELF ");
56 elf_int = (endian==2) ? peek_be : peek_le;
57
58 // executable type
59 i = elf_int(toybuf+16, 2);
60 if (i == 1) printf("relocatable");
61 else if (i == 2) printf("executable");
62 else if (i == 3) printf("shared object");
63 else if (i == 4) printf("core dump");
64 else printf("(bad type %d)", i);
65 if (elf_int(toybuf+36+12*(bits==2), 4) & 0x8000) printf(" (fdpic)");
66 printf(", ");
67
68 // "64-bit"
69 if (bits == 1) printf("32-bit ");
70 else if (bits == 2) printf("64-bit ");
71 else {
72 printf("(bad class %d) ", bits);
73 bits = 0;
74 }
75
76 // "LSB"
77 if (endian == 1) printf("LSB ");
78 else if (endian == 2) printf("MSB ");
79 else {
80 printf("(bad endian %d) \n", endian);
81 endian = 0;
82 }
83
84 // e_machine, ala "x86", from big table above
85 j = elf_int(toybuf+18, 2);
86 for (i = 0; i<ARRAY_LEN(type); i++) if (j==type[i].val) break;
87 if (i<ARRAY_LEN(type)) printf("%s", type[i].name);
88 else printf("(unknown arch %d)", j);
89
90 bits--;
91 // If what we've seen so far doesn't seem consistent, bail.
92 if (!((bits&1)==bits && endian)) {
93 printf(", corrupt?\n");
94 return;
95 }
96
97 // Parsing ELF means following tables that may point to data earlier in
98 // the file, so sequential reading involves buffering unknown amounts of
99 // data. Just skip it if we can't mmap.
100 if (MAP_FAILED == (map = mmap(0, TT.len, PROT_READ, MAP_SHARED, fd, 0)))
101 goto bad;
102
103 // Stash what we need from the header; it's okay to reuse toybuf after this.
104 phentsize = elf_int(toybuf+42+12*bits, 2);
105 phnum = elf_int(toybuf+44+12*bits, 2);
106 phoff = elf_int(toybuf+28+4*bits, 4+4*bits);
107 shsize = elf_int(toybuf+46+12*bits, 2);
108 shnum = elf_int(toybuf+48+12*bits, 2);
109 shoff = elf_int(toybuf+32+8*bits, 4+4*bits);
110
111 // With binutils, phentsize seems to only be non-zero if phnum is non-zero.
112 // Such ELF files are rare, but do exist. (Android's crtbegin files, say.)
113 if (phnum && (phentsize != 32+24*bits)) {
114 printf(", corrupt phentsize %d?", phentsize);
115 goto bad;
116 }
117
118 // Parsing ELF means following tables that may point to data earlier in
119 // the file, so sequential reading involves buffering unknown amounts of
120 // data. Just skip it if we can't mmap.
121 if (MAP_FAILED == (map = mmap(0, TT.len, PROT_READ, MAP_SHARED, fd, 0)))
122 goto bad;
123
124 // We need to read the phdrs for dynamic vs static.
125 // (Note: fields got reordered for 64 bit)
126 if (phoff+phnum*phentsize>TT.len) goto bad;
127 for (i = 0; i<phnum; i++) {
128 char *phdr = map+phoff+i*phentsize;
129 int p_type = elf_int(phdr, 4);
130 long long p_offset, p_filesz;
131
132 if (p_type==2 /*PT_DYNAMIC*/) dynamic = 1;
133 if (p_type!=3 /*PT_INTERP*/ && p_type!=4 /*PT_NOTE*/) continue;
134
135 j = bits+1;
136 p_offset = elf_int(phdr+4*j, 4*j);
137 p_filesz = elf_int(phdr+16*j, 4*j);
138
139 if (p_type==3 /*PT_INTERP*/) {
140 if (p_offset+p_filesz>TT.len) goto bad;
141 printf(", dynamic (%.*s)", (int)p_filesz, map+p_offset);
142 }
143 }
144 if (!dynamic) printf(", static");
145
146 // We need to read the shdrs for stripped/unstripped and any notes.
147 // Notes are in program headers *and* section headers, but some files don't
148 // contain program headers, so we prefer to check here.
149 // (Note: fields got reordered for 64 bit)
150 if (shoff+i*shnum>TT.len) goto bad;
151 for (i = 0; i<shnum; i++) {
152 char *shdr = map+shoff+i*shsize;
153 int sh_type = elf_int(shdr+4, 4);
154 long sh_offset = elf_int(shdr+8+8*(bits+1), 4*(bits+1));
155 int sh_size = elf_int(shdr+8+12*(bits+1), 4);
156
157 if (sh_type == 2 /*SHT_SYMTAB*/) {
158 stripped = 0;
159 break;
160 } else if (sh_type == 7 /*SHT_NOTE*/) {
161 char *note = map+sh_offset;
162
163 // An ELF note is a sequence of entries, each consisting of an
164 // ndhr followed by n_namesz+n_descsz bytes of data (each of those
165 // rounded up to the next 4 bytes, without this being reflected in
166 // the header byte counts themselves).
167 while (sh_size >= 3*4) { // Don't try to read a truncated entry.
168 unsigned n_namesz, n_descsz, n_type, notesz;
169
170 if (sh_offset+sh_size>TT.len) goto bad;
171
172 n_namesz = elf_int(note, 4);
173 n_descsz = elf_int(note+4, 4);
174 n_type = elf_int(note+8, 4);
175 notesz = 3*4 + ((n_namesz+3)&~3) + ((n_descsz+3)&~3);
176
177 if (n_namesz==4 && !memcmp(note+12, "GNU", 4)) {
178 if (n_type==3 /*NT_GNU_BUILD_ID*/) {
179 if (n_descsz+16>sh_size) goto bad;
180 printf(", BuildID=");
181 for (j = 0; j < n_descsz; ++j) printf("%02x", note[16 + j]);
182 }
183 } else if (n_namesz==8 && !memcmp(note+12, "Android", 8)) {
184 if (n_type==1 /*.android.note.ident*/) {
185 if (n_descsz+24+64>sh_size) goto bad;
186 printf(", for Android %d", (int)elf_int(note+20, 4));
187 if (n_descsz > 24)
188 printf(", built by NDK %.64s (%.64s)", note+24, note+24+64);
189 }
190 }
191
192 note += notesz;
193 sh_size -= notesz;
194 }
195 }
196 }
197 printf(", %sstripped", stripped ? "" : "not ");
198 bad:
199 xputc('\n');
200
201 if (map && map != MAP_FAILED) munmap(map, TT.len);
202 }
203
do_regular_file(int fd,char * name)204 static void do_regular_file(int fd, char *name)
205 {
206 char *s;
207 int len, magic;
208
209 // zero through elf shnum, just in case
210 memset(toybuf, 0, 80);
211 if ((len = readall(fd, s = toybuf, sizeof(toybuf)))<0) perror_msg("%s", name);
212
213 if (!len) xputs("empty");
214 // 45 bytes: https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html
215 else if (len>=45 && strstart(&s, "\177ELF")) do_elf_file(fd);
216 else if (len>=8 && strstart(&s, "!<arch>\n")) xprintf("ar archive\n");
217 else if (len>28 && strstart(&s, "\x89PNG\x0d\x0a\x1a\x0a")) {
218 // PNG is big-endian: https://www.w3.org/TR/PNG/#7Integers-and-byte-order
219 int chunk_length = peek_be(s, 4);
220
221 xprintf("PNG image data");
222
223 // The IHDR chunk comes first: https://www.w3.org/TR/PNG/#11IHDR
224 s += 4;
225 if (chunk_length == 13 && strstart(&s, "IHDR")) {
226 // https://www.w3.org/TR/PNG/#6Colour-values
227 char *c = 0, *colors[] = {"grayscale", 0, "color RGB", "indexed color",
228 "grayscale with alpha", 0, "color RGBA"};
229
230 if (s[9]<ARRAY_LEN(colors)) c = colors[s[9]];
231 if (!c) c = "unknown";
232
233 xprintf(", %d x %d, %d-bit/%s, %sinterlaced", (int)peek_be(s, 4),
234 (int)peek_be(s+4, 4), s[8], c, s[12] ? "" : "non-");
235 }
236
237 xputc('\n');
238
239 // https://www.w3.org/Graphics/GIF/spec-gif89a.txt
240 } else if (len>16 && (strstart(&s, "GIF87a") || strstart(&s, "GIF89a")))
241 xprintf("GIF image data, %d x %d\n",
242 (int)peek_le(s, 2), (int)peek_le(s+8, 2));
243
244 // TODO: parsing JPEG for width/height is harder than GIF or PNG.
245 else if (len>32 && !memcmp(toybuf, "\xff\xd8", 2)) xputs("JPEG image data");
246
247 // https://en.wikipedia.org/wiki/Java_class_file#General_layout
248 else if (len>8 && strstart(&s, "\xca\xfe\xba\xbe"))
249 xprintf("Java class file, version %d.%d (Java 1.%d)\n",
250 (int)peek_be(s+2, 2), (int)peek_be(s, 2), (int)peek_be(s+2, 2)-44);
251
252 // https://source.android.com/devices/tech/dalvik/dex-format#dex-file-magic
253 else if (len>8 && strstart(&s, "dex\n") && s[3] == 0)
254 xprintf("Android dex file, version %s\n", s);
255
256 // https://people.freebsd.org/~kientzle/libarchive/man/cpio.5.txt
257 // the lengths for cpio are size of header + 9 bytes, since any valid
258 // cpio archive ends with a record for "TARGET!!!"
259 else if (len>85 && strstart(&s, "07070")) {
260 char *cpioformat = "unknown type";
261
262 if (toybuf[5] == '7') cpioformat = "pre-SVR4 or odc";
263 else if (toybuf[5] == '1') cpioformat = "SVR4 with no CRC";
264 else if (toybuf[5] == '2') cpioformat = "SVR4 with CRC";
265 xprintf("ASCII cpio archive (%s)\n", cpioformat);
266 } else if (len>33 && (magic=peek(&s,2), magic==0143561 || magic==070707)) {
267 if (magic == 0143561) printf("byte-swapped ");
268 xprintf("cpio archive\n");
269 // tar archive (ustar/pax or gnu)
270 } else if (len>500 && !strncmp(s+257, "ustar", 5))
271 xprintf("POSIX tar archive%s\n", strncmp(s+262," ",2)?"":" (GNU)");
272 // zip/jar/apk archive, ODF/OOXML document, or such
273 else if (len>5 && strstart(&s, "PK\03\04")) {
274 int ver = toybuf[4];
275
276 xprintf("Zip archive data");
277 if (ver) xprintf(", requires at least v%d.%d to extract", ver/10, ver%10);
278 xputc('\n');
279 } else if (len>4 && strstart(&s, "BZh") && isdigit(*s))
280 xprintf("bzip2 compressed data, block size = %c00k\n", *s);
281 else if (len>10 && strstart(&s, "\x1f\x8b")) xputs("gzip compressed data");
282 else if (len>32 && !memcmp(s+1, "\xfa\xed\xfe", 3)) {
283 int bit = s[0]=='\xce'?32:64;
284 char *what;
285
286 xprintf("Mach-O %d-bit ", bit);
287
288 if (s[4] == 7) what = (bit==32)?"x86":"x86-";
289 else if (s[4] == 12) what = "arm";
290 else if (s[4] == 18) what = "ppc";
291 else what = NULL;
292 if (what) xprintf("%s%s ", what, (bit==32)?"":"64");
293 else xprintf("(bad arch %d) ", s[4]);
294
295 if (s[12] == 1) what = "object";
296 else if (s[12] == 2) what = "executable";
297 else if (s[12] == 6) what = "shared library";
298 else what = NULL;
299 if (what) xprintf("%s\n", what);
300 else xprintf("(bad type %d)\n", s[9]);
301 } else if (len>36 && !memcmp(s, "OggS\x00\x02", 6)) {
302 xprintf("Ogg data");
303 // https://wiki.xiph.org/MIMETypesCodecs
304 if (!memcmp(s+28, "CELT ", 8)) xprintf(", celt audio");
305 else if (!memcmp(s+28, "CMML ", 8)) xprintf(", cmml text");
306 else if (!memcmp(s+28, "BBCD\0", 5)) xprintf(", dirac video");
307 else if (!memcmp(s+28, "\177FLAC", 5)) xprintf(", flac audio");
308 else if (!memcmp(s+28, "\x8bJNG\r\n\x1a\n", 8)) xprintf(", jng video");
309 else if (!memcmp(s+28, "\x80kate\0\0\0", 8)) xprintf(", kate text");
310 else if (!memcmp(s+28, "OggMIDI\0", 8)) xprintf(", midi text");
311 else if (!memcmp(s+28, "\x8aMNG\r\n\x1a\n", 8)) xprintf(", mng video");
312 else if (!memcmp(s+28, "OpusHead", 8)) xprintf(", opus audio");
313 else if (!memcmp(s+28, "PCM ", 8)) xprintf(", pcm audio");
314 else if (!memcmp(s+28, "\x89PNG\r\n\x1a\n", 8)) xprintf(", png video");
315 else if (!memcmp(s+28, "Speex ", 8)) xprintf(", speex audio");
316 else if (!memcmp(s+28, "\x80theora", 7)) xprintf(", theora video");
317 else if (!memcmp(s+28, "\x01vorbis", 7)) xprintf(", vorbis audio");
318 else if (!memcmp(s+28, "YUV4MPEG", 8)) xprintf(", yuv4mpeg video");
319 xputc('\n');
320 } else if (len>32 && !memcmp(s, "RIF", 3) && !memcmp(s+8, "WAVEfmt ", 8)) {
321 // https://en.wikipedia.org/wiki/WAV
322 int le = (s[3] == 'F');
323 int format = le ? peek_le(s+20,2) : peek_be(s+20,2);
324 int channels = le ? peek_le(s+22,2) : peek_be(s+22,2);
325 int hz = le ? peek_le(s+24,4) : peek_be(s+24,4);
326 int bits = le ? peek_le(s+34,2) : peek_be(s+34,2);
327
328 xprintf("WAV audio, %s, ", le ? "LE" : "BE");
329 if (bits != 0) xprintf("%d-bit, ", bits);
330 if (channels==1||channels==2) xprintf("%s, ", channels==1?"mono":"stereo");
331 else xprintf("%d-channel, ", channels);
332 xprintf("%d Hz, ", hz);
333 // See https://tools.ietf.org/html/rfc2361, though there appear to be bugs
334 // in the RFC. This assumes wikipedia's example files are more correct.
335 if (format == 0x01) xprintf("PCM");
336 else if (format == 0x03) xprintf("IEEE float");
337 else if (format == 0x06) xprintf("A-law");
338 else if (format == 0x07) xprintf("µ-law");
339 else if (format == 0x11) xprintf("ADPCM");
340 else if (format == 0x22) xprintf("Truespeech");
341 else if (format == 0x31) xprintf("GSM");
342 else if (format == 0x55) xprintf("MP3");
343 else if (format == 0x70) xprintf("CELP");
344 else if (format == 0xfffe) xprintf("extensible");
345 else xprintf("unknown format %d", format);
346 xputc('\n');
347 } else if (len>12 && !memcmp(s, "\x00\x01\x00\x00", 4)) {
348 xputs("TrueType font");
349 } else if (len>12 && !memcmp(s, "ttcf\x00", 5)) {
350 xprintf("TrueType font collection, version %d, %d fonts\n",
351 (int)peek_be(s+4, 2), (int)peek_be(s+8, 4));
352 } else if (len>4 && !memcmp(s, "BC\xc0\xde", 4)) {
353 xputs("LLVM IR bitcode");
354 } else if (strstart(&s, "-----BEGIN CERTIFICATE-----")) {
355 xputs("PEM certificate");
356
357 // https://msdn.microsoft.com/en-us/library/windows/desktop/ms680547(v=vs.85).aspx
358 } else if (len>0x70 && !memcmp(s, "MZ", 2) &&
359 (magic=peek_le(s+0x3c,4))<len-4 && !memcmp(s+magic, "\x50\x45\0\0", 4)) {
360 xprintf("MS PE32%s executable %s", (peek_le(s+magic+24, 2)==0x20b)?"+":"",
361 (peek_le(s+magic+22, 2)&0x2000)?"(DLL) ":"");
362 if (peek_le(s+magic+20, 2)>70) {
363 char *types[] = {0, "native", "GUI", "console", "OS/2", "driver", "CE",
364 "EFI", "EFI boot", "EFI runtime", "EFI ROM", "XBOX", 0, "boot"};
365 int type = peek_le(s+magic+92, 2);
366 char *name = (type>0 && type<ARRAY_LEN(types))?types[type]:0;
367
368 xprintf("(%s) ", name?name:"unknown");
369 }
370 xprintf("%s\n", (peek_le(s+magic+4, 2)==0x14c)?"x86":"x86-64");
371
372 // https://en.wikipedia.org/wiki/BMP_file_format
373 } else if (len > 0x32 && !memcmp(s, "BM", 2) && !memcmp(s+6, "\0\0\0\0", 4)) {
374 int w = peek_le(s+0x12,4), h = peek_le(s+0x16,4), bpp = peek_le(s+0x1c,2);
375
376 xprintf("BMP image, %d x %d, %d bpp\n", w, h, bpp);
377 } else {
378 char *what = 0;
379 int i, bytes;
380
381 // If shell script, report which interpreter
382 if (len>3 && strstart(&s, "#!")) {
383 // Whitespace is allowed between the #! and the interpreter
384 while (isspace(*s)) s++;
385 if (strstart(&s, "/usr/bin/env")) while (isspace(*s)) s++;
386 for (what = s; (s-toybuf)<len && !isspace(*s); s++);
387 strcpy(s, " script");
388
389 // Distinguish ASCII text, UTF-8 text, or data
390 } else for (i = 0; i<len; ++i) {
391 if (!(isprint(toybuf[i]) || isspace(toybuf[i]))) {
392 wchar_t wc;
393 if ((bytes = utf8towc(&wc, s+i, len-i))>0 && wcwidth(wc)>=0) {
394 i += bytes-1;
395 if (!what) what = "UTF-8 text";
396 } else {
397 what = "data";
398 break;
399 }
400 }
401 }
402 xputs(what ? what : "ASCII text");
403 }
404 }
405
file_main(void)406 void file_main(void)
407 {
408 char **arg;
409
410 for (arg = toys.optargs; *arg; ++arg) {
411 int name_len = strlen(*arg);
412
413 if (name_len > TT.max_name_len) TT.max_name_len = name_len;
414 }
415
416 // Can't use loopfiles here because it doesn't call function when can't open
417 for (arg = toys.optargs; *arg; arg++) {
418 char *name = *arg, *what = "cannot open";
419 struct stat sb;
420 int fd = !strcmp(name, "-");
421
422 xprintf("%s: %*s", name, (int)(TT.max_name_len - strlen(name)), "");
423
424 sb.st_size = 0;
425 if (fd || !((toys.optflags & FLAG_L) ? stat : lstat)(name, &sb)) {
426 if (fd || S_ISREG(sb.st_mode)) {
427 TT.len = sb.st_size;
428 // This test identifies an empty file we don't have permission to read
429 if (!fd && !sb.st_size) what = "empty";
430 else if ((fd = openro(name, O_RDONLY)) != -1) {
431 do_regular_file(fd, name);
432 if (fd) close(fd);
433 continue;
434 }
435 } else if (S_ISFIFO(sb.st_mode)) what = "fifo";
436 else if (S_ISBLK(sb.st_mode)) what = "block special";
437 else if (S_ISCHR(sb.st_mode)) what = "character special";
438 else if (S_ISDIR(sb.st_mode)) what = "directory";
439 else if (S_ISSOCK(sb.st_mode)) what = "socket";
440 else if (S_ISLNK(sb.st_mode)) what = "symbolic link";
441 else what = "unknown";
442 }
443
444 xputs(what);
445 }
446 }
447