truncate & delete properly zeroes out data
parent
3ea735853b
commit
ebbcc9dd44
55
filesystem.c
55
filesystem.c
|
@ -200,9 +200,9 @@ int fs_create(char * name)
|
||||||
|
|
||||||
int fs_delete(char * name)
|
int fs_delete(char * name)
|
||||||
{
|
{
|
||||||
int idx = 0;
|
int idx = 0; /* index of file with matching name */
|
||||||
Attribute * del, * end;
|
|
||||||
|
|
||||||
|
/* find file within descriptors (is it open?) */
|
||||||
while (idx < descriptor_size
|
while (idx < descriptor_size
|
||||||
&& strcmp(name, descriptors[idx].attr->name) != 0)
|
&& strcmp(name, descriptors[idx].attr->name) != 0)
|
||||||
{
|
{
|
||||||
|
@ -215,6 +215,7 @@ int fs_delete(char * name)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* find file within dir structure */
|
||||||
idx = 0;
|
idx = 0;
|
||||||
while (idx < dir->size && strcmp(name, dir->attributes[idx].name) != 0)
|
while (idx < dir->size && strcmp(name, dir->attributes[idx].name) != 0)
|
||||||
{
|
{
|
||||||
|
@ -228,19 +229,13 @@ int fs_delete(char * name)
|
||||||
}
|
}
|
||||||
|
|
||||||
// finally "delete" the file
|
// finally "delete" the file
|
||||||
if (dir->size == 1)
|
|
||||||
{
|
|
||||||
dir->size--;
|
dir->size--;
|
||||||
|
free_alloc_chain(dir->attributes[idx].offset);
|
||||||
|
if (dir->size == 0)
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
free_alloc_chain(dir->attributes[idx].offset);
|
dir->attributes[idx] = dir->attributes[dir->size];
|
||||||
del = &dir->attributes[idx];
|
|
||||||
end = &dir->attributes[dir->size - 1];
|
|
||||||
strcpy(del->name, end->name);
|
|
||||||
del->size = end->size;
|
|
||||||
del->offset = end->offset;
|
|
||||||
dir->size--;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -400,6 +395,7 @@ int fs_truncate(int fildes, off_t length)
|
||||||
{
|
{
|
||||||
int blocks,
|
int blocks,
|
||||||
fat_idx,
|
fat_idx,
|
||||||
|
eof_idx,
|
||||||
idx = get_fildes_index(fildes);
|
idx = get_fildes_index(fildes);
|
||||||
char * file_ptr;
|
char * file_ptr;
|
||||||
|
|
||||||
|
@ -413,12 +409,20 @@ int fs_truncate(int fildes, off_t length)
|
||||||
|
|
||||||
// find truncated file's FAT table index for its final block
|
// find truncated file's FAT table index for its final block
|
||||||
fat_idx = descriptors[idx].attr->offset;
|
fat_idx = descriptors[idx].attr->offset;
|
||||||
for (int i = 0; i < blocks - 1; i++)
|
for (int i = 1; i < blocks - 1; i++)
|
||||||
{
|
{
|
||||||
fat_idx = fat->table[fat_idx];
|
fat_idx = fat->table[fat_idx];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// truncated length is EOF? ret 0
|
||||||
|
if (fat->table[fat_idx] == FAT_EOF)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
// else, set truncated block's end as EOF and free the rest
|
||||||
|
eof_idx = fat_idx;
|
||||||
|
fat_idx = fat->table[fat_idx];
|
||||||
free_alloc_chain(fat_idx);
|
free_alloc_chain(fat_idx);
|
||||||
|
fat->table[eof_idx] = FAT_EOF;
|
||||||
descriptors[idx].attr->size = length;
|
descriptors[idx].attr->size = length;
|
||||||
|
|
||||||
// ptr to final byte of truncated file
|
// ptr to final byte of truncated file
|
||||||
|
@ -452,6 +456,9 @@ void print_disk_struct()
|
||||||
{
|
{
|
||||||
printf("%d ", fat->table[i]);
|
printf("%d ", fat->table[i]);
|
||||||
}
|
}
|
||||||
|
if (dir->size == 0)
|
||||||
|
printf("\nNo files present\n");
|
||||||
|
else
|
||||||
printf("\nFirst file: name=%s size=%d offset=%d\n",
|
printf("\nFirst file: name=%s size=%d offset=%d\n",
|
||||||
attrib->name,
|
attrib->name,
|
||||||
attrib->size,
|
attrib->size,
|
||||||
|
@ -519,27 +526,23 @@ int free_alloc_chain(int head)
|
||||||
{
|
{
|
||||||
int idx;
|
int idx;
|
||||||
|
|
||||||
if (head > DISK_BLOCKS)
|
/* this shouldn't happen */
|
||||||
return -1;
|
if (head > DISK_BLOCKS || head == FAT_RESERVED)
|
||||||
if (head < 0)
|
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
idx = fat->table[head];
|
idx = fat->table[head];
|
||||||
if (idx == FAT_UNUSED || idx == FAT_RESERVED)
|
memset(disk + head * BLOCK_SIZE, 0, BLOCK_SIZE);
|
||||||
return -1;
|
|
||||||
if (idx == FAT_EOF)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
fat->table[head] = FAT_EOF;
|
/* either unused or probably hit the end of the chain */
|
||||||
while (idx != FAT_EOF)
|
if (idx == FAT_UNUSED || idx == FAT_EOF)
|
||||||
{
|
{
|
||||||
head = idx;
|
|
||||||
idx = fat->table[head];
|
|
||||||
fat->table[head] = FAT_UNUSED;
|
|
||||||
}
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fat->table[head] = FAT_UNUSED;
|
||||||
|
return free_alloc_chain(idx);
|
||||||
|
}
|
||||||
|
|
||||||
int find_avail_alloc_entry()
|
int find_avail_alloc_entry()
|
||||||
{
|
{
|
||||||
int fat_idx = super->data_block_offset;
|
int fat_idx = super->data_block_offset;
|
||||||
|
|
Loading…
Reference in New Issue