aboutsummaryrefslogtreecommitdiff
path: root/sftsr.c
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-04-18 14:37:34 +0200
committerJavier <dev.git@javispedro.com>2022-04-18 14:37:34 +0200
commitdc5d6457e65e78ad803d1303ace1c0ebec65f3cc (patch)
treec2513e883d261a578a15c0ff24095edb695698bd /sftsr.c
parentbd0f6f39c00be0d573b3ac98dd63f10279f94730 (diff)
downloadvbados-dc5d6457e65e78ad803d1303ace1c0ebec65f3cc.tar.gz
vbados-dc5d6457e65e78ad803d1303ace1c0ebec65f3cc.zip
hide files larger than 4GiB
Diffstat (limited to 'sftsr.c')
-rw-r--r--sftsr.c33
1 files changed, 28 insertions, 5 deletions
diff --git a/sftsr.c b/sftsr.c
index cb8b92a..933cf24 100644
--- a/sftsr.c
+++ b/sftsr.c
@@ -69,6 +69,16 @@ static void map_shfl_info_to_getattr(union INTPACK __far *r, SHFLFSOBJINFO *i)
timestampns_to_dos_time(&r->x.cx, &r->x.dx, i->ModificationTime, data.tz_offset);
}
+static bool is_valid_dos_file(SHFLFSOBJINFO *i)
+{
+ if (i->cbObject > UINT32_MAX) {
+ // DOS uses 32-bit offsets for files, don't risk showing it large files
+ return false;
+ }
+
+ return true;
+}
+
static int get_op_drive_num(union INTPACK __far *r)
{
DOSSFT __far *sft;
@@ -852,6 +862,23 @@ static vboxerr find_next_from_vbox(uint8_t search_attr)
dlog_printu(shfldirinfo.dirinfo.cucShortName);
dlog_endline();
+ if (!is_valid_dos_file(&shfldirinfo.dirinfo.Info)) {
+ dlog_puts("hiding file with invalid info");
+ continue;
+ }
+
+ // Read file metadata (except for the name)
+ map_shfl_info_to_dosdir(found_file, &shfldirinfo.dirinfo.Info);
+
+ // See if this file has the right attributes,
+ // we are searching for files that have no attribute bits set other
+ // than the ones in search_attr .
+ if (found_file->attr & ~search_attr) {
+ dlog_puts("hiding file with unwanted attrs");
+ continue; // Skip this one
+ }
+
+ // Now convert the filename
// TODO Use the short filename if available from a windows host
// i.e. shfldirinfo.dirinfo.cucShortName
@@ -861,12 +888,8 @@ static vboxerr find_next_from_vbox(uint8_t search_attr)
dlog_puts("hiding file with long filename");
continue;
}
- map_shfl_info_to_dosdir(found_file, &shfldirinfo.dirinfo.Info);
-
- if (found_file->attr & ~search_attr) {
- continue; // Skip this one
- }
+ // This file is OK to return, break out of the loop
break;
};