All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zheng Hacker <hackerzheng666@gmail.com>
To: Coly Li <colyli@suse.de>
Cc: Zheng Wang <zyytlz.wz@163.com>,
	Kent Overstreet <kent.overstreet@gmail.com>,
	linux-bcache@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>,
	security@kernel.org, alex000young@gmail.com
Subject: Re: [PATCH] bcache: Fix a NULL or wild pointer dereference in btree_split
Date: Thu, 2 Feb 2023 22:11:01 +0800	[thread overview]
Message-ID: <CAJedcCxWcyvzTWG2sZquGXO92qH=yV_wjaU0WtXpVT=SC13wbw@mail.gmail.com> (raw)
In-Reply-To: <50656A90-E0D4-4800-880C-406EBDD784FC@suse.de>

Coly Li <colyli@suse.de> 于2023年2月2日周四 20:22写道:

> Hmm, there should be something to be fixed, but not the non-exist NULL dereference.
>
> If you look inside btree_node_alloc_replacement(), you may find __bch_btree_node_alloc() which does the real work indeed. And yes, I would suggest you to improve a bit inside __bch_btree_node_alloc().
>
> 1088 struct btree *__bch_btree_node_alloc(struct cache_set *c, struct btree_op *op,
> [snipped]
> 1093         struct btree *b = ERR_PTR(-EAGAIN);
> 1094
> 1095         mutex_lock(&c->bucket_lock);
> 1096 retry:
> 1097         if (__bch_bucket_alloc_set(c, RESERVE_BTREE, &k.key, wait))
> 1098                 goto err;
> [snipped]
> 1102
> 1103         b = mca_alloc(c, op, &k.key, level);
> 1104         if (IS_ERR(b))
> 1105                 goto err_free;
> 1106
> 1107         if (!b) {
> 1108                 cache_bug(c,
> 1109                         "Tried to allocate bucket that was in btree cache");
> 1110                 goto retry;
> 1111         }
> 1112
>
> From the above code, at line 1097 if __bch_bucket_alloc_set() returns non-zero value, the code will jump to label err: and returns ERR_PTR(-EAGAIN). But if the code fails at line 1103 and b is set to NULL, at line 1110 the code will jump back to label retry: and calls __bch_bucket_alloc_set() again. If the second time __bch_bucket_alloc_set() returns non-zero value and the code jumps to label err:, a NULL pointer other than ERR_PTR(-EAGAIN) will be returned. This inconsistent return value on same location at line 1097 seems incorrect, where ERR_PTR(-EAGAIN) should be returned IMHO.
>
> Therefore I feel that “b = ERR_PTR(-EAGAIN)” should be moved to the location after label retry:, then btree_node_alloc_replacement() will only return error code, and no NULL pointer returned.
>
> After this change, all following IS_ERR_OR_NULL() checks to btree_node_alloc_replacement() are unnecessary and IS_ERR() just enough, because no NULL will be returned.
>
> This is a nice catch. I’d like to have it to be fixed. I do appreciate if you want to compose two patches for the fix. Otherwise I can handle it myself.
>
Hi Coly,

Thanks for your reply and detailed explaination! As you explain, I
found __bch_btree_node_alloc may return NULL in some situation. So I
add some more check in upper code.
Your suggestion is more constructive. It'll make the function more
clear for other developer. I'd like to help with the patch. And you
have kindly pointed the right way to fix.
 May I merge fix it in one patch with the commit msg "refactor
__bch_btree_node_alloc to avoid poential NULL dereference"? Because I
think if __bch_btree_node_alloc returns
NULL to bch_btree_node_alloc, the function
btree_node_alloc_replacement will strill return NULL to n1 in
btree_split. I think the possibility is low, if it's not proper,
please feel free
to let me know.

Best regards,
Zheng Wang

  reply	other threads:[~2023-02-02 14:11 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-02 11:05 [PATCH] bcache: Fix a NULL or wild pointer dereference in btree_split Zheng Wang
2023-02-02 12:08 ` Greg KH
2023-02-02 13:58   ` Zheng Hacker
2023-02-02 12:21 ` Coly Li
2023-02-02 14:11   ` Zheng Hacker [this message]
2023-02-02 14:18     ` Coly Li
2023-02-02 14:21       ` Zheng Hacker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJedcCxWcyvzTWG2sZquGXO92qH=yV_wjaU0WtXpVT=SC13wbw@mail.gmail.com' \
    --to=hackerzheng666@gmail.com \
    --cc=alex000young@gmail.com \
    --cc=colyli@suse.de \
    --cc=kent.overstreet@gmail.com \
    --cc=linux-bcache@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=security@kernel.org \
    --cc=zyytlz.wz@163.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.