From: Petr Mladek <pmladek@suse.com>
To: Joe Lawrence <joe.lawrence@redhat.com>
Cc: live-patching@vger.kernel.org, linux-kernel@vger.kernel.org,
Josh Poimboeuf <jpoimboe@redhat.com>,
Jessica Yu <jeyu@redhat.com>, Jiri Kosina <jikos@kernel.org>,
Miroslav Benes <mbenes@suse.cz>
Subject: Re: [PATCH v4] livepatch: introduce shadow variable API
Date: Fri, 18 Aug 2017 18:18:00 +0200 [thread overview]
Message-ID: <20170818161800.GE25223@pathway.suse.cz> (raw)
In-Reply-To: <d9328f8d-3299-a166-36a1-3122ed616cf5@redhat.com>
On Fri 2017-08-18 09:46:08, Joe Lawrence wrote:
> On 08/17/2017 10:05 AM, Petr Mladek wrote:
> > On Mon 2017-08-14 16:02:43, Joe Lawrence wrote:
> >> [ ... snip ... ]
> >> diff --git a/samples/livepatch/livepatch-shadow-fix1.c b/samples/livepatch/livepatch-shadow-fix1.c
> >> new file mode 100644
> >> index 000000000000..5acc838463d1
> >> --- /dev/null
> >> +++ b/samples/livepatch/livepatch-shadow-fix1.c
> >> +void livepatch_fix1_dummy_free(struct dummy *d)
> >> +{
> >> + void **shadow_leak;
> >> +
> >> + /*
> >> + * Patch: fetch the saved SV_LEAK shadow variable, detach and
> >> + * free it. Note: handle cases where this shadow variable does
> >> + * not exist (ie, dummy structures allocated before this livepatch
> >> + * was loaded.)
> >> + */
> >> + shadow_leak = klp_shadow_get(d, SV_LEAK);
> >> + if (shadow_leak) {
> >> + klp_shadow_detach(d, SV_LEAK);
> >> + kfree(*shadow_leak);
> >
> > This should get removed. The buffer used for the shadow variable
> > is freed by kfree_rcu() called from klp_shadow_detach().
> >
> > Same problem is also in the other livepatch.
> >
> >> + pr_info("%s: dummy @ %p, prevented leak @ %p\n",
> >> + __func__, d, *shadow_leak);
> >
> > This might access shadow_leak after it was (double) freed.
> >
> >> + } else {
> >> + pr_info("%s: dummy @ %p leaked!\n", __func__, d);
> >> + }
> >> +
> >> + kfree(d);
> >> +}
>
> Hi Petr,
>
> I think you're half correct.
>
> The kfree is the crux of the memory leak patch, so it needs to stay.
> However, the shadow variable is holding a copy of the pointer to the
> memory leak area, so you're right that it can't be safely dereferenced
> after the shadow variable is detached*.
Ah, I see. The extra kftree does not free the shadow->data but
it frees the data that the shadow variable points to.
> The code should to be rearranged like:
>
> void livepatch_fix1_dummy_free(struct dummy *d)
> {
> void **p_shadow_leak, *shadow_leak;
>
> p_shadow_leak = klp_shadow_get(d, SV_LEAK);
> if (p_shadow_leak) {
> shadow_leak = *p_shadow_leak; << deref before detach
I would rename shadow_leak -> leak. It will make it more clear
that it is the original leak pointer.
Well, we could actually free the data before we detach/destroy
the shadow variable. But then it might deserve a comment to
avoid confusion that I had. I mean:
shadow_leak = klp_shadow_get(d, SV_LEAK);
if (shadow_leak) {
pr_info("%s: dummy @ %p, prevented leak @ %p\n",
__func__, d, *shadow_leak);
/* Free the previously leaked data */
kfree(*shadow_leak);
/* Free the shadow variable */
klp_shadow_detach(d, SV_LEAK);
> klp_shadow_detach(d, SV_LEAK);
> kfree(shadow_leak);
> ...
>
> * Aside: I usually develop with slub_debug=FZPU set to catch silly
> use-after-frees like this.
Sounds like a good practice.
> released via kfree_rcu(), I think there was a window before the grace
> period where this one worked out okay... once I added a
> synchronize_rcu() call in between the klp_shadow_detch() and kfree()
> calls, I did see the poison pattern. This is my first time using
> kfree_rcu(), so it was interesting to dig into.
Yup.
Best Regards,
Petr
next prev parent reply other threads:[~2017-08-18 16:18 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-14 20:02 [PATCH v4] livepatch: shadow variables Joe Lawrence
2017-08-14 20:02 ` [PATCH v4] livepatch: introduce shadow variable API Joe Lawrence
2017-08-15 13:59 ` Josh Poimboeuf
2017-08-16 12:43 ` Miroslav Benes
2017-08-16 13:40 ` Joe Lawrence
2017-08-31 12:45 ` Miroslav Benes
2017-08-17 14:05 ` Petr Mladek
2017-08-17 16:01 ` Joe Lawrence
2017-08-17 16:28 ` Josh Poimboeuf
2017-08-18 9:42 ` Petr Mladek
2017-08-18 19:04 ` Josh Poimboeuf
2017-08-18 13:46 ` Joe Lawrence
2017-08-18 16:18 ` Petr Mladek [this message]
2017-08-18 20:25 ` Joe Lawrence
2017-08-21 11:24 ` Petr Mladek
2017-08-18 13:44 ` Nicolai Stange
2017-08-18 14:04 ` Petr Mladek
2017-08-18 14:19 ` Joe Lawrence
2017-08-18 14:46 ` Nicolai Stange
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=20170818161800.GE25223@pathway.suse.cz \
--to=pmladek@suse.com \
--cc=jeyu@redhat.com \
--cc=jikos@kernel.org \
--cc=joe.lawrence@redhat.com \
--cc=jpoimboe@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=live-patching@vger.kernel.org \
--cc=mbenes@suse.cz \
/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
Powered by JetHome