public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: "Tiffany Y. Yang" <ynaffit@google.com>
Cc: "Arve Hjønnevåg" <arve@android.com>,
	"Todd Kjos" <tkjos@android.com>,
	"Martijn Coenen" <maco@android.com>,
	"Joel Fernandes" <joel@joelfernandes.org>,
	"Christian Brauner" <brauner@kernel.org>,
	"Carlos Llamas" <cmllamas@google.com>,
	"Suren Baghdasaryan" <surenb@google.com>,
	linux-kernel@vger.kernel.org, kernel-team@android.com
Subject: Re: [PATCH v2] binder: use buffer offsets in debug logs
Date: Mon, 24 Mar 2025 11:23:16 -0700	[thread overview]
Message-ID: <2025032403-spout-unabashed-5df1@gregkh> (raw)
In-Reply-To: <20250324180716.1012478-3-ynaffit@google.com>

On Mon, Mar 24, 2025 at 06:07:18PM +0000, Tiffany Y. Yang wrote:
> Identify buffer addresses using vma offsets instead of full user
> addresses in debug logs.
> 
> Signed-off-by: Tiffany Y. Yang <ynaffit@google.com>
> ---
>  drivers/android/binder.c | 31 ++++++++++++++++---------------
>  1 file changed, 16 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/android/binder.c b/drivers/android/binder.c
> index d1aa6d24450a..994ae205aa07 100644
> --- a/drivers/android/binder.c
> +++ b/drivers/android/binder.c
> @@ -3261,20 +3261,20 @@ static void binder_transaction(struct binder_proc *proc,
>  
>  	if (reply)
>  		binder_debug(BINDER_DEBUG_TRANSACTION,
> -			     "%d:%d BC_REPLY %d -> %d:%d, data %016llx-%016llx size %lld-%lld-%lld\n",
> +			     "%d:%d BC_REPLY %d -> %d:%d, buffer offset %lx-%lx size %lld-%lld-%lld\n",
>  			     proc->pid, thread->pid, t->debug_id,
>  			     target_proc->pid, target_thread->pid,
> -			     (u64)tr->data.ptr.buffer,
> -			     (u64)tr->data.ptr.offsets,
> +			     (unsigned long)tr->data.ptr.buffer - proc->alloc.buffer,
> +			     (unsigned long)tr->data.ptr.offsets - proc->alloc.buffer,
>  			     (u64)tr->data_size, (u64)tr->offsets_size,
>  			     (u64)extra_buffers_size);
>  	else
>  		binder_debug(BINDER_DEBUG_TRANSACTION,
> -			     "%d:%d BC_TRANSACTION %d -> %d - node %d, data %016llx-%016llx size %lld-%lld-%lld\n",
> +			     "%d:%d BC_TRANSACTION %d -> %d - node %d, buffer offset %lx-%lx size %lld-%lld-%lld\n",
>  			     proc->pid, thread->pid, t->debug_id,
>  			     target_proc->pid, target_node->debug_id,
> -			     (u64)tr->data.ptr.buffer,
> -			     (u64)tr->data.ptr.offsets,
> +			     (unsigned long)tr->data.ptr.buffer - proc->alloc.buffer,
> +			     (unsigned long)tr->data.ptr.offsets - proc->alloc.buffer,
>  			     (u64)tr->data_size, (u64)tr->offsets_size,
>  			     (u64)extra_buffers_size);
>  
> @@ -4223,20 +4223,21 @@ static int binder_thread_write(struct binder_proc *proc,
>  			if (IS_ERR_OR_NULL(buffer)) {
>  				if (PTR_ERR(buffer) == -EPERM) {
>  					binder_user_error(
> -						"%d:%d BC_FREE_BUFFER u%016llx matched unreturned or currently freeing buffer\n",
> +						"%d:%d BC_FREE_BUFFER matched unreturned or currently freeing buffer at offset %lx\n",
>  						proc->pid, thread->pid,
> -						(u64)data_ptr);
> +						(unsigned long)data_ptr - proc->alloc.buffer);
>  				} else {
>  					binder_user_error(
> -						"%d:%d BC_FREE_BUFFER u%016llx no match\n",
> +						"%d:%d BC_FREE_BUFFER no match for buffer at offset %lx\n",
>  						proc->pid, thread->pid,
> -						(u64)data_ptr);
> +						(unsigned long)data_ptr - proc->alloc.buffer);
>  				}
>  				break;
>  			}
>  			binder_debug(BINDER_DEBUG_FREE_BUFFER,
> -				     "%d:%d BC_FREE_BUFFER u%016llx found buffer %d for %s transaction\n",
> -				     proc->pid, thread->pid, (u64)data_ptr,
> +				     "%d:%d BC_FREE_BUFFER at offset %lx found buffer %d for %s transaction\n",
> +				     proc->pid, thread->pid,
> +				     (unsigned long)data_ptr - proc->alloc.buffer,
>  				     buffer->debug_id,
>  				     buffer->transaction ? "active" : "finished");
>  			binder_free_buf(proc, thread, buffer, false);
> @@ -5053,7 +5054,7 @@ static int binder_thread_read(struct binder_proc *proc,
>  		trace_binder_transaction_received(t);
>  		binder_stat_br(proc, thread, cmd);
>  		binder_debug(BINDER_DEBUG_TRANSACTION,
> -			     "%d:%d %s %d %d:%d, cmd %u size %zd-%zd ptr %016llx-%016llx\n",
> +			     "%d:%d %s %d %d:%d, cmd %u size %zd-%zd ptr offset %lx-%lx\n",
>  			     proc->pid, thread->pid,
>  			     (cmd == BR_TRANSACTION) ? "BR_TRANSACTION" :
>  				(cmd == BR_TRANSACTION_SEC_CTX) ?
> @@ -5061,8 +5062,8 @@ static int binder_thread_read(struct binder_proc *proc,
>  			     t->debug_id, t_from ? t_from->proc->pid : 0,
>  			     t_from ? t_from->pid : 0, cmd,
>  			     t->buffer->data_size, t->buffer->offsets_size,
> -			     (u64)trd->data.ptr.buffer,
> -			     (u64)trd->data.ptr.offsets);
> +			     (unsigned long)trd->data.ptr.buffer - proc->alloc.buffer,
> +			     (unsigned long)trd->data.ptr.offsets - proc->alloc.buffer);
>  
>  		if (t_from)
>  			binder_thread_dec_tmpref(t_from);
> -- 
> 2.49.0.395.g12beb8f557-goog
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- This looks like a new version of a previously submitted patch, but you
  did not list below the --- line any changes from the previous version.
  Please read the section entitled "The canonical patch format" in the
  kernel file, Documentation/process/submitting-patches.rst for what
  needs to be done here to properly describe this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

  reply	other threads:[~2025-03-24 18:24 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-24 18:07 [PATCH v2] binder: use buffer offsets in debug logs Tiffany Y. Yang
2025-03-24 18:23 ` Greg Kroah-Hartman [this message]
2025-03-24 18:48 ` Carlos Llamas
2025-03-25  0:41   ` Tiffany Y. Yang
2025-03-25 20:45     ` Carlos Llamas
2025-03-27 21:11       ` Tiffany Y. Yang

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=2025032403-spout-unabashed-5df1@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=arve@android.com \
    --cc=brauner@kernel.org \
    --cc=cmllamas@google.com \
    --cc=joel@joelfernandes.org \
    --cc=kernel-team@android.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maco@android.com \
    --cc=surenb@google.com \
    --cc=tkjos@android.com \
    --cc=ynaffit@google.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox