blob: a8766c4ef2e09f143b52a69d464b320ad1b5d76d [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;
David Howells24c8dbb2006-08-22 20:06:10 -0400153#endif
Trond Myklebust7c67db32008-04-07 20:50:11 -0400154 cred = rpc_lookup_machine_cred();
155 if (!IS_ERR(cred))
156 clp->cl_machine_cred = cred;
David Howells24c8dbb2006-08-22 20:06:10 -0400157
David Howells14727282009-04-03 16:42:42 +0100158 nfs_fscache_get_client_cookie(clp);
159
David Howells24c8dbb2006-08-22 20:06:10 -0400160 return clp;
161
Benny Halevy71468512009-04-01 09:22:56 -0400162error_cleanup:
David Howells24c8dbb2006-08-22 20:06:10 -0400163 kfree(clp);
164error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700165 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400166}
167
Trond Myklebust5dd31772006-08-24 01:03:05 -0400168#ifdef CONFIG_NFS_V4
Benny Halevy9bdaa862009-04-01 09:22:55 -0400169/*
Andy Adamson557134a2009-04-01 09:21:53 -0400170 * Clears/puts all minor version specific parts from an nfs_client struct
171 * reverting it to minorversion 0.
172 */
173static void nfs4_clear_client_minor_version(struct nfs_client *clp)
174{
175#ifdef CONFIG_NFS_V4_1
176 if (nfs4_has_session(clp)) {
177 nfs4_destroy_session(clp->cl_session);
178 clp->cl_session = NULL;
179 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400180
181 clp->cl_call_sync = _nfs4_call_sync;
Andy Adamson557134a2009-04-01 09:21:53 -0400182#endif /* CONFIG_NFS_V4_1 */
183}
184
185/*
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800186 * Destroy the NFS4 callback service
187 */
188static void nfs4_destroy_callback(struct nfs_client *clp)
189{
190 if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
191 nfs_callback_down(clp->cl_minorversion);
192}
193
194static void nfs4_shutdown_client(struct nfs_client *clp)
195{
196 if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state))
197 nfs4_kill_renewd(clp);
198 nfs4_clear_client_minor_version(clp);
199 nfs4_destroy_callback(clp);
200 if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state))
201 nfs_idmap_delete(clp);
202
203 rpc_destroy_wait_queue(&clp->cl_rpcwaitq);
204}
205#else
206static void nfs4_shutdown_client(struct nfs_client *clp)
207{
208}
209#endif /* CONFIG_NFS_V4 */
210
211/*
David Howells24c8dbb2006-08-22 20:06:10 -0400212 * Destroy a shared client record
213 */
214static void nfs_free_client(struct nfs_client *clp)
215{
Trond Myklebust40c553192007-12-14 14:56:07 -0500216 dprintk("--> nfs_free_client(%u)\n", clp->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400217
Trond Myklebust5dd31772006-08-24 01:03:05 -0400218 nfs4_shutdown_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400219
David Howells14727282009-04-03 16:42:42 +0100220 nfs_fscache_release_client_cookie(clp);
221
David Howells24c8dbb2006-08-22 20:06:10 -0400222 /* -EIO all pending I/O */
223 if (!IS_ERR(clp->cl_rpcclient))
224 rpc_shutdown_client(clp->cl_rpcclient);
225
Trond Myklebust7c67db32008-04-07 20:50:11 -0400226 if (clp->cl_machine_cred != NULL)
227 put_rpccred(clp->cl_machine_cred);
228
David Howells24c8dbb2006-08-22 20:06:10 -0400229 kfree(clp->cl_hostname);
230 kfree(clp);
231
232 dprintk("<-- nfs_free_client()\n");
233}
234
235/*
236 * Release a reference to a shared client record
237 */
238void nfs_put_client(struct nfs_client *clp)
239{
David Howells27ba8512006-07-30 14:40:56 -0400240 if (!clp)
241 return;
242
David Howells24c8dbb2006-08-22 20:06:10 -0400243 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count));
244
245 if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) {
246 list_del(&clp->cl_share_link);
247 spin_unlock(&nfs_client_lock);
248
249 BUG_ON(!list_empty(&clp->cl_superblocks));
250
251 nfs_free_client(clp);
252 }
253}
254
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500255#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400256/*
257 * Test if two ip6 socket addresses refer to the same socket by
258 * comparing relevant fields. The padding bytes specifically, are not
259 * compared. sin6_flowinfo is not compared because it only affects QoS
260 * and sin6_scope_id is only compared if the address is "link local"
261 * because "link local" addresses need only be unique to a specific
262 * link. Conversely, ordinary unicast addresses might have different
263 * sin6_scope_id.
264 *
265 * The caller should ensure both socket addresses are AF_INET6.
266 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400267static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
268 const struct sockaddr *sa2)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400269{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400270 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
271 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400272
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400273 if (ipv6_addr_scope(&sin1->sin6_addr) == IPV6_ADDR_SCOPE_LINKLOCAL &&
274 sin1->sin6_scope_id != sin2->sin6_scope_id)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400275 return 0;
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500276
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400277 return ipv6_addr_equal(&sin1->sin6_addr, &sin1->sin6_addr);
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500278}
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400279#else /* !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE) */
280static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
281 const struct sockaddr *sa2)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400282{
283 return 0;
284}
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500285#endif
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500286
David Howells24c8dbb2006-08-22 20:06:10 -0400287/*
Ian Dalld7371c42009-03-10 20:33:22 -0400288 * Test if two ip4 socket addresses refer to the same socket, by
289 * comparing relevant fields. The padding bytes specifically, are
290 * not compared.
291 *
292 * The caller should ensure both socket addresses are AF_INET.
293 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400294static int nfs_sockaddr_match_ipaddr4(const struct sockaddr *sa1,
295 const struct sockaddr *sa2)
296{
297 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
298 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
299
300 return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr;
301}
302
303static int nfs_sockaddr_cmp_ip6(const struct sockaddr *sa1,
304 const struct sockaddr *sa2)
305{
306 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
307 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
308
309 return nfs_sockaddr_match_ipaddr6(sa1, sa2) &&
310 (sin1->sin6_port == sin2->sin6_port);
311}
312
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400313static int nfs_sockaddr_cmp_ip4(const struct sockaddr *sa1,
314 const struct sockaddr *sa2)
Ian Dalld7371c42009-03-10 20:33:22 -0400315{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400316 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
317 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400318
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400319 return nfs_sockaddr_match_ipaddr4(sa1, sa2) &&
320 (sin1->sin_port == sin2->sin_port);
Ian Dalld7371c42009-03-10 20:33:22 -0400321}
322
323/*
Ian Dalld7371c42009-03-10 20:33:22 -0400324 * Test if two socket addresses represent the same actual socket,
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400325 * by comparing (only) relevant fields, excluding the port number.
326 */
327static int nfs_sockaddr_match_ipaddr(const struct sockaddr *sa1,
328 const struct sockaddr *sa2)
329{
330 if (sa1->sa_family != sa2->sa_family)
331 return 0;
332
333 switch (sa1->sa_family) {
334 case AF_INET:
335 return nfs_sockaddr_match_ipaddr4(sa1, sa2);
336 case AF_INET6:
337 return nfs_sockaddr_match_ipaddr6(sa1, sa2);
338 }
339 return 0;
340}
341
342/*
343 * Test if two socket addresses represent the same actual socket,
344 * by comparing (only) relevant fields, including the port number.
Ian Dalld7371c42009-03-10 20:33:22 -0400345 */
346static int nfs_sockaddr_cmp(const struct sockaddr *sa1,
347 const struct sockaddr *sa2)
348{
349 if (sa1->sa_family != sa2->sa_family)
350 return 0;
351
352 switch (sa1->sa_family) {
353 case AF_INET:
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400354 return nfs_sockaddr_cmp_ip4(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400355 case AF_INET6:
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400356 return nfs_sockaddr_cmp_ip6(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400357 }
358 return 0;
359}
360
361/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500362 * Find a client by IP address and protocol version
363 * - returns NULL if no such client
David Howells24c8dbb2006-08-22 20:06:10 -0400364 */
Chuck Leverff052642007-12-10 14:58:44 -0500365struct nfs_client *nfs_find_client(const struct sockaddr *addr, u32 nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500366{
367 struct nfs_client *clp;
368
369 spin_lock(&nfs_client_lock);
370 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500371 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
372
Trond Myklebustc81468a2007-12-14 14:56:05 -0500373 /* Don't match clients that failed to initialise properly */
Andy Adamson76db6d92009-04-01 09:22:38 -0400374 if (!(clp->cl_cons_state == NFS_CS_READY ||
375 clp->cl_cons_state == NFS_CS_SESSION_INITING))
Trond Myklebustc81468a2007-12-14 14:56:05 -0500376 continue;
377
378 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500379 if (clp->rpc_ops->version != nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500380 continue;
381
382 /* Match only the IP address, not the port number */
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500383 if (!nfs_sockaddr_match_ipaddr(addr, clap))
Trond Myklebustc81468a2007-12-14 14:56:05 -0500384 continue;
385
386 atomic_inc(&clp->cl_count);
387 spin_unlock(&nfs_client_lock);
388 return clp;
389 }
390 spin_unlock(&nfs_client_lock);
391 return NULL;
392}
393
394/*
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500395 * Find a client by IP address and protocol version
396 * - returns NULL if no such client
397 */
398struct nfs_client *nfs_find_client_next(struct nfs_client *clp)
399{
400 struct sockaddr *sap = (struct sockaddr *)&clp->cl_addr;
401 u32 nfsvers = clp->rpc_ops->version;
402
403 spin_lock(&nfs_client_lock);
404 list_for_each_entry_continue(clp, &nfs_client_list, cl_share_link) {
405 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
406
407 /* Don't match clients that failed to initialise properly */
408 if (clp->cl_cons_state != NFS_CS_READY)
409 continue;
410
411 /* Different NFS versions cannot share the same nfs_client */
412 if (clp->rpc_ops->version != nfsvers)
413 continue;
414
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500415 /* Match only the IP address, not the port number */
416 if (!nfs_sockaddr_match_ipaddr(sap, clap))
417 continue;
418
419 atomic_inc(&clp->cl_count);
420 spin_unlock(&nfs_client_lock);
421 return clp;
422 }
423 spin_unlock(&nfs_client_lock);
424 return NULL;
425}
426
427/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500428 * Find an nfs_client on the list that matches the initialisation data
429 * that is supplied.
430 */
431static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400432{
433 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400434 const struct sockaddr *sap = data->addr;
David Howells24c8dbb2006-08-22 20:06:10 -0400435
436 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400437 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700438 /* Don't match clients that failed to initialise properly */
439 if (clp->cl_cons_state < 0)
440 continue;
441
David Howells24c8dbb2006-08-22 20:06:10 -0400442 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500443 if (clp->rpc_ops != data->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400444 continue;
445
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500446 if (clp->cl_proto != data->proto)
447 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400448 /* Match nfsv4 minorversion */
449 if (clp->cl_minorversion != data->minorversion)
450 continue;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500451 /* Match the full socket address */
Ian Dalld7371c42009-03-10 20:33:22 -0400452 if (!nfs_sockaddr_cmp(sap, clap))
David Howells24c8dbb2006-08-22 20:06:10 -0400453 continue;
454
Trond Myklebustc81468a2007-12-14 14:56:05 -0500455 atomic_inc(&clp->cl_count);
456 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400457 }
David Howells24c8dbb2006-08-22 20:06:10 -0400458 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400459}
460
461/*
462 * Look up a client by IP address and protocol version
463 * - creates a new record if one doesn't yet exist
464 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500465static struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400466{
467 struct nfs_client *clp, *new = NULL;
468 int error;
469
Chuck Leverd7422c42007-12-10 14:58:51 -0500470 dprintk("--> nfs_get_client(%s,v%u)\n",
471 cl_init->hostname ?: "", cl_init->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400472
473 /* see if the client already exists */
474 do {
475 spin_lock(&nfs_client_lock);
476
Trond Myklebustc81468a2007-12-14 14:56:05 -0500477 clp = nfs_match_client(cl_init);
David Howells24c8dbb2006-08-22 20:06:10 -0400478 if (clp)
479 goto found_client;
480 if (new)
481 goto install_client;
482
483 spin_unlock(&nfs_client_lock);
484
Trond Myklebust3a498022007-12-14 14:56:04 -0500485 new = nfs_alloc_client(cl_init);
Chuck Levera21bdd92009-06-17 18:02:10 -0700486 } while (!IS_ERR(new));
David Howells24c8dbb2006-08-22 20:06:10 -0400487
Chuck Levera21bdd92009-06-17 18:02:10 -0700488 dprintk("--> nfs_get_client() = %ld [failed]\n", PTR_ERR(new));
489 return new;
David Howells24c8dbb2006-08-22 20:06:10 -0400490
491 /* install a new client and return with it unready */
492install_client:
493 clp = new;
494 list_add(&clp->cl_share_link, &nfs_client_list);
495 spin_unlock(&nfs_client_lock);
496 dprintk("--> nfs_get_client() = %p [new]\n", clp);
497 return clp;
498
499 /* found an existing client
500 * - make sure it's ready before returning
501 */
502found_client:
503 spin_unlock(&nfs_client_lock);
504
505 if (new)
506 nfs_free_client(new);
507
Matthew Wilcox150030b2007-12-06 16:24:39 -0500508 error = wait_event_killable(nfs_client_active_wq,
Andy Adamson76db6d92009-04-01 09:22:38 -0400509 clp->cl_cons_state < NFS_CS_INITING);
Trond Myklebust0bae89e2006-10-08 14:33:24 -0400510 if (error < 0) {
511 nfs_put_client(clp);
512 return ERR_PTR(-ERESTARTSYS);
David Howells24c8dbb2006-08-22 20:06:10 -0400513 }
514
515 if (clp->cl_cons_state < NFS_CS_READY) {
516 error = clp->cl_cons_state;
517 nfs_put_client(clp);
518 return ERR_PTR(error);
519 }
520
David Howells54ceac42006-08-22 20:06:13 -0400521 BUG_ON(clp->cl_cons_state != NFS_CS_READY);
522
David Howells24c8dbb2006-08-22 20:06:10 -0400523 dprintk("--> nfs_get_client() = %p [share]\n", clp);
524 return clp;
525}
526
527/*
528 * Mark a server as ready or failed
529 */
Andy Adamson76db6d92009-04-01 09:22:38 -0400530void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400531{
532 clp->cl_cons_state = state;
533 wake_up_all(&nfs_client_active_wq);
534}
David Howells5006a762006-08-22 20:06:12 -0400535
536/*
Benny Halevy008f55d2009-04-01 09:22:50 -0400537 * With sessions, the client is not marked ready until after a
538 * successful EXCHANGE_ID and CREATE_SESSION.
539 *
540 * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate
541 * other versions of NFS can be tried.
542 */
543int nfs4_check_client_ready(struct nfs_client *clp)
544{
545 if (!nfs4_has_session(clp))
546 return 0;
547 if (clp->cl_cons_state < NFS_CS_READY)
548 return -EPROTONOSUPPORT;
549 return 0;
550}
551
552/*
David Howells5006a762006-08-22 20:06:12 -0400553 * Initialise the timeout values for a connection
554 */
555static void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
556 unsigned int timeo, unsigned int retrans)
557{
558 to->to_initval = timeo * HZ / 10;
559 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400560
561 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400562 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400563 case XPRT_TRANSPORT_RDMA:
Trond Myklebust259875e2008-07-02 14:43:47 -0400564 if (to->to_retries == 0)
565 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500566 if (to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400567 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400568 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
569 to->to_initval = NFS_MAX_TCP_TIMEOUT;
570 to->to_increment = to->to_initval;
571 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500572 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
573 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
574 if (to->to_maxval < to->to_initval)
575 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400576 to->to_exponential = 0;
577 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400578 case XPRT_TRANSPORT_UDP:
Trond Myklebust259875e2008-07-02 14:43:47 -0400579 if (to->to_retries == 0)
580 to->to_retries = NFS_DEF_UDP_RETRANS;
David Howells5006a762006-08-22 20:06:12 -0400581 if (!to->to_initval)
Trond Myklebust259875e2008-07-02 14:43:47 -0400582 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400583 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
584 to->to_initval = NFS_MAX_UDP_TIMEOUT;
585 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
586 to->to_exponential = 1;
587 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400588 default:
589 BUG();
David Howells5006a762006-08-22 20:06:12 -0400590 }
591}
592
593/*
594 * Create an RPC client handle
595 */
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500596static int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500597 const struct rpc_timeout *timeparms,
598 rpc_authflavor_t flavor,
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500599 int discrtry, int noresvport)
David Howells5006a762006-08-22 20:06:12 -0400600{
David Howells5006a762006-08-22 20:06:12 -0400601 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400602 struct rpc_create_args args = {
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500603 .protocol = clp->cl_proto,
Chuck Lever41877d22006-08-22 20:06:20 -0400604 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500605 .addrsize = clp->cl_addrlen,
Trond Myklebust33170232007-12-20 16:03:59 -0500606 .timeout = timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400607 .servername = clp->cl_hostname,
608 .program = &nfs_program,
609 .version = clp->rpc_ops->version,
610 .authflavor = flavor,
611 };
David Howells5006a762006-08-22 20:06:12 -0400612
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500613 if (discrtry)
614 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
615 if (noresvport)
616 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
617
David Howells5006a762006-08-22 20:06:12 -0400618 if (!IS_ERR(clp->cl_rpcclient))
619 return 0;
620
Chuck Lever41877d22006-08-22 20:06:20 -0400621 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400622 if (IS_ERR(clnt)) {
623 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700624 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400625 return PTR_ERR(clnt);
626 }
627
David Howells5006a762006-08-22 20:06:12 -0400628 clp->cl_rpcclient = clnt;
629 return 0;
630}
David Howells54ceac42006-08-22 20:06:13 -0400631
632/*
633 * Version 2 or 3 client destruction
634 */
635static void nfs_destroy_server(struct nfs_server *server)
636{
David Howells54ceac42006-08-22 20:06:13 -0400637 if (!(server->flags & NFS_MOUNT_NONLM))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500638 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400639}
640
641/*
642 * Version 2 or 3 lockd setup
643 */
644static int nfs_start_lockd(struct nfs_server *server)
645{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500646 struct nlm_host *host;
647 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500648 struct nlmclnt_initdata nlm_init = {
649 .hostname = clp->cl_hostname,
650 .address = (struct sockaddr *)&clp->cl_addr,
651 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500652 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500653 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
654 1 : 0,
Chuck Lever883bb162008-01-15 16:04:20 -0500655 };
David Howells54ceac42006-08-22 20:06:13 -0400656
Chuck Lever883bb162008-01-15 16:04:20 -0500657 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500658 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400659 if (server->flags & NFS_MOUNT_NONLM)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500660 return 0;
661
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400662 switch (clp->cl_proto) {
663 default:
664 nlm_init.protocol = IPPROTO_TCP;
665 break;
666 case XPRT_TRANSPORT_UDP:
667 nlm_init.protocol = IPPROTO_UDP;
668 }
669
Chuck Lever883bb162008-01-15 16:04:20 -0500670 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500671 if (IS_ERR(host))
672 return PTR_ERR(host);
673
674 server->nlm_host = host;
675 server->destroy = nfs_destroy_server;
676 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400677}
678
679/*
680 * Initialise an NFSv3 ACL client connection
681 */
682#ifdef CONFIG_NFS_V3_ACL
683static void nfs_init_server_aclclient(struct nfs_server *server)
684{
Trond Myklebust40c553192007-12-14 14:56:07 -0500685 if (server->nfs_client->rpc_ops->version != 3)
David Howells54ceac42006-08-22 20:06:13 -0400686 goto out_noacl;
687 if (server->flags & NFS_MOUNT_NOACL)
688 goto out_noacl;
689
690 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
691 if (IS_ERR(server->client_acl))
692 goto out_noacl;
693
694 /* No errors! Assume that Sun nfsacls are supported */
695 server->caps |= NFS_CAP_ACLS;
696 return;
697
698out_noacl:
699 server->caps &= ~NFS_CAP_ACLS;
700}
701#else
702static inline void nfs_init_server_aclclient(struct nfs_server *server)
703{
704 server->flags &= ~NFS_MOUNT_NOACL;
705 server->caps &= ~NFS_CAP_ACLS;
706}
707#endif
708
709/*
710 * Create a general RPC client
711 */
Trond Myklebust33170232007-12-20 16:03:59 -0500712static int nfs_init_server_rpcclient(struct nfs_server *server,
713 const struct rpc_timeout *timeo,
714 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400715{
716 struct nfs_client *clp = server->nfs_client;
717
718 server->client = rpc_clone_client(clp->cl_rpcclient);
719 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700720 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400721 return PTR_ERR(server->client);
722 }
723
Trond Myklebust33170232007-12-20 16:03:59 -0500724 memcpy(&server->client->cl_timeout_default,
725 timeo,
726 sizeof(server->client->cl_timeout_default));
727 server->client->cl_timeout = &server->client->cl_timeout_default;
728
David Howells54ceac42006-08-22 20:06:13 -0400729 if (pseudoflavour != clp->cl_rpcclient->cl_auth->au_flavor) {
730 struct rpc_auth *auth;
731
732 auth = rpcauth_create(pseudoflavour, server->client);
733 if (IS_ERR(auth)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700734 dprintk("%s: couldn't create credcache!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400735 return PTR_ERR(auth);
736 }
737 }
738 server->client->cl_softrtry = 0;
739 if (server->flags & NFS_MOUNT_SOFT)
740 server->client->cl_softrtry = 1;
741
David Howells54ceac42006-08-22 20:06:13 -0400742 return 0;
743}
744
745/*
746 * Initialise an NFS2 or NFS3 client
747 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400748static int nfs_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500749 const struct rpc_timeout *timeparms,
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400750 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400751{
David Howells54ceac42006-08-22 20:06:13 -0400752 int error;
753
754 if (clp->cl_cons_state == NFS_CS_READY) {
755 /* the client is already initialised */
756 dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp);
757 return 0;
758 }
759
David Howells54ceac42006-08-22 20:06:13 -0400760 /*
761 * Create a client RPC handle for doing FSSTAT with UNIX auth only
762 * - RFC 2623, sec 2.3.2
763 */
Chuck Leverd7403512008-12-23 15:21:37 -0500764 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX,
765 0, data->flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -0400766 if (error < 0)
767 goto error;
768 nfs_mark_client_ready(clp, NFS_CS_READY);
769 return 0;
770
771error:
772 nfs_mark_client_ready(clp, error);
773 dprintk("<-- nfs_init_client() = xerror %d\n", error);
774 return error;
775}
776
777/*
778 * Create a version 2 or 3 client
779 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400780static int nfs_init_server(struct nfs_server *server,
781 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400782{
Trond Myklebust3a498022007-12-14 14:56:04 -0500783 struct nfs_client_initdata cl_init = {
784 .hostname = data->nfs_server.hostname,
Chuck Leverd7422c42007-12-10 14:58:51 -0500785 .addr = (const struct sockaddr *)&data->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -0500786 .addrlen = data->nfs_server.addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -0500787 .rpc_ops = &nfs_v2_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500788 .proto = data->nfs_server.protocol,
Trond Myklebust3a498022007-12-14 14:56:04 -0500789 };
Trond Myklebust33170232007-12-20 16:03:59 -0500790 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -0400791 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500792 int error;
David Howells54ceac42006-08-22 20:06:13 -0400793
794 dprintk("--> nfs_init_server()\n");
795
796#ifdef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400797 if (data->version == 3)
Trond Myklebust40c553192007-12-14 14:56:07 -0500798 cl_init.rpc_ops = &nfs_v3_clientops;
David Howells54ceac42006-08-22 20:06:13 -0400799#endif
800
801 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -0500802 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -0400803 if (IS_ERR(clp)) {
804 dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp));
805 return PTR_ERR(clp);
806 }
807
Trond Myklebust33170232007-12-20 16:03:59 -0500808 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
809 data->timeo, data->retrans);
810 error = nfs_init_client(clp, &timeparms, data);
David Howells54ceac42006-08-22 20:06:13 -0400811 if (error < 0)
812 goto error;
813
814 server->nfs_client = clp;
815
816 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -0400817 server->flags = data->flags;
David Howellsb797cac2009-04-03 16:42:48 +0100818 server->options = data->options;
Trond Myklebust62ab460c2009-08-09 15:06:19 -0400819 server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
820 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP|
821 NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME;
David Howells54ceac42006-08-22 20:06:13 -0400822
823 if (data->rsize)
824 server->rsize = nfs_block_size(data->rsize, NULL);
825 if (data->wsize)
826 server->wsize = nfs_block_size(data->wsize, NULL);
827
828 server->acregmin = data->acregmin * HZ;
829 server->acregmax = data->acregmax * HZ;
830 server->acdirmin = data->acdirmin * HZ;
831 server->acdirmax = data->acdirmax * HZ;
832
833 /* Start lockd here, before we might error out */
834 error = nfs_start_lockd(server);
835 if (error < 0)
836 goto error;
837
Chuck Leverf22d6d72008-03-14 14:10:22 -0400838 server->port = data->nfs_server.port;
839
Trond Myklebust33170232007-12-20 16:03:59 -0500840 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -0400841 if (error < 0)
842 goto error;
843
Chuck Lever3f8400d2008-03-14 14:10:30 -0400844 /* Preserve the values of mount_server-related mount options */
845 if (data->mount_server.addrlen) {
846 memcpy(&server->mountd_address, &data->mount_server.address,
847 data->mount_server.addrlen);
848 server->mountd_addrlen = data->mount_server.addrlen;
849 }
850 server->mountd_version = data->mount_server.version;
851 server->mountd_port = data->mount_server.port;
852 server->mountd_protocol = data->mount_server.protocol;
853
David Howells54ceac42006-08-22 20:06:13 -0400854 server->namelen = data->namlen;
855 /* Create a client RPC handle for the NFSv3 ACL management interface */
856 nfs_init_server_aclclient(server);
David Howells54ceac42006-08-22 20:06:13 -0400857 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp);
858 return 0;
859
860error:
861 server->nfs_client = NULL;
862 nfs_put_client(clp);
863 dprintk("<-- nfs_init_server() = xerror %d\n", error);
864 return error;
865}
866
867/*
868 * Load up the server record from information gained in an fsinfo record
869 */
870static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *fsinfo)
871{
872 unsigned long max_rpc_payload;
873
874 /* Work out a lot of parameters */
875 if (server->rsize == 0)
876 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
877 if (server->wsize == 0)
878 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
879
880 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
881 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
882 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
883 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
884
885 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
886 if (server->rsize > max_rpc_payload)
887 server->rsize = max_rpc_payload;
888 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
889 server->rsize = NFS_MAX_FILE_IO_SIZE;
890 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700891
Jens Axboed9938312009-06-12 14:45:52 +0200892 server->backing_dev_info.name = "nfs";
David Howells54ceac42006-08-22 20:06:13 -0400893 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
894
895 if (server->wsize > max_rpc_payload)
896 server->wsize = max_rpc_payload;
897 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
898 server->wsize = NFS_MAX_FILE_IO_SIZE;
899 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
900 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
901
902 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
903 if (server->dtsize > PAGE_CACHE_SIZE)
904 server->dtsize = PAGE_CACHE_SIZE;
905 if (server->dtsize > server->rsize)
906 server->dtsize = server->rsize;
907
908 if (server->flags & NFS_MOUNT_NOAC) {
909 server->acregmin = server->acregmax = 0;
910 server->acdirmin = server->acdirmax = 0;
911 }
912
913 server->maxfilesize = fsinfo->maxfilesize;
914
915 /* We're airborne Set socket buffersize */
916 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
917}
918
919/*
920 * Probe filesystem information, including the FSID on v2/v3
921 */
922static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
923{
924 struct nfs_fsinfo fsinfo;
925 struct nfs_client *clp = server->nfs_client;
926 int error;
927
928 dprintk("--> nfs_probe_fsinfo()\n");
929
930 if (clp->rpc_ops->set_capabilities != NULL) {
931 error = clp->rpc_ops->set_capabilities(server, mntfh);
932 if (error < 0)
933 goto out_error;
934 }
935
936 fsinfo.fattr = fattr;
937 nfs_fattr_init(fattr);
938 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;
969 target->acregmin = source->acregmin;
970 target->acregmax = source->acregmax;
971 target->acdirmin = source->acdirmin;
972 target->acdirmax = source->acdirmax;
973 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400974 target->options = source->options;
David Howells54ceac42006-08-22 20:06:13 -0400975}
976
977/*
978 * Allocate and initialise a server record
979 */
980static struct nfs_server *nfs_alloc_server(void)
981{
982 struct nfs_server *server;
983
984 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
985 if (!server)
986 return NULL;
987
988 server->client = server->client_acl = ERR_PTR(-EINVAL);
989
990 /* Zero out the NFS state stuff */
991 INIT_LIST_HEAD(&server->client_link);
992 INIT_LIST_HEAD(&server->master_link);
993
Steve Dicksonef818a22007-11-08 04:05:04 -0500994 atomic_set(&server->active, 0);
995
David Howells54ceac42006-08-22 20:06:13 -0400996 server->io_stats = nfs_alloc_iostats();
997 if (!server->io_stats) {
998 kfree(server);
999 return NULL;
1000 }
1001
Jens Axboe48d07642009-09-21 09:59:39 +02001002 if (bdi_init(&server->backing_dev_info)) {
1003 nfs_free_iostats(server->io_stats);
1004 kfree(server);
1005 return NULL;
1006 }
1007
David Howells54ceac42006-08-22 20:06:13 -04001008 return server;
1009}
1010
1011/*
1012 * Free up a server record
1013 */
1014void nfs_free_server(struct nfs_server *server)
1015{
1016 dprintk("--> nfs_free_server()\n");
1017
1018 spin_lock(&nfs_client_lock);
1019 list_del(&server->client_link);
1020 list_del(&server->master_link);
1021 spin_unlock(&nfs_client_lock);
1022
1023 if (server->destroy != NULL)
1024 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -05001025
1026 if (!IS_ERR(server->client_acl))
1027 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -04001028 if (!IS_ERR(server->client))
1029 rpc_shutdown_client(server->client);
1030
1031 nfs_put_client(server->nfs_client);
1032
1033 nfs_free_iostats(server->io_stats);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001034 bdi_destroy(&server->backing_dev_info);
David Howells54ceac42006-08-22 20:06:13 -04001035 kfree(server);
1036 nfs_release_automount_timer();
1037 dprintk("<-- nfs_free_server()\n");
1038}
1039
1040/*
1041 * Create a version 2 or 3 volume record
1042 * - keyed on server and FSID
1043 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001044struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001045 struct nfs_fh *mntfh)
1046{
1047 struct nfs_server *server;
1048 struct nfs_fattr fattr;
1049 int error;
1050
1051 server = nfs_alloc_server();
1052 if (!server)
1053 return ERR_PTR(-ENOMEM);
1054
1055 /* Get a client representation */
1056 error = nfs_init_server(server, data);
1057 if (error < 0)
1058 goto error;
1059
1060 BUG_ON(!server->nfs_client);
1061 BUG_ON(!server->nfs_client->rpc_ops);
1062 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1063
1064 /* Probe the root fh to retrieve its FSID */
1065 error = nfs_probe_fsinfo(server, mntfh, &fattr);
1066 if (error < 0)
1067 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001068 if (server->nfs_client->rpc_ops->version == 3) {
1069 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1070 server->namelen = NFS3_MAXNAMLEN;
1071 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1072 server->caps |= NFS_CAP_READDIRPLUS;
1073 } else {
1074 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1075 server->namelen = NFS2_MAXNAMLEN;
1076 }
1077
David Howells54ceac42006-08-22 20:06:13 -04001078 if (!(fattr.valid & NFS_ATTR_FATTR)) {
1079 error = server->nfs_client->rpc_ops->getattr(server, mntfh, &fattr);
1080 if (error < 0) {
1081 dprintk("nfs_create_server: getattr error = %d\n", -error);
1082 goto error;
1083 }
1084 }
1085 memcpy(&server->fsid, &fattr.fsid, sizeof(server->fsid));
1086
David Howells6daabf12006-08-24 15:44:16 -04001087 dprintk("Server FSID: %llx:%llx\n",
1088 (unsigned long long) server->fsid.major,
1089 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001090
David Howells54ceac42006-08-22 20:06:13 -04001091 spin_lock(&nfs_client_lock);
1092 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1093 list_add_tail(&server->master_link, &nfs_volume_list);
1094 spin_unlock(&nfs_client_lock);
1095
1096 server->mount_time = jiffies;
1097 return server;
1098
1099error:
1100 nfs_free_server(server);
1101 return ERR_PTR(error);
1102}
1103
1104#ifdef CONFIG_NFS_V4
1105/*
Benny Halevy9bdaa862009-04-01 09:22:55 -04001106 * Initialize the NFS4 callback service
1107 */
1108static int nfs4_init_callback(struct nfs_client *clp)
1109{
1110 int error;
1111
1112 if (clp->rpc_ops->version == 4) {
Andy Adamson0b5b7ae2009-04-01 09:23:15 -04001113 if (nfs4_has_session(clp)) {
1114 error = xprt_setup_backchannel(
1115 clp->cl_rpcclient->cl_xprt,
1116 NFS41_BC_MIN_CALLBACKS);
1117 if (error < 0)
1118 return error;
1119 }
1120
Benny Halevy71468512009-04-01 09:22:56 -04001121 error = nfs_callback_up(clp->cl_minorversion,
1122 clp->cl_rpcclient->cl_xprt);
Benny Halevy9bdaa862009-04-01 09:22:55 -04001123 if (error < 0) {
1124 dprintk("%s: failed to start callback. Error = %d\n",
1125 __func__, error);
1126 return error;
1127 }
1128 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
1129 }
1130 return 0;
1131}
1132
1133/*
Andy Adamson557134a2009-04-01 09:21:53 -04001134 * Initialize the minor version specific parts of an NFS4 client record
1135 */
1136static int nfs4_init_client_minor_version(struct nfs_client *clp)
1137{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001138 clp->cl_call_sync = _nfs4_call_sync;
1139
Andy Adamson557134a2009-04-01 09:21:53 -04001140#if defined(CONFIG_NFS_V4_1)
1141 if (clp->cl_minorversion) {
1142 struct nfs4_session *session = NULL;
1143 /*
1144 * Create the session and mark it expired.
1145 * When a SEQUENCE operation encounters the expired session
1146 * it will do session recovery to initialize it.
1147 */
1148 session = nfs4_alloc_session(clp);
1149 if (!session)
1150 return -ENOMEM;
1151
1152 clp->cl_session = session;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001153 clp->cl_call_sync = _nfs4_call_sync_session;
Andy Adamson557134a2009-04-01 09:21:53 -04001154 }
1155#endif /* CONFIG_NFS_V4_1 */
1156
Benny Halevy71468512009-04-01 09:22:56 -04001157 return nfs4_init_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -04001158}
1159
1160/*
David Howells54ceac42006-08-22 20:06:13 -04001161 * Initialise an NFS4 client record
1162 */
1163static int nfs4_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -05001164 const struct rpc_timeout *timeparms,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001165 const char *ip_addr,
Chuck Leverd7403512008-12-23 15:21:37 -05001166 rpc_authflavor_t authflavour,
1167 int flags)
David Howells54ceac42006-08-22 20:06:13 -04001168{
1169 int error;
1170
1171 if (clp->cl_cons_state == NFS_CS_READY) {
1172 /* the client is initialised already */
1173 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
1174 return 0;
1175 }
1176
1177 /* Check NFS protocol revision and initialize RPC op vector */
1178 clp->rpc_ops = &nfs_v4_clientops;
1179
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001180 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Chuck Leverd7403512008-12-23 15:21:37 -05001181 1, flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -04001182 if (error < 0)
1183 goto error;
Ben Hutchingsf4373bf2009-10-06 15:42:18 -04001184 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -04001185
1186 error = nfs_idmap_new(clp);
1187 if (error < 0) {
1188 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001189 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -04001190 goto error;
1191 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -04001192 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -04001193
Andy Adamson557134a2009-04-01 09:21:53 -04001194 error = nfs4_init_client_minor_version(clp);
1195 if (error < 0)
1196 goto error;
1197
Andy Adamson76db6d92009-04-01 09:22:38 -04001198 if (!nfs4_has_session(clp))
1199 nfs_mark_client_ready(clp, NFS_CS_READY);
David Howells54ceac42006-08-22 20:06:13 -04001200 return 0;
1201
1202error:
1203 nfs_mark_client_ready(clp, error);
1204 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1205 return error;
1206}
1207
1208/*
1209 * Set up an NFS4 client
1210 */
1211static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001212 const char *hostname,
1213 const struct sockaddr *addr,
1214 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001215 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001216 rpc_authflavor_t authflavour,
Benny Halevy94a417f2009-04-01 09:21:49 -04001217 int proto, const struct rpc_timeout *timeparms,
1218 u32 minorversion)
David Howells54ceac42006-08-22 20:06:13 -04001219{
Trond Myklebust3a498022007-12-14 14:56:04 -05001220 struct nfs_client_initdata cl_init = {
1221 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001222 .addr = addr,
1223 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001224 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001225 .proto = proto,
Benny Halevy5aae4a92009-04-01 09:21:50 -04001226 .minorversion = minorversion,
Trond Myklebust3a498022007-12-14 14:56:04 -05001227 };
David Howells54ceac42006-08-22 20:06:13 -04001228 struct nfs_client *clp;
1229 int error;
1230
1231 dprintk("--> nfs4_set_client()\n");
1232
1233 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -05001234 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -04001235 if (IS_ERR(clp)) {
1236 error = PTR_ERR(clp);
1237 goto error;
1238 }
Chuck Leverd7403512008-12-23 15:21:37 -05001239 error = nfs4_init_client(clp, timeparms, ip_addr, authflavour,
1240 server->flags);
David Howells54ceac42006-08-22 20:06:13 -04001241 if (error < 0)
1242 goto error_put;
1243
1244 server->nfs_client = clp;
1245 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1246 return 0;
1247
1248error_put:
1249 nfs_put_client(clp);
1250error:
1251 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1252 return error;
1253}
1254
Andy Adamson557134a2009-04-01 09:21:53 -04001255
1256/*
Andy Adamson96b09e02009-04-01 09:22:33 -04001257 * Session has been established, and the client marked ready.
1258 * Set the mount rsize and wsize with negotiated fore channel
1259 * attributes which will be bound checked in nfs_server_set_fsinfo.
1260 */
1261static void nfs4_session_set_rwsize(struct nfs_server *server)
1262{
1263#ifdef CONFIG_NFS_V4_1
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001264 struct nfs4_session *sess;
1265 u32 server_resp_sz;
1266 u32 server_rqst_sz;
1267
Andy Adamson96b09e02009-04-01 09:22:33 -04001268 if (!nfs4_has_session(server->nfs_client))
1269 return;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001270 sess = server->nfs_client->cl_session;
1271 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
1272 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
1273
1274 if (server->rsize > server_resp_sz)
1275 server->rsize = server_resp_sz;
1276 if (server->wsize > server_rqst_sz)
1277 server->wsize = server_rqst_sz;
Andy Adamson96b09e02009-04-01 09:22:33 -04001278#endif /* CONFIG_NFS_V4_1 */
1279}
1280
1281/*
David Howells54ceac42006-08-22 20:06:13 -04001282 * Create a version 4 volume record
1283 */
1284static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001285 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001286{
Trond Myklebust33170232007-12-20 16:03:59 -05001287 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001288 int error;
1289
1290 dprintk("--> nfs4_init_server()\n");
1291
Trond Myklebust33170232007-12-20 16:03:59 -05001292 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1293 data->timeo, data->retrans);
1294
Chuck Lever542fcc32008-12-23 15:21:36 -05001295 /* Initialise the client representation from the mount data */
1296 server->flags = data->flags;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001297 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR|
1298 NFS_CAP_POSIX_LOCK;
David Howellsb797cac2009-04-03 16:42:48 +01001299 server->options = data->options;
Chuck Lever542fcc32008-12-23 15:21:36 -05001300
Trond Myklebust33170232007-12-20 16:03:59 -05001301 /* Get a client record */
1302 error = nfs4_set_client(server,
1303 data->nfs_server.hostname,
1304 (const struct sockaddr *)&data->nfs_server.address,
1305 data->nfs_server.addrlen,
1306 data->client_address,
1307 data->auth_flavors[0],
1308 data->nfs_server.protocol,
Benny Halevy94a417f2009-04-01 09:21:49 -04001309 &timeparms,
1310 data->minorversion);
Trond Myklebust33170232007-12-20 16:03:59 -05001311 if (error < 0)
1312 goto error;
1313
David Howells54ceac42006-08-22 20:06:13 -04001314 if (data->rsize)
1315 server->rsize = nfs_block_size(data->rsize, NULL);
1316 if (data->wsize)
1317 server->wsize = nfs_block_size(data->wsize, NULL);
1318
1319 server->acregmin = data->acregmin * HZ;
1320 server->acregmax = data->acregmax * HZ;
1321 server->acdirmin = data->acdirmin * HZ;
1322 server->acdirmax = data->acdirmax * HZ;
1323
Chuck Leverf22d6d72008-03-14 14:10:22 -04001324 server->port = data->nfs_server.port;
1325
Trond Myklebust33170232007-12-20 16:03:59 -05001326 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001327
Trond Myklebust33170232007-12-20 16:03:59 -05001328error:
David Howells54ceac42006-08-22 20:06:13 -04001329 /* Done */
1330 dprintk("<-- nfs4_init_server() = %d\n", error);
1331 return error;
1332}
1333
1334/*
1335 * Create a version 4 volume record
1336 * - keyed on server and FSID
1337 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001338struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001339 struct nfs_fh *mntfh)
1340{
1341 struct nfs_fattr fattr;
1342 struct nfs_server *server;
1343 int error;
1344
1345 dprintk("--> nfs4_create_server()\n");
1346
1347 server = nfs_alloc_server();
1348 if (!server)
1349 return ERR_PTR(-ENOMEM);
1350
David Howells54ceac42006-08-22 20:06:13 -04001351 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001352 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001353 if (error < 0)
1354 goto error;
1355
1356 BUG_ON(!server->nfs_client);
1357 BUG_ON(!server->nfs_client->rpc_ops);
1358 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1359
Trond Myklebustfccba802009-07-21 16:48:07 -04001360 error = nfs4_init_session(server);
1361 if (error < 0)
1362 goto error;
Andy Adamson557134a2009-04-01 09:21:53 -04001363
David Howells54ceac42006-08-22 20:06:13 -04001364 /* Probe the root fh to retrieve its FSID */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001365 error = nfs4_path_walk(server, mntfh, data->nfs_server.export_path);
David Howells54ceac42006-08-22 20:06:13 -04001366 if (error < 0)
1367 goto error;
1368
David Howells6daabf12006-08-24 15:44:16 -04001369 dprintk("Server FSID: %llx:%llx\n",
1370 (unsigned long long) server->fsid.major,
1371 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001372 dprintk("Mount FH: %d\n", mntfh->size);
1373
Andy Adamson96b09e02009-04-01 09:22:33 -04001374 nfs4_session_set_rwsize(server);
1375
David Howells54ceac42006-08-22 20:06:13 -04001376 error = nfs_probe_fsinfo(server, mntfh, &fattr);
1377 if (error < 0)
1378 goto error;
1379
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001380 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1381 server->namelen = NFS4_MAXNAMLEN;
1382
David Howells54ceac42006-08-22 20:06:13 -04001383 spin_lock(&nfs_client_lock);
1384 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1385 list_add_tail(&server->master_link, &nfs_volume_list);
1386 spin_unlock(&nfs_client_lock);
1387
1388 server->mount_time = jiffies;
1389 dprintk("<-- nfs4_create_server() = %p\n", server);
1390 return server;
1391
1392error:
1393 nfs_free_server(server);
1394 dprintk("<-- nfs4_create_server() = error %d\n", error);
1395 return ERR_PTR(error);
1396}
1397
1398/*
1399 * Create an NFS4 referral server record
1400 */
1401struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001402 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001403{
1404 struct nfs_client *parent_client;
1405 struct nfs_server *server, *parent_server;
1406 struct nfs_fattr fattr;
1407 int error;
1408
1409 dprintk("--> nfs4_create_referral_server()\n");
1410
1411 server = nfs_alloc_server();
1412 if (!server)
1413 return ERR_PTR(-ENOMEM);
1414
1415 parent_server = NFS_SB(data->sb);
1416 parent_client = parent_server->nfs_client;
1417
Chuck Lever542fcc32008-12-23 15:21:36 -05001418 /* Initialise the client representation from the parent server */
1419 nfs_server_copy_userdata(server, parent_server);
Trond Myklebust62ab460c2009-08-09 15:06:19 -04001420 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
Chuck Lever542fcc32008-12-23 15:21:36 -05001421
David Howells54ceac42006-08-22 20:06:13 -04001422 /* Get a client representation.
1423 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001424 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001425 data->addr,
1426 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001427 parent_client->cl_ipaddr,
1428 data->authflavor,
1429 parent_server->client->cl_xprt->prot,
Benny Halevy94a417f2009-04-01 09:21:49 -04001430 parent_server->client->cl_timeout,
1431 parent_client->cl_minorversion);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001432 if (error < 0)
1433 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001434
Trond Myklebust33170232007-12-20 16:03:59 -05001435 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001436 if (error < 0)
1437 goto error;
1438
1439 BUG_ON(!server->nfs_client);
1440 BUG_ON(!server->nfs_client->rpc_ops);
1441 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1442
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001443 /* Probe the root fh to retrieve its FSID and filehandle */
1444 error = nfs4_path_walk(server, mntfh, data->mnt_path);
1445 if (error < 0)
1446 goto error;
1447
David Howells54ceac42006-08-22 20:06:13 -04001448 /* probe the filesystem info for this server filesystem */
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001449 error = nfs_probe_fsinfo(server, mntfh, &fattr);
David Howells54ceac42006-08-22 20:06:13 -04001450 if (error < 0)
1451 goto error;
1452
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001453 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1454 server->namelen = NFS4_MAXNAMLEN;
1455
David Howells54ceac42006-08-22 20:06:13 -04001456 dprintk("Referral FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001457 (unsigned long long) server->fsid.major,
1458 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001459
1460 spin_lock(&nfs_client_lock);
1461 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1462 list_add_tail(&server->master_link, &nfs_volume_list);
1463 spin_unlock(&nfs_client_lock);
1464
1465 server->mount_time = jiffies;
1466
1467 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;
1486 struct nfs_fattr fattr_fsinfo;
1487 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
1497 /* Copy data from the source */
1498 server->nfs_client = source->nfs_client;
1499 atomic_inc(&server->nfs_client->cl_count);
1500 nfs_server_copy_userdata(server, source);
1501
1502 server->fsid = fattr->fsid;
1503
Trond Myklebust33170232007-12-20 16:03:59 -05001504 error = nfs_init_server_rpcclient(server,
1505 source->client->cl_timeout,
1506 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001507 if (error < 0)
1508 goto out_free_server;
1509 if (!IS_ERR(source->client_acl))
1510 nfs_init_server_aclclient(server);
1511
1512 /* probe the filesystem info for this server filesystem */
1513 error = nfs_probe_fsinfo(server, fh, &fattr_fsinfo);
1514 if (error < 0)
1515 goto out_free_server;
1516
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001517 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1518 server->namelen = NFS4_MAXNAMLEN;
1519
David Howells54ceac42006-08-22 20:06:13 -04001520 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001521 (unsigned long long) server->fsid.major,
1522 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001523
1524 error = nfs_start_lockd(server);
1525 if (error < 0)
1526 goto out_free_server;
1527
1528 spin_lock(&nfs_client_lock);
1529 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1530 list_add_tail(&server->master_link, &nfs_volume_list);
1531 spin_unlock(&nfs_client_lock);
1532
1533 server->mount_time = jiffies;
1534
1535 dprintk("<-- nfs_clone_server() = %p\n", server);
1536 return server;
1537
1538out_free_server:
1539 nfs_free_server(server);
1540 dprintk("<-- nfs_clone_server() = error %d\n", error);
1541 return ERR_PTR(error);
1542}
David Howells6aaca562006-08-22 20:06:13 -04001543
1544#ifdef CONFIG_PROC_FS
1545static struct proc_dir_entry *proc_fs_nfs;
1546
1547static int nfs_server_list_open(struct inode *inode, struct file *file);
1548static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1549static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1550static void nfs_server_list_stop(struct seq_file *p, void *v);
1551static int nfs_server_list_show(struct seq_file *m, void *v);
1552
James Morris88e9d342009-09-22 16:43:43 -07001553static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001554 .start = nfs_server_list_start,
1555 .next = nfs_server_list_next,
1556 .stop = nfs_server_list_stop,
1557 .show = nfs_server_list_show,
1558};
1559
Arjan van de Ven00977a52007-02-12 00:55:34 -08001560static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001561 .open = nfs_server_list_open,
1562 .read = seq_read,
1563 .llseek = seq_lseek,
1564 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001565 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001566};
1567
1568static int nfs_volume_list_open(struct inode *inode, struct file *file);
1569static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1570static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1571static void nfs_volume_list_stop(struct seq_file *p, void *v);
1572static int nfs_volume_list_show(struct seq_file *m, void *v);
1573
James Morris88e9d342009-09-22 16:43:43 -07001574static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001575 .start = nfs_volume_list_start,
1576 .next = nfs_volume_list_next,
1577 .stop = nfs_volume_list_stop,
1578 .show = nfs_volume_list_show,
1579};
1580
Arjan van de Ven00977a52007-02-12 00:55:34 -08001581static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001582 .open = nfs_volume_list_open,
1583 .read = seq_read,
1584 .llseek = seq_lseek,
1585 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001586 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001587};
1588
1589/*
1590 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1591 * we're dealing
1592 */
1593static int nfs_server_list_open(struct inode *inode, struct file *file)
1594{
1595 struct seq_file *m;
1596 int ret;
1597
1598 ret = seq_open(file, &nfs_server_list_ops);
1599 if (ret < 0)
1600 return ret;
1601
1602 m = file->private_data;
1603 m->private = PDE(inode)->data;
1604
1605 return 0;
1606}
1607
1608/*
1609 * set up the iterator to start reading from the server list and return the first item
1610 */
1611static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1612{
David Howells6aaca562006-08-22 20:06:13 -04001613 /* lock the list against modification */
1614 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001615 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001616}
1617
1618/*
1619 * move to next server
1620 */
1621static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1622{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001623 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001624}
1625
1626/*
1627 * clean up after reading from the transports list
1628 */
1629static void nfs_server_list_stop(struct seq_file *p, void *v)
1630{
1631 spin_unlock(&nfs_client_lock);
1632}
1633
1634/*
1635 * display a header line followed by a load of call lines
1636 */
1637static int nfs_server_list_show(struct seq_file *m, void *v)
1638{
1639 struct nfs_client *clp;
1640
1641 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001642 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001643 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1644 return 0;
1645 }
1646
1647 /* display one transport per line on subsequent lines */
1648 clp = list_entry(v, struct nfs_client, cl_share_link);
1649
Chuck Lever5d8515c2007-12-10 14:57:16 -05001650 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001651 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001652 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1653 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001654 atomic_read(&clp->cl_count),
1655 clp->cl_hostname);
1656
1657 return 0;
1658}
1659
1660/*
1661 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1662 */
1663static int nfs_volume_list_open(struct inode *inode, struct file *file)
1664{
1665 struct seq_file *m;
1666 int ret;
1667
1668 ret = seq_open(file, &nfs_volume_list_ops);
1669 if (ret < 0)
1670 return ret;
1671
1672 m = file->private_data;
1673 m->private = PDE(inode)->data;
1674
1675 return 0;
1676}
1677
1678/*
1679 * set up the iterator to start reading from the volume list and return the first item
1680 */
1681static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1682{
David Howells6aaca562006-08-22 20:06:13 -04001683 /* lock the list against modification */
1684 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001685 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001686}
1687
1688/*
1689 * move to next volume
1690 */
1691static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1692{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001693 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001694}
1695
1696/*
1697 * clean up after reading from the transports list
1698 */
1699static void nfs_volume_list_stop(struct seq_file *p, void *v)
1700{
1701 spin_unlock(&nfs_client_lock);
1702}
1703
1704/*
1705 * display a header line followed by a load of call lines
1706 */
1707static int nfs_volume_list_show(struct seq_file *m, void *v)
1708{
1709 struct nfs_server *server;
1710 struct nfs_client *clp;
1711 char dev[8], fsid[17];
1712
1713 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001714 if (v == &nfs_volume_list) {
David Howells5d1acff2009-04-03 16:42:47 +01001715 seq_puts(m, "NV SERVER PORT DEV FSID FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001716 return 0;
1717 }
1718 /* display one transport per line on subsequent lines */
1719 server = list_entry(v, struct nfs_server, master_link);
1720 clp = server->nfs_client;
1721
1722 snprintf(dev, 8, "%u:%u",
1723 MAJOR(server->s_dev), MINOR(server->s_dev));
1724
1725 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001726 (unsigned long long) server->fsid.major,
1727 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001728
David Howells5d1acff2009-04-03 16:42:47 +01001729 seq_printf(m, "v%u %s %s %-7s %-17s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001730 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001731 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1732 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001733 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001734 fsid,
1735 nfs_server_fscache_state(server));
David Howells6aaca562006-08-22 20:06:13 -04001736
1737 return 0;
1738}
1739
1740/*
1741 * initialise the /proc/fs/nfsfs/ directory
1742 */
1743int __init nfs_fs_proc_init(void)
1744{
1745 struct proc_dir_entry *p;
1746
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001747 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001748 if (!proc_fs_nfs)
1749 goto error_0;
1750
David Howells6aaca562006-08-22 20:06:13 -04001751 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001752 p = proc_create("servers", S_IFREG|S_IRUGO,
1753 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001754 if (!p)
1755 goto error_1;
1756
David Howells6aaca562006-08-22 20:06:13 -04001757 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001758 p = proc_create("volumes", S_IFREG|S_IRUGO,
1759 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001760 if (!p)
1761 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001762 return 0;
1763
1764error_2:
1765 remove_proc_entry("servers", proc_fs_nfs);
1766error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001767 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001768error_0:
1769 return -ENOMEM;
1770}
1771
1772/*
1773 * clean up the /proc/fs/nfsfs/ directory
1774 */
1775void nfs_fs_proc_exit(void)
1776{
1777 remove_proc_entry("volumes", proc_fs_nfs);
1778 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001779 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001780}
1781
1782#endif /* CONFIG_PROC_FS */