summaryrefslogtreecommitdiff
path: root/ext2fs/dir.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2000-03-03 21:48:33 +0000
committerRoland McGrath <roland@gnu.org>2000-03-03 21:48:33 +0000
commitf62fbb2b36d3ba2406fe9b4216082f726188ccc3 (patch)
treeed2b0e521014eececee3049791092a806f4b154d /ext2fs/dir.c
parent9cf5495d262557397b24d722634ba2beb8d82ebb (diff)
2000-03-03 Roland McGrath <roland@baalperazim.frob.com>
* dir.c (diskfs_get_directs): Don't allocate buffer for *DATA until after scanning for ENTRY and possibly returning EOF.
Diffstat (limited to 'ext2fs/dir.c')
-rw-r--r--ext2fs/dir.c59
1 files changed, 31 insertions, 28 deletions
diff --git a/ext2fs/dir.c b/ext2fs/dir.c
index 9d341b17..bc83d3b0 100644
--- a/ext2fs/dir.c
+++ b/ext2fs/dir.c
@@ -1,6 +1,6 @@
/* Directory management routines
- Copyright (C) 1994,95,96,97,98,99 Free Software Foundation, Inc.
+ Copyright (C) 1994,95,96,97,98,99,2000 Free Software Foundation, Inc.
Converted for ext2fs by Miles Bader <miles@gnu.org>
@@ -884,33 +884,6 @@ diskfs_get_directs (struct node *dp,
dp->dn->dirents[i] = -1;
}
- /* Allocate enough space to hold the maximum we might return */
- if (!bufsiz || bufsiz > dp->dn_stat.st_size)
- /* Allocate enough to return the entire directory. Since ext2's
- directory format is different than the format used to return the
- entries, we allocate enough to hold the on disk directory plus
- whatever extra would be necessary in the worst-case. */
- {
- /* The minimum size of an ext2fs directory entry. */
- size_t min_entry_size = EXT2_DIR_REC_LEN (0);
- /* The minimum size of a returned dirent entry. The +1 is for '\0'. */
- size_t min_dirent_size = offsetof (struct dirent, d_name) + 1;
- /* The maximum possible number of ext2fs dir entries in this dir. */
- size_t max_entries = dp->dn_stat.st_size / min_entry_size;
- /* The maximum difference in size per directory entry. */
- size_t entry_extra =
- DIRENT_ALIGN
- + (min_dirent_size > min_entry_size
- ? min_dirent_size - min_entry_size : 0);
-
- allocsize = round_page (dp->dn_stat.st_size + max_entries * entry_extra);
- }
- else
- allocsize = round_page (bufsiz);
-
- if (allocsize > *datacnt)
- *data = mmap (0, allocsize, PROT_READ|PROT_WRITE, MAP_ANON, 0, 0);
-
/* Scan through the entries to find ENTRY. If we encounter
a -1 in the process then stop to fill it. When we run
off the end, ENTRY is too big. */
@@ -937,11 +910,41 @@ diskfs_get_directs (struct node *dp,
if (blkno == nblks)
{
+ /* We reached the end of the directory without seeing ENTRY.
+ This is treated as an EOF condition, meaning we return
+ success with empty results. */
*datacnt = 0;
*amt = 0;
return 0;
}
+ /* Allocate enough space to hold the maximum we might return */
+ if (!bufsiz || bufsiz > dp->dn_stat.st_size)
+ /* Allocate enough to return the entire directory. Since ext2's
+ directory format is different than the format used to return the
+ entries, we allocate enough to hold the on disk directory plus
+ whatever extra would be necessary in the worst-case. */
+ {
+ /* The minimum size of an ext2fs directory entry. */
+ size_t min_entry_size = EXT2_DIR_REC_LEN (0);
+ /* The minimum size of a returned dirent entry. The +1 is for '\0'. */
+ size_t min_dirent_size = offsetof (struct dirent, d_name) + 1;
+ /* The maximum possible number of ext2fs dir entries in this dir. */
+ size_t max_entries = dp->dn_stat.st_size / min_entry_size;
+ /* The maximum difference in size per directory entry. */
+ size_t entry_extra =
+ DIRENT_ALIGN
+ + (min_dirent_size > min_entry_size
+ ? min_dirent_size - min_entry_size : 0);
+
+ allocsize = round_page (dp->dn_stat.st_size + max_entries * entry_extra);
+ }
+ else
+ allocsize = round_page (bufsiz);
+
+ if (allocsize > *datacnt)
+ *data = mmap (0, allocsize, PROT_READ|PROT_WRITE, MAP_ANON, 0, 0);
+
/* Set bufp appropriately */
bufp = buf;
if (curentry != entry)