1994-09-03 19:16:28 +00:00
|
|
|
/*
|
|
|
|
* file - find type of a file or files - main program.
|
|
|
|
*
|
|
|
|
* Copyright (c) Ian F. Darwin, 1987.
|
|
|
|
* Written by Ian F. Darwin.
|
|
|
|
*
|
|
|
|
* This software is not subject to any license of the American Telephone
|
|
|
|
* and Telegraph Company or of the Regents of the University of California.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any purpose on
|
|
|
|
* any computer system, and to alter it and redistribute it freely, subject
|
|
|
|
* to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The author is not responsible for the consequences of use of this
|
|
|
|
* software, no matter how awful, even if they arise from flaws in it.
|
|
|
|
*
|
|
|
|
* 2. The origin of this software must not be misrepresented, either by
|
|
|
|
* explicit claim or by omission. Since few users ever read sources,
|
|
|
|
* credits must appear in the documentation.
|
|
|
|
*
|
|
|
|
* 3. Altered versions must be plainly marked as such, and must not be
|
|
|
|
* misrepresented as being the original software. Since few users
|
|
|
|
* ever read sources, credits must appear in the documentation.
|
|
|
|
*
|
|
|
|
* 4. This notice may not be removed or altered.
|
|
|
|
*/
|
2002-09-16 05:54:26 +00:00
|
|
|
|
|
|
|
#include "file.h"
|
1994-09-03 19:16:28 +00:00
|
|
|
#include <stdlib.h>
|
2000-11-26 21:26:20 +00:00
|
|
|
#include <unistd.h>
|
1994-09-03 19:16:28 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/param.h> /* for MAXPATHLEN */
|
|
|
|
#include <fcntl.h> /* for open() */
|
2000-11-05 08:33:55 +00:00
|
|
|
#ifdef RESTORE_TIME
|
|
|
|
# if (__COHERENT__ >= 0x420)
|
|
|
|
# include <sys/utime.h>
|
1997-03-18 18:00:03 +00:00
|
|
|
# else
|
2000-11-05 08:33:55 +00:00
|
|
|
# ifdef USE_UTIMES
|
|
|
|
# include <sys/time.h>
|
|
|
|
# else
|
|
|
|
# include <utime.h>
|
|
|
|
# endif
|
1997-03-18 18:00:03 +00:00
|
|
|
# endif
|
1996-01-23 12:29:07 +00:00
|
|
|
#endif
|
2000-11-05 08:33:55 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
1994-09-03 19:16:28 +00:00
|
|
|
#include <unistd.h> /* for read() */
|
2000-11-05 08:33:55 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LOCALE_H
|
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
1994-09-03 19:16:28 +00:00
|
|
|
|
2002-09-16 05:54:26 +00:00
|
|
|
#ifdef HAVE_GETOPT_H
|
|
|
|
#include <getopt.h> /* for long options (is this portable?)*/
|
|
|
|
#endif
|
|
|
|
|
1997-03-18 18:00:03 +00:00
|
|
|
#include <netinet/in.h> /* for byte swapping */
|
1996-01-23 12:29:07 +00:00
|
|
|
|
2000-11-05 08:33:55 +00:00
|
|
|
#include "patchlevel.h"
|
|
|
|
|
|
|
|
#ifndef lint
|
2003-02-28 05:19:36 +00:00
|
|
|
FILE_RCSID("@(#)$Id: file.c,v 1.69 2003/02/27 20:47:46 christos Exp $")
|
2000-11-05 08:33:55 +00:00
|
|
|
#endif /* lint */
|
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
|
|
|
|
#ifdef S_IFLNK
|
2001-07-30 03:09:46 +00:00
|
|
|
# define USAGE "Usage: %s [-bciknsvzL] [-f namefile] [-m magicfiles] file...\n"
|
1994-09-03 19:16:28 +00:00
|
|
|
#else
|
2001-07-30 03:09:46 +00:00
|
|
|
# define USAGE "Usage: %s [-bciknsvz] [-f namefile] [-m magicfiles] file...\n"
|
1994-09-03 19:16:28 +00:00
|
|
|
#endif
|
|
|
|
|
2002-09-16 05:54:26 +00:00
|
|
|
#ifdef __EMX__
|
|
|
|
static char *apptypeName = NULL;
|
|
|
|
int os2_apptype (const char *fn, char *buf, int nb);
|
|
|
|
#endif /* __EMX__ */
|
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
#ifndef MAGIC
|
|
|
|
# define MAGIC "/etc/magic"
|
|
|
|
#endif
|
|
|
|
|
2000-11-05 08:33:55 +00:00
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
#define MAXPATHLEN 512
|
|
|
|
#endif
|
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
int /* Global command-line options */
|
|
|
|
debug = 0, /* debugging */
|
|
|
|
lflag = 0, /* follow Symlinks (BSD only) */
|
2000-11-05 08:33:55 +00:00
|
|
|
bflag = 0, /* brief output format */
|
|
|
|
zflag = 0, /* follow (uncompress) compressed files */
|
|
|
|
sflag = 0, /* read block special files */
|
|
|
|
iflag = 0,
|
2003-02-15 18:53:17 +00:00
|
|
|
nopad = 0, /* Don't pad output */
|
|
|
|
nobuffer = 0, /* Do not buffer stdout */
|
2000-11-05 08:33:55 +00:00
|
|
|
kflag = 0; /* Keep going after the first match */
|
1994-09-03 19:16:28 +00:00
|
|
|
|
|
|
|
int /* Misc globals */
|
|
|
|
nmagic = 0; /* number of valid magic[]s */
|
|
|
|
|
|
|
|
struct magic *magic; /* array of magic entries */
|
|
|
|
|
2001-07-30 03:09:46 +00:00
|
|
|
const char *magicfile = 0; /* where the magic is */
|
2000-11-05 08:33:55 +00:00
|
|
|
const char *default_magicfile = MAGIC;
|
1994-09-03 19:16:28 +00:00
|
|
|
|
2003-02-15 18:53:17 +00:00
|
|
|
char separator = ':'; /* Default field separator */
|
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
char *progname; /* used throughout */
|
|
|
|
int lineno; /* line number in the magic file */
|
|
|
|
|
|
|
|
|
2002-09-16 05:54:26 +00:00
|
|
|
static void unwrap(char *fn);
|
|
|
|
static void usage(void);
|
2003-02-15 18:53:17 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2002-09-16 05:54:26 +00:00
|
|
|
static void help(void);
|
|
|
|
#endif
|
1997-03-18 18:00:03 +00:00
|
|
|
#if 0
|
2002-09-16 05:54:26 +00:00
|
|
|
static int byteconv4(int, int, int);
|
|
|
|
static short byteconv2(int, int, int);
|
1997-03-18 18:00:03 +00:00
|
|
|
#endif
|
1994-09-03 19:16:28 +00:00
|
|
|
|
2002-09-16 05:54:26 +00:00
|
|
|
int main(int, char *[]);
|
2000-11-05 08:33:55 +00:00
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
/*
|
|
|
|
* main - parse arguments and handle options
|
|
|
|
*/
|
|
|
|
int
|
2002-09-16 05:54:26 +00:00
|
|
|
main(int argc, char **argv)
|
1994-09-03 19:16:28 +00:00
|
|
|
{
|
|
|
|
int c;
|
2001-03-25 18:37:04 +00:00
|
|
|
int action = 0, didsomefiles = 0, errflg = 0, ret = 0, app = 0;
|
2001-07-30 03:09:46 +00:00
|
|
|
char *mime, *home, *usermagic;
|
|
|
|
struct stat sb;
|
2003-02-15 18:53:17 +00:00
|
|
|
#define OPTSTRING "bcdf:F:ikm:nNsvzCL"
|
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2002-09-16 05:54:26 +00:00
|
|
|
int longindex;
|
|
|
|
static struct option long_options[] =
|
|
|
|
{
|
|
|
|
{"version", 0, 0, 'v'},
|
|
|
|
{"help", 0, 0, 0},
|
|
|
|
{"brief", 0, 0, 'b'},
|
|
|
|
{"checking-printout", 0, 0, 'c'},
|
|
|
|
{"debug", 0, 0, 'd'},
|
|
|
|
{"files-from", 1, 0, 'f'},
|
2003-02-15 18:53:17 +00:00
|
|
|
{"separator", 1, 0, 'F'},
|
2002-09-16 05:54:26 +00:00
|
|
|
{"mime", 0, 0, 'i'},
|
|
|
|
{"keep-going", 0, 0, 'k'},
|
|
|
|
#ifdef S_IFLNK
|
|
|
|
{"dereference", 0, 0, 'L'},
|
|
|
|
#endif
|
|
|
|
{"magic-file", 1, 0, 'm'},
|
|
|
|
{"uncompress", 0, 0, 'z'},
|
|
|
|
{"no-buffer", 0, 0, 'n'},
|
2003-02-15 18:53:17 +00:00
|
|
|
{"no-pad", 0, 0, 'N'},
|
2002-09-16 05:54:26 +00:00
|
|
|
{"special-files", 0, 0, 's'},
|
|
|
|
{"compile", 0, 0, 'C'},
|
|
|
|
{0, 0, 0, 0},
|
|
|
|
};
|
|
|
|
#endif
|
2000-11-05 08:33:55 +00:00
|
|
|
|
|
|
|
#ifdef LC_CTYPE
|
|
|
|
setlocale(LC_CTYPE, ""); /* makes islower etc work for other langs */
|
|
|
|
#endif
|
1994-09-03 19:16:28 +00:00
|
|
|
|
2002-09-16 05:54:26 +00:00
|
|
|
#ifdef __EMX__
|
|
|
|
/* sh-like wildcard expansion! Shouldn't hurt at least ... */
|
|
|
|
_wildcard(&argc, &argv);
|
|
|
|
#endif
|
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
if ((progname = strrchr(argv[0], '/')) != NULL)
|
|
|
|
progname++;
|
|
|
|
else
|
|
|
|
progname = argv[0];
|
|
|
|
|
2001-07-30 03:09:46 +00:00
|
|
|
magicfile = default_magicfile;
|
|
|
|
if ((usermagic = getenv("MAGIC")) != NULL)
|
|
|
|
magicfile = usermagic;
|
|
|
|
else
|
2001-10-08 22:50:54 +00:00
|
|
|
if ((home = getenv("HOME")) != NULL) {
|
2001-07-30 03:09:46 +00:00
|
|
|
if ((usermagic = malloc(strlen(home) + 8)) != NULL) {
|
|
|
|
(void)strcpy(usermagic, home);
|
|
|
|
(void)strcat(usermagic, "/.magic");
|
|
|
|
if (stat(usermagic, &sb)<0)
|
|
|
|
free(usermagic);
|
|
|
|
else
|
|
|
|
magicfile = usermagic;
|
|
|
|
}
|
|
|
|
}
|
1996-01-23 12:29:07 +00:00
|
|
|
|
2003-02-15 18:53:17 +00:00
|
|
|
#ifndef HAVE_GETOPT_LONG
|
2002-09-16 05:54:26 +00:00
|
|
|
while ((c = getopt(argc, argv, OPTSTRING)) != -1)
|
|
|
|
#else
|
|
|
|
while ((c = getopt_long(argc, argv, OPTSTRING, long_options,
|
|
|
|
&longindex)) != -1)
|
|
|
|
#endif
|
1994-09-03 19:16:28 +00:00
|
|
|
switch (c) {
|
2003-02-15 18:53:17 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2002-09-16 05:54:26 +00:00
|
|
|
case 0 :
|
|
|
|
if (longindex == 1)
|
|
|
|
help();
|
|
|
|
break;
|
|
|
|
#endif
|
2000-11-05 08:33:55 +00:00
|
|
|
case 'b':
|
|
|
|
++bflag;
|
|
|
|
break;
|
1994-09-03 19:16:28 +00:00
|
|
|
case 'c':
|
2001-03-25 18:37:04 +00:00
|
|
|
action = CHECK;
|
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
action = COMPILE;
|
1994-09-03 19:16:28 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
++debug;
|
|
|
|
break;
|
|
|
|
case 'f':
|
1996-01-23 12:29:07 +00:00
|
|
|
if (!app) {
|
2001-03-25 18:37:04 +00:00
|
|
|
ret = apprentice(magicfile, action);
|
|
|
|
if (action)
|
1996-01-23 12:29:07 +00:00
|
|
|
exit(ret);
|
|
|
|
app = 1;
|
|
|
|
}
|
1994-09-03 19:16:28 +00:00
|
|
|
unwrap(optarg);
|
|
|
|
++didsomefiles;
|
|
|
|
break;
|
2003-02-15 18:53:17 +00:00
|
|
|
case 'F':
|
|
|
|
separator = *optarg;
|
|
|
|
break;
|
2000-11-05 08:33:55 +00:00
|
|
|
case 'i':
|
|
|
|
iflag++;
|
2001-07-30 03:09:46 +00:00
|
|
|
if ((mime = malloc(strlen(magicfile) + 6)) != NULL) {
|
2000-11-05 08:33:55 +00:00
|
|
|
(void)strcpy(mime, magicfile);
|
|
|
|
(void)strcat(mime, ".mime");
|
|
|
|
magicfile = mime;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
kflag = 1;
|
1994-09-03 19:16:28 +00:00
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
magicfile = optarg;
|
|
|
|
break;
|
2000-11-05 08:33:55 +00:00
|
|
|
case 'n':
|
|
|
|
++nobuffer;
|
|
|
|
break;
|
2003-02-15 18:53:17 +00:00
|
|
|
case 'N':
|
|
|
|
++nopad;
|
|
|
|
break;
|
2000-11-05 08:33:55 +00:00
|
|
|
case 's':
|
|
|
|
sflag++;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
(void) fprintf(stdout, "%s-%d.%d\n", progname,
|
|
|
|
FILE_VERSION_MAJOR, patchlevel);
|
|
|
|
(void) fprintf(stdout, "magic file from %s\n",
|
|
|
|
magicfile);
|
|
|
|
return 1;
|
1994-09-03 19:16:28 +00:00
|
|
|
case 'z':
|
|
|
|
zflag++;
|
|
|
|
break;
|
2000-11-05 08:33:55 +00:00
|
|
|
#ifdef S_IFLNK
|
|
|
|
case 'L':
|
|
|
|
++lflag;
|
|
|
|
break;
|
|
|
|
#endif
|
1994-09-03 19:16:28 +00:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
errflg++;
|
|
|
|
break;
|
|
|
|
}
|
1996-01-23 12:29:07 +00:00
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
if (errflg) {
|
2001-03-25 18:37:04 +00:00
|
|
|
usage();
|
1994-09-03 19:16:28 +00:00
|
|
|
}
|
|
|
|
|
1996-01-23 12:29:07 +00:00
|
|
|
if (!app) {
|
2001-03-25 18:37:04 +00:00
|
|
|
ret = apprentice(magicfile, action);
|
|
|
|
if (action)
|
1996-01-23 12:29:07 +00:00
|
|
|
exit(ret);
|
|
|
|
app = 1;
|
|
|
|
}
|
1994-09-03 19:16:28 +00:00
|
|
|
|
|
|
|
if (optind == argc) {
|
|
|
|
if (!didsomefiles) {
|
2001-03-25 18:37:04 +00:00
|
|
|
usage();
|
1994-09-03 19:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int i, wid, nw;
|
|
|
|
for (wid = 0, i = optind; i < argc; i++) {
|
|
|
|
nw = strlen(argv[i]);
|
|
|
|
if (nw > wid)
|
|
|
|
wid = nw;
|
|
|
|
}
|
|
|
|
for (; optind < argc; optind++)
|
|
|
|
process(argv[optind], wid);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* unwrap -- read a file of filenames, do each one.
|
|
|
|
*/
|
|
|
|
static void
|
2002-09-16 05:54:26 +00:00
|
|
|
unwrap(char *fn)
|
1994-09-03 19:16:28 +00:00
|
|
|
{
|
|
|
|
char buf[MAXPATHLEN];
|
|
|
|
FILE *f;
|
|
|
|
int wid = 0, cwid;
|
|
|
|
|
1997-03-18 18:00:03 +00:00
|
|
|
if (strcmp("-", fn) == 0) {
|
|
|
|
f = stdin;
|
|
|
|
wid = 1;
|
|
|
|
} else {
|
|
|
|
if ((f = fopen(fn, "r")) == NULL) {
|
|
|
|
error("Cannot open `%s' (%s).\n", fn, strerror(errno));
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
1994-09-03 19:16:28 +00:00
|
|
|
|
1997-03-18 18:00:03 +00:00
|
|
|
while (fgets(buf, MAXPATHLEN, f) != NULL) {
|
|
|
|
cwid = strlen(buf) - 1;
|
|
|
|
if (cwid > wid)
|
|
|
|
wid = cwid;
|
|
|
|
}
|
1994-09-03 19:16:28 +00:00
|
|
|
|
1997-03-18 18:00:03 +00:00
|
|
|
rewind(f);
|
|
|
|
}
|
1994-09-03 19:16:28 +00:00
|
|
|
|
|
|
|
while (fgets(buf, MAXPATHLEN, f) != NULL) {
|
|
|
|
buf[strlen(buf)-1] = '\0';
|
|
|
|
process(buf, wid);
|
2000-11-05 08:33:55 +00:00
|
|
|
if(nobuffer)
|
|
|
|
(void) fflush(stdout);
|
1994-09-03 19:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
(void) fclose(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-03-18 18:00:03 +00:00
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* byteconv4
|
|
|
|
* Input:
|
|
|
|
* from 4 byte quantity to convert
|
|
|
|
* same whether to perform byte swapping
|
|
|
|
* big_endian whether we are a big endian host
|
|
|
|
*/
|
|
|
|
static int
|
2002-09-16 05:54:26 +00:00
|
|
|
byteconv4(int from, int same, int big_endian)
|
1997-03-18 18:00:03 +00:00
|
|
|
{
|
2000-11-05 08:33:55 +00:00
|
|
|
if (same)
|
|
|
|
return from;
|
|
|
|
else if (big_endian) { /* lsb -> msb conversion on msb */
|
|
|
|
union {
|
|
|
|
int i;
|
|
|
|
char c[4];
|
|
|
|
} retval, tmpval;
|
|
|
|
|
|
|
|
tmpval.i = from;
|
|
|
|
retval.c[0] = tmpval.c[3];
|
|
|
|
retval.c[1] = tmpval.c[2];
|
|
|
|
retval.c[2] = tmpval.c[1];
|
|
|
|
retval.c[3] = tmpval.c[0];
|
|
|
|
|
|
|
|
return retval.i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return ntohl(from); /* msb -> lsb conversion on lsb */
|
1997-03-18 18:00:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* byteconv2
|
|
|
|
* Same as byteconv4, but for shorts
|
|
|
|
*/
|
|
|
|
static short
|
2002-09-16 05:54:26 +00:00
|
|
|
byteconv2(int from, int same, int big_endian)
|
1997-03-18 18:00:03 +00:00
|
|
|
{
|
2000-11-05 08:33:55 +00:00
|
|
|
if (same)
|
|
|
|
return from;
|
|
|
|
else if (big_endian) { /* lsb -> msb conversion on msb */
|
|
|
|
union {
|
|
|
|
short s;
|
|
|
|
char c[2];
|
|
|
|
} retval, tmpval;
|
|
|
|
|
|
|
|
tmpval.s = (short) from;
|
|
|
|
retval.c[0] = tmpval.c[1];
|
|
|
|
retval.c[1] = tmpval.c[0];
|
|
|
|
|
|
|
|
return retval.s;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return ntohs(from); /* msb -> lsb conversion on lsb */
|
1997-03-18 18:00:03 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
/*
|
|
|
|
* process - process input file
|
|
|
|
*/
|
|
|
|
void
|
2002-09-16 05:54:26 +00:00
|
|
|
process(const char *inname, int wid)
|
1994-09-03 19:16:28 +00:00
|
|
|
{
|
|
|
|
int fd = 0;
|
|
|
|
static const char stdname[] = "standard input";
|
|
|
|
unsigned char buf[HOWMANY+1]; /* one extra for terminating '\0' */
|
|
|
|
struct stat sb;
|
|
|
|
int nbytes = 0; /* number of bytes read from a datafile */
|
1996-01-23 12:29:07 +00:00
|
|
|
char match = '\0';
|
1994-09-03 19:16:28 +00:00
|
|
|
|
|
|
|
if (strcmp("-", inname) == 0) {
|
|
|
|
if (fstat(0, &sb)<0) {
|
1996-01-23 12:29:07 +00:00
|
|
|
error("cannot fstat `%s' (%s).\n", stdname,
|
1994-09-03 19:16:28 +00:00
|
|
|
strerror(errno));
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
inname = stdname;
|
|
|
|
}
|
|
|
|
|
2000-11-05 08:33:55 +00:00
|
|
|
if (wid > 0 && !bflag)
|
2003-02-15 18:53:17 +00:00
|
|
|
(void) printf("%s%c%*s", inname, separator,
|
|
|
|
(int) (nopad ? 0 : 1 + (wid - strlen(inname))), "");
|
1994-09-03 19:16:28 +00:00
|
|
|
|
|
|
|
if (inname != stdname) {
|
2000-11-05 08:33:55 +00:00
|
|
|
/*
|
|
|
|
* first try judging the file based on its filesystem status
|
|
|
|
*/
|
|
|
|
if (fsmagic(inname, &sb) != 0) {
|
|
|
|
putchar('\n');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((fd = open(inname, O_RDONLY)) < 0) {
|
|
|
|
/* We can't open it, but we were able to stat it. */
|
2003-02-28 05:19:36 +00:00
|
|
|
if (sb.st_mode & 0002) ckfputs("writable, ", stdout);
|
2000-11-05 08:33:55 +00:00
|
|
|
if (sb.st_mode & 0111) ckfputs("executable, ", stdout);
|
|
|
|
ckfprintf(stdout, "can't read `%s' (%s).\n",
|
|
|
|
inname, strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
1994-09-03 19:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* try looking at the first HOWMANY bytes
|
|
|
|
*/
|
|
|
|
if ((nbytes = read(fd, (char *)buf, HOWMANY)) == -1) {
|
|
|
|
error("read failed (%s).\n", strerror(errno));
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
1996-01-23 12:29:07 +00:00
|
|
|
if (nbytes == 0)
|
2000-11-05 08:33:55 +00:00
|
|
|
ckfputs(iflag ? "application/x-empty" : "empty", stdout);
|
1994-09-03 19:16:28 +00:00
|
|
|
else {
|
|
|
|
buf[nbytes++] = '\0'; /* null-terminate it */
|
2002-09-16 05:54:26 +00:00
|
|
|
match = tryit(inname, buf, nbytes, zflag);
|
1996-01-23 12:29:07 +00:00
|
|
|
}
|
|
|
|
|
1997-03-18 18:00:03 +00:00
|
|
|
#ifdef BUILTIN_ELF
|
2000-11-05 08:33:55 +00:00
|
|
|
if (match == 's' && nbytes > 5) {
|
|
|
|
/*
|
|
|
|
* We matched something in the file, so this *might*
|
|
|
|
* be an ELF file, and the file is at least 5 bytes long,
|
|
|
|
* so if it's an ELF file it has at least one byte
|
|
|
|
* past the ELF magic number - try extracting information
|
|
|
|
* from the ELF headers that can't easily be extracted
|
|
|
|
* with rules in the magic file.
|
|
|
|
*/
|
1997-03-18 18:00:03 +00:00
|
|
|
tryelf(fd, buf, nbytes);
|
2000-11-05 08:33:55 +00:00
|
|
|
}
|
1996-01-23 12:29:07 +00:00
|
|
|
#endif
|
1994-09-03 19:16:28 +00:00
|
|
|
|
|
|
|
if (inname != stdname) {
|
1997-03-18 18:00:03 +00:00
|
|
|
#ifdef RESTORE_TIME
|
1994-09-03 19:16:28 +00:00
|
|
|
/*
|
|
|
|
* Try to restore access, modification times if read it.
|
2000-11-05 08:33:55 +00:00
|
|
|
* This is really *bad* because it will modify the status
|
|
|
|
* time of the file... And of course this will affect
|
|
|
|
* backup programs
|
1994-09-03 19:16:28 +00:00
|
|
|
*/
|
1997-03-18 18:00:03 +00:00
|
|
|
# ifdef USE_UTIMES
|
|
|
|
struct timeval utsbuf[2];
|
|
|
|
utsbuf[0].tv_sec = sb.st_atime;
|
|
|
|
utsbuf[1].tv_sec = sb.st_mtime;
|
|
|
|
|
|
|
|
(void) utimes(inname, utsbuf); /* don't care if loses */
|
|
|
|
# else
|
|
|
|
struct utimbuf utbuf;
|
|
|
|
|
1994-09-03 19:16:28 +00:00
|
|
|
utbuf.actime = sb.st_atime;
|
|
|
|
utbuf.modtime = sb.st_mtime;
|
|
|
|
(void) utime(inname, &utbuf); /* don't care if loses */
|
1997-03-18 18:00:03 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
1994-09-03 19:16:28 +00:00
|
|
|
(void) close(fd);
|
|
|
|
}
|
|
|
|
(void) putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1996-01-23 12:29:07 +00:00
|
|
|
int
|
2002-09-16 05:54:26 +00:00
|
|
|
tryit(const char *fn, unsigned char *buf, int nb, int zfl)
|
1994-09-03 19:16:28 +00:00
|
|
|
{
|
2002-09-16 05:54:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The main work is done here!
|
|
|
|
* We have the file name and/or the data buffer to be identified.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __EMX__
|
|
|
|
/*
|
|
|
|
* Ok, here's the right place to add a call to some os-specific
|
|
|
|
* routine, e.g.
|
|
|
|
*/
|
|
|
|
if (os2_apptype(fn, buf, nb) == 1)
|
|
|
|
return 'o';
|
|
|
|
#endif
|
1996-01-23 12:29:07 +00:00
|
|
|
/* try compression stuff */
|
2002-09-16 05:54:26 +00:00
|
|
|
if (zfl && zmagic(fn, buf, nb))
|
1996-01-23 12:29:07 +00:00
|
|
|
return 'z';
|
|
|
|
|
|
|
|
/* try tests in /etc/magic (or surrogate magic file) */
|
|
|
|
if (softmagic(buf, nb))
|
|
|
|
return 's';
|
|
|
|
|
|
|
|
/* try known keywords, check whether it is ASCII */
|
|
|
|
if (ascmagic(buf, nb))
|
|
|
|
return 'a';
|
|
|
|
|
|
|
|
/* abandon hope, all ye who remain here */
|
2002-09-16 05:54:26 +00:00
|
|
|
ckfputs(iflag ? "application/octet-stream" : "data", stdout);
|
1996-01-23 12:29:07 +00:00
|
|
|
return '\0';
|
1994-09-03 19:16:28 +00:00
|
|
|
}
|
2001-03-25 18:37:04 +00:00
|
|
|
|
|
|
|
static void
|
2002-09-16 05:54:26 +00:00
|
|
|
usage(void)
|
2001-03-25 18:37:04 +00:00
|
|
|
{
|
|
|
|
(void)fprintf(stderr, USAGE, progname);
|
|
|
|
(void)fprintf(stderr, "Usage: %s -C [-m magic]\n", progname);
|
2003-02-15 18:53:17 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2002-09-16 05:54:26 +00:00
|
|
|
(void)fputs("Try `file --help' for more information.\n", stderr);
|
|
|
|
#endif
|
2001-03-25 18:37:04 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2002-09-16 05:54:26 +00:00
|
|
|
|
2003-02-15 18:53:17 +00:00
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2002-09-16 05:54:26 +00:00
|
|
|
static void
|
|
|
|
help(void)
|
|
|
|
{
|
|
|
|
puts(
|
|
|
|
"Usage: file [OPTION]... [FILE]...\n"
|
|
|
|
"Determine file type of FILEs.\n"
|
|
|
|
"\n"
|
|
|
|
" -m, --magic-file LIST use LIST as a colon-separated list of magic\n"
|
|
|
|
" number files\n"
|
|
|
|
" -z, --uncompress try to look inside compressed files\n"
|
|
|
|
" -b, --brief do not prepend filenames to output lines\n"
|
|
|
|
" -c, --checking-printout print the parsed form of the magic file, use in\n"
|
|
|
|
" conjunction with -m to debug a new magic file\n"
|
|
|
|
" before installing it\n"
|
|
|
|
" -f, --files-from FILE read the filenames to be examined from FILE\n"
|
|
|
|
" -i, --mime output mime type strings\n"
|
|
|
|
" -k, --keep-going don't stop at the first match\n"
|
|
|
|
" -L, --dereference causes symlinks to be followed\n"
|
|
|
|
" -n, --no-buffer do not buffer output\n"
|
|
|
|
" -s, --special-files treat special (block/char devices) files as\n"
|
|
|
|
" ordinary ones\n"
|
|
|
|
" --help display this help and exit\n"
|
|
|
|
" --version output version information and exit\n"
|
|
|
|
);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
#endif
|