blob: 08c1580bdf7ad69e88305b15720769e5db6856d3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/hfsplus/wrapper.c
4 *
5 * Copyright (C) 2001
6 * Brad Boyer (flar@allandria.com)
7 * (C) 2003 Ardis Technologies <roman@ardistech.com>
8 *
9 * Handling of HFS wrappers around HFS+ volumes
10 */
11
12#include <linux/fs.h>
13#include <linux/blkdev.h>
14#include <linux/cdrom.h>
15#include <linux/genhd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/unaligned.h>
17
18#include "hfsplus_fs.h"
19#include "hfsplus_raw.h"
20
21struct hfsplus_wd {
22 u32 ablk_size;
23 u16 ablk_start;
24 u16 embed_start;
25 u16 embed_count;
26};
27
Fabian Frederick915ab232014-06-06 14:36:27 -070028/**
29 * hfsplus_submit_bio - Perform block I/O
Seth Forshee65965282011-07-18 08:06:23 -070030 * @sb: super block of volume for I/O
31 * @sector: block to read or write, for blocks of HFSPLUS_SECTOR_SIZE bytes
32 * @buf: buffer for I/O
33 * @data: output pointer for location of requested data
Mike Christie67ed2592016-06-05 14:31:58 -050034 * @op: direction of I/O
35 * @op_flags: request op flags
Seth Forshee65965282011-07-18 08:06:23 -070036 *
37 * The unit of I/O is hfsplus_min_io_size(sb), which may be bigger than
38 * HFSPLUS_SECTOR_SIZE, and @buf must be sized accordingly. On reads
39 * @data will return a pointer to the start of the requested sector,
40 * which may not be the same location as @buf.
41 *
42 * If @sector is not aligned to the bdev logical block size it will
43 * be rounded down. For writes this means that @buf should contain data
44 * that starts at the rounded-down address. As long as the data was
45 * read using hfsplus_submit_bio() and the same buffer is used things
46 * will work correctly.
47 */
48int hfsplus_submit_bio(struct super_block *sb, sector_t sector,
Mike Christie67ed2592016-06-05 14:31:58 -050049 void *buf, void **data, int op, int op_flags)
Christoph Hellwig52399b12010-11-23 14:37:47 +010050{
Christoph Hellwig52399b12010-11-23 14:37:47 +010051 struct bio *bio;
Seth Forshee50176dd2011-05-31 16:35:50 -050052 int ret = 0;
Janne Kalliomäkia6dc8c02012-06-17 17:05:24 -040053 u64 io_size;
Seth Forshee65965282011-07-18 08:06:23 -070054 loff_t start;
55 int offset;
56
57 /*
58 * Align sector to hardware sector size and find offset. We
59 * assume that io_size is a power of two, which _should_
60 * be true.
61 */
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);
Christoph Hellwig52399b12010-11-23 14:37:47 +010066
67 bio = bio_alloc(GFP_NOIO, 1);
Kent Overstreet4f024f32013-10-11 15:44:27 -070068 bio->bi_iter.bi_sector = sector;
Christoph Hellwig74d46992017-08-23 19:10:32 +020069 bio_set_dev(bio, sb->s_bdev);
Mike Christie67ed2592016-06-05 14:31:58 -050070 bio_set_op_attrs(bio, op, op_flags);
Christoph Hellwig52399b12010-11-23 14:37:47 +010071
Mike Christie67ed2592016-06-05 14:31:58 -050072 if (op != WRITE && data)
Seth Forshee65965282011-07-18 08:06:23 -070073 *data = (u8 *)buf + offset;
74
75 while (io_size > 0) {
76 unsigned int page_offset = offset_in_page(buf);
77 unsigned int len = min_t(unsigned int, PAGE_SIZE - page_offset,
78 io_size);
79
80 ret = bio_add_page(bio, virt_to_page(buf), len, page_offset);
81 if (ret != len) {
82 ret = -EIO;
83 goto out;
84 }
85 io_size -= len;
86 buf = (u8 *)buf + len;
87 }
Christoph Hellwig52399b12010-11-23 14:37:47 +010088
Mike Christie4e49ea42016-06-05 14:31:41 -050089 ret = submit_bio_wait(bio);
Seth Forshee65965282011-07-18 08:06:23 -070090out:
Seth Forshee50176dd2011-05-31 16:35:50 -050091 bio_put(bio);
Seth Forshee65965282011-07-18 08:06:23 -070092 return ret < 0 ? ret : 0;
Christoph Hellwig52399b12010-11-23 14:37:47 +010093}
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static int hfsplus_read_mdb(void *bufptr, struct hfsplus_wd *wd)
96{
97 u32 extent;
98 u16 attrib;
David Elliott2179d372006-01-18 17:43:08 -080099 __be16 sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
David Elliott2179d372006-01-18 17:43:08 -0800101 sig = *(__be16 *)(bufptr + HFSP_WRAPOFF_EMBEDSIG);
102 if (sig != cpu_to_be16(HFSPLUS_VOLHEAD_SIG) &&
103 sig != cpu_to_be16(HFSPLUS_VOLHEAD_SIGX))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return 0;
105
106 attrib = be16_to_cpu(*(__be16 *)(bufptr + HFSP_WRAPOFF_ATTRIB));
107 if (!(attrib & HFSP_WRAP_ATTRIB_SLOCK) ||
108 !(attrib & HFSP_WRAP_ATTRIB_SPARED))
109 return 0;
110
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200111 wd->ablk_size =
112 be32_to_cpu(*(__be32 *)(bufptr + HFSP_WRAPOFF_ABLKSIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (wd->ablk_size < HFSPLUS_SECTOR_SIZE)
114 return 0;
115 if (wd->ablk_size % HFSPLUS_SECTOR_SIZE)
116 return 0;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200117 wd->ablk_start =
118 be16_to_cpu(*(__be16 *)(bufptr + HFSP_WRAPOFF_ABLKSTART));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Harvey Harrison8b3789e2008-04-29 01:03:44 -0700120 extent = get_unaligned_be32(bufptr + HFSP_WRAPOFF_EMBEDEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 wd->embed_start = (extent >> 16) & 0xFFFF;
122 wd->embed_count = extent & 0xFFFF;
123
124 return 1;
125}
126
127static int hfsplus_get_last_session(struct super_block *sb,
128 sector_t *start, sector_t *size)
129{
130 struct cdrom_multisession ms_info;
131 struct cdrom_tocentry te;
132 int res;
133
134 /* default values */
135 *start = 0;
Fabian Fredericka3f22352017-02-27 14:27:19 -0800136 *size = i_size_read(sb->s_bdev->bd_inode) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200138 if (HFSPLUS_SB(sb)->session >= 0) {
139 te.cdte_track = HFSPLUS_SB(sb)->session;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 te.cdte_format = CDROM_LBA;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200141 res = ioctl_by_bdev(sb->s_bdev,
142 CDROMREADTOCENTRY, (unsigned long)&te);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (!res && (te.cdte_ctrl & CDROM_DATA_TRACK) == 4) {
144 *start = (sector_t)te.cdte_addr.lba << 2;
145 return 0;
146 }
Joe Perchesd6142672013-04-30 15:27:55 -0700147 pr_err("invalid session number or type of track\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return -EINVAL;
149 }
150 ms_info.addr_format = CDROM_LBA;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200151 res = ioctl_by_bdev(sb->s_bdev, CDROMMULTISESSION,
152 (unsigned long)&ms_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!res && ms_info.xa_flag)
154 *start = (sector_t)ms_info.addr.lba << 2;
155 return 0;
156}
157
158/* Find the volume header and fill in some minimum bits in superblock */
159/* Takes in super block, returns true if good data read */
160int hfsplus_read_wrapper(struct super_block *sb)
161{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200162 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct hfsplus_wd wd;
164 sector_t part_start, part_size;
165 u32 blocksize;
Christoph Hellwig52399b12010-11-23 14:37:47 +0100166 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Christoph Hellwig52399b12010-11-23 14:37:47 +0100168 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 blocksize = sb_min_blocksize(sb, HFSPLUS_SECTOR_SIZE);
170 if (!blocksize)
Christoph Hellwig52399b12010-11-23 14:37:47 +0100171 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 if (hfsplus_get_last_session(sb, &part_start, &part_size))
Christoph Hellwig52399b12010-11-23 14:37:47 +0100174 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Christoph Hellwig52399b12010-11-23 14:37:47 +0100176 error = -ENOMEM;
Seth Forshee65965282011-07-18 08:06:23 -0700177 sbi->s_vhdr_buf = kmalloc(hfsplus_min_io_size(sb), GFP_KERNEL);
178 if (!sbi->s_vhdr_buf)
Christoph Hellwig52399b12010-11-23 14:37:47 +0100179 goto out;
Seth Forshee65965282011-07-18 08:06:23 -0700180 sbi->s_backup_vhdr_buf = kmalloc(hfsplus_min_io_size(sb), GFP_KERNEL);
181 if (!sbi->s_backup_vhdr_buf)
Christoph Hellwig52399b12010-11-23 14:37:47 +0100182 goto out_free_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Christoph Hellwig52399b12010-11-23 14:37:47 +0100184reread:
Seth Forshee65965282011-07-18 08:06:23 -0700185 error = hfsplus_submit_bio(sb, part_start + HFSPLUS_VOLHEAD_SECTOR,
186 sbi->s_vhdr_buf, (void **)&sbi->s_vhdr,
Mike Christie67ed2592016-06-05 14:31:58 -0500187 REQ_OP_READ, 0);
Christoph Hellwig52399b12010-11-23 14:37:47 +0100188 if (error)
189 goto out_free_backup_vhdr;
190
191 error = -EINVAL;
192 switch (sbi->s_vhdr->signature) {
193 case cpu_to_be16(HFSPLUS_VOLHEAD_SIGX):
194 set_bit(HFSPLUS_SB_HFSX, &sbi->flags);
195 /*FALLTHRU*/
196 case cpu_to_be16(HFSPLUS_VOLHEAD_SIG):
197 break;
198 case cpu_to_be16(HFSP_WRAP_MAGIC):
199 if (!hfsplus_read_mdb(sbi->s_vhdr, &wd))
Chuck Ebberta1dbcef2011-02-02 10:55:06 -0500200 goto out_free_backup_vhdr;
Christoph Hellwig52399b12010-11-23 14:37:47 +0100201 wd.ablk_size >>= HFSPLUS_SECTOR_SHIFT;
Christoph Hellwig4ba2d5f2011-02-16 09:34:22 +0100202 part_start += (sector_t)wd.ablk_start +
203 (sector_t)wd.embed_start * wd.ablk_size;
204 part_size = (sector_t)wd.embed_count * wd.ablk_size;
Christoph Hellwig52399b12010-11-23 14:37:47 +0100205 goto reread;
206 default:
207 /*
208 * Check for a partition block.
209 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * (should do this only for cdrom/loop though)
211 */
212 if (hfs_part_find(sb, &part_start, &part_size))
Chuck Ebberta1dbcef2011-02-02 10:55:06 -0500213 goto out_free_backup_vhdr;
Christoph Hellwig52399b12010-11-23 14:37:47 +0100214 goto reread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
Seth Forshee65965282011-07-18 08:06:23 -0700217 error = hfsplus_submit_bio(sb, part_start + part_size - 2,
218 sbi->s_backup_vhdr_buf,
Mike Christie67ed2592016-06-05 14:31:58 -0500219 (void **)&sbi->s_backup_vhdr, REQ_OP_READ,
220 0);
Christoph Hellwig52399b12010-11-23 14:37:47 +0100221 if (error)
222 goto out_free_backup_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Christoph Hellwig52399b12010-11-23 14:37:47 +0100224 error = -EINVAL;
225 if (sbi->s_backup_vhdr->signature != sbi->s_vhdr->signature) {
Joe Perchesd6142672013-04-30 15:27:55 -0700226 pr_warn("invalid secondary volume header\n");
Christoph Hellwig52399b12010-11-23 14:37:47 +0100227 goto out_free_backup_vhdr;
228 }
229
230 blocksize = be32_to_cpu(sbi->s_vhdr->blocksize);
231
232 /*
233 * Block size must be at least as large as a sector and a multiple of 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
Christoph Hellwig52399b12010-11-23 14:37:47 +0100235 if (blocksize < HFSPLUS_SECTOR_SIZE || ((blocksize - 1) & blocksize))
236 goto out_free_backup_vhdr;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200237 sbi->alloc_blksz = blocksize;
Fabian Frederick297cc272014-06-06 14:36:29 -0700238 sbi->alloc_blksz_shift = ilog2(blocksize);
Fabian Frederick915ab232014-06-06 14:36:27 -0700239 blocksize = min_t(u32, sbi->alloc_blksz, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Christoph Hellwig52399b12010-11-23 14:37:47 +0100241 /*
242 * Align block size to block offset.
243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 while (part_start & ((blocksize >> HFSPLUS_SECTOR_SHIFT) - 1))
245 blocksize >>= 1;
246
247 if (sb_set_blocksize(sb, blocksize) != blocksize) {
Joe Perchesd6142672013-04-30 15:27:55 -0700248 pr_err("unable to set blocksize to %u!\n", blocksize);
Christoph Hellwig52399b12010-11-23 14:37:47 +0100249 goto out_free_backup_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200252 sbi->blockoffset =
253 part_start >> (sb->s_blocksize_bits - HFSPLUS_SECTOR_SHIFT);
Christoph Hellwig52399b12010-11-23 14:37:47 +0100254 sbi->part_start = part_start;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200255 sbi->sect_count = part_size;
256 sbi->fs_shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return 0;
Christoph Hellwig52399b12010-11-23 14:37:47 +0100258
259out_free_backup_vhdr:
Seth Forsheef588c962011-09-15 10:48:27 -0400260 kfree(sbi->s_backup_vhdr_buf);
Christoph Hellwig52399b12010-11-23 14:37:47 +0100261out_free_vhdr:
Seth Forsheef588c962011-09-15 10:48:27 -0400262 kfree(sbi->s_vhdr_buf);
Christoph Hellwig52399b12010-11-23 14:37:47 +0100263out:
264 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}