aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/clnt.c32
1 files changed, 27 insertions, 5 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index e0a5e47a1d4..3af35ab0e99 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -30,6 +30,7 @@
30#include <linux/smp_lock.h> 30#include <linux/smp_lock.h>
31#include <linux/utsname.h> 31#include <linux/utsname.h>
32#include <linux/workqueue.h> 32#include <linux/workqueue.h>
33#include <linux/in6.h>
33 34
34#include <linux/sunrpc/clnt.h> 35#include <linux/sunrpc/clnt.h>
35#include <linux/sunrpc/rpc_pipe_fs.h> 36#include <linux/sunrpc/rpc_pipe_fs.h>
@@ -247,7 +248,7 @@ struct rpc_clnt *rpc_create(struct rpc_create_args *args)
247 .addrlen = args->addrsize, 248 .addrlen = args->addrsize,
248 .timeout = args->timeout 249 .timeout = args->timeout
249 }; 250 };
250 char servername[20]; 251 char servername[48];
251 252
252 xprt = xprt_create_transport(&xprtargs); 253 xprt = xprt_create_transport(&xprtargs);
253 if (IS_ERR(xprt)) 254 if (IS_ERR(xprt))
@@ -258,13 +259,34 @@ struct rpc_clnt *rpc_create(struct rpc_create_args *args)
258 * up a string representation of the passed-in address. 259 * up a string representation of the passed-in address.
259 */ 260 */
260 if (args->servername == NULL) { 261 if (args->servername == NULL) {
261 struct sockaddr_in *addr = 262 servername[0] = '\0';
262 (struct sockaddr_in *) args->address; 263 switch (args->address->sa_family) {
263 snprintf(servername, sizeof(servername), NIPQUAD_FMT, 264 case AF_INET: {
264 NIPQUAD(addr->sin_addr.s_addr)); 265 struct sockaddr_in *sin =
266 (struct sockaddr_in *)args->address;
267 snprintf(servername, sizeof(servername), NIPQUAD_FMT,
268 NIPQUAD(sin->sin_addr.s_addr));
269 break;
270 }
271 case AF_INET6: {
272 struct sockaddr_in6 *sin =
273 (struct sockaddr_in6 *)args->address;
274 snprintf(servername, sizeof(servername), NIP6_FMT,
275 NIP6(sin->sin6_addr));
276 break;
277 }
278 default:
279 /* caller wants default server name, but
280 * address family isn't recognized. */
281 return ERR_PTR(-EINVAL);
282 }
265 args->servername = servername; 283 args->servername = servername;
266 } 284 }
267 285
286 xprt = xprt_create_transport(&xprtargs);
287 if (IS_ERR(xprt))
288 return (struct rpc_clnt *)xprt;
289
268 /* 290 /*
269 * By default, kernel RPC client connects from a reserved port. 291 * By default, kernel RPC client connects from a reserved port.
270 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters, 292 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,