linux-nilfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/nilfs2: prevent int overflow in btree binary search
@ 2024-04-02 18:00 Sabyrzhan Tasbolatov
  2024-04-02 20:55 ` Ryusuke Konishi
  0 siblings, 1 reply; 3+ messages in thread
From: Sabyrzhan Tasbolatov @ 2024-04-02 18:00 UTC (permalink / raw)
  To: konishi.ryusuke, linux-nilfs; +Cc: linux-kernel, snovitoll

Should prevent int overflow if low + high > INT_MAX in big btree with
nchildren in nilfs_btree_node_lookup() binary search.

Signed-off-by: Sabyrzhan Tasbolatov <snovitoll@gmail.com>
---
 fs/nilfs2/btree.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/nilfs2/btree.c b/fs/nilfs2/btree.c
index 65659fa03..39ee4fe11 100644
--- a/fs/nilfs2/btree.c
+++ b/fs/nilfs2/btree.c
@@ -300,7 +300,7 @@ static int nilfs_btree_node_lookup(const struct nilfs_btree_node *node,
 	index = 0;
 	s = 0;
 	while (low <= high) {
-		index = (low + high) / 2;
+		index = low + (high - low) / 2;
 		nkey = nilfs_btree_node_get_key(node, index);
 		if (nkey == key) {
 			s = 0;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-03 17:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-02 18:00 [PATCH] fs/nilfs2: prevent int overflow in btree binary search Sabyrzhan Tasbolatov
2024-04-02 20:55 ` Ryusuke Konishi
2024-04-03 17:08   ` Sabyrzhan Tasbolatov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).