Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1730404
| From | Todd Kjos <tkjos@google.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] binder: fix memory corruption in binder_transaction binder |
| Date | 2017-09-11 17:50 +0200 |
| Message-ID | <uoz8d-5id-9@gated-at.bofh.it> (permalink) |
| References | <umpPH-5JK-1@gated-at.bofh.it> <uovQZ-38y-5@gated-at.bofh.it> <uoz8d-5id-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
(resend in plain-text mode -- sorry about that)
Amit,
Are you sure this patch is the culprit? That is pretty surprising
since this change can only be hit in a uncommon case (the target node
is valid when we start creating the transaction, but dead when we
check right before sending it) so it is unlikely to be hit during a
normal boot. It also fixes a corruption -- so if you were actually
hitting the case, it would likely have caused issues before and not
now. Take a look at it and see if you think it is really possible.
I just booted hikey to Android with this patch 10 times in a row with
no issues (used hikey-linaro 4.9 kernel which has this patch).
-Todd
> On Mon, Sep 11, 2017 at 5:18 AM, Amit Pundir <amit.pundir@linaro.org> wrote:
>>
>> On 5 September 2017 at 22:51, Todd Kjos <tkjos@android.com> wrote:
>> > From: Xu YiPing <xuyiping@hisilicon.com>
>> >
>> > commit 7a4408c6bd3e ("binder: make sure accesses to proc/thread are
>> > safe") made a change to enqueue tcomplete to thread->todo before
>> > enqueuing the transaction. However, in err_dead_proc_or_thread case,
>> > the tcomplete is directly freed, without dequeued. It may cause the
>> > thread->todo list to be corrupted.
>> >
>> > So, dequeue it before freeing.
>>
>> I see Android boot loops with this patch on hikey tracking
>> linux/master branch. 1st boot is fine but hikey runs into an
>> unexpected short boot loops on 2nd and successive boots.
>>
>> It takes about 3-4 iterations to finally come to sane state and boot
>> to UI. I don't see this behaviour if I revert this patch.
>>
>> Regards,
>> Amit Pundir
>>
>> >
>> > Signed-off-by: Xu YiPing <xuyiping@hisilicon.com>
>> > Signed-off-by: Todd Kjos <tkjos@google.com>
>> > ---
>> > drivers/android/binder.c | 1 +
>> > 1 file changed, 1 insertion(+)
>> >
>> > diff --git a/drivers/android/binder.c b/drivers/android/binder.c
>> > index d055b3f2a207..96cc28afa383 100644
>> > --- a/drivers/android/binder.c
>> > +++ b/drivers/android/binder.c
>> > @@ -3083,6 +3083,7 @@ static void binder_transaction(struct binder_proc
>> > *proc,
>> > err_dead_proc_or_thread:
>> > return_error = BR_DEAD_REPLY;
>> > return_error_line = __LINE__;
>> > + binder_dequeue_work(proc, tcomplete);
>> > err_translate_failed:
>> > err_bad_object_type:
>> > err_bad_offset:
>> > --
>> > 2.14.1.581.gf28d330327-goog
>> >
>
>
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] binder: fix memory corruption in binder_transaction binder Todd Kjos <tkjos@android.com> - 2017-09-05 19:30 +0200
Re: [PATCH] binder: fix memory corruption in binder_transaction binder Amit Pundir <amit.pundir@linaro.org> - 2017-09-11 14:20 +0200
Re: [PATCH] binder: fix memory corruption in binder_transaction binder Todd Kjos <tkjos@google.com> - 2017-09-11 17:50 +0200
Re: [PATCH] binder: fix memory corruption in binder_transaction binder Amit Pundir <amit.pundir@linaro.org> - 2017-09-11 19:00 +0200
Re: [PATCH] binder: fix memory corruption in binder_transaction binder Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-09-11 19:30 +0200
Re: [PATCH] binder: fix memory corruption in binder_transaction binder Todd Kjos <tkjos@google.com> - 2017-09-11 22:00 +0200
Re: [PATCH] binder: fix memory corruption in binder_transaction binder Martijn Coenen <maco@google.com> - 2017-09-12 10:30 +0200
csiph-web