NetBSD/usr.bin/file/softmagic.c

1107 lines
23 KiB
C
Raw Normal View History

2001-07-23 02:56:50 +04:00
/* $NetBSD: softmagic.c,v 1.24 2001/07/22 22:56:51 pooka Exp $ */
1997-01-09 23:18:21 +03:00
1993-03-21 12:45:37 +03:00
/*
1997-09-30 21:00:30 +04:00
* softmagic - interpret variable magic from MAGIC
1993-03-21 12:45:37 +03:00
*
* 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 <stdio.h>
#include <string.h>
2000-05-15 02:53:37 +04:00
#include <ctype.h>
1997-01-28 03:49:36 +03:00
#include <stdlib.h>
#include <time.h>
#include <sys/types.h>
1993-03-21 12:45:37 +03:00
#include "file.h"
1997-10-18 18:53:48 +04:00
#include <sys/cdefs.h>
1995-03-26 01:35:28 +03:00
#ifndef lint
1998-09-20 19:27:15 +04:00
#if 0
2001-07-23 02:53:00 +04:00
FILE_RCSID("@(#)Id: softmagic.c,v 1.45 2001/07/22 21:04:15 christos Exp ")
1998-09-20 19:27:15 +04:00
#else
2001-07-23 02:56:50 +04:00
__RCSID("$NetBSD: softmagic.c,v 1.24 2001/07/22 22:56:51 pooka Exp $");
1998-09-20 19:27:15 +04:00
#endif
1995-03-26 01:35:28 +03:00
#endif /* lint */
2001-03-17 14:21:51 +03:00
static int match __P((struct magic *, uint32, unsigned char *, int));
1995-03-26 01:35:28 +03:00
static int mget __P((union VALUETYPE *,
unsigned char *, struct magic *, int));
static int mcheck __P((union VALUETYPE *, struct magic *));
1997-01-28 03:49:36 +03:00
static int32 mprint __P((union VALUETYPE *, struct magic *));
static void mdebug __P((int32, char *, int));
1995-03-26 01:35:28 +03:00
static int mconvert __P((union VALUETYPE *, struct magic *));
1993-03-21 12:45:37 +03:00
2001-02-05 04:51:52 +03:00
extern int kflag;
1993-03-21 12:45:37 +03:00
/*
* softmagic - lookup one file in database
1997-09-30 21:00:30 +04:00
* (already read from MAGIC by apprentice.c).
1993-03-21 12:45:37 +03:00
* Passed the name and FILE * of one file to be typed.
*/
/*ARGSUSED1*/ /* nbytes passed for regularity, maybe need later */
int
softmagic(buf, nbytes)
2000-09-22 20:34:59 +04:00
unsigned char *buf;
int nbytes;
1993-03-21 12:45:37 +03:00
{
2001-03-17 14:21:51 +03:00
struct mlist *ml;
for (ml = mlist.next; ml != &mlist; ml = ml->next)
if (match(ml->magic, ml->nmagic, buf, nbytes))
return 1;
1993-03-21 12:45:37 +03:00
return 0;
}
/*
* Go through the whole list, stopping if you find a match. Process all
* the continuations of that match before returning.
*
* We support multi-level continuations:
*
* At any time when processing a successful top-level match, there is a
* current continuation level; it represents the level of the last
* successfully matched continuation.
*
* Continuations above that level are skipped as, if we see one, it
* means that the continuation that controls them - i.e, the
* lower-level continuation preceding them - failed to match.
*
* Continuations below that level are processed as, if we see one,
* it means we've finished processing or skipping higher-level
* continuations under the control of a successful or unsuccessful
* lower-level continuation, and are now seeing the next lower-level
* continuation and should process it. The current continuation
* level reverts to the level of the one we're seeing.
*
* Continuations at the current level are processed as, if we see
* one, there's no lower-level continuation that may have failed.
*
* If a continuation matches, we bump the current continuation level
* so that higher-level continuations are processed.
1993-03-21 12:45:37 +03:00
*/
static int
2001-03-17 14:21:51 +03:00
match(magic, nmagic, s, nbytes)
struct magic *magic;
uint32 nmagic;
2000-09-22 20:34:59 +04:00
unsigned char *s;
int nbytes;
1993-03-21 12:45:37 +03:00
{
int magindex = 0;
int cont_level = 0;
1995-03-26 01:35:28 +03:00
int need_separator = 0;
union VALUETYPE p;
1997-01-28 03:49:36 +03:00
static int32 *tmpoff = NULL;
1996-10-06 00:20:24 +04:00
static size_t tmplen = 0;
1997-01-28 03:49:36 +03:00
int32 oldoff = 0;
2000-05-15 02:53:37 +04:00
int returnval = 0; /* if a match is found it is set to 1*/
int firstline = 1; /* a flag to print X\n X\n- X */
1996-10-06 00:20:24 +04:00
if (tmpoff == NULL)
1997-01-28 03:49:36 +03:00
if ((tmpoff = (int32 *) malloc(tmplen = 20)) == NULL)
1996-10-06 00:20:24 +04:00
error("out of memory\n");
1995-03-26 01:35:28 +03:00
for (magindex = 0; magindex < nmagic; magindex++) {
1993-03-21 12:45:37 +03:00
/* if main entry matches, print it... */
1995-03-26 01:35:28 +03:00
if (!mget(&p, s, &magic[magindex], nbytes) ||
!mcheck(&p, &magic[magindex])) {
/*
* main entry didn't match,
* flush its continuations
*/
while (magindex < nmagic &&
magic[magindex + 1].cont_level != 0)
magindex++;
continue;
}
2000-05-15 02:53:37 +04:00
if (! firstline) { /* we found another match */
/* put a newline and '-' to do some simple formatting*/
printf("\n- ");
}
1996-10-06 00:20:24 +04:00
tmpoff[cont_level] = mprint(&p, &magic[magindex]);
1995-03-26 01:35:28 +03:00
/*
* If we printed something, we'll need to print
* a blank before we print something else.
*/
if (magic[magindex].desc[0])
need_separator = 1;
/* and any continuations that match */
1996-10-06 00:20:24 +04:00
if (++cont_level >= tmplen)
1997-01-28 03:49:36 +03:00
if ((tmpoff = (int32 *) realloc(tmpoff,
1996-10-06 00:20:24 +04:00
tmplen += 20)) == NULL)
error("out of memory\n");
1995-03-26 01:35:28 +03:00
while (magic[magindex+1].cont_level != 0 &&
++magindex < nmagic) {
if (cont_level >= magic[magindex].cont_level) {
if (cont_level > magic[magindex].cont_level) {
/*
* We're at the end of the level
* "cont_level" continuations.
*/
cont_level = magic[magindex].cont_level;
}
2001-07-23 02:53:00 +04:00
if (magic[magindex].flag & OFFADD) {
1996-10-06 00:20:24 +04:00
oldoff=magic[magindex].offset;
2001-03-17 14:21:51 +03:00
magic[magindex].offset +=
tmpoff[cont_level-1];
1996-10-06 00:20:24 +04:00
}
1995-03-26 01:35:28 +03:00
if (mget(&p, s, &magic[magindex], nbytes) &&
mcheck(&p, &magic[magindex])) {
/*
* This continuation matched.
* Print its message, with
* a blank before it if
* the previous item printed
* and this item isn't empty.
*/
/* space if previous printed */
if (need_separator
&& (magic[magindex].nospflag == 0)
&& (magic[magindex].desc[0] != '\0')
) {
(void) putchar(' ');
need_separator = 0;
}
2001-03-17 14:21:51 +03:00
tmpoff[cont_level] =
mprint(&p, &magic[magindex]);
1995-03-26 01:35:28 +03:00
if (magic[magindex].desc[0])
need_separator = 1;
/*
* If we see any continuations
* at a higher level,
* process them.
*/
1996-10-06 00:20:24 +04:00
if (++cont_level >= tmplen)
if ((tmpoff =
1997-01-28 03:49:36 +03:00
(int32 *) realloc(tmpoff,
1996-10-06 00:20:24 +04:00
tmplen += 20)) == NULL)
error("out of memory\n");
}
2001-07-23 02:53:00 +04:00
if (magic[magindex].flag & OFFADD) {
1996-10-06 00:20:24 +04:00
magic[magindex].offset = oldoff;
1993-03-21 12:45:37 +03:00
}
}
}
2000-05-15 02:53:37 +04:00
firstline = 0;
returnval = 1;
if (!kflag) {
return 1; /* don't keep searching */
}
1993-03-21 12:45:37 +03:00
}
2000-05-15 02:53:37 +04:00
return returnval; /* This is hit if -k is set or there is no match */
1993-03-21 12:45:37 +03:00
}
1997-01-28 03:49:36 +03:00
static int32
1995-03-26 01:35:28 +03:00
mprint(p, m)
2000-09-22 20:34:59 +04:00
union VALUETYPE *p;
struct magic *m;
1993-03-21 12:45:37 +03:00
{
1997-01-28 03:49:36 +03:00
uint32 v;
int32 t=0 ;
1993-03-21 12:45:37 +03:00
switch (m->type) {
case BYTE:
2001-07-23 02:53:00 +04:00
v = signextend(m, p->b);
1995-03-26 01:35:28 +03:00
(void) printf(m->desc, (unsigned char) v);
1996-10-06 00:20:24 +04:00
t = m->offset + sizeof(char);
1995-03-26 01:35:28 +03:00
break;
case SHORT:
case BESHORT:
case LESHORT:
2001-07-23 02:53:00 +04:00
v = signextend(m, p->h);
1995-03-26 01:35:28 +03:00
(void) printf(m->desc, (unsigned short) v);
1996-10-06 00:20:24 +04:00
t = m->offset + sizeof(short);
1995-03-26 01:35:28 +03:00
break;
case LONG:
case BELONG:
case LELONG:
2001-07-23 02:53:00 +04:00
v = signextend(m, p->l);
1997-01-28 03:49:36 +03:00
(void) printf(m->desc, (uint32) v);
t = m->offset + sizeof(int32);
break;
1995-03-26 01:35:28 +03:00
case STRING:
2001-07-23 02:53:00 +04:00
case PSTRING:
1995-03-26 01:35:28 +03:00
if (m->reln == '=') {
(void) printf(m->desc, m->value.s);
1996-10-06 00:20:24 +04:00
t = m->offset + strlen(m->value.s);
1995-03-26 01:35:28 +03:00
}
else {
1997-01-28 03:49:36 +03:00
if (*m->value.s == '\0') {
char *cp = strchr(p->s,'\n');
if (cp)
*cp = '\0';
}
1995-03-26 01:35:28 +03:00
(void) printf(m->desc, p->s);
1996-10-06 00:20:24 +04:00
t = m->offset + strlen(p->s);
1995-03-26 01:35:28 +03:00
}
1996-10-06 00:20:24 +04:00
break;
1995-03-26 01:35:28 +03:00
case DATE:
case BEDATE:
case LEDATE:
2001-07-23 02:53:00 +04:00
(void) printf(m->desc, fmttime(p->l, 1));
t = m->offset + sizeof(time_t);
break;
case LDATE:
case BELDATE:
case LELDATE:
(void) printf(m->desc, fmttime(p->l, 0));
1996-10-06 00:20:24 +04:00
t = m->offset + sizeof(time_t);
1997-01-28 03:49:36 +03:00
break;
1993-03-21 12:45:37 +03:00
default:
error("invalid m->type (%d) in mprint().\n", m->type);
/*NOTREACHED*/
1993-03-21 12:45:37 +03:00
}
1996-10-06 00:20:24 +04:00
return(t);
1993-03-21 12:45:37 +03:00
}
1995-03-26 01:35:28 +03:00
/*
* Convert the byte order of the data we are looking at
2001-07-23 02:53:00 +04:00
* While we're here, let's apply the mask operation
* (unless you have a better idea)
1995-03-26 01:35:28 +03:00
*/
static int
mconvert(p, m)
2000-09-22 20:34:59 +04:00
union VALUETYPE *p;
struct magic *m;
1995-03-26 01:35:28 +03:00
{
switch (m->type) {
case BYTE:
2001-07-23 02:53:00 +04:00
if (m->mask)
switch (m->mask_op&0x7F) {
case OPAND:
p->b &= m->mask;
break;
case OPOR:
p->b |= m->mask;
break;
case OPXOR:
p->b ^= m->mask;
break;
case OPADD:
p->b += m->mask;
break;
case OPMINUS:
p->b -= m->mask;
break;
case OPMULTIPLY:
p->b *= m->mask;
break;
case OPDIVIDE:
p->b /= m->mask;
break;
case OPMODULO:
p->b %= m->mask;
break;
}
if (m->mask_op & OPINVERSE)
p->b = ~p->b;
return 1;
1995-03-26 01:35:28 +03:00
case SHORT:
2001-07-23 02:53:00 +04:00
if (m->mask)
switch (m->mask_op&0x7F) {
case OPAND:
p->h &= m->mask;
break;
case OPOR:
p->h |= m->mask;
break;
case OPXOR:
p->h ^= m->mask;
break;
case OPADD:
p->h += m->mask;
break;
case OPMINUS:
p->h -= m->mask;
break;
case OPMULTIPLY:
p->h *= m->mask;
break;
case OPDIVIDE:
p->h /= m->mask;
break;
case OPMODULO:
p->h %= m->mask;
break;
}
if (m->mask_op & OPINVERSE)
p->h = ~p->h;
return 1;
1995-03-26 01:35:28 +03:00
case LONG:
case DATE:
2001-07-23 02:53:00 +04:00
case LDATE:
if (m->mask)
switch (m->mask_op&0x7F) {
case OPAND:
p->l &= m->mask;
break;
case OPOR:
p->l |= m->mask;
break;
case OPXOR:
p->l ^= m->mask;
break;
case OPADD:
p->l += m->mask;
break;
case OPMINUS:
p->l -= m->mask;
break;
case OPMULTIPLY:
p->l *= m->mask;
break;
case OPDIVIDE:
p->l /= m->mask;
break;
case OPMODULO:
p->l %= m->mask;
break;
}
if (m->mask_op & OPINVERSE)
p->l = ~p->l;
1995-03-26 01:35:28 +03:00
return 1;
case STRING:
1996-10-06 00:20:24 +04:00
{
2001-07-23 02:53:00 +04:00
int n;
1996-10-06 00:20:24 +04:00
2001-07-23 02:53:00 +04:00
/* Null terminate and eat *trailing* return */
1996-10-06 00:20:24 +04:00
p->s[sizeof(p->s) - 1] = '\0';
2001-07-23 02:53:00 +04:00
n = strlen(p->s) - 1;
if (p->s[n] == '\n')
p->s[n] = '\0';
return 1;
}
case PSTRING:
{
char *ptr1 = p->s, *ptr2 = ptr1 + 1;
int n = *p->s;
if (n >= sizeof(p->s))
n = sizeof(p->s) - 1;
while (n--)
*ptr1++ = *ptr2++;
*ptr1 = '\0';
n = strlen(p->s) - 1;
if (p->s[n] == '\n')
p->s[n] = '\0';
1996-10-06 00:20:24 +04:00
return 1;
}
1995-03-26 01:35:28 +03:00
case BESHORT:
p->h = (short)((p->hs[0]<<8)|(p->hs[1]));
2001-07-23 02:53:00 +04:00
if (m->mask)
switch (m->mask_op&0x7F) {
case OPAND:
p->h &= m->mask;
break;
case OPOR:
p->h |= m->mask;
break;
case OPXOR:
p->h ^= m->mask;
break;
case OPADD:
p->h += m->mask;
break;
case OPMINUS:
p->h -= m->mask;
break;
case OPMULTIPLY:
p->h *= m->mask;
break;
case OPDIVIDE:
p->h /= m->mask;
break;
case OPMODULO:
p->h %= m->mask;
break;
}
if (m->mask_op & OPINVERSE)
p->h = ~p->h;
1995-03-26 01:35:28 +03:00
return 1;
case BELONG:
case BEDATE:
2001-07-23 02:53:00 +04:00
case BELDATE:
1997-01-28 03:49:36 +03:00
p->l = (int32)
1995-03-26 01:35:28 +03:00
((p->hl[0]<<24)|(p->hl[1]<<16)|(p->hl[2]<<8)|(p->hl[3]));
2001-07-23 02:53:00 +04:00
if (m->mask)
switch (m->mask_op&0x7F) {
case OPAND:
p->l &= m->mask;
break;
case OPOR:
p->l |= m->mask;
break;
case OPXOR:
p->l ^= m->mask;
break;
case OPADD:
p->l += m->mask;
break;
case OPMINUS:
p->l -= m->mask;
break;
case OPMULTIPLY:
p->l *= m->mask;
break;
case OPDIVIDE:
p->l /= m->mask;
break;
case OPMODULO:
p->l %= m->mask;
break;
}
if (m->mask_op & OPINVERSE)
p->l = ~p->l;
1995-03-26 01:35:28 +03:00
return 1;
case LESHORT:
p->h = (short)((p->hs[1]<<8)|(p->hs[0]));
2001-07-23 02:53:00 +04:00
if (m->mask)
switch (m->mask_op&0x7F) {
case OPAND:
p->h &= m->mask;
break;
case OPOR:
p->h |= m->mask;
break;
case OPXOR:
p->h ^= m->mask;
break;
case OPADD:
p->h += m->mask;
break;
case OPMINUS:
p->h -= m->mask;
break;
case OPMULTIPLY:
p->h *= m->mask;
break;
case OPDIVIDE:
p->h /= m->mask;
break;
case OPMODULO:
p->h %= m->mask;
break;
}
if (m->mask_op & OPINVERSE)
p->h = ~p->h;
1995-03-26 01:35:28 +03:00
return 1;
case LELONG:
case LEDATE:
2001-07-23 02:53:00 +04:00
case LELDATE:
1997-01-28 03:49:36 +03:00
p->l = (int32)
1995-03-26 01:35:28 +03:00
((p->hl[3]<<24)|(p->hl[2]<<16)|(p->hl[1]<<8)|(p->hl[0]));
2001-07-23 02:53:00 +04:00
if (m->mask)
switch (m->mask_op&0x7F) {
case OPAND:
p->l &= m->mask;
break;
case OPOR:
p->l |= m->mask;
break;
case OPXOR:
p->l ^= m->mask;
break;
case OPADD:
p->l += m->mask;
break;
case OPMINUS:
p->l -= m->mask;
break;
case OPMULTIPLY:
p->l *= m->mask;
break;
case OPDIVIDE:
p->l /= m->mask;
break;
case OPMODULO:
p->l %= m->mask;
break;
}
if (m->mask_op & OPINVERSE)
p->l = ~p->l;
1995-03-26 01:35:28 +03:00
return 1;
default:
error("invalid type %d in mconvert().\n", m->type);
return 0;
}
}
static void
mdebug(offset, str, len)
2000-09-22 20:34:59 +04:00
int32 offset;
char *str;
int len;
1995-03-26 01:35:28 +03:00
{
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "mget @%d: ", offset);
1995-03-26 01:35:28 +03:00
showstr(stderr, (char *) str, len);
(void) fputc('\n', stderr);
(void) fputc('\n', stderr);
}
static int
1995-03-26 01:35:28 +03:00
mget(p, s, m, nbytes)
2000-09-22 20:34:59 +04:00
union VALUETYPE* p;
unsigned char *s;
struct magic *m;
int nbytes;
1993-03-21 12:45:37 +03:00
{
1997-01-28 03:49:36 +03:00
int32 offset = m->offset;
1995-05-21 04:13:24 +04:00
if (offset + sizeof(union VALUETYPE) <= nbytes)
1995-04-28 23:23:38 +04:00
memcpy(p, s + offset, sizeof(union VALUETYPE));
else {
1995-05-21 04:13:24 +04:00
/*
* the usefulness of padding with zeroes eludes me, it
* might even cause problems
*/
1997-01-28 03:49:36 +03:00
int32 have = nbytes - offset;
1995-05-21 04:13:24 +04:00
memset(p, 0, sizeof(union VALUETYPE));
1995-04-28 23:23:38 +04:00
if (have > 0)
memcpy(p, s + offset, have);
}
1995-03-26 01:35:28 +03:00
1993-03-21 12:45:37 +03:00
if (debug) {
1995-03-26 01:35:28 +03:00
mdebug(offset, (char *) p, sizeof(union VALUETYPE));
1993-03-21 12:45:37 +03:00
mdump(m);
}
1995-03-26 01:35:28 +03:00
if (m->flag & INDIR) {
2001-03-17 14:21:51 +03:00
switch (m->in_type) {
1995-03-26 01:35:28 +03:00
case BYTE:
2001-07-23 02:53:00 +04:00
if (m->in_offset)
switch (m->in_op&0x7F) {
case OPAND:
offset = p->b & m->in_offset;
break;
case OPOR:
offset = p->b | m->in_offset;
break;
case OPXOR:
offset = p->b ^ m->in_offset;
break;
case OPADD:
offset = p->b + m->in_offset;
break;
case OPMINUS:
offset = p->b - m->in_offset;
break;
case OPMULTIPLY:
offset = p->b * m->in_offset;
break;
case OPDIVIDE:
offset = p->b / m->in_offset;
break;
case OPMODULO:
offset = p->b % m->in_offset;
break;
}
if (m->in_op & OPINVERSE)
offset = ~offset;
1995-03-26 01:35:28 +03:00
break;
1998-09-20 19:27:15 +04:00
case BESHORT:
2001-07-23 02:53:00 +04:00
if (m->in_offset)
switch (m->in_op&0x7F) {
case OPAND:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) &
m->in_offset;
break;
case OPOR:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) |
m->in_offset;
break;
case OPXOR:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) ^
m->in_offset;
break;
case OPADD:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) +
m->in_offset;
break;
case OPMINUS:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) -
m->in_offset;
break;
case OPMULTIPLY:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) *
m->in_offset;
break;
case OPDIVIDE:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) /
m->in_offset;
break;
case OPMODULO:
offset = (short)((p->hs[0]<<8)|
(p->hs[1])) %
m->in_offset;
break;
}
if (m->in_op & OPINVERSE)
offset = ~offset;
1998-09-20 19:27:15 +04:00
break;
case LESHORT:
2001-07-23 02:53:00 +04:00
if (m->in_offset)
switch (m->in_op&0x7F) {
case OPAND:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) &
m->in_offset;
break;
case OPOR:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) |
m->in_offset;
break;
case OPXOR:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) ^
m->in_offset;
break;
case OPADD:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) +
m->in_offset;
break;
case OPMINUS:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) -
m->in_offset;
break;
case OPMULTIPLY:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) *
m->in_offset;
break;
case OPDIVIDE:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) /
m->in_offset;
break;
case OPMODULO:
offset = (short)((p->hs[1]<<8)|
(p->hs[0])) %
m->in_offset;
break;
}
if (m->in_op & OPINVERSE)
offset = ~offset;
1998-09-20 19:27:15 +04:00
break;
1995-03-26 01:35:28 +03:00
case SHORT:
2001-07-23 02:53:00 +04:00
if (m->in_offset)
switch (m->in_op&0x7F) {
case OPAND:
offset = p->h & m->in_offset;
break;
case OPOR:
offset = p->h | m->in_offset;
break;
case OPXOR:
offset = p->h ^ m->in_offset;
break;
case OPADD:
offset = p->h + m->in_offset;
break;
case OPMINUS:
offset = p->h - m->in_offset;
break;
case OPMULTIPLY:
offset = p->h * m->in_offset;
break;
case OPDIVIDE:
offset = p->h / m->in_offset;
break;
case OPMODULO:
offset = p->h % m->in_offset;
break;
}
if (m->in_op & OPINVERSE)
offset = ~offset;
1995-03-26 01:35:28 +03:00
break;
1998-09-20 19:27:15 +04:00
case BELONG:
2001-07-23 02:53:00 +04:00
if (m->in_offset)
switch (m->in_op&0x7F) {
case OPAND:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) &
m->in_offset;
break;
case OPOR:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) |
m->in_offset;
break;
case OPXOR:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) ^
m->in_offset;
break;
case OPADD:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) +
m->in_offset;
break;
case OPMINUS:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) -
m->in_offset;
break;
case OPMULTIPLY:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) *
m->in_offset;
break;
case OPDIVIDE:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) /
m->in_offset;
break;
case OPMODULO:
offset = (int32)((p->hl[0]<<24)|
(p->hl[1]<<16)|
(p->hl[2]<<8)|
(p->hl[3])) %
m->in_offset;
break;
}
if (m->in_op & OPINVERSE)
offset = ~offset;
1998-09-20 19:27:15 +04:00
break;
case LELONG:
2001-07-23 02:53:00 +04:00
if (m->in_offset)
switch (m->in_op&0x7F) {
case OPAND:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) &
m->in_offset;
break;
case OPOR:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) |
m->in_offset;
break;
case OPXOR:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) ^
m->in_offset;
break;
case OPADD:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) +
m->in_offset;
break;
case OPMINUS:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) -
m->in_offset;
break;
case OPMULTIPLY:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) *
m->in_offset;
break;
case OPDIVIDE:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) /
m->in_offset;
break;
case OPMODULO:
offset = (int32)((p->hl[3]<<24)|
(p->hl[2]<<16)|
(p->hl[1]<<8)|
(p->hl[0])) %
m->in_offset;
break;
}
if (m->in_op & OPINVERSE)
offset = ~offset;
1998-09-20 19:27:15 +04:00
break;
1995-03-26 01:35:28 +03:00
case LONG:
2001-07-23 02:53:00 +04:00
if (m->in_offset)
switch (m->in_op&0x7F) {
case OPAND:
offset = p->l & m->in_offset;
break;
case OPOR:
offset = p->l | m->in_offset;
break;
case OPXOR:
offset = p->l ^ m->in_offset;
break;
case OPADD:
offset = p->l + m->in_offset;
break;
case OPMINUS:
offset = p->l - m->in_offset;
break;
case OPMULTIPLY:
offset = p->l * m->in_offset;
break;
case OPDIVIDE:
offset = p->l / m->in_offset;
break;
case OPMODULO:
offset = p->l % m->in_offset;
break;
/* case TOOMANYSWITCHBLOCKS:
* ugh = p->eye % m->strain;
* rub;
* case BEER:
* off = p->tab & m->in_gest;
* sleep;
*/
}
if (m->in_op & OPINVERSE)
offset = ~offset;
1995-03-26 01:35:28 +03:00
break;
}
if (offset + sizeof(union VALUETYPE) > nbytes)
return 0;
memcpy(p, s + offset, sizeof(union VALUETYPE));
if (debug) {
mdebug(offset, (char *) p, sizeof(union VALUETYPE));
mdump(m);
}
}
1998-09-20 19:27:15 +04:00
if (!mconvert(p, m))
return 0;
1995-03-26 01:35:28 +03:00
return 1;
}
static int
mcheck(p, m)
2000-09-22 20:34:59 +04:00
union VALUETYPE* p;
struct magic *m;
1995-03-26 01:35:28 +03:00
{
2000-09-22 20:34:59 +04:00
uint32 l = m->value.l;
uint32 v;
1995-03-26 01:35:28 +03:00
int matched;
if ( (m->value.s[0] == 'x') && (m->value.s[1] == '\0') ) {
1995-03-26 01:35:28 +03:00
fprintf(stderr, "BOINK");
return 1;
}
1995-03-26 01:35:28 +03:00
1993-03-21 12:45:37 +03:00
switch (m->type) {
case BYTE:
1995-03-26 01:35:28 +03:00
v = p->b;
break;
1993-03-21 12:45:37 +03:00
case SHORT:
1995-03-26 01:35:28 +03:00
case BESHORT:
case LESHORT:
v = p->h;
break;
1993-03-21 12:45:37 +03:00
case LONG:
1995-03-26 01:35:28 +03:00
case BELONG:
case LELONG:
case DATE:
1995-03-26 01:35:28 +03:00
case BEDATE:
case LEDATE:
2001-07-23 02:53:00 +04:00
case LDATE:
case BELDATE:
case LELDATE:
1995-03-26 01:35:28 +03:00
v = p->l;
break;
2001-07-23 02:53:00 +04:00
case STRING:
case PSTRING:
{
2000-05-15 02:53:37 +04:00
/*
* What we want here is:
1993-03-21 12:45:37 +03:00
* v = strncmp(m->value.s, p->s, m->vallen);
* but ignoring any nulls. bcmp doesn't give -/+/0
* and isn't universally available anyway.
*/
2000-09-22 20:34:59 +04:00
unsigned char *a = (unsigned char*)m->value.s;
unsigned char *b = (unsigned char*)p->s;
int len = m->vallen;
2000-05-15 02:53:37 +04:00
l = 0;
v = 0;
2000-05-15 02:53:37 +04:00
if (0L == m->mask) { /* normal string: do it fast */
1993-03-21 12:45:37 +03:00
while (--len >= 0)
1997-01-28 03:49:36 +03:00
if ((v = *b++ - *a++) != '\0')
2000-05-15 02:53:37 +04:00
break;
} else { /* combine the others */
while (--len >= 0) {
if ((m->mask & STRING_IGNORE_LOWERCASE) &&
islower(*a)) {
if ((v = tolower(*b++) - *a++) != '\0')
break;
} else if ((m->mask & STRING_COMPACT_BLANK) &&
isspace(*a)) {
a++;
if (isspace(*b++)) {
while (isspace(*b))
b++;
} else {
v = 1;
break;
}
} else if (isspace(*a) &&
(m->mask & STRING_COMPACT_OPTIONAL_BLANK)) {
a++;
while (isspace(*b))
b++;
} else {
if ((v = *b++ - *a++) != '\0')
break;
}
}
1993-03-21 12:45:37 +03:00
}
break;
2000-05-15 02:53:37 +04:00
}
1993-03-21 12:45:37 +03:00
default:
error("invalid type %d in mcheck().\n", m->type);
1995-03-26 01:35:28 +03:00
return 0;/*NOTREACHED*/
1993-03-21 12:45:37 +03:00
}
2001-07-23 02:53:00 +04:00
if(m->type != STRING && m->type != PSTRING)
v = signextend(m, v);
1993-03-21 12:45:37 +03:00
switch (m->reln) {
case 'x':
1995-03-26 01:35:28 +03:00
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "%u == *any* = 1\n", v);
1995-03-26 01:35:28 +03:00
matched = 1;
break;
case '!':
1995-03-26 01:35:28 +03:00
matched = v != l;
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "%u != %u = %d\n",
1995-03-26 01:35:28 +03:00
v, l, matched);
break;
1993-03-21 12:45:37 +03:00
case '=':
1995-03-26 01:35:28 +03:00
matched = v == l;
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "%u == %u = %d\n",
1995-03-26 01:35:28 +03:00
v, l, matched);
break;
1993-03-21 12:45:37 +03:00
case '>':
1995-03-26 01:35:28 +03:00
if (m->flag & UNSIGNED) {
matched = v > l;
1995-03-26 01:35:28 +03:00
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "%u > %u = %d\n",
1995-03-26 01:35:28 +03:00
v, l, matched);
}
else {
1997-01-28 03:49:36 +03:00
matched = (int32) v > (int32) l;
1995-03-26 01:35:28 +03:00
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "%d > %d = %d\n",
1995-03-26 01:35:28 +03:00
v, l, matched);
}
break;
1995-03-26 01:35:28 +03:00
1993-03-21 12:45:37 +03:00
case '<':
1995-03-26 01:35:28 +03:00
if (m->flag & UNSIGNED) {
matched = v < l;
1995-03-26 01:35:28 +03:00
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "%u < %u = %d\n",
1995-03-26 01:35:28 +03:00
v, l, matched);
}
else {
1997-01-28 03:49:36 +03:00
matched = (int32) v < (int32) l;
1995-03-26 01:35:28 +03:00
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "%d < %d = %d\n",
1995-03-26 01:35:28 +03:00
v, l, matched);
}
break;
1995-03-26 01:35:28 +03:00
1993-03-21 12:45:37 +03:00
case '&':
1995-03-26 01:35:28 +03:00
matched = (v & l) == l;
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "((%x & %x) == %x) = %d\n",
1995-03-26 01:35:28 +03:00
v, l, l, matched);
break;
case '^':
1995-03-26 01:35:28 +03:00
matched = (v & l) != l;
if (debug)
1997-01-28 03:49:36 +03:00
(void) fprintf(stderr, "((%x & %x) != %x) = %d\n",
1995-03-26 01:35:28 +03:00
v, l, l, matched);
break;
1993-03-21 12:45:37 +03:00
default:
1995-03-26 01:35:28 +03:00
matched = 0;
error("mcheck: can't happen: invalid relation %d.\n", m->reln);
1995-03-26 01:35:28 +03:00
break;/*NOTREACHED*/
1993-03-21 12:45:37 +03:00
}
return matched;
1993-03-21 12:45:37 +03:00
}