* [PATCH 0/2] Fix-ups for 2.6.28 rpcb kernel support
@ 2008-09-15 21:27 Chuck Lever
[not found] ` <20080915212437.3939.82594.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Chuck Lever @ 2008-09-15 21:27 UTC (permalink / raw)
To: bfields; +Cc: okir, linux-nfs
Hi Bruce-
Here are a couple of fixes for the code that registers kernel RPC
services with the local rpcbind daemon. The first is a patch that can
be merged with a patch you already have queued for 2.6.28.
---
Chuck Lever (2):
SUNRPC: Use short-hand IPv6 ANYADDR for RPCB_SET
SUNRPC: Register both netids for AF_INET6 servers
net/sunrpc/rpcb_clnt.c | 12 +++-
net/sunrpc/svc.c | 143 ++++++++++++++++++++++++++++++++++--------------
2 files changed, 108 insertions(+), 47 deletions(-)
--
Chuck Lever
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] SUNRPC: Register both netids for AF_INET6 servers
[not found] ` <20080915212437.3939.82594.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
@ 2008-09-15 21:27 ` Chuck Lever
[not found] ` <20080915212723.3939.23359.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
2008-09-15 21:27 ` [PATCH 2/2] SUNRPC: Use short-hand IPv6 ANYADDR for RPCB_SET Chuck Lever
1 sibling, 1 reply; 6+ messages in thread
From: Chuck Lever @ 2008-09-15 21:27 UTC (permalink / raw)
To: bfields; +Cc: okir, linux-nfs
TI-RPC is a user-space library of RPC functions that replaces ONC RPC
and allows RPC to operate in the new world of IPv6.
TI-RPC combines the concept of a transport protocol (UDP and TCP)
and a protocol family (PF_INET and PF_INET6) into a single identifier
called a "netid." For example, "udp" means UDP over IPv4, and "udp6"
means UDP over IPv6.
For rpcbind, then, the RPC service tuple that is registered and
advertised is:
[RPC program, RPC version, service address and port, netid]
instead of
[RPC program, RPC version, port, protocol]
Service address is typically ANYADDR, but can be a specific address
of one of the interfaces on a multi-homed host. The third item in
the new tuple is expressed as a universal address.
The current Linux rpcbind implementation registers a netid for both
protocol families when RPCB_SET is done for just the PF_INET6 version
of the netid (ie udp6 or tcp6). So registering "udp6" causes a
registration for "udp" to appear automatically as well.
We've recently determined that this is incorrect behavior. In the
TI-RPC world, "udp6" is not meant to imply that the registered RPC
service handles requests from AF_INET as well, even if the listener
socket does address mapping. "udp" and "udp6" are entirely separate
capabilities, and must be registered separately.
The Linux kernel, unlike TI-RPC, leverages address mapping to allow a
single listener socket to handle requests for both AF_INET and AF_INET6.
This is still OK, but the kernel currently assumes registering "udp6"
will cover "udp" as well. It registers only "udp6" for it's AF_INET6
services, even though they handle both AF_INET and AF_INET6 on the same
port.
So svc_register() actually needs to register both "udp" and "udp6"
explicitly (and likewise for TCP). Until rpcbind is fixed, the
kernel can ignore the return code for the second RPCB_SET call.
Please merge this with commit 15231312:
SUNRPC: Support IPv6 when registering kernel RPC services
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Cc: Olaf Kirch <okir@suse.de>
---
net/sunrpc/svc.c | 143 ++++++++++++++++++++++++++++++++++++++----------------
1 files changed, 100 insertions(+), 43 deletions(-)
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
index c023cb3..5089014 100644
--- a/net/sunrpc/svc.c
+++ b/net/sunrpc/svc.c
@@ -721,69 +721,125 @@ svc_exit_thread(struct svc_rqst *rqstp)
EXPORT_SYMBOL(svc_exit_thread);
#ifdef CONFIG_SUNRPC_REGISTER_V4
+
/*
- * Registering kernel RPC services with rpcbind version 2 will work
- * over either IPv4 or IPv6, since the Linux kernel always registers
- * services for the "any" address.
- *
- * However, the local rpcbind daemon listens on either only AF_INET
- * or AF_INET6 (never both). When it listens on AF_INET6, an rpcbind
- * version 2 registration will result in registering the service at
- * IN6ADDR_ANY, even if the RPC service being registered is not
- * IPv6-enabled.
+ * Register an "inet" protocol family netid with the local
+ * rpcbind daemon via an rpcbind v4 SET request.
*
- * Rpcbind version 4 allows us to be a little more specific. Kernel
- * RPC services that don't yet support AF_INET6 can register
- * themselves as IPv4-only with the local rpcbind daemon, even if the
- * daemon is listening only on AF_INET6.
+ * No netconfig infrastructure is available in the kernel, so
+ * we map IP_ protocol numbers to netids by hand.
*
- * And, registering IPv6-enabled kernel RPC services via AF_INET6
- * verifies that the local user space rpcbind daemon is properly
- * configured to support remote AF_INET6 rpcbind requests.
- *
- * An AF_INET6 registration request will fail if the local rpcbind
- * daemon is not set up to listen on AF_INET6. Likewise, we fail
- * AF_INET6 registration requests if svc_register() is configured to
- * support only rpcbind version 2.
+ * Returns zero on success; a negative errno value is returned
+ * if any error occurs.
*/
-static int __svc_register(const u32 program, const u32 version,
- const sa_family_t family,
- const unsigned short protocol,
- const unsigned short port)
+static int __svc_rpcb_register4(const u32 program, const u32 version,
+ const unsigned short protocol,
+ const unsigned short port)
{
struct sockaddr_in sin = {
.sin_family = AF_INET,
.sin_addr.s_addr = htonl(INADDR_ANY),
.sin_port = htons(port),
};
+ char *netid;
+
+ switch (protocol) {
+ case IPPROTO_UDP:
+ netid = RPCBIND_NETID_UDP;
+ break;
+ case IPPROTO_TCP:
+ netid = RPCBIND_NETID_TCP;
+ break;
+ default:
+ return -EPROTONOSUPPORT;
+ }
+
+ return rpcb_v4_register(program, version,
+ (struct sockaddr *)&sin, netid);
+}
+
+/*
+ * Register an "inet6" protocol family netid with the local
+ * rpcbind daemon via an rpcbind v4 SET request.
+ *
+ * No netconfig infrastructure is available in the kernel, so
+ * we map IP_ protocol numbers to netids by hand.
+ *
+ * Returns zero on success; a negative errno value is returned
+ * if any error occurs.
+ */
+static int __svc_rpcb_register6(const u32 program, const u32 version,
+ const unsigned short protocol,
+ const unsigned short port)
+{
struct sockaddr_in6 sin6 = {
.sin6_family = AF_INET6,
.sin6_addr = IN6ADDR_ANY_INIT,
.sin6_port = htons(port),
};
- struct sockaddr *sap;
char *netid;
- switch (family) {
- case AF_INET:
- sap = (struct sockaddr *)&sin;
- netid = RPCBIND_NETID_TCP;
- if (protocol == IPPROTO_UDP)
- netid = RPCBIND_NETID_UDP;
+ switch (protocol) {
+ case IPPROTO_UDP:
+ netid = RPCBIND_NETID_UDP6;
break;
- case AF_INET6:
- sap = (struct sockaddr *)&sin6;
+ case IPPROTO_TCP:
netid = RPCBIND_NETID_TCP6;
- if (protocol == IPPROTO_UDP)
- netid = RPCBIND_NETID_UDP6;
break;
default:
- return -EAFNOSUPPORT;
+ return -EPROTONOSUPPORT;
+ }
+
+ return rpcb_v4_register(program, version,
+ (struct sockaddr *)&sin6, netid);
+}
+
+/*
+ * Register a kernel RPC service via rpcbind version 4.
+ *
+ * Returns zero on success; a negative errno value is returned
+ * if any error occurs.
+ */
+static int __svc_register(const u32 program, const u32 version,
+ const sa_family_t family,
+ const unsigned short protocol,
+ const unsigned short port)
+{
+ int error;
+
+ switch (family) {
+ case AF_INET:
+ return __svc_rpcb_register4(program, version,
+ protocol, port);
+ case AF_INET6:
+ error = __svc_rpcb_register6(program, version,
+ protocol, port);
+ if (error < 0)
+ return error;
+
+ /*
+ * Work around bug in some versions of Linux rpcbind
+ * which don't allow registration of both inet and
+ * inet6 netids.
+ *
+ * Error return ignored for now.
+ */
+ __svc_rpcb_register4(program, version,
+ protocol, port);
+ return 0;
}
- return rpcb_v4_register(program, version, sap, netid);
+ return -EAFNOSUPPORT;
}
-#else
+
+#else /* CONFIG_SUNRPC_REGISTER_V4 */
+
+/*
+ * Register a kernel RPC service via rpcbind version 2.
+ *
+ * Returns zero on success; a negative errno value is returned
+ * if any error occurs.
+ */
static int __svc_register(const u32 program, const u32 version,
sa_family_t family,
const unsigned short protocol,
@@ -794,7 +850,8 @@ static int __svc_register(const u32 program, const u32 version,
return rpcb_register(program, version, protocol, port);
}
-#endif
+
+#endif /* CONFIG_SUNRPC_REGISTER_V4 */
/**
* svc_register - register an RPC service with the local portmapper
@@ -818,12 +875,12 @@ int svc_register(const struct svc_serv *serv, const unsigned short proto,
if (progp->pg_vers[i] == NULL)
continue;
- dprintk("svc: svc_register(%s, %u, %s, %u, %d)%s\n",
+ dprintk("svc: svc_register(%sv%d, %s, %u, %u)%s\n",
progp->pg_name,
- serv->sv_family,
+ i,
proto == IPPROTO_UDP? "udp" : "tcp",
port,
- i,
+ serv->sv_family,
progp->pg_vers[i]->vs_hidden?
" (but not telling portmap)" : "");
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] SUNRPC: Use short-hand IPv6 ANYADDR for RPCB_SET
[not found] ` <20080915212437.3939.82594.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
2008-09-15 21:27 ` [PATCH 1/2] SUNRPC: Register both netids for AF_INET6 servers Chuck Lever
@ 2008-09-15 21:27 ` Chuck Lever
[not found] ` <20080915212730.3939.35770.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
1 sibling, 1 reply; 6+ messages in thread
From: Chuck Lever @ 2008-09-15 21:27 UTC (permalink / raw)
To: bfields; +Cc: okir, linux-nfs
Clean up: When doing an RPCB_SET, make the kernel's rpcb client use the
shorthand "::" for the universal form of the IPv6 ANY address.
Without this patch, rpcbind will advertise:
0000:0000:0000:0000:0000:0000:0000:0000.x.y
This is cosmetic only. It cleans up the display of information from
/sbin/rpcinfo.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
net/sunrpc/rpcb_clnt.c | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c
index cc7250d..02164d4 100644
--- a/net/sunrpc/rpcb_clnt.c
+++ b/net/sunrpc/rpcb_clnt.c
@@ -20,6 +20,7 @@
#include <linux/in6.h>
#include <linux/kernel.h>
#include <linux/errno.h>
+#include <net/ipv6.h>
#include <linux/sunrpc/clnt.h>
#include <linux/sunrpc/sched.h>
@@ -304,10 +305,13 @@ static int rpcb_register_netid6(struct sockaddr_in6 *address_to_register,
char buf[64];
/* Construct AF_INET6 universal address */
- snprintf(buf, sizeof(buf),
- NIP6_FMT".%u.%u",
- NIP6(address_to_register->sin6_addr),
- port >> 8, port & 0xff);
+ if (ipv6_addr_any(&address_to_register->sin6_addr))
+ snprintf(buf, sizeof(buf), "::.%u.%u",
+ port >> 8, port & 0xff);
+ else
+ snprintf(buf, sizeof(buf), NIP6_FMT".%u.%u",
+ NIP6(address_to_register->sin6_addr),
+ port >> 8, port & 0xff);
map->r_addr = buf;
dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] SUNRPC: Register both netids for AF_INET6 servers
[not found] ` <20080915212723.3939.23359.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
@ 2008-09-26 21:17 ` J. Bruce Fields
0 siblings, 0 replies; 6+ messages in thread
From: J. Bruce Fields @ 2008-09-26 21:17 UTC (permalink / raw)
To: Chuck Lever; +Cc: okir, linux-nfs
On Mon, Sep 15, 2008 at 04:27:23PM -0500, Chuck Lever wrote:
...
> We've recently determined that this is incorrect behavior. In the
> TI-RPC world, "udp6" is not meant to imply that the registered RPC
> service handles requests from AF_INET as well, even if the listener
> socket does address mapping. "udp" and "udp6" are entirely separate
> capabilities, and must be registered separately.
>
> The Linux kernel, unlike TI-RPC, leverages address mapping to allow a
> single listener socket to handle requests for both AF_INET and AF_INET6.
> This is still OK, but the kernel currently assumes registering "udp6"
> will cover "udp" as well. It registers only "udp6" for it's AF_INET6
> services, even though they handle both AF_INET and AF_INET6 on the same
> port.
>
> So svc_register() actually needs to register both "udp" and "udp6"
> explicitly (and likewise for TCP). Until rpcbind is fixed, the
> kernel can ignore the return code for the second RPCB_SET call.
Looks fine, thanks, applied.
> Please merge this with commit 15231312:
>
> SUNRPC: Support IPv6 when registering kernel RPC services
That was actually a pretty helpful commit message; I'm tempted just to
leave this unmerged and not worry too much about the briefly-existing
bug in this case.
--b.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] SUNRPC: Use short-hand IPv6 ANYADDR for RPCB_SET
[not found] ` <20080915212730.3939.35770.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
@ 2008-09-26 21:20 ` J. Bruce Fields
2008-09-26 21:37 ` Chuck Lever
0 siblings, 1 reply; 6+ messages in thread
From: J. Bruce Fields @ 2008-09-26 21:20 UTC (permalink / raw)
To: Chuck Lever; +Cc: okir, linux-nfs
On Mon, Sep 15, 2008 at 04:27:30PM -0500, Chuck Lever wrote:
> Clean up: When doing an RPCB_SET, make the kernel's rpcb client use the
> shorthand "::" for the universal form of the IPv6 ANY address.
>
> Without this patch, rpcbind will advertise:
>
> 0000:0000:0000:0000:0000:0000:0000:0000.x.y
>
> This is cosmetic only. It cleans up the display of information from
> /sbin/rpcinfo.
Also applied.
> + if (ipv6_addr_any(&address_to_register->sin6_addr))
Nit: I fixed up some initial whitespace. Checkpatch or git apply should
warn about this.
--b.
> + snprintf(buf, sizeof(buf), "::.%u.%u",
> + port >> 8, port & 0xff);
> + else
> + snprintf(buf, sizeof(buf), NIP6_FMT".%u.%u",
> + NIP6(address_to_register->sin6_addr),
> + port >> 8, port & 0xff);
> map->r_addr = buf;
>
> dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] SUNRPC: Use short-hand IPv6 ANYADDR for RPCB_SET
2008-09-26 21:20 ` J. Bruce Fields
@ 2008-09-26 21:37 ` Chuck Lever
0 siblings, 0 replies; 6+ messages in thread
From: Chuck Lever @ 2008-09-26 21:37 UTC (permalink / raw)
To: J. Bruce Fields; +Cc: okir, linux-nfs
On Sep 26, 2008, at Sep 26, 2008, 5:20 PM, J. Bruce Fields wrote:
> On Mon, Sep 15, 2008 at 04:27:30PM -0500, Chuck Lever wrote:
>> Clean up: When doing an RPCB_SET, make the kernel's rpcb client use
>> the
>> shorthand "::" for the universal form of the IPv6 ANY address.
>>
>> Without this patch, rpcbind will advertise:
>>
>> 0000:0000:0000:0000:0000:0000:0000:0000.x.y
>>
>> This is cosmetic only. It cleans up the display of information from
>> /sbin/rpcinfo.
>
> Also applied.
>
>> + if (ipv6_addr_any(&address_to_register->sin6_addr))
>
> Nit: I fixed up some initial whitespace. Checkpatch or git apply
> should
> warn about this.
Checkpatch is my usual weapon of choice, but it's not an automated
part of my workflow. I guess this one got past me.
>
>
> --b.
>
>> + snprintf(buf, sizeof(buf), "::.%u.%u",
>> + port >> 8, port & 0xff);
>> + else
>> + snprintf(buf, sizeof(buf), NIP6_FMT".%u.%u",
>> + NIP6(address_to_register->sin6_addr),
>> + port >> 8, port & 0xff);
>> map->r_addr = buf;
>>
>> dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
>>
--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-09-26 21:38 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-15 21:27 [PATCH 0/2] Fix-ups for 2.6.28 rpcb kernel support Chuck Lever
[not found] ` <20080915212437.3939.82594.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
2008-09-15 21:27 ` [PATCH 1/2] SUNRPC: Register both netids for AF_INET6 servers Chuck Lever
[not found] ` <20080915212723.3939.23359.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
2008-09-26 21:17 ` J. Bruce Fields
2008-09-15 21:27 ` [PATCH 2/2] SUNRPC: Use short-hand IPv6 ANYADDR for RPCB_SET Chuck Lever
[not found] ` <20080915212730.3939.35770.stgit-ewv44WTpT0t9HhUboXbp9zCvJB+x5qRC@public.gmane.org>
2008-09-26 21:20 ` J. Bruce Fields
2008-09-26 21:37 ` Chuck Lever
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox