From: Lars Gunnarsson <gunnarsson.lars@gmail.com>
To: Valentina Manea <valentina.manea.m@gmail.com>,
Shuah Khan <shuah@kernel.org>,
linux-usb@vger.kernel.org
Subject: [PATCH v1 2/3] tools/usbip: support use case reconnect: command bind
Date: Wed, 6 Oct 2021 22:50:02 +0200 [thread overview]
Message-ID: <20211006205002.GA44214@dell-precision-T3610> (raw)
Extend command "usbip bind" with:
* flag "-c" to wait for busid to connect and then bind, instead of returning
error.
* flag "-d", to wait for busid to disconnect before exit.
Today manual steps is required to re-export usb device when re-connected. With
above flags enabled, it's possible to permanently "export" usb devices with help
of example systemd or other process supervisors, or with a simple while-loop
in bash.
Signed-off-by: Lars Gunnarsson <gunnarsson.lars@gmail.com>
---
tools/usb/usbip/src/usbip_bind.c | 62 +++++++++++++++++++++++++++-----
1 file changed, 53 insertions(+), 9 deletions(-)
diff --git a/tools/usb/usbip/src/usbip_bind.c b/tools/usb/usbip/src/usbip_bind.c
index f1cf9225a69c..907c81f2160c 100644
--- a/tools/usb/usbip/src/usbip_bind.c
+++ b/tools/usb/usbip/src/usbip_bind.c
@@ -14,6 +14,7 @@
#include <getopt.h>
#include "usbip_common.h"
+#include "usbip_monitor.h"
#include "utils.h"
#include "usbip.h"
#include "sysfs_utils.h"
@@ -24,10 +25,18 @@ enum unbind_status {
UNBIND_ST_FAILED
};
+typedef struct {
+ char *busid;
+ char monitor_connect;
+ char monitor_disconnect;
+} bind_options;
+
static const char usbip_bind_usage_string[] =
"usbip bind <args>\n"
- " -b, --busid=<busid> Bind " USBIP_HOST_DRV_NAME ".ko to device "
- "on <busid>\n";
+ " -b, --busid=<busid> Bind " USBIP_HOST_DRV_NAME ".ko to device\n"
+ " on <busid>\n"
+ " -c, --monitor-connect Wait until bus is available before binding\n"
+ " -d, --monitor-disconnect Wait until bus is disconnected before exit\n";
void usbip_bind_usage(void)
{
@@ -127,19 +136,32 @@ static int unbind_other(char *busid)
return status;
}
-static int bind_device(char *busid)
+static int bind_device(bind_options options)
{
int rc;
struct udev *udev;
struct udev_device *dev;
const char *devpath;
+ usbip_monitor_t *monitor = NULL;
+ char *busid = options.busid;
+
+ if (options.monitor_disconnect || options.monitor_connect) {
+ monitor = usbip_monitor_new();
+ usbip_monitor_set_busid(monitor, options.busid);
+ }
/* Check whether the device with this bus ID exists. */
udev = udev_new();
dev = udev_device_new_from_subsystem_sysname(udev, "usb", busid);
if (!dev) {
- err("device with the specified bus ID does not exist");
- return -1;
+ if (options.monitor_connect) {
+ info("device on busid %s: awaiting connect", busid);
+ usbip_monitor_await_usb_bind(monitor, USBIP_USB_DRV_NAME);
+ dev = udev_device_new_from_subsystem_sysname(udev, "usb", busid);
+ } else {
+ err("device with the specified bus ID does not exist");
+ return -1;
+ }
}
devpath = udev_device_get_devpath(dev);
udev_unref(udev);
@@ -174,7 +196,14 @@ static int bind_device(char *busid)
return -1;
}
- info("bind device on busid %s: complete", busid);
+ info("device on busid %s: bind complete", busid);
+
+ if (options.monitor_disconnect) {
+ info("device on busid %s: await disconnect", busid);
+ usbip_monitor_await_usb_bind(monitor, USBIP_HOST_DRV_NAME);
+ usbip_monitor_await_usb_unbind(monitor);
+ usbip_monitor_delete(monitor);
+ }
return 0;
}
@@ -183,27 +212,42 @@ int usbip_bind(int argc, char *argv[])
{
static const struct option opts[] = {
{ "busid", required_argument, NULL, 'b' },
+ { "monitor-connect", no_argument, NULL, 'c' },
+ { "monitor-disconnect", no_argument, NULL, 'd' },
{ NULL, 0, NULL, 0 }
};
+ bind_options options = {};
int opt;
int ret = -1;
for (;;) {
- opt = getopt_long(argc, argv, "b:", opts, NULL);
+ opt = getopt_long(argc, argv, "b:cd", opts, NULL);
if (opt == -1)
break;
switch (opt) {
case 'b':
- ret = bind_device(optarg);
- goto out;
+ options.busid = optarg;
+ break;
+ case 'c':
+ options.monitor_connect = 1;
+ break;
+ case 'd':
+ options.monitor_disconnect = 1;
+ break;
default:
goto err_out;
}
}
+ if (!options.busid)
+ goto err_out;
+
+ ret = bind_device(options);
+ goto out;
+
err_out:
usbip_bind_usage();
out:
--
2.25.1
reply other threads:[~2021-10-06 20:50 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20211006205002.GA44214@dell-precision-T3610 \
--to=gunnarsson.lars@gmail.com \
--cc=linux-usb@vger.kernel.org \
--cc=shuah@kernel.org \
--cc=valentina.manea.m@gmail.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