diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2006-08-22 20:06:17 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-09-22 23:24:45 -0400 |
commit | ed39440a2573abc926f230267000f21fa5a87822 (patch) | |
tree | f9b6ba1ce3a7f94fc9d3f4a3e82eea3fdcc965a6 | |
parent | bbf7c1dd2ae2b4040b41b1065ee9b1b6905b1605 (diff) |
SUNRPC: create API for getting remote peer address
Provide an API for retrieving the remote peer address without allowing
direct access to the rpc_xprt struct.
Test-plan:
Compile kernel with CONFIG_NFS enabled.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r-- | include/linux/sunrpc/clnt.h | 1 | ||||
-rw-r--r-- | net/sunrpc/clnt.c | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index 2e68ac0aa022..65196b03f0ab 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h | |||
@@ -123,6 +123,7 @@ void rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int); | |||
123 | size_t rpc_max_payload(struct rpc_clnt *); | 123 | size_t rpc_max_payload(struct rpc_clnt *); |
124 | void rpc_force_rebind(struct rpc_clnt *); | 124 | void rpc_force_rebind(struct rpc_clnt *); |
125 | int rpc_ping(struct rpc_clnt *clnt, int flags); | 125 | int rpc_ping(struct rpc_clnt *clnt, int flags); |
126 | size_t rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t); | ||
126 | 127 | ||
127 | /* | 128 | /* |
128 | * Helper function for NFSroot support | 129 | * Helper function for NFSroot support |
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index d003c2f5688f..94768cf5fd5b 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
@@ -533,6 +533,27 @@ rpc_call_setup(struct rpc_task *task, struct rpc_message *msg, int flags) | |||
533 | task->tk_action = rpc_exit_task; | 533 | task->tk_action = rpc_exit_task; |
534 | } | 534 | } |
535 | 535 | ||
536 | /** | ||
537 | * rpc_peeraddr - extract remote peer address from clnt's xprt | ||
538 | * @clnt: RPC client structure | ||
539 | * @buf: target buffer | ||
540 | * @size: length of target buffer | ||
541 | * | ||
542 | * Returns the number of bytes that are actually in the stored address. | ||
543 | */ | ||
544 | size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize) | ||
545 | { | ||
546 | size_t bytes; | ||
547 | struct rpc_xprt *xprt = clnt->cl_xprt; | ||
548 | |||
549 | bytes = sizeof(xprt->addr); | ||
550 | if (bytes > bufsize) | ||
551 | bytes = bufsize; | ||
552 | memcpy(buf, &clnt->cl_xprt->addr, bytes); | ||
553 | return sizeof(xprt->addr); | ||
554 | } | ||
555 | EXPORT_SYMBOL(rpc_peeraddr); | ||
556 | |||
536 | void | 557 | void |
537 | rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize) | 558 | rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize) |
538 | { | 559 | { |