All of lore.kernel.org
 help / color / mirror / Atom feed
From: Carlos Llamas <cmllamas@google.com>
To: Li Li <dualli@chromium.org>
Cc: dualli@google.com, corbet@lwn.net, davem@davemloft.net,
	edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
	donald.hunter@gmail.com, gregkh@linuxfoundation.org,
	arve@android.com, tkjos@android.com, maco@android.com,
	joel@joelfernandes.org, brauner@kernel.org, surenb@google.com,
	arnd@arndb.de, masahiroy@kernel.org, bagasdotme@gmail.com,
	horms@kernel.org, linux-kernel@vger.kernel.org,
	linux-doc@vger.kernel.org, netdev@vger.kernel.org,
	hridya@google.com, smoreland@google.com, kernel-team@android.com
Subject: Re: [PATCH v11 2/2] binder: report txn errors via generic netlink
Date: Thu, 9 Jan 2025 19:30:48 +0000	[thread overview]
Message-ID: <Z4Aj6KqkQGHXAQLK@google.com> (raw)
In-Reply-To: <Z4Aaz4F_oS-rJ4ij@google.com>

On Thu, Jan 09, 2025 at 06:51:59PM +0000, Carlos Llamas wrote:
> Did you happen to look into netlink_register_notifier()? That seems like
> an option to keep the device vs netlink socket interface from mixing up.
> I believe we could check for NETLINK_URELEASE events and do the cleanup
> then. I'll do a quick try.

Yeah, this quick prototype worked for me. Although I haven't looked at
the api details closely.

diff --git a/drivers/android/binder.c b/drivers/android/binder.c
index 536be42c531e..fa2146cf02a7 100644
--- a/drivers/android/binder.c
+++ b/drivers/android/binder.c
+static int binder_netlink_notify(struct notifier_block *nb,
+	+	+	+	 unsigned long action,
+	+	+	+	 void *data)
+{
+	struct netlink_notify *n = data;
+	struct binder_device *device;
+
+	if (action != NETLINK_URELEASE)
+	+	return NOTIFY_DONE;
+
+	hlist_for_each_entry(device, &binder_devices, hlist) {
+	+	if (device->context.report_portid == n->portid)
+	+	+	pr_info("%s: socket released\n", __func__);
+	}
+
+	return NOTIFY_DONE;
+}
+
+static struct notifier_block binder_netlink_notifier = {
+	.notifier_call = binder_netlink_notify,
+};
+
 static int __init binder_init(void)
 {
+	int ret;
@@ -7244,6 +7259,8 @@ static int __init binder_init(void)
+	+	goto err_init_binder_device_failed;
+	}

+	netlink_register_notifier(&binder_netlink_notifier);
+
+	return ret;

 err_init_binder_device_failed:


With that change we get notified when the socket that registered the
report exits:

  root@debian:~# ./binder-netlink
  report setup complete!
  ^C[   63.682485] binder: binder_netlink_notify: socket released


I don't know if this would be the preferred approach to "install" a
notification callback with a netlink socket but it works. wdyt?

--
Carlos Llamas

  reply	other threads:[~2025-01-09 19:30 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-18 20:37 [PATCH v11 0/2] binder: report txn errors via generic netlink Li Li
2024-12-18 20:37 ` [PATCH v11 1/2] binderfs: add new binder devices to binder_devices Li Li
2024-12-18 20:37 ` [PATCH v11 2/2] binder: report txn errors via generic netlink Li Li
2025-01-07 21:29   ` Carlos Llamas
2025-01-07 21:41     ` Carlos Llamas
2025-01-08  0:00       ` Li Li
2025-01-08 19:07         ` Carlos Llamas
2025-01-08 19:56           ` Li Li
2025-01-08 21:59             ` Carlos Llamas
2025-01-09 18:51         ` Carlos Llamas
2025-01-09 19:30           ` Carlos Llamas [this message]
2025-01-09 19:48             ` Li Li
2025-01-09 20:13               ` Jakub Kicinski
2025-01-09 23:19                 ` Carlos Llamas
2025-01-10  0:18                   ` Jakub Kicinski
2025-01-14  6:01                     ` Li Li
2025-01-14 18:32                       ` Jakub Kicinski

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=Z4Aj6KqkQGHXAQLK@google.com \
    --to=cmllamas@google.com \
    --cc=arnd@arndb.de \
    --cc=arve@android.com \
    --cc=bagasdotme@gmail.com \
    --cc=brauner@kernel.org \
    --cc=corbet@lwn.net \
    --cc=davem@davemloft.net \
    --cc=donald.hunter@gmail.com \
    --cc=dualli@chromium.org \
    --cc=dualli@google.com \
    --cc=edumazet@google.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=horms@kernel.org \
    --cc=hridya@google.com \
    --cc=joel@joelfernandes.org \
    --cc=kernel-team@android.com \
    --cc=kuba@kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maco@android.com \
    --cc=masahiroy@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=smoreland@google.com \
    --cc=surenb@google.com \
    --cc=tkjos@android.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.