From: Bill O'Donnell <bodonnel@redhat.com>
To: Bill O'Donnell <bodonnel@redhat.com>
Cc: linux-xfs@vger.kernel.org, cem@kernel.org, djwong@kernel.org,
sandeen@sandeen.net
Subject: Re: [PATCH] xfsdump: prevent use-after-free in fstab_commit()
Date: Fri, 30 Aug 2024 10:48:35 -0500 [thread overview]
Message-ID: <ZtHp09bArPxV-7_m@redhat.com> (raw)
In-Reply-To: <20240829175925.59281-1-bodonnel@redhat.com>
On Thu, Aug 29, 2024 at 12:59:25PM -0500, Bill O'Donnell wrote:
> Fix potential use-after-free of list pointer in fstab_commit().
> Use a copy of the pointer when calling invidx_commit().
>
> Coverity CID 1498039.
>
> Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
NACK. Deeming this finding as a false positive.
> ---
> invutil/fstab.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/invutil/fstab.c b/invutil/fstab.c
> index 88d849e..fe2b1f9 100644
> --- a/invutil/fstab.c
> +++ b/invutil/fstab.c
> @@ -66,6 +66,7 @@ fstab_commit(WINDOW *win, node_t *current, node_t *list)
> data_t *d;
> invt_fstab_t *fstabentry;
> int fstabentry_idx;
> + node_t *list_cpy = list;
>
> n = current;
> if(n == NULL || n->data == NULL)
> @@ -77,8 +78,10 @@ fstab_commit(WINDOW *win, node_t *current, node_t *list)
>
> if(d->deleted == BOOL_TRUE && d->imported == BOOL_FALSE) {
> for(i = 0; i < d->nbr_children; i++) {
> - invidx_commit(win, d->children[i], list);
> + list_cpy = list;
> + invidx_commit(win, d->children[i], list_cpy);
> }
> + free(list_cpy);
> mark_all_children_commited(current);
>
> fstabentry_idx = (int)(((long)fstabentry - (long)fstab_file[fidx].mapaddr - sizeof(invt_counter_t)) / sizeof(invt_fstab_t));
> @@ -101,8 +104,10 @@ fstab_commit(WINDOW *win, node_t *current, node_t *list)
> invt_fstab_t *dest;
>
> for(i = 0; i < d->nbr_children; i++) {
> - invidx_commit(win, d->children[i], list);
> + list_cpy = list;
> + invidx_commit(win, d->children[i], list_cpy);
> }
> + free(list_cpy);
> mark_all_children_commited(current);
>
> if(find_matching_fstab(0, fstabentry) >= 0) {
> --
> 2.46.0
>
prev parent reply other threads:[~2024-08-30 15:48 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-29 17:59 [PATCH] xfsdump: prevent use-after-free in fstab_commit() Bill O'Donnell
2024-08-29 19:35 ` Eric Sandeen
2024-08-29 19:47 ` Bill O'Donnell
2024-08-29 20:34 ` Bill O'Donnell
2024-08-29 21:56 ` Eric Sandeen
2024-08-29 22:48 ` Bill O'Donnell
[not found] ` <SA1PR10MB758637A0D3EE774C9DF5B94489972@SA1PR10MB7586.namprd10.prod.outlook.com>
2024-08-30 15:56 ` [External] : " Eric Sandeen
2024-08-30 15:48 ` Bill O'Donnell [this message]
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=ZtHp09bArPxV-7_m@redhat.com \
--to=bodonnel@redhat.com \
--cc=cem@kernel.org \
--cc=djwong@kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=sandeen@sandeen.net \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox