1993-05-20 07:30:41 +04:00
|
|
|
/*
|
1993-09-07 19:40:14 +04:00
|
|
|
* $Id: isofs_util.c,v 1.5 1993/09/07 15:40:59 ws Exp $
|
1993-05-20 07:30:41 +04:00
|
|
|
*/
|
1993-09-03 08:37:52 +04:00
|
|
|
#include "param.h"
|
|
|
|
#include "systm.h"
|
|
|
|
#include "namei.h"
|
|
|
|
#include "resourcevar.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "stat.h"
|
|
|
|
#include "buf.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "mount.h"
|
|
|
|
#include "vnode.h"
|
|
|
|
#include "specdev.h"
|
|
|
|
#include "fifo.h"
|
|
|
|
#include "malloc.h"
|
|
|
|
#include "dir.h"
|
|
|
|
|
|
|
|
#include "iso.h"
|
|
|
|
#include "dirent.h"
|
|
|
|
#include "machine/endian.h"
|
|
|
|
|
1993-09-07 19:40:14 +04:00
|
|
|
#ifdef __notanymore__
|
1993-03-21 12:45:37 +03:00
|
|
|
int
|
|
|
|
isonum_711 (p)
|
1993-09-03 08:37:52 +04:00
|
|
|
unsigned char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
return (*p);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isonum_712 (p)
|
1993-09-03 08:37:52 +04:00
|
|
|
signed char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
return (*p);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isonum_721 (p)
|
1993-09-03 08:37:52 +04:00
|
|
|
unsigned char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
/* little endian short */
|
|
|
|
#if BYTE_ORDER != LITTLE_ENDIAN
|
|
|
|
printf ("isonum_721 called on non little-endian machine!\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return *(short *)p;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isonum_722 (p)
|
1993-09-03 08:37:52 +04:00
|
|
|
unsigned char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
/* big endian short */
|
|
|
|
#if BYTE_ORDER != BIG_ENDIAN
|
|
|
|
printf ("isonum_722 called on non big-endian machine!\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return *(short *)p;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isonum_723 (p)
|
1993-09-03 08:37:52 +04:00
|
|
|
unsigned char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
#if BYTE_ORDER == BIG_ENDIAN
|
|
|
|
return isonum_722 (p + 2);
|
|
|
|
#elif BYTE_ORDER == LITTLE_ENDIAN
|
|
|
|
return isonum_721 (p);
|
|
|
|
#else
|
|
|
|
printf ("isonum_723 unsupported byte order!\n");
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isonum_731 (p)
|
1993-07-19 17:40:00 +04:00
|
|
|
unsigned char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
/* little endian long */
|
|
|
|
#if BYTE_ORDER != LITTLE_ENDIAN
|
|
|
|
printf ("isonum_731 called on non little-endian machine!\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return *(long *)p;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isonum_732 (p)
|
1993-07-19 17:40:00 +04:00
|
|
|
unsigned char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
/* big endian long */
|
|
|
|
#if BYTE_ORDER != BIG_ENDIAN
|
|
|
|
printf ("isonum_732 called on non big-endian machine!\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return *(long *)p;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
isonum_733 (p)
|
1993-07-19 17:40:00 +04:00
|
|
|
unsigned char *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1993-09-03 08:37:52 +04:00
|
|
|
#if BYTE_ORDER == BIG_ENDIAN
|
|
|
|
return isonum_732 (p + 4);
|
|
|
|
#elif BYTE_ORDER == LITTLE_ENDIAN
|
|
|
|
return isonum_731 (p);
|
|
|
|
#else
|
|
|
|
printf ("isonum_733 unsupported byte order!\n");
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
}
|
1993-09-07 19:40:14 +04:00
|
|
|
#endif /* __notanymore__ */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* translate and compare a filename
|
1993-09-07 19:40:14 +04:00
|
|
|
* Note: Version number plus ';' may be omitted.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-09-07 19:40:14 +04:00
|
|
|
int
|
|
|
|
isofncmp(unsigned char *fn,int fnlen,unsigned char *isofn,int isolen)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
while (--fnlen >= 0) {
|
|
|
|
if (--isolen < 0)
|
|
|
|
return *fn;
|
|
|
|
if ((c = *isofn++) == ';') {
|
|
|
|
switch (*fn++) {
|
|
|
|
default:
|
|
|
|
return *--fn;
|
|
|
|
case 0:
|
|
|
|
return 0;
|
|
|
|
case ';':
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (i = 0; --fnlen >= 0; i = i * 10 + *fn++ - '0') {
|
|
|
|
if (*fn < '0' || *fn > '9') {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (j = 0; --isolen >= 0; j = j * 10 + *isofn++ - '0');
|
|
|
|
return i - j;
|
|
|
|
}
|
|
|
|
if (c != *fn) {
|
|
|
|
if (c >= 'A' && c <= 'Z') {
|
|
|
|
if ((c += ('a' - 'A')) != *fn)
|
|
|
|
return *fn - c;
|
|
|
|
} else
|
|
|
|
return *fn - c;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-09-07 19:40:14 +04:00
|
|
|
fn++;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-09-07 19:40:14 +04:00
|
|
|
if (isolen > 0) {
|
|
|
|
switch (*isofn) {
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
case '.':
|
|
|
|
if (isofn[1] != ';')
|
|
|
|
return -1;
|
|
|
|
case ';':
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* translate a filename
|
|
|
|
*/
|
|
|
|
void
|
1993-09-07 19:40:14 +04:00
|
|
|
isofntrans(unsigned char *infn,int infnlen,
|
|
|
|
unsigned char *outfn,unsigned short *outfnlen,
|
|
|
|
int stripgen,int assoc)
|
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
int fnidx;
|
1993-09-07 19:40:14 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
for (fnidx = 0; fnidx < infnlen; fnidx++) {
|
|
|
|
char c = *infn++;
|
1993-09-07 19:40:14 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (c >= 'A' && c <= 'Z')
|
|
|
|
*outfn++ = c + ('a' - 'A');
|
1993-09-07 19:40:14 +04:00
|
|
|
else if (c == '.' && stripgen && *infn == ';')
|
|
|
|
break;
|
|
|
|
else if (c == ';' && stripgen)
|
|
|
|
break;
|
|
|
|
else
|
1993-03-21 12:45:37 +03:00
|
|
|
*outfn++ = c;
|
|
|
|
}
|
1993-09-07 19:40:14 +04:00
|
|
|
if (assoc) {
|
|
|
|
*outfn = ASSOCCHAR;
|
|
|
|
fnidx++;
|
|
|
|
}
|
|
|
|
*outfnlen = fnidx;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|