blob: d25b5257b7a1a38380457804333a384cf47f3939 [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;
David Howells54ceac42006-08-22 20:06:13 -0400937 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
938 if (error < 0)
939 goto out_error;
940
941 nfs_server_set_fsinfo(server, &fsinfo);
942
943 /* Get some general file system info */
944 if (server->namelen == 0) {
945 struct nfs_pathconf pathinfo;
946
947 pathinfo.fattr = fattr;
948 nfs_fattr_init(fattr);
949
950 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
951 server->namelen = pathinfo.max_namelen;
952 }
953
954 dprintk("<-- nfs_probe_fsinfo() = 0\n");
955 return 0;
956
957out_error:
958 dprintk("nfs_probe_fsinfo: error = %d\n", -error);
959 return error;
960}
961
962/*
963 * Copy useful information when duplicating a server record
964 */
965static void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
966{
967 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -0400968 target->rsize = source->rsize;
969 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -0400970 target->acregmin = source->acregmin;
971 target->acregmax = source->acregmax;
972 target->acdirmin = source->acdirmin;
973 target->acdirmax = source->acdirmax;
974 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400975 target->options = source->options;
David Howells54ceac42006-08-22 20:06:13 -0400976}
977
978/*
979 * Allocate and initialise a server record
980 */
981static struct nfs_server *nfs_alloc_server(void)
982{
983 struct nfs_server *server;
984
985 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
986 if (!server)
987 return NULL;
988
989 server->client = server->client_acl = ERR_PTR(-EINVAL);
990
991 /* Zero out the NFS state stuff */
992 INIT_LIST_HEAD(&server->client_link);
993 INIT_LIST_HEAD(&server->master_link);
994
Steve Dicksonef818a22007-11-08 04:05:04 -0500995 atomic_set(&server->active, 0);
996
David Howells54ceac42006-08-22 20:06:13 -0400997 server->io_stats = nfs_alloc_iostats();
998 if (!server->io_stats) {
999 kfree(server);
1000 return NULL;
1001 }
1002
Jens Axboe48d07642009-09-21 09:59:39 +02001003 if (bdi_init(&server->backing_dev_info)) {
1004 nfs_free_iostats(server->io_stats);
1005 kfree(server);
1006 return NULL;
1007 }
1008
David Howells54ceac42006-08-22 20:06:13 -04001009 return server;
1010}
1011
1012/*
1013 * Free up a server record
1014 */
1015void nfs_free_server(struct nfs_server *server)
1016{
1017 dprintk("--> nfs_free_server()\n");
1018
1019 spin_lock(&nfs_client_lock);
1020 list_del(&server->client_link);
1021 list_del(&server->master_link);
1022 spin_unlock(&nfs_client_lock);
1023
1024 if (server->destroy != NULL)
1025 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -05001026
1027 if (!IS_ERR(server->client_acl))
1028 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -04001029 if (!IS_ERR(server->client))
1030 rpc_shutdown_client(server->client);
1031
1032 nfs_put_client(server->nfs_client);
1033
1034 nfs_free_iostats(server->io_stats);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001035 bdi_destroy(&server->backing_dev_info);
David Howells54ceac42006-08-22 20:06:13 -04001036 kfree(server);
1037 nfs_release_automount_timer();
1038 dprintk("<-- nfs_free_server()\n");
1039}
1040
1041/*
1042 * Create a version 2 or 3 volume record
1043 * - keyed on server and FSID
1044 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001045struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001046 struct nfs_fh *mntfh)
1047{
1048 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001049 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -04001050 int error;
1051
1052 server = nfs_alloc_server();
1053 if (!server)
1054 return ERR_PTR(-ENOMEM);
1055
Trond Myklebustfbca7792010-04-16 16:22:46 -04001056 error = -ENOMEM;
1057 fattr = nfs_alloc_fattr();
1058 if (fattr == NULL)
1059 goto error;
1060
David Howells54ceac42006-08-22 20:06:13 -04001061 /* Get a client representation */
1062 error = nfs_init_server(server, data);
1063 if (error < 0)
1064 goto error;
1065
1066 BUG_ON(!server->nfs_client);
1067 BUG_ON(!server->nfs_client->rpc_ops);
1068 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1069
1070 /* Probe the root fh to retrieve its FSID */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001071 error = nfs_probe_fsinfo(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001072 if (error < 0)
1073 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001074 if (server->nfs_client->rpc_ops->version == 3) {
1075 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1076 server->namelen = NFS3_MAXNAMLEN;
1077 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1078 server->caps |= NFS_CAP_READDIRPLUS;
1079 } else {
1080 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1081 server->namelen = NFS2_MAXNAMLEN;
1082 }
1083
Trond Myklebustfbca7792010-04-16 16:22:46 -04001084 if (!(fattr->valid & NFS_ATTR_FATTR)) {
1085 error = server->nfs_client->rpc_ops->getattr(server, mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001086 if (error < 0) {
1087 dprintk("nfs_create_server: getattr error = %d\n", -error);
1088 goto error;
1089 }
1090 }
Trond Myklebustfbca7792010-04-16 16:22:46 -04001091 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -04001092
David Howells6daabf12006-08-24 15:44:16 -04001093 dprintk("Server FSID: %llx:%llx\n",
1094 (unsigned long long) server->fsid.major,
1095 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001096
David Howells54ceac42006-08-22 20:06:13 -04001097 spin_lock(&nfs_client_lock);
1098 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1099 list_add_tail(&server->master_link, &nfs_volume_list);
1100 spin_unlock(&nfs_client_lock);
1101
1102 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001103 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001104 return server;
1105
1106error:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001107 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001108 nfs_free_server(server);
1109 return ERR_PTR(error);
1110}
1111
1112#ifdef CONFIG_NFS_V4
1113/*
Benny Halevy9bdaa862009-04-01 09:22:55 -04001114 * Initialize the NFS4 callback service
1115 */
1116static int nfs4_init_callback(struct nfs_client *clp)
1117{
1118 int error;
1119
1120 if (clp->rpc_ops->version == 4) {
Andy Adamson0b5b7ae2009-04-01 09:23:15 -04001121 if (nfs4_has_session(clp)) {
1122 error = xprt_setup_backchannel(
1123 clp->cl_rpcclient->cl_xprt,
1124 NFS41_BC_MIN_CALLBACKS);
1125 if (error < 0)
1126 return error;
1127 }
1128
Benny Halevy71468512009-04-01 09:22:56 -04001129 error = nfs_callback_up(clp->cl_minorversion,
1130 clp->cl_rpcclient->cl_xprt);
Benny Halevy9bdaa862009-04-01 09:22:55 -04001131 if (error < 0) {
1132 dprintk("%s: failed to start callback. Error = %d\n",
1133 __func__, error);
1134 return error;
1135 }
1136 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
1137 }
1138 return 0;
1139}
1140
1141/*
Andy Adamson557134a2009-04-01 09:21:53 -04001142 * Initialize the minor version specific parts of an NFS4 client record
1143 */
1144static int nfs4_init_client_minor_version(struct nfs_client *clp)
1145{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001146 clp->cl_call_sync = _nfs4_call_sync;
1147
Andy Adamson557134a2009-04-01 09:21:53 -04001148#if defined(CONFIG_NFS_V4_1)
1149 if (clp->cl_minorversion) {
1150 struct nfs4_session *session = NULL;
1151 /*
1152 * Create the session and mark it expired.
1153 * When a SEQUENCE operation encounters the expired session
1154 * it will do session recovery to initialize it.
1155 */
1156 session = nfs4_alloc_session(clp);
1157 if (!session)
1158 return -ENOMEM;
1159
1160 clp->cl_session = session;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001161 clp->cl_call_sync = _nfs4_call_sync_session;
Andy Adamson557134a2009-04-01 09:21:53 -04001162 }
1163#endif /* CONFIG_NFS_V4_1 */
1164
Benny Halevy71468512009-04-01 09:22:56 -04001165 return nfs4_init_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -04001166}
1167
1168/*
David Howells54ceac42006-08-22 20:06:13 -04001169 * Initialise an NFS4 client record
1170 */
1171static int nfs4_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -05001172 const struct rpc_timeout *timeparms,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001173 const char *ip_addr,
Chuck Leverd7403512008-12-23 15:21:37 -05001174 rpc_authflavor_t authflavour,
1175 int flags)
David Howells54ceac42006-08-22 20:06:13 -04001176{
1177 int error;
1178
1179 if (clp->cl_cons_state == NFS_CS_READY) {
1180 /* the client is initialised already */
1181 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
1182 return 0;
1183 }
1184
1185 /* Check NFS protocol revision and initialize RPC op vector */
1186 clp->rpc_ops = &nfs_v4_clientops;
1187
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001188 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Chuck Leverd7403512008-12-23 15:21:37 -05001189 1, flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -04001190 if (error < 0)
1191 goto error;
Ben Hutchingsf4373bf2009-10-06 15:42:18 -04001192 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -04001193
1194 error = nfs_idmap_new(clp);
1195 if (error < 0) {
1196 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001197 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -04001198 goto error;
1199 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -04001200 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -04001201
Andy Adamson557134a2009-04-01 09:21:53 -04001202 error = nfs4_init_client_minor_version(clp);
1203 if (error < 0)
1204 goto error;
1205
Andy Adamson76db6d92009-04-01 09:22:38 -04001206 if (!nfs4_has_session(clp))
1207 nfs_mark_client_ready(clp, NFS_CS_READY);
David Howells54ceac42006-08-22 20:06:13 -04001208 return 0;
1209
1210error:
1211 nfs_mark_client_ready(clp, error);
1212 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1213 return error;
1214}
1215
1216/*
1217 * Set up an NFS4 client
1218 */
1219static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001220 const char *hostname,
1221 const struct sockaddr *addr,
1222 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001223 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001224 rpc_authflavor_t authflavour,
Benny Halevy94a417f2009-04-01 09:21:49 -04001225 int proto, const struct rpc_timeout *timeparms,
1226 u32 minorversion)
David Howells54ceac42006-08-22 20:06:13 -04001227{
Trond Myklebust3a498022007-12-14 14:56:04 -05001228 struct nfs_client_initdata cl_init = {
1229 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001230 .addr = addr,
1231 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001232 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001233 .proto = proto,
Benny Halevy5aae4a92009-04-01 09:21:50 -04001234 .minorversion = minorversion,
Trond Myklebust3a498022007-12-14 14:56:04 -05001235 };
David Howells54ceac42006-08-22 20:06:13 -04001236 struct nfs_client *clp;
1237 int error;
1238
1239 dprintk("--> nfs4_set_client()\n");
1240
1241 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -05001242 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -04001243 if (IS_ERR(clp)) {
1244 error = PTR_ERR(clp);
1245 goto error;
1246 }
Chuck Leverd7403512008-12-23 15:21:37 -05001247 error = nfs4_init_client(clp, timeparms, ip_addr, authflavour,
1248 server->flags);
David Howells54ceac42006-08-22 20:06:13 -04001249 if (error < 0)
1250 goto error_put;
1251
1252 server->nfs_client = clp;
1253 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1254 return 0;
1255
1256error_put:
1257 nfs_put_client(clp);
1258error:
1259 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1260 return error;
1261}
1262
Andy Adamson557134a2009-04-01 09:21:53 -04001263
1264/*
Andy Adamson96b09e02009-04-01 09:22:33 -04001265 * Session has been established, and the client marked ready.
1266 * Set the mount rsize and wsize with negotiated fore channel
1267 * attributes which will be bound checked in nfs_server_set_fsinfo.
1268 */
1269static void nfs4_session_set_rwsize(struct nfs_server *server)
1270{
1271#ifdef CONFIG_NFS_V4_1
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001272 struct nfs4_session *sess;
1273 u32 server_resp_sz;
1274 u32 server_rqst_sz;
1275
Andy Adamson96b09e02009-04-01 09:22:33 -04001276 if (!nfs4_has_session(server->nfs_client))
1277 return;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05001278 sess = server->nfs_client->cl_session;
1279 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
1280 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
1281
1282 if (server->rsize > server_resp_sz)
1283 server->rsize = server_resp_sz;
1284 if (server->wsize > server_rqst_sz)
1285 server->wsize = server_rqst_sz;
Andy Adamson96b09e02009-04-01 09:22:33 -04001286#endif /* CONFIG_NFS_V4_1 */
1287}
1288
Trond Myklebust44950b62010-06-17 11:45:12 -04001289static int nfs4_server_common_setup(struct nfs_server *server,
1290 struct nfs_fh *mntfh)
1291{
1292 struct nfs_fattr *fattr;
1293 int error;
1294
1295 BUG_ON(!server->nfs_client);
1296 BUG_ON(!server->nfs_client->rpc_ops);
1297 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1298
1299 fattr = nfs_alloc_fattr();
1300 if (fattr == NULL)
1301 return -ENOMEM;
1302
1303 /* We must ensure the session is initialised first */
1304 error = nfs4_init_session(server);
1305 if (error < 0)
1306 goto out;
1307
1308 /* Probe the root fh to retrieve its FSID and filehandle */
1309 error = nfs4_get_rootfh(server, mntfh);
1310 if (error < 0)
1311 goto out;
1312
1313 dprintk("Server FSID: %llx:%llx\n",
1314 (unsigned long long) server->fsid.major,
1315 (unsigned long long) server->fsid.minor);
1316 dprintk("Mount FH: %d\n", mntfh->size);
1317
1318 nfs4_session_set_rwsize(server);
1319
1320 error = nfs_probe_fsinfo(server, mntfh, fattr);
1321 if (error < 0)
1322 goto out;
1323
1324 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1325 server->namelen = NFS4_MAXNAMLEN;
1326
1327 spin_lock(&nfs_client_lock);
1328 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1329 list_add_tail(&server->master_link, &nfs_volume_list);
1330 spin_unlock(&nfs_client_lock);
1331
1332 server->mount_time = jiffies;
1333out:
1334 nfs_free_fattr(fattr);
1335 return error;
1336}
1337
Andy Adamson96b09e02009-04-01 09:22:33 -04001338/*
David Howells54ceac42006-08-22 20:06:13 -04001339 * Create a version 4 volume record
1340 */
1341static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001342 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001343{
Trond Myklebust33170232007-12-20 16:03:59 -05001344 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001345 int error;
1346
1347 dprintk("--> nfs4_init_server()\n");
1348
Trond Myklebust33170232007-12-20 16:03:59 -05001349 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1350 data->timeo, data->retrans);
1351
Chuck Lever542fcc32008-12-23 15:21:36 -05001352 /* Initialise the client representation from the mount data */
1353 server->flags = data->flags;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001354 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR|
1355 NFS_CAP_POSIX_LOCK;
David Howellsb797cac2009-04-03 16:42:48 +01001356 server->options = data->options;
Chuck Lever542fcc32008-12-23 15:21:36 -05001357
Trond Myklebust33170232007-12-20 16:03:59 -05001358 /* Get a client record */
1359 error = nfs4_set_client(server,
1360 data->nfs_server.hostname,
1361 (const struct sockaddr *)&data->nfs_server.address,
1362 data->nfs_server.addrlen,
1363 data->client_address,
1364 data->auth_flavors[0],
1365 data->nfs_server.protocol,
Benny Halevy94a417f2009-04-01 09:21:49 -04001366 &timeparms,
1367 data->minorversion);
Trond Myklebust33170232007-12-20 16:03:59 -05001368 if (error < 0)
1369 goto error;
1370
David Howells54ceac42006-08-22 20:06:13 -04001371 if (data->rsize)
1372 server->rsize = nfs_block_size(data->rsize, NULL);
1373 if (data->wsize)
1374 server->wsize = nfs_block_size(data->wsize, NULL);
1375
1376 server->acregmin = data->acregmin * HZ;
1377 server->acregmax = data->acregmax * HZ;
1378 server->acdirmin = data->acdirmin * HZ;
1379 server->acdirmax = data->acdirmax * HZ;
1380
Chuck Leverf22d6d72008-03-14 14:10:22 -04001381 server->port = data->nfs_server.port;
1382
Trond Myklebust33170232007-12-20 16:03:59 -05001383 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001384
Trond Myklebust33170232007-12-20 16:03:59 -05001385error:
David Howells54ceac42006-08-22 20:06:13 -04001386 /* Done */
1387 dprintk("<-- nfs4_init_server() = %d\n", error);
1388 return error;
1389}
1390
1391/*
1392 * Create a version 4 volume record
1393 * - keyed on server and FSID
1394 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001395struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001396 struct nfs_fh *mntfh)
1397{
David Howells54ceac42006-08-22 20:06:13 -04001398 struct nfs_server *server;
1399 int error;
1400
1401 dprintk("--> nfs4_create_server()\n");
1402
1403 server = nfs_alloc_server();
1404 if (!server)
1405 return ERR_PTR(-ENOMEM);
1406
David Howells54ceac42006-08-22 20:06:13 -04001407 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001408 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001409 if (error < 0)
1410 goto error;
1411
Trond Myklebust44950b62010-06-17 11:45:12 -04001412 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustfccba802009-07-21 16:48:07 -04001413 if (error < 0)
1414 goto error;
Andy Adamson557134a2009-04-01 09:21:53 -04001415
David Howells54ceac42006-08-22 20:06:13 -04001416 dprintk("<-- nfs4_create_server() = %p\n", server);
1417 return server;
1418
1419error:
1420 nfs_free_server(server);
1421 dprintk("<-- nfs4_create_server() = error %d\n", error);
1422 return ERR_PTR(error);
1423}
1424
1425/*
1426 * Create an NFS4 referral server record
1427 */
1428struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001429 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001430{
1431 struct nfs_client *parent_client;
1432 struct nfs_server *server, *parent_server;
David Howells54ceac42006-08-22 20:06:13 -04001433 int error;
1434
1435 dprintk("--> nfs4_create_referral_server()\n");
1436
1437 server = nfs_alloc_server();
1438 if (!server)
1439 return ERR_PTR(-ENOMEM);
1440
1441 parent_server = NFS_SB(data->sb);
1442 parent_client = parent_server->nfs_client;
1443
Chuck Lever542fcc32008-12-23 15:21:36 -05001444 /* Initialise the client representation from the parent server */
1445 nfs_server_copy_userdata(server, parent_server);
Trond Myklebust62ab460c2009-08-09 15:06:19 -04001446 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
Chuck Lever542fcc32008-12-23 15:21:36 -05001447
David Howells54ceac42006-08-22 20:06:13 -04001448 /* Get a client representation.
1449 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001450 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001451 data->addr,
1452 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001453 parent_client->cl_ipaddr,
1454 data->authflavor,
1455 parent_server->client->cl_xprt->prot,
Benny Halevy94a417f2009-04-01 09:21:49 -04001456 parent_server->client->cl_timeout,
1457 parent_client->cl_minorversion);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001458 if (error < 0)
1459 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001460
Trond Myklebust33170232007-12-20 16:03:59 -05001461 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001462 if (error < 0)
1463 goto error;
1464
Trond Myklebust44950b62010-06-17 11:45:12 -04001465 error = nfs4_server_common_setup(server, mntfh);
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001466 if (error < 0)
1467 goto error;
1468
David Howells54ceac42006-08-22 20:06:13 -04001469 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;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001488 struct nfs_fattr *fattr_fsinfo;
David Howells54ceac42006-08-22 20:06:13 -04001489 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
Trond Myklebustfbca7792010-04-16 16:22:46 -04001499 error = -ENOMEM;
1500 fattr_fsinfo = nfs_alloc_fattr();
1501 if (fattr_fsinfo == NULL)
1502 goto out_free_server;
1503
David Howells54ceac42006-08-22 20:06:13 -04001504 /* Copy data from the source */
1505 server->nfs_client = source->nfs_client;
1506 atomic_inc(&server->nfs_client->cl_count);
1507 nfs_server_copy_userdata(server, source);
1508
1509 server->fsid = fattr->fsid;
1510
Trond Myklebust33170232007-12-20 16:03:59 -05001511 error = nfs_init_server_rpcclient(server,
1512 source->client->cl_timeout,
1513 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001514 if (error < 0)
1515 goto out_free_server;
1516 if (!IS_ERR(source->client_acl))
1517 nfs_init_server_aclclient(server);
1518
1519 /* probe the filesystem info for this server filesystem */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001520 error = nfs_probe_fsinfo(server, fh, fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001521 if (error < 0)
1522 goto out_free_server;
1523
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001524 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1525 server->namelen = NFS4_MAXNAMLEN;
1526
David Howells54ceac42006-08-22 20:06:13 -04001527 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001528 (unsigned long long) server->fsid.major,
1529 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001530
1531 error = nfs_start_lockd(server);
1532 if (error < 0)
1533 goto out_free_server;
1534
1535 spin_lock(&nfs_client_lock);
1536 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1537 list_add_tail(&server->master_link, &nfs_volume_list);
1538 spin_unlock(&nfs_client_lock);
1539
1540 server->mount_time = jiffies;
1541
Trond Myklebustfbca7792010-04-16 16:22:46 -04001542 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001543 dprintk("<-- nfs_clone_server() = %p\n", server);
1544 return server;
1545
1546out_free_server:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001547 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001548 nfs_free_server(server);
1549 dprintk("<-- nfs_clone_server() = error %d\n", error);
1550 return ERR_PTR(error);
1551}
David Howells6aaca562006-08-22 20:06:13 -04001552
1553#ifdef CONFIG_PROC_FS
1554static struct proc_dir_entry *proc_fs_nfs;
1555
1556static int nfs_server_list_open(struct inode *inode, struct file *file);
1557static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1558static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1559static void nfs_server_list_stop(struct seq_file *p, void *v);
1560static int nfs_server_list_show(struct seq_file *m, void *v);
1561
James Morris88e9d342009-09-22 16:43:43 -07001562static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001563 .start = nfs_server_list_start,
1564 .next = nfs_server_list_next,
1565 .stop = nfs_server_list_stop,
1566 .show = nfs_server_list_show,
1567};
1568
Arjan van de Ven00977a52007-02-12 00:55:34 -08001569static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001570 .open = nfs_server_list_open,
1571 .read = seq_read,
1572 .llseek = seq_lseek,
1573 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001574 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001575};
1576
1577static int nfs_volume_list_open(struct inode *inode, struct file *file);
1578static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1579static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1580static void nfs_volume_list_stop(struct seq_file *p, void *v);
1581static int nfs_volume_list_show(struct seq_file *m, void *v);
1582
James Morris88e9d342009-09-22 16:43:43 -07001583static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001584 .start = nfs_volume_list_start,
1585 .next = nfs_volume_list_next,
1586 .stop = nfs_volume_list_stop,
1587 .show = nfs_volume_list_show,
1588};
1589
Arjan van de Ven00977a52007-02-12 00:55:34 -08001590static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001591 .open = nfs_volume_list_open,
1592 .read = seq_read,
1593 .llseek = seq_lseek,
1594 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001595 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001596};
1597
1598/*
1599 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1600 * we're dealing
1601 */
1602static int nfs_server_list_open(struct inode *inode, struct file *file)
1603{
1604 struct seq_file *m;
1605 int ret;
1606
1607 ret = seq_open(file, &nfs_server_list_ops);
1608 if (ret < 0)
1609 return ret;
1610
1611 m = file->private_data;
1612 m->private = PDE(inode)->data;
1613
1614 return 0;
1615}
1616
1617/*
1618 * set up the iterator to start reading from the server list and return the first item
1619 */
1620static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1621{
David Howells6aaca562006-08-22 20:06:13 -04001622 /* lock the list against modification */
1623 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001624 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001625}
1626
1627/*
1628 * move to next server
1629 */
1630static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1631{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001632 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001633}
1634
1635/*
1636 * clean up after reading from the transports list
1637 */
1638static void nfs_server_list_stop(struct seq_file *p, void *v)
1639{
1640 spin_unlock(&nfs_client_lock);
1641}
1642
1643/*
1644 * display a header line followed by a load of call lines
1645 */
1646static int nfs_server_list_show(struct seq_file *m, void *v)
1647{
1648 struct nfs_client *clp;
1649
1650 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001651 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001652 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1653 return 0;
1654 }
1655
1656 /* display one transport per line on subsequent lines */
1657 clp = list_entry(v, struct nfs_client, cl_share_link);
1658
Chuck Lever5d8515c2007-12-10 14:57:16 -05001659 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001660 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001661 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1662 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001663 atomic_read(&clp->cl_count),
1664 clp->cl_hostname);
1665
1666 return 0;
1667}
1668
1669/*
1670 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1671 */
1672static int nfs_volume_list_open(struct inode *inode, struct file *file)
1673{
1674 struct seq_file *m;
1675 int ret;
1676
1677 ret = seq_open(file, &nfs_volume_list_ops);
1678 if (ret < 0)
1679 return ret;
1680
1681 m = file->private_data;
1682 m->private = PDE(inode)->data;
1683
1684 return 0;
1685}
1686
1687/*
1688 * set up the iterator to start reading from the volume list and return the first item
1689 */
1690static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1691{
David Howells6aaca562006-08-22 20:06:13 -04001692 /* lock the list against modification */
1693 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001694 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001695}
1696
1697/*
1698 * move to next volume
1699 */
1700static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1701{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001702 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001703}
1704
1705/*
1706 * clean up after reading from the transports list
1707 */
1708static void nfs_volume_list_stop(struct seq_file *p, void *v)
1709{
1710 spin_unlock(&nfs_client_lock);
1711}
1712
1713/*
1714 * display a header line followed by a load of call lines
1715 */
1716static int nfs_volume_list_show(struct seq_file *m, void *v)
1717{
1718 struct nfs_server *server;
1719 struct nfs_client *clp;
1720 char dev[8], fsid[17];
1721
1722 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001723 if (v == &nfs_volume_list) {
David Howells5d1acff2009-04-03 16:42:47 +01001724 seq_puts(m, "NV SERVER PORT DEV FSID FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001725 return 0;
1726 }
1727 /* display one transport per line on subsequent lines */
1728 server = list_entry(v, struct nfs_server, master_link);
1729 clp = server->nfs_client;
1730
1731 snprintf(dev, 8, "%u:%u",
1732 MAJOR(server->s_dev), MINOR(server->s_dev));
1733
1734 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001735 (unsigned long long) server->fsid.major,
1736 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001737
David Howells5d1acff2009-04-03 16:42:47 +01001738 seq_printf(m, "v%u %s %s %-7s %-17s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001739 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001740 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1741 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001742 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001743 fsid,
1744 nfs_server_fscache_state(server));
David Howells6aaca562006-08-22 20:06:13 -04001745
1746 return 0;
1747}
1748
1749/*
1750 * initialise the /proc/fs/nfsfs/ directory
1751 */
1752int __init nfs_fs_proc_init(void)
1753{
1754 struct proc_dir_entry *p;
1755
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001756 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001757 if (!proc_fs_nfs)
1758 goto error_0;
1759
David Howells6aaca562006-08-22 20:06:13 -04001760 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001761 p = proc_create("servers", S_IFREG|S_IRUGO,
1762 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001763 if (!p)
1764 goto error_1;
1765
David Howells6aaca562006-08-22 20:06:13 -04001766 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001767 p = proc_create("volumes", S_IFREG|S_IRUGO,
1768 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001769 if (!p)
1770 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001771 return 0;
1772
1773error_2:
1774 remove_proc_entry("servers", proc_fs_nfs);
1775error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001776 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001777error_0:
1778 return -ENOMEM;
1779}
1780
1781/*
1782 * clean up the /proc/fs/nfsfs/ directory
1783 */
1784void nfs_fs_proc_exit(void)
1785{
1786 remove_proc_entry("volumes", proc_fs_nfs);
1787 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001788 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001789}
1790
1791#endif /* CONFIG_PROC_FS */