toaruos/kernel/fs/ext2_disk.c

982 lines
30 KiB
C
Raw Normal View History

/* vim: tabstop=4 shiftwidth=4 noexpandtab
*/
#include <system.h>
#include <ext2.h>
#include <fs.h>
#include <logging.h>
#define EXT2_DEBUG_BLOCK_DESCRIPTORS 0
2012-01-26 05:25:59 +04:00
#define BLOCKSIZE 1024
#define SECTORSIZE 512
#define CACHEENTRIES 10240
#define DISK_PORT 0x1F0
typedef struct {
uint32_t block_no;
uint32_t last_use;
uint8_t block[BLOCKSIZE];
} ext2_disk_cache_entry_t;
2012-01-26 05:25:59 +04:00
ext2_disk_cache_entry_t *ext2_disk_cache = NULL; // LSU block cache
ext2_superblock_t *ext2_disk_superblock = NULL;
ext2_bgdescriptor_t *ext2_disk_root_block = NULL;
fs_node_t *ext2_root_fsnode = NULL;
/** Prototypes */
uint32_t ext2_disk_node_from_file(ext2_inodetable_t *inode, ext2_dir_t *direntry, fs_node_t *fnode);
ext2_inodetable_t *ext2_disk_inode(uint32_t inode);
ext2_inodetable_t *ext2_disk_alloc_inode(ext2_inodetable_t *parent, uint32_t no, char *name, uint16_t mode, uint32_t *inode_no);
fs_node_t *finddir_ext2_disk(fs_node_t *node, char *name);
void insertdir_ext2_disk(ext2_inodetable_t *p_node, uint32_t no, uint32_t inode, char *name, uint8_t type);
void ext2_disk_write_inode(ext2_inodetable_t *inode, uint32_t index);
uint32_t write_ext2_disk(fs_node_t *node, uint32_t offset, uint32_t size, uint8_t *buffer);
uint32_t read_ext2_disk(fs_node_t *node, uint32_t offset, uint32_t size, uint8_t *buffer);
uint32_t ext2_disk_inodes_per_group = 0;
2012-01-26 05:25:59 +04:00
uint32_t ext2_disk_bg_descriptors = 0; // Total number of block groups
#define BGDS ext2_disk_bg_descriptors
#define SB ext2_disk_superblock
#define BGD ext2_disk_root_block
#define RN ext2_root_fsnode
#define DC ext2_disk_cache
2012-01-26 05:25:59 +04:00
#define BLOCKBIT(n) (bg_buffer[((n) >> 3)] & (1 << (((n) % 8))))
#define BLOCKBYTE(n) (bg_buffer[((n) >> 3)])
#define SETBIT(n) (1 << (((n) % 8)))
static uint32_t btos(uint32_t block) {
return block * (BLOCKSIZE / SECTORSIZE);
}
2011-12-11 05:15:12 +04:00
static uint8_t volatile lock;
2012-01-26 05:25:59 +04:00
void ext2_disk_read_block(uint32_t block_no, uint8_t *buf) {
if (!block_no) return;
2011-12-11 05:15:12 +04:00
spin_lock(&lock);
int oldest = -1;
uint32_t oldest_age = UINT32_MAX;
for (uint32_t i = 0; i < CACHEENTRIES; ++i) {
if (DC[i].block_no == block_no) {
DC[i].last_use = now();
memcpy(buf, &DC[i].block, BLOCKSIZE);
2011-12-11 05:15:12 +04:00
spin_unlock(&lock);
return;
}
if (DC[i].last_use < oldest_age) {
oldest = i;
oldest_age = DC[i].last_use;
}
}
2012-01-26 05:25:59 +04:00
for (uint32_t i = 0; i < BLOCKSIZE / SECTORSIZE; ++i) {
ide_read_sector(DISK_PORT, 0, btos(block_no) + i, (uint8_t *)((uint32_t)&(DC[oldest].block) + SECTORSIZE * i));
}
memcpy(buf, &DC[oldest].block, BLOCKSIZE);
DC[oldest].block_no = block_no;
DC[oldest].last_use = now();
2011-12-11 05:15:12 +04:00
spin_unlock(&lock);
}
2012-01-26 05:25:59 +04:00
void ext2_disk_write_block(uint32_t block_no, uint8_t *buf) {
if (!block_no) {
return;
}
2011-12-11 05:15:12 +04:00
spin_lock(&lock);
2012-01-26 05:25:59 +04:00
// write out to the disk
for (uint32_t i = 0; i < BLOCKSIZE / SECTORSIZE; ++i) {
ide_write_sector(DISK_PORT, 0, btos(block_no) + i, (uint8_t *)((uint32_t)buf + SECTORSIZE * i));
//XXX: a hack? how about making ide_write_sector() blocking?
timer_wait(10);
}
// update the cache
int oldest = -1;
uint32_t oldest_age = UINT32_MAX;
for (uint32_t i = 0; i < CACHEENTRIES; ++i) {
if (DC[i].block_no == block_no) {
DC[i].last_use = now();
memcpy(&DC[i].block, buf, BLOCKSIZE);
2011-12-11 05:15:12 +04:00
spin_unlock(&lock);
return;
}
if (DC[i].last_use < oldest_age) {
oldest = i;
oldest_age = DC[i].last_use;
}
}
memcpy(&DC[oldest].block, buf, BLOCKSIZE);
DC[oldest].block_no = block_no;
DC[oldest].last_use = now();
2011-12-11 05:15:12 +04:00
spin_unlock(&lock);
}
2012-01-26 05:25:59 +04:00
void ext2_set_real_block(ext2_inodetable_t *inode, uint32_t block, uint32_t real) {
if (block < 12) {
inode->block[block] = real;
return;
} else if (block < 12 + BLOCKSIZE / sizeof(uint32_t)) {
uint8_t *tmp = malloc(BLOCKSIZE);
ext2_disk_read_block(inode->block[12], tmp);
((uint32_t *)tmp)[block - 12] = real;
ext2_disk_write_block(inode->block[12], tmp);
free(tmp);
return;
} else if (block < 12 + 256 + 256 * 256) {
uint32_t a = block - 12;
uint32_t b = a - 256;
uint32_t c = b / 256;
uint32_t d = b - c * 256;
uint8_t *tmp = malloc(BLOCKSIZE);
ext2_disk_read_block(inode->block[13], tmp);
uint32_t nblock = ((uint32_t *)tmp)[c];
ext2_disk_read_block(nblock, tmp);
((uint32_t *)tmp)[d] = real;
ext2_disk_write_block(nblock, tmp);
free(tmp);
return;
} else if (block < 12 + 256 + 256 * 256 + 256 * 256 * 256) {
uint32_t a = block - 12;
uint32_t b = a - 256;
uint32_t c = b - 256 * 256;
uint32_t d = c / (256 * 256);
uint32_t e = c - d * 256 * 256;
uint32_t f = e / 256;
uint32_t g = e - f * 256;
uint8_t *tmp = malloc(BLOCKSIZE);
ext2_disk_read_block(inode->block[14], tmp);
uint32_t nblock = ((uint32_t *)tmp)[d];
ext2_disk_read_block(nblock, tmp);
nblock = ((uint32_t *)tmp)[f];
ext2_disk_read_block(nblock, tmp);
((uint32_t *)tmp)[g] = nblock;
ext2_disk_write_block(nblock, tmp);
free(tmp);
return;
}
HALT_AND_CATCH_FIRE("Attempted to set a file block that was too high :(", NULL);
}
/**
* Return the actual block number represented by the 'block'th block
* in the 'inode'.
*/
uint32_t ext2_get_real_block(ext2_inodetable_t *inode, uint32_t block) {
if (block < 12) {
return inode->block[block];
2012-01-26 05:25:59 +04:00
} else if (block < 12 + BLOCKSIZE / sizeof(uint32_t)) {
uint8_t *tmp = malloc(BLOCKSIZE);
ext2_disk_read_block(inode->block[12], tmp);
uint32_t nblock = ((uint32_t *)tmp)[block - 12];
free(tmp);
return nblock;
} else if (block < 12 + 256 + 256 * 256) {
uint32_t a = block - 12;
uint32_t b = a - 256;
uint32_t c = b / 256;
uint32_t d = b - c * 256;
2012-01-26 05:25:59 +04:00
uint8_t *tmp = malloc(BLOCKSIZE);
ext2_disk_read_block(inode->block[13], tmp);
uint32_t nblock = ((uint32_t *)tmp)[c];
ext2_disk_read_block(nblock, tmp);
nblock = ((uint32_t *)tmp)[d];
free(tmp);
return nblock;
2012-01-26 05:25:59 +04:00
} else if (block < 12 + 256 + 256 * 256 + 256 * 256 * 256) {
uint32_t a = block - 12;
uint32_t b = a - 256;
uint32_t c = b - 256 * 256;
uint32_t d = c / (256 * 256);
uint32_t e = c - d * 256 * 256;
uint32_t f = e / 256;
uint32_t g = e - f * 256;
uint8_t *tmp = malloc(BLOCKSIZE);
ext2_disk_read_block(inode->block[14], tmp);
uint32_t nblock = ((uint32_t *)tmp)[d];
ext2_disk_read_block(nblock, tmp);
nblock = ((uint32_t *)tmp)[f];
ext2_disk_read_block(nblock, tmp);
nblock = ((uint32_t *)tmp)[g];
free(tmp);
return nblock;
}
HALT_AND_CATCH_FIRE("Attempted to get a file block that was too high :(", NULL);
return 0;
}
/**
* Allocate memory for a block in an inode whose inode number is 'no'.
*/
void ext2_disk_inode_alloc_block(ext2_inodetable_t *inode, uint32_t no, uint32_t block) {
uint32_t block_no = 0, block_offset = 0, group = 0;
char *bg_buffer = malloc(BLOCKSIZE);
for (uint32_t i = 0; i < BGDS; ++i) {
if (BGD[i].free_blocks_count > 0) {
ext2_disk_read_block(BGD[i].block_bitmap, (uint8_t *)bg_buffer);
while (BLOCKBIT(block_offset))
++block_offset;
block_no = block_offset + SB->blocks_per_group * i + 1;
group = i;
break;
}
}
2012-01-26 05:25:59 +04:00
if (!block_no) {
free(bg_buffer);
return;
}
// Found a block (block_no), we need to mark it as in-use
uint8_t b = BLOCKBYTE(block_offset);
b |= SETBIT(block_offset);
BLOCKBYTE(block_offset) = b;
ext2_disk_write_block(BGD[group].block_bitmap, (uint8_t *)bg_buffer);
free(bg_buffer);
ext2_set_real_block(inode, block, block_no);
// Now update available blocks count
BGD[group].free_blocks_count -= 1;
ext2_disk_write_block(2, (uint8_t *)BGD);
inode->blocks++;
ext2_disk_write_inode(inode, no);
}
/**
* Read the 'block'th block within an inode 'inode', and put it into
* the buffer 'buf'. In other words, this function reads the actual file
* content. 'no' is the inode number of 'inode'.
* @return the actual block number read from.
*/
uint32_t ext2_disk_inode_read_block(ext2_inodetable_t *inode, uint32_t no, uint32_t block, uint8_t *buf) {
// if the memory for 'block'th block has not been allocated to this inode, we need to
// allocate the memory first using block bitmap.
if (block >= inode->blocks - 1) {
ext2_disk_inode_alloc_block(inode, no, block);
}
// The real work to read a block from an inode.
uint32_t real_block = ext2_get_real_block(inode, block);
ext2_disk_read_block(real_block, buf);
return real_block;
}
/**
* Write to the 'block'th block within an inode 'inode' from the buffer 'buf'.
* In other words, this function writes to the actual file content.
* @return the actual block number read from.
*/
uint32_t ext2_disk_inode_write_block(ext2_inodetable_t *inode, uint32_t no, uint32_t block, uint8_t *buf) {
// if the memory for 'block'th block has not been allocated to this inode, we need to
// allocate the memory first using block bitmap.
if (block >= inode->blocks - 1) {
ext2_disk_inode_alloc_block(inode, no, block);
}
// The real work to write to a block of an inode.
uint32_t real_block = ext2_get_real_block(inode, block);
ext2_disk_write_block(real_block, buf);
return real_block;
}
/**
* Create a new, regular, and empty file under directory 'parent'.
*/
void ext2_create(fs_node_t *parent, char *name, uint16_t permission) {
uint16_t mode = permission | EXT2_S_IFREG;
ext2_inodetable_t *parent_inode = ext2_disk_inode(parent->inode);
// Check to make sure no same name in the parent dir
fs_node_t *b_exist = finddir_ext2_disk(parent, name);
if (b_exist) {
kprintf("%s: Already exists\n", name);
free(b_exist);
free(parent_inode);
return;
}
free(b_exist);
// Create the inode under 'parent'
uint32_t inode_no;
ext2_inodetable_t *inode = ext2_disk_alloc_inode(parent_inode, parent->inode, name, mode, &inode_no);
free(parent_inode);
if (inode == NULL) {
kprintf("%s: Cannot be created\n", name);
return;
}
free(inode);
}
/**
* Make a new directory. 'name' consists the name for the new directory
* to be created using 'permission' under 'parent' directory.
* Message will be displayed in the terminal for success or failure.
*/
void ext2_mkdir(fs_node_t *parent, char *name, uint16_t permission) {
uint16_t mode = permission | EXT2_S_IFDIR;
ext2_inodetable_t *parent_inode = ext2_disk_inode(parent->inode);
// Check to make sure no same name in the parent dir
fs_node_t *b_exist = finddir_ext2_disk(parent, name);
if (b_exist) {
kprintf("mkdir: %s: Already exists\n", name);
free(b_exist);
free(parent_inode);
return;
}
free(b_exist);
// Create the inode under 'parent'
uint32_t inode_no;
ext2_inodetable_t *inode = ext2_disk_alloc_inode(parent_inode, parent->inode, name, mode, &inode_no);
free(parent_inode);
if (inode == NULL) {
kprintf("mkdir: %s: Cannot be created\n", name);
return;
}
// Init this newly created dir, put '.' and '..' into it.
// Here we pass in 0 as the inode number for '.' and '..' because the
// 'cd' command can handle them correctly, so it does not matter.
insertdir_ext2_disk(inode, inode_no, 0, ".", 2);
insertdir_ext2_disk(inode, inode_no, 0, "..", 2);
free(inode);
}
uint8_t mode_to_filetype(uint16_t mode) {
uint16_t ftype = mode & 0xF000;
switch (ftype) {
case EXT2_S_IFREG:
return 1;
case EXT2_S_IFDIR:
return 2;
case EXT2_S_IFCHR:
return 3;
case EXT2_S_IFBLK:
return 4;
case EXT2_S_IFIFO:
return 5;
case EXT2_S_IFSOCK:
return 6;
case EXT2_S_IFLNK:
return 7;
}
// File type is unknown
return 0;
}
2012-01-26 05:25:59 +04:00
/**
* Allocate a new inode with parent as the parent directory node and name as the filename
* within that parent directory. Returns a pointer to a memory-copy of the node which
* the client can (and should) free.
* 'ftype' is file type, used when adding the entry to the parent dir. 1 for regular file,
* 2 for directory, etc... 'no' is the inode number of 'parent'.
* Upon return, the inode number of the newly allocated inode will be stored in 'inode_no'.
*
* This function assumes that parent directory 'parent' does not contain any entry with
* same name as 'name'. Caller shuold ensure this.
* Note that inode just created using this function has size of 0, which means no data
* blocks have been allocated to the inode.
*/
ext2_inodetable_t *ext2_disk_alloc_inode
(
ext2_inodetable_t *parent,
uint32_t no,
char *name,
uint16_t mode,
uint32_t *inode_no
) {
if ((parent->mode & EXT2_S_IFDIR) == 0 || name == NULL) {
return NULL;
}
ext2_inodetable_t *inode;
uint32_t node_no = 0, node_offset = 0, group = 0;
char *bg_buffer = malloc(BLOCKSIZE);
/* Locate a block with an available inode. Will probably be the first block group. */
for (uint32_t i = 0; i < BGDS; ++i) {
if (BGD[i].free_inodes_count > 0) {
2012-01-26 05:25:59 +04:00
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("Group %d has %d free inodes!\n", i, BGD[i].free_inodes_count);
2012-01-26 05:25:59 +04:00
#endif
ext2_disk_read_block(BGD[i].inode_bitmap, (uint8_t *)bg_buffer);
2012-01-26 05:25:59 +04:00
while (BLOCKBIT(node_offset))
++node_offset;
node_no = node_offset + ext2_disk_inodes_per_group * i + 1;
group = i;
break;
}
}
if (!node_no) {
free(bg_buffer);
return NULL;
}
/* Alright, we found an inode (node_no), we need to mark it as in-use... */
uint8_t b = BLOCKBYTE(node_offset);
2012-01-26 05:25:59 +04:00
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("Located an inode at #%d (%d), the byte for this block is currently set to %x\n", node_no, node_offset, (uint32_t)b);
2012-01-26 05:25:59 +04:00
#endif
b |= SETBIT(node_offset);
2012-01-26 05:25:59 +04:00
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("We would want to set it to %x\n", (uint32_t)b);
kprintf("Setting it in our temporary buffer...\n");
2012-01-26 05:25:59 +04:00
#endif
BLOCKBYTE(node_offset) = b;
2012-01-26 05:25:59 +04:00
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("\nWriting back out.\n");
2012-01-26 05:25:59 +04:00
#endif
ext2_disk_write_block(BGD[group].inode_bitmap, (uint8_t *)bg_buffer);
free(bg_buffer);
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("Okay, now we need to update the available inodes count...\n");
kprintf("it is %d, it should be %d\n", BGD[group].free_inodes_count, BGD[group].free_inodes_count - 1);
kprintf("\n");
kprintf("%d\n", BGD[group].free_inodes_count);
2012-01-26 05:25:59 +04:00
#endif
BGD[group].free_inodes_count -= 1;
2012-01-26 05:25:59 +04:00
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("%d\n", BGD[group].free_inodes_count);
kprintf("\nOkay, writing the block descriptors back to disk.\n");
2012-01-26 05:25:59 +04:00
#endif
ext2_disk_write_block(2, (uint8_t *)BGD);
2012-01-26 05:25:59 +04:00
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("Alright, we have an inode (%d), time to write it out to disk and make the file in the directory.\n", node_no);
2012-01-26 05:25:59 +04:00
#endif
2012-01-26 05:25:59 +04:00
// Get the inode struct from the disk and init it
inode = ext2_disk_inode(node_no);
inode->size = 0;
inode->blocks = 1;
inode->mode = mode;
ext2_disk_write_inode(inode, node_no);
*inode_no = node_no;
2012-01-26 05:25:59 +04:00
// Create an entry in the parent directory
uint8_t ftype = mode_to_filetype(mode);
insertdir_ext2_disk(parent, no, node_no, name, ftype);
2012-01-26 05:25:59 +04:00
return inode;
}
2012-01-26 05:25:59 +04:00
/**
* Return the 'index'th directory entry in the directory represented by 'inode'.
* Caller should free the memory.
*/
ext2_dir_t *ext2_disk_direntry(ext2_inodetable_t *inode, uint32_t no, uint32_t index) {
uint8_t *block = malloc(BLOCKSIZE);
uint8_t block_nr = 0;
ext2_disk_inode_read_block(inode, no, block_nr, block);
uint32_t dir_offset = 0;
uint32_t total_offset = 0;
uint32_t dir_index = 0;
while (total_offset < inode->size && dir_index <= index) {
ext2_dir_t *d_ent = (ext2_dir_t *)((uintptr_t)block + dir_offset);
if (dir_index == index) {
2012-01-26 05:25:59 +04:00
ext2_dir_t *out = malloc(d_ent->rec_len);
memcpy(out, d_ent, d_ent->rec_len);
free(block);
return out;
}
2012-01-26 05:25:59 +04:00
dir_offset += d_ent->rec_len;
2012-01-26 05:25:59 +04:00
total_offset += d_ent->rec_len;
dir_index++;
2012-01-26 05:25:59 +04:00
// move on to the next block of this directory if needed.
if (dir_offset >= BLOCKSIZE) {
block_nr++;
dir_offset -= BLOCKSIZE;
ext2_disk_inode_read_block(inode, no, block_nr, block);
}
}
2012-01-26 05:25:59 +04:00
free(block);
return NULL;
}
2012-01-26 05:25:59 +04:00
/**
* Return the inode object on disk representing 'inode'th inode.
* Caller should free the memory.
*/
ext2_inodetable_t *ext2_disk_inode(uint32_t inode) {
uint32_t group = inode / ext2_disk_inodes_per_group;
2012-01-26 05:25:59 +04:00
if (group > BGDS) {
return NULL;
}
uint32_t inode_table_block = BGD[group].inode_table;
2012-01-26 05:25:59 +04:00
inode -= group * ext2_disk_inodes_per_group; // adjust index within group
uint32_t block_offset = ((inode - 1) * SB->inode_size) / BLOCKSIZE;
uint32_t offset_in_block = (inode - 1) - block_offset * (BLOCKSIZE / SB->inode_size);
uint8_t *buf = malloc(BLOCKSIZE);
ext2_inodetable_t *inodet = malloc(BLOCKSIZE);
ext2_disk_read_block(inode_table_block + block_offset, buf);
2012-01-26 05:25:59 +04:00
ext2_inodetable_t *inodes = (ext2_inodetable_t *)buf;
memcpy(inodet, &inodes[offset_in_block], sizeof(ext2_inodetable_t));
free(buf);
return inodet;
}
2012-01-26 05:25:59 +04:00
/**
* Write the 'inode' into the inode table at position 'index'.
*/
void ext2_disk_write_inode(ext2_inodetable_t *inode, uint32_t index) {
uint32_t group = index / ext2_disk_inodes_per_group;
if (group > BGDS) {
return;
}
uint32_t inode_table_block = BGD[group].inode_table;
index -= group * ext2_disk_inodes_per_group; // adjust index within group
uint32_t block_offset = ((index - 1) * SB->inode_size) / BLOCKSIZE;
uint32_t offset_in_block = (index - 1) - block_offset * (BLOCKSIZE / SB->inode_size);
ext2_inodetable_t *inodet = malloc(BLOCKSIZE);
/* Read the current table block */
ext2_disk_read_block(inode_table_block + block_offset, (uint8_t *)inodet);
memcpy(&inodet[offset_in_block], inode, sizeof(ext2_inodetable_t));
ext2_disk_write_block(inode_table_block + block_offset, (uint8_t *)inodet);
}
uint32_t write_ext2_disk(fs_node_t *node, uint32_t offset, uint32_t size, uint8_t *buffer) {
ext2_inodetable_t *inode = ext2_disk_inode(node->inode);
uint32_t end = offset + size;
uint32_t start_block = offset / BLOCKSIZE;
uint32_t end_block = end / BLOCKSIZE;
uint32_t end_size = end - end_block * BLOCKSIZE;
uint32_t size_to_write = end - offset;
if (end_size == 0) {
end_block--;
}
// need to update if size has increased.
if (inode->size < end) {
inode->size = end;
ext2_disk_write_inode(inode, node->inode);
}
if (start_block == end_block) {
void *buf = malloc(BLOCKSIZE);
ext2_disk_inode_read_block(inode, node->inode, start_block, buf);
memcpy((uint8_t *)((uint32_t)buf + (offset % BLOCKSIZE)), buffer, size_to_write);
ext2_disk_inode_write_block(inode, node->inode, start_block, buf);
free(buf);
free(inode);
return size_to_write;
} else {
uint32_t block_offset;
uint32_t blocks_read = 0;
for (block_offset = start_block; block_offset < end_block; block_offset++, blocks_read++) {
if (block_offset == start_block) {
void *buf = malloc(BLOCKSIZE);
ext2_disk_inode_read_block(inode, node->inode, block_offset, buf);
memcpy((uint8_t *)((uint32_t)buf + (offset % BLOCKSIZE)), buffer, BLOCKSIZE - (offset % BLOCKSIZE));
ext2_disk_inode_write_block(inode, node->inode, start_block, buf);
free(buf);
} else {
ext2_disk_inode_write_block(inode, node->inode, block_offset,
buffer + BLOCKSIZE * blocks_read - (block_offset % BLOCKSIZE));
}
}
void *buf = malloc(BLOCKSIZE);
ext2_disk_inode_read_block(inode, node->inode, end_block, buf);
memcpy(buf, buffer + BLOCKSIZE * blocks_read - (block_offset % BLOCKSIZE), end_size);
ext2_disk_inode_write_block(inode, node->inode, end_block, buf);
free(buf);
}
free(inode);
return size_to_write;
}
uint32_t read_ext2_disk(fs_node_t *node, uint32_t offset, uint32_t size, uint8_t *buffer) {
ext2_inodetable_t *inode = ext2_disk_inode(node->inode);
uint32_t end;
if (offset + size > inode->size) {
end = inode->size;
} else {
end = offset + size;
}
2012-01-26 05:25:59 +04:00
uint32_t start_block = offset / BLOCKSIZE;
uint32_t end_block = end / BLOCKSIZE;
uint32_t end_size = end - end_block * BLOCKSIZE;
uint32_t size_to_read = end - offset;
2012-01-26 05:25:59 +04:00
if (end_size == 0) {
end_block--;
}
if (start_block == end_block) {
2012-01-26 05:25:59 +04:00
void *buf = malloc(BLOCKSIZE);
ext2_disk_inode_read_block(inode, node->inode, start_block, buf);
memcpy(buffer, (uint8_t *)(((uint32_t)buf) + (offset % BLOCKSIZE)), size_to_read);
free(buf);
2012-01-26 05:25:59 +04:00
free(inode);
return size_to_read;
} else {
2012-01-26 05:25:59 +04:00
uint32_t block_offset;
uint32_t blocks_read = 0;
2012-01-26 05:25:59 +04:00
for (block_offset = start_block; block_offset < end_block; block_offset++, blocks_read++) {
if (block_offset == start_block) {
2012-01-26 05:25:59 +04:00
void *buf = malloc(BLOCKSIZE);
ext2_disk_inode_read_block(inode, node->inode, block_offset, buf);
memcpy(buffer, (uint8_t *)(((uint32_t)buf) + (offset % BLOCKSIZE)), BLOCKSIZE - (offset % BLOCKSIZE));
free(buf);
} else {
2012-01-26 05:25:59 +04:00
void *buf = malloc(BLOCKSIZE);
ext2_disk_inode_read_block(inode, node->inode, block_offset, buf);
memcpy(buffer + BLOCKSIZE * blocks_read - (offset % BLOCKSIZE), buf, BLOCKSIZE);
free(buf);
}
}
2012-01-26 05:25:59 +04:00
void *buf = malloc(BLOCKSIZE);
ext2_disk_inode_read_block(inode, node->inode, end_block, buf);
memcpy(buffer + BLOCKSIZE * blocks_read - (offset % BLOCKSIZE), buf, end_size);
free(buf);
}
free(inode);
return size_to_read;
}
void
2012-01-26 05:25:59 +04:00
open_ext2_disk(fs_node_t *node, uint8_t read, uint8_t write) {
//TODO: implementation
}
void
close_ext2_disk(fs_node_t *node) {
//TODO: implementation
}
2012-01-26 05:25:59 +04:00
/**
* Return the 'index'th entry in the directory 'node'.
* Caller should free the memory.
*/
struct dirent *
2012-01-26 05:25:59 +04:00
readdir_ext2_disk(fs_node_t *node, uint32_t index) {
ext2_inodetable_t *inode = ext2_disk_inode(node->inode);
assert(inode->mode & EXT2_S_IFDIR);
2012-01-26 05:25:59 +04:00
ext2_dir_t *direntry = ext2_disk_direntry(inode, node->inode, index);
if (!direntry) {
return NULL;
}
2012-01-26 05:25:59 +04:00
struct dirent *dirent = malloc(sizeof(struct dirent));
memcpy(&dirent->name, &direntry->name, direntry->name_len);
dirent->name[direntry->name_len] = '\0';
dirent->ino = direntry->inode;
free(direntry);
free(inode);
return dirent;
}
2012-01-26 05:25:59 +04:00
/**
* Insert an entry named 'name' with type 'type' into a directory 'p_node'
* at the end.
* This function assumes that parent directory 'p_node' does not contain
* any entry with same name as 'name'. Caller should ensure this.
*/
void insertdir_ext2_disk(ext2_inodetable_t *p_node, uint32_t no, uint32_t inode, char *name, uint8_t type) {
assert(p_node->mode & EXT2_S_IFDIR);
void *block = malloc(BLOCKSIZE);
uint32_t block_nr = 0;
ext2_disk_inode_read_block(p_node, no, block_nr, block);
uint32_t dir_offset = 0;
uint32_t total_offset = 0;
// first, iterate pass the last entry in the parent directory.
while (total_offset < p_node->size) {
ext2_dir_t *d_ent = (ext2_dir_t *)((uintptr_t)block + dir_offset);
dir_offset += d_ent->rec_len;
total_offset += d_ent->rec_len;
// move on to the next block of this directory if needed.
if (dir_offset >= BLOCKSIZE) {
block_nr++;
dir_offset -= BLOCKSIZE;
ext2_disk_inode_read_block(p_node, no, block_nr, block);
}
}
// put the new directory entry at 'dir_offset' in block 'block_nr'.
uint32_t size = 8 + strlen(name);
// make sure the size is multiple of 4.
size = (size + 3) & ~3;
uint8_t *new_entry = malloc(size);
// initialize the new entry.
((uint32_t *)new_entry)[0] = inode;
((uint16_t *)new_entry)[2] = size;
((uint8_t *)new_entry)[6] = (uint8_t)strlen(name);
((uint8_t *)new_entry)[7] = type;
memcpy(&(((char *)new_entry)[8]), name, strlen(name));
// write back to block.
memcpy(((uint8_t *)block) + dir_offset, new_entry, size);
ext2_disk_inode_write_block(p_node, no, block_nr, block);
// book keeping
p_node->size += size;
ext2_disk_write_inode(p_node, no);
free(new_entry);
free(block);
}
/**
* Find the actual inode in the ramdisk image for the requested file.
*/
fs_node_t *finddir_ext2_disk(fs_node_t *node, char *name) {
ext2_inodetable_t *inode = ext2_disk_inode(node->inode);
assert(inode->mode & EXT2_S_IFDIR);
2012-01-26 05:25:59 +04:00
void *block = malloc(BLOCKSIZE);
ext2_dir_t *direntry = NULL;
uint8_t block_nr = 0;
ext2_disk_inode_read_block(inode, node->inode, block_nr, block);
uint32_t dir_offset = 0;
uint32_t total_offset = 0;
// Look through the requested entries until we find what we're looking for
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("file looking for: %s\n", name);
kprintf("total size: %d\n", inode->size);
#endif
while (total_offset < inode->size) {
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("dir_offset: %d\n", dir_offset);
kprintf("total_offset: %d\n", total_offset);
#endif
ext2_dir_t *d_ent = (ext2_dir_t *)((uintptr_t)block + dir_offset);
if (strlen(name) != d_ent->name_len) {
dir_offset += d_ent->rec_len;
2012-01-26 05:25:59 +04:00
total_offset += d_ent->rec_len;
// move on to the next block of this directory if need.
if (dir_offset >= BLOCKSIZE) {
block_nr++;
dir_offset -= BLOCKSIZE;
ext2_disk_inode_read_block(inode, node->inode, block_nr, block);
}
continue;
}
2012-01-26 05:25:59 +04:00
char *dname = malloc(sizeof(char) * (d_ent->name_len + 1));
memcpy(dname, &(d_ent->name), d_ent->name_len);
dname[d_ent->name_len] = '\0';
2012-01-26 05:25:59 +04:00
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
kprintf("cur file: %s\n", dname);
#endif
if (!strcmp(dname, name)) {
free(dname);
direntry = malloc(d_ent->rec_len);
memcpy(direntry, d_ent, d_ent->rec_len);
break;
}
free(dname);
2012-01-26 05:25:59 +04:00
dir_offset += d_ent->rec_len;
2012-01-26 05:25:59 +04:00
total_offset += d_ent->rec_len;
// move on to the next block of this directory if need.
if (dir_offset >= BLOCKSIZE) {
block_nr++;
dir_offset -= BLOCKSIZE;
ext2_disk_inode_read_block(inode, node->inode, block_nr, block);
}
}
free(inode);
free(block);
if (!direntry) {
2012-01-26 05:25:59 +04:00
// We could not find the requested entry in this directory.
return NULL;
}
2012-01-26 05:25:59 +04:00
fs_node_t *outnode = malloc(sizeof(fs_node_t));
inode = ext2_disk_inode(direntry->inode);
ext2_disk_node_from_file(inode, direntry, outnode);
free(inode);
return outnode;
}
2012-01-26 05:25:59 +04:00
/**
* Initialize in-memory struct 'fnode' using on-disk structs 'inode' and 'direntry'.
*/
uint32_t ext2_disk_node_from_file(ext2_inodetable_t *inode, ext2_dir_t *direntry,
fs_node_t *fnode) {
if (!fnode) {
2012-01-26 05:25:59 +04:00
/* You didn't give me a node to write into, go **** yourself */
return 0;
}
/* Information from the direntry */
fnode->inode = direntry->inode;
memcpy(&fnode->name, &direntry->name, direntry->name_len);
fnode->name[direntry->name_len] = '\0';
/* Information from the inode */
fnode->uid = inode->uid;
fnode->gid = inode->gid;
fnode->length = inode->size;
fnode->mask = inode->mode & 0xFFF;
/* File Flags */
fnode->flags = 0;
if ((inode->mode & EXT2_S_IFREG) == EXT2_S_IFREG) {
fnode->flags |= FS_FILE;
2012-01-26 05:25:59 +04:00
fnode->create = NULL;
fnode->mkdir = NULL;
}
if ((inode->mode & EXT2_S_IFDIR) == EXT2_S_IFDIR) {
fnode->flags |= FS_DIRECTORY;
2012-01-26 05:25:59 +04:00
fnode->create = ext2_create;
fnode->mkdir = ext2_mkdir;
}
if ((inode->mode & EXT2_S_IFBLK) == EXT2_S_IFBLK) {
fnode->flags |= FS_BLOCKDEVICE;
}
if ((inode->mode & EXT2_S_IFCHR) == EXT2_S_IFCHR) {
fnode->flags |= FS_CHARDEVICE;
}
if ((inode->mode & EXT2_S_IFIFO) == EXT2_S_IFIFO) {
fnode->flags |= FS_PIPE;
}
if ((inode->mode & EXT2_S_IFLNK) == EXT2_S_IFLNK) {
fnode->flags |= FS_SYMLINK;
}
fnode->read = read_ext2_disk;
2012-01-26 05:25:59 +04:00
fnode->write = write_ext2_disk;
fnode->open = open_ext2_disk;
2012-01-26 05:25:59 +04:00
fnode->close = close_ext2_disk;
fnode->readdir = readdir_ext2_disk;
fnode->finddir = finddir_ext2_disk;
return 1;
}
2012-01-26 05:25:59 +04:00
/**
* Intiailize in-memory struct 'fnode' that represents "/" using 'inode'.
*/
uint32_t ext2_disk_node_root(ext2_inodetable_t *inode, fs_node_t *fnode) {
if (!fnode) {
return 0;
}
2012-01-26 05:25:59 +04:00
/* Information for root dir */
fnode->inode = 2;
fnode->name[0] = '/';
fnode->name[1] = '\0';
/* Information from the inode */
fnode->uid = inode->uid;
fnode->gid = inode->gid;
fnode->length = inode->size;
fnode->mask = inode->mode & 0xFFF;
/* File Flags */
fnode->flags = 0;
if ((inode->mode & EXT2_S_IFREG) == EXT2_S_IFREG) {
fnode->flags |= FS_FILE;
2012-01-26 05:25:59 +04:00
fnode->create = NULL;
fnode->mkdir = NULL;
}
if ((inode->mode & EXT2_S_IFDIR) == EXT2_S_IFDIR) {
fnode->flags |= FS_DIRECTORY;
2012-01-26 05:25:59 +04:00
fnode->create = ext2_create;
fnode->mkdir = ext2_mkdir;
}
if ((inode->mode & EXT2_S_IFBLK) == EXT2_S_IFBLK) {
fnode->flags |= FS_BLOCKDEVICE;
}
if ((inode->mode & EXT2_S_IFCHR) == EXT2_S_IFCHR) {
fnode->flags |= FS_CHARDEVICE;
}
if ((inode->mode & EXT2_S_IFIFO) == EXT2_S_IFIFO) {
fnode->flags |= FS_PIPE;
}
if ((inode->mode & EXT2_S_IFLNK) == EXT2_S_IFLNK) {
fnode->flags |= FS_SYMLINK;
}
fnode->read = read_ext2_disk;
2012-01-26 05:25:59 +04:00
fnode->write = write_ext2_disk;
fnode->open = open_ext2_disk;
2012-01-26 05:25:59 +04:00
fnode->close = close_ext2_disk;
fnode->readdir = readdir_ext2_disk;
fnode->finddir = finddir_ext2_disk;
return 1;
}
void ext2_disk_read_superblock() {
kprintf("Volume '%s'\n", SB->volume_name);
kprintf("%d inodes\n", SB->inodes_count);
kprintf("%d blocks\n", SB->blocks_count);
kprintf("%d free blocks\n", SB->free_blocks_count);
kprintf("0x%x last mount time\n", SB->mtime);
kprintf("0x%x last write time\n", SB->wtime);
kprintf("Mounted %d times.\n", SB->mnt_count);
kprintf("0x%x\n", SB->magic);
}
void ext2_disk_mount() {
DC = malloc(sizeof(ext2_disk_cache_entry_t) * CACHEENTRIES);
SB = malloc(BLOCKSIZE);
ext2_disk_read_block(1, (uint8_t *)SB);
assert(SB->magic == EXT2_SUPER_MAGIC);
if (SB->inode_size == 0) {
SB->inode_size = 128;
}
BGDS = SB->blocks_count / SB->blocks_per_group;
ext2_disk_inodes_per_group = SB->inodes_count / BGDS;
2012-01-26 05:25:59 +04:00
// load the block group descriptors
BGD = malloc(BLOCKSIZE);
ext2_disk_read_block(2, (uint8_t *)BGD);
#if EXT2_DEBUG_BLOCK_DESCRIPTORS
char bg_buffer[BLOCKSIZE];
for (uint32_t i = 0; i < BGDS; ++i) {
kprintf("Block Group Descriptor #%d @ %d\n", i, 2 + i * SB->blocks_per_group);
kprintf("\tBlock Bitmap @ %d\n", BGD[i].block_bitmap); {
kprintf("\t\tExamining block bitmap at %d\n", BGD[i].block_bitmap);
ext2_disk_read_block(BGD[i].block_bitmap, (uint8_t *)bg_buffer);
uint32_t j = 0;
while (BLOCKBIT(j)) {
++j;
}
kprintf("\t\tFirst free block in group is %d\n", j + BGD[i].block_bitmap - 2);
}
kprintf("\tInode Bitmap @ %d\n", BGD[i].inode_bitmap); {
kprintf("\t\tExamining inode bitmap at %d\n", BGD[i].inode_bitmap);
ext2_disk_read_block(BGD[i].inode_bitmap, (uint8_t *)bg_buffer);
uint32_t j = 0;
while (BLOCKBIT(j)) {
++j;
}
kprintf("\t\tFirst free inode in group is %d\n", j + ext2_disk_inodes_per_group * i + 1);
}
kprintf("\tInode Table @ %d\n", BGD[i].inode_table);
kprintf("\tFree Blocks = %d\n", BGD[i].free_blocks_count);
kprintf("\tFree Inodes = %d\n", BGD[i].free_inodes_count);
}
#endif
2012-01-26 05:25:59 +04:00
ext2_inodetable_t *root_inode = ext2_disk_inode(2);
RN = (fs_node_t *)malloc(sizeof(fs_node_t));
assert(ext2_disk_node_root(root_inode, RN));
fs_root = RN;
LOG(INFO,"Mounted EXT2 disk, root VFS node is at 0x%x", RN);
}
void ext2_disk_forget_superblock() {
free(SB);
}
2012-01-26 05:25:59 +04:00