]>
git.saurik.com Git - apple/file_cmds.git/blob - file/file.c
bb0007e77d070cb3e55b2ec4af9bd3831d9d9a31
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
24 /* $OpenBSD: file.c,v 1.5 1997/02/09 23:58:22 millert Exp $ */
27 * file - find type of a file or files - main program.
29 * Copyright (c) Ian F. Darwin, 1987.
30 * Written by Ian F. Darwin.
32 * This software is not subject to any license of the American Telephone
33 * and Telegraph Company or of the Regents of the University of California.
35 * Permission is granted to anyone to use this software for any purpose on
36 * any computer system, and to alter it and redistribute it freely, subject
37 * to the following restrictions:
39 * 1. The author is not responsible for the consequences of use of this
40 * software, no matter how awful, even if they arise from flaws in it.
42 * 2. The origin of this software must not be misrepresented, either by
43 * explicit claim or by omission. Since few users ever read sources,
44 * credits must appear in the documentation.
46 * 3. Altered versions must be plainly marked as such, and must not be
47 * misrepresented as being the original software. Since few users
48 * ever read sources, credits must appear in the documentation.
50 * 4. This notice may not be removed or altered.
54 static char *moduleid
= "$OpenBSD: file.c,v 1.5 1997/02/09 23:58:22 millert Exp $";
61 #include <sys/types.h>
62 #include <sys/param.h> /* for MAXPATHLEN */
64 #include <fcntl.h> /* for open() */
65 #if (__COHERENT__ >= 0x420)
66 # include <sys/utime.h>
69 # include <sys/time.h>
74 #include <unistd.h> /* for read() */
76 #include <netinet/in.h> /* for byte swapping */
78 #include "patchlevel.h"
82 #include <mach-o/fat.h>
83 #endif /* BUILTIN_FAT */
86 # define USAGE "Usage: %s [-vczL] [-f namefile] [-m magicfiles] file...\n"
88 # define USAGE "Usage: %s [-vcz] [-f namefile] [-m magicfiles] file...\n"
92 # define MAGIC "/etc/magic"
95 int /* Global command-line options */
96 debug
= 0, /* debugging */
97 lflag
= 0, /* follow Symlinks (BSD only) */
98 zflag
= 0; /* follow (uncompress) compressed files */
100 int /* Misc globals */
101 nmagic
= 0; /* number of valid magic[]s */
103 struct magic
*magic
; /* array of magic entries */
105 char *magicfile
; /* where magic be found */
107 char *progname
; /* used throughout */
108 int lineno
; /* line number in the magic file */
111 static void unwrap
__P((char *fn
));
113 static int byteconv4
__P((int, int, int));
114 static short byteconv2
__P((int, int, int));
118 * main - parse arguments and handle options
126 int check
= 0, didsomefiles
= 0, errflg
= 0, ret
= 0, app
= 0;
128 if ((progname
= strrchr(argv
[0], '/')) != NULL
)
133 if (!(magicfile
= getenv("MAGIC")))
136 while ((c
= getopt(argc
, argv
, "vcdf:Lm:z")) != -1)
139 (void) fprintf(stdout
, "%s-%d.%d\n", progname
,
140 FILE_VERSION_MAJOR
, patchlevel
);
150 ret
= apprentice(magicfile
, check
);
176 (void) fprintf(stderr
, USAGE
, progname
);
181 ret
= apprentice(magicfile
, check
);
187 if (optind
== argc
) {
189 (void)fprintf(stderr
, USAGE
, progname
);
195 for (wid
= 0, i
= optind
; i
< argc
; i
++) {
196 nw
= strlen(argv
[i
]);
200 for (; optind
< argc
; optind
++)
201 process(argv
[optind
], wid
);
209 * unwrap -- read a file of filenames, do each one.
215 char buf
[MAXPATHLEN
];
219 if (strcmp("-", fn
) == 0) {
223 if ((f
= fopen(fn
, "r")) == NULL
) {
224 error("Cannot open `%s' (%s).\n", fn
, strerror(errno
));
228 while (fgets(buf
, sizeof(buf
), f
) != NULL
) {
229 cwid
= strlen(buf
) - 1;
237 while (fgets(buf
, sizeof(buf
), f
) != NULL
) {
238 buf
[strlen(buf
)-1] = '\0';
250 * from 4 byte quantity to convert
251 * same whether to perform byte swapping
252 * big_endian whether we are a big endian host
255 byteconv4(from
, same
, big_endian
)
262 else if (big_endian
) /* lsb -> msb conversion on msb */
270 retval
.c
[0] = tmpval
.c
[3];
271 retval
.c
[1] = tmpval
.c
[2];
272 retval
.c
[2] = tmpval
.c
[1];
273 retval
.c
[3] = tmpval
.c
[0];
278 return ntohl(from
); /* msb -> lsb conversion on lsb */
283 * Same as byteconv4, but for shorts
286 byteconv2(from
, same
, big_endian
)
293 else if (big_endian
) /* lsb -> msb conversion on msb */
300 tmpval
.s
= (short) from
;
301 retval
.c
[0] = tmpval
.c
[1];
302 retval
.c
[1] = tmpval
.c
[0];
307 return ntohs(from
); /* msb -> lsb conversion on lsb */
312 * process - process input file
320 static const char stdname
[] = "standard input";
321 unsigned char buf
[HOWMANY
+1]; /* one extra for terminating '\0' */
323 int nbytes
= 0; /* number of bytes read from a datafile */
327 #endif /* BUILTIN_FAT */
329 if (strcmp("-", inname
) == 0) {
330 if (fstat(0, &sb
)<0) {
331 error("cannot fstat `%s' (%s).\n", stdname
,
339 (void) printf("%s:%*s ", inname
,
340 (int) (wid
- strlen(inname
)), "");
342 if (inname
!= stdname
) {
344 * first try judging the file based on its filesystem status
346 if (fsmagic(inname
, &sb
) != 0) {
351 if ((fd
= open(inname
, O_RDONLY
)) < 0) {
352 /* We can't open it, but we were able to stat it. */
353 if (sb
.st_mode
& 0002) ckfputs("writeable, ", stdout
);
354 if (sb
.st_mode
& 0111) ckfputs("executable, ", stdout
);
355 ckfprintf(stdout
, "can't read `%s' (%s).\n",
356 inname
, strerror(errno
));
363 * try looking at the first HOWMANY bytes
365 if ((nbytes
= read(fd
, (char *)buf
, HOWMANY
)) == -1) {
366 error("read failed (%s).\n", strerror(errno
));
371 ckfputs("empty", stdout
);
373 buf
[nbytes
++] = '\0'; /* null-terminate it */
374 match
= tryit(buf
, nbytes
, zflag
);
378 if (match
== 's' && nbytes
> 5)
379 tryelf(fd
, buf
, nbytes
);
382 if (inname
!= stdname
) {
385 * Try to restore access, modification times if read it.
388 struct timeval utsbuf
[2];
389 utsbuf
[0].tv_sec
= sb
.st_atime
;
390 utsbuf
[1].tv_sec
= sb
.st_mtime
;
392 (void) utimes(inname
, utsbuf
); /* don't care if loses */
394 struct utimbuf utbuf
;
396 utbuf
.actime
= sb
.st_atime
;
397 utbuf
.modtime
= sb
.st_mtime
;
398 (void) utime(inname
, &utbuf
); /* don't care if loses */
403 memcpy(&magic
, buf
, sizeof(unsigned long));
404 #ifdef __BIG_ENDIAN__
405 if(nbytes
>= sizeof(unsigned long) && magic
== FAT_MAGIC
)
406 #endif /* __BIG_ENDIAN__ */
407 #ifdef __LITTLE_ENDIAN__
408 if(nbytes
>= sizeof(unsigned long) && magic
== FAT_CIGAM
)
409 #endif /* __LITTLE_ENDIAN__ */
410 tryfat(inname
, fd
, (char *)buf
, nbytes
);
411 #endif /* BUILTIN_FAT */
415 (void) putchar('\n');
420 tryit(buf
, nb
, zflag
)
424 /* try compression stuff */
425 if (zflag
&& zmagic(buf
, nb
))
428 /* try tests in /etc/magic (or surrogate magic file) */
429 if (softmagic(buf
, nb
))
432 /* try known keywords, check whether it is ASCII */
433 if (ascmagic(buf
, nb
))
436 /* see if it's international language text */
437 if (internatmagic(buf
, nb
))
440 /* abandon hope, all ye who remain here */
441 ckfputs("data", stdout
);