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
;
814 server
->rsize
= nfs_block_size(data
->rsize
, NULL
);
816 server
->wsize
= nfs_block_size(data
->wsize
, NULL
);
818 server
->acregmin
= data
->acregmin
* HZ
;
819 server
->acregmax
= data
->acregmax
* HZ
;
820 server
->acdirmin
= data
->acdirmin
* HZ
;
821 server
->acdirmax
= data
->acdirmax
* HZ
;
823 /* Start lockd here, before we might error out */
824 error
= nfs_start_lockd(server
);
828 server
->port
= data
->nfs_server
.port
;
830 error
= nfs_init_server_rpcclient(server
, &timeparms
, data
->auth_flavors
[0]);
834 /* Preserve the values of mount_server-related mount options */
835 if (data
->mount_server
.addrlen
) {
836 memcpy(&server
->mountd_address
, &data
->mount_server
.address
,
837 data
->mount_server
.addrlen
);
838 server
->mountd_addrlen
= data
->mount_server
.addrlen
;
840 server
->mountd_version
= data
->mount_server
.version
;
841 server
->mountd_port
= data
->mount_server
.port
;
842 server
->mountd_protocol
= data
->mount_server
.protocol
;
844 server
->namelen
= data
->namlen
;
845 /* Create a client RPC handle for the NFSv3 ACL management interface */
846 nfs_init_server_aclclient(server
);
847 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp
);
851 server
->nfs_client
= NULL
;
853 dprintk("<-- nfs_init_server() = xerror %d\n", error
);
858 * Load up the server record from information gained in an fsinfo record
860 static void nfs_server_set_fsinfo(struct nfs_server
*server
, struct nfs_fsinfo
*fsinfo
)
862 unsigned long max_rpc_payload
;
864 /* Work out a lot of parameters */
865 if (server
->rsize
== 0)
866 server
->rsize
= nfs_block_size(fsinfo
->rtpref
, NULL
);
867 if (server
->wsize
== 0)
868 server
->wsize
= nfs_block_size(fsinfo
->wtpref
, NULL
);
870 if (fsinfo
->rtmax
>= 512 && server
->rsize
> fsinfo
->rtmax
)
871 server
->rsize
= nfs_block_size(fsinfo
->rtmax
, NULL
);
872 if (fsinfo
->wtmax
>= 512 && server
->wsize
> fsinfo
->wtmax
)
873 server
->wsize
= nfs_block_size(fsinfo
->wtmax
, NULL
);
875 max_rpc_payload
= nfs_block_size(rpc_max_payload(server
->client
), NULL
);
876 if (server
->rsize
> max_rpc_payload
)
877 server
->rsize
= max_rpc_payload
;
878 if (server
->rsize
> NFS_MAX_FILE_IO_SIZE
)
879 server
->rsize
= NFS_MAX_FILE_IO_SIZE
;
880 server
->rpages
= (server
->rsize
+ PAGE_CACHE_SIZE
- 1) >> PAGE_CACHE_SHIFT
;
882 server
->backing_dev_info
.ra_pages
= server
->rpages
* NFS_MAX_READAHEAD
;
884 if (server
->wsize
> max_rpc_payload
)
885 server
->wsize
= max_rpc_payload
;
886 if (server
->wsize
> NFS_MAX_FILE_IO_SIZE
)
887 server
->wsize
= NFS_MAX_FILE_IO_SIZE
;
888 server
->wpages
= (server
->wsize
+ PAGE_CACHE_SIZE
- 1) >> PAGE_CACHE_SHIFT
;
889 server
->wtmult
= nfs_block_bits(fsinfo
->wtmult
, NULL
);
891 server
->dtsize
= nfs_block_size(fsinfo
->dtpref
, NULL
);
892 if (server
->dtsize
> PAGE_CACHE_SIZE
)
893 server
->dtsize
= PAGE_CACHE_SIZE
;
894 if (server
->dtsize
> server
->rsize
)
895 server
->dtsize
= server
->rsize
;
897 if (server
->flags
& NFS_MOUNT_NOAC
) {
898 server
->acregmin
= server
->acregmax
= 0;
899 server
->acdirmin
= server
->acdirmax
= 0;
902 server
->maxfilesize
= fsinfo
->maxfilesize
;
904 /* We're airborne Set socket buffersize */
905 rpc_setbufsize(server
->client
, server
->wsize
+ 100, server
->rsize
+ 100);
909 * Probe filesystem information, including the FSID on v2/v3
911 static int nfs_probe_fsinfo(struct nfs_server
*server
, struct nfs_fh
*mntfh
, struct nfs_fattr
*fattr
)
913 struct nfs_fsinfo fsinfo
;
914 struct nfs_client
*clp
= server
->nfs_client
;
917 dprintk("--> nfs_probe_fsinfo()\n");
919 if (clp
->rpc_ops
->set_capabilities
!= NULL
) {
920 error
= clp
->rpc_ops
->set_capabilities(server
, mntfh
);
925 fsinfo
.fattr
= fattr
;
926 nfs_fattr_init(fattr
);
927 error
= clp
->rpc_ops
->fsinfo(server
, mntfh
, &fsinfo
);
931 nfs_server_set_fsinfo(server
, &fsinfo
);
932 error
= bdi_init(&server
->backing_dev_info
);
937 /* Get some general file system info */
938 if (server
->namelen
== 0) {
939 struct nfs_pathconf pathinfo
;
941 pathinfo
.fattr
= fattr
;
942 nfs_fattr_init(fattr
);
944 if (clp
->rpc_ops
->pathconf(server
, mntfh
, &pathinfo
) >= 0)
945 server
->namelen
= pathinfo
.max_namelen
;
948 dprintk("<-- nfs_probe_fsinfo() = 0\n");
952 dprintk("nfs_probe_fsinfo: error = %d\n", -error
);
957 * Copy useful information when duplicating a server record
959 static void nfs_server_copy_userdata(struct nfs_server
*target
, struct nfs_server
*source
)
961 target
->flags
= source
->flags
;
962 target
->acregmin
= source
->acregmin
;
963 target
->acregmax
= source
->acregmax
;
964 target
->acdirmin
= source
->acdirmin
;
965 target
->acdirmax
= source
->acdirmax
;
966 target
->caps
= source
->caps
;
970 * Allocate and initialise a server record
972 static struct nfs_server
*nfs_alloc_server(void)
974 struct nfs_server
*server
;
976 server
= kzalloc(sizeof(struct nfs_server
), GFP_KERNEL
);
980 server
->client
= server
->client_acl
= ERR_PTR(-EINVAL
);
982 /* Zero out the NFS state stuff */
983 INIT_LIST_HEAD(&server
->client_link
);
984 INIT_LIST_HEAD(&server
->master_link
);
986 atomic_set(&server
->active
, 0);
988 server
->io_stats
= nfs_alloc_iostats();
989 if (!server
->io_stats
) {
998 * Free up a server record
1000 void nfs_free_server(struct nfs_server
*server
)
1002 dprintk("--> nfs_free_server()\n");
1004 spin_lock(&nfs_client_lock
);
1005 list_del(&server
->client_link
);
1006 list_del(&server
->master_link
);
1007 spin_unlock(&nfs_client_lock
);
1009 if (server
->destroy
!= NULL
)
1010 server
->destroy(server
);
1012 if (!IS_ERR(server
->client_acl
))
1013 rpc_shutdown_client(server
->client_acl
);
1014 if (!IS_ERR(server
->client
))
1015 rpc_shutdown_client(server
->client
);
1017 nfs_put_client(server
->nfs_client
);
1019 nfs_free_iostats(server
->io_stats
);
1020 bdi_destroy(&server
->backing_dev_info
);
1022 nfs_release_automount_timer();
1023 dprintk("<-- nfs_free_server()\n");
1027 * Create a version 2 or 3 volume record
1028 * - keyed on server and FSID
1030 struct nfs_server
*nfs_create_server(const struct nfs_parsed_mount_data
*data
,
1031 struct nfs_fh
*mntfh
)
1033 struct nfs_server
*server
;
1034 struct nfs_fattr fattr
;
1037 server
= nfs_alloc_server();
1039 return ERR_PTR(-ENOMEM
);
1041 /* Get a client representation */
1042 error
= nfs_init_server(server
, data
);
1046 BUG_ON(!server
->nfs_client
);
1047 BUG_ON(!server
->nfs_client
->rpc_ops
);
1048 BUG_ON(!server
->nfs_client
->rpc_ops
->file_inode_ops
);
1050 /* Probe the root fh to retrieve its FSID */
1051 error
= nfs_probe_fsinfo(server
, mntfh
, &fattr
);
1054 if (server
->nfs_client
->rpc_ops
->version
== 3) {
1055 if (server
->namelen
== 0 || server
->namelen
> NFS3_MAXNAMLEN
)
1056 server
->namelen
= NFS3_MAXNAMLEN
;
1057 if (!(data
->flags
& NFS_MOUNT_NORDIRPLUS
))
1058 server
->caps
|= NFS_CAP_READDIRPLUS
;
1060 if (server
->namelen
== 0 || server
->namelen
> NFS2_MAXNAMLEN
)
1061 server
->namelen
= NFS2_MAXNAMLEN
;
1064 if (!(fattr
.valid
& NFS_ATTR_FATTR
)) {
1065 error
= server
->nfs_client
->rpc_ops
->getattr(server
, mntfh
, &fattr
);
1067 dprintk("nfs_create_server: getattr error = %d\n", -error
);
1071 memcpy(&server
->fsid
, &fattr
.fsid
, sizeof(server
->fsid
));
1073 dprintk("Server FSID: %llx:%llx\n",
1074 (unsigned long long) server
->fsid
.major
,
1075 (unsigned long long) server
->fsid
.minor
);
1077 BUG_ON(!server
->nfs_client
);
1078 BUG_ON(!server
->nfs_client
->rpc_ops
);
1079 BUG_ON(!server
->nfs_client
->rpc_ops
->file_inode_ops
);
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
;
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 BUG_ON(!server
->nfs_client
);
1363 BUG_ON(!server
->nfs_client
->rpc_ops
);
1364 BUG_ON(!server
->nfs_client
->rpc_ops
->file_inode_ops
);
1366 spin_lock(&nfs_client_lock
);
1367 list_add_tail(&server
->client_link
, &server
->nfs_client
->cl_superblocks
);
1368 list_add_tail(&server
->master_link
, &nfs_volume_list
);
1369 spin_unlock(&nfs_client_lock
);
1371 server
->mount_time
= jiffies
;
1372 dprintk("<-- nfs4_create_server() = %p\n", server
);
1376 nfs_free_server(server
);
1377 dprintk("<-- nfs4_create_server() = error %d\n", error
);
1378 return ERR_PTR(error
);
1382 * Create an NFS4 referral server record
1384 struct nfs_server
*nfs4_create_referral_server(struct nfs_clone_mount
*data
,
1385 struct nfs_fh
*mntfh
)
1387 struct nfs_client
*parent_client
;
1388 struct nfs_server
*server
, *parent_server
;
1389 struct nfs_fattr fattr
;
1392 dprintk("--> nfs4_create_referral_server()\n");
1394 server
= nfs_alloc_server();
1396 return ERR_PTR(-ENOMEM
);
1398 parent_server
= NFS_SB(data
->sb
);
1399 parent_client
= parent_server
->nfs_client
;
1401 /* Initialise the client representation from the parent server */
1402 nfs_server_copy_userdata(server
, parent_server
);
1403 server
->caps
|= NFS_CAP_ATOMIC_OPEN
;
1405 /* Get a client representation.
1406 * Note: NFSv4 always uses TCP, */
1407 error
= nfs4_set_client(server
, data
->hostname
,
1410 parent_client
->cl_ipaddr
,
1412 parent_server
->client
->cl_xprt
->prot
,
1413 parent_server
->client
->cl_timeout
,
1414 parent_client
->cl_minorversion
);
1418 error
= nfs_init_server_rpcclient(server
, parent_server
->client
->cl_timeout
, data
->authflavor
);
1422 BUG_ON(!server
->nfs_client
);
1423 BUG_ON(!server
->nfs_client
->rpc_ops
);
1424 BUG_ON(!server
->nfs_client
->rpc_ops
->file_inode_ops
);
1426 /* Probe the root fh to retrieve its FSID and filehandle */
1427 error
= nfs4_path_walk(server
, mntfh
, data
->mnt_path
);
1431 /* probe the filesystem info for this server filesystem */
1432 error
= nfs_probe_fsinfo(server
, mntfh
, &fattr
);
1436 if (server
->namelen
== 0 || server
->namelen
> NFS4_MAXNAMLEN
)
1437 server
->namelen
= NFS4_MAXNAMLEN
;
1439 dprintk("Referral FSID: %llx:%llx\n",
1440 (unsigned long long) server
->fsid
.major
,
1441 (unsigned long long) server
->fsid
.minor
);
1443 spin_lock(&nfs_client_lock
);
1444 list_add_tail(&server
->client_link
, &server
->nfs_client
->cl_superblocks
);
1445 list_add_tail(&server
->master_link
, &nfs_volume_list
);
1446 spin_unlock(&nfs_client_lock
);
1448 server
->mount_time
= jiffies
;
1450 dprintk("<-- nfs_create_referral_server() = %p\n", server
);
1454 nfs_free_server(server
);
1455 dprintk("<-- nfs4_create_referral_server() = error %d\n", error
);
1456 return ERR_PTR(error
);
1459 #endif /* CONFIG_NFS_V4 */
1462 * Clone an NFS2, NFS3 or NFS4 server record
1464 struct nfs_server
*nfs_clone_server(struct nfs_server
*source
,
1466 struct nfs_fattr
*fattr
)
1468 struct nfs_server
*server
;
1469 struct nfs_fattr fattr_fsinfo
;
1472 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
1473 (unsigned long long) fattr
->fsid
.major
,
1474 (unsigned long long) fattr
->fsid
.minor
);
1476 server
= nfs_alloc_server();
1478 return ERR_PTR(-ENOMEM
);
1480 /* Copy data from the source */
1481 server
->nfs_client
= source
->nfs_client
;
1482 atomic_inc(&server
->nfs_client
->cl_count
);
1483 nfs_server_copy_userdata(server
, source
);
1485 server
->fsid
= fattr
->fsid
;
1487 error
= nfs_init_server_rpcclient(server
,
1488 source
->client
->cl_timeout
,
1489 source
->client
->cl_auth
->au_flavor
);
1491 goto out_free_server
;
1492 if (!IS_ERR(source
->client_acl
))
1493 nfs_init_server_aclclient(server
);
1495 /* probe the filesystem info for this server filesystem */
1496 error
= nfs_probe_fsinfo(server
, fh
, &fattr_fsinfo
);
1498 goto out_free_server
;
1500 if (server
->namelen
== 0 || server
->namelen
> NFS4_MAXNAMLEN
)
1501 server
->namelen
= NFS4_MAXNAMLEN
;
1503 dprintk("Cloned FSID: %llx:%llx\n",
1504 (unsigned long long) server
->fsid
.major
,
1505 (unsigned long long) server
->fsid
.minor
);
1507 error
= nfs_start_lockd(server
);
1509 goto out_free_server
;
1511 spin_lock(&nfs_client_lock
);
1512 list_add_tail(&server
->client_link
, &server
->nfs_client
->cl_superblocks
);
1513 list_add_tail(&server
->master_link
, &nfs_volume_list
);
1514 spin_unlock(&nfs_client_lock
);
1516 server
->mount_time
= jiffies
;
1518 dprintk("<-- nfs_clone_server() = %p\n", server
);
1522 nfs_free_server(server
);
1523 dprintk("<-- nfs_clone_server() = error %d\n", error
);
1524 return ERR_PTR(error
);
1527 #ifdef CONFIG_PROC_FS
1528 static struct proc_dir_entry
*proc_fs_nfs
;
1530 static int nfs_server_list_open(struct inode
*inode
, struct file
*file
);
1531 static void *nfs_server_list_start(struct seq_file
*p
, loff_t
*pos
);
1532 static void *nfs_server_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
);
1533 static void nfs_server_list_stop(struct seq_file
*p
, void *v
);
1534 static int nfs_server_list_show(struct seq_file
*m
, void *v
);
1536 static struct seq_operations nfs_server_list_ops
= {
1537 .start
= nfs_server_list_start
,
1538 .next
= nfs_server_list_next
,
1539 .stop
= nfs_server_list_stop
,
1540 .show
= nfs_server_list_show
,
1543 static const struct file_operations nfs_server_list_fops
= {
1544 .open
= nfs_server_list_open
,
1546 .llseek
= seq_lseek
,
1547 .release
= seq_release
,
1548 .owner
= THIS_MODULE
,
1551 static int nfs_volume_list_open(struct inode
*inode
, struct file
*file
);
1552 static void *nfs_volume_list_start(struct seq_file
*p
, loff_t
*pos
);
1553 static void *nfs_volume_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
);
1554 static void nfs_volume_list_stop(struct seq_file
*p
, void *v
);
1555 static int nfs_volume_list_show(struct seq_file
*m
, void *v
);
1557 static struct seq_operations nfs_volume_list_ops
= {
1558 .start
= nfs_volume_list_start
,
1559 .next
= nfs_volume_list_next
,
1560 .stop
= nfs_volume_list_stop
,
1561 .show
= nfs_volume_list_show
,
1564 static const struct file_operations nfs_volume_list_fops
= {
1565 .open
= nfs_volume_list_open
,
1567 .llseek
= seq_lseek
,
1568 .release
= seq_release
,
1569 .owner
= THIS_MODULE
,
1573 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1576 static int nfs_server_list_open(struct inode
*inode
, struct file
*file
)
1581 ret
= seq_open(file
, &nfs_server_list_ops
);
1585 m
= file
->private_data
;
1586 m
->private = PDE(inode
)->data
;
1592 * set up the iterator to start reading from the server list and return the first item
1594 static void *nfs_server_list_start(struct seq_file
*m
, loff_t
*_pos
)
1596 /* lock the list against modification */
1597 spin_lock(&nfs_client_lock
);
1598 return seq_list_start_head(&nfs_client_list
, *_pos
);
1602 * move to next server
1604 static void *nfs_server_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
)
1606 return seq_list_next(v
, &nfs_client_list
, pos
);
1610 * clean up after reading from the transports list
1612 static void nfs_server_list_stop(struct seq_file
*p
, void *v
)
1614 spin_unlock(&nfs_client_lock
);
1618 * display a header line followed by a load of call lines
1620 static int nfs_server_list_show(struct seq_file
*m
, void *v
)
1622 struct nfs_client
*clp
;
1624 /* display header on line 1 */
1625 if (v
== &nfs_client_list
) {
1626 seq_puts(m
, "NV SERVER PORT USE HOSTNAME\n");
1630 /* display one transport per line on subsequent lines */
1631 clp
= list_entry(v
, struct nfs_client
, cl_share_link
);
1633 seq_printf(m
, "v%u %s %s %3d %s\n",
1634 clp
->rpc_ops
->version
,
1635 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_ADDR
),
1636 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_PORT
),
1637 atomic_read(&clp
->cl_count
),
1644 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1646 static int nfs_volume_list_open(struct inode
*inode
, struct file
*file
)
1651 ret
= seq_open(file
, &nfs_volume_list_ops
);
1655 m
= file
->private_data
;
1656 m
->private = PDE(inode
)->data
;
1662 * set up the iterator to start reading from the volume list and return the first item
1664 static void *nfs_volume_list_start(struct seq_file
*m
, loff_t
*_pos
)
1666 /* lock the list against modification */
1667 spin_lock(&nfs_client_lock
);
1668 return seq_list_start_head(&nfs_volume_list
, *_pos
);
1672 * move to next volume
1674 static void *nfs_volume_list_next(struct seq_file
*p
, void *v
, loff_t
*pos
)
1676 return seq_list_next(v
, &nfs_volume_list
, pos
);
1680 * clean up after reading from the transports list
1682 static void nfs_volume_list_stop(struct seq_file
*p
, void *v
)
1684 spin_unlock(&nfs_client_lock
);
1688 * display a header line followed by a load of call lines
1690 static int nfs_volume_list_show(struct seq_file
*m
, void *v
)
1692 struct nfs_server
*server
;
1693 struct nfs_client
*clp
;
1694 char dev
[8], fsid
[17];
1696 /* display header on line 1 */
1697 if (v
== &nfs_volume_list
) {
1698 seq_puts(m
, "NV SERVER PORT DEV FSID FSC\n");
1701 /* display one transport per line on subsequent lines */
1702 server
= list_entry(v
, struct nfs_server
, master_link
);
1703 clp
= server
->nfs_client
;
1705 snprintf(dev
, 8, "%u:%u",
1706 MAJOR(server
->s_dev
), MINOR(server
->s_dev
));
1708 snprintf(fsid
, 17, "%llx:%llx",
1709 (unsigned long long) server
->fsid
.major
,
1710 (unsigned long long) server
->fsid
.minor
);
1712 seq_printf(m
, "v%u %s %s %-7s %-17s %s\n",
1713 clp
->rpc_ops
->version
,
1714 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_ADDR
),
1715 rpc_peeraddr2str(clp
->cl_rpcclient
, RPC_DISPLAY_HEX_PORT
),
1718 nfs_server_fscache_state(server
));
1724 * initialise the /proc/fs/nfsfs/ directory
1726 int __init
nfs_fs_proc_init(void)
1728 struct proc_dir_entry
*p
;
1730 proc_fs_nfs
= proc_mkdir("fs/nfsfs", NULL
);
1734 /* a file of servers with which we're dealing */
1735 p
= proc_create("servers", S_IFREG
|S_IRUGO
,
1736 proc_fs_nfs
, &nfs_server_list_fops
);
1740 /* a file of volumes that we have mounted */
1741 p
= proc_create("volumes", S_IFREG
|S_IRUGO
,
1742 proc_fs_nfs
, &nfs_volume_list_fops
);
1748 remove_proc_entry("servers", proc_fs_nfs
);
1750 remove_proc_entry("fs/nfsfs", NULL
);
1756 * clean up the /proc/fs/nfsfs/ directory
1758 void nfs_fs_proc_exit(void)
1760 remove_proc_entry("volumes", proc_fs_nfs
);
1761 remove_proc_entry("servers", proc_fs_nfs
);
1762 remove_proc_entry("fs/nfsfs", NULL
);
1765 #endif /* CONFIG_PROC_FS */