Message ID | 20190529163831.138926-1-bvanassche@acm.org (mailing list archive) |
---|---|
State | Mainlined |
Commit | bcef5b7215681250c4bf8961dfe15e9e4fef97d0 |
Delegated to: | Jason Gunthorpe |
Headers | show |
Series | [RESEND] RDMA/srp: Accept again source addresses that do not have a port number | expand |
On Wed, May 29, 2019 at 09:38:31AM -0700, Bart Van Assche wrote: > The function srp_parse_in() is used both for parsing source address > specifications and for target address specifications. Target addresses > must have a port number. Having to specify a port number for source > addresses is inconvenient. Make sure that srp_parse_in() supports again > parsing addresses with no port number. > > Cc: Laurence Oberman <loberman@redhat.com> > Cc: <stable@vger.kernel.org> > Fixes: c62adb7def71 ("IB/srp: Fix IPv6 address parsing") # v4.17. > Signed-off-by: Bart Van Assche <bvanassche@acm.org> > --- > drivers/infiniband/ulp/srp/ib_srp.c | 21 +++++++++++++++------ > 1 file changed, 15 insertions(+), 6 deletions(-) Bart, do you want this applied now, or are we still waiting for Laurence? Jason
On 5/30/19 11:44 AM, Jason Gunthorpe wrote: > On Wed, May 29, 2019 at 09:38:31AM -0700, Bart Van Assche wrote: >> The function srp_parse_in() is used both for parsing source address >> specifications and for target address specifications. Target addresses >> must have a port number. Having to specify a port number for source >> addresses is inconvenient. Make sure that srp_parse_in() supports again >> parsing addresses with no port number. >> >> Cc: Laurence Oberman <loberman@redhat.com> >> Cc: <stable@vger.kernel.org> >> Fixes: c62adb7def71 ("IB/srp: Fix IPv6 address parsing") # v4.17. >> Signed-off-by: Bart Van Assche <bvanassche@acm.org> >> --- >> drivers/infiniband/ulp/srp/ib_srp.c | 21 +++++++++++++++------ >> 1 file changed, 15 insertions(+), 6 deletions(-) > > Bart, do you want this applied now, or are we still waiting for > Laurence? Hi Jason, Since Laurence has not replied to your e-mail please go ahead and apply this patch. Thanks, Bart.
On Wed, May 29, 2019 at 09:38:31AM -0700, Bart Van Assche wrote: > The function srp_parse_in() is used both for parsing source address > specifications and for target address specifications. Target addresses > must have a port number. Having to specify a port number for source > addresses is inconvenient. Make sure that srp_parse_in() supports again > parsing addresses with no port number. > > Cc: Laurence Oberman <loberman@redhat.com> > Cc: <stable@vger.kernel.org> > Fixes: c62adb7def71 ("IB/srp: Fix IPv6 address parsing") # v4.17. > Signed-off-by: Bart Van Assche <bvanassche@acm.org> > --- > drivers/infiniband/ulp/srp/ib_srp.c | 21 +++++++++++++++------ > 1 file changed, 15 insertions(+), 6 deletions(-) Applied to for-next, thanks Jason
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index be9ddcad8f28..87848faa7502 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c @@ -3481,13 +3481,14 @@ static const match_table_t srp_opt_tokens = { * @net: [in] Network namespace. * @sa: [out] Address family, IP address and port number. * @addr_port_str: [in] IP address and port number. + * @has_port: [out] Whether or not @addr_port_str includes a port number. * * Parse the following address formats: * - IPv4: <ip_address>:<port>, e.g. 1.2.3.4:5. * - IPv6: \[<ipv6_address>\]:<port>, e.g. [1::2:3%4]:5. */ static int srp_parse_in(struct net *net, struct sockaddr_storage *sa, - const char *addr_port_str) + const char *addr_port_str, bool *has_port) { char *addr_end, *addr = kstrdup(addr_port_str, GFP_KERNEL); char *port_str; @@ -3496,9 +3497,12 @@ static int srp_parse_in(struct net *net, struct sockaddr_storage *sa, if (!addr) return -ENOMEM; port_str = strrchr(addr, ':'); - if (!port_str) - return -EINVAL; - *port_str++ = '\0'; + if (port_str && strchr(port_str, ']')) + port_str = NULL; + if (port_str) + *port_str++ = '\0'; + if (has_port) + *has_port = port_str != NULL; ret = inet_pton_with_scope(net, AF_INET, addr, port_str, sa); if (ret && addr[0]) { addr_end = addr + strlen(addr) - 1; @@ -3520,6 +3524,7 @@ static int srp_parse_options(struct net *net, const char *buf, char *p; substring_t args[MAX_OPT_ARGS]; unsigned long long ull; + bool has_port; int opt_mask = 0; int token; int ret = -EINVAL; @@ -3618,7 +3623,8 @@ static int srp_parse_options(struct net *net, const char *buf, ret = -ENOMEM; goto out; } - ret = srp_parse_in(net, &target->rdma_cm.src.ss, p); + ret = srp_parse_in(net, &target->rdma_cm.src.ss, p, + NULL); if (ret < 0) { pr_warn("bad source parameter '%s'\n", p); kfree(p); @@ -3634,7 +3640,10 @@ static int srp_parse_options(struct net *net, const char *buf, ret = -ENOMEM; goto out; } - ret = srp_parse_in(net, &target->rdma_cm.dst.ss, p); + ret = srp_parse_in(net, &target->rdma_cm.dst.ss, p, + &has_port); + if (!has_port) + ret = -EINVAL; if (ret < 0) { pr_warn("bad dest parameter '%s'\n", p); kfree(p);
The function srp_parse_in() is used both for parsing source address specifications and for target address specifications. Target addresses must have a port number. Having to specify a port number for source addresses is inconvenient. Make sure that srp_parse_in() supports again parsing addresses with no port number. Cc: Laurence Oberman <loberman@redhat.com> Cc: <stable@vger.kernel.org> Fixes: c62adb7def71 ("IB/srp: Fix IPv6 address parsing") # v4.17. Signed-off-by: Bart Van Assche <bvanassche@acm.org> --- drivers/infiniband/ulp/srp/ib_srp.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-)