Markus Weippert
0daf3b0fe4
bcache: revert replacing IS_ERR_OR_NULL with IS_ERR
...
commit bb6cc253861bd5a7cf8439e2118659696df9619f upstream.
Commit 028ddcac477b ("bcache: Remove unnecessary NULL point check in
node allocations") replaced IS_ERR_OR_NULL by IS_ERR. This leads to a
NULL pointer dereference.
BUG: kernel NULL pointer dereference, address: 0000000000000080
Call Trace:
? __die_body.cold+0x1a/0x1f
? page_fault_oops+0xd2/0x2b0
? exc_page_fault+0x70/0x170
? asm_exc_page_fault+0x22/0x30
? btree_node_free+0xf/0x160 [bcache]
? up_write+0x32/0x60
btree_gc_coalesce+0x2aa/0x890 [bcache]
? bch_extent_bad+0x70/0x170 [bcache]
btree_gc_recurse+0x130/0x390 [bcache]
? btree_gc_mark_node+0x72/0x230 [bcache]
bch_btree_gc+0x5da/0x600 [bcache]
? cpuusage_read+0x10/0x10
? bch_btree_gc+0x600/0x600 [bcache]
bch_gc_thread+0x135/0x180 [bcache]
The relevant code starts with:
new_nodes[0] = NULL;
for (i = 0; i < nodes; i++) {
if (__bch_keylist_realloc(&keylist, bkey_u64s(&r[i].b->key)))
goto out_nocoalesce;
// ...
out_nocoalesce:
// ...
for (i = 0; i < nodes; i++)
if (!IS_ERR(new_nodes[i])) { // IS_ERR_OR_NULL before
028ddcac477b
btree_node_free(new_nodes[i]); // new_nodes[0] is NULL
rw_unlock(true, new_nodes[i]);
}
This patch replaces IS_ERR() by IS_ERR_OR_NULL() to fix this.
Fixes: 028ddcac477b ("bcache: Remove unnecessary NULL point check in node allocations")
Link: https://lore.kernel.org/all/3DF4A87A-2AC1-4893-AE5F-E921478419A9@suse.de/
Cc: stable@vger.kernel.org
Cc: Zheng Wang <zyytlz.wz@163.com>
Cc: Coly Li <colyli@suse.de>
Signed-off-by: Markus Weippert <markus@gekmihesg.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2023-12-08 08:52:19 +01:00
..
2022-04-17 19:49:59 -06:00
2023-02-25 12:53:42 -08:00
2023-06-15 07:30:11 -06:00
2022-09-19 11:12:35 -06:00
2021-10-29 06:43:21 -06:00
2023-12-08 08:52:19 +01:00
2023-06-27 14:14:30 -07:00
2020-10-02 14:25:29 -06:00
2018-10-08 08:19:43 -06:00
2022-04-17 19:30:41 -06:00
2018-08-11 15:46:41 -06:00
2021-04-11 08:37:55 -06:00
2018-08-11 15:46:41 -06:00
2021-10-29 06:43:21 -06:00
2021-10-29 06:43:21 -06:00
2022-02-02 07:49:59 -07:00
2023-01-25 12:24:50 -08:00
2022-05-24 06:19:33 -06:00
2022-08-02 17:22:41 -06:00
2020-07-25 07:38:21 -06:00
2022-12-07 09:43:12 -07:00
2023-06-12 08:04:05 -06:00
2021-10-18 06:17:36 -06:00
2022-01-26 15:56:18 +01:00
2023-06-15 07:30:11 -06:00
2023-06-23 16:10:04 -06:00
2023-12-03 07:33:09 +01:00
2023-06-15 07:30:11 -06:00
2020-08-23 17:36:59 -05:00
2021-11-01 09:50:37 -07:00
2023-12-03 07:33:09 +01:00
2022-05-24 06:19:33 -06:00