1 /* client.c: NFS client sharing and management code
3 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/sched.h>
16 #include <linux/time.h>
17 #include <linux/kernel.h>
19 #include <linux/string.h>
20 #include <linux/stat.h>
21 #include <linux/errno.h>
22 #include <linux/unistd.h>
23 #include <linux/sunrpc/clnt.h>
24 #include <linux/sunrpc/stats.h>
25 #include <linux/sunrpc/metrics.h>
26 #include <linux/sunrpc/xprtsock.h>
27 #include <linux/sunrpc/xprtrdma.h>
28 #include <linux/nfs_fs.h>
29 #include <linux/nfs_mount.h>
30 #include <linux/nfs4_mount.h>
31 #include <linux/lockd/bind.h>
32 #include <linux/seq_file.h>
33 #include <linux/mount.h>
34 #include <linux/nfs_idmap.h>
35 #include <linux/vfs.h>
36 #include <linux/inet.h>
37 #include <linux/in6.h>
39 #include <linux/nfs_xdr.h>
40 #include <linux/sunrpc/bc_xprt.h>
42 #include <asm/system.h>
46 #include "delegation.h"
51 #define NFSDBG_FACILITY NFSDBG_CLIENT
53 static DEFINE_SPINLOCK(nfs_client_lock
);
54 static LIST_HEAD(nfs_client_list
);
55 static LIST_HEAD(nfs_volume_list
);
56 static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq
);
61 static struct rpc_version
*nfs_version
[5] = {
71 struct rpc_program nfs_program
= {
73 .number
= NFS_PROGRAM
,
74 .nrvers
= ARRAY_SIZE(nfs_version
),
75 .version
= nfs_version
,
76 .stats
= &nfs_rpcstat
,
77 .pipe_dir_name
= "/nfs",
80 struct rpc_stat nfs_rpcstat
= {
81 .program
= &nfs_program
85 #ifdef CONFIG_NFS_V3_ACL
86 static struct rpc_stat nfsacl_rpcstat
= { &nfsacl_program
};
87 static struct rpc_version
* nfsacl_version
[] = {
88 [3] = &nfsacl_version3
,
91 struct rpc_program nfsacl_program
= {
93 .number
= NFS_ACL_PROGRAM
,
94 .nrvers
= ARRAY_SIZE(nfsacl_version
),
95 .version
= nfsacl_version
,
96 .stats
= &nfsacl_rpcstat
,
98 #endif /* CONFIG_NFS_V3_ACL */
100 struct nfs_client_initdata
{
101 const char *hostname
;
102 const struct sockaddr
*addr
;
104 const struct nfs_rpc_ops
*rpc_ops
;
110 * Allocate a shared client record
112 * Since these are allocated/deallocated very rarely, we don't
113 * bother putting them in a slab cache...
115 static struct nfs_client
*nfs_alloc_client(const struct nfs_client_initdata
*cl_init
)
117 struct nfs_client
*clp
;
118 struct rpc_cred
*cred
;
121 if ((clp
= kzalloc(sizeof(*clp
), GFP_KERNEL
)) == NULL
)
124 clp
->rpc_ops
= cl_init
->rpc_ops
;
126 atomic_set(&clp
->cl_count
, 1);
127 clp
->cl_cons_state
= NFS_CS_INITING
;
129 memcpy(&clp
->cl_addr
, cl_init
->addr
, cl_init
->addrlen
);
130 clp
->cl_addrlen
= cl_init
->addrlen
;
132 if (cl_init
->hostname
) {
134 clp
->cl_hostname
= kstrdup(cl_init
->hostname
, GFP_KERNEL
);
135 if (!clp
->cl_hostname
)
139 INIT_LIST_HEAD(&clp
->cl_superblocks
);
140 clp
->cl_rpcclient
= ERR_PTR(-EINVAL
);
142 clp
->cl_proto
= cl_init
->proto
;
145 INIT_LIST_HEAD(&clp
->cl_delegations
);
146 spin_lock_init(&clp
->cl_lock
);
147 INIT_DELAYED_WORK(&clp
->cl_renewd
, nfs4_renew_state
);
148 rpc_init_wait_queue(&clp
->cl_rpcwaitq
, "NFS client");
149 clp
->cl_boot_time
= CURRENT_TIME
;
150 clp
->cl_state
= 1 << NFS4CLNT_LEASE_EXPIRED
;
151 clp
->cl_minorversion
= cl_init
->minorversion
;
153 cred
= rpc_lookup_machine_cred();
155 clp
->cl_machine_cred
= cred
;
157 nfs_fscache_get_client_cookie(clp
);
167 static void nfs4_shutdown_client(struct nfs_client
*clp
)
170 if (__test_and_clear_bit(NFS_CS_RENEWD
, &clp
->cl_res_state
))
171 nfs4_kill_renewd(clp
);
172 BUG_ON(!RB_EMPTY_ROOT(&clp
->cl_state_owners
));
173 if (__test_and_clear_bit(NFS_CS_IDMAP
, &clp
->cl_res_state
))
174 nfs_idmap_delete(clp
);
176 rpc_destroy_wait_queue(&clp
->cl_rpcwaitq
);
181 * Destroy the NFS4 callback service
183 static void nfs4_destroy_callback(struct nfs_client
*clp
)
186 if (__test_and_clear_bit(NFS_CS_CALLBACK
, &clp
->cl_res_state
))
187 nfs_callback_down(clp
->cl_minorversion
);
188 #endif /* CONFIG_NFS_V4 */
192 * Clears/puts all minor version specific parts from an nfs_client struct
193 * reverting it to minorversion 0.
195 static void nfs4_clear_client_minor_version(struct nfs_client
*clp
)
197 #ifdef CONFIG_NFS_V4_1
198 if (nfs4_has_session(clp
)) {
199 nfs4_destroy_session(clp
->cl_session
);
200 clp
->cl_session
= NULL
;
203 clp
->cl_call_sync
= _nfs4_call_sync
;
204 #endif /* CONFIG_NFS_V4_1 */
206 nfs4_destroy_callback(clp
);
210 * Destroy a shared client record
212 static void nfs_free_client(struct nfs_client
*clp
)
214 dprintk("--> nfs_free_client(%u)\n", clp
->rpc_ops
->version
);
216 nfs4_clear_client_minor_version(clp
);
217 nfs4_shutdown_client(clp
);
219 nfs_fscache_release_client_cookie(clp
);
221 /* -EIO all pending I/O */
222 if (!IS_ERR(clp
->cl_rpcclient
))
223 rpc_shutdown_client(clp
->cl_rpcclient
);
225 if (clp
->cl_machine_cred
!= NULL
)
226 put_rpccred(clp
->cl_machine_cred
);
228 kfree(clp
->cl_hostname
);
231 dprintk("<-- nfs_free_client()\n");
235 * Release a reference to a shared client record
237 void nfs_put_client(struct nfs_client
*clp
)
242 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp
->cl_count
));
244 if (atomic_dec_and_lock(&clp
->cl_count
, &nfs_client_lock
)) {
245 list_del(&clp
->cl_share_link
);
246 spin_unlock(&nfs_client_lock
);
248 BUG_ON(!list_empty(&clp
->cl_superblocks
));
250 nfs_free_client(clp
);
254 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
256 * Test if two ip6 socket addresses refer to the same socket by
257 * comparing relevant fields. The padding bytes specifically, are not
258 * compared. sin6_flowinfo is not compared because it only affects QoS
259 * and sin6_scope_id is only compared if the address is "link local"
260 * because "link local" addresses need only be unique to a specific
261 * link. Conversely, ordinary unicast addresses might have different
264 * The caller should ensure both socket addresses are AF_INET6.
266 static int nfs_sockaddr_match_ipaddr6(const struct sockaddr
*sa1
,
267 const struct sockaddr
*sa2
)
269 const struct sockaddr_in6
*sin1
= (const struct sockaddr_in6
*)sa1
;
270 const struct sockaddr_in6
*sin2
= (const struct sockaddr_in6
*)sa2
;
272 if (ipv6_addr_scope(&sin1
->sin6_addr
) == IPV6_ADDR_SCOPE_LINKLOCAL
&&
273 sin1
->sin6_scope_id
!= sin2
->sin6_scope_id
)
276 return ipv6_addr_equal(&sin1
->sin6_addr
, &sin1
->sin6_addr
);
278 #else /* !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE) */
279 static int nfs_sockaddr_match_ipaddr6(const struct sockaddr
*sa1
,
280 const struct sockaddr
*sa2
)
287 * Test if two ip4 socket addresses refer to the same socket, by
288 * comparing relevant fields. The padding bytes specifically, are
291 * The caller should ensure both socket addresses are AF_INET.
293 static int nfs_sockaddr_match_ipaddr4(const struct sockaddr
*sa1
,
294 const struct sockaddr
*sa2
)
296 const struct sockaddr_in
*sin1
= (const struct sockaddr_in
*)sa1
;
297 const struct sockaddr_in
*sin2
= (const struct sockaddr_in
*)sa2
;
299 return sin1
->sin_addr
.s_addr
== sin2
->sin_addr
.s_addr
;
302 static int nfs_sockaddr_cmp_ip6(const struct sockaddr
*sa1
,
303 const struct sockaddr
*sa2
)
305 const struct sockaddr_in6
*sin1
= (const struct sockaddr_in6
*)sa1
;
306 const struct sockaddr_in6
*sin2
= (const struct sockaddr_in6
*)sa2
;
308 return nfs_sockaddr_match_ipaddr6(sa1
, sa2
) &&
309 (sin1
->sin6_port
== sin2
->sin6_port
);
312 static int nfs_sockaddr_cmp_ip4(const struct sockaddr
*sa1
,
313 const struct sockaddr
*sa2
)
315 const struct sockaddr_in
*sin1
= (const struct sockaddr_in
*)sa1
;
316 const struct sockaddr_in
*sin2
= (const struct sockaddr_in
*)sa2
;
318 return nfs_sockaddr_match_ipaddr4(sa1
, sa2
) &&
319 (sin1
->sin_port
== sin2
->sin_port
);
323 * Test if two socket addresses represent the same actual socket,
324 * by comparing (only) relevant fields, excluding the port number.
326 static int nfs_sockaddr_match_ipaddr(const struct sockaddr
*sa1
,
327 const struct sockaddr
*sa2
)
329 if (sa1
->sa_family
!= sa2
->sa_family
)
332 switch (sa1
->sa_family
) {
334 return nfs_sockaddr_match_ipaddr4(sa1
, sa2
);
336 return nfs_sockaddr_match_ipaddr6(sa1
, sa2
);
342 * Test if two socket addresses represent the same actual socket,
343 * by comparing (only) relevant fields, including the port number.
345 static int nfs_sockaddr_cmp(const struct sockaddr
*sa1
,
346 const struct sockaddr
*sa2
)
348 if (sa1
->sa_family
!= sa2
->sa_family
)
351 switch (sa1
->sa_family
) {
353 return nfs_sockaddr_cmp_ip4(sa1
, sa2
);
355 return nfs_sockaddr_cmp_ip6(sa1
, sa2
);
361 * Find a client by IP address and protocol version
362 * - returns NULL if no such client
364 struct nfs_client
*nfs_find_client(const struct sockaddr
*addr
, u32 nfsversion
)
366 struct nfs_client
*clp
;
368 spin_lock(&nfs_client_lock
);
369 list_for_each_entry(clp
, &nfs_client_list
, cl_share_link
) {
370 struct sockaddr
*clap
= (struct sockaddr
*)&clp
->cl_addr
;
372 /* Don't match clients that failed to initialise properly */
373 if (!(clp
->cl_cons_state
== NFS_CS_READY
||
374 clp
->cl_cons_state
== NFS_CS_SESSION_INITING
))
377 /* Different NFS versions cannot share the same nfs_client */
378 if (clp
->rpc_ops
->version
!= nfsversion
)
381 /* Match only the IP address, not the port number */
382 if (!nfs_sockaddr_match_ipaddr(addr
, clap
))
385 atomic_inc(&clp
->cl_count
);
386 spin_unlock(&nfs_client_lock
);
389 spin_unlock(&nfs_client_lock
);
394 * Find a client by IP address and protocol version
395 * - returns NULL if no such client
397 struct nfs_client
*nfs_find_client_next(struct nfs_client
*clp
)
399 struct sockaddr
*sap
= (struct sockaddr
*)&clp
->cl_addr
;
400 u32 nfsvers
= clp
->rpc_ops
->version
;
402 spin_lock(&nfs_client_lock
);
403 list_for_each_entry_continue(clp
, &nfs_client_list
, cl_share_link
) {
404 struct sockaddr
*clap
= (struct sockaddr
*)&clp
->cl_addr
;
406 /* Don't match clients that failed to initialise properly */
407 if (clp
->cl_cons_state
!= NFS_CS_READY
)
410 /* Different NFS versions cannot share the same nfs_client */
411 if (clp
->rpc_ops
->version
!= nfsvers
)
414 /* Match only the IP address, not the port number */
415 if (!nfs_sockaddr_match_ipaddr(sap
, clap
))
418 atomic_inc(&clp
->cl_count
);
419 spin_unlock(&nfs_client_lock
);
422 spin_unlock(&nfs_client_lock
);
427 * Find an nfs_client on the list that matches the initialisation data
430 static struct nfs_client
*nfs_match_client(const struct nfs_client_initdata
*data
)
432 struct nfs_client
*clp
;
433 const struct sockaddr
*sap
= data
->addr
;
435 list_for_each_entry(clp
, &nfs_client_list
, cl_share_link
) {
436 const struct sockaddr
*clap
= (struct sockaddr
*)&clp
->cl_addr
;
437 /* Don't match clients that failed to initialise properly */
438 if (clp
->cl_cons_state
< 0)
441 /* Different NFS versions cannot share the same nfs_client */
442 if (clp
->rpc_ops
!= data
->rpc_ops
)
445 if (clp
->cl_proto
!= data
->proto
)
447 /* Match nfsv4 minorversion */
448 if (clp
->cl_minorversion
!= data
->minorversion
)
450 /* Match the full socket address */
451 if (!nfs_sockaddr_cmp(sap
, clap
))
454 atomic_inc(&clp
->cl_count
);
461 * Look up a client by IP address and protocol version
462 * - creates a new record if one doesn't yet exist
464 static struct nfs_client
*nfs_get_client(const struct nfs_client_initdata
*cl_init
)
466 struct nfs_client
*clp
, *new = NULL
;
469 dprintk("--> nfs_get_client(%s,v%u)\n",
470 cl_init
->hostname
?: "", cl_init
->rpc_ops
->version
);
472 /* see if the client already exists */
474 spin_lock(&nfs_client_lock
);
476 clp
= nfs_match_client(cl_init
);
482 spin_unlock(&nfs_client_lock
);
484 new = nfs_alloc_client(cl_init
);
485 } while (!IS_ERR(new));
487 dprintk("--> nfs_get_client() = %ld [failed]\n", PTR_ERR(new));
490 /* install a new client and return with it unready */
493 list_add(&clp
->cl_share_link
, &nfs_client_list
);
494 spin_unlock(&nfs_client_lock
);
495 dprintk("--> nfs_get_client() = %p [new]\n", clp
);
498 /* found an existing client
499 * - make sure it's ready before returning
502 spin_unlock(&nfs_client_lock
);
505 nfs_free_client(new);
507 error
= wait_event_killable(nfs_client_active_wq
,
508 clp
->cl_cons_state
< NFS_CS_INITING
);
511 return ERR_PTR(-ERESTARTSYS
);
514 if (clp
->cl_cons_state
< NFS_CS_READY
) {
515 error
= clp
->cl_cons_state
;
517 return ERR_PTR(error
);
520 BUG_ON(clp
->cl_cons_state
!= NFS_CS_READY
);
522 dprintk("--> nfs_get_client() = %p [share]\n", clp
);
527 * Mark a server as ready or failed
529 void nfs_mark_client_ready(struct nfs_client
*clp
, int state
)
531 clp
->cl_cons_state
= state
;
532 wake_up_all(&nfs_client_active_wq
);
536 * With sessions, the client is not marked ready until after a
537 * successful EXCHANGE_ID and CREATE_SESSION.
539 * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate
540 * other versions of NFS can be tried.
542 int nfs4_check_client_ready(struct nfs_client
*clp
)
544 if (!nfs4_has_session(clp
))
546 if (clp
->cl_cons_state
< NFS_CS_READY
)
547 return -EPROTONOSUPPORT
;
552 * Initialise the timeout values for a connection
554 static void nfs_init_timeout_values(struct rpc_timeout
*to
, int proto
,
555 unsigned int timeo
, unsigned int retrans
)
557 to
->to_initval
= timeo
* HZ
/ 10;
558 to
->to_retries
= retrans
;
561 case XPRT_TRANSPORT_TCP
:
562 case XPRT_TRANSPORT_RDMA
:
563 if (to
->to_retries
== 0)
564 to
->to_retries
= NFS_DEF_TCP_RETRANS
;
565 if (to
->to_initval
== 0)
566 to
->to_initval
= NFS_DEF_TCP_TIMEO
* HZ
/ 10;
567 if (to
->to_initval
> NFS_MAX_TCP_TIMEOUT
)
568 to
->to_initval
= NFS_MAX_TCP_TIMEOUT
;
569 to
->to_increment
= to
->to_initval
;
570 to
->to_maxval
= to
->to_initval
+ (to
->to_increment
* to
->to_retries
);
571 if (to
->to_maxval
> NFS_MAX_TCP_TIMEOUT
)
572 to
->to_maxval
= NFS_MAX_TCP_TIMEOUT
;
573 if (to
->to_maxval
< to
->to_initval
)
574 to
->to_maxval
= to
->to_initval
;
575 to
->to_exponential
= 0;
577 case XPRT_TRANSPORT_UDP
:
578 if (to
->to_retries
== 0)
579 to
->to_retries
= NFS_DEF_UDP_RETRANS
;
581 to
->to_initval
= NFS_DEF_UDP_TIMEO
* HZ
/ 10;
582 if (to
->to_initval
> NFS_MAX_UDP_TIMEOUT
)
583 to
->to_initval
= NFS_MAX_UDP_TIMEOUT
;
584 to
->to_maxval
= NFS_MAX_UDP_TIMEOUT
;
585 to
->to_exponential
= 1;
593 * Create an RPC client handle
595 static int nfs_create_rpc_client(struct nfs_client
*clp
,
596 const struct rpc_timeout
*timeparms
,
597 rpc_authflavor_t flavor
,
598 int discrtry
, int noresvport
)
600 struct rpc_clnt
*clnt
= NULL
;
601 struct rpc_create_args args
= {
602 .protocol
= clp
->cl_proto
,
603 .address
= (struct sockaddr
*)&clp
->cl_addr
,
604 .addrsize
= clp
->cl_addrlen
,
605 .timeout
= timeparms
,
606 .servername
= clp
->cl_hostname
,
607 .program
= &nfs_program
,
608 .version
= clp
->rpc_ops
->version
,
609 .authflavor
= flavor
,
613 args
.flags
|= RPC_CLNT_CREATE_DISCRTRY
;
615 args
.flags
|= RPC_CLNT_CREATE_NONPRIVPORT
;
617 if (!IS_ERR(clp
->cl_rpcclient
))
620 clnt
= rpc_create(&args
);
622 dprintk("%s: cannot create RPC client. Error = %ld\n",
623 __func__
, PTR_ERR(clnt
));
624 return PTR_ERR(clnt
);
627 clp
->cl_rpcclient
= clnt
;
632 * Version 2 or 3 client destruction
634 static void nfs_destroy_server(struct nfs_server
*server
)
636 if (!(server
->flags
& NFS_MOUNT_NONLM
))
637 nlmclnt_done(server
->nlm_host
);
641 * Version 2 or 3 lockd setup
643 static int nfs_start_lockd(struct nfs_server
*server
)
645 struct nlm_host
*host
;
646 struct nfs_client
*clp
= server
->nfs_client
;
647 struct nlmclnt_initdata nlm_init
= {
648 .hostname
= clp
->cl_hostname
,
649 .address
= (struct sockaddr
*)&clp
->cl_addr
,
650 .addrlen
= clp
->cl_addrlen
,
651 .protocol
= server
->flags
& NFS_MOUNT_TCP
?
652 IPPROTO_TCP
: IPPROTO_UDP
,
653 .nfs_version
= clp
->rpc_ops
->version
,
654 .noresvport
= server
->flags
& NFS_MOUNT_NORESVPORT
?
658 if (nlm_init
.nfs_version
> 3)
660 if (server
->flags
& NFS_MOUNT_NONLM
)
663 host
= nlmclnt_init(&nlm_init
);
665 return PTR_ERR(host
);
667 server
->nlm_host
= host
;
668 server
->destroy
= nfs_destroy_server
;
673 * Initialise an NFSv3 ACL client connection
675 #ifdef CONFIG_NFS_V3_ACL
676 static void nfs_init_server_aclclient(struct nfs_server
*server
)
678 if (server
->nfs_client
->rpc_ops
->version
!= 3)
680 if (server
->flags
& NFS_MOUNT_NOACL
)
683 server
->client_acl
= rpc_bind_new_program(server
->client
, &nfsacl_program
, 3);
684 if (IS_ERR(server
->client_acl
))
687 /* No errors! Assume that Sun nfsacls are supported */
688 server
->caps
|= NFS_CAP_ACLS
;
692 server
->caps
&= ~NFS_CAP_ACLS
;
695 static inline void nfs_init_server_aclclient(struct nfs_server
*server
)
697 server
->flags
&= ~NFS_MOUNT_NOACL
;
698 server
->caps
&= ~NFS_CAP_ACLS
;
703 * Create a general RPC client
705 static int nfs_init_server_rpcclient(struct nfs_server
*server
,
706 const struct rpc_timeout
*timeo
,
707 rpc_authflavor_t pseudoflavour
)
709 struct nfs_client
*clp
= server
->nfs_client
;
711 server
->client
= rpc_clone_client(clp
->cl_rpcclient
);
712 if (IS_ERR(server
->client
)) {
713 dprintk("%s: couldn't create rpc_client!\n", __func__
);
714 return PTR_ERR(server
->client
);
717 memcpy(&server
->client
->cl_timeout_default
,
719 sizeof(server
->client
->cl_timeout_default
));
720 server
->client
->cl_timeout
= &server
->client
->cl_timeout_default
;
722 if (pseudoflavour
!= clp
->cl_rpcclient
->cl_auth
->au_flavor
) {
723 struct rpc_auth
*auth
;
725 auth
= rpcauth_create(pseudoflavour
, server
->client
);
727 dprintk("%s: couldn't create credcache!\n", __func__
);
728 return PTR_ERR(auth
);
731 server
->client
->cl_softrtry
= 0;
732 if (server
->flags
& NFS_MOUNT_SOFT
)
733 server
->client
->cl_softrtry
= 1;
739 * Initialise an NFS2 or NFS3 client
741 static int nfs_init_client(struct nfs_client
*clp
,
742 const struct rpc_timeout
*timeparms
,
743 const struct nfs_parsed_mount_data
*data
)
747 if (clp
->cl_cons_state
== NFS_CS_READY
) {
748 /* the client is already initialised */
749 dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp
);
754 * Create a client RPC handle for doing FSSTAT with UNIX auth only
755 * - RFC 2623, sec 2.3.2
757 error
= nfs_create_rpc_client(clp
, timeparms
, RPC_AUTH_UNIX
,
758 0, data
->flags
& NFS_MOUNT_NORESVPORT
);
761 nfs_mark_client_ready(clp
, NFS_CS_READY
);
765 nfs_mark_client_ready(clp
, error
);
766 dprintk("<-- nfs_init_client() = xerror %d\n", error
);
771 * Create a version 2 or 3 client
773 static int nfs_init_server(struct nfs_server
*server
,
774 const struct nfs_parsed_mount_data
*data
)
776 struct nfs_client_initdata cl_init
= {
777 .hostname
= data
->nfs_server
.hostname
,
778 .addr
= (const struct sockaddr
*)&data
->nfs_server
.address
,
779 .addrlen
= data
->nfs_server
.addrlen
,
780 .rpc_ops
= &nfs_v2_clientops
,
781 .proto
= data
->nfs_server
.protocol
,
783 struct rpc_timeout timeparms
;
784 struct nfs_client
*clp
;
787 dprintk("--> nfs_init_server()\n");
790 if (data
->flags
& NFS_MOUNT_VER3
)
791 cl_init
.rpc_ops
= &nfs_v3_clientops
;
794 /* Allocate or find a client reference we can use */
795 clp
= nfs_get_client(&cl_init
);
797 dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp
));
801 nfs_init_timeout_values(&timeparms
, data
->nfs_server
.protocol
,
802 data
->timeo
, data
->retrans
);
803 error
= nfs_init_client(clp
, &timeparms
, data
);
807 server
->nfs_client
= clp
;
809 /* Initialise the client representation from the mount data */
810 server
->flags
= data
->flags
;
811 server
->options
= data
->options
;
812 server
->caps
|= NFS_CAP_HARDLINKS
|NFS_CAP_SYMLINKS
|NFS_CAP_FILEID
|
813 NFS_CAP_MODE
|NFS_CAP_NLINK
|NFS_CAP_OWNER
|NFS_CAP_OWNER_GROUP
|
814 NFS_CAP_ATIME
|NFS_CAP_CTIME
|NFS_CAP_MTIME
;
817 server
->rsize
= nfs_block_size(data
->rsize
, NULL
);
819 server
->wsize
= nfs_block_size(data
->wsize
, NULL
);
821 server
->acregmin
= data
->acregmin
* HZ
;
822 server
->acregmax
= data
->acregmax
* HZ
;
823 server
->acdirmin
= data
->acdirmin
* HZ
;
824 server
->acdirmax
= data
->acdirmax
* HZ
;
826 /* Start lockd here, before we might error out */
827 error
= nfs_start_lockd(server
);
831 server
->port
= data
->nfs_server
.port
;
833 error
= nfs_init_server_rpcclient(server
, &timeparms
, data
->auth_flavors
[0]);
837 /* Preserve the values of mount_server-related mount options */
838 if (data
->mount_server
.addrlen
) {
839 memcpy(&server
->mountd_address
, &data
->mount_server
.address
,
840 data
->mount_server
.addrlen
);
841 server
->mountd_addrlen
= data
->mount_server
.addrlen
;
843 server
->mountd_version
= data
->mount_server
.version
;
844 server
->mountd_port
= data
->mount_server
.port
;
845 server
->mountd_protocol
= data
->mount_server
.protocol
;
847 server
->namelen
= data
->namlen
;
848 /* Create a client RPC handle for the NFSv3 ACL management interface */
849 nfs_init_server_aclclient(server
);
850 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp
);
854 server
->nfs_client
= NULL
;
856 dprintk("<-- nfs_init_server() = xerror %d\n", error
);
861 * Load up the server record from information gained in an fsinfo record
863 static void nfs_server_set_fsinfo(struct nfs_server
*server
, struct nfs_fsinfo
*fsinfo
)
865 unsigned long max_rpc_payload
;
867 /* Work out a lot of parameters */
868 if (server
->rsize
== 0)
869 server
->rsize
= nfs_block_size(fsinfo
->rtpref
, NULL
);
870 if (server
->wsize
== 0)
871 server
->wsize
= nfs_block_size(fsinfo
->wtpref
, NULL
);
873 if (fsinfo
->rtmax
>= 512 && server
->rsize
> fsinfo
->rtmax
)
874 server
->rsize
= nfs_block_size(fsinfo
->rtmax
, NULL
);
875 if (fsinfo
->wtmax
>= 512 && server
->wsize
> fsinfo
->wtmax
)
876 server
->wsize
= nfs_block_size(fsinfo
->wtmax
, NULL
);
878 max_rpc_payload
= nfs_block_size(rpc_max_payload(server
->client
), NULL
);
879 if (server
->rsize
> max_rpc_payload
)
880 server
->rsize
= max_rpc_payload
;
881 if (server
->rsize
> NFS_MAX_FILE_IO_SIZE
)
882 server
->rsize
= NFS_MAX_FILE_IO_SIZE
;
883 server
->rpages
= (server
->rsize
+ PAGE_CACHE_SIZE
- 1) >> PAGE_CACHE_SHIFT
;
885 server
->backing_dev_info
.name
= "nfs";
886 server
->backing_dev_info
.ra_pages
= server
->rpages
* NFS_MAX_READAHEAD
;
888 if (server
->wsize
> max_rpc_payload
)
889 server
->wsize
= max_rpc_payload
;
890 if (server
->wsize
> NFS_MAX_FILE_IO_SIZE
)
891 server
->wsize
= NFS_MAX_FILE_IO_SIZE
;
892 server
->wpages
= (server
->wsize
+ PAGE_CACHE_SIZE
- 1) >> PAGE_CACHE_SHIFT
;
893 server
->wtmult
= nfs_block_bits(fsinfo
->wtmult
, NULL
);
895 server
->dtsize
= nfs_block_size(fsinfo
->dtpref
, NULL
);
896 if (server
->dtsize
> PAGE_CACHE_SIZE
)
897 server
->dtsize
= PAGE_CACHE_SIZE
;
898 if (server
->dtsize
> server
->rsize
)
899 server
->dtsize
= server
->rsize
;
901 if (server
->flags
& NFS_MOUNT_NOAC
) {
902 server
->acregmin
= server
->acregmax
= 0;
903 server
->acdirmin
= server
->acdirmax
= 0;
906 server
->maxfilesize
= fsinfo
->maxfilesize
;
908 /* We're airborne Set socket buffersize */
909 rpc_setbufsize(server
->client
, server
->wsize
+ 100, server
->rsize
+ 100);
913 * Probe filesystem information, including the FSID on v2/v3
915 static int nfs_probe_fsinfo(struct nfs_server
*server
, struct nfs_fh
*mntfh
, struct nfs_fattr
*fattr
)
917 struct nfs_fsinfo fsinfo
;
918 struct nfs_client
*clp
= server
->nfs_client
;
921 dprintk("--> nfs_probe_fsinfo()\n");
923 if (clp
->rpc_ops
->set_capabilities
!= NULL
) {
924 error
= clp
->rpc_ops
->set_capabilities(server
, mntfh
);
929 fsinfo
.fattr
= fattr
;
930 nfs_fattr_init(fattr
);
931 error
= clp
->rpc_ops
->fsinfo(server
, mntfh
, &fsinfo
);
935 nfs_server_set_fsinfo(server
, &fsinfo
);
936 error
= bdi_init(&server
->backing_dev_info
);
941 /* Get some general file system info */
942 if (server
->namelen
== 0) {
943 struct nfs_pathconf pathinfo
;
945 pathinfo
.fattr
= fattr
;
946 nfs_fattr_init(fattr
);
948 if (clp
->rpc_ops
->pathconf(server
, mntfh
, &pathinfo
) >= 0)
949 server
->namelen
= pathinfo
.max_namelen
;
952 dprintk("<-- nfs_probe_fsinfo() = 0\n");
956 dprintk("nfs_probe_fsinfo: error = %d\n", -error
);
961 * Copy useful information when duplicating a server record
963 static void nfs_server_copy_userdata(struct nfs_server
*target
, struct nfs_server
*source
)
965 target
->flags
= source
->flags
;
966 target
->acregmin
= source
->acregmin
;
967 target
->acregmax
= source
->acregmax
;
968 target
->acdirmin
= source
->acdirmin
;
969 target
->acdirmax
= source
->acdirmax
;
970 target
->caps
= source
->caps
;
974 * Allocate and initialise a server record
976 static struct nfs_server
*nfs_alloc_server(void)
978 struct nfs_server
*server
;
980 server
= kzalloc(sizeof(struct nfs_server
), GFP_KERNEL
);
984 server
->client
= server
->client_acl
= ERR_PTR(-EINVAL
);
986 /* Zero out the NFS state stuff */
987 INIT_LIST_HEAD(&server
->client_link
);
988 INIT_LIST_HEAD(&server
->master_link
);
990 atomic_set(&server
->active
, 0);
992 server
->io_stats
= nfs_alloc_iostats();
993 if (!server
->io_stats
) {
1002 * Free up a server record
1004 void nfs_free_server(struct nfs_server
*server
)
1006 dprintk("--> nfs_free_server()\n");
1008 spin_lock(&nfs_client_lock
);
1009 list_del(&server
->client_link
);
1010 list_del(&server
->master_link
);
1011 spin_unlock(&nfs_client_lock
);
1013 if (server
->destroy
!= NULL
)
1014 server
->destroy(server
);
1016 if (!IS_ERR(server
->client_acl
))
1017 rpc_shutdown_client(server
->client_acl
);
1018 if (!IS_ERR(server
->client
))
1019 rpc_shutdown_client(server
->client
);
1021 nfs_put_client(server
->nfs_client
);
1023 nfs_free_iostats(server
->io_stats
);
1024 bdi_destroy(&server
->backing_dev_info
);
1026 nfs_release_automount_timer();
1027 dprintk("<-- nfs_free_server()\n");
1031 * Create a version 2 or 3 volume record
1032 * - keyed on server and FSID
1034 struct nfs_server
*nfs_create_server(const struct nfs_parsed_mount_data
*data
,
1035 struct nfs_fh
*mntfh
)
1037 struct nfs_server
*server
;
1038 struct nfs_fattr fattr
;
1041 server
= nfs_alloc_server();
1043 return ERR_PTR(-ENOMEM
);
1045 /* Get a client representation */
1046 error
= nfs_init_server(server
, data
);
1050 BUG_ON(!server
->nfs_client
);
1051 BUG_ON(!server
->nfs_client
->rpc_ops
);
1052 BUG_ON(!server
->nfs_client
->rpc_ops
->file_inode_ops
);
1054 /* Probe the root fh to retrieve its FSID */
1055 error
= nfs_probe_fsinfo(server
, mntfh
, &fattr
);
1058 if (server
->nfs_client
->rpc_ops
->version
== 3) {
1059 if (server
->namelen
== 0 || server
->namelen
> NFS3_MAXNAMLEN
)
1060 server
->namelen
= NFS3_MAXNAMLEN
;
1061 if (!(data
->flags
& NFS_MOUNT_NORDIRPLUS
))
1062 server
->caps
|= NFS_CAP_READDIRPLUS
;
1064 if (server
->namelen
== 0 || server
->namelen
> NFS2_MAXNAMLEN
)
1065 server
->namelen
= NFS2_MAXNAMLEN
;
1068 if (!(fattr
.valid
& NFS_ATTR_FATTR
)) {
1069 error
= server
->nfs_client
->rpc_ops
->getattr(server
, mntfh
, &fattr
);
1071 dprintk("nfs_create_server: getattr error = %d\n", -error
);
1075 memcpy(&server
->fsid
, &fattr
.fsid
, sizeof(server
->fsid
));
1077 dprintk("Server FSID: %llx:%llx\n",
1078 (unsigned long long) server
->fsid
.major
,
1079 (unsigned long long) server
->fsid
.minor
);
1081 spin_lock(&nfs_client_lock
);
1082 list_add_tail(&server
->client_link
, &server
->nfs_client
->cl_superblocks
);
1083 list_add_tail(&server
->master_link
, &nfs_volume_list
);
1084 spin_unlock(&nfs_client_lock
);
1086 server
->mount_time
= jiffies
;
1090 nfs_free_server(server
);
1091 return ERR_PTR(error
);
1094 #ifdef CONFIG_NFS_V4
1096 * Initialize the NFS4 callback service
1098 static int nfs4_init_callback(struct nfs_client
*clp
)
1102 if (clp
->rpc_ops
->version
== 4) {
1103 if (nfs4_has_session(clp
)) {
1104 error
= xprt_setup_backchannel(
1105 clp
->cl_rpcclient
->cl_xprt
,
1106 NFS41_BC_MIN_CALLBACKS
);
1111 error
= nfs_callback_up(clp
->cl_minorversion
,
1112 clp
->cl_rpcclient
->cl_xprt
);
1114 dprintk("%s: failed to start callback. Error = %d\n",
1118 __set_bit(NFS_CS_CALLBACK
, &clp
->cl_res_state
);
1124 * Initialize the minor version specific parts of an NFS4 client record
1126 static int nfs4_init_client_minor_version(struct nfs_client
*clp
)
1128 clp
->cl_call_sync
= _nfs4_call_sync
;
1130 #if defined(CONFIG_NFS_V4_1)
1131 if (clp
->cl_minorversion
) {
1132 struct nfs4_session
*session
= NULL
;
1134 * Create the session and mark it expired.
1135 * When a SEQUENCE operation encounters the expired session
1136 * it will do session recovery to initialize it.
1138 session
= nfs4_alloc_session(clp
);
1142 clp
->cl_session
= session
;
1143 clp
->cl_call_sync
= _nfs4_call_sync_session
;
1145 #endif /* CONFIG_NFS_V4_1 */
1147 return nfs4_init_callback(clp
);
1151 * Initialise an NFS4 client record
1153 static int nfs4_init_client(struct nfs_client
*clp
,
1154 const struct rpc_timeout
*timeparms
,
1155 const char *ip_addr
,
1156 rpc_authflavor_t authflavour
,
1161 if (clp
->cl_cons_state
== NFS_CS_READY
) {
1162 /* the client is initialised already */
1163 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp
);
1167 /* Check NFS protocol revision and initialize RPC op vector */
1168 clp
->rpc_ops
= &nfs_v4_clientops
;
1170 error
= nfs_create_rpc_client(clp
, timeparms
, authflavour
,
1171 1, flags
& NFS_MOUNT_NORESVPORT
);
1174 memcpy(clp
->cl_ipaddr
, ip_addr
, sizeof(clp
->cl_ipaddr
));
1176 error
= nfs_idmap_new(clp
);
1178 dprintk("%s: failed to create idmapper. Error = %d\n",
1182 __set_bit(NFS_CS_IDMAP
, &clp
->cl_res_state
);
1184 error
= nfs4_init_client_minor_version(clp
);
1188 if (!nfs4_has_session(clp
))
1189 nfs_mark_client_ready(clp
, NFS_CS_READY
);
1193 nfs_mark_client_ready(clp
, error
);
1194 dprintk("<-- nfs4_init_client() = xerror %d\n", error
);
1199 * Set up an NFS4 client
1201 static int nfs4_set_client(struct nfs_server
*server
,
1202 const char *hostname
,
1203 const struct sockaddr
*addr
,
1204 const size_t addrlen
,
1205 const char *ip_addr
,
1206 rpc_authflavor_t authflavour
,
1207 int proto
, const struct rpc_timeout
*timeparms
,
1210 struct nfs_client_initdata cl_init
= {
1211 .hostname
= hostname
,
1214 .rpc_ops
= &nfs_v4_clientops
,
1216 .minorversion
= minorversion
,
1218 struct nfs_client
*clp
;
1221 dprintk("--> nfs4_set_client()\n");
1223 /* Allocate or find a client reference we can use */
1224 clp
= nfs_get_client(&cl_init
);
1226 error
= PTR_ERR(clp
);
1229 error
= nfs4_init_client(clp
, timeparms
, ip_addr
, authflavour
,
1234 server
->nfs_client
= clp
;
1235 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp
);
1239 nfs_put_client(clp
);
1241 dprintk("<-- nfs4_set_client() = xerror %d\n", error
);
1247 * Session has been established, and the client marked ready.
1248 * Set the mount rsize and wsize with negotiated fore channel
1249 * attributes which will be bound checked in nfs_server_set_fsinfo.
1251 static void nfs4_session_set_rwsize(struct nfs_server
*server
)
1253 #ifdef CONFIG_NFS_V4_1
1254 if (!nfs4_has_session(server
->nfs_client
))
1256 server
->rsize
= server
->nfs_client
->cl_session
->fc_attrs
.max_resp_sz
;
1257 server
->wsize
= server
->nfs_client
->cl_session
->fc_attrs
.max_rqst_sz
;
1258 #endif /* CONFIG_NFS_V4_1 */
1262 * Create a version 4 volume record
1264 static int nfs4_init_server(struct nfs_server
*server
,
1265 const struct nfs_parsed_mount_data
*data
)
1267 struct rpc_timeout timeparms
;
1270 dprintk("--> nfs4_init_server()\n");
1272 nfs_init_timeout_values(&timeparms
, data
->nfs_server
.protocol
,
1273 data
->timeo
, data
->retrans
);
1275 /* Initialise the client representation from the mount data */
1276 server
->flags
= data
->flags
;
1277 server
->caps
|= NFS_CAP_ATOMIC_OPEN
|NFS_CAP_CHANGE_ATTR
;
1278 server
->options
= data
->options
;
1280 /* Get a client record */
1281 error
= nfs4_set_client(server
,
1282 data
->nfs_server
.hostname
,
1283 (const struct sockaddr
*)&data
->nfs_server
.address
,
1284 data
->nfs_server
.addrlen
,
1285 data
->client_address
,
1286 data
->auth_flavors
[0],
1287 data
->nfs_server
.protocol
,
1289 data
->minorversion
);
1294 server
->rsize
= nfs_block_size(data
->rsize
, NULL
);
1296 server
->wsize
= nfs_block_size(data
->wsize
, NULL
);
1298 server
->acregmin
= data
->acregmin
* HZ
;
1299 server
->acregmax
= data
->acregmax
* HZ
;
1300 server
->acdirmin
= data
->acdirmin
* HZ
;
1301 server
->acdirmax
= data
->acdirmax
* HZ
;
1303 server
->port
= data
->nfs_server
.port
;
1305 error
= nfs_init_server_rpcclient(server
, &timeparms
, data
->auth_flavors
[0]);
1309 dprintk("<-- nfs4_init_server() = %d\n", error
);
1314 * Create a version 4 volume record
1315 * - keyed on server and FSID
1317 struct nfs_server
*nfs4_create_server(const struct nfs_parsed_mount_data
*data
,
1318 struct nfs_fh
*mntfh
)
1320 struct nfs_fattr fattr
;
1321 struct nfs_server
*server
;
1324 dprintk("--> nfs4_create_server()\n");
1326 server
= nfs_alloc_server();
1328 return ERR_PTR(-ENOMEM
);
1330 /* set up the general RPC client */
1331 error
= nfs4_init_server(server
, data
);
1335 BUG_ON(!server
->nfs_client
);
1336 BUG_ON(!server
->nfs_client
->rpc_ops
);
1337 BUG_ON(!server
->nfs_client
->rpc_ops
->file_inode_ops
);
1339 error
= nfs4_init_session(server
);
1343 /* Probe the root fh to retrieve its FSID */
1344 error
= nfs4_path_walk(server
, mntfh
, data
->nfs_server
.export_path
);
1348 dprintk("Server FSID: %llx:%llx\n",
1349 (unsigned long long) server
->fsid
.major
,
1350 (unsigned long long) server
->fsid
.minor
);
1351 dprintk("Mount FH: %d\n", mntfh
->size
);
1353 nfs4_session_set_rwsize(server
);
1355 error
= nfs_probe_fsinfo(server
, mntfh
, &fattr
);
1359 if (server
->namelen
== 0 || server
->namelen
> NFS4_MAXNAMLEN
)
1360 server
->namelen
= NFS4_MAXNAMLEN
;
1362 spin_lock(&nfs_client_lock
);
1363 list_add_tail(&server
->client_link
, &server
->nfs_client
->cl_superblocks
);
1364 list_add_tail(&server
->master_link
, &nfs_volume_list
);
1365 spin_unlock(&nfs_client_lock
);
1367 server
->mount_time
= jiffies
;
1368 dprintk("<-- nfs4_create_server() = %p\n", server
);
1372 nfs_free_server(server
);
1373 dprintk("<-- nfs4_create_server() = error %d\n", error
);
1374 return ERR_PTR(error
);
1378 * Create an NFS4 referral server record
1380 struct nfs_server
*nfs4_create_referral_server(struct nfs_clone_mount
*data
,
1381 struct nfs_fh
*mntfh
)
1383 struct nfs_client
*parent_client
;
1384 struct nfs_server
*server
, *parent_server
;
1385 struct nfs_fattr fattr
;
1388 dprintk("--> nfs4_create_referral_server()\n");
1390 server
= nfs_alloc_server();
1392 return ERR_PTR(-ENOMEM
);
1394 parent_server
= NFS_SB(data
->sb
);
1395 parent_client
= parent_server
->nfs_client
;
1397 /* Initialise the client representation from the parent server */
1398 nfs_server_copy_userdata(server
, parent_server
);
1399 server
->caps
|= NFS_CAP_ATOMIC_OPEN
|NFS_CAP_CHANGE_ATTR
;
1401 /* Get a client representation.
1402 * Note: NFSv4 always uses TCP, */
1403 error
= nfs4_set_client(server
, data
->hostname
,
1406 parent_client
->cl_ipaddr
,
1408 parent_server
->client
->cl_xprt
->prot
,
1409 parent_server
->client
->cl_timeout
,
1410 parent_client
->cl_minorversion
);
1414 error
= nfs_init_server_rpcclient(server
, parent_server
->client
->cl_timeout
, data
->authflavor
);
1418 BUG_ON(!server
->nfs_client
);
1419 BUG_ON(!server
->nfs_client
->rpc_ops
);
1420 BUG_ON(!server
->nfs_client
->rpc_ops
->file_inode_ops
);
1422 /* Probe the root fh to retrieve its FSID and filehandle */
1423 error
= nfs4_path_walk(server
, mntfh
, data
->mnt_path
);
1427 /* probe the filesystem info for this server filesystem */
1428 error
= nfs_probe_fsinfo(server
, mntfh
, &fattr
);
1432 if (server
->namelen
== 0 || server
->namelen
> NFS4_MAXNAMLEN
)
1433 server
->namelen
= NFS4_MAXNAMLEN
;
1435 dprintk("Referral FSID: %llx:%llx\n",
1436 (unsigned long long) server
->fsid
.major
,
1437 (unsigned long long) server
->fsid
.minor
);
1439 spin_lock(&nfs_client_lock
);
1440 list_add_tail(&server
->client_link
, &server
->nfs_client
->cl_superblocks
);
1441 list_add_tail(&server
->master_link
, &nfs_volume_list
);
1442 spin_unlock(&nfs_client_lock
);
1444 server
->mount_time
= jiffies
;
1446 dprintk("<-- nfs_create_referral_server() = %p\n", server
);
1450 nfs_free_server(server
);
1451 dprintk("<-- nfs4_create_referral_server() = error %d\n", error
);
1452 return ERR_PTR(error
);
1455 #endif /* CONFIG_NFS_V4 */
1458 * Clone an NFS2, NFS3 or NFS4 server record
1460 struct nfs_server
*nfs_clone_server(struct nfs_server
*source
,
1462 struct nfs_fattr
*fattr
)
1464 struct nfs_server
*server
;
1465 struct nfs_fattr fattr_fsinfo
;
1468 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
1469 (unsigned long long) fattr
->fsid
.major
,
1470 (unsigned long long) fattr
->fsid
.minor
);
1472 server
= nfs_alloc_server();
1474 return ERR_PTR(-ENOMEM
);
1476 /* Copy data from the source */
1477 server
->nfs_client
= source
->nfs_client
;
1478 atomic_inc(&server
->nfs_client
->cl_count
);
1479 nfs_server_copy_userdata(server
, source
);
1481 server
->fsid
= fattr
->fsid
;
1483 error
= nfs_init_server_rpcclient(server
,
1484 source
->client
->cl_timeout
,
1485 source
->client
->cl_auth
->au_flavor
);
1487 goto out_free_server
;
1488 if (!IS_ERR(source
->client_acl
))
1489 nfs_init_server_aclclient(server
);
1491 /* probe the filesystem info for this server filesystem */
1492 error
= nfs_probe_fsinfo(server
, fh
, &fattr_fsinfo
);
1494 goto out_free_server
;
1496 if (server
->namelen
== 0 || server
->namelen
> NFS4_MAXNAMLEN
)
1497 server
->namelen
= NFS4_MAXNAMLEN
;
1499 dprintk("Cloned FSID: %llx:%llx\n",
1500 (unsigned long long) server
->fsid
.major
,
1501 (unsigned long long) server
->fsid
.minor
);
1503 error
= nfs_start_lockd(server
);
1505 goto out_free_server
;
1507 spin_lock(&nfs_client_lock
);
1508 list_add_tail(&server
->client_link
, &server
->nfs_client
->cl_superblocks
);
1509 list_add_tail(&server
->master_link
, &nfs_volume_list
);
1510 spin_unlock(&nfs_client_lock
);
1512 server
->mount_time
= jiffies
;
1514 dprintk("<-- nfs_clone_server() = %p\n", server
);
1518 nfs_free_server(server
);
1519 dprintk("<-- nfs_clone_server() = error %d\n", error
);
1520 return ERR_PTR(error
);
1523 #ifdef CONFIG_PROC_FS
1524 static struct proc_dir_entry
*proc_fs_nfs
;
1526 static int nfs_server_list_open(struct inode
*inode
, struct file
*file
);
1527 static void *nfs_server_list_start(struct seq_file
*p
, loff_t
*pos
);
1528 static void *nfs_server_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
);
1529 static void nfs_server_list_stop(struct seq_file
*p
, void *v
);
1530 static int nfs_server_list_show(struct seq_file
*m
, void *v
);
1532 static struct seq_operations nfs_server_list_ops
= {
1533 .start
= nfs_server_list_start
,
1534 .next
= nfs_server_list_next
,
1535 .stop
= nfs_server_list_stop
,
1536 .show
= nfs_server_list_show
,
1539 static const struct file_operations nfs_server_list_fops
= {
1540 .open
= nfs_server_list_open
,
1542 .llseek
= seq_lseek
,
1543 .release
= seq_release
,
1544 .owner
= THIS_MODULE
,
1547 static int nfs_volume_list_open(struct inode
*inode
, struct file
*file
);
1548 static void *nfs_volume_list_start(struct seq_file
*p
, loff_t
*pos
);
1549 static void *nfs_volume_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
);
1550 static void nfs_volume_list_stop(struct seq_file
*p
, void *v
);
1551 static int nfs_volume_list_show(struct seq_file
*m
, void *v
);
1553 static struct seq_operations nfs_volume_list_ops
= {
1554 .start
= nfs_volume_list_start
,
1555 .next
= nfs_volume_list_next
,
1556 .stop
= nfs_volume_list_stop
,
1557 .show
= nfs_volume_list_show
,
1560 static const struct file_operations nfs_volume_list_fops
= {
1561 .open
= nfs_volume_list_open
,
1563 .llseek
= seq_lseek
,
1564 .release
= seq_release
,
1565 .owner
= THIS_MODULE
,
1569 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1572 static int nfs_server_list_open(struct inode
*inode
, struct file
*file
)
1577 ret
= seq_open(file
, &nfs_server_list_ops
);
1581 m
= file
->private_data
;
1582 m
->private = PDE(inode
)->data
;
1588 * set up the iterator to start reading from the server list and return the first item
1590 static void *nfs_server_list_start(struct seq_file
*m
, loff_t
*_pos
)
1592 /* lock the list against modification */
1593 spin_lock(&nfs_client_lock
);
1594 return seq_list_start_head(&nfs_client_list
, *_pos
);
1598 * move to next server
1600 static void *nfs_server_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
)
1602 return seq_list_next(v
, &nfs_client_list
, pos
);
1606 * clean up after reading from the transports list
1608 static void nfs_server_list_stop(struct seq_file
*p
, void *v
)
1610 spin_unlock(&nfs_client_lock
);
1614 * display a header line followed by a load of call lines
1616 static int nfs_server_list_show(struct seq_file
*m
, void *v
)
1618 struct nfs_client
*clp
;
1620 /* display header on line 1 */
1621 if (v
== &nfs_client_list
) {
1622 seq_puts(m
, "NV SERVER PORT USE HOSTNAME\n");
1626 /* display one transport per line on subsequent lines */
1627 clp
= list_entry(v
, struct nfs_client
, cl_share_link
);
1629 seq_printf(m
, "v%u %s %s %3d %s\n",
1630 clp
->rpc_ops
->version
,
1631 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_ADDR
),
1632 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_PORT
),
1633 atomic_read(&clp
->cl_count
),
1640 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1642 static int nfs_volume_list_open(struct inode
*inode
, struct file
*file
)
1647 ret
= seq_open(file
, &nfs_volume_list_ops
);
1651 m
= file
->private_data
;
1652 m
->private = PDE(inode
)->data
;
1658 * set up the iterator to start reading from the volume list and return the first item
1660 static void *nfs_volume_list_start(struct seq_file
*m
, loff_t
*_pos
)
1662 /* lock the list against modification */
1663 spin_lock(&nfs_client_lock
);
1664 return seq_list_start_head(&nfs_volume_list
, *_pos
);
1668 * move to next volume
1670 static void *nfs_volume_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
)
1672 return seq_list_next(v
, &nfs_volume_list
, pos
);
1676 * clean up after reading from the transports list
1678 static void nfs_volume_list_stop(struct seq_file
*p
, void *v
)
1680 spin_unlock(&nfs_client_lock
);
1684 * display a header line followed by a load of call lines
1686 static int nfs_volume_list_show(struct seq_file
*m
, void *v
)
1688 struct nfs_server
*server
;
1689 struct nfs_client
*clp
;
1690 char dev
[8], fsid
[17];
1692 /* display header on line 1 */
1693 if (v
== &nfs_volume_list
) {
1694 seq_puts(m
, "NV SERVER PORT DEV FSID FSC\n");
1697 /* display one transport per line on subsequent lines */
1698 server
= list_entry(v
, struct nfs_server
, master_link
);
1699 clp
= server
->nfs_client
;
1701 snprintf(dev
, 8, "%u:%u",
1702 MAJOR(server
->s_dev
), MINOR(server
->s_dev
));
1704 snprintf(fsid
, 17, "%llx:%llx",
1705 (unsigned long long) server
->fsid
.major
,
1706 (unsigned long long) server
->fsid
.minor
);
1708 seq_printf(m
, "v%u %s %s %-7s %-17s %s\n",
1709 clp
->rpc_ops
->version
,
1710 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_ADDR
),
1711 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_PORT
),
1714 nfs_server_fscache_state(server
));
1720 * initialise the /proc/fs/nfsfs/ directory
1722 int __init
nfs_fs_proc_init(void)
1724 struct proc_dir_entry
*p
;
1726 proc_fs_nfs
= proc_mkdir("fs/nfsfs", NULL
);
1730 /* a file of servers with which we're dealing */
1731 p
= proc_create("servers", S_IFREG
|S_IRUGO
,
1732 proc_fs_nfs
, &nfs_server_list_fops
);
1736 /* a file of volumes that we have mounted */
1737 p
= proc_create("volumes", S_IFREG
|S_IRUGO
,
1738 proc_fs_nfs
, &nfs_volume_list_fops
);
1744 remove_proc_entry("servers", proc_fs_nfs
);
1746 remove_proc_entry("fs/nfsfs", NULL
);
1752 * clean up the /proc/fs/nfsfs/ directory
1754 void nfs_fs_proc_exit(void)
1756 remove_proc_entry("volumes", proc_fs_nfs
);
1757 remove_proc_entry("servers", proc_fs_nfs
);
1758 remove_proc_entry("fs/nfsfs", NULL
);
1761 #endif /* CONFIG_PROC_FS */