linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Juan Zea <juan.zea@qindel.com>
Cc: linux-usb@vger.kernel.org
Subject: minor bug in usbip tool
Date: Tue, 12 Dec 2017 22:20:25 +0100	[thread overview]
Message-ID: <20171212212025.GA10207@kroah.com> (raw)

On Tue, Dec 12, 2017 at 04:04:27PM +0100, Juan Zea wrote:
> Hi,
> 
>  I've being taking a deep look at the code in the usbip tool and found this small bug at https://github.com/torvalds/linux/blob/master/tools/usb/usbip/src/utils.c :
> 
> 44         rc = write_sysfs_attribute(match_busid_attr_path, command,
> 45                                    sizeof(command));
>                                             ^
>  
> Using sizeof instead of strlen in this line, leads to the following situation as seen by a strace:
> strace -s100000 /usr/local/sbin/usbip bind -b 1-1.3
> .
> .
> open("/sys/bus/usb/drivers/usbip-host/match_busid", O_WRONLY) = 3
> write(3, "add 1-1.3\0@\0\0\0\0\0unbind\0\0\0\0\0\0\0\0\0\0/sys", 36) = 36
> close(3)      
> .
> .
> 
> The string line should be "add 1-1.3" alone, but well, it works, so no doubt nobody noticed before.
> 
> Thought it is worth reporting anyway. Here's the patch:

Thanks for finding this and sending a patch.

But:

> 
> diff --git a/tools/usb/usbip/src/utils.c b/tools/usb/usbip/src/utils.c
> index 2b3d6d2..ea1a1af 100644
> --- a/tools/usb/usbip/src/utils.c
> +++ b/tools/usb/usbip/src/utils.c
> @@ -42,7 +42,7 @@ int modify_match_busid(char *busid, int add)
>                 snprintf(command, SYSFS_BUS_ID_SIZE + 4, "del %s", busid);
>  
>         rc = write_sysfs_attribute(match_busid_attr_path, command,
> -                                  sizeof(command));
> +                                  strlen(command));
>         if (rc < 0) {
>                 dbg("failed to write match_busid: %s", strerror(errno));
>                 return -1;
> 

Can you resend this in a format that we can apply it in?  Please look at
Documentation/SubmittingPatches for how to do this.

thanks,

greg k-h
---
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2017-12-12 21:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-12 21:20 Greg KH [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-12-12 15:04 minor bug in usbip tool Juan Zea

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=20171212212025.GA10207@kroah.com \
    --to=greg@kroah.com \
    --cc=juan.zea@qindel.com \
    --cc=linux-usb@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).