blob: 006f8ff0a3c012ebddc86b6802be11337d6daf31 [file] [log] [blame]
David Howells24c8dbb2006-08-22 20:06:10 -04001/* client.c: NFS client sharing and management code
2 *
3 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
10 */
11
12
David Howells24c8dbb2006-08-22 20:06:10 -040013#include <linux/module.h>
14#include <linux/init.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040015#include <linux/sched.h>
David Howells24c8dbb2006-08-22 20:06:10 -040016#include <linux/time.h>
17#include <linux/kernel.h>
18#include <linux/mm.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>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040026#include <linux/sunrpc/xprtsock.h>
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040027#include <linux/sunrpc/xprtrdma.h>
David Howells24c8dbb2006-08-22 20:06:10 -040028#include <linux/nfs_fs.h>
29#include <linux/nfs_mount.h>
30#include <linux/nfs4_mount.h>
31#include <linux/lockd/bind.h>
David Howells24c8dbb2006-08-22 20:06:10 -040032#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>
Trond Myklebust3b0d3f92008-01-03 13:28:58 -050037#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Trond Myklebust3b0d3f92008-01-03 13:28:58 -050039#include <net/ipv6.h>
David Howells24c8dbb2006-08-22 20:06:10 -040040#include <linux/nfs_xdr.h>
Andy Adamson0b5b7ae2009-04-01 09:23:15 -040041#include <linux/sunrpc/bc_xprt.h>
David Howells24c8dbb2006-08-22 20:06:10 -040042
43#include <asm/system.h>
44
45#include "nfs4_fs.h"
46#include "callback.h"
47#include "delegation.h"
48#include "iostat.h"
49#include "internal.h"
David Howells14727282009-04-03 16:42:42 +010050#include "fscache.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040051#include "pnfs.h"
David Howells24c8dbb2006-08-22 20:06:10 -040052
53#define NFSDBG_FACILITY NFSDBG_CLIENT
54
55static DEFINE_SPINLOCK(nfs_client_lock);
56static LIST_HEAD(nfs_client_list);
David Howells54ceac42006-08-22 20:06:13 -040057static LIST_HEAD(nfs_volume_list);
David Howells24c8dbb2006-08-22 20:06:10 -040058static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq);
Andy Adamsonf4eecd52011-01-06 02:04:30 +000059#ifdef CONFIG_NFS_V4
60static DEFINE_IDR(cb_ident_idr); /* Protected by nfs_client_lock */
61
62/*
63 * Get a unique NFSv4.0 callback identifier which will be used
64 * by the V4.0 callback service to lookup the nfs_client struct
65 */
66static int nfs_get_cb_ident_idr(struct nfs_client *clp, int minorversion)
67{
68 int ret = 0;
69
70 if (clp->rpc_ops->version != 4 || minorversion != 0)
71 return ret;
72retry:
73 if (!idr_pre_get(&cb_ident_idr, GFP_KERNEL))
74 return -ENOMEM;
75 spin_lock(&nfs_client_lock);
76 ret = idr_get_new(&cb_ident_idr, clp, &clp->cl_cb_ident);
77 spin_unlock(&nfs_client_lock);
78 if (ret == -EAGAIN)
79 goto retry;
80 return ret;
81}
82#endif /* CONFIG_NFS_V4 */
David Howells24c8dbb2006-08-22 20:06:10 -040083
84/*
Trond Myklebustb064eca22011-02-22 15:44:32 -080085 * Turn off NFSv4 uid/gid mapping when using AUTH_SYS
86 */
87static int nfs4_disable_idmapping = 0;
88
89/*
David Howells5006a762006-08-22 20:06:12 -040090 * RPC cruft for NFS
91 */
92static struct rpc_version *nfs_version[5] = {
93 [2] = &nfs_version2,
94#ifdef CONFIG_NFS_V3
95 [3] = &nfs_version3,
96#endif
97#ifdef CONFIG_NFS_V4
98 [4] = &nfs_version4,
99#endif
100};
101
102struct rpc_program nfs_program = {
103 .name = "nfs",
104 .number = NFS_PROGRAM,
105 .nrvers = ARRAY_SIZE(nfs_version),
106 .version = nfs_version,
107 .stats = &nfs_rpcstat,
108 .pipe_dir_name = "/nfs",
109};
110
111struct rpc_stat nfs_rpcstat = {
112 .program = &nfs_program
113};
114
115
116#ifdef CONFIG_NFS_V3_ACL
117static struct rpc_stat nfsacl_rpcstat = { &nfsacl_program };
118static struct rpc_version * nfsacl_version[] = {
119 [3] = &nfsacl_version3,
120};
121
122struct rpc_program nfsacl_program = {
123 .name = "nfsacl",
124 .number = NFS_ACL_PROGRAM,
125 .nrvers = ARRAY_SIZE(nfsacl_version),
126 .version = nfsacl_version,
127 .stats = &nfsacl_rpcstat,
128};
129#endif /* CONFIG_NFS_V3_ACL */
130
Trond Myklebust3a498022007-12-14 14:56:04 -0500131struct nfs_client_initdata {
132 const char *hostname;
Chuck Leverd7422c42007-12-10 14:58:51 -0500133 const struct sockaddr *addr;
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500134 size_t addrlen;
Trond Myklebust40c553192007-12-14 14:56:07 -0500135 const struct nfs_rpc_ops *rpc_ops;
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500136 int proto;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400137 u32 minorversion;
Trond Myklebust3a498022007-12-14 14:56:04 -0500138};
139
David Howells5006a762006-08-22 20:06:12 -0400140/*
David Howells24c8dbb2006-08-22 20:06:10 -0400141 * Allocate a shared client record
142 *
143 * Since these are allocated/deallocated very rarely, we don't
144 * bother putting them in a slab cache...
145 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500146static struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400147{
148 struct nfs_client *clp;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400149 struct rpc_cred *cred;
Chuck Levera21bdd92009-06-17 18:02:10 -0700150 int err = -ENOMEM;
David Howells24c8dbb2006-08-22 20:06:10 -0400151
152 if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL)
153 goto error_0;
154
Trond Myklebust40c553192007-12-14 14:56:07 -0500155 clp->rpc_ops = cl_init->rpc_ops;
156
David Howells24c8dbb2006-08-22 20:06:10 -0400157 atomic_set(&clp->cl_count, 1);
158 clp->cl_cons_state = NFS_CS_INITING;
159
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500160 memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen);
161 clp->cl_addrlen = cl_init->addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -0400162
Trond Myklebust3a498022007-12-14 14:56:04 -0500163 if (cl_init->hostname) {
Chuck Levera21bdd92009-06-17 18:02:10 -0700164 err = -ENOMEM;
Trond Myklebust3a498022007-12-14 14:56:04 -0500165 clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL);
David Howells24c8dbb2006-08-22 20:06:10 -0400166 if (!clp->cl_hostname)
Benny Halevy71468512009-04-01 09:22:56 -0400167 goto error_cleanup;
David Howells24c8dbb2006-08-22 20:06:10 -0400168 }
169
170 INIT_LIST_HEAD(&clp->cl_superblocks);
171 clp->cl_rpcclient = ERR_PTR(-EINVAL);
172
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500173 clp->cl_proto = cl_init->proto;
174
David Howells24c8dbb2006-08-22 20:06:10 -0400175#ifdef CONFIG_NFS_V4
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000176 err = nfs_get_cb_ident_idr(clp, cl_init->minorversion);
177 if (err)
178 goto error_cleanup;
179
David Howells24c8dbb2006-08-22 20:06:10 -0400180 spin_lock_init(&clp->cl_lock);
David Howells65f27f32006-11-22 14:55:48 +0000181 INIT_DELAYED_WORK(&clp->cl_renewd, nfs4_renew_state);
David Howells24c8dbb2006-08-22 20:06:10 -0400182 rpc_init_wait_queue(&clp->cl_rpcwaitq, "NFS client");
183 clp->cl_boot_time = CURRENT_TIME;
184 clp->cl_state = 1 << NFS4CLNT_LEASE_EXPIRED;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400185 clp->cl_minorversion = cl_init->minorversion;
Trond Myklebust97dc1352010-06-16 09:52:26 -0400186 clp->cl_mvops = nfs_v4_minor_ops[cl_init->minorversion];
David Howells24c8dbb2006-08-22 20:06:10 -0400187#endif
Trond Myklebust7c67db32008-04-07 20:50:11 -0400188 cred = rpc_lookup_machine_cred();
189 if (!IS_ERR(cred))
190 clp->cl_machine_cred = cred;
Andy Adamson974cec82010-10-20 00:18:02 -0400191#if defined(CONFIG_NFS_V4_1)
192 INIT_LIST_HEAD(&clp->cl_layouts);
193#endif
David Howells14727282009-04-03 16:42:42 +0100194 nfs_fscache_get_client_cookie(clp);
195
David Howells24c8dbb2006-08-22 20:06:10 -0400196 return clp;
197
Benny Halevy71468512009-04-01 09:22:56 -0400198error_cleanup:
David Howells24c8dbb2006-08-22 20:06:10 -0400199 kfree(clp);
200error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700201 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400202}
203
Trond Myklebust5dd31772006-08-24 01:03:05 -0400204#ifdef CONFIG_NFS_V4
Andy Adamson557134a2009-04-01 09:21:53 -0400205#ifdef CONFIG_NFS_V4_1
Andy Adamsonea005282011-01-06 02:04:29 +0000206static void nfs4_shutdown_session(struct nfs_client *clp)
207{
208 if (nfs4_has_session(clp))
Andy Adamson557134a2009-04-01 09:21:53 -0400209 nfs4_destroy_session(clp->cl_session);
Andy Adamson557134a2009-04-01 09:21:53 -0400210}
Andy Adamsonea005282011-01-06 02:04:29 +0000211#else /* CONFIG_NFS_V4_1 */
212static void nfs4_shutdown_session(struct nfs_client *clp)
213{
214}
215#endif /* CONFIG_NFS_V4_1 */
Andy Adamson557134a2009-04-01 09:21:53 -0400216
217/*
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800218 * Destroy the NFS4 callback service
219 */
220static void nfs4_destroy_callback(struct nfs_client *clp)
221{
222 if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
Trond Myklebust97dc1352010-06-16 09:52:26 -0400223 nfs_callback_down(clp->cl_mvops->minor_version);
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800224}
225
226static void nfs4_shutdown_client(struct nfs_client *clp)
227{
228 if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state))
229 nfs4_kill_renewd(clp);
Andy Adamsonea005282011-01-06 02:04:29 +0000230 nfs4_shutdown_session(clp);
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800231 nfs4_destroy_callback(clp);
232 if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state))
233 nfs_idmap_delete(clp);
234
235 rpc_destroy_wait_queue(&clp->cl_rpcwaitq);
236}
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000237
238/* idr_remove_all is not needed as all id's are removed by nfs_put_client */
239void nfs_cleanup_cb_ident_idr(void)
240{
241 idr_destroy(&cb_ident_idr);
242}
243
244/* nfs_client_lock held */
245static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
246{
247 if (clp->cl_cb_ident)
248 idr_remove(&cb_ident_idr, clp->cl_cb_ident);
249}
250
Fred Isamanf7e89172011-01-06 11:36:32 +0000251static void pnfs_init_server(struct nfs_server *server)
252{
253 rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC");
254}
255
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800256#else
257static void nfs4_shutdown_client(struct nfs_client *clp)
258{
259}
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000260
261void nfs_cleanup_cb_ident_idr(void)
262{
263}
264
265static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
266{
267}
Fred Isamanf7e89172011-01-06 11:36:32 +0000268
269static void pnfs_init_server(struct nfs_server *server)
270{
271}
272
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800273#endif /* CONFIG_NFS_V4 */
274
275/*
David Howells24c8dbb2006-08-22 20:06:10 -0400276 * Destroy a shared client record
277 */
278static void nfs_free_client(struct nfs_client *clp)
279{
Trond Myklebust40c553192007-12-14 14:56:07 -0500280 dprintk("--> nfs_free_client(%u)\n", clp->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400281
Trond Myklebust5dd31772006-08-24 01:03:05 -0400282 nfs4_shutdown_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400283
David Howells14727282009-04-03 16:42:42 +0100284 nfs_fscache_release_client_cookie(clp);
285
David Howells24c8dbb2006-08-22 20:06:10 -0400286 /* -EIO all pending I/O */
287 if (!IS_ERR(clp->cl_rpcclient))
288 rpc_shutdown_client(clp->cl_rpcclient);
289
Trond Myklebust7c67db32008-04-07 20:50:11 -0400290 if (clp->cl_machine_cred != NULL)
291 put_rpccred(clp->cl_machine_cred);
292
Benny Halevy1775bc32011-05-20 13:47:33 +0200293 nfs4_deviceid_purge_client(clp);
294
David Howells24c8dbb2006-08-22 20:06:10 -0400295 kfree(clp->cl_hostname);
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -0400296 kfree(clp->server_scope);
David Howells24c8dbb2006-08-22 20:06:10 -0400297 kfree(clp);
298
299 dprintk("<-- nfs_free_client()\n");
300}
301
302/*
303 * Release a reference to a shared client record
304 */
305void nfs_put_client(struct nfs_client *clp)
306{
David Howells27ba8512006-07-30 14:40:56 -0400307 if (!clp)
308 return;
309
David Howells24c8dbb2006-08-22 20:06:10 -0400310 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count));
311
312 if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) {
313 list_del(&clp->cl_share_link);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000314 nfs_cb_idr_remove_locked(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400315 spin_unlock(&nfs_client_lock);
316
317 BUG_ON(!list_empty(&clp->cl_superblocks));
318
319 nfs_free_client(clp);
320 }
321}
Andy Adamson16b374c2010-10-20 00:18:04 -0400322EXPORT_SYMBOL_GPL(nfs_put_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400323
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500324#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400325/*
326 * Test if two ip6 socket addresses refer to the same socket by
327 * comparing relevant fields. The padding bytes specifically, are not
328 * compared. sin6_flowinfo is not compared because it only affects QoS
329 * and sin6_scope_id is only compared if the address is "link local"
330 * because "link local" addresses need only be unique to a specific
331 * link. Conversely, ordinary unicast addresses might have different
332 * sin6_scope_id.
333 *
334 * The caller should ensure both socket addresses are AF_INET6.
335 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400336static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
337 const struct sockaddr *sa2)
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400338{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400339 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
340 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400341
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400342 if (ipv6_addr_scope(&sin1->sin6_addr) == IPV6_ADDR_SCOPE_LINKLOCAL &&
343 sin1->sin6_scope_id != sin2->sin6_scope_id)
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400344 return 0;
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500345
Trond Myklebustb20d37c2010-09-12 19:55:26 -0400346 return ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr);
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500347}
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400348#else /* !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE) */
349static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
350 const struct sockaddr *sa2)
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400351{
352 return 0;
353}
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500354#endif
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500355
David Howells24c8dbb2006-08-22 20:06:10 -0400356/*
Ian Dalld7371c42009-03-10 20:33:22 -0400357 * Test if two ip4 socket addresses refer to the same socket, by
358 * comparing relevant fields. The padding bytes specifically, are
359 * not compared.
360 *
361 * The caller should ensure both socket addresses are AF_INET.
362 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400363static int nfs_sockaddr_match_ipaddr4(const struct sockaddr *sa1,
364 const struct sockaddr *sa2)
365{
366 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
367 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
368
369 return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr;
370}
371
372static int nfs_sockaddr_cmp_ip6(const struct sockaddr *sa1,
373 const struct sockaddr *sa2)
374{
375 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
376 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
377
378 return nfs_sockaddr_match_ipaddr6(sa1, sa2) &&
379 (sin1->sin6_port == sin2->sin6_port);
380}
381
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400382static int nfs_sockaddr_cmp_ip4(const struct sockaddr *sa1,
383 const struct sockaddr *sa2)
Ian Dalld7371c42009-03-10 20:33:22 -0400384{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400385 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
386 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400387
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400388 return nfs_sockaddr_match_ipaddr4(sa1, sa2) &&
389 (sin1->sin_port == sin2->sin_port);
Ian Dalld7371c42009-03-10 20:33:22 -0400390}
391
392/*
Ian Dalld7371c42009-03-10 20:33:22 -0400393 * Test if two socket addresses represent the same actual socket,
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400394 * by comparing (only) relevant fields, excluding the port number.
395 */
396static int nfs_sockaddr_match_ipaddr(const struct sockaddr *sa1,
397 const struct sockaddr *sa2)
398{
399 if (sa1->sa_family != sa2->sa_family)
400 return 0;
401
402 switch (sa1->sa_family) {
403 case AF_INET:
404 return nfs_sockaddr_match_ipaddr4(sa1, sa2);
405 case AF_INET6:
406 return nfs_sockaddr_match_ipaddr6(sa1, sa2);
407 }
408 return 0;
409}
410
411/*
412 * Test if two socket addresses represent the same actual socket,
413 * by comparing (only) relevant fields, including the port number.
Ian Dalld7371c42009-03-10 20:33:22 -0400414 */
415static int nfs_sockaddr_cmp(const struct sockaddr *sa1,
416 const struct sockaddr *sa2)
417{
418 if (sa1->sa_family != sa2->sa_family)
419 return 0;
420
421 switch (sa1->sa_family) {
422 case AF_INET:
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400423 return nfs_sockaddr_cmp_ip4(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400424 case AF_INET6:
Trond Myklebust9f4c899c2009-03-12 14:51:32 -0400425 return nfs_sockaddr_cmp_ip6(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400426 }
427 return 0;
428}
429
Andy Adamsonc36fca52011-01-06 02:04:32 +0000430/* Common match routine for v4.0 and v4.1 callback services */
431bool
432nfs4_cb_match_client(const struct sockaddr *addr, struct nfs_client *clp,
433 u32 minorversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500434{
Andy Adamsonc36fca52011-01-06 02:04:32 +0000435 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500436
Andy Adamsonc36fca52011-01-06 02:04:32 +0000437 /* Don't match clients that failed to initialise */
438 if (!(clp->cl_cons_state == NFS_CS_READY ||
439 clp->cl_cons_state == NFS_CS_SESSION_INITING))
440 return false;
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500441
Andy Adamsonc36fca52011-01-06 02:04:32 +0000442 /* Match the version and minorversion */
443 if (clp->rpc_ops->version != 4 ||
444 clp->cl_minorversion != minorversion)
445 return false;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500446
Andy Adamsonc36fca52011-01-06 02:04:32 +0000447 /* Match only the IP address, not the port number */
448 if (!nfs_sockaddr_match_ipaddr(addr, clap))
449 return false;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500450
Andy Adamsonc36fca52011-01-06 02:04:32 +0000451 return true;
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500452}
453
454/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500455 * Find an nfs_client on the list that matches the initialisation data
456 * that is supplied.
457 */
458static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400459{
460 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400461 const struct sockaddr *sap = data->addr;
David Howells24c8dbb2006-08-22 20:06:10 -0400462
463 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400464 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700465 /* Don't match clients that failed to initialise properly */
466 if (clp->cl_cons_state < 0)
467 continue;
468
David Howells24c8dbb2006-08-22 20:06:10 -0400469 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500470 if (clp->rpc_ops != data->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400471 continue;
472
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500473 if (clp->cl_proto != data->proto)
474 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400475 /* Match nfsv4 minorversion */
476 if (clp->cl_minorversion != data->minorversion)
477 continue;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500478 /* Match the full socket address */
Ian Dalld7371c42009-03-10 20:33:22 -0400479 if (!nfs_sockaddr_cmp(sap, clap))
David Howells24c8dbb2006-08-22 20:06:10 -0400480 continue;
481
Trond Myklebustc81468a2007-12-14 14:56:05 -0500482 atomic_inc(&clp->cl_count);
483 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400484 }
David Howells24c8dbb2006-08-22 20:06:10 -0400485 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400486}
487
488/*
489 * Look up a client by IP address and protocol version
490 * - creates a new record if one doesn't yet exist
491 */
Andy Adamson45a52a02011-03-01 01:34:08 +0000492static struct nfs_client *
493nfs_get_client(const struct nfs_client_initdata *cl_init,
494 const struct rpc_timeout *timeparms,
495 const char *ip_addr,
496 rpc_authflavor_t authflavour,
497 int noresvport)
David Howells24c8dbb2006-08-22 20:06:10 -0400498{
499 struct nfs_client *clp, *new = NULL;
500 int error;
501
Chuck Leverd7422c42007-12-10 14:58:51 -0500502 dprintk("--> nfs_get_client(%s,v%u)\n",
503 cl_init->hostname ?: "", cl_init->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400504
505 /* see if the client already exists */
506 do {
507 spin_lock(&nfs_client_lock);
508
Trond Myklebustc81468a2007-12-14 14:56:05 -0500509 clp = nfs_match_client(cl_init);
David Howells24c8dbb2006-08-22 20:06:10 -0400510 if (clp)
511 goto found_client;
512 if (new)
513 goto install_client;
514
515 spin_unlock(&nfs_client_lock);
516
Trond Myklebust3a498022007-12-14 14:56:04 -0500517 new = nfs_alloc_client(cl_init);
Chuck Levera21bdd92009-06-17 18:02:10 -0700518 } while (!IS_ERR(new));
David Howells24c8dbb2006-08-22 20:06:10 -0400519
Chuck Levera21bdd92009-06-17 18:02:10 -0700520 dprintk("--> nfs_get_client() = %ld [failed]\n", PTR_ERR(new));
521 return new;
David Howells24c8dbb2006-08-22 20:06:10 -0400522
523 /* install a new client and return with it unready */
524install_client:
525 clp = new;
526 list_add(&clp->cl_share_link, &nfs_client_list);
527 spin_unlock(&nfs_client_lock);
Andy Adamson45a52a02011-03-01 01:34:08 +0000528
529 error = cl_init->rpc_ops->init_client(clp, timeparms, ip_addr,
530 authflavour, noresvport);
531 if (error < 0) {
532 nfs_put_client(clp);
533 return ERR_PTR(error);
534 }
David Howells24c8dbb2006-08-22 20:06:10 -0400535 dprintk("--> nfs_get_client() = %p [new]\n", clp);
536 return clp;
537
538 /* found an existing client
539 * - make sure it's ready before returning
540 */
541found_client:
542 spin_unlock(&nfs_client_lock);
543
544 if (new)
545 nfs_free_client(new);
546
Matthew Wilcox150030b2007-12-06 16:24:39 -0500547 error = wait_event_killable(nfs_client_active_wq,
Andy Adamson76db6d92009-04-01 09:22:38 -0400548 clp->cl_cons_state < NFS_CS_INITING);
Trond Myklebust0bae89e2006-10-08 14:33:24 -0400549 if (error < 0) {
550 nfs_put_client(clp);
551 return ERR_PTR(-ERESTARTSYS);
David Howells24c8dbb2006-08-22 20:06:10 -0400552 }
553
554 if (clp->cl_cons_state < NFS_CS_READY) {
555 error = clp->cl_cons_state;
556 nfs_put_client(clp);
557 return ERR_PTR(error);
558 }
559
David Howells54ceac42006-08-22 20:06:13 -0400560 BUG_ON(clp->cl_cons_state != NFS_CS_READY);
561
David Howells24c8dbb2006-08-22 20:06:10 -0400562 dprintk("--> nfs_get_client() = %p [share]\n", clp);
563 return clp;
564}
565
566/*
567 * Mark a server as ready or failed
568 */
Andy Adamson76db6d92009-04-01 09:22:38 -0400569void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400570{
571 clp->cl_cons_state = state;
572 wake_up_all(&nfs_client_active_wq);
573}
David Howells5006a762006-08-22 20:06:12 -0400574
575/*
Benny Halevy008f55d2009-04-01 09:22:50 -0400576 * With sessions, the client is not marked ready until after a
577 * successful EXCHANGE_ID and CREATE_SESSION.
578 *
579 * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate
580 * other versions of NFS can be tried.
581 */
582int nfs4_check_client_ready(struct nfs_client *clp)
583{
584 if (!nfs4_has_session(clp))
585 return 0;
586 if (clp->cl_cons_state < NFS_CS_READY)
587 return -EPROTONOSUPPORT;
588 return 0;
589}
590
591/*
David Howells5006a762006-08-22 20:06:12 -0400592 * Initialise the timeout values for a connection
593 */
594static void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
595 unsigned int timeo, unsigned int retrans)
596{
597 to->to_initval = timeo * HZ / 10;
598 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400599
600 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400601 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400602 case XPRT_TRANSPORT_RDMA:
Trond Myklebust259875e2008-07-02 14:43:47 -0400603 if (to->to_retries == 0)
604 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500605 if (to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400606 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400607 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
608 to->to_initval = NFS_MAX_TCP_TIMEOUT;
609 to->to_increment = to->to_initval;
610 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500611 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
612 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
613 if (to->to_maxval < to->to_initval)
614 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400615 to->to_exponential = 0;
616 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400617 case XPRT_TRANSPORT_UDP:
Trond Myklebust259875e2008-07-02 14:43:47 -0400618 if (to->to_retries == 0)
619 to->to_retries = NFS_DEF_UDP_RETRANS;
David Howells5006a762006-08-22 20:06:12 -0400620 if (!to->to_initval)
Trond Myklebust259875e2008-07-02 14:43:47 -0400621 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400622 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
623 to->to_initval = NFS_MAX_UDP_TIMEOUT;
624 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
625 to->to_exponential = 1;
626 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400627 default:
628 BUG();
David Howells5006a762006-08-22 20:06:12 -0400629 }
630}
631
632/*
633 * Create an RPC client handle
634 */
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500635static int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500636 const struct rpc_timeout *timeparms,
637 rpc_authflavor_t flavor,
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500638 int discrtry, int noresvport)
David Howells5006a762006-08-22 20:06:12 -0400639{
David Howells5006a762006-08-22 20:06:12 -0400640 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400641 struct rpc_create_args args = {
Pavel Emelyanovc653ce32010-09-29 16:04:45 +0400642 .net = &init_net,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500643 .protocol = clp->cl_proto,
Chuck Lever41877d22006-08-22 20:06:20 -0400644 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500645 .addrsize = clp->cl_addrlen,
Trond Myklebust33170232007-12-20 16:03:59 -0500646 .timeout = timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400647 .servername = clp->cl_hostname,
648 .program = &nfs_program,
649 .version = clp->rpc_ops->version,
650 .authflavor = flavor,
651 };
David Howells5006a762006-08-22 20:06:12 -0400652
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500653 if (discrtry)
654 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
655 if (noresvport)
656 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
657
David Howells5006a762006-08-22 20:06:12 -0400658 if (!IS_ERR(clp->cl_rpcclient))
659 return 0;
660
Chuck Lever41877d22006-08-22 20:06:20 -0400661 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400662 if (IS_ERR(clnt)) {
663 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700664 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400665 return PTR_ERR(clnt);
666 }
667
David Howells5006a762006-08-22 20:06:12 -0400668 clp->cl_rpcclient = clnt;
669 return 0;
670}
David Howells54ceac42006-08-22 20:06:13 -0400671
672/*
673 * Version 2 or 3 client destruction
674 */
675static void nfs_destroy_server(struct nfs_server *server)
676{
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400677 if (!(server->flags & NFS_MOUNT_LOCAL_FLOCK) ||
678 !(server->flags & NFS_MOUNT_LOCAL_FCNTL))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500679 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400680}
681
682/*
683 * Version 2 or 3 lockd setup
684 */
685static int nfs_start_lockd(struct nfs_server *server)
686{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500687 struct nlm_host *host;
688 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500689 struct nlmclnt_initdata nlm_init = {
690 .hostname = clp->cl_hostname,
691 .address = (struct sockaddr *)&clp->cl_addr,
692 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500693 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500694 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
695 1 : 0,
Chuck Lever883bb162008-01-15 16:04:20 -0500696 };
David Howells54ceac42006-08-22 20:06:13 -0400697
Chuck Lever883bb162008-01-15 16:04:20 -0500698 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500699 return 0;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400700 if ((server->flags & NFS_MOUNT_LOCAL_FLOCK) &&
701 (server->flags & NFS_MOUNT_LOCAL_FCNTL))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500702 return 0;
703
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400704 switch (clp->cl_proto) {
705 default:
706 nlm_init.protocol = IPPROTO_TCP;
707 break;
708 case XPRT_TRANSPORT_UDP:
709 nlm_init.protocol = IPPROTO_UDP;
710 }
711
Chuck Lever883bb162008-01-15 16:04:20 -0500712 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500713 if (IS_ERR(host))
714 return PTR_ERR(host);
715
716 server->nlm_host = host;
717 server->destroy = nfs_destroy_server;
718 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400719}
720
721/*
722 * Initialise an NFSv3 ACL client connection
723 */
724#ifdef CONFIG_NFS_V3_ACL
725static void nfs_init_server_aclclient(struct nfs_server *server)
726{
Trond Myklebust40c553192007-12-14 14:56:07 -0500727 if (server->nfs_client->rpc_ops->version != 3)
David Howells54ceac42006-08-22 20:06:13 -0400728 goto out_noacl;
729 if (server->flags & NFS_MOUNT_NOACL)
730 goto out_noacl;
731
732 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
733 if (IS_ERR(server->client_acl))
734 goto out_noacl;
735
736 /* No errors! Assume that Sun nfsacls are supported */
737 server->caps |= NFS_CAP_ACLS;
738 return;
739
740out_noacl:
741 server->caps &= ~NFS_CAP_ACLS;
742}
743#else
744static inline void nfs_init_server_aclclient(struct nfs_server *server)
745{
746 server->flags &= ~NFS_MOUNT_NOACL;
747 server->caps &= ~NFS_CAP_ACLS;
748}
749#endif
750
751/*
752 * Create a general RPC client
753 */
Trond Myklebust33170232007-12-20 16:03:59 -0500754static int nfs_init_server_rpcclient(struct nfs_server *server,
755 const struct rpc_timeout *timeo,
756 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400757{
758 struct nfs_client *clp = server->nfs_client;
759
760 server->client = rpc_clone_client(clp->cl_rpcclient);
761 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700762 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400763 return PTR_ERR(server->client);
764 }
765
Trond Myklebust33170232007-12-20 16:03:59 -0500766 memcpy(&server->client->cl_timeout_default,
767 timeo,
768 sizeof(server->client->cl_timeout_default));
769 server->client->cl_timeout = &server->client->cl_timeout_default;
770
David Howells54ceac42006-08-22 20:06:13 -0400771 if (pseudoflavour != clp->cl_rpcclient->cl_auth->au_flavor) {
772 struct rpc_auth *auth;
773
774 auth = rpcauth_create(pseudoflavour, server->client);
775 if (IS_ERR(auth)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700776 dprintk("%s: couldn't create credcache!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400777 return PTR_ERR(auth);
778 }
779 }
780 server->client->cl_softrtry = 0;
781 if (server->flags & NFS_MOUNT_SOFT)
782 server->client->cl_softrtry = 1;
783
David Howells54ceac42006-08-22 20:06:13 -0400784 return 0;
785}
786
787/*
788 * Initialise an NFS2 or NFS3 client
789 */
Andy Adamson45a52a02011-03-01 01:34:08 +0000790int nfs_init_client(struct nfs_client *clp, const struct rpc_timeout *timeparms,
791 const char *ip_addr, rpc_authflavor_t authflavour,
792 int noresvport)
David Howells54ceac42006-08-22 20:06:13 -0400793{
David Howells54ceac42006-08-22 20:06:13 -0400794 int error;
795
796 if (clp->cl_cons_state == NFS_CS_READY) {
797 /* the client is already initialised */
798 dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp);
799 return 0;
800 }
801
David Howells54ceac42006-08-22 20:06:13 -0400802 /*
803 * Create a client RPC handle for doing FSSTAT with UNIX auth only
804 * - RFC 2623, sec 2.3.2
805 */
Chuck Leverd7403512008-12-23 15:21:37 -0500806 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX,
Andy Adamson45a52a02011-03-01 01:34:08 +0000807 0, noresvport);
David Howells54ceac42006-08-22 20:06:13 -0400808 if (error < 0)
809 goto error;
810 nfs_mark_client_ready(clp, NFS_CS_READY);
811 return 0;
812
813error:
814 nfs_mark_client_ready(clp, error);
815 dprintk("<-- nfs_init_client() = xerror %d\n", error);
816 return error;
817}
818
819/*
820 * Create a version 2 or 3 client
821 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400822static int nfs_init_server(struct nfs_server *server,
823 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400824{
Trond Myklebust3a498022007-12-14 14:56:04 -0500825 struct nfs_client_initdata cl_init = {
826 .hostname = data->nfs_server.hostname,
Chuck Leverd7422c42007-12-10 14:58:51 -0500827 .addr = (const struct sockaddr *)&data->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -0500828 .addrlen = data->nfs_server.addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -0500829 .rpc_ops = &nfs_v2_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500830 .proto = data->nfs_server.protocol,
Trond Myklebust3a498022007-12-14 14:56:04 -0500831 };
Trond Myklebust33170232007-12-20 16:03:59 -0500832 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -0400833 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500834 int error;
David Howells54ceac42006-08-22 20:06:13 -0400835
836 dprintk("--> nfs_init_server()\n");
837
838#ifdef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400839 if (data->version == 3)
Trond Myklebust40c553192007-12-14 14:56:07 -0500840 cl_init.rpc_ops = &nfs_v3_clientops;
David Howells54ceac42006-08-22 20:06:13 -0400841#endif
842
Andy Adamson45a52a02011-03-01 01:34:08 +0000843 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
844 data->timeo, data->retrans);
845
David Howells54ceac42006-08-22 20:06:13 -0400846 /* Allocate or find a client reference we can use */
Andy Adamson45a52a02011-03-01 01:34:08 +0000847 clp = nfs_get_client(&cl_init, &timeparms, NULL, RPC_AUTH_UNIX,
848 data->flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -0400849 if (IS_ERR(clp)) {
850 dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp));
851 return PTR_ERR(clp);
852 }
853
David Howells54ceac42006-08-22 20:06:13 -0400854 server->nfs_client = clp;
855
856 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -0400857 server->flags = data->flags;
David Howellsb797cac2009-04-03 16:42:48 +0100858 server->options = data->options;
Trond Myklebust62ab4602009-08-09 15:06:19 -0400859 server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
860 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP|
861 NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME;
David Howells54ceac42006-08-22 20:06:13 -0400862
863 if (data->rsize)
864 server->rsize = nfs_block_size(data->rsize, NULL);
865 if (data->wsize)
866 server->wsize = nfs_block_size(data->wsize, NULL);
867
868 server->acregmin = data->acregmin * HZ;
869 server->acregmax = data->acregmax * HZ;
870 server->acdirmin = data->acdirmin * HZ;
871 server->acdirmax = data->acdirmax * HZ;
872
873 /* Start lockd here, before we might error out */
874 error = nfs_start_lockd(server);
875 if (error < 0)
876 goto error;
877
Chuck Leverf22d6d72008-03-14 14:10:22 -0400878 server->port = data->nfs_server.port;
879
Trond Myklebust33170232007-12-20 16:03:59 -0500880 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -0400881 if (error < 0)
882 goto error;
883
Chuck Lever3f8400d2008-03-14 14:10:30 -0400884 /* Preserve the values of mount_server-related mount options */
885 if (data->mount_server.addrlen) {
886 memcpy(&server->mountd_address, &data->mount_server.address,
887 data->mount_server.addrlen);
888 server->mountd_addrlen = data->mount_server.addrlen;
889 }
890 server->mountd_version = data->mount_server.version;
891 server->mountd_port = data->mount_server.port;
892 server->mountd_protocol = data->mount_server.protocol;
893
David Howells54ceac42006-08-22 20:06:13 -0400894 server->namelen = data->namlen;
895 /* Create a client RPC handle for the NFSv3 ACL management interface */
896 nfs_init_server_aclclient(server);
David Howells54ceac42006-08-22 20:06:13 -0400897 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp);
898 return 0;
899
900error:
901 server->nfs_client = NULL;
902 nfs_put_client(clp);
903 dprintk("<-- nfs_init_server() = xerror %d\n", error);
904 return error;
905}
906
907/*
908 * Load up the server record from information gained in an fsinfo record
909 */
910static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *fsinfo)
911{
912 unsigned long max_rpc_payload;
913
914 /* Work out a lot of parameters */
915 if (server->rsize == 0)
916 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
917 if (server->wsize == 0)
918 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
919
920 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
921 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
922 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
923 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
924
925 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
926 if (server->rsize > max_rpc_payload)
927 server->rsize = max_rpc_payload;
928 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
929 server->rsize = NFS_MAX_FILE_IO_SIZE;
930 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700931
Jens Axboed9938312009-06-12 14:45:52 +0200932 server->backing_dev_info.name = "nfs";
David Howells54ceac42006-08-22 20:06:13 -0400933 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
934
935 if (server->wsize > max_rpc_payload)
936 server->wsize = max_rpc_payload;
937 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
938 server->wsize = NFS_MAX_FILE_IO_SIZE;
939 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400940 set_pnfs_layoutdriver(server, fsinfo->layouttype);
941
David Howells54ceac42006-08-22 20:06:13 -0400942 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
943
944 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400945 if (server->dtsize > PAGE_CACHE_SIZE * NFS_MAX_READDIR_PAGES)
946 server->dtsize = PAGE_CACHE_SIZE * NFS_MAX_READDIR_PAGES;
David Howells54ceac42006-08-22 20:06:13 -0400947 if (server->dtsize > server->rsize)
948 server->dtsize = server->rsize;
949
950 if (server->flags & NFS_MOUNT_NOAC) {
951 server->acregmin = server->acregmax = 0;
952 server->acdirmin = server->acdirmax = 0;
953 }
954
955 server->maxfilesize = fsinfo->maxfilesize;
956
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700957 server->time_delta = fsinfo->time_delta;
958
David Howells54ceac42006-08-22 20:06:13 -0400959 /* We're airborne Set socket buffersize */
960 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
961}
962
963/*
964 * Probe filesystem information, including the FSID on v2/v3
965 */
966static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
967{
968 struct nfs_fsinfo fsinfo;
969 struct nfs_client *clp = server->nfs_client;
970 int error;
971
972 dprintk("--> nfs_probe_fsinfo()\n");
973
974 if (clp->rpc_ops->set_capabilities != NULL) {
975 error = clp->rpc_ops->set_capabilities(server, mntfh);
976 if (error < 0)
977 goto out_error;
978 }
979
980 fsinfo.fattr = fattr;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400981 fsinfo.layouttype = 0;
David Howells54ceac42006-08-22 20:06:13 -0400982 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
983 if (error < 0)
984 goto out_error;
985
986 nfs_server_set_fsinfo(server, &fsinfo);
987
988 /* Get some general file system info */
989 if (server->namelen == 0) {
990 struct nfs_pathconf pathinfo;
991
992 pathinfo.fattr = fattr;
993 nfs_fattr_init(fattr);
994
995 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
996 server->namelen = pathinfo.max_namelen;
997 }
998
999 dprintk("<-- nfs_probe_fsinfo() = 0\n");
1000 return 0;
1001
1002out_error:
1003 dprintk("nfs_probe_fsinfo: error = %d\n", -error);
1004 return error;
1005}
1006
1007/*
1008 * Copy useful information when duplicating a server record
1009 */
1010static void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
1011{
1012 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -04001013 target->rsize = source->rsize;
1014 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -04001015 target->acregmin = source->acregmin;
1016 target->acregmax = source->acregmax;
1017 target->acdirmin = source->acdirmin;
1018 target->acdirmax = source->acdirmax;
1019 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -04001020 target->options = source->options;
David Howells54ceac42006-08-22 20:06:13 -04001021}
1022
Chuck Leverfca52382010-12-24 01:32:32 +00001023static void nfs_server_insert_lists(struct nfs_server *server)
1024{
1025 struct nfs_client *clp = server->nfs_client;
1026
1027 spin_lock(&nfs_client_lock);
1028 list_add_tail_rcu(&server->client_link, &clp->cl_superblocks);
1029 list_add_tail(&server->master_link, &nfs_volume_list);
Andy Adamsond3b4c9d2011-03-01 01:34:10 +00001030 clear_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Chuck Leverfca52382010-12-24 01:32:32 +00001031 spin_unlock(&nfs_client_lock);
1032
1033}
1034
1035static void nfs_server_remove_lists(struct nfs_server *server)
1036{
Andy Adamsond3b4c9d2011-03-01 01:34:10 +00001037 struct nfs_client *clp = server->nfs_client;
1038
Chuck Leverfca52382010-12-24 01:32:32 +00001039 spin_lock(&nfs_client_lock);
1040 list_del_rcu(&server->client_link);
Andy Adamsond3b4c9d2011-03-01 01:34:10 +00001041 if (clp && list_empty(&clp->cl_superblocks))
1042 set_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Chuck Leverfca52382010-12-24 01:32:32 +00001043 list_del(&server->master_link);
1044 spin_unlock(&nfs_client_lock);
1045
1046 synchronize_rcu();
1047}
1048
David Howells54ceac42006-08-22 20:06:13 -04001049/*
1050 * Allocate and initialise a server record
1051 */
1052static struct nfs_server *nfs_alloc_server(void)
1053{
1054 struct nfs_server *server;
1055
1056 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
1057 if (!server)
1058 return NULL;
1059
1060 server->client = server->client_acl = ERR_PTR(-EINVAL);
1061
1062 /* Zero out the NFS state stuff */
1063 INIT_LIST_HEAD(&server->client_link);
1064 INIT_LIST_HEAD(&server->master_link);
Chuck Leverd3978bb2010-12-24 01:33:04 +00001065 INIT_LIST_HEAD(&server->delegations);
David Howells54ceac42006-08-22 20:06:13 -04001066
Steve Dicksonef818a22007-11-08 04:05:04 -05001067 atomic_set(&server->active, 0);
1068
David Howells54ceac42006-08-22 20:06:13 -04001069 server->io_stats = nfs_alloc_iostats();
1070 if (!server->io_stats) {
1071 kfree(server);
1072 return NULL;
1073 }
1074
Jens Axboe48d07642009-09-21 09:59:39 +02001075 if (bdi_init(&server->backing_dev_info)) {
1076 nfs_free_iostats(server->io_stats);
1077 kfree(server);
1078 return NULL;
1079 }
1080
Fred Isamanf7e89172011-01-06 11:36:32 +00001081 pnfs_init_server(server);
1082
David Howells54ceac42006-08-22 20:06:13 -04001083 return server;
1084}
1085
1086/*
1087 * Free up a server record
1088 */
1089void nfs_free_server(struct nfs_server *server)
1090{
1091 dprintk("--> nfs_free_server()\n");
1092
Chuck Leverfca52382010-12-24 01:32:32 +00001093 nfs_server_remove_lists(server);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -04001094 unset_pnfs_layoutdriver(server);
David Howells54ceac42006-08-22 20:06:13 -04001095
1096 if (server->destroy != NULL)
1097 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -05001098
1099 if (!IS_ERR(server->client_acl))
1100 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -04001101 if (!IS_ERR(server->client))
1102 rpc_shutdown_client(server->client);
1103
1104 nfs_put_client(server->nfs_client);
1105
1106 nfs_free_iostats(server->io_stats);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001107 bdi_destroy(&server->backing_dev_info);
David Howells54ceac42006-08-22 20:06:13 -04001108 kfree(server);
1109 nfs_release_automount_timer();
1110 dprintk("<-- nfs_free_server()\n");
1111}
1112
1113/*
1114 * Create a version 2 or 3 volume record
1115 * - keyed on server and FSID
1116 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001117struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001118 struct nfs_fh *mntfh)
1119{
1120 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001121 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -04001122 int error;
1123
1124 server = nfs_alloc_server();
1125 if (!server)
1126 return ERR_PTR(-ENOMEM);
1127
Trond Myklebustfbca7792010-04-16 16:22:46 -04001128 error = -ENOMEM;
1129 fattr = nfs_alloc_fattr();
1130 if (fattr == NULL)
1131 goto error;
1132
David Howells54ceac42006-08-22 20:06:13 -04001133 /* Get a client representation */
1134 error = nfs_init_server(server, data);
1135 if (error < 0)
1136 goto error;
1137
1138 BUG_ON(!server->nfs_client);
1139 BUG_ON(!server->nfs_client->rpc_ops);
1140 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1141
1142 /* Probe the root fh to retrieve its FSID */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001143 error = nfs_probe_fsinfo(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001144 if (error < 0)
1145 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001146 if (server->nfs_client->rpc_ops->version == 3) {
1147 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1148 server->namelen = NFS3_MAXNAMLEN;
1149 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1150 server->caps |= NFS_CAP_READDIRPLUS;
1151 } else {
1152 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1153 server->namelen = NFS2_MAXNAMLEN;
1154 }
1155
Trond Myklebustfbca7792010-04-16 16:22:46 -04001156 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1157 error = server->nfs_client->rpc_ops->getattr(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001158 if (error < 0) {
1159 dprintk("nfs_create_server: getattr error = %d\n", -error);
1160 goto error;
1161 }
1162 }
Trond Myklebustfbca7792010-04-16 16:22:46 -04001163 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -04001164
David Howells6daabf12006-08-24 15:44:16 -04001165 dprintk("Server FSID: %llx:%llx\n",
1166 (unsigned long long) server->fsid.major,
1167 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001168
Chuck Leverfca52382010-12-24 01:32:32 +00001169 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001170 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001171 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001172 return server;
1173
1174error:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001175 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001176 nfs_free_server(server);
1177 return ERR_PTR(error);
1178}
1179
1180#ifdef CONFIG_NFS_V4
1181/*
Andy Adamsonc36fca52011-01-06 02:04:32 +00001182 * NFSv4.0 callback thread helper
1183 *
1184 * Find a client by IP address, protocol version, and minorversion
1185 *
1186 * Called from the pg_authenticate method. The callback identifier
1187 * is not used as it has not been decoded.
1188 *
1189 * Returns NULL if no such client
1190 */
1191struct nfs_client *
1192nfs4_find_client_no_ident(const struct sockaddr *addr)
1193{
1194 struct nfs_client *clp;
1195
1196 spin_lock(&nfs_client_lock);
1197 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
1198 if (nfs4_cb_match_client(addr, clp, 0) == false)
1199 continue;
1200 atomic_inc(&clp->cl_count);
1201 spin_unlock(&nfs_client_lock);
1202 return clp;
1203 }
1204 spin_unlock(&nfs_client_lock);
1205 return NULL;
1206}
1207
1208/*
1209 * NFSv4.0 callback thread helper
1210 *
1211 * Find a client by callback identifier
1212 */
1213struct nfs_client *
1214nfs4_find_client_ident(int cb_ident)
1215{
1216 struct nfs_client *clp;
1217
1218 spin_lock(&nfs_client_lock);
1219 clp = idr_find(&cb_ident_idr, cb_ident);
1220 if (clp)
1221 atomic_inc(&clp->cl_count);
1222 spin_unlock(&nfs_client_lock);
1223 return clp;
1224}
1225
1226#if defined(CONFIG_NFS_V4_1)
1227/*
1228 * NFSv4.1 callback thread helper
1229 * For CB_COMPOUND calls, find a client by IP address, protocol version,
1230 * minorversion, and sessionID
1231 *
Andy Adamsonc36fca52011-01-06 02:04:32 +00001232 * Returns NULL if no such client
1233 */
1234struct nfs_client *
1235nfs4_find_client_sessionid(const struct sockaddr *addr,
Andy Adamson778be232011-01-25 15:38:01 +00001236 struct nfs4_sessionid *sid)
Andy Adamsonc36fca52011-01-06 02:04:32 +00001237{
1238 struct nfs_client *clp;
1239
1240 spin_lock(&nfs_client_lock);
1241 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
1242 if (nfs4_cb_match_client(addr, clp, 1) == false)
1243 continue;
1244
1245 if (!nfs4_has_session(clp))
1246 continue;
1247
Andy Adamson778be232011-01-25 15:38:01 +00001248 /* Match sessionid*/
1249 if (memcmp(clp->cl_session->sess_id.data,
1250 sid->data, NFS4_MAX_SESSIONID_LEN) != 0)
Andy Adamsonc36fca52011-01-06 02:04:32 +00001251 continue;
1252
1253 atomic_inc(&clp->cl_count);
1254 spin_unlock(&nfs_client_lock);
1255 return clp;
1256 }
1257 spin_unlock(&nfs_client_lock);
1258 return NULL;
1259}
1260
1261#else /* CONFIG_NFS_V4_1 */
1262
1263struct nfs_client *
1264nfs4_find_client_sessionid(const struct sockaddr *addr,
Andy Adamson778be232011-01-25 15:38:01 +00001265 struct nfs4_sessionid *sid)
Andy Adamsonc36fca52011-01-06 02:04:32 +00001266{
1267 return NULL;
1268}
1269#endif /* CONFIG_NFS_V4_1 */
1270
1271/*
Benny Halevy9bdaa862009-04-01 09:22:55 -04001272 * Initialize the NFS4 callback service
1273 */
1274static int nfs4_init_callback(struct nfs_client *clp)
1275{
1276 int error;
1277
1278 if (clp->rpc_ops->version == 4) {
Andy Adamson0b5b7ae2009-04-01 09:23:15 -04001279 if (nfs4_has_session(clp)) {
1280 error = xprt_setup_backchannel(
1281 clp->cl_rpcclient->cl_xprt,
1282 NFS41_BC_MIN_CALLBACKS);
1283 if (error < 0)
1284 return error;
1285 }
1286
Trond Myklebust97dc1352010-06-16 09:52:26 -04001287 error = nfs_callback_up(clp->cl_mvops->minor_version,
Benny Halevy71468512009-04-01 09:22:56 -04001288 clp->cl_rpcclient->cl_xprt);
Benny Halevy9bdaa862009-04-01 09:22:55 -04001289 if (error < 0) {
1290 dprintk("%s: failed to start callback. Error = %d\n",
1291 __func__, error);
1292 return error;
1293 }
1294 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
1295 }
1296 return 0;
1297}
1298
1299/*
Andy Adamson557134a2009-04-01 09:21:53 -04001300 * Initialize the minor version specific parts of an NFS4 client record
1301 */
1302static int nfs4_init_client_minor_version(struct nfs_client *clp)
1303{
1304#if defined(CONFIG_NFS_V4_1)
Trond Myklebust97dc1352010-06-16 09:52:26 -04001305 if (clp->cl_mvops->minor_version) {
Andy Adamson557134a2009-04-01 09:21:53 -04001306 struct nfs4_session *session = NULL;
1307 /*
1308 * Create the session and mark it expired.
1309 * When a SEQUENCE operation encounters the expired session
1310 * it will do session recovery to initialize it.
1311 */
1312 session = nfs4_alloc_session(clp);
1313 if (!session)
1314 return -ENOMEM;
1315
1316 clp->cl_session = session;
Trond Myklebustfe74ba32010-06-16 09:52:27 -04001317 /*
1318 * The create session reply races with the server back
1319 * channel probe. Mark the client NFS_CS_SESSION_INITING
1320 * so that the client back channel can find the
1321 * nfs_client struct
1322 */
1323 clp->cl_cons_state = NFS_CS_SESSION_INITING;
Andy Adamson557134a2009-04-01 09:21:53 -04001324 }
1325#endif /* CONFIG_NFS_V4_1 */
1326
Benny Halevy71468512009-04-01 09:22:56 -04001327 return nfs4_init_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -04001328}
1329
1330/*
David Howells54ceac42006-08-22 20:06:13 -04001331 * Initialise an NFS4 client record
1332 */
Andy Adamson45a52a02011-03-01 01:34:08 +00001333int nfs4_init_client(struct nfs_client *clp,
1334 const struct rpc_timeout *timeparms,
1335 const char *ip_addr,
1336 rpc_authflavor_t authflavour,
1337 int noresvport)
David Howells54ceac42006-08-22 20:06:13 -04001338{
1339 int error;
1340
1341 if (clp->cl_cons_state == NFS_CS_READY) {
1342 /* the client is initialised already */
1343 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
1344 return 0;
1345 }
1346
1347 /* Check NFS protocol revision and initialize RPC op vector */
1348 clp->rpc_ops = &nfs_v4_clientops;
1349
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001350 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Andy Adamson45a52a02011-03-01 01:34:08 +00001351 1, noresvport);
David Howells54ceac42006-08-22 20:06:13 -04001352 if (error < 0)
1353 goto error;
Ben Hutchingsf4373bf2009-10-06 15:42:18 -04001354 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -04001355
1356 error = nfs_idmap_new(clp);
1357 if (error < 0) {
1358 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001359 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -04001360 goto error;
1361 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -04001362 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -04001363
Andy Adamson557134a2009-04-01 09:21:53 -04001364 error = nfs4_init_client_minor_version(clp);
1365 if (error < 0)
1366 goto error;
1367
Andy Adamson76db6d92009-04-01 09:22:38 -04001368 if (!nfs4_has_session(clp))
1369 nfs_mark_client_ready(clp, NFS_CS_READY);
David Howells54ceac42006-08-22 20:06:13 -04001370 return 0;
1371
1372error:
1373 nfs_mark_client_ready(clp, error);
1374 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1375 return error;
1376}
1377
1378/*
1379 * Set up an NFS4 client
1380 */
1381static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001382 const char *hostname,
1383 const struct sockaddr *addr,
1384 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001385 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001386 rpc_authflavor_t authflavour,
Benny Halevy94a417f2009-04-01 09:21:49 -04001387 int proto, const struct rpc_timeout *timeparms,
1388 u32 minorversion)
David Howells54ceac42006-08-22 20:06:13 -04001389{
Trond Myklebust3a498022007-12-14 14:56:04 -05001390 struct nfs_client_initdata cl_init = {
1391 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001392 .addr = addr,
1393 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001394 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001395 .proto = proto,
Benny Halevy5aae4a92009-04-01 09:21:50 -04001396 .minorversion = minorversion,
Trond Myklebust3a498022007-12-14 14:56:04 -05001397 };
David Howells54ceac42006-08-22 20:06:13 -04001398 struct nfs_client *clp;
1399 int error;
1400
1401 dprintk("--> nfs4_set_client()\n");
1402
1403 /* Allocate or find a client reference we can use */
Andy Adamson45a52a02011-03-01 01:34:08 +00001404 clp = nfs_get_client(&cl_init, timeparms, ip_addr, authflavour,
1405 server->flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -04001406 if (IS_ERR(clp)) {
1407 error = PTR_ERR(clp);
1408 goto error;
1409 }
David Howells54ceac42006-08-22 20:06:13 -04001410
Andy Adamsond6fb79d2011-03-01 01:34:11 +00001411 /*
1412 * Query for the lease time on clientid setup or renewal
1413 *
1414 * Note that this will be set on nfs_clients that were created
1415 * only for the DS role and did not set this bit, but now will
1416 * serve a dual role.
1417 */
1418 set_bit(NFS_CS_CHECK_LEASE_TIME, &clp->cl_res_state);
1419
David Howells54ceac42006-08-22 20:06:13 -04001420 server->nfs_client = clp;
1421 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1422 return 0;
David Howells54ceac42006-08-22 20:06:13 -04001423error:
1424 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1425 return error;
1426}
1427
Andy Adamsond83217c2011-03-01 01:34:17 +00001428/*
1429 * Set up a pNFS Data Server client.
1430 *
1431 * Return any existing nfs_client that matches server address,port,version
1432 * and minorversion.
1433 *
1434 * For a new nfs_client, use a soft mount (default), a low retrans and a
1435 * low timeout interval so that if a connection is lost, we retry through
1436 * the MDS.
1437 */
1438struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp,
1439 const struct sockaddr *ds_addr,
1440 int ds_addrlen, int ds_proto)
1441{
1442 struct nfs_client_initdata cl_init = {
1443 .addr = ds_addr,
1444 .addrlen = ds_addrlen,
1445 .rpc_ops = &nfs_v4_clientops,
1446 .proto = ds_proto,
1447 .minorversion = mds_clp->cl_minorversion,
1448 };
1449 struct rpc_timeout ds_timeout = {
1450 .to_initval = 15 * HZ,
1451 .to_maxval = 15 * HZ,
1452 .to_retries = 1,
1453 .to_exponential = 1,
1454 };
1455 struct nfs_client *clp;
1456
1457 /*
1458 * Set an authflavor equual to the MDS value. Use the MDS nfs_client
1459 * cl_ipaddr so as to use the same EXCHANGE_ID co_ownerid as the MDS
1460 * (section 13.1 RFC 5661).
1461 */
1462 clp = nfs_get_client(&cl_init, &ds_timeout, mds_clp->cl_ipaddr,
1463 mds_clp->cl_rpcclient->cl_auth->au_flavor, 0);
1464
1465 dprintk("<-- %s %p\n", __func__, clp);
1466 return clp;
1467}
1468EXPORT_SYMBOL(nfs4_set_ds_client);
Andy Adamson557134a2009-04-01 09:21:53 -04001469
1470/*
Andy Adamson96b09e02009-04-01 09:22:33 -04001471 * Session has been established, and the client marked ready.
1472 * Set the mount rsize and wsize with negotiated fore channel
1473 * attributes which will be bound checked in nfs_server_set_fsinfo.
1474 */
1475static void nfs4_session_set_rwsize(struct nfs_server *server)
1476{
1477#ifdef CONFIG_NFS_V4_1
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001478 struct nfs4_session *sess;
1479 u32 server_resp_sz;
1480 u32 server_rqst_sz;
1481
Andy Adamson96b09e02009-04-01 09:22:33 -04001482 if (!nfs4_has_session(server->nfs_client))
1483 return;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001484 sess = server->nfs_client->cl_session;
1485 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
1486 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
1487
1488 if (server->rsize > server_resp_sz)
1489 server->rsize = server_resp_sz;
1490 if (server->wsize > server_rqst_sz)
1491 server->wsize = server_rqst_sz;
Andy Adamson96b09e02009-04-01 09:22:33 -04001492#endif /* CONFIG_NFS_V4_1 */
1493}
1494
Trond Myklebust44950b62010-06-17 11:45:12 -04001495static int nfs4_server_common_setup(struct nfs_server *server,
1496 struct nfs_fh *mntfh)
1497{
1498 struct nfs_fattr *fattr;
1499 int error;
1500
1501 BUG_ON(!server->nfs_client);
1502 BUG_ON(!server->nfs_client->rpc_ops);
1503 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1504
Andy Adamson94de8b22011-03-01 01:34:12 +00001505 /* data servers support only a subset of NFSv4.1 */
1506 if (is_ds_only_client(server->nfs_client))
1507 return -EPROTONOSUPPORT;
1508
Trond Myklebust44950b62010-06-17 11:45:12 -04001509 fattr = nfs_alloc_fattr();
1510 if (fattr == NULL)
1511 return -ENOMEM;
1512
1513 /* We must ensure the session is initialised first */
1514 error = nfs4_init_session(server);
1515 if (error < 0)
1516 goto out;
1517
1518 /* Probe the root fh to retrieve its FSID and filehandle */
1519 error = nfs4_get_rootfh(server, mntfh);
1520 if (error < 0)
1521 goto out;
1522
1523 dprintk("Server FSID: %llx:%llx\n",
1524 (unsigned long long) server->fsid.major,
1525 (unsigned long long) server->fsid.minor);
1526 dprintk("Mount FH: %d\n", mntfh->size);
1527
1528 nfs4_session_set_rwsize(server);
1529
1530 error = nfs_probe_fsinfo(server, mntfh, fattr);
1531 if (error < 0)
1532 goto out;
1533
1534 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1535 server->namelen = NFS4_MAXNAMLEN;
1536
Chuck Leverfca52382010-12-24 01:32:32 +00001537 nfs_server_insert_lists(server);
Trond Myklebust44950b62010-06-17 11:45:12 -04001538 server->mount_time = jiffies;
1539out:
1540 nfs_free_fattr(fattr);
1541 return error;
1542}
1543
Andy Adamson96b09e02009-04-01 09:22:33 -04001544/*
David Howells54ceac42006-08-22 20:06:13 -04001545 * Create a version 4 volume record
1546 */
1547static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001548 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001549{
Trond Myklebust33170232007-12-20 16:03:59 -05001550 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001551 int error;
1552
1553 dprintk("--> nfs4_init_server()\n");
1554
Trond Myklebust33170232007-12-20 16:03:59 -05001555 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1556 data->timeo, data->retrans);
1557
Chuck Lever542fcc32008-12-23 15:21:36 -05001558 /* Initialise the client representation from the mount data */
1559 server->flags = data->flags;
Bryan Schumaker82f2e542010-10-21 16:33:18 -04001560 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR|NFS_CAP_POSIX_LOCK;
1561 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1562 server->caps |= NFS_CAP_READDIRPLUS;
David Howellsb797cac2009-04-03 16:42:48 +01001563 server->options = data->options;
Chuck Lever542fcc32008-12-23 15:21:36 -05001564
Trond Myklebust33170232007-12-20 16:03:59 -05001565 /* Get a client record */
1566 error = nfs4_set_client(server,
1567 data->nfs_server.hostname,
1568 (const struct sockaddr *)&data->nfs_server.address,
1569 data->nfs_server.addrlen,
1570 data->client_address,
1571 data->auth_flavors[0],
1572 data->nfs_server.protocol,
Benny Halevy94a417f2009-04-01 09:21:49 -04001573 &timeparms,
1574 data->minorversion);
Trond Myklebust33170232007-12-20 16:03:59 -05001575 if (error < 0)
1576 goto error;
1577
Trond Myklebustb064eca22011-02-22 15:44:32 -08001578 /*
1579 * Don't use NFS uid/gid mapping if we're using AUTH_SYS or lower
1580 * authentication.
1581 */
1582 if (nfs4_disable_idmapping && data->auth_flavors[0] == RPC_AUTH_UNIX)
1583 server->caps |= NFS_CAP_UIDGID_NOMAP;
1584
David Howells54ceac42006-08-22 20:06:13 -04001585 if (data->rsize)
1586 server->rsize = nfs_block_size(data->rsize, NULL);
1587 if (data->wsize)
1588 server->wsize = nfs_block_size(data->wsize, NULL);
1589
1590 server->acregmin = data->acregmin * HZ;
1591 server->acregmax = data->acregmax * HZ;
1592 server->acdirmin = data->acdirmin * HZ;
1593 server->acdirmax = data->acdirmax * HZ;
1594
Chuck Leverf22d6d72008-03-14 14:10:22 -04001595 server->port = data->nfs_server.port;
1596
Trond Myklebust33170232007-12-20 16:03:59 -05001597 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001598
Trond Myklebust33170232007-12-20 16:03:59 -05001599error:
David Howells54ceac42006-08-22 20:06:13 -04001600 /* Done */
1601 dprintk("<-- nfs4_init_server() = %d\n", error);
1602 return error;
1603}
1604
1605/*
1606 * Create a version 4 volume record
1607 * - keyed on server and FSID
1608 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001609struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001610 struct nfs_fh *mntfh)
1611{
David Howells54ceac42006-08-22 20:06:13 -04001612 struct nfs_server *server;
1613 int error;
1614
1615 dprintk("--> nfs4_create_server()\n");
1616
1617 server = nfs_alloc_server();
1618 if (!server)
1619 return ERR_PTR(-ENOMEM);
1620
David Howells54ceac42006-08-22 20:06:13 -04001621 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001622 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001623 if (error < 0)
1624 goto error;
1625
Trond Myklebust44950b62010-06-17 11:45:12 -04001626 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustfccba802009-07-21 16:48:07 -04001627 if (error < 0)
1628 goto error;
Andy Adamson557134a2009-04-01 09:21:53 -04001629
David Howells54ceac42006-08-22 20:06:13 -04001630 dprintk("<-- nfs4_create_server() = %p\n", server);
1631 return server;
1632
1633error:
1634 nfs_free_server(server);
1635 dprintk("<-- nfs4_create_server() = error %d\n", error);
1636 return ERR_PTR(error);
1637}
1638
1639/*
1640 * Create an NFS4 referral server record
1641 */
1642struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001643 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001644{
1645 struct nfs_client *parent_client;
1646 struct nfs_server *server, *parent_server;
David Howells54ceac42006-08-22 20:06:13 -04001647 int error;
1648
1649 dprintk("--> nfs4_create_referral_server()\n");
1650
1651 server = nfs_alloc_server();
1652 if (!server)
1653 return ERR_PTR(-ENOMEM);
1654
1655 parent_server = NFS_SB(data->sb);
1656 parent_client = parent_server->nfs_client;
1657
Chuck Lever542fcc32008-12-23 15:21:36 -05001658 /* Initialise the client representation from the parent server */
1659 nfs_server_copy_userdata(server, parent_server);
Trond Myklebust62ab4602009-08-09 15:06:19 -04001660 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
Chuck Lever542fcc32008-12-23 15:21:36 -05001661
David Howells54ceac42006-08-22 20:06:13 -04001662 /* Get a client representation.
1663 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001664 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001665 data->addr,
1666 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001667 parent_client->cl_ipaddr,
1668 data->authflavor,
1669 parent_server->client->cl_xprt->prot,
Benny Halevy94a417f2009-04-01 09:21:49 -04001670 parent_server->client->cl_timeout,
Trond Myklebust97dc1352010-06-16 09:52:26 -04001671 parent_client->cl_mvops->minor_version);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001672 if (error < 0)
1673 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001674
Trond Myklebust33170232007-12-20 16:03:59 -05001675 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001676 if (error < 0)
1677 goto error;
1678
Trond Myklebust44950b62010-06-17 11:45:12 -04001679 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001680 if (error < 0)
1681 goto error;
1682
David Howells54ceac42006-08-22 20:06:13 -04001683 dprintk("<-- nfs_create_referral_server() = %p\n", server);
1684 return server;
1685
1686error:
1687 nfs_free_server(server);
1688 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
1689 return ERR_PTR(error);
1690}
1691
1692#endif /* CONFIG_NFS_V4 */
1693
1694/*
1695 * Clone an NFS2, NFS3 or NFS4 server record
1696 */
1697struct nfs_server *nfs_clone_server(struct nfs_server *source,
1698 struct nfs_fh *fh,
1699 struct nfs_fattr *fattr)
1700{
1701 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001702 struct nfs_fattr *fattr_fsinfo;
David Howells54ceac42006-08-22 20:06:13 -04001703 int error;
1704
1705 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
David Howells6daabf12006-08-24 15:44:16 -04001706 (unsigned long long) fattr->fsid.major,
1707 (unsigned long long) fattr->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001708
1709 server = nfs_alloc_server();
1710 if (!server)
1711 return ERR_PTR(-ENOMEM);
1712
Trond Myklebustfbca7792010-04-16 16:22:46 -04001713 error = -ENOMEM;
1714 fattr_fsinfo = nfs_alloc_fattr();
1715 if (fattr_fsinfo == NULL)
1716 goto out_free_server;
1717
David Howells54ceac42006-08-22 20:06:13 -04001718 /* Copy data from the source */
1719 server->nfs_client = source->nfs_client;
1720 atomic_inc(&server->nfs_client->cl_count);
1721 nfs_server_copy_userdata(server, source);
1722
1723 server->fsid = fattr->fsid;
1724
Trond Myklebust33170232007-12-20 16:03:59 -05001725 error = nfs_init_server_rpcclient(server,
1726 source->client->cl_timeout,
1727 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001728 if (error < 0)
1729 goto out_free_server;
1730 if (!IS_ERR(source->client_acl))
1731 nfs_init_server_aclclient(server);
1732
1733 /* probe the filesystem info for this server filesystem */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001734 error = nfs_probe_fsinfo(server, fh, fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001735 if (error < 0)
1736 goto out_free_server;
1737
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001738 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1739 server->namelen = NFS4_MAXNAMLEN;
1740
David Howells54ceac42006-08-22 20:06:13 -04001741 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001742 (unsigned long long) server->fsid.major,
1743 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001744
1745 error = nfs_start_lockd(server);
1746 if (error < 0)
1747 goto out_free_server;
1748
Chuck Leverfca52382010-12-24 01:32:32 +00001749 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001750 server->mount_time = jiffies;
1751
Trond Myklebustfbca7792010-04-16 16:22:46 -04001752 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001753 dprintk("<-- nfs_clone_server() = %p\n", server);
1754 return server;
1755
1756out_free_server:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001757 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001758 nfs_free_server(server);
1759 dprintk("<-- nfs_clone_server() = error %d\n", error);
1760 return ERR_PTR(error);
1761}
David Howells6aaca562006-08-22 20:06:13 -04001762
1763#ifdef CONFIG_PROC_FS
1764static struct proc_dir_entry *proc_fs_nfs;
1765
1766static int nfs_server_list_open(struct inode *inode, struct file *file);
1767static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1768static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1769static void nfs_server_list_stop(struct seq_file *p, void *v);
1770static int nfs_server_list_show(struct seq_file *m, void *v);
1771
James Morris88e9d342009-09-22 16:43:43 -07001772static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001773 .start = nfs_server_list_start,
1774 .next = nfs_server_list_next,
1775 .stop = nfs_server_list_stop,
1776 .show = nfs_server_list_show,
1777};
1778
Arjan van de Ven00977a52007-02-12 00:55:34 -08001779static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001780 .open = nfs_server_list_open,
1781 .read = seq_read,
1782 .llseek = seq_lseek,
1783 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001784 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001785};
1786
1787static int nfs_volume_list_open(struct inode *inode, struct file *file);
1788static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1789static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1790static void nfs_volume_list_stop(struct seq_file *p, void *v);
1791static int nfs_volume_list_show(struct seq_file *m, void *v);
1792
James Morris88e9d342009-09-22 16:43:43 -07001793static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001794 .start = nfs_volume_list_start,
1795 .next = nfs_volume_list_next,
1796 .stop = nfs_volume_list_stop,
1797 .show = nfs_volume_list_show,
1798};
1799
Arjan van de Ven00977a52007-02-12 00:55:34 -08001800static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001801 .open = nfs_volume_list_open,
1802 .read = seq_read,
1803 .llseek = seq_lseek,
1804 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001805 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001806};
1807
1808/*
1809 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1810 * we're dealing
1811 */
1812static int nfs_server_list_open(struct inode *inode, struct file *file)
1813{
1814 struct seq_file *m;
1815 int ret;
1816
1817 ret = seq_open(file, &nfs_server_list_ops);
1818 if (ret < 0)
1819 return ret;
1820
1821 m = file->private_data;
1822 m->private = PDE(inode)->data;
1823
1824 return 0;
1825}
1826
1827/*
1828 * set up the iterator to start reading from the server list and return the first item
1829 */
1830static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1831{
David Howells6aaca562006-08-22 20:06:13 -04001832 /* lock the list against modification */
1833 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001834 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001835}
1836
1837/*
1838 * move to next server
1839 */
1840static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1841{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001842 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001843}
1844
1845/*
1846 * clean up after reading from the transports list
1847 */
1848static void nfs_server_list_stop(struct seq_file *p, void *v)
1849{
1850 spin_unlock(&nfs_client_lock);
1851}
1852
1853/*
1854 * display a header line followed by a load of call lines
1855 */
1856static int nfs_server_list_show(struct seq_file *m, void *v)
1857{
1858 struct nfs_client *clp;
1859
1860 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001861 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001862 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1863 return 0;
1864 }
1865
1866 /* display one transport per line on subsequent lines */
1867 clp = list_entry(v, struct nfs_client, cl_share_link);
1868
Chuck Lever5d8515c2007-12-10 14:57:16 -05001869 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001870 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001871 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1872 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001873 atomic_read(&clp->cl_count),
1874 clp->cl_hostname);
1875
1876 return 0;
1877}
1878
1879/*
1880 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1881 */
1882static int nfs_volume_list_open(struct inode *inode, struct file *file)
1883{
1884 struct seq_file *m;
1885 int ret;
1886
1887 ret = seq_open(file, &nfs_volume_list_ops);
1888 if (ret < 0)
1889 return ret;
1890
1891 m = file->private_data;
1892 m->private = PDE(inode)->data;
1893
1894 return 0;
1895}
1896
1897/*
1898 * set up the iterator to start reading from the volume list and return the first item
1899 */
1900static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1901{
David Howells6aaca562006-08-22 20:06:13 -04001902 /* lock the list against modification */
1903 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001904 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001905}
1906
1907/*
1908 * move to next volume
1909 */
1910static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1911{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001912 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001913}
1914
1915/*
1916 * clean up after reading from the transports list
1917 */
1918static void nfs_volume_list_stop(struct seq_file *p, void *v)
1919{
1920 spin_unlock(&nfs_client_lock);
1921}
1922
1923/*
1924 * display a header line followed by a load of call lines
1925 */
1926static int nfs_volume_list_show(struct seq_file *m, void *v)
1927{
1928 struct nfs_server *server;
1929 struct nfs_client *clp;
1930 char dev[8], fsid[17];
1931
1932 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001933 if (v == &nfs_volume_list) {
David Howells5d1acff2009-04-03 16:42:47 +01001934 seq_puts(m, "NV SERVER PORT DEV FSID FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001935 return 0;
1936 }
1937 /* display one transport per line on subsequent lines */
1938 server = list_entry(v, struct nfs_server, master_link);
1939 clp = server->nfs_client;
1940
1941 snprintf(dev, 8, "%u:%u",
1942 MAJOR(server->s_dev), MINOR(server->s_dev));
1943
1944 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001945 (unsigned long long) server->fsid.major,
1946 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001947
David Howells5d1acff2009-04-03 16:42:47 +01001948 seq_printf(m, "v%u %s %s %-7s %-17s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001949 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001950 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1951 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001952 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001953 fsid,
1954 nfs_server_fscache_state(server));
David Howells6aaca562006-08-22 20:06:13 -04001955
1956 return 0;
1957}
1958
1959/*
1960 * initialise the /proc/fs/nfsfs/ directory
1961 */
1962int __init nfs_fs_proc_init(void)
1963{
1964 struct proc_dir_entry *p;
1965
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001966 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001967 if (!proc_fs_nfs)
1968 goto error_0;
1969
David Howells6aaca562006-08-22 20:06:13 -04001970 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001971 p = proc_create("servers", S_IFREG|S_IRUGO,
1972 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001973 if (!p)
1974 goto error_1;
1975
David Howells6aaca562006-08-22 20:06:13 -04001976 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001977 p = proc_create("volumes", S_IFREG|S_IRUGO,
1978 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001979 if (!p)
1980 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001981 return 0;
1982
1983error_2:
1984 remove_proc_entry("servers", proc_fs_nfs);
1985error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001986 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001987error_0:
1988 return -ENOMEM;
1989}
1990
1991/*
1992 * clean up the /proc/fs/nfsfs/ directory
1993 */
1994void nfs_fs_proc_exit(void)
1995{
1996 remove_proc_entry("volumes", proc_fs_nfs);
1997 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001998 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001999}
2000
2001#endif /* CONFIG_PROC_FS */
Trond Myklebustb064eca22011-02-22 15:44:32 -08002002
2003module_param(nfs4_disable_idmapping, bool, 0644);
2004MODULE_PARM_DESC(nfs4_disable_idmapping,
2005 "Turn off NFSv4 idmapping when using 'sec=sys'");