NetBSD/usr.bin/file/is_tar.c

105 lines
2.4 KiB
C
Raw Normal View History

/* $NetBSD: is_tar.c,v 1.16 2002/07/10 16:15:54 pooka Exp $ */
1997-01-09 23:18:21 +03:00
1993-03-21 12:45:37 +03:00
/*
* is_tar() -- figure out whether file is a tar archive.
*
* Stolen (by the author!) from the public domain tar program:
1999-11-01 20:39:26 +03:00
* Public Domain version written 26 Aug 1985 John Gilmore (ihnp4!hoptoad!gnu).
1993-03-21 12:45:37 +03:00
*
1995-03-26 01:35:28 +03:00
* @(#)list.c 1.18 9/23/86 Public Domain - gnu
2002-07-09 18:59:52 +04:00
* Id: is_tar.c,v 1.17 2002/07/03 18:26:38 christos Exp
1995-03-26 01:35:28 +03:00
*
1993-03-21 12:45:37 +03:00
* Comments changed and some code/comments reformatted
* for file command by Ian Darwin.
*/
2002-07-09 18:59:52 +04:00
#include "file.h"
#include <string.h>
1993-03-21 12:45:37 +03:00
#include <ctype.h>
#include <sys/types.h>
#include "tar.h"
1998-09-20 19:27:15 +04:00
#include <sys/cdefs.h>
#ifndef lint
#if 0
2002-07-09 18:59:52 +04:00
FILE_RCSID("@(#)Id: is_tar.c,v 1.17 2002/07/03 18:26:38 christos Exp ")
1998-09-20 19:27:15 +04:00
#else
__RCSID("$NetBSD: is_tar.c,v 1.16 2002/07/10 16:15:54 pooka Exp $");
1998-09-20 19:27:15 +04:00
#endif
#endif
1993-03-21 12:45:37 +03:00
#define isodigit(c) ( ((c) >= '0') && ((c) <= '7') )
static int from_oct(int, char *); /* Decode octal number */
1993-03-21 12:45:37 +03:00
/*
* Return
* 0 if the checksum is bad (i.e., probably not a tar archive),
* 1 for old UNIX tar file,
* 2 for Unix Std (POSIX) tar file.
*/
int
is_tar(unsigned char *buf, int nbytes)
1993-03-21 12:45:37 +03:00
{
2000-09-22 20:34:59 +04:00
union record *header = (union record *)buf;
int i;
int sum, recsum;
char *p;
1993-03-21 12:45:37 +03:00
1995-03-26 01:35:28 +03:00
if (nbytes < sizeof(union record))
return 0;
1993-03-21 12:45:37 +03:00
recsum = from_oct(8, header->header.chksum);
sum = 0;
p = header->charptr;
for (i = sizeof(union record); --i >= 0;) {
1993-03-21 12:45:37 +03:00
/*
* We can't use unsigned char here because of old compilers,
* e.g. V7.
*/
sum += 0xFF & *p++;
}
/* Adjust checksum to count the "chksum" field as blanks. */
for (i = sizeof(header->header.chksum); --i >= 0;)
sum -= 0xFF & header->header.chksum[i];
sum += ' '* sizeof header->header.chksum;
if (sum != recsum)
return 0; /* Not a tar archive */
if (0==strcmp(header->header.magic, TMAGIC))
return 2; /* Unix Standard tar archive */
return 1; /* Old fashioned tar archive */
}
/*
* Quick and dirty octal conversion.
*
* Result is -1 if the field is invalid (all blank, or nonoctal).
*/
1997-01-28 03:49:36 +03:00
static int
from_oct(int digs, char *where)
1993-03-21 12:45:37 +03:00
{
2000-09-22 20:34:59 +04:00
int value;
1993-03-21 12:45:37 +03:00
2000-09-22 20:34:59 +04:00
while (isspace((unsigned char)*where)) { /* Skip spaces */
1993-03-21 12:45:37 +03:00
where++;
if (--digs <= 0)
return -1; /* All blank field */
}
value = 0;
while (digs > 0 && isodigit(*where)) { /* Scan til nonoctal */
value = (value << 3) | (*where++ - '0');
--digs;
}
1998-11-07 02:06:38 +03:00
if (digs > 0 && *where && !isspace((unsigned char)*where))
1993-03-21 12:45:37 +03:00
return -1; /* Ended on non-space/nul */
return value;
}