xref: /freebsd/sys/fs/udf/udf_vnops.c (revision 10bcafe9abdb866e20e561bf567f15c0a06a0114)
151a7b740SScott Long /*-
251a7b740SScott Long  * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
351a7b740SScott Long  * All rights reserved.
451a7b740SScott Long  *
551a7b740SScott Long  * Redistribution and use in source and binary forms, with or without
651a7b740SScott Long  * modification, are permitted provided that the following conditions
751a7b740SScott Long  * are met:
851a7b740SScott Long  * 1. Redistributions of source code must retain the above copyright
951a7b740SScott Long  *    notice, this list of conditions and the following disclaimer.
1051a7b740SScott Long  * 2. Redistributions in binary form must reproduce the above copyright
1151a7b740SScott Long  *    notice, this list of conditions and the following disclaimer in the
1251a7b740SScott Long  *    documentation and/or other materials provided with the distribution.
1351a7b740SScott Long  *
1451a7b740SScott Long  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1551a7b740SScott Long  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1651a7b740SScott Long  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1751a7b740SScott Long  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1851a7b740SScott Long  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1951a7b740SScott Long  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2051a7b740SScott Long  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2151a7b740SScott Long  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2251a7b740SScott Long  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2351a7b740SScott Long  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2451a7b740SScott Long  * SUCH DAMAGE.
2551a7b740SScott Long  *
2651a7b740SScott Long  * $FreeBSD$
2751a7b740SScott Long  */
2851a7b740SScott Long 
2951a7b740SScott Long /* udf_vnops.c */
3051a7b740SScott Long /* Take care of the vnode side of things */
3151a7b740SScott Long 
3251a7b740SScott Long #include <sys/param.h>
3351a7b740SScott Long #include <sys/systm.h>
3451a7b740SScott Long #include <sys/namei.h>
3551a7b740SScott Long #include <sys/kernel.h>
3651a7b740SScott Long #include <sys/malloc.h>
3751a7b740SScott Long #include <sys/stat.h>
3851a7b740SScott Long #include <sys/bio.h>
394e94fafcSPoul-Henning Kamp #include <sys/conf.h>
4051a7b740SScott Long #include <sys/buf.h>
416565282cSScott Long #include <sys/iconv.h>
4251a7b740SScott Long #include <sys/mount.h>
4351a7b740SScott Long #include <sys/vnode.h>
4451a7b740SScott Long #include <sys/dirent.h>
4551a7b740SScott Long #include <sys/queue.h>
4651a7b740SScott Long #include <sys/unistd.h>
4789ec2c3cSScott Long #include <sys/endian.h>
4851a7b740SScott Long 
4951a7b740SScott Long #include <vm/uma.h>
5051a7b740SScott Long 
5151a7b740SScott Long #include <fs/udf/ecma167-udf.h>
5251a7b740SScott Long #include <fs/udf/osta.h>
5351a7b740SScott Long #include <fs/udf/udf.h>
546565282cSScott Long #include <fs/udf/udf_mount.h>
556565282cSScott Long 
566565282cSScott Long extern struct iconv_functions *udf_iconv;
5751a7b740SScott Long 
586fde64c7SPoul-Henning Kamp static vop_access_t	udf_access;
596fde64c7SPoul-Henning Kamp static vop_getattr_t	udf_getattr;
6035e06624SPav Lucistnik static vop_open_t	udf_open;
616fde64c7SPoul-Henning Kamp static vop_ioctl_t	udf_ioctl;
626fde64c7SPoul-Henning Kamp static vop_pathconf_t	udf_pathconf;
636fde64c7SPoul-Henning Kamp static vop_read_t	udf_read;
646fde64c7SPoul-Henning Kamp static vop_readdir_t	udf_readdir;
656fde64c7SPoul-Henning Kamp static vop_readlink_t	udf_readlink;
666fde64c7SPoul-Henning Kamp static vop_strategy_t	udf_strategy;
676fde64c7SPoul-Henning Kamp static vop_bmap_t	udf_bmap;
686fde64c7SPoul-Henning Kamp static vop_cachedlookup_t	udf_lookup;
696fde64c7SPoul-Henning Kamp static vop_reclaim_t	udf_reclaim;
7010bcafe9SPawel Jakub Dawidek static vop_vptofh_t	udf_vptofh;
719d32fde8SScott Long static int udf_readatoffset(struct udf_node *node, int *size, off_t offset,
729d32fde8SScott Long     struct buf **bp, uint8_t **data);
739d32fde8SScott Long static int udf_bmap_internal(struct udf_node *node, off_t offset,
749d32fde8SScott Long     daddr_t *sector, uint32_t *max_size);
7551a7b740SScott Long 
76aec0fb7bSPoul-Henning Kamp static struct vop_vector udf_vnodeops = {
77aec0fb7bSPoul-Henning Kamp 	.vop_default =		&default_vnodeops,
7883c64397SPoul-Henning Kamp 
79aec0fb7bSPoul-Henning Kamp 	.vop_access =		udf_access,
80aec0fb7bSPoul-Henning Kamp 	.vop_bmap =		udf_bmap,
81aec0fb7bSPoul-Henning Kamp 	.vop_cachedlookup =	udf_lookup,
82aec0fb7bSPoul-Henning Kamp 	.vop_getattr =		udf_getattr,
83aec0fb7bSPoul-Henning Kamp 	.vop_ioctl =		udf_ioctl,
84aec0fb7bSPoul-Henning Kamp 	.vop_lookup =		vfs_cache_lookup,
8535e06624SPav Lucistnik 	.vop_open =		udf_open,
86aec0fb7bSPoul-Henning Kamp 	.vop_pathconf =		udf_pathconf,
87aec0fb7bSPoul-Henning Kamp 	.vop_read =		udf_read,
88aec0fb7bSPoul-Henning Kamp 	.vop_readdir =		udf_readdir,
89aec0fb7bSPoul-Henning Kamp 	.vop_readlink =		udf_readlink,
90aec0fb7bSPoul-Henning Kamp 	.vop_reclaim =		udf_reclaim,
91aec0fb7bSPoul-Henning Kamp 	.vop_strategy =		udf_strategy,
9210bcafe9SPawel Jakub Dawidek 	.vop_vptofh =		udf_vptofh,
9351a7b740SScott Long };
9451a7b740SScott Long 
955bb84bc8SRobert Watson MALLOC_DEFINE(M_UDFFID, "udf_fid", "UDF FileId structure");
965bb84bc8SRobert Watson MALLOC_DEFINE(M_UDFDS, "udf_ds", "UDF Dirstream structure");
9751a7b740SScott Long 
984576293dSScott Long #define UDF_INVALID_BMAP	-1
998db4c2f2SScott Long 
10051a7b740SScott Long int
10151a7b740SScott Long udf_allocv(struct mount *mp, struct vnode **vpp, struct thread *td)
10251a7b740SScott Long {
10351a7b740SScott Long 	int error;
10451a7b740SScott Long 	struct vnode *vp;
10551a7b740SScott Long 
106aec0fb7bSPoul-Henning Kamp 	error = getnewvnode("udf", mp, &udf_vnodeops, &vp);
10751a7b740SScott Long 	if (error) {
10851a7b740SScott Long 		printf("udf_allocv: failed to allocate new vnode\n");
10951a7b740SScott Long 		return (error);
11051a7b740SScott Long 	}
11151a7b740SScott Long 
11251a7b740SScott Long 	*vpp = vp;
11351a7b740SScott Long 	return (0);
11451a7b740SScott Long }
11551a7b740SScott Long 
11651a7b740SScott Long /* Convert file entry permission (5 bits per owner/group/user) to a mode_t */
11751a7b740SScott Long static mode_t
11851a7b740SScott Long udf_permtomode(struct udf_node *node)
11951a7b740SScott Long {
120c2d6947dSJeroen Ruigrok van der Werven 	uint32_t perm;
121bf1c3dddSScott Long 	uint16_t flags;
12251a7b740SScott Long 	mode_t mode;
12351a7b740SScott Long 
124bf1c3dddSScott Long 	perm = le32toh(node->fentry->perm);
125bf1c3dddSScott Long 	flags = le16toh(node->fentry->icbtag.flags);
12651a7b740SScott Long 
12751a7b740SScott Long 	mode = perm & UDF_FENTRY_PERM_USER_MASK;
12851a7b740SScott Long 	mode |= ((perm & UDF_FENTRY_PERM_GRP_MASK) >> 2);
12951a7b740SScott Long 	mode |= ((perm & UDF_FENTRY_PERM_OWNER_MASK) >> 4);
13051a7b740SScott Long 	mode |= ((flags & UDF_ICB_TAG_FLAGS_STICKY) << 4);
13151a7b740SScott Long 	mode |= ((flags & UDF_ICB_TAG_FLAGS_SETGID) << 6);
13251a7b740SScott Long 	mode |= ((flags & UDF_ICB_TAG_FLAGS_SETUID) << 8);
13351a7b740SScott Long 
13451a7b740SScott Long 	return (mode);
13551a7b740SScott Long }
13651a7b740SScott Long 
13751a7b740SScott Long static int
13851a7b740SScott Long udf_access(struct vop_access_args *a)
13951a7b740SScott Long {
14051a7b740SScott Long 	struct vnode *vp;
14151a7b740SScott Long 	struct udf_node *node;
14251a7b740SScott Long 	mode_t a_mode, mode;
14351a7b740SScott Long 
14451a7b740SScott Long 	vp = a->a_vp;
14551a7b740SScott Long 	node = VTON(vp);
14651a7b740SScott Long 	a_mode = a->a_mode;
14751a7b740SScott Long 
14851a7b740SScott Long 	if (a_mode & VWRITE) {
14951a7b740SScott Long 		switch (vp->v_type) {
15051a7b740SScott Long 		case VDIR:
15151a7b740SScott Long 		case VLNK:
15251a7b740SScott Long 		case VREG:
15351a7b740SScott Long 			return (EROFS);
15451a7b740SScott Long 			/* NOT REACHED */
15551a7b740SScott Long 		default:
15651a7b740SScott Long 			break;
15751a7b740SScott Long 		}
15851a7b740SScott Long 	}
15951a7b740SScott Long 
16051a7b740SScott Long 	mode = udf_permtomode(node);
16151a7b740SScott Long 
16251a7b740SScott Long 	return (vaccess(vp->v_type, mode, node->fentry->uid, node->fentry->gid,
16351a7b740SScott Long 	    a_mode, a->a_cred, NULL));
16451a7b740SScott Long }
16551a7b740SScott Long 
16635e06624SPav Lucistnik static int
16735e06624SPav Lucistnik udf_open(struct vop_open_args *ap) {
16835e06624SPav Lucistnik 	struct udf_node *np = VTON(ap->a_vp);
16935e06624SPav Lucistnik 	off_t fsize;
17035e06624SPav Lucistnik 
17135e06624SPav Lucistnik 	fsize = le64toh(np->fentry->inf_len);
17235e06624SPav Lucistnik 	vnode_create_vobject(ap->a_vp, fsize, ap->a_td);
17335e06624SPav Lucistnik 	return 0;
17435e06624SPav Lucistnik }
17535e06624SPav Lucistnik 
17651a7b740SScott Long static int mon_lens[2][12] = {
17751a7b740SScott Long 	{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
17851a7b740SScott Long 	{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
17951a7b740SScott Long };
18051a7b740SScott Long 
18151a7b740SScott Long static int
18251a7b740SScott Long udf_isaleapyear(int year)
18351a7b740SScott Long {
18451a7b740SScott Long 	int i;
18551a7b740SScott Long 
18651a7b740SScott Long 	i = (year % 4) ? 0 : 1;
18751a7b740SScott Long 	i &= (year % 100) ? 1 : 0;
18851a7b740SScott Long 	i |= (year % 400) ? 0 : 1;
18951a7b740SScott Long 
19051a7b740SScott Long 	return i;
19151a7b740SScott Long }
19251a7b740SScott Long 
19351a7b740SScott Long /*
19451a7b740SScott Long  * XXX This is just a rough hack.  Daylight savings isn't calculated and tv_nsec
19551a7b740SScott Long  * is ignored.
19651a7b740SScott Long  * Timezone calculation compliments of Julian Elischer <julian@elischer.org>.
19751a7b740SScott Long  */
19851a7b740SScott Long static void
19951a7b740SScott Long udf_timetotimespec(struct timestamp *time, struct timespec *t)
20051a7b740SScott Long {
201bf1c3dddSScott Long 	int i, lpyear, daysinyear, year;
20251a7b740SScott Long 	union {
203c2d6947dSJeroen Ruigrok van der Werven 		uint16_t	u_tz_offset;
20451a7b740SScott Long 		int16_t		s_tz_offset;
20551a7b740SScott Long 	} tz;
20651a7b740SScott Long 
20751a7b740SScott Long 	t->tv_nsec = 0;
20851a7b740SScott Long 
20951a7b740SScott Long 	/* DirectCD seems to like using bogus year values */
210bf1c3dddSScott Long 	year = le16toh(time->year);
211bf1c3dddSScott Long 	if (year < 1970) {
21251a7b740SScott Long 		t->tv_sec = 0;
21351a7b740SScott Long 		return;
21451a7b740SScott Long 	}
21551a7b740SScott Long 
21651a7b740SScott Long 	/* Calculate the time and day */
21751a7b740SScott Long 	t->tv_sec = time->second;
21851a7b740SScott Long 	t->tv_sec += time->minute * 60;
21951a7b740SScott Long 	t->tv_sec += time->hour * 3600;
22051a7b740SScott Long 	t->tv_sec += time->day * 3600 * 24;
22151a7b740SScott Long 
222befb7f33SChristian Brueffer 	/* Calculate the month */
223bf1c3dddSScott Long 	lpyear = udf_isaleapyear(year);
22451a7b740SScott Long 	for (i = 1; i < time->month; i++)
22551a7b740SScott Long 		t->tv_sec += mon_lens[lpyear][i] * 3600 * 24;
22651a7b740SScott Long 
22751a7b740SScott Long 	/* Speed up the calculation */
228bf1c3dddSScott Long 	if (year > 1979)
22951a7b740SScott Long 		t->tv_sec += 315532800;
230bf1c3dddSScott Long 	if (year > 1989)
23151a7b740SScott Long 		t->tv_sec += 315619200;
232bf1c3dddSScott Long 	if (year > 1999)
23351a7b740SScott Long 		t->tv_sec += 315532800;
234bf1c3dddSScott Long 	for (i = 2000; i < year; i++) {
23551a7b740SScott Long 		daysinyear = udf_isaleapyear(i) + 365 ;
23651a7b740SScott Long 		t->tv_sec += daysinyear * 3600 * 24;
23751a7b740SScott Long 	}
23851a7b740SScott Long 
23951a7b740SScott Long 	/*
24051a7b740SScott Long 	 * Calculate the time zone.  The timezone is 12 bit signed 2's
241befb7f33SChristian Brueffer 	 * complement, so we gotta do some extra magic to handle it right.
24251a7b740SScott Long 	 */
243bf1c3dddSScott Long 	tz.u_tz_offset = le16toh(time->type_tz);
24451a7b740SScott Long 	tz.u_tz_offset &= 0x0fff;
24551a7b740SScott Long 	if (tz.u_tz_offset & 0x0800)
24651a7b740SScott Long 		tz.u_tz_offset |= 0xf000;	/* extend the sign to 16 bits */
24751a7b740SScott Long 	if ((time->type_tz & 0x1000) && (tz.s_tz_offset != -2047))
24851a7b740SScott Long 		t->tv_sec -= tz.s_tz_offset * 60;
24951a7b740SScott Long 
25051a7b740SScott Long 	return;
25151a7b740SScott Long }
25251a7b740SScott Long 
25351a7b740SScott Long static int
25451a7b740SScott Long udf_getattr(struct vop_getattr_args *a)
25551a7b740SScott Long {
25651a7b740SScott Long 	struct vnode *vp;
25751a7b740SScott Long 	struct udf_node *node;
25851a7b740SScott Long 	struct vattr *vap;
25951a7b740SScott Long 	struct file_entry *fentry;
26051a7b740SScott Long 	struct timespec ts;
26151a7b740SScott Long 
26251a7b740SScott Long 	ts.tv_sec = 0;
26351a7b740SScott Long 
26451a7b740SScott Long 	vp = a->a_vp;
26551a7b740SScott Long 	vap = a->a_vap;
26651a7b740SScott Long 	node = VTON(vp);
26751a7b740SScott Long 	fentry = node->fentry;
26851a7b740SScott Long 
269c049546eSPoul-Henning Kamp 	vap->va_fsid = dev2udev(node->udfmp->im_dev);
27051a7b740SScott Long 	vap->va_fileid = node->hash_id;
27151a7b740SScott Long 	vap->va_mode = udf_permtomode(node);
272bf1c3dddSScott Long 	vap->va_nlink = le16toh(fentry->link_cnt);
27351a7b740SScott Long 	/*
27451a7b740SScott Long 	 * XXX The spec says that -1 is valid for uid/gid and indicates an
27551a7b740SScott Long 	 * invalid uid/gid.  How should this be represented?
27651a7b740SScott Long 	 */
277bf1c3dddSScott Long 	vap->va_uid = (le32toh(fentry->uid) == -1) ? 0 : le32toh(fentry->uid);
278bf1c3dddSScott Long 	vap->va_gid = (le32toh(fentry->gid) == -1) ? 0 : le32toh(fentry->gid);
27951a7b740SScott Long 	udf_timetotimespec(&fentry->atime, &vap->va_atime);
28051a7b740SScott Long 	udf_timetotimespec(&fentry->mtime, &vap->va_mtime);
28151a7b740SScott Long 	vap->va_ctime = vap->va_mtime; /* XXX Stored as an Extended Attribute */
28251a7b740SScott Long 	vap->va_rdev = 0; /* XXX */
28351a7b740SScott Long 	if (vp->v_type & VDIR) {
28451a7b740SScott Long 		/*
28551a7b740SScott Long 		 * Directories that are recorded within their ICB will show
28651a7b740SScott Long 		 * as having 0 blocks recorded.  Since tradition dictates
28751a7b740SScott Long 		 * that directories consume at least one logical block,
28851a7b740SScott Long 		 * make it appear so.
28951a7b740SScott Long 		 */
29051a7b740SScott Long 		if (fentry->logblks_rec != 0) {
291bf1c3dddSScott Long 			vap->va_size =
292bf1c3dddSScott Long 			    le64toh(fentry->logblks_rec) * node->udfmp->bsize;
29351a7b740SScott Long 		} else {
29451a7b740SScott Long 			vap->va_size = node->udfmp->bsize;
29551a7b740SScott Long 		}
29651a7b740SScott Long 	} else {
297bf1c3dddSScott Long 		vap->va_size = le64toh(fentry->inf_len);
29851a7b740SScott Long 	}
29951a7b740SScott Long 	vap->va_flags = 0;
30051a7b740SScott Long 	vap->va_gen = 1;
30151a7b740SScott Long 	vap->va_blocksize = node->udfmp->bsize;
302bf1c3dddSScott Long 	vap->va_bytes = le64toh(fentry->inf_len);
30351a7b740SScott Long 	vap->va_type = vp->v_type;
30451a7b740SScott Long 	vap->va_filerev = 0; /* XXX */
30551a7b740SScott Long 	return (0);
30651a7b740SScott Long }
30751a7b740SScott Long 
30851a7b740SScott Long /*
309bf1c3dddSScott Long  * File specific ioctls.
31051a7b740SScott Long  */
31151a7b740SScott Long static int
31251a7b740SScott Long udf_ioctl(struct vop_ioctl_args *a)
31351a7b740SScott Long {
314c80a90c5SScott Long 	printf("%s called\n", __func__);
3151d02d910SPoul-Henning Kamp 	return (ENOTTY);
31651a7b740SScott Long }
31751a7b740SScott Long 
31851a7b740SScott Long /*
31951a7b740SScott Long  * I'm not sure that this has much value in a read-only filesystem, but
32051a7b740SScott Long  * cd9660 has it too.
32151a7b740SScott Long  */
32251a7b740SScott Long static int
32351a7b740SScott Long udf_pathconf(struct vop_pathconf_args *a)
32451a7b740SScott Long {
32551a7b740SScott Long 
32651a7b740SScott Long 	switch (a->a_name) {
32751a7b740SScott Long 	case _PC_LINK_MAX:
32851a7b740SScott Long 		*a->a_retval = 65535;
32951a7b740SScott Long 		return (0);
33051a7b740SScott Long 	case _PC_NAME_MAX:
33151a7b740SScott Long 		*a->a_retval = NAME_MAX;
33251a7b740SScott Long 		return (0);
33351a7b740SScott Long 	case _PC_PATH_MAX:
33451a7b740SScott Long 		*a->a_retval = PATH_MAX;
33551a7b740SScott Long 		return (0);
33651a7b740SScott Long 	case _PC_NO_TRUNC:
33751a7b740SScott Long 		*a->a_retval = 1;
33851a7b740SScott Long 		return (0);
33951a7b740SScott Long 	default:
34051a7b740SScott Long 		return (EINVAL);
34151a7b740SScott Long 	}
34251a7b740SScott Long }
34351a7b740SScott Long 
3440c09ac0dSPav Lucistnik #define lblkno(udfmp, loc)	((loc) >> (udfmp)->bshift)
3450c09ac0dSPav Lucistnik #define blkoff(udfmp, loc)	((loc) & (udfmp)->bmask)
3460c09ac0dSPav Lucistnik #define lblktosize(imp, blk)	((blk) << (udfmp)->bshift)
34751a7b740SScott Long 
3480c09ac0dSPav Lucistnik static int
3490c09ac0dSPav Lucistnik udf_read(struct vop_read_args *ap)
3500c09ac0dSPav Lucistnik {
3510c09ac0dSPav Lucistnik 	struct vnode *vp = ap->a_vp;
3520c09ac0dSPav Lucistnik 	struct uio *uio = ap->a_uio;
3530c09ac0dSPav Lucistnik 	struct udf_node *node = VTON(vp);
3540c09ac0dSPav Lucistnik 	struct udf_mnt *udfmp;
3550c09ac0dSPav Lucistnik 	struct buf *bp;
3560c09ac0dSPav Lucistnik 	daddr_t lbn, rablock;
3570c09ac0dSPav Lucistnik 	off_t diff, fsize;
3580c09ac0dSPav Lucistnik 	int error = 0;
3590c09ac0dSPav Lucistnik 	long size, n, on;
3600c09ac0dSPav Lucistnik 
3610c09ac0dSPav Lucistnik 	if (uio->uio_resid == 0)
3620c09ac0dSPav Lucistnik 		return (0);
36351a7b740SScott Long 	if (uio->uio_offset < 0)
36451a7b740SScott Long 		return (EINVAL);
365bf1c3dddSScott Long 	fsize = le64toh(node->fentry->inf_len);
3660c09ac0dSPav Lucistnik 	udfmp = node->udfmp;
3670c09ac0dSPav Lucistnik 	do {
3680c09ac0dSPav Lucistnik 		lbn = lblkno(udfmp, uio->uio_offset);
3690c09ac0dSPav Lucistnik 		on = blkoff(udfmp, uio->uio_offset);
3700c09ac0dSPav Lucistnik 		n = min((u_int)(udfmp->bsize - on),
3710c09ac0dSPav Lucistnik 			uio->uio_resid);
3720c09ac0dSPav Lucistnik 		diff = fsize - uio->uio_offset;
3730c09ac0dSPav Lucistnik 		if (diff <= 0)
3740c09ac0dSPav Lucistnik 			return (0);
3750c09ac0dSPav Lucistnik 		if (diff < n)
3760c09ac0dSPav Lucistnik 			n = diff;
3770c09ac0dSPav Lucistnik 		size = udfmp->bsize;
3780c09ac0dSPav Lucistnik 		rablock = lbn + 1;
3790c09ac0dSPav Lucistnik 		if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0) {
3800c09ac0dSPav Lucistnik 			if (lblktosize(udfmp, rablock) < fsize) {
3810c09ac0dSPav Lucistnik 				error = cluster_read(vp, fsize, lbn, size, NOCRED,
3820c09ac0dSPav Lucistnik 					uio->uio_resid, (ap->a_ioflag >> 16), &bp);
3830c09ac0dSPav Lucistnik 			} else {
3840c09ac0dSPav Lucistnik 				error = bread(vp, lbn, size, NOCRED, &bp);
3850c09ac0dSPav Lucistnik 			}
3860c09ac0dSPav Lucistnik 		} else {
3870c09ac0dSPav Lucistnik 			error = bread(vp, lbn, size, NOCRED, &bp);
3880c09ac0dSPav Lucistnik 		}
3890c09ac0dSPav Lucistnik 		n = min(n, size - bp->b_resid);
3900c09ac0dSPav Lucistnik 		if (error) {
39151a7b740SScott Long 			brelse(bp);
3920c09ac0dSPav Lucistnik 			return (error);
3930c09ac0dSPav Lucistnik 		}
39451a7b740SScott Long 
3950c09ac0dSPav Lucistnik 		error = uiomove(bp->b_data + on, (int)n, uio);
3960c09ac0dSPav Lucistnik 		brelse(bp);
3970c09ac0dSPav Lucistnik 	} while (error == 0 && uio->uio_resid > 0 && n != 0);
39851a7b740SScott Long 	return (error);
39951a7b740SScott Long }
40051a7b740SScott Long 
40151a7b740SScott Long /*
40251a7b740SScott Long  * Call the OSTA routines to translate the name from a CS0 dstring to a
40351a7b740SScott Long  * 16-bit Unicode String.  Hooks need to be placed in here to translate from
4046565282cSScott Long  * Unicode to the encoding that the kernel/user expects.  Return the length
4056565282cSScott Long  * of the translated string.
40651a7b740SScott Long  */
40751a7b740SScott Long static int
4086565282cSScott Long udf_transname(char *cs0string, char *destname, int len, struct udf_mnt *udfmp)
40951a7b740SScott Long {
41051a7b740SScott Long 	unicode_t *transname;
4116565282cSScott Long 	char *unibuf, *unip;
412181fc3c6SR. Imura 	int i, destlen;
413181fc3c6SR. Imura 	ssize_t unilen = 0;
4146565282cSScott Long 	size_t destleft = MAXNAMLEN;
41551a7b740SScott Long 
4166565282cSScott Long 	/* Convert 16-bit Unicode to destname */
4176565282cSScott Long 	if (udfmp->im_flags & UDFMNT_KICONV && udf_iconv) {
4186565282cSScott Long 		/* allocate a buffer big enough to hold an 8->16 bit expansion */
4196565282cSScott Long 		unibuf = uma_zalloc(udf_zone_trans, M_WAITOK);
4206565282cSScott Long 		unip = unibuf;
421181fc3c6SR. Imura 		if ((unilen = (ssize_t)udf_UncompressUnicodeByte(len, cs0string, unibuf)) == -1) {
4226565282cSScott Long 			printf("udf: Unicode translation failed\n");
4236565282cSScott Long 			uma_zfree(udf_zone_trans, unibuf);
4246565282cSScott Long 			return 0;
4256565282cSScott Long 		}
4266565282cSScott Long 
4276565282cSScott Long 		while (unilen > 0 && destleft > 0) {
4286565282cSScott Long 			udf_iconv->conv(udfmp->im_d2l, (const char **)&unibuf,
4296565282cSScott Long 				(size_t *)&unilen, (char **)&destname, &destleft);
4306565282cSScott Long 			/* Unconverted character found */
4316565282cSScott Long 			if (unilen > 0 && destleft > 0) {
4326565282cSScott Long 				*destname++ = '?';
4336565282cSScott Long 				destleft--;
4346565282cSScott Long 				unibuf += 2;
4356565282cSScott Long 				unilen -= 2;
4366565282cSScott Long 			}
4376565282cSScott Long 		}
4386565282cSScott Long 		uma_zfree(udf_zone_trans, unip);
4396565282cSScott Long 		*destname = '\0';
4406565282cSScott Long 		destlen = MAXNAMLEN - (int)destleft;
4416565282cSScott Long 	} else {
44251a7b740SScott Long 		/* allocate a buffer big enough to hold an 8->16 bit expansion */
443a163d034SWarner Losh 		transname = uma_zalloc(udf_zone_trans, M_WAITOK);
44451a7b740SScott Long 
445181fc3c6SR. Imura 		if ((unilen = (ssize_t)udf_UncompressUnicode(len, cs0string, transname)) == -1) {
44651a7b740SScott Long 			printf("udf: Unicode translation failed\n");
44751a7b740SScott Long 			uma_zfree(udf_zone_trans, transname);
44851a7b740SScott Long 			return 0;
44951a7b740SScott Long 		}
45051a7b740SScott Long 
45151a7b740SScott Long 		for (i = 0; i < unilen ; i++) {
45251a7b740SScott Long 			if (transname[i] & 0xff00) {
45351a7b740SScott Long 				destname[i] = '.';	/* Fudge the 16bit chars */
45451a7b740SScott Long 			} else {
45551a7b740SScott Long 				destname[i] = transname[i] & 0xff;
45651a7b740SScott Long 			}
45751a7b740SScott Long 		}
45851a7b740SScott Long 		uma_zfree(udf_zone_trans, transname);
4596565282cSScott Long 		destname[unilen] = 0;
460181fc3c6SR. Imura 		destlen = (int)unilen;
4616565282cSScott Long 	}
46251a7b740SScott Long 
4636565282cSScott Long 	return (destlen);
46451a7b740SScott Long }
46551a7b740SScott Long 
46651a7b740SScott Long /*
46751a7b740SScott Long  * Compare a CS0 dstring with a name passed in from the VFS layer.  Return
468befb7f33SChristian Brueffer  * 0 on a successful match, nonzero otherwise.  Unicode work may need to be done
46951a7b740SScott Long  * here also.
47051a7b740SScott Long  */
47151a7b740SScott Long static int
4726565282cSScott Long udf_cmpname(char *cs0string, char *cmpname, int cs0len, int cmplen, struct udf_mnt *udfmp)
47351a7b740SScott Long {
47495ec5961SScott Long 	char *transname;
47595ec5961SScott Long 	int error = 0;
47651a7b740SScott Long 
47795ec5961SScott Long 	/* This is overkill, but not worth creating a new zone */
478a163d034SWarner Losh 	transname = uma_zalloc(udf_zone_trans, M_WAITOK);
47995ec5961SScott Long 
4806565282cSScott Long 	cs0len = udf_transname(cs0string, transname, cs0len, udfmp);
48151a7b740SScott Long 
48251a7b740SScott Long 	/* Easy check.  If they aren't the same length, they aren't equal */
48395ec5961SScott Long 	if ((cs0len == 0) || (cs0len != cmplen))
48495ec5961SScott Long 		error = -1;
48595ec5961SScott Long 	else
48695ec5961SScott Long 		error = bcmp(transname, cmpname, cmplen);
48751a7b740SScott Long 
48895ec5961SScott Long 	uma_zfree(udf_zone_trans, transname);
48995ec5961SScott Long 	return (error);
49051a7b740SScott Long }
49151a7b740SScott Long 
49251a7b740SScott Long struct udf_uiodir {
49351a7b740SScott Long 	struct dirent *dirent;
49451a7b740SScott Long 	u_long *cookies;
49551a7b740SScott Long 	int ncookies;
49651a7b740SScott Long 	int acookies;
49751a7b740SScott Long 	int eofflag;
49851a7b740SScott Long };
49951a7b740SScott Long 
50051a7b740SScott Long static int
50151a7b740SScott Long udf_uiodir(struct udf_uiodir *uiodir, int de_size, struct uio *uio, long cookie)
50251a7b740SScott Long {
50351a7b740SScott Long 	if (uiodir->cookies != NULL) {
50451a7b740SScott Long 		if (++uiodir->acookies > uiodir->ncookies) {
50551a7b740SScott Long 			uiodir->eofflag = 0;
50651a7b740SScott Long 			return (-1);
50751a7b740SScott Long 		}
50851a7b740SScott Long 		*uiodir->cookies++ = cookie;
50951a7b740SScott Long 	}
51051a7b740SScott Long 
51151a7b740SScott Long 	if (uio->uio_resid < de_size) {
51251a7b740SScott Long 		uiodir->eofflag = 0;
51351a7b740SScott Long 		return (-1);
51451a7b740SScott Long 	}
51551a7b740SScott Long 
516c9524588SDag-Erling Smørgrav 	return (uiomove(uiodir->dirent, de_size, uio));
51751a7b740SScott Long }
51851a7b740SScott Long 
5191703656aSScott Long static struct udf_dirstream *
5201703656aSScott Long udf_opendir(struct udf_node *node, int offset, int fsize, struct udf_mnt *udfmp)
5211703656aSScott Long {
5221703656aSScott Long 	struct udf_dirstream *ds;
5231703656aSScott Long 
524a163d034SWarner Losh 	ds = uma_zalloc(udf_zone_ds, M_WAITOK | M_ZERO);
5251703656aSScott Long 
5261703656aSScott Long 	ds->node = node;
5271703656aSScott Long 	ds->offset = offset;
5281703656aSScott Long 	ds->udfmp = udfmp;
5291703656aSScott Long 	ds->fsize = fsize;
5301703656aSScott Long 
5311703656aSScott Long 	return (ds);
5321703656aSScott Long }
5331703656aSScott Long 
5341703656aSScott Long static struct fileid_desc *
5351703656aSScott Long udf_getfid(struct udf_dirstream *ds)
5361703656aSScott Long {
5371703656aSScott Long 	struct fileid_desc *fid;
5381703656aSScott Long 	int error, frag_size = 0, total_fid_size;
5391703656aSScott Long 
5401703656aSScott Long 	/* End of directory? */
5411703656aSScott Long 	if (ds->offset + ds->off >= ds->fsize) {
5421703656aSScott Long 		ds->error = 0;
5431703656aSScott Long 		return (NULL);
5441703656aSScott Long 	}
5451703656aSScott Long 
5461703656aSScott Long 	/* Grab the first extent of the directory */
5471703656aSScott Long 	if (ds->off == 0) {
5481703656aSScott Long 		ds->size = 0;
5491703656aSScott Long 		error = udf_readatoffset(ds->node, &ds->size, ds->offset,
5501703656aSScott Long 		    &ds->bp, &ds->data);
5511703656aSScott Long 		if (error) {
5521703656aSScott Long 			ds->error = error;
553744bb56dSScott Long 			if (ds->bp != NULL)
554744bb56dSScott Long 				brelse(ds->bp);
5551703656aSScott Long 			return (NULL);
5561703656aSScott Long 		}
5571703656aSScott Long 	}
5581703656aSScott Long 
5594576293dSScott Long 	/*
5604576293dSScott Long 	 * Clean up from a previous fragmented FID.
5614576293dSScott Long 	 * XXX Is this the right place for this?
5624576293dSScott Long 	 */
5631703656aSScott Long 	if (ds->fid_fragment && ds->buf != NULL) {
5641703656aSScott Long 		ds->fid_fragment = 0;
5651703656aSScott Long 		FREE(ds->buf, M_UDFFID);
5661703656aSScott Long 	}
5671703656aSScott Long 
5681703656aSScott Long 	fid = (struct fileid_desc*)&ds->data[ds->off];
5691703656aSScott Long 
5701703656aSScott Long 	/*
5711703656aSScott Long 	 * Check to see if the fid is fragmented. The first test
5721703656aSScott Long 	 * ensures that we don't wander off the end of the buffer
5731703656aSScott Long 	 * looking for the l_iu and l_fi fields.
5741703656aSScott Long 	 */
5751703656aSScott Long 	if (ds->off + UDF_FID_SIZE > ds->size ||
576bf1c3dddSScott Long 	    ds->off + le16toh(fid->l_iu) + fid->l_fi + UDF_FID_SIZE > ds->size){
5771703656aSScott Long 
5781703656aSScott Long 		/* Copy what we have of the fid into a buffer */
5791703656aSScott Long 		frag_size = ds->size - ds->off;
5801703656aSScott Long 		if (frag_size >= ds->udfmp->bsize) {
5811703656aSScott Long 			printf("udf: invalid FID fragment\n");
5821703656aSScott Long 			ds->error = EINVAL;
5831703656aSScott Long 			return (NULL);
5841703656aSScott Long 		}
5851703656aSScott Long 
5861703656aSScott Long 		/*
5871703656aSScott Long 		 * File ID descriptors can only be at most one
5881703656aSScott Long 		 * logical sector in size.
5891703656aSScott Long 		 */
5901703656aSScott Long 		MALLOC(ds->buf, uint8_t*, ds->udfmp->bsize, M_UDFFID,
591a163d034SWarner Losh 		     M_WAITOK | M_ZERO);
5921703656aSScott Long 		bcopy(fid, ds->buf, frag_size);
5931703656aSScott Long 
5941703656aSScott Long 		/* Reduce all of the casting magic */
5951703656aSScott Long 		fid = (struct fileid_desc*)ds->buf;
5961703656aSScott Long 
5971703656aSScott Long 		if (ds->bp != NULL)
5981703656aSScott Long 			brelse(ds->bp);
5991703656aSScott Long 
6001703656aSScott Long 		/* Fetch the next allocation */
6011703656aSScott Long 		ds->offset += ds->size;
6021703656aSScott Long 		ds->size = 0;
6031703656aSScott Long 		error = udf_readatoffset(ds->node, &ds->size, ds->offset,
6041703656aSScott Long 		    &ds->bp, &ds->data);
6051703656aSScott Long 		if (error) {
6061703656aSScott Long 			ds->error = error;
6071703656aSScott Long 			return (NULL);
6081703656aSScott Long 		}
6091703656aSScott Long 
6101703656aSScott Long 		/*
6111703656aSScott Long 		 * If the fragment was so small that we didn't get
6121703656aSScott Long 		 * the l_iu and l_fi fields, copy those in.
6131703656aSScott Long 		 */
6141703656aSScott Long 		if (frag_size < UDF_FID_SIZE)
6151703656aSScott Long 			bcopy(ds->data, &ds->buf[frag_size],
6161703656aSScott Long 			    UDF_FID_SIZE - frag_size);
6171703656aSScott Long 
6181703656aSScott Long 		/*
6191703656aSScott Long 		 * Now that we have enough of the fid to work with,
6201703656aSScott Long 		 * copy in the rest of the fid from the new
6211703656aSScott Long 		 * allocation.
6221703656aSScott Long 		 */
623bf1c3dddSScott Long 		total_fid_size = UDF_FID_SIZE + le16toh(fid->l_iu) + fid->l_fi;
6241703656aSScott Long 		if (total_fid_size > ds->udfmp->bsize) {
6251703656aSScott Long 			printf("udf: invalid FID\n");
6261703656aSScott Long 			ds->error = EIO;
6271703656aSScott Long 			return (NULL);
6281703656aSScott Long 		}
6291703656aSScott Long 		bcopy(ds->data, &ds->buf[frag_size],
6301703656aSScott Long 		    total_fid_size - frag_size);
6311703656aSScott Long 
6321703656aSScott Long 		ds->fid_fragment = 1;
6331703656aSScott Long 	} else {
634bf1c3dddSScott Long 		total_fid_size = le16toh(fid->l_iu) + fid->l_fi + UDF_FID_SIZE;
6351703656aSScott Long 	}
6361703656aSScott Long 
6371703656aSScott Long 	/*
6381703656aSScott Long 	 * Update the offset. Align on a 4 byte boundary because the
6394576293dSScott Long 	 * UDF spec says so.
6401703656aSScott Long 	 */
6411703656aSScott Long 	ds->this_off = ds->off;
6421703656aSScott Long 	if (!ds->fid_fragment) {
6431703656aSScott Long 		ds->off += (total_fid_size + 3) & ~0x03;
6441703656aSScott Long 	} else {
6451703656aSScott Long 		ds->off = (total_fid_size - frag_size + 3) & ~0x03;
6461703656aSScott Long 	}
6471703656aSScott Long 
6481703656aSScott Long 	return (fid);
6491703656aSScott Long }
6501703656aSScott Long 
6511703656aSScott Long static void
6521703656aSScott Long udf_closedir(struct udf_dirstream *ds)
6531703656aSScott Long {
6541703656aSScott Long 
6551703656aSScott Long 	if (ds->bp != NULL)
6561703656aSScott Long 		brelse(ds->bp);
6571703656aSScott Long 
6581703656aSScott Long 	if (ds->fid_fragment && ds->buf != NULL)
6591703656aSScott Long 		FREE(ds->buf, M_UDFFID);
6601703656aSScott Long 
6611703656aSScott Long 	uma_zfree(udf_zone_ds, ds);
6621703656aSScott Long }
6631703656aSScott Long 
66451a7b740SScott Long static int
66551a7b740SScott Long udf_readdir(struct vop_readdir_args *a)
66651a7b740SScott Long {
66751a7b740SScott Long 	struct vnode *vp;
66851a7b740SScott Long 	struct uio *uio;
66951a7b740SScott Long 	struct dirent dir;
67051a7b740SScott Long 	struct udf_node *node;
6716565282cSScott Long 	struct udf_mnt *udfmp;
67251a7b740SScott Long 	struct fileid_desc *fid;
67351a7b740SScott Long 	struct udf_uiodir uiodir;
6741703656aSScott Long 	struct udf_dirstream *ds;
67551a7b740SScott Long 	u_long *cookies = NULL;
67651a7b740SScott Long 	int ncookies;
677c8eeea2fSScott Long 	int error = 0;
67851a7b740SScott Long 
67951a7b740SScott Long 	vp = a->a_vp;
68051a7b740SScott Long 	uio = a->a_uio;
68151a7b740SScott Long 	node = VTON(vp);
6826565282cSScott Long 	udfmp = node->udfmp;
68351a7b740SScott Long 	uiodir.eofflag = 1;
68451a7b740SScott Long 
68551a7b740SScott Long 	if (a->a_ncookies != NULL) {
68651a7b740SScott Long 		/*
68751a7b740SScott Long 		 * Guess how many entries are needed.  If we run out, this
68851a7b740SScott Long 		 * function will be called again and thing will pick up were
68951a7b740SScott Long 		 * it left off.
69051a7b740SScott Long 		 */
69151a7b740SScott Long 		ncookies = uio->uio_resid / 8;
69251a7b740SScott Long 		MALLOC(cookies, u_long *, sizeof(u_long) * ncookies,
693a163d034SWarner Losh 		    M_TEMP, M_WAITOK);
69451a7b740SScott Long 		if (cookies == NULL)
69551a7b740SScott Long 			return (ENOMEM);
69651a7b740SScott Long 		uiodir.ncookies = ncookies;
69751a7b740SScott Long 		uiodir.cookies = cookies;
69851a7b740SScott Long 		uiodir.acookies = 0;
69951a7b740SScott Long 	} else {
70051a7b740SScott Long 		uiodir.cookies = NULL;
70151a7b740SScott Long 	}
70251a7b740SScott Long 
70351a7b740SScott Long 	/*
70451a7b740SScott Long 	 * Iterate through the file id descriptors.  Give the parent dir
7054576293dSScott Long 	 * entry special attention.
70651a7b740SScott Long 	 */
707bf1c3dddSScott Long 	ds = udf_opendir(node, uio->uio_offset, le64toh(node->fentry->inf_len),
7081703656aSScott Long 	    node->udfmp);
70951a7b740SScott Long 
7101703656aSScott Long 	while ((fid = udf_getfid(ds)) != NULL) {
71151a7b740SScott Long 
71251a7b740SScott Long 		/* XXX Should we return an error on a bad fid? */
71351a7b740SScott Long 		if (udf_checktag(&fid->tag, TAGID_FID)) {
71451a7b740SScott Long 			printf("Invalid FID tag\n");
71577411499SScott Long 			hexdump(fid, UDF_FID_SIZE, NULL, 0);
7161703656aSScott Long 			error = EIO;
71751a7b740SScott Long 			break;
71851a7b740SScott Long 		}
71951a7b740SScott Long 
72051a7b740SScott Long 		/* Is this a deleted file? */
7212bbe0d36SScott Long 		if (fid->file_char & UDF_FILE_CHAR_DEL)
7221703656aSScott Long 			continue;
72351a7b740SScott Long 
7242bbe0d36SScott Long 		if ((fid->l_fi == 0) && (fid->file_char & UDF_FILE_CHAR_PAR)) {
72551a7b740SScott Long 			/* Do up the '.' and '..' entries.  Dummy values are
72651a7b740SScott Long 			 * used for the cookies since the offset here is
72751a7b740SScott Long 			 * usually zero, and NFS doesn't like that value
72851a7b740SScott Long 			 */
729c8eeea2fSScott Long 			dir.d_fileno = node->hash_id;
730c8eeea2fSScott Long 			dir.d_type = DT_DIR;
731c8eeea2fSScott Long 			dir.d_name[0] = '.';
732444acc16SScott Long 			dir.d_name[1] = '\0';
733c8eeea2fSScott Long 			dir.d_namlen = 1;
734c8eeea2fSScott Long 			dir.d_reclen = GENERIC_DIRSIZ(&dir);
735c8eeea2fSScott Long 			uiodir.dirent = &dir;
736c8eeea2fSScott Long 			error = udf_uiodir(&uiodir, dir.d_reclen, uio, 1);
73751a7b740SScott Long 			if (error)
73851a7b740SScott Long 				break;
73951a7b740SScott Long 
740c8eeea2fSScott Long 			dir.d_fileno = udf_getid(&fid->icb);
741c8eeea2fSScott Long 			dir.d_type = DT_DIR;
742c8eeea2fSScott Long 			dir.d_name[0] = '.';
743c8eeea2fSScott Long 			dir.d_name[1] = '.';
744444acc16SScott Long 			dir.d_name[2] = '\0';
745c8eeea2fSScott Long 			dir.d_namlen = 2;
746c8eeea2fSScott Long 			dir.d_reclen = GENERIC_DIRSIZ(&dir);
747c8eeea2fSScott Long 			uiodir.dirent = &dir;
748c8eeea2fSScott Long 			error = udf_uiodir(&uiodir, dir.d_reclen, uio, 2);
74951a7b740SScott Long 		} else {
75051a7b740SScott Long 			dir.d_namlen = udf_transname(&fid->data[fid->l_iu],
7516565282cSScott Long 			    &dir.d_name[0], fid->l_fi, udfmp);
75251a7b740SScott Long 			dir.d_fileno = udf_getid(&fid->icb);
7532bbe0d36SScott Long 			dir.d_type = (fid->file_char & UDF_FILE_CHAR_DIR) ?
7542bbe0d36SScott Long 			    DT_DIR : DT_UNKNOWN;
75551a7b740SScott Long 			dir.d_reclen = GENERIC_DIRSIZ(&dir);
75651a7b740SScott Long 			uiodir.dirent = &dir;
7571703656aSScott Long 			error = udf_uiodir(&uiodir, dir.d_reclen, uio,
7581703656aSScott Long 			    ds->this_off);
75951a7b740SScott Long 		}
76051a7b740SScott Long 		if (error) {
76151a7b740SScott Long 			printf("uiomove returned %d\n", error);
76251a7b740SScott Long 			break;
76351a7b740SScott Long 		}
76451a7b740SScott Long 
76551a7b740SScott Long 	}
76651a7b740SScott Long 
76751a7b740SScott Long 	/* tell the calling layer whether we need to be called again */
76851a7b740SScott Long 	*a->a_eofflag = uiodir.eofflag;
7691703656aSScott Long 	uio->uio_offset = ds->offset + ds->off;
77051a7b740SScott Long 
7711703656aSScott Long 	if (!error)
7721703656aSScott Long 		error = ds->error;
7731703656aSScott Long 
7741703656aSScott Long 	udf_closedir(ds);
77551a7b740SScott Long 
77651a7b740SScott Long 	if (a->a_ncookies != NULL) {
77751a7b740SScott Long 		if (error)
7781703656aSScott Long 			FREE(cookies, M_TEMP);
77951a7b740SScott Long 		else {
78051a7b740SScott Long 			*a->a_ncookies = uiodir.acookies;
78151a7b740SScott Long 			*a->a_cookies = cookies;
78251a7b740SScott Long 		}
78351a7b740SScott Long 	}
78451a7b740SScott Long 
78551a7b740SScott Long 	return (error);
78651a7b740SScott Long }
78751a7b740SScott Long 
78851a7b740SScott Long /* Are there any implementations out there that do soft-links? */
78951a7b740SScott Long static int
79051a7b740SScott Long udf_readlink(struct vop_readlink_args *ap)
79151a7b740SScott Long {
792c80a90c5SScott Long 	printf("%s called\n", __func__);
79351a7b740SScott Long 	return (EOPNOTSUPP);
79451a7b740SScott Long }
79551a7b740SScott Long 
79651a7b740SScott Long static int
79751a7b740SScott Long udf_strategy(struct vop_strategy_args *a)
79851a7b740SScott Long {
79951a7b740SScott Long 	struct buf *bp;
80051a7b740SScott Long 	struct vnode *vp;
80151a7b740SScott Long 	struct udf_node *node;
80251a7b740SScott Long 	int maxsize;
8030c09ac0dSPav Lucistnik 	daddr_t sector;
804429c018aSPoul-Henning Kamp 	struct bufobj *bo;
8050c09ac0dSPav Lucistnik 	int multiplier;
80651a7b740SScott Long 
80751a7b740SScott Long 	bp = a->a_bp;
808d83b7498SPoul-Henning Kamp 	vp = a->a_vp;
80951a7b740SScott Long 	node = VTON(vp);
81051a7b740SScott Long 
8110c09ac0dSPav Lucistnik 	if (bp->b_blkno == bp->b_lblkno) {
81251a7b740SScott Long 		/*
81351a7b740SScott Long 		 * Files that are embedded in the fentry don't translate well
81451a7b740SScott Long 		 * to a block number.  Reject.
81551a7b740SScott Long 		 */
81651a7b740SScott Long 		if (udf_bmap_internal(node, bp->b_lblkno * node->udfmp->bsize,
8170c09ac0dSPav Lucistnik 		    &sector, &maxsize)) {
81851a7b740SScott Long 			clrbuf(bp);
81951a7b740SScott Long 			bp->b_blkno = -1;
82051a7b740SScott Long 		}
8210c09ac0dSPav Lucistnik 
8220c09ac0dSPav Lucistnik 		/* bmap gives sector numbers, bio works with device blocks */
8230c09ac0dSPav Lucistnik 		multiplier = node->udfmp->bsize / DEV_BSIZE;
8240c09ac0dSPav Lucistnik 		bp->b_blkno = sector * multiplier;
8250c09ac0dSPav Lucistnik 
82651a7b740SScott Long 	}
82751a7b740SScott Long 	if ((long)bp->b_blkno == -1) {
82851a7b740SScott Long 		bufdone(bp);
82951a7b740SScott Long 		return (0);
83051a7b740SScott Long 	}
831429c018aSPoul-Henning Kamp 	bo = node->udfmp->im_bo;
8322c18019fSPoul-Henning Kamp 	bp->b_iooffset = dbtob(bp->b_blkno);
8330391e5a1SPoul-Henning Kamp 	BO_STRATEGY(bo, bp);
83451a7b740SScott Long 	return (0);
83551a7b740SScott Long }
83651a7b740SScott Long 
83751a7b740SScott Long static int
83851a7b740SScott Long udf_bmap(struct vop_bmap_args *a)
83951a7b740SScott Long {
84051a7b740SScott Long 	struct udf_node *node;
841c2d6947dSJeroen Ruigrok van der Werven 	uint32_t max_size;
84298b0c789SPoul-Henning Kamp 	daddr_t lsector;
84351a7b740SScott Long 	int error;
84451a7b740SScott Long 
84551a7b740SScott Long 	node = VTON(a->a_vp);
84651a7b740SScott Long 
8479c83534dSPoul-Henning Kamp 	if (a->a_bop != NULL)
848e0251bbbSPoul-Henning Kamp 		*a->a_bop = &node->udfmp->im_devvp->v_bufobj;
84951a7b740SScott Long 	if (a->a_bnp == NULL)
85051a7b740SScott Long 		return (0);
85151a7b740SScott Long 	if (a->a_runb)
85251a7b740SScott Long 		*a->a_runb = 0;
85351a7b740SScott Long 
854cd1b1a1dSScott Long 	error = udf_bmap_internal(node, a->a_bn * node->udfmp->bsize, &lsector,
85551a7b740SScott Long 	    &max_size);
8568db4c2f2SScott Long 	if (error)
85751a7b740SScott Long 		return (error);
85851a7b740SScott Long 
859cd1b1a1dSScott Long 	/* Translate logical to physical sector number */
860cd1b1a1dSScott Long 	*a->a_bnp = lsector << (node->udfmp->bshift - DEV_BSHIFT);
861cd1b1a1dSScott Long 
86251a7b740SScott Long 	/* Punt on read-ahead for now */
86351a7b740SScott Long 	if (a->a_runp)
86451a7b740SScott Long 		*a->a_runp = 0;
86551a7b740SScott Long 
86651a7b740SScott Long 	return (0);
86751a7b740SScott Long }
86851a7b740SScott Long 
86951a7b740SScott Long /*
87051a7b740SScott Long  * The all powerful VOP_LOOKUP().
87151a7b740SScott Long  */
87251a7b740SScott Long static int
87351a7b740SScott Long udf_lookup(struct vop_cachedlookup_args *a)
87451a7b740SScott Long {
87551a7b740SScott Long 	struct vnode *dvp;
87651a7b740SScott Long 	struct vnode *tdp = NULL;
87751a7b740SScott Long 	struct vnode **vpp = a->a_vpp;
87851a7b740SScott Long 	struct udf_node *node;
87951a7b740SScott Long 	struct udf_mnt *udfmp;
88051a7b740SScott Long 	struct fileid_desc *fid = NULL;
8811703656aSScott Long 	struct udf_dirstream *ds;
88251a7b740SScott Long 	struct thread *td;
88351a7b740SScott Long 	u_long nameiop;
88451a7b740SScott Long 	u_long flags;
88551a7b740SScott Long 	char *nameptr;
88651a7b740SScott Long 	long namelen;
88751a7b740SScott Long 	ino_t id = 0;
8881703656aSScott Long 	int offset, error = 0;
8891703656aSScott Long 	int numdirpasses, fsize;
89051a7b740SScott Long 
89151a7b740SScott Long 	dvp = a->a_dvp;
89251a7b740SScott Long 	node = VTON(dvp);
89351a7b740SScott Long 	udfmp = node->udfmp;
89451a7b740SScott Long 	nameiop = a->a_cnp->cn_nameiop;
89551a7b740SScott Long 	flags = a->a_cnp->cn_flags;
89651a7b740SScott Long 	nameptr = a->a_cnp->cn_nameptr;
89751a7b740SScott Long 	namelen = a->a_cnp->cn_namelen;
898bf1c3dddSScott Long 	fsize = le64toh(node->fentry->inf_len);
89951a7b740SScott Long 	td = a->a_cnp->cn_thread;
90051a7b740SScott Long 
90151a7b740SScott Long 	/*
90251a7b740SScott Long 	 * If this is a LOOKUP and we've already partially searched through
90351a7b740SScott Long 	 * the directory, pick up where we left off and flag that the
90451a7b740SScott Long 	 * directory may need to be searched twice.  For a full description,
90551a7b740SScott Long 	 * see /sys/isofs/cd9660/cd9660_lookup.c:cd9660_lookup()
90651a7b740SScott Long 	 */
9071703656aSScott Long 	if (nameiop != LOOKUP || node->diroff == 0 || node->diroff > fsize) {
90851a7b740SScott Long 		offset = 0;
90951a7b740SScott Long 		numdirpasses = 1;
91051a7b740SScott Long 	} else {
91151a7b740SScott Long 		offset = node->diroff;
91251a7b740SScott Long 		numdirpasses = 2;
91351a7b740SScott Long 		nchstats.ncs_2passes++;
91451a7b740SScott Long 	}
91551a7b740SScott Long 
91651a7b740SScott Long lookloop:
9171703656aSScott Long 	ds = udf_opendir(node, offset, fsize, udfmp);
91851a7b740SScott Long 
9191703656aSScott Long 	while ((fid = udf_getfid(ds)) != NULL) {
92051a7b740SScott Long 
92151a7b740SScott Long 		/* XXX Should we return an error on a bad fid? */
9221703656aSScott Long 		if (udf_checktag(&fid->tag, TAGID_FID)) {
9231703656aSScott Long 			printf("udf_lookup: Invalid tag\n");
9241703656aSScott Long 			error = EIO;
9251703656aSScott Long 			break;
9261703656aSScott Long 		}
927678d5effSScott Long 
928678d5effSScott Long 		/* Is this a deleted file? */
9292bbe0d36SScott Long 		if (fid->file_char & UDF_FILE_CHAR_DEL)
9301703656aSScott Long 			continue;
93151a7b740SScott Long 
9322bbe0d36SScott Long 		if ((fid->l_fi == 0) && (fid->file_char & UDF_FILE_CHAR_PAR)) {
93351a7b740SScott Long 			if (flags & ISDOTDOT) {
93451a7b740SScott Long 				id = udf_getid(&fid->icb);
93551a7b740SScott Long 				break;
93651a7b740SScott Long 			}
93751a7b740SScott Long 		} else {
93851a7b740SScott Long 			if (!(udf_cmpname(&fid->data[fid->l_iu],
9396565282cSScott Long 			    nameptr, fid->l_fi, namelen, udfmp))) {
94051a7b740SScott Long 				id = udf_getid(&fid->icb);
94151a7b740SScott Long 				break;
94251a7b740SScott Long 			}
94351a7b740SScott Long 		}
94451a7b740SScott Long 	}
9451703656aSScott Long 
9461703656aSScott Long 	if (!error)
9471703656aSScott Long 		error = ds->error;
9481703656aSScott Long 
9491703656aSScott Long 	/* XXX Bail out here? */
9501703656aSScott Long 	if (error) {
9511703656aSScott Long 		udf_closedir(ds);
9521703656aSScott Long 		return (error);
95351a7b740SScott Long 	}
95451a7b740SScott Long 
95551a7b740SScott Long 	/* Did we have a match? */
95651a7b740SScott Long 	if (id) {
95727ad03cbSJeff Roberson 		if (flags & ISDOTDOT)
95827ad03cbSJeff Roberson 			VOP_UNLOCK(dvp, 0, a->a_cnp->cn_thread);
95951a7b740SScott Long 		error = udf_vget(udfmp->im_mountp, id, LK_EXCLUSIVE, &tdp);
960045f25a2SSeigo Tanimura 		if (flags & ISDOTDOT)
9614585e3acSJeff Roberson 			vn_lock(dvp, LK_EXCLUSIVE|LK_RETRY, a->a_cnp->cn_thread);
9621703656aSScott Long 		if (!error) {
9631703656aSScott Long 			/*
9641703656aSScott Long 			 * Remember where this entry was if it's the final
9651703656aSScott Long 			 * component.
9661703656aSScott Long 			 */
96751a7b740SScott Long 			if ((flags & ISLASTCN) && nameiop == LOOKUP)
9681703656aSScott Long 				node->diroff = ds->offset + ds->off;
96951a7b740SScott Long 			if (numdirpasses == 2)
97051a7b740SScott Long 				nchstats.ncs_pass2++;
97151a7b740SScott Long 			*vpp = tdp;
97251a7b740SScott Long 			/* Put this entry in the cache */
97351a7b740SScott Long 			if (flags & MAKEENTRY)
97451a7b740SScott Long 				cache_enter(dvp, *vpp, a->a_cnp);
9754585e3acSJeff Roberson 		}
9761703656aSScott Long 	} else {
97751a7b740SScott Long 		/* Name wasn't found on this pass.  Do another pass? */
97851a7b740SScott Long 		if (numdirpasses == 2) {
97951a7b740SScott Long 			numdirpasses--;
98051a7b740SScott Long 			offset = 0;
9811703656aSScott Long 			udf_closedir(ds);
98251a7b740SScott Long 			goto lookloop;
98351a7b740SScott Long 		}
98451a7b740SScott Long 
98551a7b740SScott Long 		/* Enter name into cache as non-existant */
98651a7b740SScott Long 		if (flags & MAKEENTRY)
98751a7b740SScott Long 			cache_enter(dvp, *vpp, a->a_cnp);
98851a7b740SScott Long 
9891703656aSScott Long 		if ((flags & ISLASTCN) &&
9901703656aSScott Long 		    (nameiop == CREATE || nameiop == RENAME)) {
9911703656aSScott Long 			error = EROFS;
9921703656aSScott Long 		} else {
9931703656aSScott Long 			error = ENOENT;
9941703656aSScott Long 		}
9951703656aSScott Long 	}
99651a7b740SScott Long 
9971703656aSScott Long 	udf_closedir(ds);
9981703656aSScott Long 	return (error);
99951a7b740SScott Long }
100051a7b740SScott Long 
100151a7b740SScott Long static int
100251a7b740SScott Long udf_reclaim(struct vop_reclaim_args *a)
100351a7b740SScott Long {
100451a7b740SScott Long 	struct vnode *vp;
100551a7b740SScott Long 	struct udf_node *unode;
100651a7b740SScott Long 
100751a7b740SScott Long 	vp = a->a_vp;
100851a7b740SScott Long 	unode = VTON(vp);
100951a7b740SScott Long 
101092e73f57SAlfred Perlstein 	/*
101192e73f57SAlfred Perlstein 	 * Destroy the vm object and flush associated pages.
101292e73f57SAlfred Perlstein 	 */
101392e73f57SAlfred Perlstein 	vnode_destroy_vobject(vp);
101492e73f57SAlfred Perlstein 
101551a7b740SScott Long 	if (unode != NULL) {
10164e94fafcSPoul-Henning Kamp 		vfs_hash_remove(vp);
101751a7b740SScott Long 
101851a7b740SScott Long 		if (unode->fentry != NULL)
101951a7b740SScott Long 			FREE(unode->fentry, M_UDFFENTRY);
102051a7b740SScott Long 		uma_zfree(udf_zone_node, unode);
102151a7b740SScott Long 		vp->v_data = NULL;
102251a7b740SScott Long 	}
102351a7b740SScott Long 
102451a7b740SScott Long 	return (0);
102551a7b740SScott Long }
102651a7b740SScott Long 
102710bcafe9SPawel Jakub Dawidek static int
102810bcafe9SPawel Jakub Dawidek udf_vptofh(struct vop_vptofh_args *a)
102910bcafe9SPawel Jakub Dawidek {
103010bcafe9SPawel Jakub Dawidek 	struct udf_node *node;
103110bcafe9SPawel Jakub Dawidek 	struct ifid *ifhp;
103210bcafe9SPawel Jakub Dawidek 
103310bcafe9SPawel Jakub Dawidek 	node = VTON(a->a_vp);
103410bcafe9SPawel Jakub Dawidek 	ifhp = (struct ifid *)a->a_fhp;
103510bcafe9SPawel Jakub Dawidek 	ifhp->ifid_len = sizeof(struct ifid);
103610bcafe9SPawel Jakub Dawidek 	ifhp->ifid_ino = node->hash_id;
103710bcafe9SPawel Jakub Dawidek 
103810bcafe9SPawel Jakub Dawidek 	return (0);
103910bcafe9SPawel Jakub Dawidek }
104010bcafe9SPawel Jakub Dawidek 
104151a7b740SScott Long /*
104251a7b740SScott Long  * Read the block and then set the data pointer to correspond with the
104351a7b740SScott Long  * offset passed in.  Only read in at most 'size' bytes, and then set 'size'
104451a7b740SScott Long  * to the number of bytes pointed to.  If 'size' is zero, try to read in a
104551a7b740SScott Long  * whole extent.
1046744bb56dSScott Long  *
1047744bb56dSScott Long  * Note that *bp may be assigned error or not.
1048744bb56dSScott Long  *
104951a7b740SScott Long  */
105051a7b740SScott Long static int
10519d32fde8SScott Long udf_readatoffset(struct udf_node *node, int *size, off_t offset,
10529d32fde8SScott Long     struct buf **bp, uint8_t **data)
105351a7b740SScott Long {
105451a7b740SScott Long 	struct udf_mnt *udfmp;
105551a7b740SScott Long 	struct file_entry *fentry = NULL;
105651a7b740SScott Long 	struct buf *bp1;
1057c2d6947dSJeroen Ruigrok van der Werven 	uint32_t max_size;
105898b0c789SPoul-Henning Kamp 	daddr_t sector;
105951a7b740SScott Long 	int error;
106051a7b740SScott Long 
106151a7b740SScott Long 	udfmp = node->udfmp;
106251a7b740SScott Long 
1063744bb56dSScott Long 	*bp = NULL;
106451a7b740SScott Long 	error = udf_bmap_internal(node, offset, &sector, &max_size);
10654576293dSScott Long 	if (error == UDF_INVALID_BMAP) {
106651a7b740SScott Long 		/*
106751a7b740SScott Long 		 * This error means that the file *data* is stored in the
106851a7b740SScott Long 		 * allocation descriptor field of the file entry.
106951a7b740SScott Long 		 */
107051a7b740SScott Long 		fentry = node->fentry;
1071bf1c3dddSScott Long 		*data = &fentry->data[le32toh(fentry->l_ea)];
1072bf1c3dddSScott Long 		*size = le32toh(fentry->l_ad);
107351a7b740SScott Long 		return (0);
107451a7b740SScott Long 	} else if (error != 0) {
107551a7b740SScott Long 		return (error);
107651a7b740SScott Long 	}
107751a7b740SScott Long 
1078d1def83bSScott Long 	/* Adjust the size so that it is within range */
107951a7b740SScott Long 	if (*size == 0 || *size > max_size)
108051a7b740SScott Long 		*size = max_size;
1081d1def83bSScott Long 	*size = min(*size, MAXBSIZE);
108251a7b740SScott Long 
108351a7b740SScott Long 	if ((error = udf_readlblks(udfmp, sector, *size, bp))) {
10841830bca1SScott Long 		printf("warning: udf_readlblks returned error %d\n", error);
1085744bb56dSScott Long 		/* note: *bp may be non-NULL */
108651a7b740SScott Long 		return (error);
108751a7b740SScott Long 	}
108851a7b740SScott Long 
108951a7b740SScott Long 	bp1 = *bp;
1090c2d6947dSJeroen Ruigrok van der Werven 	*data = (uint8_t *)&bp1->b_data[offset % udfmp->bsize];
109151a7b740SScott Long 	return (0);
109251a7b740SScott Long }
109351a7b740SScott Long 
109451a7b740SScott Long /*
109551a7b740SScott Long  * Translate a file offset into a logical block and then into a physical
109651a7b740SScott Long  * block.
109751a7b740SScott Long  */
109851a7b740SScott Long static int
10999d32fde8SScott Long udf_bmap_internal(struct udf_node *node, off_t offset, daddr_t *sector,
11009d32fde8SScott Long     uint32_t *max_size)
110151a7b740SScott Long {
110251a7b740SScott Long 	struct udf_mnt *udfmp;
110351a7b740SScott Long 	struct file_entry *fentry;
110451a7b740SScott Long 	void *icb;
110551a7b740SScott Long 	struct icb_tag *tag;
1106c2d6947dSJeroen Ruigrok van der Werven 	uint32_t icblen = 0;
110798b0c789SPoul-Henning Kamp 	daddr_t lsector;
110851a7b740SScott Long 	int ad_offset, ad_num = 0;
110951a7b740SScott Long 	int i, p_offset;
111051a7b740SScott Long 
111151a7b740SScott Long 	udfmp = node->udfmp;
111251a7b740SScott Long 	fentry = node->fentry;
111351a7b740SScott Long 	tag = &fentry->icbtag;
111451a7b740SScott Long 
1115bf1c3dddSScott Long 	switch (le16toh(tag->strat_type)) {
111651a7b740SScott Long 	case 4:
111751a7b740SScott Long 		break;
111851a7b740SScott Long 
111951a7b740SScott Long 	case 4096:
112051a7b740SScott Long 		printf("Cannot deal with strategy4096 yet!\n");
112151a7b740SScott Long 		return (ENODEV);
112251a7b740SScott Long 
112351a7b740SScott Long 	default:
112451a7b740SScott Long 		printf("Unknown strategy type %d\n", tag->strat_type);
112551a7b740SScott Long 		return (ENODEV);
112651a7b740SScott Long 	}
112751a7b740SScott Long 
1128bf1c3dddSScott Long 	switch (le16toh(tag->flags) & 0x7) {
112951a7b740SScott Long 	case 0:
113051a7b740SScott Long 		/*
113151a7b740SScott Long 		 * The allocation descriptor field is filled with short_ad's.
113251a7b740SScott Long 		 * If the offset is beyond the current extent, look for the
113351a7b740SScott Long 		 * next extent.
113451a7b740SScott Long 		 */
113551a7b740SScott Long 		do {
113651a7b740SScott Long 			offset -= icblen;
113751a7b740SScott Long 			ad_offset = sizeof(struct short_ad) * ad_num;
1138bf1c3dddSScott Long 			if (ad_offset > le32toh(fentry->l_ad)) {
113951a7b740SScott Long 				printf("File offset out of bounds\n");
114051a7b740SScott Long 				return (EINVAL);
114151a7b740SScott Long 			}
1142a4d629e3SScott Long 			icb = GETICB(short_ad, fentry,
1143bf1c3dddSScott Long 			    le32toh(fentry->l_ea) + ad_offset);
114451a7b740SScott Long 			icblen = GETICBLEN(short_ad, icb);
114551a7b740SScott Long 			ad_num++;
114651a7b740SScott Long 		} while(offset >= icblen);
114751a7b740SScott Long 
114851a7b740SScott Long 		lsector = (offset  >> udfmp->bshift) +
1149937a2387SWill Andrews 		    le32toh(((struct short_ad *)(icb))->pos);
115051a7b740SScott Long 
11511830bca1SScott Long 		*max_size = GETICBLEN(short_ad, icb);
115251a7b740SScott Long 
115351a7b740SScott Long 		break;
115451a7b740SScott Long 	case 1:
115551a7b740SScott Long 		/*
115651a7b740SScott Long 		 * The allocation descriptor field is filled with long_ad's
115751a7b740SScott Long 		 * If the offset is beyond the current extent, look for the
115851a7b740SScott Long 		 * next extent.
115951a7b740SScott Long 		 */
116051a7b740SScott Long 		do {
116151a7b740SScott Long 			offset -= icblen;
116251a7b740SScott Long 			ad_offset = sizeof(struct long_ad) * ad_num;
1163bf1c3dddSScott Long 			if (ad_offset > le32toh(fentry->l_ad)) {
116451a7b740SScott Long 				printf("File offset out of bounds\n");
116551a7b740SScott Long 				return (EINVAL);
116651a7b740SScott Long 			}
1167bf1c3dddSScott Long 			icb = GETICB(long_ad, fentry,
1168bf1c3dddSScott Long 			    le32toh(fentry->l_ea) + ad_offset);
116951a7b740SScott Long 			icblen = GETICBLEN(long_ad, icb);
117051a7b740SScott Long 			ad_num++;
117151a7b740SScott Long 		} while(offset >= icblen);
117251a7b740SScott Long 
117351a7b740SScott Long 		lsector = (offset >> udfmp->bshift) +
1174bf1c3dddSScott Long 		    le32toh(((struct long_ad *)(icb))->loc.lb_num);
117551a7b740SScott Long 
11761830bca1SScott Long 		*max_size = GETICBLEN(long_ad, icb);
117751a7b740SScott Long 
117851a7b740SScott Long 		break;
117951a7b740SScott Long 	case 3:
118051a7b740SScott Long 		/*
118151a7b740SScott Long 		 * This type means that the file *data* is stored in the
118251a7b740SScott Long 		 * allocation descriptor field of the file entry.
118351a7b740SScott Long 		 */
118451a7b740SScott Long 		*max_size = 0;
11858db4c2f2SScott Long 		*sector = node->hash_id + udfmp->part_start;
118651a7b740SScott Long 
11874576293dSScott Long 		return (UDF_INVALID_BMAP);
118851a7b740SScott Long 	case 2:
118951a7b740SScott Long 		/* DirectCD does not use extended_ad's */
119051a7b740SScott Long 	default:
119151a7b740SScott Long 		printf("Unsupported allocation descriptor %d\n",
119251a7b740SScott Long 		       tag->flags & 0x7);
119351a7b740SScott Long 		return (ENODEV);
119451a7b740SScott Long 	}
119551a7b740SScott Long 
119651a7b740SScott Long 	*sector = lsector + udfmp->part_start;
119751a7b740SScott Long 
119851a7b740SScott Long 	/*
119951a7b740SScott Long 	 * Check the sparing table.  Each entry represents the beginning of
120051a7b740SScott Long 	 * a packet.
120151a7b740SScott Long 	 */
120251a7b740SScott Long 	if (udfmp->s_table != NULL) {
120351a7b740SScott Long 		for (i = 0; i< udfmp->s_table_entries; i++) {
1204bf1c3dddSScott Long 			p_offset =
1205bf1c3dddSScott Long 			    lsector - le32toh(udfmp->s_table->entries[i].org);
120651a7b740SScott Long 			if ((p_offset < udfmp->p_sectors) && (p_offset >= 0)) {
1207bf1c3dddSScott Long 				*sector =
1208bf1c3dddSScott Long 				   le32toh(udfmp->s_table->entries[i].map) +
120951a7b740SScott Long 				    p_offset;
121051a7b740SScott Long 				break;
121151a7b740SScott Long 			}
121251a7b740SScott Long 		}
121351a7b740SScott Long 	}
121451a7b740SScott Long 
121551a7b740SScott Long 	return (0);
121651a7b740SScott Long }
1217