]>
git.saurik.com Git - apple/xnu.git/blob - bsd/isofs/cd9660/cd9660_bmap.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
22 /* $NetBSD: cd9660_bmap.c,v 1.5 1994/12/13 22:33:12 mycroft Exp $ */
26 * The Regents of the University of California. All rights reserved.
28 * This code is derived from software contributed to Berkeley
29 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
30 * Support code is derived from software contributed to Berkeley
31 * by Atsushi Murai (amurai@spec.co.jp).
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
41 * 3. All advertising materials mentioning features or use of this software
42 * must display the following acknowledgement:
43 * This product includes software developed by the University of
44 * California, Berkeley and its contributors.
45 * 4. Neither the name of the University nor the names of its contributors
46 * may be used to endorse or promote products derived from this software
47 * without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 * @(#)cd9660_bmap.c 8.4 (Berkeley) 12/5/94
64 #include <sys/param.h>
65 #include <sys/vnode.h>
66 #include <sys/mount.h>
67 #include <sys/namei.h>
71 #include <isofs/cd9660/iso.h>
72 #include <isofs/cd9660/cd9660_node.h>
75 * Bmap converts the logical block number of a file to its physical block
76 * number on the disk. The conversion is done by using the logical block
77 * number to index into the data block (extent) for the file.
81 struct vop_bmap_args
/* {
89 struct iso_node
*ip
= VTOI(ap
->a_vp
);
90 daddr_t lblkno
= ap
->a_bn
;
94 * Check for underlying vnode requests and ensure that logical
95 * to physical mapping is requested.
97 if (ap
->a_vpp
!= NULL
)
98 *ap
->a_vpp
= ip
->i_devvp
;
99 if (ap
->a_bnp
== NULL
)
103 * Compute the requested block number
105 bshift
= ip
->i_mnt
->im_bshift
;
106 *ap
->a_bnp
= (ip
->iso_start
+ lblkno
);
109 * Determine maximum number of readahead blocks following the
115 nblk
= (ip
->i_size
>> bshift
) - (lblkno
+ 1);
118 else if (nblk
>= (MAXBSIZE
>> bshift
))
119 *ap
->a_runp
= (MAXBSIZE
>> bshift
) - 1;
127 /* blktooff converts a logical block number to a file offset */
130 struct vop_blktooff_args
/* {
136 register struct iso_node
*ip
;
137 register struct iso_mnt
*imp
;
139 if (ap
->a_vp
== NULL
)
145 *ap
->a_offset
= (off_t
)lblktosize(imp
, ap
->a_lblkno
);
149 /* offtoblk converts a file offset to a logical block number */
152 struct vop_offtoblk_args
/* {
158 register struct iso_node
*ip
;
159 register struct iso_mnt
*imp
;
161 if (ap
->a_vp
== NULL
)
167 *ap
->a_lblkno
= (daddr_t
)lblkno(imp
, ap
->a_offset
);
173 struct vop_cmap_args
/* {
182 struct iso_node
*ip
= VTOI(ap
->a_vp
);
184 int devBlockSize
= 0;
187 * Check for underlying vnode requests and ensure that logical
188 * to physical mapping is requested.
190 if (ap
->a_bpn
== NULL
)
193 VOP_DEVBLOCKSIZE(ip
->i_devvp
, &devBlockSize
);
195 *ap
->a_bpn
= (daddr_t
)(ip
->iso_start
+ lblkno(ip
->i_mnt
, ap
->a_foffset
));
198 * Determine maximum number of contiguous bytes following the
202 if (ip
->i_size
> ap
->a_foffset
)
203 cbytes
= ip
->i_size
- ap
->a_foffset
;
207 cbytes
= (cbytes
+ (devBlockSize
- 1)) & ~(devBlockSize
- 1);
209 *ap
->a_run
= MIN(cbytes
, ap
->a_size
);
213 *(int *)ap
->a_poff
= (long)ap
->a_foffset
& (devBlockSize
- 1);