blob: 1df708fd42051e877206cc7723942f4dc822490e [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
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400278 return ipv6_addr_equal(&sin1->sin6_addr, &sin1->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 = {
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500604 .protocol = clp->cl_proto,
Chuck Lever41877d22006-08-22 20:06:20 -0400605 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500606 .addrsize = clp->cl_addrlen,
Trond Myklebust33170232007-12-20 16:03:59 -0500607 .timeout = timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400608 .servername = clp->cl_hostname,
609 .program = &nfs_program,
610 .version = clp->rpc_ops->version,
611 .authflavor = flavor,
612 };
David Howells5006a762006-08-22 20:06:12 -0400613
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500614 if (discrtry)
615 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
616 if (noresvport)
617 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
618
David Howells5006a762006-08-22 20:06:12 -0400619 if (!IS_ERR(clp->cl_rpcclient))
620 return 0;
621
Chuck Lever41877d22006-08-22 20:06:20 -0400622 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400623 if (IS_ERR(clnt)) {
624 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700625 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400626 return PTR_ERR(clnt);
627 }
628
David Howells5006a762006-08-22 20:06:12 -0400629 clp->cl_rpcclient = clnt;
630 return 0;
631}
David Howells54ceac42006-08-22 20:06:13 -0400632
633/*
634 * Version 2 or 3 client destruction
635 */
636static void nfs_destroy_server(struct nfs_server *server)
637{
David Howells54ceac42006-08-22 20:06:13 -0400638 if (!(server->flags & NFS_MOUNT_NONLM))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500639 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400640}
641
642/*
643 * Version 2 or 3 lockd setup
644 */
645static int nfs_start_lockd(struct nfs_server *server)
646{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500647 struct nlm_host *host;
648 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500649 struct nlmclnt_initdata nlm_init = {
650 .hostname = clp->cl_hostname,
651 .address = (struct sockaddr *)&clp->cl_addr,
652 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500653 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500654 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
655 1 : 0,
Chuck Lever883bb162008-01-15 16:04:20 -0500656 };
David Howells54ceac42006-08-22 20:06:13 -0400657
Chuck Lever883bb162008-01-15 16:04:20 -0500658 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500659 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400660 if (server->flags & NFS_MOUNT_NONLM)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500661 return 0;
662
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400663 switch (clp->cl_proto) {
664 default:
665 nlm_init.protocol = IPPROTO_TCP;
666 break;
667 case XPRT_TRANSPORT_UDP:
668 nlm_init.protocol = IPPROTO_UDP;
669 }
670
Chuck Lever883bb162008-01-15 16:04:20 -0500671 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500672 if (IS_ERR(host))
673 return PTR_ERR(host);
674
675 server->nlm_host = host;
676 server->destroy = nfs_destroy_server;
677 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400678}
679
680/*
681 * Initialise an NFSv3 ACL client connection
682 */
683#ifdef CONFIG_NFS_V3_ACL
684static void nfs_init_server_aclclient(struct nfs_server *server)
685{
Trond Myklebust40c553192007-12-14 14:56:07 -0500686 if (server->nfs_client->rpc_ops->version != 3)
David Howells54ceac42006-08-22 20:06:13 -0400687 goto out_noacl;
688 if (server->flags & NFS_MOUNT_NOACL)
689 goto out_noacl;
690
691 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
692 if (IS_ERR(server->client_acl))
693 goto out_noacl;
694
695 /* No errors! Assume that Sun nfsacls are supported */
696 server->caps |= NFS_CAP_ACLS;
697 return;
698
699out_noacl:
700 server->caps &= ~NFS_CAP_ACLS;
701}
702#else
703static inline void nfs_init_server_aclclient(struct nfs_server *server)
704{
705 server->flags &= ~NFS_MOUNT_NOACL;
706 server->caps &= ~NFS_CAP_ACLS;
707}
708#endif
709
710/*
711 * Create a general RPC client
712 */
Trond Myklebust33170232007-12-20 16:03:59 -0500713static int nfs_init_server_rpcclient(struct nfs_server *server,
714 const struct rpc_timeout *timeo,
715 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400716{
717 struct nfs_client *clp = server->nfs_client;
718
719 server->client = rpc_clone_client(clp->cl_rpcclient);
720 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700721 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400722 return PTR_ERR(server->client);
723 }
724
Trond Myklebust33170232007-12-20 16:03:59 -0500725 memcpy(&server->client->cl_timeout_default,
726 timeo,
727 sizeof(server->client->cl_timeout_default));
728 server->client->cl_timeout = &server->client->cl_timeout_default;
729
David Howells54ceac42006-08-22 20:06:13 -0400730 if (pseudoflavour != clp->cl_rpcclient->cl_auth->au_flavor) {
731 struct rpc_auth *auth;
732
733 auth = rpcauth_create(pseudoflavour, server->client);
734 if (IS_ERR(auth)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700735 dprintk("%s: couldn't create credcache!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400736 return PTR_ERR(auth);
737 }
738 }
739 server->client->cl_softrtry = 0;
740 if (server->flags & NFS_MOUNT_SOFT)
741 server->client->cl_softrtry = 1;
742
David Howells54ceac42006-08-22 20:06:13 -0400743 return 0;
744}
745
746/*
747 * Initialise an NFS2 or NFS3 client
748 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400749static int nfs_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500750 const struct rpc_timeout *timeparms,
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400751 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400752{
David Howells54ceac42006-08-22 20:06:13 -0400753 int error;
754
755 if (clp->cl_cons_state == NFS_CS_READY) {
756 /* the client is already initialised */
757 dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp);
758 return 0;
759 }
760
David Howells54ceac42006-08-22 20:06:13 -0400761 /*
762 * Create a client RPC handle for doing FSSTAT with UNIX auth only
763 * - RFC 2623, sec 2.3.2
764 */
Chuck Leverd7403512008-12-23 15:21:37 -0500765 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX,
766 0, data->flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -0400767 if (error < 0)
768 goto error;
769 nfs_mark_client_ready(clp, NFS_CS_READY);
770 return 0;
771
772error:
773 nfs_mark_client_ready(clp, error);
774 dprintk("<-- nfs_init_client() = xerror %d\n", error);
775 return error;
776}
777
778/*
779 * Create a version 2 or 3 client
780 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400781static int nfs_init_server(struct nfs_server *server,
782 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400783{
Trond Myklebust3a498022007-12-14 14:56:04 -0500784 struct nfs_client_initdata cl_init = {
785 .hostname = data->nfs_server.hostname,
Chuck Leverd7422c42007-12-10 14:58:51 -0500786 .addr = (const struct sockaddr *)&data->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -0500787 .addrlen = data->nfs_server.addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -0500788 .rpc_ops = &nfs_v2_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500789 .proto = data->nfs_server.protocol,
Trond Myklebust3a498022007-12-14 14:56:04 -0500790 };
Trond Myklebust33170232007-12-20 16:03:59 -0500791 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -0400792 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500793 int error;
David Howells54ceac42006-08-22 20:06:13 -0400794
795 dprintk("--> nfs_init_server()\n");
796
797#ifdef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400798 if (data->version == 3)
Trond Myklebust40c553192007-12-14 14:56:07 -0500799 cl_init.rpc_ops = &nfs_v3_clientops;
David Howells54ceac42006-08-22 20:06:13 -0400800#endif
801
802 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -0500803 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -0400804 if (IS_ERR(clp)) {
805 dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp));
806 return PTR_ERR(clp);
807 }
808
Trond Myklebust33170232007-12-20 16:03:59 -0500809 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
810 data->timeo, data->retrans);
811 error = nfs_init_client(clp, &timeparms, data);
David Howells54ceac42006-08-22 20:06:13 -0400812 if (error < 0)
813 goto error;
814
815 server->nfs_client = clp;
816
817 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -0400818 server->flags = data->flags;
David Howellsb797cac2009-04-03 16:42:48 +0100819 server->options = data->options;
Trond Myklebust62ab460c2009-08-09 15:06:19 -0400820 server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
821 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP|
822 NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME;
David Howells54ceac42006-08-22 20:06:13 -0400823
824 if (data->rsize)
825 server->rsize = nfs_block_size(data->rsize, NULL);
826 if (data->wsize)
827 server->wsize = nfs_block_size(data->wsize, NULL);
828
829 server->acregmin = data->acregmin * HZ;
830 server->acregmax = data->acregmax * HZ;
831 server->acdirmin = data->acdirmin * HZ;
832 server->acdirmax = data->acdirmax * HZ;
833
834 /* Start lockd here, before we might error out */
835 error = nfs_start_lockd(server);
836 if (error < 0)
837 goto error;
838
Chuck Leverf22d6d72008-03-14 14:10:22 -0400839 server->port = data->nfs_server.port;
840
Trond Myklebust33170232007-12-20 16:03:59 -0500841 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -0400842 if (error < 0)
843 goto error;
844
Chuck Lever3f8400d2008-03-14 14:10:30 -0400845 /* Preserve the values of mount_server-related mount options */
846 if (data->mount_server.addrlen) {
847 memcpy(&server->mountd_address, &data->mount_server.address,
848 data->mount_server.addrlen);
849 server->mountd_addrlen = data->mount_server.addrlen;
850 }
851 server->mountd_version = data->mount_server.version;
852 server->mountd_port = data->mount_server.port;
853 server->mountd_protocol = data->mount_server.protocol;
854
David Howells54ceac42006-08-22 20:06:13 -0400855 server->namelen = data->namlen;
856 /* Create a client RPC handle for the NFSv3 ACL management interface */
857 nfs_init_server_aclclient(server);
David Howells54ceac42006-08-22 20:06:13 -0400858 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp);
859 return 0;
860
861error:
862 server->nfs_client = NULL;
863 nfs_put_client(clp);
864 dprintk("<-- nfs_init_server() = xerror %d\n", error);
865 return error;
866}
867
868/*
869 * Load up the server record from information gained in an fsinfo record
870 */
871static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *fsinfo)
872{
873 unsigned long max_rpc_payload;
874
875 /* Work out a lot of parameters */
876 if (server->rsize == 0)
877 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
878 if (server->wsize == 0)
879 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
880
881 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
882 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
883 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
884 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
885
886 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
887 if (server->rsize > max_rpc_payload)
888 server->rsize = max_rpc_payload;
889 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
890 server->rsize = NFS_MAX_FILE_IO_SIZE;
891 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700892
Jens Axboed9938312009-06-12 14:45:52 +0200893 server->backing_dev_info.name = "nfs";
David Howells54ceac42006-08-22 20:06:13 -0400894 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
895
896 if (server->wsize > max_rpc_payload)
897 server->wsize = max_rpc_payload;
898 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
899 server->wsize = NFS_MAX_FILE_IO_SIZE;
900 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
901 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
902
903 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
904 if (server->dtsize > PAGE_CACHE_SIZE)
905 server->dtsize = PAGE_CACHE_SIZE;
906 if (server->dtsize > server->rsize)
907 server->dtsize = server->rsize;
908
909 if (server->flags & NFS_MOUNT_NOAC) {
910 server->acregmin = server->acregmax = 0;
911 server->acdirmin = server->acdirmax = 0;
912 }
913
914 server->maxfilesize = fsinfo->maxfilesize;
915
916 /* We're airborne Set socket buffersize */
917 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
918}
919
920/*
921 * Probe filesystem information, including the FSID on v2/v3
922 */
923static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
924{
925 struct nfs_fsinfo fsinfo;
926 struct nfs_client *clp = server->nfs_client;
927 int error;
928
929 dprintk("--> nfs_probe_fsinfo()\n");
930
931 if (clp->rpc_ops->set_capabilities != NULL) {
932 error = clp->rpc_ops->set_capabilities(server, mntfh);
933 if (error < 0)
934 goto out_error;
935 }
936
937 fsinfo.fattr = fattr;
David Howells54ceac42006-08-22 20:06:13 -0400938 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
939 if (error < 0)
940 goto out_error;
941
942 nfs_server_set_fsinfo(server, &fsinfo);
943
944 /* Get some general file system info */
945 if (server->namelen == 0) {
946 struct nfs_pathconf pathinfo;
947
948 pathinfo.fattr = fattr;
949 nfs_fattr_init(fattr);
950
951 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
952 server->namelen = pathinfo.max_namelen;
953 }
954
955 dprintk("<-- nfs_probe_fsinfo() = 0\n");
956 return 0;
957
958out_error:
959 dprintk("nfs_probe_fsinfo: error = %d\n", -error);
960 return error;
961}
962
963/*
964 * Copy useful information when duplicating a server record
965 */
966static void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
967{
968 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -0400969 target->rsize = source->rsize;
970 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -0400971 target->acregmin = source->acregmin;
972 target->acregmax = source->acregmax;
973 target->acdirmin = source->acdirmin;
974 target->acdirmax = source->acdirmax;
975 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400976 target->options = source->options;
David Howells54ceac42006-08-22 20:06:13 -0400977}
978
979/*
980 * Allocate and initialise a server record
981 */
982static struct nfs_server *nfs_alloc_server(void)
983{
984 struct nfs_server *server;
985
986 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
987 if (!server)
988 return NULL;
989
990 server->client = server->client_acl = ERR_PTR(-EINVAL);
991
992 /* Zero out the NFS state stuff */
993 INIT_LIST_HEAD(&server->client_link);
994 INIT_LIST_HEAD(&server->master_link);
995
Steve Dicksonef818a22007-11-08 04:05:04 -0500996 atomic_set(&server->active, 0);
997
David Howells54ceac42006-08-22 20:06:13 -0400998 server->io_stats = nfs_alloc_iostats();
999 if (!server->io_stats) {
1000 kfree(server);
1001 return NULL;
1002 }
1003
Jens Axboe48d07642009-09-21 09:59:39 +02001004 if (bdi_init(&server->backing_dev_info)) {
1005 nfs_free_iostats(server->io_stats);
1006 kfree(server);
1007 return NULL;
1008 }
1009
David Howells54ceac42006-08-22 20:06:13 -04001010 return server;
1011}
1012
1013/*
1014 * Free up a server record
1015 */
1016void nfs_free_server(struct nfs_server *server)
1017{
1018 dprintk("--> nfs_free_server()\n");
1019
1020 spin_lock(&nfs_client_lock);
1021 list_del(&server->client_link);
1022 list_del(&server->master_link);
1023 spin_unlock(&nfs_client_lock);
1024
1025 if (server->destroy != NULL)
1026 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -05001027
1028 if (!IS_ERR(server->client_acl))
1029 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -04001030 if (!IS_ERR(server->client))
1031 rpc_shutdown_client(server->client);
1032
1033 nfs_put_client(server->nfs_client);
1034
1035 nfs_free_iostats(server->io_stats);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001036 bdi_destroy(&server->backing_dev_info);
David Howells54ceac42006-08-22 20:06:13 -04001037 kfree(server);
1038 nfs_release_automount_timer();
1039 dprintk("<-- nfs_free_server()\n");
1040}
1041
1042/*
1043 * Create a version 2 or 3 volume record
1044 * - keyed on server and FSID
1045 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001046struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001047 struct nfs_fh *mntfh)
1048{
1049 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001050 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -04001051 int error;
1052
1053 server = nfs_alloc_server();
1054 if (!server)
1055 return ERR_PTR(-ENOMEM);
1056
Trond Myklebustfbca7792010-04-16 16:22:46 -04001057 error = -ENOMEM;
1058 fattr = nfs_alloc_fattr();
1059 if (fattr == NULL)
1060 goto error;
1061
David Howells54ceac42006-08-22 20:06:13 -04001062 /* Get a client representation */
1063 error = nfs_init_server(server, data);
1064 if (error < 0)
1065 goto error;
1066
1067 BUG_ON(!server->nfs_client);
1068 BUG_ON(!server->nfs_client->rpc_ops);
1069 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1070
1071 /* Probe the root fh to retrieve its FSID */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001072 error = nfs_probe_fsinfo(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001073 if (error < 0)
1074 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001075 if (server->nfs_client->rpc_ops->version == 3) {
1076 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1077 server->namelen = NFS3_MAXNAMLEN;
1078 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1079 server->caps |= NFS_CAP_READDIRPLUS;
1080 } else {
1081 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1082 server->namelen = NFS2_MAXNAMLEN;
1083 }
1084
Trond Myklebustfbca7792010-04-16 16:22:46 -04001085 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1086 error = server->nfs_client->rpc_ops->getattr(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001087 if (error < 0) {
1088 dprintk("nfs_create_server: getattr error = %d\n", -error);
1089 goto error;
1090 }
1091 }
Trond Myklebustfbca7792010-04-16 16:22:46 -04001092 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -04001093
David Howells6daabf12006-08-24 15:44:16 -04001094 dprintk("Server FSID: %llx:%llx\n",
1095 (unsigned long long) server->fsid.major,
1096 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001097
David Howells54ceac42006-08-22 20:06:13 -04001098 spin_lock(&nfs_client_lock);
1099 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1100 list_add_tail(&server->master_link, &nfs_volume_list);
1101 spin_unlock(&nfs_client_lock);
1102
1103 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001104 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001105 return server;
1106
1107error:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001108 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001109 nfs_free_server(server);
1110 return ERR_PTR(error);
1111}
1112
1113#ifdef CONFIG_NFS_V4
1114/*
Benny Halevy9bdaa862009-04-01 09:22:55 -04001115 * Initialize the NFS4 callback service
1116 */
1117static int nfs4_init_callback(struct nfs_client *clp)
1118{
1119 int error;
1120
1121 if (clp->rpc_ops->version == 4) {
Andy Adamson0b5b7ae2009-04-01 09:23:15 -04001122 if (nfs4_has_session(clp)) {
1123 error = xprt_setup_backchannel(
1124 clp->cl_rpcclient->cl_xprt,
1125 NFS41_BC_MIN_CALLBACKS);
1126 if (error < 0)
1127 return error;
1128 }
1129
Trond Myklebust97dc1352010-06-16 09:52:26 -04001130 error = nfs_callback_up(clp->cl_mvops->minor_version,
Benny Halevy71468512009-04-01 09:22:56 -04001131 clp->cl_rpcclient->cl_xprt);
Benny Halevy9bdaa862009-04-01 09:22:55 -04001132 if (error < 0) {
1133 dprintk("%s: failed to start callback. Error = %d\n",
1134 __func__, error);
1135 return error;
1136 }
1137 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
1138 }
1139 return 0;
1140}
1141
1142/*
Andy Adamson557134a2009-04-01 09:21:53 -04001143 * Initialize the minor version specific parts of an NFS4 client record
1144 */
1145static int nfs4_init_client_minor_version(struct nfs_client *clp)
1146{
1147#if defined(CONFIG_NFS_V4_1)
Trond Myklebust97dc1352010-06-16 09:52:26 -04001148 if (clp->cl_mvops->minor_version) {
Andy Adamson557134a2009-04-01 09:21:53 -04001149 struct nfs4_session *session = NULL;
1150 /*
1151 * Create the session and mark it expired.
1152 * When a SEQUENCE operation encounters the expired session
1153 * it will do session recovery to initialize it.
1154 */
1155 session = nfs4_alloc_session(clp);
1156 if (!session)
1157 return -ENOMEM;
1158
1159 clp->cl_session = session;
1160 }
1161#endif /* CONFIG_NFS_V4_1 */
1162
Benny Halevy71468512009-04-01 09:22:56 -04001163 return nfs4_init_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -04001164}
1165
1166/*
David Howells54ceac42006-08-22 20:06:13 -04001167 * Initialise an NFS4 client record
1168 */
1169static int nfs4_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -05001170 const struct rpc_timeout *timeparms,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001171 const char *ip_addr,
Chuck Leverd7403512008-12-23 15:21:37 -05001172 rpc_authflavor_t authflavour,
1173 int flags)
David Howells54ceac42006-08-22 20:06:13 -04001174{
1175 int error;
1176
1177 if (clp->cl_cons_state == NFS_CS_READY) {
1178 /* the client is initialised already */
1179 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
1180 return 0;
1181 }
1182
1183 /* Check NFS protocol revision and initialize RPC op vector */
1184 clp->rpc_ops = &nfs_v4_clientops;
1185
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001186 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Chuck Leverd7403512008-12-23 15:21:37 -05001187 1, flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -04001188 if (error < 0)
1189 goto error;
Ben Hutchingsf4373bf2009-10-06 15:42:18 -04001190 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -04001191
1192 error = nfs_idmap_new(clp);
1193 if (error < 0) {
1194 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001195 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -04001196 goto error;
1197 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -04001198 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -04001199
Andy Adamson557134a2009-04-01 09:21:53 -04001200 error = nfs4_init_client_minor_version(clp);
1201 if (error < 0)
1202 goto error;
1203
Andy Adamson76db6d92009-04-01 09:22:38 -04001204 if (!nfs4_has_session(clp))
1205 nfs_mark_client_ready(clp, NFS_CS_READY);
David Howells54ceac42006-08-22 20:06:13 -04001206 return 0;
1207
1208error:
1209 nfs_mark_client_ready(clp, error);
1210 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1211 return error;
1212}
1213
1214/*
1215 * Set up an NFS4 client
1216 */
1217static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001218 const char *hostname,
1219 const struct sockaddr *addr,
1220 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001221 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001222 rpc_authflavor_t authflavour,
Benny Halevy94a417f2009-04-01 09:21:49 -04001223 int proto, const struct rpc_timeout *timeparms,
1224 u32 minorversion)
David Howells54ceac42006-08-22 20:06:13 -04001225{
Trond Myklebust3a498022007-12-14 14:56:04 -05001226 struct nfs_client_initdata cl_init = {
1227 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001228 .addr = addr,
1229 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001230 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001231 .proto = proto,
Benny Halevy5aae4a92009-04-01 09:21:50 -04001232 .minorversion = minorversion,
Trond Myklebust3a498022007-12-14 14:56:04 -05001233 };
David Howells54ceac42006-08-22 20:06:13 -04001234 struct nfs_client *clp;
1235 int error;
1236
1237 dprintk("--> nfs4_set_client()\n");
1238
1239 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -05001240 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -04001241 if (IS_ERR(clp)) {
1242 error = PTR_ERR(clp);
1243 goto error;
1244 }
Chuck Leverd7403512008-12-23 15:21:37 -05001245 error = nfs4_init_client(clp, timeparms, ip_addr, authflavour,
1246 server->flags);
David Howells54ceac42006-08-22 20:06:13 -04001247 if (error < 0)
1248 goto error_put;
1249
1250 server->nfs_client = clp;
1251 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1252 return 0;
1253
1254error_put:
1255 nfs_put_client(clp);
1256error:
1257 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1258 return error;
1259}
1260
Andy Adamson557134a2009-04-01 09:21:53 -04001261
1262/*
Andy Adamson96b09e02009-04-01 09:22:33 -04001263 * Session has been established, and the client marked ready.
1264 * Set the mount rsize and wsize with negotiated fore channel
1265 * attributes which will be bound checked in nfs_server_set_fsinfo.
1266 */
1267static void nfs4_session_set_rwsize(struct nfs_server *server)
1268{
1269#ifdef CONFIG_NFS_V4_1
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001270 struct nfs4_session *sess;
1271 u32 server_resp_sz;
1272 u32 server_rqst_sz;
1273
Andy Adamson96b09e02009-04-01 09:22:33 -04001274 if (!nfs4_has_session(server->nfs_client))
1275 return;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001276 sess = server->nfs_client->cl_session;
1277 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
1278 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
1279
1280 if (server->rsize > server_resp_sz)
1281 server->rsize = server_resp_sz;
1282 if (server->wsize > server_rqst_sz)
1283 server->wsize = server_rqst_sz;
Andy Adamson96b09e02009-04-01 09:22:33 -04001284#endif /* CONFIG_NFS_V4_1 */
1285}
1286
Trond Myklebust44950b62010-06-17 11:45:12 -04001287static int nfs4_server_common_setup(struct nfs_server *server,
1288 struct nfs_fh *mntfh)
1289{
1290 struct nfs_fattr *fattr;
1291 int error;
1292
1293 BUG_ON(!server->nfs_client);
1294 BUG_ON(!server->nfs_client->rpc_ops);
1295 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1296
1297 fattr = nfs_alloc_fattr();
1298 if (fattr == NULL)
1299 return -ENOMEM;
1300
1301 /* We must ensure the session is initialised first */
1302 error = nfs4_init_session(server);
1303 if (error < 0)
1304 goto out;
1305
1306 /* Probe the root fh to retrieve its FSID and filehandle */
1307 error = nfs4_get_rootfh(server, mntfh);
1308 if (error < 0)
1309 goto out;
1310
1311 dprintk("Server FSID: %llx:%llx\n",
1312 (unsigned long long) server->fsid.major,
1313 (unsigned long long) server->fsid.minor);
1314 dprintk("Mount FH: %d\n", mntfh->size);
1315
1316 nfs4_session_set_rwsize(server);
1317
1318 error = nfs_probe_fsinfo(server, mntfh, fattr);
1319 if (error < 0)
1320 goto out;
1321
1322 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1323 server->namelen = NFS4_MAXNAMLEN;
1324
1325 spin_lock(&nfs_client_lock);
1326 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1327 list_add_tail(&server->master_link, &nfs_volume_list);
1328 spin_unlock(&nfs_client_lock);
1329
1330 server->mount_time = jiffies;
1331out:
1332 nfs_free_fattr(fattr);
1333 return error;
1334}
1335
Andy Adamson96b09e02009-04-01 09:22:33 -04001336/*
David Howells54ceac42006-08-22 20:06:13 -04001337 * Create a version 4 volume record
1338 */
1339static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001340 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001341{
Trond Myklebust33170232007-12-20 16:03:59 -05001342 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001343 int error;
1344
1345 dprintk("--> nfs4_init_server()\n");
1346
Trond Myklebust33170232007-12-20 16:03:59 -05001347 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1348 data->timeo, data->retrans);
1349
Chuck Lever542fcc32008-12-23 15:21:36 -05001350 /* Initialise the client representation from the mount data */
1351 server->flags = data->flags;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001352 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR|
1353 NFS_CAP_POSIX_LOCK;
David Howellsb797cac2009-04-03 16:42:48 +01001354 server->options = data->options;
Chuck Lever542fcc32008-12-23 15:21:36 -05001355
Trond Myklebust33170232007-12-20 16:03:59 -05001356 /* Get a client record */
1357 error = nfs4_set_client(server,
1358 data->nfs_server.hostname,
1359 (const struct sockaddr *)&data->nfs_server.address,
1360 data->nfs_server.addrlen,
1361 data->client_address,
1362 data->auth_flavors[0],
1363 data->nfs_server.protocol,
Benny Halevy94a417f2009-04-01 09:21:49 -04001364 &timeparms,
1365 data->minorversion);
Trond Myklebust33170232007-12-20 16:03:59 -05001366 if (error < 0)
1367 goto error;
1368
David Howells54ceac42006-08-22 20:06:13 -04001369 if (data->rsize)
1370 server->rsize = nfs_block_size(data->rsize, NULL);
1371 if (data->wsize)
1372 server->wsize = nfs_block_size(data->wsize, NULL);
1373
1374 server->acregmin = data->acregmin * HZ;
1375 server->acregmax = data->acregmax * HZ;
1376 server->acdirmin = data->acdirmin * HZ;
1377 server->acdirmax = data->acdirmax * HZ;
1378
Chuck Leverf22d6d72008-03-14 14:10:22 -04001379 server->port = data->nfs_server.port;
1380
Trond Myklebust33170232007-12-20 16:03:59 -05001381 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001382
Trond Myklebust33170232007-12-20 16:03:59 -05001383error:
David Howells54ceac42006-08-22 20:06:13 -04001384 /* Done */
1385 dprintk("<-- nfs4_init_server() = %d\n", error);
1386 return error;
1387}
1388
1389/*
1390 * Create a version 4 volume record
1391 * - keyed on server and FSID
1392 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001393struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001394 struct nfs_fh *mntfh)
1395{
David Howells54ceac42006-08-22 20:06:13 -04001396 struct nfs_server *server;
1397 int error;
1398
1399 dprintk("--> nfs4_create_server()\n");
1400
1401 server = nfs_alloc_server();
1402 if (!server)
1403 return ERR_PTR(-ENOMEM);
1404
David Howells54ceac42006-08-22 20:06:13 -04001405 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001406 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001407 if (error < 0)
1408 goto error;
1409
Trond Myklebust44950b62010-06-17 11:45:12 -04001410 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustfccba802009-07-21 16:48:07 -04001411 if (error < 0)
1412 goto error;
Andy Adamson557134a2009-04-01 09:21:53 -04001413
David Howells54ceac42006-08-22 20:06:13 -04001414 dprintk("<-- nfs4_create_server() = %p\n", server);
1415 return server;
1416
1417error:
1418 nfs_free_server(server);
1419 dprintk("<-- nfs4_create_server() = error %d\n", error);
1420 return ERR_PTR(error);
1421}
1422
1423/*
1424 * Create an NFS4 referral server record
1425 */
1426struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001427 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001428{
1429 struct nfs_client *parent_client;
1430 struct nfs_server *server, *parent_server;
David Howells54ceac42006-08-22 20:06:13 -04001431 int error;
1432
1433 dprintk("--> nfs4_create_referral_server()\n");
1434
1435 server = nfs_alloc_server();
1436 if (!server)
1437 return ERR_PTR(-ENOMEM);
1438
1439 parent_server = NFS_SB(data->sb);
1440 parent_client = parent_server->nfs_client;
1441
Chuck Lever542fcc32008-12-23 15:21:36 -05001442 /* Initialise the client representation from the parent server */
1443 nfs_server_copy_userdata(server, parent_server);
Trond Myklebust62ab460c2009-08-09 15:06:19 -04001444 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
Chuck Lever542fcc32008-12-23 15:21:36 -05001445
David Howells54ceac42006-08-22 20:06:13 -04001446 /* Get a client representation.
1447 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001448 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001449 data->addr,
1450 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001451 parent_client->cl_ipaddr,
1452 data->authflavor,
1453 parent_server->client->cl_xprt->prot,
Benny Halevy94a417f2009-04-01 09:21:49 -04001454 parent_server->client->cl_timeout,
Trond Myklebust97dc1352010-06-16 09:52:26 -04001455 parent_client->cl_mvops->minor_version);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001456 if (error < 0)
1457 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001458
Trond Myklebust33170232007-12-20 16:03:59 -05001459 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001460 if (error < 0)
1461 goto error;
1462
Trond Myklebust44950b62010-06-17 11:45:12 -04001463 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001464 if (error < 0)
1465 goto error;
1466
David Howells54ceac42006-08-22 20:06:13 -04001467 dprintk("<-- nfs_create_referral_server() = %p\n", server);
1468 return server;
1469
1470error:
1471 nfs_free_server(server);
1472 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
1473 return ERR_PTR(error);
1474}
1475
1476#endif /* CONFIG_NFS_V4 */
1477
1478/*
1479 * Clone an NFS2, NFS3 or NFS4 server record
1480 */
1481struct nfs_server *nfs_clone_server(struct nfs_server *source,
1482 struct nfs_fh *fh,
1483 struct nfs_fattr *fattr)
1484{
1485 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001486 struct nfs_fattr *fattr_fsinfo;
David Howells54ceac42006-08-22 20:06:13 -04001487 int error;
1488
1489 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
David Howells6daabf12006-08-24 15:44:16 -04001490 (unsigned long long) fattr->fsid.major,
1491 (unsigned long long) fattr->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001492
1493 server = nfs_alloc_server();
1494 if (!server)
1495 return ERR_PTR(-ENOMEM);
1496
Trond Myklebustfbca7792010-04-16 16:22:46 -04001497 error = -ENOMEM;
1498 fattr_fsinfo = nfs_alloc_fattr();
1499 if (fattr_fsinfo == NULL)
1500 goto out_free_server;
1501
David Howells54ceac42006-08-22 20:06:13 -04001502 /* Copy data from the source */
1503 server->nfs_client = source->nfs_client;
1504 atomic_inc(&server->nfs_client->cl_count);
1505 nfs_server_copy_userdata(server, source);
1506
1507 server->fsid = fattr->fsid;
1508
Trond Myklebust33170232007-12-20 16:03:59 -05001509 error = nfs_init_server_rpcclient(server,
1510 source->client->cl_timeout,
1511 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001512 if (error < 0)
1513 goto out_free_server;
1514 if (!IS_ERR(source->client_acl))
1515 nfs_init_server_aclclient(server);
1516
1517 /* probe the filesystem info for this server filesystem */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001518 error = nfs_probe_fsinfo(server, fh, fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001519 if (error < 0)
1520 goto out_free_server;
1521
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001522 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1523 server->namelen = NFS4_MAXNAMLEN;
1524
David Howells54ceac42006-08-22 20:06:13 -04001525 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001526 (unsigned long long) server->fsid.major,
1527 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001528
1529 error = nfs_start_lockd(server);
1530 if (error < 0)
1531 goto out_free_server;
1532
1533 spin_lock(&nfs_client_lock);
1534 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1535 list_add_tail(&server->master_link, &nfs_volume_list);
1536 spin_unlock(&nfs_client_lock);
1537
1538 server->mount_time = jiffies;
1539
Trond Myklebustfbca7792010-04-16 16:22:46 -04001540 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001541 dprintk("<-- nfs_clone_server() = %p\n", server);
1542 return server;
1543
1544out_free_server:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001545 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001546 nfs_free_server(server);
1547 dprintk("<-- nfs_clone_server() = error %d\n", error);
1548 return ERR_PTR(error);
1549}
David Howells6aaca562006-08-22 20:06:13 -04001550
1551#ifdef CONFIG_PROC_FS
1552static struct proc_dir_entry *proc_fs_nfs;
1553
1554static int nfs_server_list_open(struct inode *inode, struct file *file);
1555static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1556static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1557static void nfs_server_list_stop(struct seq_file *p, void *v);
1558static int nfs_server_list_show(struct seq_file *m, void *v);
1559
James Morris88e9d342009-09-22 16:43:43 -07001560static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001561 .start = nfs_server_list_start,
1562 .next = nfs_server_list_next,
1563 .stop = nfs_server_list_stop,
1564 .show = nfs_server_list_show,
1565};
1566
Arjan van de Ven00977a52007-02-12 00:55:34 -08001567static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001568 .open = nfs_server_list_open,
1569 .read = seq_read,
1570 .llseek = seq_lseek,
1571 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001572 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001573};
1574
1575static int nfs_volume_list_open(struct inode *inode, struct file *file);
1576static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1577static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1578static void nfs_volume_list_stop(struct seq_file *p, void *v);
1579static int nfs_volume_list_show(struct seq_file *m, void *v);
1580
James Morris88e9d342009-09-22 16:43:43 -07001581static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001582 .start = nfs_volume_list_start,
1583 .next = nfs_volume_list_next,
1584 .stop = nfs_volume_list_stop,
1585 .show = nfs_volume_list_show,
1586};
1587
Arjan van de Ven00977a52007-02-12 00:55:34 -08001588static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001589 .open = nfs_volume_list_open,
1590 .read = seq_read,
1591 .llseek = seq_lseek,
1592 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001593 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001594};
1595
1596/*
1597 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1598 * we're dealing
1599 */
1600static int nfs_server_list_open(struct inode *inode, struct file *file)
1601{
1602 struct seq_file *m;
1603 int ret;
1604
1605 ret = seq_open(file, &nfs_server_list_ops);
1606 if (ret < 0)
1607 return ret;
1608
1609 m = file->private_data;
1610 m->private = PDE(inode)->data;
1611
1612 return 0;
1613}
1614
1615/*
1616 * set up the iterator to start reading from the server list and return the first item
1617 */
1618static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1619{
David Howells6aaca562006-08-22 20:06:13 -04001620 /* lock the list against modification */
1621 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001622 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001623}
1624
1625/*
1626 * move to next server
1627 */
1628static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1629{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001630 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001631}
1632
1633/*
1634 * clean up after reading from the transports list
1635 */
1636static void nfs_server_list_stop(struct seq_file *p, void *v)
1637{
1638 spin_unlock(&nfs_client_lock);
1639}
1640
1641/*
1642 * display a header line followed by a load of call lines
1643 */
1644static int nfs_server_list_show(struct seq_file *m, void *v)
1645{
1646 struct nfs_client *clp;
1647
1648 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001649 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001650 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1651 return 0;
1652 }
1653
1654 /* display one transport per line on subsequent lines */
1655 clp = list_entry(v, struct nfs_client, cl_share_link);
1656
Chuck Lever5d8515c2007-12-10 14:57:16 -05001657 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001658 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001659 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1660 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001661 atomic_read(&clp->cl_count),
1662 clp->cl_hostname);
1663
1664 return 0;
1665}
1666
1667/*
1668 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1669 */
1670static int nfs_volume_list_open(struct inode *inode, struct file *file)
1671{
1672 struct seq_file *m;
1673 int ret;
1674
1675 ret = seq_open(file, &nfs_volume_list_ops);
1676 if (ret < 0)
1677 return ret;
1678
1679 m = file->private_data;
1680 m->private = PDE(inode)->data;
1681
1682 return 0;
1683}
1684
1685/*
1686 * set up the iterator to start reading from the volume list and return the first item
1687 */
1688static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1689{
David Howells6aaca562006-08-22 20:06:13 -04001690 /* lock the list against modification */
1691 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001692 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001693}
1694
1695/*
1696 * move to next volume
1697 */
1698static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1699{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001700 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001701}
1702
1703/*
1704 * clean up after reading from the transports list
1705 */
1706static void nfs_volume_list_stop(struct seq_file *p, void *v)
1707{
1708 spin_unlock(&nfs_client_lock);
1709}
1710
1711/*
1712 * display a header line followed by a load of call lines
1713 */
1714static int nfs_volume_list_show(struct seq_file *m, void *v)
1715{
1716 struct nfs_server *server;
1717 struct nfs_client *clp;
1718 char dev[8], fsid[17];
1719
1720 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001721 if (v == &nfs_volume_list) {
David Howells5d1acff2009-04-03 16:42:47 +01001722 seq_puts(m, "NV SERVER PORT DEV FSID FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001723 return 0;
1724 }
1725 /* display one transport per line on subsequent lines */
1726 server = list_entry(v, struct nfs_server, master_link);
1727 clp = server->nfs_client;
1728
1729 snprintf(dev, 8, "%u:%u",
1730 MAJOR(server->s_dev), MINOR(server->s_dev));
1731
1732 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001733 (unsigned long long) server->fsid.major,
1734 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001735
David Howells5d1acff2009-04-03 16:42:47 +01001736 seq_printf(m, "v%u %s %s %-7s %-17s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001737 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001738 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1739 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001740 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001741 fsid,
1742 nfs_server_fscache_state(server));
David Howells6aaca562006-08-22 20:06:13 -04001743
1744 return 0;
1745}
1746
1747/*
1748 * initialise the /proc/fs/nfsfs/ directory
1749 */
1750int __init nfs_fs_proc_init(void)
1751{
1752 struct proc_dir_entry *p;
1753
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001754 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001755 if (!proc_fs_nfs)
1756 goto error_0;
1757
David Howells6aaca562006-08-22 20:06:13 -04001758 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001759 p = proc_create("servers", S_IFREG|S_IRUGO,
1760 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001761 if (!p)
1762 goto error_1;
1763
David Howells6aaca562006-08-22 20:06:13 -04001764 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001765 p = proc_create("volumes", S_IFREG|S_IRUGO,
1766 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001767 if (!p)
1768 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001769 return 0;
1770
1771error_2:
1772 remove_proc_entry("servers", proc_fs_nfs);
1773error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001774 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001775error_0:
1776 return -ENOMEM;
1777}
1778
1779/*
1780 * clean up the /proc/fs/nfsfs/ directory
1781 */
1782void nfs_fs_proc_exit(void)
1783{
1784 remove_proc_entry("volumes", proc_fs_nfs);
1785 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001786 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001787}
1788
1789#endif /* CONFIG_PROC_FS */