|
Kmods SIG |
63c143 |
From a1b04d380ab64790a7b4a8eb52e14679e47065ab Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
63c143 |
From: Dan Carpenter <dan.carpenter@oracle.com>
|
|
Kmods SIG |
63c143 |
Date: Tue, 24 Aug 2021 14:52:36 +0300
|
|
Kmods SIG |
63c143 |
Subject: [Backport a1b04d380ab6] src: add checks for allocation failure
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
Add a check for when the kzalloc() in init_rsttbl() fails. Some of
|
|
Kmods SIG |
63c143 |
the callers checked for NULL and some did not. I went down the call
|
|
Kmods SIG |
63c143 |
tree and added NULL checks where ever they were missing.
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
Fixes: b46acd6a6a62 ("src: Add NTFS journal")
|
|
Kmods SIG |
63c143 |
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
|
|
Kmods SIG |
63c143 |
Reviewed-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
63c143 |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
63c143 |
---
|
|
Kmods SIG |
63c143 |
src/fslog.c | 18 ++++++++++++++++--
|
|
Kmods SIG |
63c143 |
1 file changed, 16 insertions(+), 2 deletions(-)
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
diff --git a/src/fslog.c b/src/fslog.c
|
|
Kmods SIG |
63c143 |
index 2c213b55979ed06c03f4e74998fd03f9a9a8827b..7144ea8a9ab898e35c75e06192f20f9d93504bb8 100644
|
|
Kmods SIG |
63c143 |
--- a/src/fslog.c
|
|
Kmods SIG |
63c143 |
+++ b/src/fslog.c
|
|
Kmods SIG |
63c143 |
@@ -809,6 +809,9 @@ static inline struct RESTART_TABLE *init_rsttbl(u16 esize, u16 used)
|
|
Kmods SIG |
63c143 |
u32 lf = sizeof(struct RESTART_TABLE) + (used - 1) * esize;
|
|
Kmods SIG |
63c143 |
struct RESTART_TABLE *t = kzalloc(bytes, GFP_NOFS);
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
+ if (!t)
|
|
Kmods SIG |
63c143 |
+ return NULL;
|
|
Kmods SIG |
63c143 |
+
|
|
Kmods SIG |
63c143 |
t->size = cpu_to_le16(esize);
|
|
Kmods SIG |
63c143 |
t->used = cpu_to_le16(used);
|
|
Kmods SIG |
63c143 |
t->free_goal = cpu_to_le32(~0u);
|
|
Kmods SIG |
63c143 |
@@ -831,7 +834,11 @@ static inline struct RESTART_TABLE *extend_rsttbl(struct RESTART_TABLE *tbl,
|
|
Kmods SIG |
63c143 |
u16 esize = le16_to_cpu(tbl->size);
|
|
Kmods SIG |
63c143 |
__le32 osize = cpu_to_le32(bytes_per_rt(tbl));
|
|
Kmods SIG |
63c143 |
u32 used = le16_to_cpu(tbl->used);
|
|
Kmods SIG |
63c143 |
- struct RESTART_TABLE *rt = init_rsttbl(esize, used + add);
|
|
Kmods SIG |
63c143 |
+ struct RESTART_TABLE *rt;
|
|
Kmods SIG |
63c143 |
+
|
|
Kmods SIG |
63c143 |
+ rt = init_rsttbl(esize, used + add);
|
|
Kmods SIG |
63c143 |
+ if (!rt)
|
|
Kmods SIG |
63c143 |
+ return NULL;
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
memcpy(rt + 1, tbl + 1, esize * used);
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
@@ -864,8 +871,11 @@ static inline void *alloc_rsttbl_idx(struct RESTART_TABLE **tbl)
|
|
Kmods SIG |
63c143 |
__le32 *e;
|
|
Kmods SIG |
63c143 |
struct RESTART_TABLE *t = *tbl;
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
- if (!t->first_free)
|
|
Kmods SIG |
63c143 |
+ if (!t->first_free) {
|
|
Kmods SIG |
63c143 |
*tbl = t = extend_rsttbl(t, 16, ~0u);
|
|
Kmods SIG |
63c143 |
+ if (!t)
|
|
Kmods SIG |
63c143 |
+ return NULL;
|
|
Kmods SIG |
63c143 |
+ }
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
off = le32_to_cpu(t->first_free);
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
@@ -4482,6 +4492,10 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
|
|
Kmods SIG |
63c143 |
}
|
|
Kmods SIG |
63c143 |
|
|
Kmods SIG |
63c143 |
dp = alloc_rsttbl_idx(&dptbl);
|
|
Kmods SIG |
63c143 |
+ if (!dp) {
|
|
Kmods SIG |
63c143 |
+ err = -ENOMEM;
|
|
Kmods SIG |
63c143 |
+ goto out;
|
|
Kmods SIG |
63c143 |
+ }
|
|
Kmods SIG |
63c143 |
dp->target_attr = cpu_to_le32(t16);
|
|
Kmods SIG |
63c143 |
dp->transfer_len = cpu_to_le32(t32 << sbi->cluster_bits);
|
|
Kmods SIG |
63c143 |
dp->lcns_follow = cpu_to_le32(t32);
|
|
Kmods SIG |
63c143 |
--
|
|
Kmods SIG |
63c143 |
2.31.1
|
|
Kmods SIG |
63c143 |
|