stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004 |
| 3 | * esd gmbh <www.esd-electronics.com> |
| 4 | * Reinhard Arlt <reinhard.arlt@esd-electronics.com> |
| 5 | * |
| 6 | * based on code of fs/reiserfs/dev.c by |
| 7 | * |
| 8 | * (C) Copyright 2003 - 2004 |
| 9 | * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com> |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 24 | */ |
| 25 | |
| 26 | |
| 27 | #include <common.h> |
Jon Loeliger | dd60d12 | 2007-07-09 17:56:50 -0500 | [diff] [blame] | 28 | #if defined(CONFIG_CMD_EXT2) |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 29 | |
| 30 | #include <config.h> |
| 31 | #include <ext2fs.h> |
| 32 | |
| 33 | static block_dev_desc_t *ext2fs_block_dev_desc; |
| 34 | static disk_partition_t part_info; |
| 35 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 36 | int ext2fs_set_blk_dev (block_dev_desc_t * rbdd, int part) |
| 37 | { |
| 38 | ext2fs_block_dev_desc = rbdd; |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 39 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 40 | if (part == 0) { |
| 41 | /* disk doesn't use partition table */ |
| 42 | part_info.start = 0; |
| 43 | part_info.size = rbdd->lba; |
| 44 | part_info.blksz = rbdd->blksz; |
| 45 | } else { |
| 46 | if (get_partition_info |
| 47 | (ext2fs_block_dev_desc, part, &part_info)) { |
| 48 | return 0; |
| 49 | } |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 50 | } |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 51 | return (part_info.size); |
| 52 | } |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 53 | |
| 54 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 55 | int ext2fs_devread (int sector, int byte_offset, int byte_len, char *buf) { |
| 56 | char sec_buf[SECTOR_SIZE]; |
| 57 | unsigned block_len; |
| 58 | |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 59 | /* |
| 60 | * Check partition boundaries |
| 61 | */ |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 62 | if ((sector < 0) |
| 63 | || ((sector + ((byte_offset + byte_len - 1) >> SECTOR_BITS)) >= |
| 64 | part_info.size)) { |
| 65 | /* errnum = ERR_OUTSIDE_PART; */ |
| 66 | printf (" ** ext2fs_devread() read outside partition sector %d\n", sector); |
| 67 | return (0); |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | /* |
| 71 | * Get the read to the beginning of a partition. |
| 72 | */ |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 73 | sector += byte_offset >> SECTOR_BITS; |
| 74 | byte_offset &= SECTOR_SIZE - 1; |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 75 | |
wdenk | b05dcb5 | 2005-03-04 11:27:31 +0000 | [diff] [blame] | 76 | debug (" <%d, %d, %d>\n", sector, byte_offset, byte_len); |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 77 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 78 | if (ext2fs_block_dev_desc == NULL) { |
| 79 | printf ("** Invalid Block Device Descriptor (NULL)\n"); |
| 80 | return (0); |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 81 | } |
| 82 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 83 | if (byte_offset != 0) { |
| 84 | /* read first part which isn't aligned with start of sector */ |
| 85 | if (ext2fs_block_dev_desc-> |
| 86 | block_read (ext2fs_block_dev_desc->dev, |
| 87 | part_info.start + sector, 1, |
| 88 | (unsigned long *) sec_buf) != 1) { |
| 89 | printf (" ** ext2fs_devread() read error **\n"); |
| 90 | return (0); |
| 91 | } |
| 92 | memcpy (buf, sec_buf + byte_offset, |
| 93 | min (SECTOR_SIZE - byte_offset, byte_len)); |
| 94 | buf += min (SECTOR_SIZE - byte_offset, byte_len); |
| 95 | byte_len -= min (SECTOR_SIZE - byte_offset, byte_len); |
| 96 | sector++; |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 97 | } |
| 98 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 99 | /* read sector aligned part */ |
| 100 | block_len = byte_len & ~(SECTOR_SIZE - 1); |
| 101 | if (ext2fs_block_dev_desc->block_read (ext2fs_block_dev_desc->dev, |
| 102 | part_info.start + sector, |
| 103 | block_len / SECTOR_SIZE, |
| 104 | (unsigned long *) buf) != |
| 105 | block_len / SECTOR_SIZE) { |
| 106 | printf (" ** ext2fs_devread() read error - block\n"); |
| 107 | return (0); |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 108 | } |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 109 | buf += block_len; |
| 110 | byte_len -= block_len; |
| 111 | sector += block_len / SECTOR_SIZE; |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 112 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 113 | if (byte_len != 0) { |
| 114 | /* read rest of data which are not in whole sector */ |
| 115 | if (ext2fs_block_dev_desc-> |
| 116 | block_read (ext2fs_block_dev_desc->dev, |
| 117 | part_info.start + sector, 1, |
| 118 | (unsigned long *) sec_buf) != 1) { |
| 119 | printf (" ** ext2fs_devread() read error - last part\n"); |
| 120 | return (0); |
| 121 | } |
| 122 | memcpy (buf, sec_buf, byte_len); |
stroese | 2b91871 | 2004-12-16 17:26:24 +0000 | [diff] [blame] | 123 | } |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 124 | return (1); |
| 125 | } |
Jon Loeliger | f40a7f3 | 2007-07-10 11:07:56 -0500 | [diff] [blame] | 126 | #endif |