Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/fs/nilfs Fix use-after-free issue!
details: https://anonhg.NetBSD.org/src/rev/78194749a209
branches: trunk
changeset: 970347:78194749a209
user: reinoud <reinoud%NetBSD.org@localhost>
date: Sat Mar 21 13:39:31 2020 +0000
description:
Fix use-after-free issue!
diffstat:
sys/fs/nilfs/nilfs_subr.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diffs (47 lines):
diff -r a24902aa99ba -r 78194749a209 sys/fs/nilfs/nilfs_subr.c
--- a/sys/fs/nilfs/nilfs_subr.c Sat Mar 21 13:38:29 2020 +0000
+++ b/sys/fs/nilfs/nilfs_subr.c Sat Mar 21 13:39:31 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: nilfs_subr.c,v 1.14 2015/03/29 14:12:28 riastradh Exp $ */
+/* $NetBSD: nilfs_subr.c,v 1.15 2020/03/21 13:39:31 reinoud Exp $ */
/*
* Copyright (c) 2008, 2009 Reinoud Zandijk
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: nilfs_subr.c,v 1.14 2015/03/29 14:12:28 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nilfs_subr.c,v 1.15 2020/03/21 13:39:31 reinoud Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -230,6 +230,7 @@
dptrs = dkeys + NILFS_BTREE_NODE_NCHILDREN_MAX(nilfsdev->blocksize);
assert((btree_hdr->bn_flags & NILFS_BTREE_NODE_ROOT) == 0);
+ assert((btree_hdr->bn_level == level));
/* select matching child XXX could use binary search */
selected = 0;
@@ -253,7 +254,7 @@
brelse(bp, BC_AGE);
return nilfs_btree_lookup_level(node, lblocknr,
- child_btree_blk, btree_hdr->bn_level-1, vblocknr);
+ child_btree_blk, level-1, vblocknr);
}
@@ -686,9 +687,10 @@
/* fixup inode size for system nodes */
if ((ino < NILFS_USER_INO) && (ino != NILFS_ROOT_INO)) {
- DPRINTF(VOLUMES, ("NEED TO GET my size for inode %"PRIu64"\n",
+ DPRINTF(VOLUMES, ("NEED TO GET my size for inode %"PRIu64"?\n",
ino));
/* for now set it to maximum, -1 is illegal */
+ DPRINTF(VOLUMES, (" current size of inode is %"PRIu64"\n", inode->i_size));
inode->i_size = nilfs_rw64(((uint64_t) -2));
}
Home |
Main Index |
Thread Index |
Old Index