NetBSD/sys/isofs/cd9660/cd9660_util.c

191 lines
4.9 KiB
C
Raw Normal View History

/* $NetBSD: cd9660_util.c,v 1.14 2000/03/29 03:43:32 simonb Exp $ */
1994-06-08 15:22:45 +04:00
/*-
* Copyright (c) 1994
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley
* by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
* Support code is derived from software contributed to Berkeley
* by Atsushi Murai (amurai@spec.co.jp).
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
1994-12-14 01:33:10 +03:00
* @(#)cd9660_util.c 8.3 (Berkeley) 12/5/94
1994-06-08 15:22:45 +04:00
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>
#include <sys/resourcevar.h>
#include <sys/kernel.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <sys/mount.h>
#include <sys/vnode.h>
#include <sys/malloc.h>
#include <sys/dirent.h>
1994-06-08 15:22:45 +04:00
#include <isofs/cd9660/iso.h>
#include <isofs/cd9660/cd9660_extern.h>
1994-06-08 15:22:45 +04:00
/*
* Get one character out of an iso filename
* Return number of bytes consumed
*/
int
isochar(isofn, isoend, joliet_level, c)
const u_char *isofn;
const u_char *isoend;
int joliet_level;
u_char *c;
{
*c = *isofn++;
if (joliet_level == 0 || isofn == isoend)
/* (00) and (01) are one byte in Joliet, too */
return 1;
/* No Unicode support yet :-( */
switch (*c) {
default:
*c = '?';
break;
case '\0':
*c = *isofn;
break;
}
return 2;
}
1994-06-08 15:22:45 +04:00
/*
* translate and compare a filename
* Note: Version number plus ';' may be omitted.
*/
int
isofncmp(fn, fnlen, isofn, isolen, joliet_level)
const u_char *fn, *isofn;
int fnlen, isolen, joliet_level;
1994-06-08 15:22:45 +04:00
{
int i, j;
char c;
const u_char *isoend = isofn + isolen;
1994-06-08 15:22:45 +04:00
while (--fnlen >= 0) {
if (isofn == isoend)
1994-06-08 15:22:45 +04:00
return *fn;
isofn += isochar(isofn, isoend, joliet_level, &c);
if (c == ';') {
1994-06-08 15:22:45 +04:00
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; isofn != isoend; j = j * 10 + c - '0')
isofn += isochar(isofn, isoend,
joliet_level, &c);
1994-06-08 15:22:45 +04:00
return i - j;
}
1996-02-10 00:31:50 +03:00
if (((u_char) c) != *fn) {
1994-06-08 15:22:45 +04:00
if (c >= 'A' && c <= 'Z') {
if (c + ('a' - 'A') != *fn) {
if (*fn >= 'a' && *fn <= 'z')
return *fn - ('a' - 'A') - c;
else
return *fn - c;
}
} else
return *fn - c;
}
fn++;
}
if (isofn != isoend) {
isofn += isochar(isofn, isoend, joliet_level, &c);
switch (c) {
1994-06-08 15:22:45 +04:00
default:
return -1;
case '.':
if (isofn != isoend) {
isochar(isofn, isoend, joliet_level, &c);
if (c == ';')
return 0;
}
return -1;
1994-06-08 15:22:45 +04:00
case ';':
return 0;
}
}
return 0;
}
/*
* translate a filename
*/
void
isofntrans(infn, infnlen, outfn, outfnlen, original, assoc, joliet_level)
1994-07-03 13:51:58 +04:00
u_char *infn, *outfn;
1994-06-30 11:25:23 +04:00
int infnlen;
1994-07-03 13:51:58 +04:00
u_short *outfnlen;
1994-06-30 11:25:23 +04:00
int original;
int assoc;
int joliet_level;
1994-06-08 15:22:45 +04:00
{
int fnidx = 0;
u_char *infnend = infn + infnlen;
1994-06-08 15:22:45 +04:00
if (assoc) {
*outfn++ = ASSOCCHAR;
fnidx++;
}
for (; infn != infnend; fnidx++) {
char c;
infn += isochar(infn, infnend, joliet_level, &c);
if (!original && joliet_level == 0 && c >= 'A' && c <= 'Z')
1994-06-08 15:22:45 +04:00
*outfn++ = c + ('a' - 'A');
else if (!original && c == ';') {
if (fnidx > 0 && outfn[-1] == '.')
fnidx--;
1994-06-08 15:22:45 +04:00
break;
} else
1994-06-08 15:22:45 +04:00
*outfn++ = c;
}
*outfnlen = fnidx;
}