1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
|
/*
* 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.
*/
#include "system.h"
#include "file.h"
#include "patchlevel.h"
#include "debug.h"
FILE_RCSID("@(#)Id: file.c,v 1.66 2002/07/03 19:00:41 christos Exp ")
/*@access fmagic @*/
/*@unchecked@*/
extern fmagic global_fmagic;
#ifdef S_IFLNK
# define USAGE "Usage: %s [-bciknsvzL] [-f namefile] [-m magicfiles] file...\n"
#else
# define USAGE "Usage: %s [-bciknsvz] [-f namefile] [-m magicfiles] file...\n"
#endif
#ifdef __EMX__
static char *apptypeName = NULL;
int os2_apptype (const char *fn, char *buf, int nb);
#endif /* __EMX__ */
#ifndef MAGIC
# define MAGIC "/etc/magic"
#endif
#ifndef MAXPATHLEN
#define MAXPATHLEN 512
#endif
/* Global command-line options */
/*@unchecked@*/
static int nobuffer = 0; /* Do not buffer stdout */
/*@unchecked@*/ /*@observer@*/
static const char *default_magicfile = MAGIC;
/*@unchecked@*/
char *progname; /* used throughout */
/*
* unwrap -- read a file of filenames, do each one.
*/
static void
unwrap(fmagic fm, char *fn)
/*@globals fileSystem, internalState @*/
/*@modifies fm, fileSystem, internalState @*/
{
char buf[MAXPATHLEN];
FILE *f;
int wid = 0, cwid;
int xx;
if (strcmp("-", fn) == 0) {
f = stdin;
wid = 1;
} else {
if ((f = fopen(fn, "r")) == NULL) {
error(EXIT_FAILURE, 0, "Cannot open `%s' (%s).\n", fn, strerror(errno));
/*@notreached@*/
}
while (fgets(buf, MAXPATHLEN, f) != NULL) {
cwid = strlen(buf) - 1;
if (cwid > wid)
wid = cwid;
}
rewind(f);
}
while (fgets(buf, MAXPATHLEN, f) != NULL) {
buf[strlen(buf)-1] = '\0';
xx = fmagicProcess(fm, buf, wid);
if(nobuffer)
(void) fflush(stdout);
}
(void) fclose(f);
}
/*@exits@*/
static void
usage(void)
/*@globals fileSystem @*/
/*@modifies fileSystem @*/
{
(void)fprintf(stderr, USAGE, progname);
(void)fprintf(stderr, "Usage: %s -C [-m magic]\n", progname);
#ifdef HAVE_GETOPT_H
(void)fputs("Try `file --help' for more information.\n", stderr);
#endif
exit(EXIT_FAILURE);
}
#ifdef HAVE_GETOPT_H
/*@exits@*/
static void
help(void)
/*@globals fileSystem @*/
/*@modifies fileSystem @*/
{
(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
/*
* main - parse arguments and handle options
*/
int
main(int argc, char **argv)
/*@globals global_fmagic, nobuffer,
default_magicfile, optind, progname,
fileSystem, internalState @*/
/*@modifies argv, global_fmagic, nobuffer,
default_magicfile, optind, progname,
fileSystem, internalState @*/
{
int xx;
int c;
int action = 0, didsomefiles = 0, errflg = 0, ret = 0, app = 0;
char *mime, *home, *usermagic;
fmagic fm = global_fmagic;
struct stat sb;
#define OPTSTRING "bcdf:ikm:nsvzCL"
#ifdef HAVE_GETOPT_H
int longindex = 0;
/*@-nullassign -readonlytrans@*/
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'},
{"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'},
{"special-files", 0, 0, 's'},
{"compile", 0, 0, 'C'},
{0, 0, 0, 0},
};
/*@=nullassign =readonlytrans@*/
#endif
#if HAVE_MCHECK_H && HAVE_MTRACE
/*@-noeffect@*/
mtrace(); /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
/*@=noeffect@*/
#endif
#ifdef LC_CTYPE
setlocale(LC_CTYPE, ""); /* makes islower etc work for other langs */
#endif
#ifdef __EMX__
/* sh-like wildcard expansion! Shouldn't hurt at least ... */
_wildcard(&argc, &argv);
#endif
/*@-modobserver@*/
if ((progname = strrchr(argv[0], '/')) != NULL)
progname++;
else
progname = argv[0];
/*@=modobserver@*/
/*@-assignexpose@*/
fm->magicfile = default_magicfile;
/*@=assignexpose@*/
if ((usermagic = getenv("MAGIC")) != NULL)
fm->magicfile = usermagic;
else {
if ((home = getenv("HOME")) != NULL) {
size_t nb = strlen(home) + 8;
usermagic = xmalloc(nb);
(void)strcpy(usermagic, home);
(void)strcat(usermagic, "/.magic");
if (stat(usermagic, &sb)<0)
free(usermagic);
else
fm->magicfile = usermagic;
}
}
#ifndef HAVE_GETOPT_H
while ((c = getopt(argc, argv, OPTSTRING)) != -1)
#else
while ((c = getopt_long(argc, argv, OPTSTRING, long_options,
&longindex)) != -1)
#endif
{
switch (c) {
#ifdef HAVE_GETOPT_H
case 0 :
if (longindex == 1)
help();
/*@switchbreak@*/ break;
#endif
case 'b':
fm->flags |= FMAGIC_FLAGS_BRIEF;
/*@switchbreak@*/ break;
case 'c':
action = CHECK;
/*@switchbreak@*/ break;
case 'C':
action = COMPILE;
/*@switchbreak@*/ break;
case 'd':
fm->flags |= FMAGIC_FLAGS_DEBUG;
/*@switchbreak@*/ break;
case 'f':
if (!app) {
ret = fmagicSetup(fm, fm->magicfile, action);
if (action)
exit(ret);
app = 1;
}
unwrap(fm, optarg);
++didsomefiles;
/*@switchbreak@*/ break;
case 'i':
fm->flags |= FMAGIC_FLAGS_MIME;
mime = malloc(strlen(fm->magicfile) + sizeof(".mime"));
(void)strcpy(mime, fm->magicfile);
(void)strcat(mime, ".mime");
fm->magicfile = mime;
/*@switchbreak@*/ break;
case 'k':
fm->flags |= FMAGIC_FLAGS_CONTINUE;
/*@switchbreak@*/ break;
case 'm':
/*@-assignexpose@*/
fm->magicfile = optarg;
/*@=assignexpose@*/
/*@switchbreak@*/ break;
case 'n':
++nobuffer;
/*@switchbreak@*/ break;
case 's':
fm->flags |= FMAGIC_FLAGS_SPECIAL;
/*@switchbreak@*/ break;
case 'v':
(void) fprintf(stdout, "%s-%d.%d\n", progname,
FILE_VERSION_MAJOR, patchlevel);
(void) fprintf(stdout, "magic file from %s\n",
fm->magicfile);
return 1;
case 'z':
fm->flags |= FMAGIC_FLAGS_UNCOMPRESS;
/*@switchbreak@*/ break;
#ifdef S_IFLNK
case 'L':
fm->flags |= FMAGIC_FLAGS_FOLLOW;
/*@switchbreak@*/ break;
#endif
case '?':
default:
errflg++;
/*@switchbreak@*/ break;
}
}
if (errflg)
usage();
if (!app) {
ret = fmagicSetup(fm, fm->magicfile, action);
if (action)
exit(ret);
app = 1;
}
if (optind == argc) {
if (!didsomefiles)
usage();
} 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++)
xx = fmagicProcess(fm, argv[optind], wid);
}
#if HAVE_MCHECK_H && HAVE_MTRACE
/*@-noeffect@*/
muntrace(); /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
/*@=noeffect@*/
#endif
return 0;
}
|