Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp3033990ybt; Mon, 22 Jun 2020 13:12:49 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxaap8zVXUVfMV5SPPibKL/F09AiP0gBPaYNfLZntvAa98URcdEb49JQxZGQ+uZp7AjUB/s X-Received: by 2002:a17:906:191a:: with SMTP id a26mr7375013eje.315.1592856769357; Mon, 22 Jun 2020 13:12:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1592856769; cv=none; d=google.com; s=arc-20160816; b=suy6odtFlncN58affmNYMh26VVCQH7w9+K14lppgO2DXCI8f+W0I/tyH7F4RqjczYK bZ2/efFwwxDaBUqHvphsAmKM09XUREO9SZEg/QRsB1T6Fbnm3XOcD2ONSvBnwRS6CcLj QBWlu8izKy1tMHrmQ6XX3/AN/Q5tHdwopXtyJaEBKWiD+61BpVH80iKZSPVT4XFGiaKn udSF6vrRRtTQkekrdgDi/KYl6AgYsL8v6cCYV5bjqJnb8pvrtLMAomjQ6m+byYopPCHl nCFhGcoG+sxYV2xJuLWlkfcHhyuUsrCgy7CAuxmRUWGc18raI5U3AnO3lTTvNjRO2DdI oUIQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=MrW1YIHkZsOBVhG4tNEZUHS4n9y5nRN4uKGY0C7I9h4=; b=r4BIC7FFsIqXZcGx69C6IjE270D0rUupsypNu7TGckX/Zt1YC5udsYUxVHtsQ8uhAD HcAH4dxokVWliWzbUss/AUAR5OiCOuv1wOSAOvuUJFM71P6w5PO2fiUrpuT4VdgIznZE ZdWLWreFq0FS7JH8lj4Vsre+iOkReE1Fl3JVQD5acblO27ZfO8hXOUXB5AyRIHXTqIna C+QH5QRRDTWZSicTdZKyYI+OdwjLxcn9PU4LaKN4OFahS7mbsdD3snRkgUvaKk2WWpMv 7novauFhRFo9ArNpbEpwmZYBkBsKq3XB8G7hhDv26ecaAsaJaGCzLVyADt08cB7DHgR4 tR/Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id bz23si2902799ejc.195.2020.06.22.13.12.26; Mon, 22 Jun 2020 13:12:49 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730845AbgFVUKD (ORCPT + 99 others); Mon, 22 Jun 2020 16:10:03 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:50112 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730463AbgFVUKB (ORCPT ); Mon, 22 Jun 2020 16:10:01 -0400 Received: from ip5f5af08c.dynamic.kabel-deutschland.de ([95.90.240.140] helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1jnSlP-0005N4-Mn; Mon, 22 Jun 2020 20:09:55 +0000 Date: Mon, 22 Jun 2020 22:09:55 +0200 From: Christian Brauner To: Todd Kjos Cc: gregkh@linuxfoundation.org, christian@brauner.io, arve@android.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, maco@google.com, joel@joelfernandes.org, kernel-team@android.com Subject: Re: [PATCH] binder: fix null deref of proc->context Message-ID: <20200622200955.unq7elx2ry2vrnfe@wittgenstein> References: <20200622200715.114382-1-tkjos@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200622200715.114382-1-tkjos@google.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jun 22, 2020 at 01:07:15PM -0700, Todd Kjos wrote: > The binder driver makes the assumption proc->context pointer is invariant after > initialization (as documented in the kerneldoc header for struct proc). > However, in commit f0fe2c0f050d ("binder: prevent UAF for binderfs devices II") > proc->context is set to NULL during binder_deferred_release(). > > Another proc was in the middle of setting up a transaction to the dying > process and crashed on a NULL pointer deref on "context" which is a local > set to &proc->context: > > new_ref->data.desc = (node == context->binder_context_mgr_node) ? 0 : 1; > > Here's the stack: > > [ 5237.855435] Call trace: > [ 5237.855441] binder_get_ref_for_node_olocked+0x100/0x2ec > [ 5237.855446] binder_inc_ref_for_node+0x140/0x280 > [ 5237.855451] binder_translate_binder+0x1d0/0x388 > [ 5237.855456] binder_transaction+0x2228/0x3730 > [ 5237.855461] binder_thread_write+0x640/0x25bc > [ 5237.855466] binder_ioctl_write_read+0xb0/0x464 > [ 5237.855471] binder_ioctl+0x30c/0x96c > [ 5237.855477] do_vfs_ioctl+0x3e0/0x700 > [ 5237.855482] __arm64_sys_ioctl+0x78/0xa4 > [ 5237.855488] el0_svc_common+0xb4/0x194 > [ 5237.855493] el0_svc_handler+0x74/0x98 > [ 5237.855497] el0_svc+0x8/0xc > > The fix is to move the kfree of the binder_device to binder_free_proc() > so the binder_device is freed when we know there are no references > remaining on the binder_proc. > > Fixes: f0fe2c0f050d ("binder: prevent UAF for binderfs devices II") > Signed-off-by: Todd Kjos Thanks, looks good to me! Acked-by: Christian Brauner Christian > --- > drivers/android/binder.c | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/drivers/android/binder.c b/drivers/android/binder.c > index e47c8a4c83db..f50c5f182bb5 100644 > --- a/drivers/android/binder.c > +++ b/drivers/android/binder.c > @@ -4686,8 +4686,15 @@ static struct binder_thread *binder_get_thread(struct binder_proc *proc) > > static void binder_free_proc(struct binder_proc *proc) > { > + struct binder_device *device; > + > BUG_ON(!list_empty(&proc->todo)); > BUG_ON(!list_empty(&proc->delivered_death)); > + device = container_of(proc->context, struct binder_device, context); > + if (refcount_dec_and_test(&device->ref)) { > + kfree(proc->context->name); > + kfree(device); > + } > binder_alloc_deferred_release(&proc->alloc); > put_task_struct(proc->tsk); > binder_stats_deleted(BINDER_STAT_PROC); > @@ -5406,7 +5413,6 @@ static int binder_node_release(struct binder_node *node, int refs) > static void binder_deferred_release(struct binder_proc *proc) > { > struct binder_context *context = proc->context; > - struct binder_device *device; > struct rb_node *n; > int threads, nodes, incoming_refs, outgoing_refs, active_transactions; > > @@ -5423,12 +5429,6 @@ static void binder_deferred_release(struct binder_proc *proc) > context->binder_context_mgr_node = NULL; > } > mutex_unlock(&context->context_mgr_node_lock); > - device = container_of(proc->context, struct binder_device, context); > - if (refcount_dec_and_test(&device->ref)) { > - kfree(context->name); > - kfree(device); > - } > - proc->context = NULL; > binder_inner_proc_lock(proc); > /* > * Make sure proc stays alive after we > -- > 2.27.0.111.gc72c7da667-goog >