1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/hfsplus/wrapper.c
6 * Brad Boyer (flar@allandria.com)
7 * (C) 2003 Ardis Technologies <roman@ardistech.com>
9 * Handling of HFS wrappers around HFS+ volumes
13 #include <linux/blkdev.h>
14 #include <linux/cdrom.h>
15 #include <asm/unaligned.h>
17 #include "hfsplus_fs.h"
18 #include "hfsplus_raw.h"
28 * hfsplus_submit_bio - Perform block I/O
29 * @sb: super block of volume for I/O
30 * @sector: block to read or write, for blocks of HFSPLUS_SECTOR_SIZE bytes
31 * @buf: buffer for I/O
32 * @data: output pointer for location of requested data
33 * @op: direction of I/O
34 * @op_flags: request op flags
36 * The unit of I/O is hfsplus_min_io_size(sb), which may be bigger than
37 * HFSPLUS_SECTOR_SIZE, and @buf must be sized accordingly. On reads
38 * @data will return a pointer to the start of the requested sector,
39 * which may not be the same location as @buf.
41 * If @sector is not aligned to the bdev logical block size it will
42 * be rounded down. For writes this means that @buf should contain data
43 * that starts at the rounded-down address. As long as the data was
44 * read using hfsplus_submit_bio() and the same buffer is used things
45 * will work correctly.
47 int hfsplus_submit_bio(struct super_block *sb, sector_t sector,
48 void *buf, void **data, blk_opf_t opf)
50 const enum req_op op = opf & REQ_OP_MASK;
58 * Align sector to hardware sector size and find offset. We
59 * assume that io_size is a power of two, which _should_
62 io_size = hfsplus_min_io_size(sb);
63 start = (loff_t)sector << HFSPLUS_SECTOR_SHIFT;
64 offset = start & (io_size - 1);
65 sector &= ~((io_size >> HFSPLUS_SECTOR_SHIFT) - 1);
67 bio = bio_alloc(sb->s_bdev, 1, opf, GFP_NOIO);
68 bio->bi_iter.bi_sector = sector;
70 if (op != REQ_OP_WRITE && data)
71 *data = (u8 *)buf + offset;
74 unsigned int page_offset = offset_in_page(buf);
75 unsigned int len = min_t(unsigned int, PAGE_SIZE - page_offset,
78 ret = bio_add_page(bio, virt_to_page(buf), len, page_offset);
84 buf = (u8 *)buf + len;
87 ret = submit_bio_wait(bio);
90 return ret < 0 ? ret : 0;
93 static int hfsplus_read_mdb(void *bufptr, struct hfsplus_wd *wd)
99 sig = *(__be16 *)(bufptr + HFSP_WRAPOFF_EMBEDSIG);
100 if (sig != cpu_to_be16(HFSPLUS_VOLHEAD_SIG) &&
101 sig != cpu_to_be16(HFSPLUS_VOLHEAD_SIGX))
104 attrib = be16_to_cpu(*(__be16 *)(bufptr + HFSP_WRAPOFF_ATTRIB));
105 if (!(attrib & HFSP_WRAP_ATTRIB_SLOCK) ||
106 !(attrib & HFSP_WRAP_ATTRIB_SPARED))
110 be32_to_cpu(*(__be32 *)(bufptr + HFSP_WRAPOFF_ABLKSIZE));
111 if (wd->ablk_size < HFSPLUS_SECTOR_SIZE)
113 if (wd->ablk_size % HFSPLUS_SECTOR_SIZE)
116 be16_to_cpu(*(__be16 *)(bufptr + HFSP_WRAPOFF_ABLKSTART));
118 extent = get_unaligned_be32(bufptr + HFSP_WRAPOFF_EMBEDEXT);
119 wd->embed_start = (extent >> 16) & 0xFFFF;
120 wd->embed_count = extent & 0xFFFF;
125 static int hfsplus_get_last_session(struct super_block *sb,
126 sector_t *start, sector_t *size)
128 struct cdrom_device_info *cdi = disk_to_cdi(sb->s_bdev->bd_disk);
132 *size = bdev_nr_sectors(sb->s_bdev);
134 if (HFSPLUS_SB(sb)->session >= 0) {
135 struct cdrom_tocentry te;
140 te.cdte_track = HFSPLUS_SB(sb)->session;
141 te.cdte_format = CDROM_LBA;
142 if (cdrom_read_tocentry(cdi, &te) ||
143 (te.cdte_ctrl & CDROM_DATA_TRACK) != 4) {
144 pr_err("invalid session number or type of track\n");
147 *start = (sector_t)te.cdte_addr.lba << 2;
149 struct cdrom_multisession ms_info;
151 ms_info.addr_format = CDROM_LBA;
152 if (cdrom_multisession(cdi, &ms_info) == 0 && ms_info.xa_flag)
153 *start = (sector_t)ms_info.addr.lba << 2;
159 /* Find the volume header and fill in some minimum bits in superblock */
160 /* Takes in super block, returns true if good data read */
161 int hfsplus_read_wrapper(struct super_block *sb)
163 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
164 struct hfsplus_wd wd;
165 sector_t part_start, part_size;
170 blocksize = sb_min_blocksize(sb, HFSPLUS_SECTOR_SIZE);
174 if (hfsplus_get_last_session(sb, &part_start, &part_size))
178 sbi->s_vhdr_buf = kmalloc(hfsplus_min_io_size(sb), GFP_KERNEL);
179 if (!sbi->s_vhdr_buf)
181 sbi->s_backup_vhdr_buf = kmalloc(hfsplus_min_io_size(sb), GFP_KERNEL);
182 if (!sbi->s_backup_vhdr_buf)
186 error = hfsplus_submit_bio(sb, part_start + HFSPLUS_VOLHEAD_SECTOR,
187 sbi->s_vhdr_buf, (void **)&sbi->s_vhdr,
190 goto out_free_backup_vhdr;
193 switch (sbi->s_vhdr->signature) {
194 case cpu_to_be16(HFSPLUS_VOLHEAD_SIGX):
195 set_bit(HFSPLUS_SB_HFSX, &sbi->flags);
197 case cpu_to_be16(HFSPLUS_VOLHEAD_SIG):
199 case cpu_to_be16(HFSP_WRAP_MAGIC):
200 if (!hfsplus_read_mdb(sbi->s_vhdr, &wd))
201 goto out_free_backup_vhdr;
202 wd.ablk_size >>= HFSPLUS_SECTOR_SHIFT;
203 part_start += (sector_t)wd.ablk_start +
204 (sector_t)wd.embed_start * wd.ablk_size;
205 part_size = (sector_t)wd.embed_count * wd.ablk_size;
209 * Check for a partition block.
211 * (should do this only for cdrom/loop though)
213 if (hfs_part_find(sb, &part_start, &part_size))
214 goto out_free_backup_vhdr;
218 error = hfsplus_submit_bio(sb, part_start + part_size - 2,
219 sbi->s_backup_vhdr_buf,
220 (void **)&sbi->s_backup_vhdr, REQ_OP_READ);
222 goto out_free_backup_vhdr;
225 if (sbi->s_backup_vhdr->signature != sbi->s_vhdr->signature) {
226 pr_warn("invalid secondary volume header\n");
227 goto out_free_backup_vhdr;
230 blocksize = be32_to_cpu(sbi->s_vhdr->blocksize);
233 * Block size must be at least as large as a sector and a multiple of 2.
235 if (blocksize < HFSPLUS_SECTOR_SIZE || ((blocksize - 1) & blocksize))
236 goto out_free_backup_vhdr;
237 sbi->alloc_blksz = blocksize;
238 sbi->alloc_blksz_shift = ilog2(blocksize);
239 blocksize = min_t(u32, sbi->alloc_blksz, PAGE_SIZE);
242 * Align block size to block offset.
244 while (part_start & ((blocksize >> HFSPLUS_SECTOR_SHIFT) - 1))
247 if (sb_set_blocksize(sb, blocksize) != blocksize) {
248 pr_err("unable to set blocksize to %u!\n", blocksize);
249 goto out_free_backup_vhdr;
253 part_start >> (sb->s_blocksize_bits - HFSPLUS_SECTOR_SHIFT);
254 sbi->part_start = part_start;
255 sbi->sect_count = part_size;
256 sbi->fs_shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;
259 out_free_backup_vhdr:
260 kfree(sbi->s_backup_vhdr_buf);
262 kfree(sbi->s_vhdr_buf);