blob: acc9c4943b84723639cdcf88dd2656c06c67010f [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 Myklebust62ab4602009-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;
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;
1050 struct nfs_fattr fattr;
1051 int error;
1052
1053 server = nfs_alloc_server();
1054 if (!server)
1055 return ERR_PTR(-ENOMEM);
1056
1057 /* Get a client representation */
1058 error = nfs_init_server(server, data);
1059 if (error < 0)
1060 goto error;
1061
1062 BUG_ON(!server->nfs_client);
1063 BUG_ON(!server->nfs_client->rpc_ops);
1064 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1065
1066 /* Probe the root fh to retrieve its FSID */
1067 error = nfs_probe_fsinfo(server, mntfh, &fattr);
1068 if (error < 0)
1069 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001070 if (server->nfs_client->rpc_ops->version == 3) {
1071 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1072 server->namelen = NFS3_MAXNAMLEN;
1073 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1074 server->caps |= NFS_CAP_READDIRPLUS;
1075 } else {
1076 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1077 server->namelen = NFS2_MAXNAMLEN;
1078 }
1079
David Howells54ceac42006-08-22 20:06:13 -04001080 if (!(fattr.valid & NFS_ATTR_FATTR)) {
1081 error = server->nfs_client->rpc_ops->getattr(server, mntfh, &fattr);
1082 if (error < 0) {
1083 dprintk("nfs_create_server: getattr error = %d\n", -error);
1084 goto error;
1085 }
1086 }
1087 memcpy(&server->fsid, &fattr.fsid, sizeof(server->fsid));
1088
David Howells6daabf12006-08-24 15:44:16 -04001089 dprintk("Server FSID: %llx:%llx\n",
1090 (unsigned long long) server->fsid.major,
1091 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001092
David Howells54ceac42006-08-22 20:06:13 -04001093 spin_lock(&nfs_client_lock);
1094 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1095 list_add_tail(&server->master_link, &nfs_volume_list);
1096 spin_unlock(&nfs_client_lock);
1097
1098 server->mount_time = jiffies;
1099 return server;
1100
1101error:
1102 nfs_free_server(server);
1103 return ERR_PTR(error);
1104}
1105
1106#ifdef CONFIG_NFS_V4
1107/*
Benny Halevy9bdaa862009-04-01 09:22:55 -04001108 * Initialize the NFS4 callback service
1109 */
1110static int nfs4_init_callback(struct nfs_client *clp)
1111{
1112 int error;
1113
1114 if (clp->rpc_ops->version == 4) {
Andy Adamson0b5b7ae2009-04-01 09:23:15 -04001115 if (nfs4_has_session(clp)) {
1116 error = xprt_setup_backchannel(
1117 clp->cl_rpcclient->cl_xprt,
1118 NFS41_BC_MIN_CALLBACKS);
1119 if (error < 0)
1120 return error;
1121 }
1122
Benny Halevy71468512009-04-01 09:22:56 -04001123 error = nfs_callback_up(clp->cl_minorversion,
1124 clp->cl_rpcclient->cl_xprt);
Benny Halevy9bdaa862009-04-01 09:22:55 -04001125 if (error < 0) {
1126 dprintk("%s: failed to start callback. Error = %d\n",
1127 __func__, error);
1128 return error;
1129 }
1130 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
1131 }
1132 return 0;
1133}
1134
1135/*
Andy Adamson557134a2009-04-01 09:21:53 -04001136 * Initialize the minor version specific parts of an NFS4 client record
1137 */
1138static int nfs4_init_client_minor_version(struct nfs_client *clp)
1139{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001140 clp->cl_call_sync = _nfs4_call_sync;
1141
Andy Adamson557134a2009-04-01 09:21:53 -04001142#if defined(CONFIG_NFS_V4_1)
1143 if (clp->cl_minorversion) {
1144 struct nfs4_session *session = NULL;
1145 /*
1146 * Create the session and mark it expired.
1147 * When a SEQUENCE operation encounters the expired session
1148 * it will do session recovery to initialize it.
1149 */
1150 session = nfs4_alloc_session(clp);
1151 if (!session)
1152 return -ENOMEM;
1153
1154 clp->cl_session = session;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001155 clp->cl_call_sync = _nfs4_call_sync_session;
Andy Adamson557134a2009-04-01 09:21:53 -04001156 }
1157#endif /* CONFIG_NFS_V4_1 */
1158
Benny Halevy71468512009-04-01 09:22:56 -04001159 return nfs4_init_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -04001160}
1161
1162/*
David Howells54ceac42006-08-22 20:06:13 -04001163 * Initialise an NFS4 client record
1164 */
1165static int nfs4_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -05001166 const struct rpc_timeout *timeparms,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001167 const char *ip_addr,
Chuck Leverd7403512008-12-23 15:21:37 -05001168 rpc_authflavor_t authflavour,
1169 int flags)
David Howells54ceac42006-08-22 20:06:13 -04001170{
1171 int error;
1172
1173 if (clp->cl_cons_state == NFS_CS_READY) {
1174 /* the client is initialised already */
1175 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
1176 return 0;
1177 }
1178
1179 /* Check NFS protocol revision and initialize RPC op vector */
1180 clp->rpc_ops = &nfs_v4_clientops;
1181
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001182 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Chuck Leverd7403512008-12-23 15:21:37 -05001183 1, flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -04001184 if (error < 0)
1185 goto error;
Ben Hutchingsf4373bf2009-10-06 15:42:18 -04001186 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -04001187
1188 error = nfs_idmap_new(clp);
1189 if (error < 0) {
1190 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001191 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -04001192 goto error;
1193 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -04001194 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -04001195
Andy Adamson557134a2009-04-01 09:21:53 -04001196 error = nfs4_init_client_minor_version(clp);
1197 if (error < 0)
1198 goto error;
1199
Andy Adamson76db6d92009-04-01 09:22:38 -04001200 if (!nfs4_has_session(clp))
1201 nfs_mark_client_ready(clp, NFS_CS_READY);
David Howells54ceac42006-08-22 20:06:13 -04001202 return 0;
1203
1204error:
1205 nfs_mark_client_ready(clp, error);
1206 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1207 return error;
1208}
1209
1210/*
1211 * Set up an NFS4 client
1212 */
1213static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001214 const char *hostname,
1215 const struct sockaddr *addr,
1216 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001217 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001218 rpc_authflavor_t authflavour,
Benny Halevy94a417f2009-04-01 09:21:49 -04001219 int proto, const struct rpc_timeout *timeparms,
1220 u32 minorversion)
David Howells54ceac42006-08-22 20:06:13 -04001221{
Trond Myklebust3a498022007-12-14 14:56:04 -05001222 struct nfs_client_initdata cl_init = {
1223 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001224 .addr = addr,
1225 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001226 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001227 .proto = proto,
Benny Halevy5aae4a92009-04-01 09:21:50 -04001228 .minorversion = minorversion,
Trond Myklebust3a498022007-12-14 14:56:04 -05001229 };
David Howells54ceac42006-08-22 20:06:13 -04001230 struct nfs_client *clp;
1231 int error;
1232
1233 dprintk("--> nfs4_set_client()\n");
1234
1235 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -05001236 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -04001237 if (IS_ERR(clp)) {
1238 error = PTR_ERR(clp);
1239 goto error;
1240 }
Chuck Leverd7403512008-12-23 15:21:37 -05001241 error = nfs4_init_client(clp, timeparms, ip_addr, authflavour,
1242 server->flags);
David Howells54ceac42006-08-22 20:06:13 -04001243 if (error < 0)
1244 goto error_put;
1245
1246 server->nfs_client = clp;
1247 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1248 return 0;
1249
1250error_put:
1251 nfs_put_client(clp);
1252error:
1253 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1254 return error;
1255}
1256
Andy Adamson557134a2009-04-01 09:21:53 -04001257
1258/*
Andy Adamson96b09e02009-04-01 09:22:33 -04001259 * Session has been established, and the client marked ready.
1260 * Set the mount rsize and wsize with negotiated fore channel
1261 * attributes which will be bound checked in nfs_server_set_fsinfo.
1262 */
1263static void nfs4_session_set_rwsize(struct nfs_server *server)
1264{
1265#ifdef CONFIG_NFS_V4_1
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001266 struct nfs4_session *sess;
1267 u32 server_resp_sz;
1268 u32 server_rqst_sz;
1269
Andy Adamson96b09e02009-04-01 09:22:33 -04001270 if (!nfs4_has_session(server->nfs_client))
1271 return;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001272 sess = server->nfs_client->cl_session;
1273 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
1274 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
1275
1276 if (server->rsize > server_resp_sz)
1277 server->rsize = server_resp_sz;
1278 if (server->wsize > server_rqst_sz)
1279 server->wsize = server_rqst_sz;
Andy Adamson96b09e02009-04-01 09:22:33 -04001280#endif /* CONFIG_NFS_V4_1 */
1281}
1282
1283/*
David Howells54ceac42006-08-22 20:06:13 -04001284 * Create a version 4 volume record
1285 */
1286static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001287 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001288{
Trond Myklebust33170232007-12-20 16:03:59 -05001289 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001290 int error;
1291
1292 dprintk("--> nfs4_init_server()\n");
1293
Trond Myklebust33170232007-12-20 16:03:59 -05001294 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1295 data->timeo, data->retrans);
1296
Chuck Lever542fcc32008-12-23 15:21:36 -05001297 /* Initialise the client representation from the mount data */
1298 server->flags = data->flags;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001299 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR|
1300 NFS_CAP_POSIX_LOCK;
David Howellsb797cac2009-04-03 16:42:48 +01001301 server->options = data->options;
Chuck Lever542fcc32008-12-23 15:21:36 -05001302
Trond Myklebust33170232007-12-20 16:03:59 -05001303 /* Get a client record */
1304 error = nfs4_set_client(server,
1305 data->nfs_server.hostname,
1306 (const struct sockaddr *)&data->nfs_server.address,
1307 data->nfs_server.addrlen,
1308 data->client_address,
1309 data->auth_flavors[0],
1310 data->nfs_server.protocol,
Benny Halevy94a417f2009-04-01 09:21:49 -04001311 &timeparms,
1312 data->minorversion);
Trond Myklebust33170232007-12-20 16:03:59 -05001313 if (error < 0)
1314 goto error;
1315
David Howells54ceac42006-08-22 20:06:13 -04001316 if (data->rsize)
1317 server->rsize = nfs_block_size(data->rsize, NULL);
1318 if (data->wsize)
1319 server->wsize = nfs_block_size(data->wsize, NULL);
1320
1321 server->acregmin = data->acregmin * HZ;
1322 server->acregmax = data->acregmax * HZ;
1323 server->acdirmin = data->acdirmin * HZ;
1324 server->acdirmax = data->acdirmax * HZ;
1325
Chuck Leverf22d6d72008-03-14 14:10:22 -04001326 server->port = data->nfs_server.port;
1327
Trond Myklebust33170232007-12-20 16:03:59 -05001328 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001329
Trond Myklebust33170232007-12-20 16:03:59 -05001330error:
David Howells54ceac42006-08-22 20:06:13 -04001331 /* Done */
1332 dprintk("<-- nfs4_init_server() = %d\n", error);
1333 return error;
1334}
1335
1336/*
1337 * Create a version 4 volume record
1338 * - keyed on server and FSID
1339 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001340struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001341 struct nfs_fh *mntfh)
1342{
1343 struct nfs_fattr fattr;
1344 struct nfs_server *server;
1345 int error;
1346
1347 dprintk("--> nfs4_create_server()\n");
1348
1349 server = nfs_alloc_server();
1350 if (!server)
1351 return ERR_PTR(-ENOMEM);
1352
David Howells54ceac42006-08-22 20:06:13 -04001353 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001354 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001355 if (error < 0)
1356 goto error;
1357
1358 BUG_ON(!server->nfs_client);
1359 BUG_ON(!server->nfs_client->rpc_ops);
1360 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1361
Trond Myklebustfccba802009-07-21 16:48:07 -04001362 error = nfs4_init_session(server);
1363 if (error < 0)
1364 goto error;
Andy Adamson557134a2009-04-01 09:21:53 -04001365
David Howells54ceac42006-08-22 20:06:13 -04001366 /* Probe the root fh to retrieve its FSID */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001367 error = nfs4_path_walk(server, mntfh, data->nfs_server.export_path);
David Howells54ceac42006-08-22 20:06:13 -04001368 if (error < 0)
1369 goto error;
1370
David Howells6daabf12006-08-24 15:44:16 -04001371 dprintk("Server FSID: %llx:%llx\n",
1372 (unsigned long long) server->fsid.major,
1373 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001374 dprintk("Mount FH: %d\n", mntfh->size);
1375
Andy Adamson96b09e02009-04-01 09:22:33 -04001376 nfs4_session_set_rwsize(server);
1377
David Howells54ceac42006-08-22 20:06:13 -04001378 error = nfs_probe_fsinfo(server, mntfh, &fattr);
1379 if (error < 0)
1380 goto error;
1381
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001382 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1383 server->namelen = NFS4_MAXNAMLEN;
1384
David Howells54ceac42006-08-22 20:06:13 -04001385 spin_lock(&nfs_client_lock);
1386 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1387 list_add_tail(&server->master_link, &nfs_volume_list);
1388 spin_unlock(&nfs_client_lock);
1389
1390 server->mount_time = jiffies;
1391 dprintk("<-- nfs4_create_server() = %p\n", server);
1392 return server;
1393
1394error:
1395 nfs_free_server(server);
1396 dprintk("<-- nfs4_create_server() = error %d\n", error);
1397 return ERR_PTR(error);
1398}
1399
1400/*
1401 * Create an NFS4 referral server record
1402 */
1403struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001404 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001405{
1406 struct nfs_client *parent_client;
1407 struct nfs_server *server, *parent_server;
1408 struct nfs_fattr fattr;
1409 int error;
1410
1411 dprintk("--> nfs4_create_referral_server()\n");
1412
1413 server = nfs_alloc_server();
1414 if (!server)
1415 return ERR_PTR(-ENOMEM);
1416
1417 parent_server = NFS_SB(data->sb);
1418 parent_client = parent_server->nfs_client;
1419
Chuck Lever542fcc32008-12-23 15:21:36 -05001420 /* Initialise the client representation from the parent server */
1421 nfs_server_copy_userdata(server, parent_server);
Trond Myklebust62ab4602009-08-09 15:06:19 -04001422 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
Chuck Lever542fcc32008-12-23 15:21:36 -05001423
David Howells54ceac42006-08-22 20:06:13 -04001424 /* Get a client representation.
1425 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001426 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001427 data->addr,
1428 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001429 parent_client->cl_ipaddr,
1430 data->authflavor,
1431 parent_server->client->cl_xprt->prot,
Benny Halevy94a417f2009-04-01 09:21:49 -04001432 parent_server->client->cl_timeout,
1433 parent_client->cl_minorversion);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001434 if (error < 0)
1435 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001436
Trond Myklebust33170232007-12-20 16:03:59 -05001437 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001438 if (error < 0)
1439 goto error;
1440
1441 BUG_ON(!server->nfs_client);
1442 BUG_ON(!server->nfs_client->rpc_ops);
1443 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1444
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001445 /* Probe the root fh to retrieve its FSID and filehandle */
1446 error = nfs4_path_walk(server, mntfh, data->mnt_path);
1447 if (error < 0)
1448 goto error;
1449
David Howells54ceac42006-08-22 20:06:13 -04001450 /* probe the filesystem info for this server filesystem */
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001451 error = nfs_probe_fsinfo(server, mntfh, &fattr);
David Howells54ceac42006-08-22 20:06:13 -04001452 if (error < 0)
1453 goto error;
1454
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001455 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1456 server->namelen = NFS4_MAXNAMLEN;
1457
David Howells54ceac42006-08-22 20:06:13 -04001458 dprintk("Referral FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001459 (unsigned long long) server->fsid.major,
1460 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001461
1462 spin_lock(&nfs_client_lock);
1463 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1464 list_add_tail(&server->master_link, &nfs_volume_list);
1465 spin_unlock(&nfs_client_lock);
1466
1467 server->mount_time = jiffies;
1468
1469 dprintk("<-- nfs_create_referral_server() = %p\n", server);
1470 return server;
1471
1472error:
1473 nfs_free_server(server);
1474 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
1475 return ERR_PTR(error);
1476}
1477
1478#endif /* CONFIG_NFS_V4 */
1479
1480/*
1481 * Clone an NFS2, NFS3 or NFS4 server record
1482 */
1483struct nfs_server *nfs_clone_server(struct nfs_server *source,
1484 struct nfs_fh *fh,
1485 struct nfs_fattr *fattr)
1486{
1487 struct nfs_server *server;
1488 struct nfs_fattr fattr_fsinfo;
1489 int error;
1490
1491 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
David Howells6daabf12006-08-24 15:44:16 -04001492 (unsigned long long) fattr->fsid.major,
1493 (unsigned long long) fattr->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001494
1495 server = nfs_alloc_server();
1496 if (!server)
1497 return ERR_PTR(-ENOMEM);
1498
1499 /* Copy data from the source */
1500 server->nfs_client = source->nfs_client;
1501 atomic_inc(&server->nfs_client->cl_count);
1502 nfs_server_copy_userdata(server, source);
1503
1504 server->fsid = fattr->fsid;
1505
Trond Myklebust33170232007-12-20 16:03:59 -05001506 error = nfs_init_server_rpcclient(server,
1507 source->client->cl_timeout,
1508 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001509 if (error < 0)
1510 goto out_free_server;
1511 if (!IS_ERR(source->client_acl))
1512 nfs_init_server_aclclient(server);
1513
1514 /* probe the filesystem info for this server filesystem */
1515 error = nfs_probe_fsinfo(server, fh, &fattr_fsinfo);
1516 if (error < 0)
1517 goto out_free_server;
1518
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001519 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1520 server->namelen = NFS4_MAXNAMLEN;
1521
David Howells54ceac42006-08-22 20:06:13 -04001522 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001523 (unsigned long long) server->fsid.major,
1524 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001525
1526 error = nfs_start_lockd(server);
1527 if (error < 0)
1528 goto out_free_server;
1529
1530 spin_lock(&nfs_client_lock);
1531 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1532 list_add_tail(&server->master_link, &nfs_volume_list);
1533 spin_unlock(&nfs_client_lock);
1534
1535 server->mount_time = jiffies;
1536
1537 dprintk("<-- nfs_clone_server() = %p\n", server);
1538 return server;
1539
1540out_free_server:
1541 nfs_free_server(server);
1542 dprintk("<-- nfs_clone_server() = error %d\n", error);
1543 return ERR_PTR(error);
1544}
David Howells6aaca562006-08-22 20:06:13 -04001545
1546#ifdef CONFIG_PROC_FS
1547static struct proc_dir_entry *proc_fs_nfs;
1548
1549static int nfs_server_list_open(struct inode *inode, struct file *file);
1550static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1551static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1552static void nfs_server_list_stop(struct seq_file *p, void *v);
1553static int nfs_server_list_show(struct seq_file *m, void *v);
1554
James Morris88e9d342009-09-22 16:43:43 -07001555static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001556 .start = nfs_server_list_start,
1557 .next = nfs_server_list_next,
1558 .stop = nfs_server_list_stop,
1559 .show = nfs_server_list_show,
1560};
1561
Arjan van de Ven00977a52007-02-12 00:55:34 -08001562static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001563 .open = nfs_server_list_open,
1564 .read = seq_read,
1565 .llseek = seq_lseek,
1566 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001567 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001568};
1569
1570static int nfs_volume_list_open(struct inode *inode, struct file *file);
1571static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1572static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1573static void nfs_volume_list_stop(struct seq_file *p, void *v);
1574static int nfs_volume_list_show(struct seq_file *m, void *v);
1575
James Morris88e9d342009-09-22 16:43:43 -07001576static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001577 .start = nfs_volume_list_start,
1578 .next = nfs_volume_list_next,
1579 .stop = nfs_volume_list_stop,
1580 .show = nfs_volume_list_show,
1581};
1582
Arjan van de Ven00977a52007-02-12 00:55:34 -08001583static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001584 .open = nfs_volume_list_open,
1585 .read = seq_read,
1586 .llseek = seq_lseek,
1587 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001588 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001589};
1590
1591/*
1592 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1593 * we're dealing
1594 */
1595static int nfs_server_list_open(struct inode *inode, struct file *file)
1596{
1597 struct seq_file *m;
1598 int ret;
1599
1600 ret = seq_open(file, &nfs_server_list_ops);
1601 if (ret < 0)
1602 return ret;
1603
1604 m = file->private_data;
1605 m->private = PDE(inode)->data;
1606
1607 return 0;
1608}
1609
1610/*
1611 * set up the iterator to start reading from the server list and return the first item
1612 */
1613static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1614{
David Howells6aaca562006-08-22 20:06:13 -04001615 /* lock the list against modification */
1616 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001617 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001618}
1619
1620/*
1621 * move to next server
1622 */
1623static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1624{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001625 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001626}
1627
1628/*
1629 * clean up after reading from the transports list
1630 */
1631static void nfs_server_list_stop(struct seq_file *p, void *v)
1632{
1633 spin_unlock(&nfs_client_lock);
1634}
1635
1636/*
1637 * display a header line followed by a load of call lines
1638 */
1639static int nfs_server_list_show(struct seq_file *m, void *v)
1640{
1641 struct nfs_client *clp;
1642
1643 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001644 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001645 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1646 return 0;
1647 }
1648
1649 /* display one transport per line on subsequent lines */
1650 clp = list_entry(v, struct nfs_client, cl_share_link);
1651
Chuck Lever5d8515c2007-12-10 14:57:16 -05001652 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001653 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001654 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1655 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001656 atomic_read(&clp->cl_count),
1657 clp->cl_hostname);
1658
1659 return 0;
1660}
1661
1662/*
1663 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1664 */
1665static int nfs_volume_list_open(struct inode *inode, struct file *file)
1666{
1667 struct seq_file *m;
1668 int ret;
1669
1670 ret = seq_open(file, &nfs_volume_list_ops);
1671 if (ret < 0)
1672 return ret;
1673
1674 m = file->private_data;
1675 m->private = PDE(inode)->data;
1676
1677 return 0;
1678}
1679
1680/*
1681 * set up the iterator to start reading from the volume list and return the first item
1682 */
1683static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1684{
David Howells6aaca562006-08-22 20:06:13 -04001685 /* lock the list against modification */
1686 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001687 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001688}
1689
1690/*
1691 * move to next volume
1692 */
1693static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1694{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001695 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001696}
1697
1698/*
1699 * clean up after reading from the transports list
1700 */
1701static void nfs_volume_list_stop(struct seq_file *p, void *v)
1702{
1703 spin_unlock(&nfs_client_lock);
1704}
1705
1706/*
1707 * display a header line followed by a load of call lines
1708 */
1709static int nfs_volume_list_show(struct seq_file *m, void *v)
1710{
1711 struct nfs_server *server;
1712 struct nfs_client *clp;
1713 char dev[8], fsid[17];
1714
1715 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001716 if (v == &nfs_volume_list) {
David Howells5d1acff2009-04-03 16:42:47 +01001717 seq_puts(m, "NV SERVER PORT DEV FSID FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001718 return 0;
1719 }
1720 /* display one transport per line on subsequent lines */
1721 server = list_entry(v, struct nfs_server, master_link);
1722 clp = server->nfs_client;
1723
1724 snprintf(dev, 8, "%u:%u",
1725 MAJOR(server->s_dev), MINOR(server->s_dev));
1726
1727 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001728 (unsigned long long) server->fsid.major,
1729 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001730
David Howells5d1acff2009-04-03 16:42:47 +01001731 seq_printf(m, "v%u %s %s %-7s %-17s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001732 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001733 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1734 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001735 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001736 fsid,
1737 nfs_server_fscache_state(server));
David Howells6aaca562006-08-22 20:06:13 -04001738
1739 return 0;
1740}
1741
1742/*
1743 * initialise the /proc/fs/nfsfs/ directory
1744 */
1745int __init nfs_fs_proc_init(void)
1746{
1747 struct proc_dir_entry *p;
1748
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001749 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001750 if (!proc_fs_nfs)
1751 goto error_0;
1752
David Howells6aaca562006-08-22 20:06:13 -04001753 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001754 p = proc_create("servers", S_IFREG|S_IRUGO,
1755 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001756 if (!p)
1757 goto error_1;
1758
David Howells6aaca562006-08-22 20:06:13 -04001759 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001760 p = proc_create("volumes", S_IFREG|S_IRUGO,
1761 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001762 if (!p)
1763 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001764 return 0;
1765
1766error_2:
1767 remove_proc_entry("servers", proc_fs_nfs);
1768error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001769 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001770error_0:
1771 return -ENOMEM;
1772}
1773
1774/*
1775 * clean up the /proc/fs/nfsfs/ directory
1776 */
1777void nfs_fs_proc_exit(void)
1778{
1779 remove_proc_entry("volumes", proc_fs_nfs);
1780 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001781 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001782}
1783
1784#endif /* CONFIG_PROC_FS */