blob: 351b71187b38f3dc0bc48bde08e12f202e374ad0 [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"
David Howells24c8dbb2006-08-22 20:06:10 -040051
52#define NFSDBG_FACILITY NFSDBG_CLIENT
53
54static DEFINE_SPINLOCK(nfs_client_lock);
55static LIST_HEAD(nfs_client_list);
David Howells54ceac42006-08-22 20:06:13 -040056static LIST_HEAD(nfs_volume_list);
David Howells24c8dbb2006-08-22 20:06:10 -040057static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq);
58
59/*
David Howells5006a762006-08-22 20:06:12 -040060 * RPC cruft for NFS
61 */
62static struct rpc_version *nfs_version[5] = {
63 [2] = &nfs_version2,
64#ifdef CONFIG_NFS_V3
65 [3] = &nfs_version3,
66#endif
67#ifdef CONFIG_NFS_V4
68 [4] = &nfs_version4,
69#endif
70};
71
72struct rpc_program nfs_program = {
73 .name = "nfs",
74 .number = NFS_PROGRAM,
75 .nrvers = ARRAY_SIZE(nfs_version),
76 .version = nfs_version,
77 .stats = &nfs_rpcstat,
78 .pipe_dir_name = "/nfs",
79};
80
81struct rpc_stat nfs_rpcstat = {
82 .program = &nfs_program
83};
84
85
86#ifdef CONFIG_NFS_V3_ACL
87static struct rpc_stat nfsacl_rpcstat = { &nfsacl_program };
88static struct rpc_version * nfsacl_version[] = {
89 [3] = &nfsacl_version3,
90};
91
92struct rpc_program nfsacl_program = {
93 .name = "nfsacl",
94 .number = NFS_ACL_PROGRAM,
95 .nrvers = ARRAY_SIZE(nfsacl_version),
96 .version = nfsacl_version,
97 .stats = &nfsacl_rpcstat,
98};
99#endif /* CONFIG_NFS_V3_ACL */
100
Trond Myklebust3a498022007-12-14 14:56:04 -0500101struct nfs_client_initdata {
102 const char *hostname;
Chuck Leverd7422c42007-12-10 14:58:51 -0500103 const struct sockaddr *addr;
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500104 size_t addrlen;
Trond Myklebust40c553192007-12-14 14:56:07 -0500105 const struct nfs_rpc_ops *rpc_ops;
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500106 int proto;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400107 u32 minorversion;
Trond Myklebust3a498022007-12-14 14:56:04 -0500108};
109
David Howells5006a762006-08-22 20:06:12 -0400110/*
David Howells24c8dbb2006-08-22 20:06:10 -0400111 * Allocate a shared client record
112 *
113 * Since these are allocated/deallocated very rarely, we don't
114 * bother putting them in a slab cache...
115 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500116static struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400117{
118 struct nfs_client *clp;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400119 struct rpc_cred *cred;
Chuck Levera21bdd92009-06-17 18:02:10 -0700120 int err = -ENOMEM;
David Howells24c8dbb2006-08-22 20:06:10 -0400121
122 if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL)
123 goto error_0;
124
Trond Myklebust40c553192007-12-14 14:56:07 -0500125 clp->rpc_ops = cl_init->rpc_ops;
126
David Howells24c8dbb2006-08-22 20:06:10 -0400127 atomic_set(&clp->cl_count, 1);
128 clp->cl_cons_state = NFS_CS_INITING;
129
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500130 memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen);
131 clp->cl_addrlen = cl_init->addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -0400132
Trond Myklebust3a498022007-12-14 14:56:04 -0500133 if (cl_init->hostname) {
Chuck Levera21bdd92009-06-17 18:02:10 -0700134 err = -ENOMEM;
Trond Myklebust3a498022007-12-14 14:56:04 -0500135 clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL);
David Howells24c8dbb2006-08-22 20:06:10 -0400136 if (!clp->cl_hostname)
Benny Halevy71468512009-04-01 09:22:56 -0400137 goto error_cleanup;
David Howells24c8dbb2006-08-22 20:06:10 -0400138 }
139
140 INIT_LIST_HEAD(&clp->cl_superblocks);
141 clp->cl_rpcclient = ERR_PTR(-EINVAL);
142
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500143 clp->cl_proto = cl_init->proto;
144
David Howells24c8dbb2006-08-22 20:06:10 -0400145#ifdef CONFIG_NFS_V4
David Howells24c8dbb2006-08-22 20:06:10 -0400146 INIT_LIST_HEAD(&clp->cl_delegations);
David Howells24c8dbb2006-08-22 20:06:10 -0400147 spin_lock_init(&clp->cl_lock);
David Howells65f27f32006-11-22 14:55:48 +0000148 INIT_DELAYED_WORK(&clp->cl_renewd, nfs4_renew_state);
David Howells24c8dbb2006-08-22 20:06:10 -0400149 rpc_init_wait_queue(&clp->cl_rpcwaitq, "NFS client");
150 clp->cl_boot_time = CURRENT_TIME;
151 clp->cl_state = 1 << NFS4CLNT_LEASE_EXPIRED;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400152 clp->cl_minorversion = cl_init->minorversion;
Trond Myklebust97dc1352010-06-16 09:52:26 -0400153 clp->cl_mvops = nfs_v4_minor_ops[cl_init->minorversion];
David Howells24c8dbb2006-08-22 20:06:10 -0400154#endif
Trond Myklebust7c67db32008-04-07 20:50:11 -0400155 cred = rpc_lookup_machine_cred();
156 if (!IS_ERR(cred))
157 clp->cl_machine_cred = cred;
David Howells24c8dbb2006-08-22 20:06:10 -0400158
David Howells14727282009-04-03 16:42:42 +0100159 nfs_fscache_get_client_cookie(clp);
160
David Howells24c8dbb2006-08-22 20:06:10 -0400161 return clp;
162
Benny Halevy71468512009-04-01 09:22:56 -0400163error_cleanup:
David Howells24c8dbb2006-08-22 20:06:10 -0400164 kfree(clp);
165error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700166 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400167}
168
Trond Myklebust5dd31772006-08-24 01:03:05 -0400169#ifdef CONFIG_NFS_V4
Benny Halevy9bdaa862009-04-01 09:22:55 -0400170/*
Andy Adamson557134a2009-04-01 09:21:53 -0400171 * Clears/puts all minor version specific parts from an nfs_client struct
172 * reverting it to minorversion 0.
173 */
174static void nfs4_clear_client_minor_version(struct nfs_client *clp)
175{
176#ifdef CONFIG_NFS_V4_1
177 if (nfs4_has_session(clp)) {
178 nfs4_destroy_session(clp->cl_session);
179 clp->cl_session = NULL;
180 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400181
Trond Myklebust97dc1352010-06-16 09:52:26 -0400182 clp->cl_mvops = nfs_v4_minor_ops[0];
Andy Adamson557134a2009-04-01 09:21:53 -0400183#endif /* CONFIG_NFS_V4_1 */
184}
185
186/*
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800187 * Destroy the NFS4 callback service
188 */
189static void nfs4_destroy_callback(struct nfs_client *clp)
190{
191 if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
Trond Myklebust97dc1352010-06-16 09:52:26 -0400192 nfs_callback_down(clp->cl_mvops->minor_version);
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800193}
194
195static void nfs4_shutdown_client(struct nfs_client *clp)
196{
197 if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state))
198 nfs4_kill_renewd(clp);
199 nfs4_clear_client_minor_version(clp);
200 nfs4_destroy_callback(clp);
201 if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state))
202 nfs_idmap_delete(clp);
203
204 rpc_destroy_wait_queue(&clp->cl_rpcwaitq);
205}
206#else
207static void nfs4_shutdown_client(struct nfs_client *clp)
208{
209}
210#endif /* CONFIG_NFS_V4 */
211
212/*
David Howells24c8dbb2006-08-22 20:06:10 -0400213 * Destroy a shared client record
214 */
215static void nfs_free_client(struct nfs_client *clp)
216{
Trond Myklebust40c553192007-12-14 14:56:07 -0500217 dprintk("--> nfs_free_client(%u)\n", clp->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400218
Trond Myklebust5dd31772006-08-24 01:03:05 -0400219 nfs4_shutdown_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400220
David Howells14727282009-04-03 16:42:42 +0100221 nfs_fscache_release_client_cookie(clp);
222
David Howells24c8dbb2006-08-22 20:06:10 -0400223 /* -EIO all pending I/O */
224 if (!IS_ERR(clp->cl_rpcclient))
225 rpc_shutdown_client(clp->cl_rpcclient);
226
Trond Myklebust7c67db32008-04-07 20:50:11 -0400227 if (clp->cl_machine_cred != NULL)
228 put_rpccred(clp->cl_machine_cred);
229
David Howells24c8dbb2006-08-22 20:06:10 -0400230 kfree(clp->cl_hostname);
231 kfree(clp);
232
233 dprintk("<-- nfs_free_client()\n");
234}
235
236/*
237 * Release a reference to a shared client record
238 */
239void nfs_put_client(struct nfs_client *clp)
240{
David Howells27ba8512006-07-30 14:40:56 -0400241 if (!clp)
242 return;
243
David Howells24c8dbb2006-08-22 20:06:10 -0400244 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count));
245
246 if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) {
247 list_del(&clp->cl_share_link);
248 spin_unlock(&nfs_client_lock);
249
250 BUG_ON(!list_empty(&clp->cl_superblocks));
251
252 nfs_free_client(clp);
253 }
254}
255
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500256#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400257/*
258 * Test if two ip6 socket addresses refer to the same socket by
259 * comparing relevant fields. The padding bytes specifically, are not
260 * compared. sin6_flowinfo is not compared because it only affects QoS
261 * and sin6_scope_id is only compared if the address is "link local"
262 * because "link local" addresses need only be unique to a specific
263 * link. Conversely, ordinary unicast addresses might have different
264 * sin6_scope_id.
265 *
266 * The caller should ensure both socket addresses are AF_INET6.
267 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400268static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
269 const struct sockaddr *sa2)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400270{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400271 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
272 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400273
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400274 if (ipv6_addr_scope(&sin1->sin6_addr) == IPV6_ADDR_SCOPE_LINKLOCAL &&
275 sin1->sin6_scope_id != sin2->sin6_scope_id)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400276 return 0;
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500277
Trond Myklebustb20d37c2010-09-12 19:55:26 -0400278 return ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr);
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500279}
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400280#else /* !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE) */
281static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
282 const struct sockaddr *sa2)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400283{
284 return 0;
285}
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500286#endif
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500287
David Howells24c8dbb2006-08-22 20:06:10 -0400288/*
Ian Dalld7371c42009-03-10 20:33:22 -0400289 * Test if two ip4 socket addresses refer to the same socket, by
290 * comparing relevant fields. The padding bytes specifically, are
291 * not compared.
292 *
293 * The caller should ensure both socket addresses are AF_INET.
294 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400295static int nfs_sockaddr_match_ipaddr4(const struct sockaddr *sa1,
296 const struct sockaddr *sa2)
297{
298 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
299 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
300
301 return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr;
302}
303
304static int nfs_sockaddr_cmp_ip6(const struct sockaddr *sa1,
305 const struct sockaddr *sa2)
306{
307 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
308 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
309
310 return nfs_sockaddr_match_ipaddr6(sa1, sa2) &&
311 (sin1->sin6_port == sin2->sin6_port);
312}
313
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400314static int nfs_sockaddr_cmp_ip4(const struct sockaddr *sa1,
315 const struct sockaddr *sa2)
Ian Dalld7371c42009-03-10 20:33:22 -0400316{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400317 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
318 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400319
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400320 return nfs_sockaddr_match_ipaddr4(sa1, sa2) &&
321 (sin1->sin_port == sin2->sin_port);
Ian Dalld7371c42009-03-10 20:33:22 -0400322}
323
324/*
Ian Dalld7371c42009-03-10 20:33:22 -0400325 * Test if two socket addresses represent the same actual socket,
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400326 * by comparing (only) relevant fields, excluding the port number.
327 */
328static int nfs_sockaddr_match_ipaddr(const struct sockaddr *sa1,
329 const struct sockaddr *sa2)
330{
331 if (sa1->sa_family != sa2->sa_family)
332 return 0;
333
334 switch (sa1->sa_family) {
335 case AF_INET:
336 return nfs_sockaddr_match_ipaddr4(sa1, sa2);
337 case AF_INET6:
338 return nfs_sockaddr_match_ipaddr6(sa1, sa2);
339 }
340 return 0;
341}
342
343/*
344 * Test if two socket addresses represent the same actual socket,
345 * by comparing (only) relevant fields, including the port number.
Ian Dalld7371c42009-03-10 20:33:22 -0400346 */
347static int nfs_sockaddr_cmp(const struct sockaddr *sa1,
348 const struct sockaddr *sa2)
349{
350 if (sa1->sa_family != sa2->sa_family)
351 return 0;
352
353 switch (sa1->sa_family) {
354 case AF_INET:
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400355 return nfs_sockaddr_cmp_ip4(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400356 case AF_INET6:
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400357 return nfs_sockaddr_cmp_ip6(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400358 }
359 return 0;
360}
361
362/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500363 * Find a client by IP address and protocol version
364 * - returns NULL if no such client
David Howells24c8dbb2006-08-22 20:06:10 -0400365 */
Chuck Leverff052642007-12-10 14:58:44 -0500366struct nfs_client *nfs_find_client(const struct sockaddr *addr, u32 nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500367{
368 struct nfs_client *clp;
369
370 spin_lock(&nfs_client_lock);
371 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500372 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
373
Trond Myklebustc81468a2007-12-14 14:56:05 -0500374 /* Don't match clients that failed to initialise properly */
Andy Adamson76db6d92009-04-01 09:22:38 -0400375 if (!(clp->cl_cons_state == NFS_CS_READY ||
376 clp->cl_cons_state == NFS_CS_SESSION_INITING))
Trond Myklebustc81468a2007-12-14 14:56:05 -0500377 continue;
378
379 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500380 if (clp->rpc_ops->version != nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500381 continue;
382
383 /* Match only the IP address, not the port number */
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500384 if (!nfs_sockaddr_match_ipaddr(addr, clap))
Trond Myklebustc81468a2007-12-14 14:56:05 -0500385 continue;
386
387 atomic_inc(&clp->cl_count);
388 spin_unlock(&nfs_client_lock);
389 return clp;
390 }
391 spin_unlock(&nfs_client_lock);
392 return NULL;
393}
394
395/*
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500396 * Find a client by IP address and protocol version
397 * - returns NULL if no such client
398 */
399struct nfs_client *nfs_find_client_next(struct nfs_client *clp)
400{
401 struct sockaddr *sap = (struct sockaddr *)&clp->cl_addr;
402 u32 nfsvers = clp->rpc_ops->version;
403
404 spin_lock(&nfs_client_lock);
405 list_for_each_entry_continue(clp, &nfs_client_list, cl_share_link) {
406 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
407
408 /* Don't match clients that failed to initialise properly */
409 if (clp->cl_cons_state != NFS_CS_READY)
410 continue;
411
412 /* Different NFS versions cannot share the same nfs_client */
413 if (clp->rpc_ops->version != nfsvers)
414 continue;
415
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500416 /* Match only the IP address, not the port number */
417 if (!nfs_sockaddr_match_ipaddr(sap, clap))
418 continue;
419
420 atomic_inc(&clp->cl_count);
421 spin_unlock(&nfs_client_lock);
422 return clp;
423 }
424 spin_unlock(&nfs_client_lock);
425 return NULL;
426}
427
428/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500429 * Find an nfs_client on the list that matches the initialisation data
430 * that is supplied.
431 */
432static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400433{
434 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400435 const struct sockaddr *sap = data->addr;
David Howells24c8dbb2006-08-22 20:06:10 -0400436
437 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400438 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700439 /* Don't match clients that failed to initialise properly */
440 if (clp->cl_cons_state < 0)
441 continue;
442
David Howells24c8dbb2006-08-22 20:06:10 -0400443 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500444 if (clp->rpc_ops != data->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400445 continue;
446
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500447 if (clp->cl_proto != data->proto)
448 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400449 /* Match nfsv4 minorversion */
450 if (clp->cl_minorversion != data->minorversion)
451 continue;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500452 /* Match the full socket address */
Ian Dalld7371c42009-03-10 20:33:22 -0400453 if (!nfs_sockaddr_cmp(sap, clap))
David Howells24c8dbb2006-08-22 20:06:10 -0400454 continue;
455
Trond Myklebustc81468a2007-12-14 14:56:05 -0500456 atomic_inc(&clp->cl_count);
457 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400458 }
David Howells24c8dbb2006-08-22 20:06:10 -0400459 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400460}
461
462/*
463 * Look up a client by IP address and protocol version
464 * - creates a new record if one doesn't yet exist
465 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500466static struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400467{
468 struct nfs_client *clp, *new = NULL;
469 int error;
470
Chuck Leverd7422c42007-12-10 14:58:51 -0500471 dprintk("--> nfs_get_client(%s,v%u)\n",
472 cl_init->hostname ?: "", cl_init->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400473
474 /* see if the client already exists */
475 do {
476 spin_lock(&nfs_client_lock);
477
Trond Myklebustc81468a2007-12-14 14:56:05 -0500478 clp = nfs_match_client(cl_init);
David Howells24c8dbb2006-08-22 20:06:10 -0400479 if (clp)
480 goto found_client;
481 if (new)
482 goto install_client;
483
484 spin_unlock(&nfs_client_lock);
485
Trond Myklebust3a498022007-12-14 14:56:04 -0500486 new = nfs_alloc_client(cl_init);
Chuck Levera21bdd92009-06-17 18:02:10 -0700487 } while (!IS_ERR(new));
David Howells24c8dbb2006-08-22 20:06:10 -0400488
Chuck Levera21bdd92009-06-17 18:02:10 -0700489 dprintk("--> nfs_get_client() = %ld [failed]\n", PTR_ERR(new));
490 return new;
David Howells24c8dbb2006-08-22 20:06:10 -0400491
492 /* install a new client and return with it unready */
493install_client:
494 clp = new;
495 list_add(&clp->cl_share_link, &nfs_client_list);
496 spin_unlock(&nfs_client_lock);
497 dprintk("--> nfs_get_client() = %p [new]\n", clp);
498 return clp;
499
500 /* found an existing client
501 * - make sure it's ready before returning
502 */
503found_client:
504 spin_unlock(&nfs_client_lock);
505
506 if (new)
507 nfs_free_client(new);
508
Matthew Wilcox150030b2007-12-06 16:24:39 -0500509 error = wait_event_killable(nfs_client_active_wq,
Andy Adamson76db6d92009-04-01 09:22:38 -0400510 clp->cl_cons_state < NFS_CS_INITING);
Trond Myklebust0bae89e2006-10-08 14:33:24 -0400511 if (error < 0) {
512 nfs_put_client(clp);
513 return ERR_PTR(-ERESTARTSYS);
David Howells24c8dbb2006-08-22 20:06:10 -0400514 }
515
516 if (clp->cl_cons_state < NFS_CS_READY) {
517 error = clp->cl_cons_state;
518 nfs_put_client(clp);
519 return ERR_PTR(error);
520 }
521
David Howells54ceac42006-08-22 20:06:13 -0400522 BUG_ON(clp->cl_cons_state != NFS_CS_READY);
523
David Howells24c8dbb2006-08-22 20:06:10 -0400524 dprintk("--> nfs_get_client() = %p [share]\n", clp);
525 return clp;
526}
527
528/*
529 * Mark a server as ready or failed
530 */
Andy Adamson76db6d92009-04-01 09:22:38 -0400531void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400532{
533 clp->cl_cons_state = state;
534 wake_up_all(&nfs_client_active_wq);
535}
David Howells5006a762006-08-22 20:06:12 -0400536
537/*
Benny Halevy008f55d2009-04-01 09:22:50 -0400538 * With sessions, the client is not marked ready until after a
539 * successful EXCHANGE_ID and CREATE_SESSION.
540 *
541 * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate
542 * other versions of NFS can be tried.
543 */
544int nfs4_check_client_ready(struct nfs_client *clp)
545{
546 if (!nfs4_has_session(clp))
547 return 0;
548 if (clp->cl_cons_state < NFS_CS_READY)
549 return -EPROTONOSUPPORT;
550 return 0;
551}
552
553/*
David Howells5006a762006-08-22 20:06:12 -0400554 * Initialise the timeout values for a connection
555 */
556static void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
557 unsigned int timeo, unsigned int retrans)
558{
559 to->to_initval = timeo * HZ / 10;
560 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400561
562 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400563 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400564 case XPRT_TRANSPORT_RDMA:
Trond Myklebust259875e2008-07-02 14:43:47 -0400565 if (to->to_retries == 0)
566 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500567 if (to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400568 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400569 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
570 to->to_initval = NFS_MAX_TCP_TIMEOUT;
571 to->to_increment = to->to_initval;
572 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500573 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
574 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
575 if (to->to_maxval < to->to_initval)
576 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400577 to->to_exponential = 0;
578 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400579 case XPRT_TRANSPORT_UDP:
Trond Myklebust259875e2008-07-02 14:43:47 -0400580 if (to->to_retries == 0)
581 to->to_retries = NFS_DEF_UDP_RETRANS;
David Howells5006a762006-08-22 20:06:12 -0400582 if (!to->to_initval)
Trond Myklebust259875e2008-07-02 14:43:47 -0400583 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400584 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
585 to->to_initval = NFS_MAX_UDP_TIMEOUT;
586 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
587 to->to_exponential = 1;
588 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400589 default:
590 BUG();
David Howells5006a762006-08-22 20:06:12 -0400591 }
592}
593
594/*
595 * Create an RPC client handle
596 */
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500597static int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500598 const struct rpc_timeout *timeparms,
599 rpc_authflavor_t flavor,
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500600 int discrtry, int noresvport)
David Howells5006a762006-08-22 20:06:12 -0400601{
David Howells5006a762006-08-22 20:06:12 -0400602 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400603 struct rpc_create_args args = {
Pavel Emelyanovc653ce32010-09-29 16:04:45 +0400604 .net = &init_net,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500605 .protocol = clp->cl_proto,
Chuck Lever41877d22006-08-22 20:06:20 -0400606 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500607 .addrsize = clp->cl_addrlen,
Trond Myklebust33170232007-12-20 16:03:59 -0500608 .timeout = timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400609 .servername = clp->cl_hostname,
610 .program = &nfs_program,
611 .version = clp->rpc_ops->version,
612 .authflavor = flavor,
613 };
David Howells5006a762006-08-22 20:06:12 -0400614
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500615 if (discrtry)
616 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
617 if (noresvport)
618 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
619
David Howells5006a762006-08-22 20:06:12 -0400620 if (!IS_ERR(clp->cl_rpcclient))
621 return 0;
622
Chuck Lever41877d22006-08-22 20:06:20 -0400623 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400624 if (IS_ERR(clnt)) {
625 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700626 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400627 return PTR_ERR(clnt);
628 }
629
David Howells5006a762006-08-22 20:06:12 -0400630 clp->cl_rpcclient = clnt;
631 return 0;
632}
David Howells54ceac42006-08-22 20:06:13 -0400633
634/*
635 * Version 2 or 3 client destruction
636 */
637static void nfs_destroy_server(struct nfs_server *server)
638{
David Howells54ceac42006-08-22 20:06:13 -0400639 if (!(server->flags & NFS_MOUNT_NONLM))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500640 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400641}
642
643/*
644 * Version 2 or 3 lockd setup
645 */
646static int nfs_start_lockd(struct nfs_server *server)
647{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500648 struct nlm_host *host;
649 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500650 struct nlmclnt_initdata nlm_init = {
651 .hostname = clp->cl_hostname,
652 .address = (struct sockaddr *)&clp->cl_addr,
653 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500654 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500655 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
656 1 : 0,
Chuck Lever883bb162008-01-15 16:04:20 -0500657 };
David Howells54ceac42006-08-22 20:06:13 -0400658
Chuck Lever883bb162008-01-15 16:04:20 -0500659 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500660 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400661 if (server->flags & NFS_MOUNT_NONLM)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500662 return 0;
663
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400664 switch (clp->cl_proto) {
665 default:
666 nlm_init.protocol = IPPROTO_TCP;
667 break;
668 case XPRT_TRANSPORT_UDP:
669 nlm_init.protocol = IPPROTO_UDP;
670 }
671
Chuck Lever883bb162008-01-15 16:04:20 -0500672 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500673 if (IS_ERR(host))
674 return PTR_ERR(host);
675
676 server->nlm_host = host;
677 server->destroy = nfs_destroy_server;
678 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400679}
680
681/*
682 * Initialise an NFSv3 ACL client connection
683 */
684#ifdef CONFIG_NFS_V3_ACL
685static void nfs_init_server_aclclient(struct nfs_server *server)
686{
Trond Myklebust40c553192007-12-14 14:56:07 -0500687 if (server->nfs_client->rpc_ops->version != 3)
David Howells54ceac42006-08-22 20:06:13 -0400688 goto out_noacl;
689 if (server->flags & NFS_MOUNT_NOACL)
690 goto out_noacl;
691
692 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
693 if (IS_ERR(server->client_acl))
694 goto out_noacl;
695
696 /* No errors! Assume that Sun nfsacls are supported */
697 server->caps |= NFS_CAP_ACLS;
698 return;
699
700out_noacl:
701 server->caps &= ~NFS_CAP_ACLS;
702}
703#else
704static inline void nfs_init_server_aclclient(struct nfs_server *server)
705{
706 server->flags &= ~NFS_MOUNT_NOACL;
707 server->caps &= ~NFS_CAP_ACLS;
708}
709#endif
710
711/*
712 * Create a general RPC client
713 */
Trond Myklebust33170232007-12-20 16:03:59 -0500714static int nfs_init_server_rpcclient(struct nfs_server *server,
715 const struct rpc_timeout *timeo,
716 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400717{
718 struct nfs_client *clp = server->nfs_client;
719
720 server->client = rpc_clone_client(clp->cl_rpcclient);
721 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700722 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400723 return PTR_ERR(server->client);
724 }
725
Trond Myklebust33170232007-12-20 16:03:59 -0500726 memcpy(&server->client->cl_timeout_default,
727 timeo,
728 sizeof(server->client->cl_timeout_default));
729 server->client->cl_timeout = &server->client->cl_timeout_default;
730
David Howells54ceac42006-08-22 20:06:13 -0400731 if (pseudoflavour != clp->cl_rpcclient->cl_auth->au_flavor) {
732 struct rpc_auth *auth;
733
734 auth = rpcauth_create(pseudoflavour, server->client);
735 if (IS_ERR(auth)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700736 dprintk("%s: couldn't create credcache!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400737 return PTR_ERR(auth);
738 }
739 }
740 server->client->cl_softrtry = 0;
741 if (server->flags & NFS_MOUNT_SOFT)
742 server->client->cl_softrtry = 1;
743
David Howells54ceac42006-08-22 20:06:13 -0400744 return 0;
745}
746
747/*
748 * Initialise an NFS2 or NFS3 client
749 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400750static int nfs_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500751 const struct rpc_timeout *timeparms,
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400752 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400753{
David Howells54ceac42006-08-22 20:06:13 -0400754 int error;
755
756 if (clp->cl_cons_state == NFS_CS_READY) {
757 /* the client is already initialised */
758 dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp);
759 return 0;
760 }
761
David Howells54ceac42006-08-22 20:06:13 -0400762 /*
763 * Create a client RPC handle for doing FSSTAT with UNIX auth only
764 * - RFC 2623, sec 2.3.2
765 */
Chuck Leverd7403512008-12-23 15:21:37 -0500766 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX,
767 0, data->flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -0400768 if (error < 0)
769 goto error;
770 nfs_mark_client_ready(clp, NFS_CS_READY);
771 return 0;
772
773error:
774 nfs_mark_client_ready(clp, error);
775 dprintk("<-- nfs_init_client() = xerror %d\n", error);
776 return error;
777}
778
779/*
780 * Create a version 2 or 3 client
781 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400782static int nfs_init_server(struct nfs_server *server,
783 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400784{
Trond Myklebust3a498022007-12-14 14:56:04 -0500785 struct nfs_client_initdata cl_init = {
786 .hostname = data->nfs_server.hostname,
Chuck Leverd7422c42007-12-10 14:58:51 -0500787 .addr = (const struct sockaddr *)&data->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -0500788 .addrlen = data->nfs_server.addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -0500789 .rpc_ops = &nfs_v2_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500790 .proto = data->nfs_server.protocol,
Trond Myklebust3a498022007-12-14 14:56:04 -0500791 };
Trond Myklebust33170232007-12-20 16:03:59 -0500792 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -0400793 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500794 int error;
David Howells54ceac42006-08-22 20:06:13 -0400795
796 dprintk("--> nfs_init_server()\n");
797
798#ifdef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400799 if (data->version == 3)
Trond Myklebust40c553192007-12-14 14:56:07 -0500800 cl_init.rpc_ops = &nfs_v3_clientops;
David Howells54ceac42006-08-22 20:06:13 -0400801#endif
802
803 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -0500804 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -0400805 if (IS_ERR(clp)) {
806 dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp));
807 return PTR_ERR(clp);
808 }
809
Trond Myklebust33170232007-12-20 16:03:59 -0500810 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
811 data->timeo, data->retrans);
812 error = nfs_init_client(clp, &timeparms, data);
David Howells54ceac42006-08-22 20:06:13 -0400813 if (error < 0)
814 goto error;
815
816 server->nfs_client = clp;
817
818 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -0400819 server->flags = data->flags;
David Howellsb797cac2009-04-03 16:42:48 +0100820 server->options = data->options;
Trond Myklebust62ab460c2009-08-09 15:06:19 -0400821 server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
822 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP|
823 NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME;
David Howells54ceac42006-08-22 20:06:13 -0400824
825 if (data->rsize)
826 server->rsize = nfs_block_size(data->rsize, NULL);
827 if (data->wsize)
828 server->wsize = nfs_block_size(data->wsize, NULL);
829
830 server->acregmin = data->acregmin * HZ;
831 server->acregmax = data->acregmax * HZ;
832 server->acdirmin = data->acdirmin * HZ;
833 server->acdirmax = data->acdirmax * HZ;
834
835 /* Start lockd here, before we might error out */
836 error = nfs_start_lockd(server);
837 if (error < 0)
838 goto error;
839
Chuck Leverf22d6d72008-03-14 14:10:22 -0400840 server->port = data->nfs_server.port;
841
Trond Myklebust33170232007-12-20 16:03:59 -0500842 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -0400843 if (error < 0)
844 goto error;
845
Chuck Lever3f8400d2008-03-14 14:10:30 -0400846 /* Preserve the values of mount_server-related mount options */
847 if (data->mount_server.addrlen) {
848 memcpy(&server->mountd_address, &data->mount_server.address,
849 data->mount_server.addrlen);
850 server->mountd_addrlen = data->mount_server.addrlen;
851 }
852 server->mountd_version = data->mount_server.version;
853 server->mountd_port = data->mount_server.port;
854 server->mountd_protocol = data->mount_server.protocol;
855
David Howells54ceac42006-08-22 20:06:13 -0400856 server->namelen = data->namlen;
857 /* Create a client RPC handle for the NFSv3 ACL management interface */
858 nfs_init_server_aclclient(server);
David Howells54ceac42006-08-22 20:06:13 -0400859 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp);
860 return 0;
861
862error:
863 server->nfs_client = NULL;
864 nfs_put_client(clp);
865 dprintk("<-- nfs_init_server() = xerror %d\n", error);
866 return error;
867}
868
869/*
870 * Load up the server record from information gained in an fsinfo record
871 */
872static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *fsinfo)
873{
874 unsigned long max_rpc_payload;
875
876 /* Work out a lot of parameters */
877 if (server->rsize == 0)
878 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
879 if (server->wsize == 0)
880 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
881
882 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
883 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
884 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
885 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
886
887 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
888 if (server->rsize > max_rpc_payload)
889 server->rsize = max_rpc_payload;
890 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
891 server->rsize = NFS_MAX_FILE_IO_SIZE;
892 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700893
Jens Axboed9938312009-06-12 14:45:52 +0200894 server->backing_dev_info.name = "nfs";
David Howells54ceac42006-08-22 20:06:13 -0400895 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
896
897 if (server->wsize > max_rpc_payload)
898 server->wsize = max_rpc_payload;
899 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
900 server->wsize = NFS_MAX_FILE_IO_SIZE;
901 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
902 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
903
904 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
905 if (server->dtsize > PAGE_CACHE_SIZE)
906 server->dtsize = PAGE_CACHE_SIZE;
907 if (server->dtsize > server->rsize)
908 server->dtsize = server->rsize;
909
910 if (server->flags & NFS_MOUNT_NOAC) {
911 server->acregmin = server->acregmax = 0;
912 server->acdirmin = server->acdirmax = 0;
913 }
914
915 server->maxfilesize = fsinfo->maxfilesize;
916
917 /* We're airborne Set socket buffersize */
918 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
919}
920
921/*
922 * Probe filesystem information, including the FSID on v2/v3
923 */
924static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
925{
926 struct nfs_fsinfo fsinfo;
927 struct nfs_client *clp = server->nfs_client;
928 int error;
929
930 dprintk("--> nfs_probe_fsinfo()\n");
931
932 if (clp->rpc_ops->set_capabilities != NULL) {
933 error = clp->rpc_ops->set_capabilities(server, mntfh);
934 if (error < 0)
935 goto out_error;
936 }
937
938 fsinfo.fattr = fattr;
David Howells54ceac42006-08-22 20:06:13 -0400939 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
940 if (error < 0)
941 goto out_error;
942
943 nfs_server_set_fsinfo(server, &fsinfo);
944
945 /* Get some general file system info */
946 if (server->namelen == 0) {
947 struct nfs_pathconf pathinfo;
948
949 pathinfo.fattr = fattr;
950 nfs_fattr_init(fattr);
951
952 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
953 server->namelen = pathinfo.max_namelen;
954 }
955
956 dprintk("<-- nfs_probe_fsinfo() = 0\n");
957 return 0;
958
959out_error:
960 dprintk("nfs_probe_fsinfo: error = %d\n", -error);
961 return error;
962}
963
964/*
965 * Copy useful information when duplicating a server record
966 */
967static void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
968{
969 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -0400970 target->rsize = source->rsize;
971 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -0400972 target->acregmin = source->acregmin;
973 target->acregmax = source->acregmax;
974 target->acdirmin = source->acdirmin;
975 target->acdirmax = source->acdirmax;
976 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400977 target->options = source->options;
David Howells54ceac42006-08-22 20:06:13 -0400978}
979
980/*
981 * Allocate and initialise a server record
982 */
983static struct nfs_server *nfs_alloc_server(void)
984{
985 struct nfs_server *server;
986
987 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
988 if (!server)
989 return NULL;
990
991 server->client = server->client_acl = ERR_PTR(-EINVAL);
992
993 /* Zero out the NFS state stuff */
994 INIT_LIST_HEAD(&server->client_link);
995 INIT_LIST_HEAD(&server->master_link);
996
Steve Dicksonef818a22007-11-08 04:05:04 -0500997 atomic_set(&server->active, 0);
998
David Howells54ceac42006-08-22 20:06:13 -0400999 server->io_stats = nfs_alloc_iostats();
1000 if (!server->io_stats) {
1001 kfree(server);
1002 return NULL;
1003 }
1004
Jens Axboe48d07642009-09-21 09:59:39 +02001005 if (bdi_init(&server->backing_dev_info)) {
1006 nfs_free_iostats(server->io_stats);
1007 kfree(server);
1008 return NULL;
1009 }
1010
David Howells54ceac42006-08-22 20:06:13 -04001011 return server;
1012}
1013
1014/*
1015 * Free up a server record
1016 */
1017void nfs_free_server(struct nfs_server *server)
1018{
1019 dprintk("--> nfs_free_server()\n");
1020
1021 spin_lock(&nfs_client_lock);
1022 list_del(&server->client_link);
1023 list_del(&server->master_link);
1024 spin_unlock(&nfs_client_lock);
1025
1026 if (server->destroy != NULL)
1027 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -05001028
1029 if (!IS_ERR(server->client_acl))
1030 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -04001031 if (!IS_ERR(server->client))
1032 rpc_shutdown_client(server->client);
1033
1034 nfs_put_client(server->nfs_client);
1035
1036 nfs_free_iostats(server->io_stats);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001037 bdi_destroy(&server->backing_dev_info);
David Howells54ceac42006-08-22 20:06:13 -04001038 kfree(server);
1039 nfs_release_automount_timer();
1040 dprintk("<-- nfs_free_server()\n");
1041}
1042
1043/*
1044 * Create a version 2 or 3 volume record
1045 * - keyed on server and FSID
1046 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001047struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001048 struct nfs_fh *mntfh)
1049{
1050 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001051 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -04001052 int error;
1053
1054 server = nfs_alloc_server();
1055 if (!server)
1056 return ERR_PTR(-ENOMEM);
1057
Trond Myklebustfbca7792010-04-16 16:22:46 -04001058 error = -ENOMEM;
1059 fattr = nfs_alloc_fattr();
1060 if (fattr == NULL)
1061 goto error;
1062
David Howells54ceac42006-08-22 20:06:13 -04001063 /* Get a client representation */
1064 error = nfs_init_server(server, data);
1065 if (error < 0)
1066 goto error;
1067
1068 BUG_ON(!server->nfs_client);
1069 BUG_ON(!server->nfs_client->rpc_ops);
1070 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1071
1072 /* Probe the root fh to retrieve its FSID */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001073 error = nfs_probe_fsinfo(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001074 if (error < 0)
1075 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001076 if (server->nfs_client->rpc_ops->version == 3) {
1077 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1078 server->namelen = NFS3_MAXNAMLEN;
1079 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1080 server->caps |= NFS_CAP_READDIRPLUS;
1081 } else {
1082 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1083 server->namelen = NFS2_MAXNAMLEN;
1084 }
1085
Trond Myklebustfbca7792010-04-16 16:22:46 -04001086 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1087 error = server->nfs_client->rpc_ops->getattr(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001088 if (error < 0) {
1089 dprintk("nfs_create_server: getattr error = %d\n", -error);
1090 goto error;
1091 }
1092 }
Trond Myklebustfbca7792010-04-16 16:22:46 -04001093 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -04001094
David Howells6daabf12006-08-24 15:44:16 -04001095 dprintk("Server FSID: %llx:%llx\n",
1096 (unsigned long long) server->fsid.major,
1097 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001098
David Howells54ceac42006-08-22 20:06:13 -04001099 spin_lock(&nfs_client_lock);
1100 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1101 list_add_tail(&server->master_link, &nfs_volume_list);
1102 spin_unlock(&nfs_client_lock);
1103
1104 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001105 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001106 return server;
1107
1108error:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001109 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001110 nfs_free_server(server);
1111 return ERR_PTR(error);
1112}
1113
1114#ifdef CONFIG_NFS_V4
1115/*
Benny Halevy9bdaa862009-04-01 09:22:55 -04001116 * Initialize the NFS4 callback service
1117 */
1118static int nfs4_init_callback(struct nfs_client *clp)
1119{
1120 int error;
1121
1122 if (clp->rpc_ops->version == 4) {
Andy Adamson0b5b7ae2009-04-01 09:23:15 -04001123 if (nfs4_has_session(clp)) {
1124 error = xprt_setup_backchannel(
1125 clp->cl_rpcclient->cl_xprt,
1126 NFS41_BC_MIN_CALLBACKS);
1127 if (error < 0)
1128 return error;
1129 }
1130
Trond Myklebust97dc1352010-06-16 09:52:26 -04001131 error = nfs_callback_up(clp->cl_mvops->minor_version,
Benny Halevy71468512009-04-01 09:22:56 -04001132 clp->cl_rpcclient->cl_xprt);
Benny Halevy9bdaa862009-04-01 09:22:55 -04001133 if (error < 0) {
1134 dprintk("%s: failed to start callback. Error = %d\n",
1135 __func__, error);
1136 return error;
1137 }
1138 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
1139 }
1140 return 0;
1141}
1142
1143/*
Andy Adamson557134a2009-04-01 09:21:53 -04001144 * Initialize the minor version specific parts of an NFS4 client record
1145 */
1146static int nfs4_init_client_minor_version(struct nfs_client *clp)
1147{
1148#if defined(CONFIG_NFS_V4_1)
Trond Myklebust97dc1352010-06-16 09:52:26 -04001149 if (clp->cl_mvops->minor_version) {
Andy Adamson557134a2009-04-01 09:21:53 -04001150 struct nfs4_session *session = NULL;
1151 /*
1152 * Create the session and mark it expired.
1153 * When a SEQUENCE operation encounters the expired session
1154 * it will do session recovery to initialize it.
1155 */
1156 session = nfs4_alloc_session(clp);
1157 if (!session)
1158 return -ENOMEM;
1159
1160 clp->cl_session = session;
Trond Myklebustfe74ba32010-06-16 09:52:27 -04001161 /*
1162 * The create session reply races with the server back
1163 * channel probe. Mark the client NFS_CS_SESSION_INITING
1164 * so that the client back channel can find the
1165 * nfs_client struct
1166 */
1167 clp->cl_cons_state = NFS_CS_SESSION_INITING;
Andy Adamson557134a2009-04-01 09:21:53 -04001168 }
1169#endif /* CONFIG_NFS_V4_1 */
1170
Benny Halevy71468512009-04-01 09:22:56 -04001171 return nfs4_init_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -04001172}
1173
1174/*
David Howells54ceac42006-08-22 20:06:13 -04001175 * Initialise an NFS4 client record
1176 */
1177static int nfs4_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -05001178 const struct rpc_timeout *timeparms,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001179 const char *ip_addr,
Chuck Leverd7403512008-12-23 15:21:37 -05001180 rpc_authflavor_t authflavour,
1181 int flags)
David Howells54ceac42006-08-22 20:06:13 -04001182{
1183 int error;
1184
1185 if (clp->cl_cons_state == NFS_CS_READY) {
1186 /* the client is initialised already */
1187 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
1188 return 0;
1189 }
1190
1191 /* Check NFS protocol revision and initialize RPC op vector */
1192 clp->rpc_ops = &nfs_v4_clientops;
1193
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001194 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Chuck Leverd7403512008-12-23 15:21:37 -05001195 1, flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -04001196 if (error < 0)
1197 goto error;
Ben Hutchingsf4373bf2009-10-06 15:42:18 -04001198 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -04001199
1200 error = nfs_idmap_new(clp);
1201 if (error < 0) {
1202 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001203 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -04001204 goto error;
1205 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -04001206 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -04001207
Andy Adamson557134a2009-04-01 09:21:53 -04001208 error = nfs4_init_client_minor_version(clp);
1209 if (error < 0)
1210 goto error;
1211
Andy Adamson76db6d92009-04-01 09:22:38 -04001212 if (!nfs4_has_session(clp))
1213 nfs_mark_client_ready(clp, NFS_CS_READY);
David Howells54ceac42006-08-22 20:06:13 -04001214 return 0;
1215
1216error:
1217 nfs_mark_client_ready(clp, error);
1218 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1219 return error;
1220}
1221
1222/*
1223 * Set up an NFS4 client
1224 */
1225static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001226 const char *hostname,
1227 const struct sockaddr *addr,
1228 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001229 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001230 rpc_authflavor_t authflavour,
Benny Halevy94a417f2009-04-01 09:21:49 -04001231 int proto, const struct rpc_timeout *timeparms,
1232 u32 minorversion)
David Howells54ceac42006-08-22 20:06:13 -04001233{
Trond Myklebust3a498022007-12-14 14:56:04 -05001234 struct nfs_client_initdata cl_init = {
1235 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001236 .addr = addr,
1237 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001238 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001239 .proto = proto,
Benny Halevy5aae4a92009-04-01 09:21:50 -04001240 .minorversion = minorversion,
Trond Myklebust3a498022007-12-14 14:56:04 -05001241 };
David Howells54ceac42006-08-22 20:06:13 -04001242 struct nfs_client *clp;
1243 int error;
1244
1245 dprintk("--> nfs4_set_client()\n");
1246
1247 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -05001248 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -04001249 if (IS_ERR(clp)) {
1250 error = PTR_ERR(clp);
1251 goto error;
1252 }
Chuck Leverd7403512008-12-23 15:21:37 -05001253 error = nfs4_init_client(clp, timeparms, ip_addr, authflavour,
1254 server->flags);
David Howells54ceac42006-08-22 20:06:13 -04001255 if (error < 0)
1256 goto error_put;
1257
1258 server->nfs_client = clp;
1259 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1260 return 0;
1261
1262error_put:
1263 nfs_put_client(clp);
1264error:
1265 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1266 return error;
1267}
1268
Andy Adamson557134a2009-04-01 09:21:53 -04001269
1270/*
Andy Adamson96b09e02009-04-01 09:22:33 -04001271 * Session has been established, and the client marked ready.
1272 * Set the mount rsize and wsize with negotiated fore channel
1273 * attributes which will be bound checked in nfs_server_set_fsinfo.
1274 */
1275static void nfs4_session_set_rwsize(struct nfs_server *server)
1276{
1277#ifdef CONFIG_NFS_V4_1
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001278 struct nfs4_session *sess;
1279 u32 server_resp_sz;
1280 u32 server_rqst_sz;
1281
Andy Adamson96b09e02009-04-01 09:22:33 -04001282 if (!nfs4_has_session(server->nfs_client))
1283 return;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001284 sess = server->nfs_client->cl_session;
1285 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
1286 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
1287
1288 if (server->rsize > server_resp_sz)
1289 server->rsize = server_resp_sz;
1290 if (server->wsize > server_rqst_sz)
1291 server->wsize = server_rqst_sz;
Andy Adamson96b09e02009-04-01 09:22:33 -04001292#endif /* CONFIG_NFS_V4_1 */
1293}
1294
Trond Myklebust44950b62010-06-17 11:45:12 -04001295static int nfs4_server_common_setup(struct nfs_server *server,
1296 struct nfs_fh *mntfh)
1297{
1298 struct nfs_fattr *fattr;
1299 int error;
1300
1301 BUG_ON(!server->nfs_client);
1302 BUG_ON(!server->nfs_client->rpc_ops);
1303 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1304
1305 fattr = nfs_alloc_fattr();
1306 if (fattr == NULL)
1307 return -ENOMEM;
1308
1309 /* We must ensure the session is initialised first */
1310 error = nfs4_init_session(server);
1311 if (error < 0)
1312 goto out;
1313
1314 /* Probe the root fh to retrieve its FSID and filehandle */
1315 error = nfs4_get_rootfh(server, mntfh);
1316 if (error < 0)
1317 goto out;
1318
1319 dprintk("Server FSID: %llx:%llx\n",
1320 (unsigned long long) server->fsid.major,
1321 (unsigned long long) server->fsid.minor);
1322 dprintk("Mount FH: %d\n", mntfh->size);
1323
1324 nfs4_session_set_rwsize(server);
1325
1326 error = nfs_probe_fsinfo(server, mntfh, fattr);
1327 if (error < 0)
1328 goto out;
1329
1330 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1331 server->namelen = NFS4_MAXNAMLEN;
1332
1333 spin_lock(&nfs_client_lock);
1334 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1335 list_add_tail(&server->master_link, &nfs_volume_list);
1336 spin_unlock(&nfs_client_lock);
1337
1338 server->mount_time = jiffies;
1339out:
1340 nfs_free_fattr(fattr);
1341 return error;
1342}
1343
Andy Adamson96b09e02009-04-01 09:22:33 -04001344/*
David Howells54ceac42006-08-22 20:06:13 -04001345 * Create a version 4 volume record
1346 */
1347static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001348 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001349{
Trond Myklebust33170232007-12-20 16:03:59 -05001350 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001351 int error;
1352
1353 dprintk("--> nfs4_init_server()\n");
1354
Trond Myklebust33170232007-12-20 16:03:59 -05001355 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1356 data->timeo, data->retrans);
1357
Chuck Lever542fcc32008-12-23 15:21:36 -05001358 /* Initialise the client representation from the mount data */
1359 server->flags = data->flags;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001360 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR|
1361 NFS_CAP_POSIX_LOCK;
David Howellsb797cac2009-04-03 16:42:48 +01001362 server->options = data->options;
Chuck Lever542fcc32008-12-23 15:21:36 -05001363
Trond Myklebust33170232007-12-20 16:03:59 -05001364 /* Get a client record */
1365 error = nfs4_set_client(server,
1366 data->nfs_server.hostname,
1367 (const struct sockaddr *)&data->nfs_server.address,
1368 data->nfs_server.addrlen,
1369 data->client_address,
1370 data->auth_flavors[0],
1371 data->nfs_server.protocol,
Benny Halevy94a417f2009-04-01 09:21:49 -04001372 &timeparms,
1373 data->minorversion);
Trond Myklebust33170232007-12-20 16:03:59 -05001374 if (error < 0)
1375 goto error;
1376
David Howells54ceac42006-08-22 20:06:13 -04001377 if (data->rsize)
1378 server->rsize = nfs_block_size(data->rsize, NULL);
1379 if (data->wsize)
1380 server->wsize = nfs_block_size(data->wsize, NULL);
1381
1382 server->acregmin = data->acregmin * HZ;
1383 server->acregmax = data->acregmax * HZ;
1384 server->acdirmin = data->acdirmin * HZ;
1385 server->acdirmax = data->acdirmax * HZ;
1386
Chuck Leverf22d6d72008-03-14 14:10:22 -04001387 server->port = data->nfs_server.port;
1388
Trond Myklebust33170232007-12-20 16:03:59 -05001389 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001390
Trond Myklebust33170232007-12-20 16:03:59 -05001391error:
David Howells54ceac42006-08-22 20:06:13 -04001392 /* Done */
1393 dprintk("<-- nfs4_init_server() = %d\n", error);
1394 return error;
1395}
1396
1397/*
1398 * Create a version 4 volume record
1399 * - keyed on server and FSID
1400 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001401struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001402 struct nfs_fh *mntfh)
1403{
David Howells54ceac42006-08-22 20:06:13 -04001404 struct nfs_server *server;
1405 int error;
1406
1407 dprintk("--> nfs4_create_server()\n");
1408
1409 server = nfs_alloc_server();
1410 if (!server)
1411 return ERR_PTR(-ENOMEM);
1412
David Howells54ceac42006-08-22 20:06:13 -04001413 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001414 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001415 if (error < 0)
1416 goto error;
1417
Trond Myklebust44950b62010-06-17 11:45:12 -04001418 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustfccba802009-07-21 16:48:07 -04001419 if (error < 0)
1420 goto error;
Andy Adamson557134a2009-04-01 09:21:53 -04001421
David Howells54ceac42006-08-22 20:06:13 -04001422 dprintk("<-- nfs4_create_server() = %p\n", server);
1423 return server;
1424
1425error:
1426 nfs_free_server(server);
1427 dprintk("<-- nfs4_create_server() = error %d\n", error);
1428 return ERR_PTR(error);
1429}
1430
1431/*
1432 * Create an NFS4 referral server record
1433 */
1434struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001435 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001436{
1437 struct nfs_client *parent_client;
1438 struct nfs_server *server, *parent_server;
David Howells54ceac42006-08-22 20:06:13 -04001439 int error;
1440
1441 dprintk("--> nfs4_create_referral_server()\n");
1442
1443 server = nfs_alloc_server();
1444 if (!server)
1445 return ERR_PTR(-ENOMEM);
1446
1447 parent_server = NFS_SB(data->sb);
1448 parent_client = parent_server->nfs_client;
1449
Chuck Lever542fcc32008-12-23 15:21:36 -05001450 /* Initialise the client representation from the parent server */
1451 nfs_server_copy_userdata(server, parent_server);
Trond Myklebust62ab460c2009-08-09 15:06:19 -04001452 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
Chuck Lever542fcc32008-12-23 15:21:36 -05001453
David Howells54ceac42006-08-22 20:06:13 -04001454 /* Get a client representation.
1455 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001456 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001457 data->addr,
1458 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001459 parent_client->cl_ipaddr,
1460 data->authflavor,
1461 parent_server->client->cl_xprt->prot,
Benny Halevy94a417f2009-04-01 09:21:49 -04001462 parent_server->client->cl_timeout,
Trond Myklebust97dc1352010-06-16 09:52:26 -04001463 parent_client->cl_mvops->minor_version);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001464 if (error < 0)
1465 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001466
Trond Myklebust33170232007-12-20 16:03:59 -05001467 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001468 if (error < 0)
1469 goto error;
1470
Trond Myklebust44950b62010-06-17 11:45:12 -04001471 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001472 if (error < 0)
1473 goto error;
1474
David Howells54ceac42006-08-22 20:06:13 -04001475 dprintk("<-- nfs_create_referral_server() = %p\n", server);
1476 return server;
1477
1478error:
1479 nfs_free_server(server);
1480 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
1481 return ERR_PTR(error);
1482}
1483
1484#endif /* CONFIG_NFS_V4 */
1485
1486/*
1487 * Clone an NFS2, NFS3 or NFS4 server record
1488 */
1489struct nfs_server *nfs_clone_server(struct nfs_server *source,
1490 struct nfs_fh *fh,
1491 struct nfs_fattr *fattr)
1492{
1493 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001494 struct nfs_fattr *fattr_fsinfo;
David Howells54ceac42006-08-22 20:06:13 -04001495 int error;
1496
1497 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
David Howells6daabf12006-08-24 15:44:16 -04001498 (unsigned long long) fattr->fsid.major,
1499 (unsigned long long) fattr->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001500
1501 server = nfs_alloc_server();
1502 if (!server)
1503 return ERR_PTR(-ENOMEM);
1504
Trond Myklebustfbca7792010-04-16 16:22:46 -04001505 error = -ENOMEM;
1506 fattr_fsinfo = nfs_alloc_fattr();
1507 if (fattr_fsinfo == NULL)
1508 goto out_free_server;
1509
David Howells54ceac42006-08-22 20:06:13 -04001510 /* Copy data from the source */
1511 server->nfs_client = source->nfs_client;
1512 atomic_inc(&server->nfs_client->cl_count);
1513 nfs_server_copy_userdata(server, source);
1514
1515 server->fsid = fattr->fsid;
1516
Trond Myklebust33170232007-12-20 16:03:59 -05001517 error = nfs_init_server_rpcclient(server,
1518 source->client->cl_timeout,
1519 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001520 if (error < 0)
1521 goto out_free_server;
1522 if (!IS_ERR(source->client_acl))
1523 nfs_init_server_aclclient(server);
1524
1525 /* probe the filesystem info for this server filesystem */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001526 error = nfs_probe_fsinfo(server, fh, fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001527 if (error < 0)
1528 goto out_free_server;
1529
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001530 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1531 server->namelen = NFS4_MAXNAMLEN;
1532
David Howells54ceac42006-08-22 20:06:13 -04001533 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001534 (unsigned long long) server->fsid.major,
1535 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001536
1537 error = nfs_start_lockd(server);
1538 if (error < 0)
1539 goto out_free_server;
1540
1541 spin_lock(&nfs_client_lock);
1542 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1543 list_add_tail(&server->master_link, &nfs_volume_list);
1544 spin_unlock(&nfs_client_lock);
1545
1546 server->mount_time = jiffies;
1547
Trond Myklebustfbca7792010-04-16 16:22:46 -04001548 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001549 dprintk("<-- nfs_clone_server() = %p\n", server);
1550 return server;
1551
1552out_free_server:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001553 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001554 nfs_free_server(server);
1555 dprintk("<-- nfs_clone_server() = error %d\n", error);
1556 return ERR_PTR(error);
1557}
David Howells6aaca562006-08-22 20:06:13 -04001558
1559#ifdef CONFIG_PROC_FS
1560static struct proc_dir_entry *proc_fs_nfs;
1561
1562static int nfs_server_list_open(struct inode *inode, struct file *file);
1563static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1564static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1565static void nfs_server_list_stop(struct seq_file *p, void *v);
1566static int nfs_server_list_show(struct seq_file *m, void *v);
1567
James Morris88e9d342009-09-22 16:43:43 -07001568static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001569 .start = nfs_server_list_start,
1570 .next = nfs_server_list_next,
1571 .stop = nfs_server_list_stop,
1572 .show = nfs_server_list_show,
1573};
1574
Arjan van de Ven00977a52007-02-12 00:55:34 -08001575static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001576 .open = nfs_server_list_open,
1577 .read = seq_read,
1578 .llseek = seq_lseek,
1579 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001580 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001581};
1582
1583static int nfs_volume_list_open(struct inode *inode, struct file *file);
1584static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1585static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1586static void nfs_volume_list_stop(struct seq_file *p, void *v);
1587static int nfs_volume_list_show(struct seq_file *m, void *v);
1588
James Morris88e9d342009-09-22 16:43:43 -07001589static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001590 .start = nfs_volume_list_start,
1591 .next = nfs_volume_list_next,
1592 .stop = nfs_volume_list_stop,
1593 .show = nfs_volume_list_show,
1594};
1595
Arjan van de Ven00977a52007-02-12 00:55:34 -08001596static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001597 .open = nfs_volume_list_open,
1598 .read = seq_read,
1599 .llseek = seq_lseek,
1600 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001601 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001602};
1603
1604/*
1605 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1606 * we're dealing
1607 */
1608static int nfs_server_list_open(struct inode *inode, struct file *file)
1609{
1610 struct seq_file *m;
1611 int ret;
1612
1613 ret = seq_open(file, &nfs_server_list_ops);
1614 if (ret < 0)
1615 return ret;
1616
1617 m = file->private_data;
1618 m->private = PDE(inode)->data;
1619
1620 return 0;
1621}
1622
1623/*
1624 * set up the iterator to start reading from the server list and return the first item
1625 */
1626static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1627{
David Howells6aaca562006-08-22 20:06:13 -04001628 /* lock the list against modification */
1629 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001630 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001631}
1632
1633/*
1634 * move to next server
1635 */
1636static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1637{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001638 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001639}
1640
1641/*
1642 * clean up after reading from the transports list
1643 */
1644static void nfs_server_list_stop(struct seq_file *p, void *v)
1645{
1646 spin_unlock(&nfs_client_lock);
1647}
1648
1649/*
1650 * display a header line followed by a load of call lines
1651 */
1652static int nfs_server_list_show(struct seq_file *m, void *v)
1653{
1654 struct nfs_client *clp;
1655
1656 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001657 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001658 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1659 return 0;
1660 }
1661
1662 /* display one transport per line on subsequent lines */
1663 clp = list_entry(v, struct nfs_client, cl_share_link);
1664
Chuck Lever5d8515c2007-12-10 14:57:16 -05001665 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001666 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001667 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1668 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001669 atomic_read(&clp->cl_count),
1670 clp->cl_hostname);
1671
1672 return 0;
1673}
1674
1675/*
1676 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1677 */
1678static int nfs_volume_list_open(struct inode *inode, struct file *file)
1679{
1680 struct seq_file *m;
1681 int ret;
1682
1683 ret = seq_open(file, &nfs_volume_list_ops);
1684 if (ret < 0)
1685 return ret;
1686
1687 m = file->private_data;
1688 m->private = PDE(inode)->data;
1689
1690 return 0;
1691}
1692
1693/*
1694 * set up the iterator to start reading from the volume list and return the first item
1695 */
1696static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1697{
David Howells6aaca562006-08-22 20:06:13 -04001698 /* lock the list against modification */
1699 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001700 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001701}
1702
1703/*
1704 * move to next volume
1705 */
1706static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1707{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001708 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001709}
1710
1711/*
1712 * clean up after reading from the transports list
1713 */
1714static void nfs_volume_list_stop(struct seq_file *p, void *v)
1715{
1716 spin_unlock(&nfs_client_lock);
1717}
1718
1719/*
1720 * display a header line followed by a load of call lines
1721 */
1722static int nfs_volume_list_show(struct seq_file *m, void *v)
1723{
1724 struct nfs_server *server;
1725 struct nfs_client *clp;
1726 char dev[8], fsid[17];
1727
1728 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001729 if (v == &nfs_volume_list) {
David Howells5d1acff2009-04-03 16:42:47 +01001730 seq_puts(m, "NV SERVER PORT DEV FSID FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001731 return 0;
1732 }
1733 /* display one transport per line on subsequent lines */
1734 server = list_entry(v, struct nfs_server, master_link);
1735 clp = server->nfs_client;
1736
1737 snprintf(dev, 8, "%u:%u",
1738 MAJOR(server->s_dev), MINOR(server->s_dev));
1739
1740 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001741 (unsigned long long) server->fsid.major,
1742 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001743
David Howells5d1acff2009-04-03 16:42:47 +01001744 seq_printf(m, "v%u %s %s %-7s %-17s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001745 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001746 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1747 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001748 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001749 fsid,
1750 nfs_server_fscache_state(server));
David Howells6aaca562006-08-22 20:06:13 -04001751
1752 return 0;
1753}
1754
1755/*
1756 * initialise the /proc/fs/nfsfs/ directory
1757 */
1758int __init nfs_fs_proc_init(void)
1759{
1760 struct proc_dir_entry *p;
1761
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001762 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001763 if (!proc_fs_nfs)
1764 goto error_0;
1765
David Howells6aaca562006-08-22 20:06:13 -04001766 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001767 p = proc_create("servers", S_IFREG|S_IRUGO,
1768 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001769 if (!p)
1770 goto error_1;
1771
David Howells6aaca562006-08-22 20:06:13 -04001772 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001773 p = proc_create("volumes", S_IFREG|S_IRUGO,
1774 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001775 if (!p)
1776 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001777 return 0;
1778
1779error_2:
1780 remove_proc_entry("servers", proc_fs_nfs);
1781error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001782 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001783error_0:
1784 return -ENOMEM;
1785}
1786
1787/*
1788 * clean up the /proc/fs/nfsfs/ directory
1789 */
1790void nfs_fs_proc_exit(void)
1791{
1792 remove_proc_entry("volumes", proc_fs_nfs);
1793 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001794 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001795}
1796
1797#endif /* CONFIG_PROC_FS */