2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* partition.c
|
|
|
|
*
|
|
|
|
* PURPOSE
|
|
|
|
* Partition handling routines for the OSTA-UDF(tm) filesystem.
|
|
|
|
*
|
|
|
|
* COPYRIGHT
|
|
|
|
* This file is distributed under the terms of the GNU General Public
|
|
|
|
* License (GPL). Copies of the GPL can be obtained from:
|
|
|
|
* ftp://prep.ai.mit.edu/pub/gnu/GPL
|
|
|
|
* Each contributing author retains all rights to their own work.
|
|
|
|
*
|
|
|
|
* (C) 1998-2001 Ben Fennema
|
|
|
|
*
|
|
|
|
* HISTORY
|
|
|
|
*
|
2007-07-21 15:37:18 +04:00
|
|
|
* 12/06/98 blf Created file.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "udfdecl.h"
|
|
|
|
#include "udf_sb.h"
|
|
|
|
#include "udf_i.h"
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/udf_fs.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/buffer_head.h>
|
|
|
|
|
2007-07-19 12:47:43 +04:00
|
|
|
inline uint32_t udf_get_pblock(struct super_block *sb, uint32_t block,
|
|
|
|
uint16_t partition, uint32_t offset)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2008-02-08 15:20:30 +03:00
|
|
|
struct udf_sb_info *sbi = UDF_SB(sb);
|
|
|
|
struct udf_part_map *map;
|
|
|
|
if (partition >= sbi->s_partitions) {
|
2007-07-21 15:37:18 +04:00
|
|
|
udf_debug("block=%d, partition=%d, offset=%d: invalid partition\n",
|
|
|
|
block, partition, offset);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
2008-02-08 15:20:30 +03:00
|
|
|
map = &sbi->s_partmaps[partition];
|
|
|
|
if (map->s_partition_func)
|
|
|
|
return map->s_partition_func(sb, block, partition, offset);
|
2005-04-17 02:20:36 +04:00
|
|
|
else
|
2008-02-08 15:20:30 +03:00
|
|
|
return map->s_partition_root + block + offset;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2007-07-21 15:37:18 +04:00
|
|
|
uint32_t udf_get_pblock_virt15(struct super_block *sb, uint32_t block,
|
2007-07-19 12:47:43 +04:00
|
|
|
uint16_t partition, uint32_t offset)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct buffer_head *bh = NULL;
|
|
|
|
uint32_t newblock;
|
|
|
|
uint32_t index;
|
|
|
|
uint32_t loc;
|
2008-02-08 15:20:30 +03:00
|
|
|
struct udf_sb_info *sbi = UDF_SB(sb);
|
|
|
|
struct udf_part_map *map;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
map = &sbi->s_partmaps[partition];
|
|
|
|
index = (sb->s_blocksize - map->s_type_specific.s_virtual.s_start_offset) / sizeof(uint32_t);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
if (block > map->s_type_specific.s_virtual.s_num_entries) {
|
2007-07-21 15:37:18 +04:00
|
|
|
udf_debug("Trying to access block beyond end of VAT (%d max %d)\n",
|
2008-02-08 15:20:30 +03:00
|
|
|
block, map->s_type_specific.s_virtual.s_num_entries);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:47:43 +04:00
|
|
|
if (block >= index) {
|
2005-04-17 02:20:36 +04:00
|
|
|
block -= index;
|
|
|
|
newblock = 1 + (block / (sb->s_blocksize / sizeof(uint32_t)));
|
|
|
|
index = block % (sb->s_blocksize / sizeof(uint32_t));
|
2007-07-19 12:47:43 +04:00
|
|
|
} else {
|
2005-04-17 02:20:36 +04:00
|
|
|
newblock = 0;
|
2008-02-08 15:20:30 +03:00
|
|
|
index = map->s_type_specific.s_virtual.s_start_offset / sizeof(uint32_t) + block;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
loc = udf_block_map(sbi->s_vat_inode, newblock);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-07-19 12:47:43 +04:00
|
|
|
if (!(bh = sb_bread(sb, loc))) {
|
2005-04-17 02:20:36 +04:00
|
|
|
udf_debug("get_pblock(UDF_VIRTUAL_MAP:%p,%d,%d) VAT: %d[%d]\n",
|
2007-07-19 12:47:43 +04:00
|
|
|
sb, block, partition, loc, index);
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
2007-07-21 15:37:18 +04:00
|
|
|
loc = le32_to_cpu(((__le32 *)bh->b_data)[index]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-05-08 11:35:16 +04:00
|
|
|
brelse(bh);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
if (UDF_I_LOCATION(sbi->s_vat_inode).partitionReferenceNum == partition) {
|
2005-04-17 02:20:36 +04:00
|
|
|
udf_debug("recursive call to udf_get_pblock!\n");
|
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:47:43 +04:00
|
|
|
return udf_get_pblock(sb, loc,
|
2008-02-08 15:20:30 +03:00
|
|
|
UDF_I_LOCATION(sbi->s_vat_inode).partitionReferenceNum,
|
2007-07-21 15:37:18 +04:00
|
|
|
offset);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2007-07-19 12:47:43 +04:00
|
|
|
inline uint32_t udf_get_pblock_virt20(struct super_block * sb, uint32_t block,
|
|
|
|
uint16_t partition, uint32_t offset)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
return udf_get_pblock_virt15(sb, block, partition, offset);
|
|
|
|
}
|
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
uint32_t udf_get_pblock_spar15(struct super_block *sb, uint32_t block,
|
2007-07-19 12:47:43 +04:00
|
|
|
uint16_t partition, uint32_t offset)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct sparingTable *st = NULL;
|
2008-02-08 15:20:30 +03:00
|
|
|
struct udf_sb_info *sbi = UDF_SB(sb);
|
|
|
|
struct udf_part_map *map;
|
|
|
|
uint32_t packet;
|
|
|
|
|
|
|
|
map = &sbi->s_partmaps[partition];
|
|
|
|
packet = (block + offset) & ~(map->s_type_specific.s_sparing.s_packet_len - 1);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-07-19 12:47:43 +04:00
|
|
|
for (i = 0; i < 4; i++) {
|
2008-02-08 15:20:30 +03:00
|
|
|
if (map->s_type_specific.s_sparing.s_spar_map[i] != NULL) {
|
|
|
|
st = (struct sparingTable *)map->s_type_specific.s_sparing.s_spar_map[i]->b_data;
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:47:43 +04:00
|
|
|
if (st) {
|
|
|
|
for (i = 0; i < le16_to_cpu(st->reallocationTableLen); i++) {
|
2007-07-21 15:37:18 +04:00
|
|
|
if (le32_to_cpu(st->mapEntry[i].origLocation) >= 0xFFFFFFF0) {
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
2007-07-21 15:37:18 +04:00
|
|
|
} else if (le32_to_cpu(st->mapEntry[i].origLocation) == packet) {
|
|
|
|
return le32_to_cpu(st->mapEntry[i].mappedLocation) +
|
2008-02-08 15:20:30 +03:00
|
|
|
((block + offset) & (map->s_type_specific.s_sparing.s_packet_len - 1));
|
2007-07-21 15:37:18 +04:00
|
|
|
} else if (le32_to_cpu(st->mapEntry[i].origLocation) > packet) {
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
2007-07-21 15:37:18 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
2007-07-21 15:37:18 +04:00
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
return map->s_partition_root + block + offset;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int udf_relocate_blocks(struct super_block *sb, long old_block, long *new_block)
|
|
|
|
{
|
|
|
|
struct udf_sparing_data *sdata;
|
|
|
|
struct sparingTable *st = NULL;
|
|
|
|
struct sparingEntry mapEntry;
|
|
|
|
uint32_t packet;
|
|
|
|
int i, j, k, l;
|
2008-02-08 15:20:30 +03:00
|
|
|
struct udf_sb_info *sbi = UDF_SB(sb);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
for (i = 0; i < sbi->s_partitions; i++) {
|
|
|
|
struct udf_part_map *map = &sbi->s_partmaps[i];
|
|
|
|
if (old_block > map->s_partition_root &&
|
|
|
|
old_block < map->s_partition_root + map->s_partition_len) {
|
|
|
|
sdata = &map->s_type_specific.s_sparing;
|
|
|
|
packet = (old_block - map->s_partition_root) & ~(sdata->s_packet_len - 1);
|
2007-07-19 12:47:43 +04:00
|
|
|
|
|
|
|
for (j = 0; j < 4; j++) {
|
2008-02-08 15:20:30 +03:00
|
|
|
if (map->s_type_specific.s_sparing.s_spar_map[j] != NULL) {
|
2007-07-21 15:37:18 +04:00
|
|
|
st = (struct sparingTable *)sdata->s_spar_map[j]->b_data;
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!st)
|
|
|
|
return 1;
|
|
|
|
|
2007-07-21 15:37:18 +04:00
|
|
|
for (k = 0; k < le16_to_cpu(st->reallocationTableLen); k++) {
|
|
|
|
if (le32_to_cpu(st->mapEntry[k].origLocation) == 0xFFFFFFFF) {
|
2007-07-19 12:47:43 +04:00
|
|
|
for (; j < 4; j++) {
|
|
|
|
if (sdata->s_spar_map[j]) {
|
2007-07-21 15:37:18 +04:00
|
|
|
st = (struct sparingTable *)sdata->s_spar_map[j]->b_data;
|
|
|
|
st->mapEntry[k].origLocation = cpu_to_le32(packet);
|
|
|
|
udf_update_tag((char *)st, sizeof(struct sparingTable) + le16_to_cpu(st->reallocationTableLen) * sizeof(struct sparingEntry));
|
|
|
|
mark_buffer_dirty(sdata->s_spar_map[j]);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
2007-07-21 15:37:18 +04:00
|
|
|
*new_block = le32_to_cpu(st->mapEntry[k].mappedLocation) +
|
2008-02-08 15:20:30 +03:00
|
|
|
((old_block - map->s_partition_root) & (sdata->s_packet_len - 1));
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
2007-07-21 15:37:18 +04:00
|
|
|
} else if (le32_to_cpu(st->mapEntry[k].origLocation) == packet) {
|
|
|
|
*new_block = le32_to_cpu(st->mapEntry[k].mappedLocation) +
|
2008-02-08 15:20:30 +03:00
|
|
|
((old_block - map->s_partition_root) & (sdata->s_packet_len - 1));
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
2007-07-21 15:37:18 +04:00
|
|
|
} else if (le32_to_cpu(st->mapEntry[k].origLocation) > packet) {
|
2005-04-17 02:20:36 +04:00
|
|
|
break;
|
2007-07-21 15:37:18 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2007-07-21 15:37:18 +04:00
|
|
|
|
|
|
|
for (l = k; l < le16_to_cpu(st->reallocationTableLen); l++) {
|
|
|
|
if (le32_to_cpu(st->mapEntry[l].origLocation) == 0xFFFFFFFF) {
|
2007-07-19 12:47:43 +04:00
|
|
|
for (; j < 4; j++) {
|
|
|
|
if (sdata->s_spar_map[j]) {
|
2007-07-21 15:37:18 +04:00
|
|
|
st = (struct sparingTable *)sdata->s_spar_map[j]->b_data;
|
|
|
|
mapEntry = st->mapEntry[l];
|
|
|
|
mapEntry.origLocation = cpu_to_le32(packet);
|
|
|
|
memmove(&st->mapEntry[k + 1], &st->mapEntry[k], (l - k) * sizeof(struct sparingEntry));
|
|
|
|
st->mapEntry[k] = mapEntry;
|
|
|
|
udf_update_tag((char *)st, sizeof(struct sparingTable) + le16_to_cpu(st->reallocationTableLen) * sizeof(struct sparingEntry));
|
|
|
|
mark_buffer_dirty(sdata->s_spar_map[j]);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
2007-07-21 15:37:18 +04:00
|
|
|
*new_block = le32_to_cpu(st->mapEntry[k].mappedLocation) +
|
2008-02-08 15:20:30 +03:00
|
|
|
((old_block - map->s_partition_root) & (sdata->s_packet_len - 1));
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2007-07-21 15:37:18 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
return 1;
|
2007-07-21 15:37:18 +04:00
|
|
|
} /* if old_block */
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2007-07-21 15:37:18 +04:00
|
|
|
|
2008-02-08 15:20:30 +03:00
|
|
|
if (i == sbi->s_partitions) {
|
2005-04-17 02:20:36 +04:00
|
|
|
/* outside of partitions */
|
|
|
|
/* for now, fail =) */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|