From: j.nixdorf@avm.de Date: Tue, 5 Jan 2021 14:17:01 +0000 (+0100) Subject: net: sunrpc: interpret the return value of kstrtou32 correctly X-Git-Tag: v5.15~1991^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86b53fbf08f48d353a86a06aef537e78e82ba721;p=platform%2Fkernel%2Flinux-starfive.git net: sunrpc: interpret the return value of kstrtou32 correctly A return value of 0 means success. This is documented in lib/kstrtox.c. This was found by trying to mount an NFS share from a link-local IPv6 address with the interface specified by its index: mount("[fe80::1%1]:/srv/nfs", "/mnt", "nfs", 0, "nolock,addr=fe80::1%1") Before this commit this failed with EINVAL and also caused the following message in dmesg: [...] NFS: bad IP address specified: addr=fe80::1%1 The syscall using the same address based on the interface name instead of its index succeeds. Credits for this patch go to my colleague Christian Speich, who traced the origin of this bug to this line of code. Signed-off-by: Johannes Nixdorf Fixes: 00cfaa943ec3 ("replace strict_strto calls") Signed-off-by: Trond Myklebust --- diff --git a/net/sunrpc/addr.c b/net/sunrpc/addr.c index 010dcb8..6e4dbd5 100644 --- a/net/sunrpc/addr.c +++ b/net/sunrpc/addr.c @@ -185,7 +185,7 @@ static int rpc_parse_scope_id(struct net *net, const char *buf, scope_id = dev->ifindex; dev_put(dev); } else { - if (kstrtou32(p, 10, &scope_id) == 0) { + if (kstrtou32(p, 10, &scope_id) != 0) { kfree(p); return 0; }