1994-05-24 10:09:53 +00: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
|
1999-04-18 10:58:03 +00:00
|
|
|
* by Atsushi Murai (amurai@spec.co.jp). Joliet support was added by
|
|
|
|
* Joachim Kuebart (joki@kuebart.stuttgart.netsurf.de).
|
1994-05-24 10:09:53 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*
|
1997-02-10 02:22:35 +00:00
|
|
|
* @(#)cd9660_util.c 8.3 (Berkeley) 12/5/94
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-11 00:34:37 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
2002-05-04 02:37:00 +00:00
|
|
|
#include <sys/systm.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/vnode.h>
|
2003-09-26 20:26:25 +00:00
|
|
|
#include <sys/iconv.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2007-02-11 13:54:25 +00:00
|
|
|
#include <fs/cd9660/iso.h>
|
|
|
|
#include <fs/cd9660/cd9660_mount.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2003-09-26 20:26:25 +00:00
|
|
|
extern struct iconv_functions *cd9660_iconv;
|
2001-02-13 11:48:31 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
/*
|
|
|
|
* Get one character out of an iso filename
|
|
|
|
* Obey joliet_level
|
|
|
|
* Return number of bytes consumed
|
|
|
|
*/
|
|
|
|
int
|
2003-09-26 20:26:25 +00:00
|
|
|
isochar(isofn, isoend, joliet_level, c, clen, flags, handle)
|
1999-04-18 10:58:03 +00:00
|
|
|
u_char *isofn;
|
|
|
|
u_char *isoend;
|
|
|
|
int joliet_level;
|
2003-09-26 20:26:25 +00:00
|
|
|
u_short *c;
|
|
|
|
int *clen;
|
|
|
|
int flags;
|
|
|
|
void *handle;
|
1999-04-18 10:58:03 +00:00
|
|
|
{
|
2003-09-26 20:26:25 +00:00
|
|
|
size_t i, j, len;
|
|
|
|
char inbuf[3], outbuf[3], *inp, *outp;
|
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
*c = *isofn++;
|
2003-09-26 20:26:25 +00:00
|
|
|
if (clen) *clen = 1;
|
1999-04-18 10:58:03 +00:00
|
|
|
if (joliet_level == 0 || isofn == isoend)
|
|
|
|
/* (00) and (01) are one byte in Joliet, too */
|
|
|
|
return 1;
|
|
|
|
|
2003-09-26 20:26:25 +00:00
|
|
|
if (flags & ISOFSMNT_KICONV && cd9660_iconv) {
|
|
|
|
i = j = len = 2;
|
|
|
|
inbuf[0]=(char)*(isofn - 1);
|
|
|
|
inbuf[1]=(char)*isofn;
|
|
|
|
inbuf[2]='\0';
|
|
|
|
inp = inbuf;
|
|
|
|
outp = outbuf;
|
|
|
|
cd9660_iconv->convchr(handle, (const char **)&inp, &i, &outp, &j);
|
|
|
|
len -= j;
|
|
|
|
if (clen) *clen = len;
|
|
|
|
*c = '\0';
|
|
|
|
while(len--)
|
|
|
|
*c |= (*(outp - len - 1) & 0xff) << (len << 3);
|
|
|
|
} else {
|
|
|
|
switch (*c) {
|
|
|
|
default:
|
|
|
|
*c = '?';
|
|
|
|
break;
|
|
|
|
case '\0':
|
|
|
|
*c = *isofn;
|
|
|
|
break;
|
|
|
|
}
|
1999-04-18 10:58:03 +00:00
|
|
|
}
|
2001-02-13 11:48:31 +00:00
|
|
|
|
1999-04-18 10:58:03 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* translate and compare a filename
|
1999-04-18 10:58:03 +00:00
|
|
|
* returns (fn - isofn)
|
1994-05-24 10:09:53 +00:00
|
|
|
* Note: Version number plus ';' may be omitted.
|
|
|
|
*/
|
|
|
|
int
|
2003-09-26 20:26:25 +00:00
|
|
|
isofncmp(fn, fnlen, isofn, isolen, joliet_level, flags, handle, lhandle)
|
1997-02-12 14:07:26 +00:00
|
|
|
u_char *fn;
|
|
|
|
int fnlen;
|
|
|
|
u_char *isofn;
|
|
|
|
int isolen;
|
1999-04-18 10:58:03 +00:00
|
|
|
int joliet_level;
|
2003-09-26 20:26:25 +00:00
|
|
|
int flags;
|
|
|
|
void *handle;
|
|
|
|
void *lhandle;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
|
|
|
int i, j;
|
2003-09-26 20:26:25 +00:00
|
|
|
u_short c, d;
|
|
|
|
u_char *fnend = fn + fnlen, *isoend = isofn + isolen;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
2003-09-26 20:26:25 +00:00
|
|
|
for (; fn < fnend; ) {
|
|
|
|
d = sgetrune(fn, fnend - fn, (char const **)&fn, flags, lhandle);
|
1999-04-18 10:58:03 +00:00
|
|
|
if (isofn == isoend)
|
2003-09-26 20:26:25 +00:00
|
|
|
return d;
|
|
|
|
isofn += isochar(isofn, isoend, joliet_level, &c, NULL, flags, handle);
|
1999-04-18 10:58:03 +00:00
|
|
|
if (c == ';') {
|
2003-09-26 20:26:25 +00:00
|
|
|
if (d != ';')
|
|
|
|
return d;
|
|
|
|
for (i = 0; fn < fnend; i = i * 10 + *fn++ - '0') {
|
1994-05-24 10:09:53 +00:00
|
|
|
if (*fn < '0' || *fn > '9') {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
1999-04-18 10:58:03 +00:00
|
|
|
for (j = 0; isofn != isoend; j = j * 10 + c - '0')
|
|
|
|
isofn += isochar(isofn, isoend,
|
2003-09-26 20:26:25 +00:00
|
|
|
joliet_level, &c,
|
|
|
|
NULL, flags, handle);
|
1994-05-24 10:09:53 +00:00
|
|
|
return i - j;
|
|
|
|
}
|
2003-09-26 20:26:25 +00:00
|
|
|
if (c != d) {
|
1994-05-24 10:09:53 +00:00
|
|
|
if (c >= 'A' && c <= 'Z') {
|
2003-09-26 20:26:25 +00:00
|
|
|
if (c + ('a' - 'A') != d) {
|
|
|
|
if (d >= 'a' && d <= 'z')
|
|
|
|
return d - ('a' - 'A') - c;
|
1994-05-24 10:09:53 +00:00
|
|
|
else
|
2003-09-26 20:26:25 +00:00
|
|
|
return d - c;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
} else
|
2003-09-26 20:26:25 +00:00
|
|
|
return d - c;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
1999-04-18 10:58:03 +00:00
|
|
|
if (isofn != isoend) {
|
2003-09-26 20:26:25 +00:00
|
|
|
isofn += isochar(isofn, isoend, joliet_level, &c, NULL, flags, handle);
|
1999-04-18 10:58:03 +00:00
|
|
|
switch (c) {
|
1994-05-24 10:09:53 +00:00
|
|
|
default:
|
1999-04-18 10:58:03 +00:00
|
|
|
return -c;
|
1994-05-24 10:09:53 +00:00
|
|
|
case '.':
|
1999-04-18 10:58:03 +00:00
|
|
|
if (isofn != isoend) {
|
2003-09-26 20:26:25 +00:00
|
|
|
isochar(isofn, isoend, joliet_level, &c,
|
|
|
|
NULL, flags, handle);
|
1999-04-18 10:58:03 +00:00
|
|
|
if (c == ';')
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
1994-05-24 10:09:53 +00:00
|
|
|
case ';':
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-04-18 10:58:03 +00:00
|
|
|
* translate a filename of length > 0
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
void
|
2003-09-26 20:26:25 +00:00
|
|
|
isofntrans(infn, infnlen, outfn, outfnlen, original, assoc, joliet_level, flags, handle)
|
1997-02-12 14:07:26 +00:00
|
|
|
u_char *infn;
|
1997-02-10 02:22:35 +00:00
|
|
|
int infnlen;
|
1997-02-12 14:07:26 +00:00
|
|
|
u_char *outfn;
|
1997-02-10 02:22:35 +00:00
|
|
|
u_short *outfnlen;
|
|
|
|
int original;
|
|
|
|
int assoc;
|
1999-04-18 10:58:03 +00:00
|
|
|
int joliet_level;
|
2003-09-26 20:26:25 +00:00
|
|
|
int flags;
|
|
|
|
void *handle;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2003-09-26 20:26:25 +00:00
|
|
|
u_short c, d = '\0';
|
|
|
|
u_char *outp = outfn, *infnend = infn + infnlen;
|
|
|
|
int clen;
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (assoc) {
|
2003-09-26 20:26:25 +00:00
|
|
|
*outp++ = ASSOCCHAR;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2003-09-26 20:26:25 +00:00
|
|
|
for (; infn != infnend; ) {
|
|
|
|
infn += isochar(infn, infnend, joliet_level, &c, &clen, flags, handle);
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1999-05-08 04:35:47 +00:00
|
|
|
if (!original && !joliet_level && c >= 'A' && c <= 'Z')
|
2003-09-26 20:26:25 +00:00
|
|
|
c += ('a' - 'A');
|
1999-04-18 10:58:03 +00:00
|
|
|
else if (!original && c == ';') {
|
2003-09-26 20:26:25 +00:00
|
|
|
outp -= (d == '.');
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
2003-09-26 20:26:25 +00:00
|
|
|
}
|
1999-04-18 10:58:03 +00:00
|
|
|
d = c;
|
2003-09-26 20:26:25 +00:00
|
|
|
while(clen--)
|
|
|
|
*outp++ = c >> (clen << 3);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
2003-09-26 20:26:25 +00:00
|
|
|
*outfnlen = outp - outfn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* same as sgetrune(3)
|
|
|
|
*/
|
|
|
|
u_short
|
|
|
|
sgetrune(string, n, result, flags, handle)
|
|
|
|
const char *string;
|
|
|
|
size_t n;
|
|
|
|
char const **result;
|
|
|
|
int flags;
|
|
|
|
void *handle;
|
|
|
|
{
|
|
|
|
size_t i, j, len;
|
|
|
|
char outbuf[3], *outp;
|
|
|
|
u_short c = '\0';
|
|
|
|
|
|
|
|
len = i = (n < 2) ? n : 2;
|
|
|
|
j = 2;
|
|
|
|
outp = outbuf;
|
|
|
|
|
|
|
|
if (flags & ISOFSMNT_KICONV && cd9660_iconv) {
|
|
|
|
cd9660_iconv->convchr(handle, (const char **)&string,
|
|
|
|
&i, &outp, &j);
|
|
|
|
len -= i;
|
|
|
|
} else {
|
|
|
|
len = 1;
|
|
|
|
string++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result) *result = string;
|
|
|
|
while(len--) c |= (*(string - len - 1) & 0xff) << (len << 3);
|
|
|
|
return (c);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|