making fs drivers ignore already open files during kernel setup and when opening init for the first time

This commit is contained in:
Benji Dial 2021-03-04 14:57:31 -05:00
parent 922470255b
commit 86af7f6310
4 changed files with 9 additions and 1 deletions

View file

@ -6,6 +6,8 @@
uint8_t n_drives; uint8_t n_drives;
struct drive drives[256]; struct drive drives[256];
bool ignore_already_open = false;
void init_drives() { void init_drives() {
n_drives = 0; n_drives = 0;
} }

View file

@ -49,4 +49,6 @@ extern struct drive drives[MAX_DRIVES];
void init_drives(); void init_drives();
void commit_drive(struct drive data); void commit_drive(struct drive data);
extern bool ignore_already_open;
#endif #endif

View file

@ -238,7 +238,7 @@ static file_id_t fat_get_file(const struct drive *d, const char *path) {
return 0; return 0;
} }
if (cur_dir->extra_attrib & FEA_OPEN_EXCLUSIVE) { if (!ignore_already_open && (cur_dir->extra_attrib & FEA_OPEN_EXCLUSIVE)) {
d->done(d); d->done(d);
return 0;//maybe have a special return value for this? return 0;//maybe have a special return value for this?
} }

View file

@ -38,6 +38,8 @@ void main() {
init_ide(); init_ide();
//other drive drivers //other drive drivers
ignore_already_open = true;
init_log(); init_log();
init_settings(); init_settings();
@ -94,6 +96,8 @@ void main() {
if (!try_elf_run(drives, "bin/init", "", 0)) if (!try_elf_run(drives, "bin/init", "", 0))
PANIC("Failed to load init program."); PANIC("Failed to load init program.");
ignore_already_open = false;
logf(LOG_INFO, "Switching to init task."); logf(LOG_INFO, "Switching to init task.");
_start_user_mode(); _start_user_mode();