blob: 73ddefba7aa35b0b2ee85f583b54dfda1c1715ef [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>
38#include <net/ipv6.h>
David Howells24c8dbb2006-08-22 20:06:10 -040039#include <linux/nfs_xdr.h>
Andy Adamson0b5b7ae2009-04-01 09:23:15 -040040#include <linux/sunrpc/bc_xprt.h>
David Howells24c8dbb2006-08-22 20:06:10 -040041
42#include <asm/system.h>
43
44#include "nfs4_fs.h"
45#include "callback.h"
46#include "delegation.h"
47#include "iostat.h"
48#include "internal.h"
David Howells14727282009-04-03 16:42:42 +010049#include "fscache.h"
David Howells24c8dbb2006-08-22 20:06:10 -040050
51#define NFSDBG_FACILITY NFSDBG_CLIENT
52
53static DEFINE_SPINLOCK(nfs_client_lock);
54static LIST_HEAD(nfs_client_list);
David Howells54ceac42006-08-22 20:06:13 -040055static LIST_HEAD(nfs_volume_list);
David Howells24c8dbb2006-08-22 20:06:10 -040056static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq);
57
58/*
David Howells5006a762006-08-22 20:06:12 -040059 * RPC cruft for NFS
60 */
61static struct rpc_version *nfs_version[5] = {
62 [2] = &nfs_version2,
63#ifdef CONFIG_NFS_V3
64 [3] = &nfs_version3,
65#endif
66#ifdef CONFIG_NFS_V4
67 [4] = &nfs_version4,
68#endif
69};
70
71struct rpc_program nfs_program = {
72 .name = "nfs",
73 .number = NFS_PROGRAM,
74 .nrvers = ARRAY_SIZE(nfs_version),
75 .version = nfs_version,
76 .stats = &nfs_rpcstat,
77 .pipe_dir_name = "/nfs",
78};
79
80struct rpc_stat nfs_rpcstat = {
81 .program = &nfs_program
82};
83
84
85#ifdef CONFIG_NFS_V3_ACL
86static struct rpc_stat nfsacl_rpcstat = { &nfsacl_program };
87static struct rpc_version * nfsacl_version[] = {
88 [3] = &nfsacl_version3,
89};
90
91struct rpc_program nfsacl_program = {
92 .name = "nfsacl",
93 .number = NFS_ACL_PROGRAM,
94 .nrvers = ARRAY_SIZE(nfsacl_version),
95 .version = nfsacl_version,
96 .stats = &nfsacl_rpcstat,
97};
98#endif /* CONFIG_NFS_V3_ACL */
99
Trond Myklebust3a498022007-12-14 14:56:04 -0500100struct nfs_client_initdata {
101 const char *hostname;
Chuck Leverd7422c42007-12-10 14:58:51 -0500102 const struct sockaddr *addr;
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500103 size_t addrlen;
Trond Myklebust40c553192007-12-14 14:56:07 -0500104 const struct nfs_rpc_ops *rpc_ops;
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500105 int proto;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400106 u32 minorversion;
Trond Myklebust3a498022007-12-14 14:56:04 -0500107};
108
David Howells5006a762006-08-22 20:06:12 -0400109/*
David Howells24c8dbb2006-08-22 20:06:10 -0400110 * Allocate a shared client record
111 *
112 * Since these are allocated/deallocated very rarely, we don't
113 * bother putting them in a slab cache...
114 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500115static struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400116{
117 struct nfs_client *clp;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400118 struct rpc_cred *cred;
Chuck Levera21bdd92009-06-17 18:02:10 -0700119 int err = -ENOMEM;
David Howells24c8dbb2006-08-22 20:06:10 -0400120
121 if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL)
122 goto error_0;
123
Trond Myklebust40c553192007-12-14 14:56:07 -0500124 clp->rpc_ops = cl_init->rpc_ops;
125
David Howells24c8dbb2006-08-22 20:06:10 -0400126 atomic_set(&clp->cl_count, 1);
127 clp->cl_cons_state = NFS_CS_INITING;
128
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500129 memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen);
130 clp->cl_addrlen = cl_init->addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -0400131
Trond Myklebust3a498022007-12-14 14:56:04 -0500132 if (cl_init->hostname) {
Chuck Levera21bdd92009-06-17 18:02:10 -0700133 err = -ENOMEM;
Trond Myklebust3a498022007-12-14 14:56:04 -0500134 clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL);
David Howells24c8dbb2006-08-22 20:06:10 -0400135 if (!clp->cl_hostname)
Benny Halevy71468512009-04-01 09:22:56 -0400136 goto error_cleanup;
David Howells24c8dbb2006-08-22 20:06:10 -0400137 }
138
139 INIT_LIST_HEAD(&clp->cl_superblocks);
140 clp->cl_rpcclient = ERR_PTR(-EINVAL);
141
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500142 clp->cl_proto = cl_init->proto;
143
David Howells24c8dbb2006-08-22 20:06:10 -0400144#ifdef CONFIG_NFS_V4
David Howells24c8dbb2006-08-22 20:06:10 -0400145 INIT_LIST_HEAD(&clp->cl_delegations);
David Howells24c8dbb2006-08-22 20:06:10 -0400146 spin_lock_init(&clp->cl_lock);
David Howells65f27f32006-11-22 14:55:48 +0000147 INIT_DELAYED_WORK(&clp->cl_renewd, nfs4_renew_state);
David Howells24c8dbb2006-08-22 20:06:10 -0400148 rpc_init_wait_queue(&clp->cl_rpcwaitq, "NFS client");
149 clp->cl_boot_time = CURRENT_TIME;
150 clp->cl_state = 1 << NFS4CLNT_LEASE_EXPIRED;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400151 clp->cl_minorversion = cl_init->minorversion;
David Howells24c8dbb2006-08-22 20:06:10 -0400152#endif
Trond Myklebust7c67db32008-04-07 20:50:11 -0400153 cred = rpc_lookup_machine_cred();
154 if (!IS_ERR(cred))
155 clp->cl_machine_cred = cred;
David Howells24c8dbb2006-08-22 20:06:10 -0400156
David Howells14727282009-04-03 16:42:42 +0100157 nfs_fscache_get_client_cookie(clp);
158
David Howells24c8dbb2006-08-22 20:06:10 -0400159 return clp;
160
Benny Halevy71468512009-04-01 09:22:56 -0400161error_cleanup:
David Howells24c8dbb2006-08-22 20:06:10 -0400162 kfree(clp);
163error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700164 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400165}
166
Trond Myklebust5dd31772006-08-24 01:03:05 -0400167static void nfs4_shutdown_client(struct nfs_client *clp)
168{
169#ifdef CONFIG_NFS_V4
170 if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state))
171 nfs4_kill_renewd(clp);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400172 BUG_ON(!RB_EMPTY_ROOT(&clp->cl_state_owners));
Trond Myklebust5dd31772006-08-24 01:03:05 -0400173 if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state))
174 nfs_idmap_delete(clp);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500175
176 rpc_destroy_wait_queue(&clp->cl_rpcwaitq);
Trond Myklebust5dd31772006-08-24 01:03:05 -0400177#endif
178}
179
David Howells24c8dbb2006-08-22 20:06:10 -0400180/*
Benny Halevy9bdaa862009-04-01 09:22:55 -0400181 * Destroy the NFS4 callback service
182 */
183static void nfs4_destroy_callback(struct nfs_client *clp)
184{
185#ifdef CONFIG_NFS_V4
186 if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
Andy Adamsone82dc222009-04-01 09:23:14 -0400187 nfs_callback_down(clp->cl_minorversion);
Benny Halevy9bdaa862009-04-01 09:22:55 -0400188#endif /* CONFIG_NFS_V4 */
189}
190
191/*
Andy Adamson557134a2009-04-01 09:21:53 -0400192 * Clears/puts all minor version specific parts from an nfs_client struct
193 * reverting it to minorversion 0.
194 */
195static void nfs4_clear_client_minor_version(struct nfs_client *clp)
196{
197#ifdef CONFIG_NFS_V4_1
198 if (nfs4_has_session(clp)) {
199 nfs4_destroy_session(clp->cl_session);
200 clp->cl_session = NULL;
201 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400202
203 clp->cl_call_sync = _nfs4_call_sync;
Andy Adamson557134a2009-04-01 09:21:53 -0400204#endif /* CONFIG_NFS_V4_1 */
Benny Halevy71468512009-04-01 09:22:56 -0400205
206 nfs4_destroy_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -0400207}
208
209/*
David Howells24c8dbb2006-08-22 20:06:10 -0400210 * Destroy a shared client record
211 */
212static void nfs_free_client(struct nfs_client *clp)
213{
Trond Myklebust40c553192007-12-14 14:56:07 -0500214 dprintk("--> nfs_free_client(%u)\n", clp->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400215
Andy Adamson557134a2009-04-01 09:21:53 -0400216 nfs4_clear_client_minor_version(clp);
Trond Myklebust5dd31772006-08-24 01:03:05 -0400217 nfs4_shutdown_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400218
David Howells14727282009-04-03 16:42:42 +0100219 nfs_fscache_release_client_cookie(clp);
220
David Howells24c8dbb2006-08-22 20:06:10 -0400221 /* -EIO all pending I/O */
222 if (!IS_ERR(clp->cl_rpcclient))
223 rpc_shutdown_client(clp->cl_rpcclient);
224
Trond Myklebust7c67db32008-04-07 20:50:11 -0400225 if (clp->cl_machine_cred != NULL)
226 put_rpccred(clp->cl_machine_cred);
227
David Howells24c8dbb2006-08-22 20:06:10 -0400228 kfree(clp->cl_hostname);
229 kfree(clp);
230
231 dprintk("<-- nfs_free_client()\n");
232}
233
234/*
235 * Release a reference to a shared client record
236 */
237void nfs_put_client(struct nfs_client *clp)
238{
David Howells27ba8512006-07-30 14:40:56 -0400239 if (!clp)
240 return;
241
David Howells24c8dbb2006-08-22 20:06:10 -0400242 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count));
243
244 if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) {
245 list_del(&clp->cl_share_link);
246 spin_unlock(&nfs_client_lock);
247
248 BUG_ON(!list_empty(&clp->cl_superblocks));
249
250 nfs_free_client(clp);
251 }
252}
253
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500254#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400255/*
256 * Test if two ip6 socket addresses refer to the same socket by
257 * comparing relevant fields. The padding bytes specifically, are not
258 * compared. sin6_flowinfo is not compared because it only affects QoS
259 * and sin6_scope_id is only compared if the address is "link local"
260 * because "link local" addresses need only be unique to a specific
261 * link. Conversely, ordinary unicast addresses might have different
262 * sin6_scope_id.
263 *
264 * The caller should ensure both socket addresses are AF_INET6.
265 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400266static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
267 const struct sockaddr *sa2)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400268{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400269 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
270 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400271
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400272 if (ipv6_addr_scope(&sin1->sin6_addr) == IPV6_ADDR_SCOPE_LINKLOCAL &&
273 sin1->sin6_scope_id != sin2->sin6_scope_id)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400274 return 0;
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500275
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400276 return ipv6_addr_equal(&sin1->sin6_addr, &sin1->sin6_addr);
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500277}
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400278#else /* !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE) */
279static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1,
280 const struct sockaddr *sa2)
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400281{
282 return 0;
283}
Trond Myklebust9082a5c2008-12-23 15:21:53 -0500284#endif
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500285
David Howells24c8dbb2006-08-22 20:06:10 -0400286/*
Ian Dalld7371c42009-03-10 20:33:22 -0400287 * Test if two ip4 socket addresses refer to the same socket, by
288 * comparing relevant fields. The padding bytes specifically, are
289 * not compared.
290 *
291 * The caller should ensure both socket addresses are AF_INET.
292 */
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400293static int nfs_sockaddr_match_ipaddr4(const struct sockaddr *sa1,
294 const struct sockaddr *sa2)
295{
296 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
297 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
298
299 return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr;
300}
301
302static int nfs_sockaddr_cmp_ip6(const struct sockaddr *sa1,
303 const struct sockaddr *sa2)
304{
305 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1;
306 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2;
307
308 return nfs_sockaddr_match_ipaddr6(sa1, sa2) &&
309 (sin1->sin6_port == sin2->sin6_port);
310}
311
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400312static int nfs_sockaddr_cmp_ip4(const struct sockaddr *sa1,
313 const struct sockaddr *sa2)
Ian Dalld7371c42009-03-10 20:33:22 -0400314{
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400315 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1;
316 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2;
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400317
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400318 return nfs_sockaddr_match_ipaddr4(sa1, sa2) &&
319 (sin1->sin_port == sin2->sin_port);
Ian Dalld7371c42009-03-10 20:33:22 -0400320}
321
322/*
Ian Dalld7371c42009-03-10 20:33:22 -0400323 * Test if two socket addresses represent the same actual socket,
Chuck Lever3c8c45d2009-03-18 20:48:14 -0400324 * by comparing (only) relevant fields, excluding the port number.
325 */
326static int nfs_sockaddr_match_ipaddr(const struct sockaddr *sa1,
327 const struct sockaddr *sa2)
328{
329 if (sa1->sa_family != sa2->sa_family)
330 return 0;
331
332 switch (sa1->sa_family) {
333 case AF_INET:
334 return nfs_sockaddr_match_ipaddr4(sa1, sa2);
335 case AF_INET6:
336 return nfs_sockaddr_match_ipaddr6(sa1, sa2);
337 }
338 return 0;
339}
340
341/*
342 * Test if two socket addresses represent the same actual socket,
343 * by comparing (only) relevant fields, including the port number.
Ian Dalld7371c42009-03-10 20:33:22 -0400344 */
345static int nfs_sockaddr_cmp(const struct sockaddr *sa1,
346 const struct sockaddr *sa2)
347{
348 if (sa1->sa_family != sa2->sa_family)
349 return 0;
350
351 switch (sa1->sa_family) {
352 case AF_INET:
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400353 return nfs_sockaddr_cmp_ip4(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400354 case AF_INET6:
Trond Myklebust9f4c8992009-03-12 14:51:32 -0400355 return nfs_sockaddr_cmp_ip6(sa1, sa2);
Ian Dalld7371c42009-03-10 20:33:22 -0400356 }
357 return 0;
358}
359
360/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500361 * Find a client by IP address and protocol version
362 * - returns NULL if no such client
David Howells24c8dbb2006-08-22 20:06:10 -0400363 */
Chuck Leverff052642007-12-10 14:58:44 -0500364struct nfs_client *nfs_find_client(const struct sockaddr *addr, u32 nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500365{
366 struct nfs_client *clp;
367
368 spin_lock(&nfs_client_lock);
369 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500370 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
371
Trond Myklebustc81468a2007-12-14 14:56:05 -0500372 /* Don't match clients that failed to initialise properly */
Andy Adamson76db6d92009-04-01 09:22:38 -0400373 if (!(clp->cl_cons_state == NFS_CS_READY ||
374 clp->cl_cons_state == NFS_CS_SESSION_INITING))
Trond Myklebustc81468a2007-12-14 14:56:05 -0500375 continue;
376
377 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500378 if (clp->rpc_ops->version != nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500379 continue;
380
381 /* Match only the IP address, not the port number */
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500382 if (!nfs_sockaddr_match_ipaddr(addr, clap))
Trond Myklebustc81468a2007-12-14 14:56:05 -0500383 continue;
384
385 atomic_inc(&clp->cl_count);
386 spin_unlock(&nfs_client_lock);
387 return clp;
388 }
389 spin_unlock(&nfs_client_lock);
390 return NULL;
391}
392
393/*
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500394 * Find a client by IP address and protocol version
395 * - returns NULL if no such client
396 */
397struct nfs_client *nfs_find_client_next(struct nfs_client *clp)
398{
399 struct sockaddr *sap = (struct sockaddr *)&clp->cl_addr;
400 u32 nfsvers = clp->rpc_ops->version;
401
402 spin_lock(&nfs_client_lock);
403 list_for_each_entry_continue(clp, &nfs_client_list, cl_share_link) {
404 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
405
406 /* Don't match clients that failed to initialise properly */
407 if (clp->cl_cons_state != NFS_CS_READY)
408 continue;
409
410 /* Different NFS versions cannot share the same nfs_client */
411 if (clp->rpc_ops->version != nfsvers)
412 continue;
413
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500414 /* Match only the IP address, not the port number */
415 if (!nfs_sockaddr_match_ipaddr(sap, clap))
416 continue;
417
418 atomic_inc(&clp->cl_count);
419 spin_unlock(&nfs_client_lock);
420 return clp;
421 }
422 spin_unlock(&nfs_client_lock);
423 return NULL;
424}
425
426/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500427 * Find an nfs_client on the list that matches the initialisation data
428 * that is supplied.
429 */
430static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400431{
432 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400433 const struct sockaddr *sap = data->addr;
David Howells24c8dbb2006-08-22 20:06:10 -0400434
435 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400436 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700437 /* Don't match clients that failed to initialise properly */
438 if (clp->cl_cons_state < 0)
439 continue;
440
David Howells24c8dbb2006-08-22 20:06:10 -0400441 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500442 if (clp->rpc_ops != data->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400443 continue;
444
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500445 if (clp->cl_proto != data->proto)
446 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400447 /* Match nfsv4 minorversion */
448 if (clp->cl_minorversion != data->minorversion)
449 continue;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500450 /* Match the full socket address */
Ian Dalld7371c42009-03-10 20:33:22 -0400451 if (!nfs_sockaddr_cmp(sap, clap))
David Howells24c8dbb2006-08-22 20:06:10 -0400452 continue;
453
Trond Myklebustc81468a2007-12-14 14:56:05 -0500454 atomic_inc(&clp->cl_count);
455 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400456 }
David Howells24c8dbb2006-08-22 20:06:10 -0400457 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400458}
459
460/*
461 * Look up a client by IP address and protocol version
462 * - creates a new record if one doesn't yet exist
463 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500464static struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400465{
466 struct nfs_client *clp, *new = NULL;
467 int error;
468
Chuck Leverd7422c42007-12-10 14:58:51 -0500469 dprintk("--> nfs_get_client(%s,v%u)\n",
470 cl_init->hostname ?: "", cl_init->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400471
472 /* see if the client already exists */
473 do {
474 spin_lock(&nfs_client_lock);
475
Trond Myklebustc81468a2007-12-14 14:56:05 -0500476 clp = nfs_match_client(cl_init);
David Howells24c8dbb2006-08-22 20:06:10 -0400477 if (clp)
478 goto found_client;
479 if (new)
480 goto install_client;
481
482 spin_unlock(&nfs_client_lock);
483
Trond Myklebust3a498022007-12-14 14:56:04 -0500484 new = nfs_alloc_client(cl_init);
Chuck Levera21bdd92009-06-17 18:02:10 -0700485 } while (!IS_ERR(new));
David Howells24c8dbb2006-08-22 20:06:10 -0400486
Chuck Levera21bdd92009-06-17 18:02:10 -0700487 dprintk("--> nfs_get_client() = %ld [failed]\n", PTR_ERR(new));
488 return new;
David Howells24c8dbb2006-08-22 20:06:10 -0400489
490 /* install a new client and return with it unready */
491install_client:
492 clp = new;
493 list_add(&clp->cl_share_link, &nfs_client_list);
494 spin_unlock(&nfs_client_lock);
495 dprintk("--> nfs_get_client() = %p [new]\n", clp);
496 return clp;
497
498 /* found an existing client
499 * - make sure it's ready before returning
500 */
501found_client:
502 spin_unlock(&nfs_client_lock);
503
504 if (new)
505 nfs_free_client(new);
506
Matthew Wilcox150030b2007-12-06 16:24:39 -0500507 error = wait_event_killable(nfs_client_active_wq,
Andy Adamson76db6d92009-04-01 09:22:38 -0400508 clp->cl_cons_state < NFS_CS_INITING);
Trond Myklebust0bae89e2006-10-08 14:33:24 -0400509 if (error < 0) {
510 nfs_put_client(clp);
511 return ERR_PTR(-ERESTARTSYS);
David Howells24c8dbb2006-08-22 20:06:10 -0400512 }
513
514 if (clp->cl_cons_state < NFS_CS_READY) {
515 error = clp->cl_cons_state;
516 nfs_put_client(clp);
517 return ERR_PTR(error);
518 }
519
David Howells54ceac42006-08-22 20:06:13 -0400520 BUG_ON(clp->cl_cons_state != NFS_CS_READY);
521
David Howells24c8dbb2006-08-22 20:06:10 -0400522 dprintk("--> nfs_get_client() = %p [share]\n", clp);
523 return clp;
524}
525
526/*
527 * Mark a server as ready or failed
528 */
Andy Adamson76db6d92009-04-01 09:22:38 -0400529void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400530{
531 clp->cl_cons_state = state;
532 wake_up_all(&nfs_client_active_wq);
533}
David Howells5006a762006-08-22 20:06:12 -0400534
535/*
Benny Halevy008f55d2009-04-01 09:22:50 -0400536 * With sessions, the client is not marked ready until after a
537 * successful EXCHANGE_ID and CREATE_SESSION.
538 *
539 * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate
540 * other versions of NFS can be tried.
541 */
542int nfs4_check_client_ready(struct nfs_client *clp)
543{
544 if (!nfs4_has_session(clp))
545 return 0;
546 if (clp->cl_cons_state < NFS_CS_READY)
547 return -EPROTONOSUPPORT;
548 return 0;
549}
550
551/*
David Howells5006a762006-08-22 20:06:12 -0400552 * Initialise the timeout values for a connection
553 */
554static void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
555 unsigned int timeo, unsigned int retrans)
556{
557 to->to_initval = timeo * HZ / 10;
558 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400559
560 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400561 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400562 case XPRT_TRANSPORT_RDMA:
Trond Myklebust259875e2008-07-02 14:43:47 -0400563 if (to->to_retries == 0)
564 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500565 if (to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400566 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400567 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
568 to->to_initval = NFS_MAX_TCP_TIMEOUT;
569 to->to_increment = to->to_initval;
570 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500571 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
572 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
573 if (to->to_maxval < to->to_initval)
574 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400575 to->to_exponential = 0;
576 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400577 case XPRT_TRANSPORT_UDP:
Trond Myklebust259875e2008-07-02 14:43:47 -0400578 if (to->to_retries == 0)
579 to->to_retries = NFS_DEF_UDP_RETRANS;
David Howells5006a762006-08-22 20:06:12 -0400580 if (!to->to_initval)
Trond Myklebust259875e2008-07-02 14:43:47 -0400581 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400582 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
583 to->to_initval = NFS_MAX_UDP_TIMEOUT;
584 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
585 to->to_exponential = 1;
586 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400587 default:
588 BUG();
David Howells5006a762006-08-22 20:06:12 -0400589 }
590}
591
592/*
593 * Create an RPC client handle
594 */
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500595static int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500596 const struct rpc_timeout *timeparms,
597 rpc_authflavor_t flavor,
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500598 int discrtry, int noresvport)
David Howells5006a762006-08-22 20:06:12 -0400599{
David Howells5006a762006-08-22 20:06:12 -0400600 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400601 struct rpc_create_args args = {
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500602 .protocol = clp->cl_proto,
Chuck Lever41877d22006-08-22 20:06:20 -0400603 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500604 .addrsize = clp->cl_addrlen,
Trond Myklebust33170232007-12-20 16:03:59 -0500605 .timeout = timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400606 .servername = clp->cl_hostname,
607 .program = &nfs_program,
608 .version = clp->rpc_ops->version,
609 .authflavor = flavor,
610 };
David Howells5006a762006-08-22 20:06:12 -0400611
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500612 if (discrtry)
613 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
614 if (noresvport)
615 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
616
David Howells5006a762006-08-22 20:06:12 -0400617 if (!IS_ERR(clp->cl_rpcclient))
618 return 0;
619
Chuck Lever41877d22006-08-22 20:06:20 -0400620 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400621 if (IS_ERR(clnt)) {
622 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700623 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400624 return PTR_ERR(clnt);
625 }
626
David Howells5006a762006-08-22 20:06:12 -0400627 clp->cl_rpcclient = clnt;
628 return 0;
629}
David Howells54ceac42006-08-22 20:06:13 -0400630
631/*
632 * Version 2 or 3 client destruction
633 */
634static void nfs_destroy_server(struct nfs_server *server)
635{
David Howells54ceac42006-08-22 20:06:13 -0400636 if (!(server->flags & NFS_MOUNT_NONLM))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500637 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400638}
639
640/*
641 * Version 2 or 3 lockd setup
642 */
643static int nfs_start_lockd(struct nfs_server *server)
644{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500645 struct nlm_host *host;
646 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500647 struct nlmclnt_initdata nlm_init = {
648 .hostname = clp->cl_hostname,
649 .address = (struct sockaddr *)&clp->cl_addr,
650 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500651 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500652 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
653 1 : 0,
Chuck Lever883bb162008-01-15 16:04:20 -0500654 };
David Howells54ceac42006-08-22 20:06:13 -0400655
Chuck Lever883bb162008-01-15 16:04:20 -0500656 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500657 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400658 if (server->flags & NFS_MOUNT_NONLM)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500659 return 0;
660
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400661 switch (clp->cl_proto) {
662 default:
663 nlm_init.protocol = IPPROTO_TCP;
664 break;
665 case XPRT_TRANSPORT_UDP:
666 nlm_init.protocol = IPPROTO_UDP;
667 }
668
Chuck Lever883bb162008-01-15 16:04:20 -0500669 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500670 if (IS_ERR(host))
671 return PTR_ERR(host);
672
673 server->nlm_host = host;
674 server->destroy = nfs_destroy_server;
675 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400676}
677
678/*
679 * Initialise an NFSv3 ACL client connection
680 */
681#ifdef CONFIG_NFS_V3_ACL
682static void nfs_init_server_aclclient(struct nfs_server *server)
683{
Trond Myklebust40c553192007-12-14 14:56:07 -0500684 if (server->nfs_client->rpc_ops->version != 3)
David Howells54ceac42006-08-22 20:06:13 -0400685 goto out_noacl;
686 if (server->flags & NFS_MOUNT_NOACL)
687 goto out_noacl;
688
689 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
690 if (IS_ERR(server->client_acl))
691 goto out_noacl;
692
693 /* No errors! Assume that Sun nfsacls are supported */
694 server->caps |= NFS_CAP_ACLS;
695 return;
696
697out_noacl:
698 server->caps &= ~NFS_CAP_ACLS;
699}
700#else
701static inline void nfs_init_server_aclclient(struct nfs_server *server)
702{
703 server->flags &= ~NFS_MOUNT_NOACL;
704 server->caps &= ~NFS_CAP_ACLS;
705}
706#endif
707
708/*
709 * Create a general RPC client
710 */
Trond Myklebust33170232007-12-20 16:03:59 -0500711static int nfs_init_server_rpcclient(struct nfs_server *server,
712 const struct rpc_timeout *timeo,
713 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400714{
715 struct nfs_client *clp = server->nfs_client;
716
717 server->client = rpc_clone_client(clp->cl_rpcclient);
718 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700719 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400720 return PTR_ERR(server->client);
721 }
722
Trond Myklebust33170232007-12-20 16:03:59 -0500723 memcpy(&server->client->cl_timeout_default,
724 timeo,
725 sizeof(server->client->cl_timeout_default));
726 server->client->cl_timeout = &server->client->cl_timeout_default;
727
David Howells54ceac42006-08-22 20:06:13 -0400728 if (pseudoflavour != clp->cl_rpcclient->cl_auth->au_flavor) {
729 struct rpc_auth *auth;
730
731 auth = rpcauth_create(pseudoflavour, server->client);
732 if (IS_ERR(auth)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700733 dprintk("%s: couldn't create credcache!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400734 return PTR_ERR(auth);
735 }
736 }
737 server->client->cl_softrtry = 0;
738 if (server->flags & NFS_MOUNT_SOFT)
739 server->client->cl_softrtry = 1;
740
David Howells54ceac42006-08-22 20:06:13 -0400741 return 0;
742}
743
744/*
745 * Initialise an NFS2 or NFS3 client
746 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400747static int nfs_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500748 const struct rpc_timeout *timeparms,
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400749 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400750{
David Howells54ceac42006-08-22 20:06:13 -0400751 int error;
752
753 if (clp->cl_cons_state == NFS_CS_READY) {
754 /* the client is already initialised */
755 dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp);
756 return 0;
757 }
758
David Howells54ceac42006-08-22 20:06:13 -0400759 /*
760 * Create a client RPC handle for doing FSSTAT with UNIX auth only
761 * - RFC 2623, sec 2.3.2
762 */
Chuck Leverd7403512008-12-23 15:21:37 -0500763 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX,
764 0, data->flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -0400765 if (error < 0)
766 goto error;
767 nfs_mark_client_ready(clp, NFS_CS_READY);
768 return 0;
769
770error:
771 nfs_mark_client_ready(clp, error);
772 dprintk("<-- nfs_init_client() = xerror %d\n", error);
773 return error;
774}
775
776/*
777 * Create a version 2 or 3 client
778 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400779static int nfs_init_server(struct nfs_server *server,
780 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400781{
Trond Myklebust3a498022007-12-14 14:56:04 -0500782 struct nfs_client_initdata cl_init = {
783 .hostname = data->nfs_server.hostname,
Chuck Leverd7422c42007-12-10 14:58:51 -0500784 .addr = (const struct sockaddr *)&data->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -0500785 .addrlen = data->nfs_server.addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -0500786 .rpc_ops = &nfs_v2_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500787 .proto = data->nfs_server.protocol,
Trond Myklebust3a498022007-12-14 14:56:04 -0500788 };
Trond Myklebust33170232007-12-20 16:03:59 -0500789 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -0400790 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500791 int error;
David Howells54ceac42006-08-22 20:06:13 -0400792
793 dprintk("--> nfs_init_server()\n");
794
795#ifdef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400796 if (data->version == 3)
Trond Myklebust40c553192007-12-14 14:56:07 -0500797 cl_init.rpc_ops = &nfs_v3_clientops;
David Howells54ceac42006-08-22 20:06:13 -0400798#endif
799
800 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -0500801 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -0400802 if (IS_ERR(clp)) {
803 dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp));
804 return PTR_ERR(clp);
805 }
806
Trond Myklebust33170232007-12-20 16:03:59 -0500807 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
808 data->timeo, data->retrans);
809 error = nfs_init_client(clp, &timeparms, data);
David Howells54ceac42006-08-22 20:06:13 -0400810 if (error < 0)
811 goto error;
812
813 server->nfs_client = clp;
814
815 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -0400816 server->flags = data->flags;
David Howellsb797cac2009-04-03 16:42:48 +0100817 server->options = data->options;
Trond Myklebust62ab4602009-08-09 15:06:19 -0400818 server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
819 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP|
820 NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME;
David Howells54ceac42006-08-22 20:06:13 -0400821
822 if (data->rsize)
823 server->rsize = nfs_block_size(data->rsize, NULL);
824 if (data->wsize)
825 server->wsize = nfs_block_size(data->wsize, NULL);
826
827 server->acregmin = data->acregmin * HZ;
828 server->acregmax = data->acregmax * HZ;
829 server->acdirmin = data->acdirmin * HZ;
830 server->acdirmax = data->acdirmax * HZ;
831
832 /* Start lockd here, before we might error out */
833 error = nfs_start_lockd(server);
834 if (error < 0)
835 goto error;
836
Chuck Leverf22d6d72008-03-14 14:10:22 -0400837 server->port = data->nfs_server.port;
838
Trond Myklebust33170232007-12-20 16:03:59 -0500839 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -0400840 if (error < 0)
841 goto error;
842
Chuck Lever3f8400d2008-03-14 14:10:30 -0400843 /* Preserve the values of mount_server-related mount options */
844 if (data->mount_server.addrlen) {
845 memcpy(&server->mountd_address, &data->mount_server.address,
846 data->mount_server.addrlen);
847 server->mountd_addrlen = data->mount_server.addrlen;
848 }
849 server->mountd_version = data->mount_server.version;
850 server->mountd_port = data->mount_server.port;
851 server->mountd_protocol = data->mount_server.protocol;
852
David Howells54ceac42006-08-22 20:06:13 -0400853 server->namelen = data->namlen;
854 /* Create a client RPC handle for the NFSv3 ACL management interface */
855 nfs_init_server_aclclient(server);
David Howells54ceac42006-08-22 20:06:13 -0400856 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp);
857 return 0;
858
859error:
860 server->nfs_client = NULL;
861 nfs_put_client(clp);
862 dprintk("<-- nfs_init_server() = xerror %d\n", error);
863 return error;
864}
865
866/*
867 * Load up the server record from information gained in an fsinfo record
868 */
869static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *fsinfo)
870{
871 unsigned long max_rpc_payload;
872
873 /* Work out a lot of parameters */
874 if (server->rsize == 0)
875 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
876 if (server->wsize == 0)
877 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
878
879 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
880 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
881 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
882 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
883
884 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
885 if (server->rsize > max_rpc_payload)
886 server->rsize = max_rpc_payload;
887 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
888 server->rsize = NFS_MAX_FILE_IO_SIZE;
889 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700890
Jens Axboed9938312009-06-12 14:45:52 +0200891 server->backing_dev_info.name = "nfs";
David Howells54ceac42006-08-22 20:06:13 -0400892 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
893
894 if (server->wsize > max_rpc_payload)
895 server->wsize = max_rpc_payload;
896 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
897 server->wsize = NFS_MAX_FILE_IO_SIZE;
898 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
899 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
900
901 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
902 if (server->dtsize > PAGE_CACHE_SIZE)
903 server->dtsize = PAGE_CACHE_SIZE;
904 if (server->dtsize > server->rsize)
905 server->dtsize = server->rsize;
906
907 if (server->flags & NFS_MOUNT_NOAC) {
908 server->acregmin = server->acregmax = 0;
909 server->acdirmin = server->acdirmax = 0;
910 }
911
912 server->maxfilesize = fsinfo->maxfilesize;
913
914 /* We're airborne Set socket buffersize */
915 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
916}
917
918/*
919 * Probe filesystem information, including the FSID on v2/v3
920 */
921static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
922{
923 struct nfs_fsinfo fsinfo;
924 struct nfs_client *clp = server->nfs_client;
925 int error;
926
927 dprintk("--> nfs_probe_fsinfo()\n");
928
929 if (clp->rpc_ops->set_capabilities != NULL) {
930 error = clp->rpc_ops->set_capabilities(server, mntfh);
931 if (error < 0)
932 goto out_error;
933 }
934
935 fsinfo.fattr = fattr;
936 nfs_fattr_init(fattr);
937 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;
968 target->acregmin = source->acregmin;
969 target->acregmax = source->acregmax;
970 target->acdirmin = source->acdirmin;
971 target->acdirmax = source->acdirmax;
972 target->caps = source->caps;
973}
974
975/*
976 * Allocate and initialise a server record
977 */
978static struct nfs_server *nfs_alloc_server(void)
979{
980 struct nfs_server *server;
981
982 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
983 if (!server)
984 return NULL;
985
986 server->client = server->client_acl = ERR_PTR(-EINVAL);
987
988 /* Zero out the NFS state stuff */
989 INIT_LIST_HEAD(&server->client_link);
990 INIT_LIST_HEAD(&server->master_link);
991
Steve Dicksonef818a22007-11-08 04:05:04 -0500992 atomic_set(&server->active, 0);
993
David Howells54ceac42006-08-22 20:06:13 -0400994 server->io_stats = nfs_alloc_iostats();
995 if (!server->io_stats) {
996 kfree(server);
997 return NULL;
998 }
999
Jens Axboe48d07642009-09-21 09:59:39 +02001000 if (bdi_init(&server->backing_dev_info)) {
1001 nfs_free_iostats(server->io_stats);
1002 kfree(server);
1003 return NULL;
1004 }
1005
David Howells54ceac42006-08-22 20:06:13 -04001006 return server;
1007}
1008
1009/*
1010 * Free up a server record
1011 */
1012void nfs_free_server(struct nfs_server *server)
1013{
1014 dprintk("--> nfs_free_server()\n");
1015
1016 spin_lock(&nfs_client_lock);
1017 list_del(&server->client_link);
1018 list_del(&server->master_link);
1019 spin_unlock(&nfs_client_lock);
1020
1021 if (server->destroy != NULL)
1022 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -05001023
1024 if (!IS_ERR(server->client_acl))
1025 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -04001026 if (!IS_ERR(server->client))
1027 rpc_shutdown_client(server->client);
1028
1029 nfs_put_client(server->nfs_client);
1030
1031 nfs_free_iostats(server->io_stats);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001032 bdi_destroy(&server->backing_dev_info);
David Howells54ceac42006-08-22 20:06:13 -04001033 kfree(server);
1034 nfs_release_automount_timer();
1035 dprintk("<-- nfs_free_server()\n");
1036}
1037
1038/*
1039 * Create a version 2 or 3 volume record
1040 * - keyed on server and FSID
1041 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001042struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001043 struct nfs_fh *mntfh)
1044{
1045 struct nfs_server *server;
1046 struct nfs_fattr fattr;
1047 int error;
1048
1049 server = nfs_alloc_server();
1050 if (!server)
1051 return ERR_PTR(-ENOMEM);
1052
1053 /* Get a client representation */
1054 error = nfs_init_server(server, data);
1055 if (error < 0)
1056 goto error;
1057
1058 BUG_ON(!server->nfs_client);
1059 BUG_ON(!server->nfs_client->rpc_ops);
1060 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1061
1062 /* Probe the root fh to retrieve its FSID */
1063 error = nfs_probe_fsinfo(server, mntfh, &fattr);
1064 if (error < 0)
1065 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001066 if (server->nfs_client->rpc_ops->version == 3) {
1067 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1068 server->namelen = NFS3_MAXNAMLEN;
1069 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
1070 server->caps |= NFS_CAP_READDIRPLUS;
1071 } else {
1072 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1073 server->namelen = NFS2_MAXNAMLEN;
1074 }
1075
David Howells54ceac42006-08-22 20:06:13 -04001076 if (!(fattr.valid & NFS_ATTR_FATTR)) {
1077 error = server->nfs_client->rpc_ops->getattr(server, mntfh, &fattr);
1078 if (error < 0) {
1079 dprintk("nfs_create_server: getattr error = %d\n", -error);
1080 goto error;
1081 }
1082 }
1083 memcpy(&server->fsid, &fattr.fsid, sizeof(server->fsid));
1084
David Howells6daabf12006-08-24 15:44:16 -04001085 dprintk("Server FSID: %llx:%llx\n",
1086 (unsigned long long) server->fsid.major,
1087 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001088
David Howells54ceac42006-08-22 20:06:13 -04001089 spin_lock(&nfs_client_lock);
1090 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1091 list_add_tail(&server->master_link, &nfs_volume_list);
1092 spin_unlock(&nfs_client_lock);
1093
1094 server->mount_time = jiffies;
1095 return server;
1096
1097error:
1098 nfs_free_server(server);
1099 return ERR_PTR(error);
1100}
1101
1102#ifdef CONFIG_NFS_V4
1103/*
Benny Halevy9bdaa862009-04-01 09:22:55 -04001104 * Initialize the NFS4 callback service
1105 */
1106static int nfs4_init_callback(struct nfs_client *clp)
1107{
1108 int error;
1109
1110 if (clp->rpc_ops->version == 4) {
Andy Adamson0b5b7ae2009-04-01 09:23:15 -04001111 if (nfs4_has_session(clp)) {
1112 error = xprt_setup_backchannel(
1113 clp->cl_rpcclient->cl_xprt,
1114 NFS41_BC_MIN_CALLBACKS);
1115 if (error < 0)
1116 return error;
1117 }
1118
Benny Halevy71468512009-04-01 09:22:56 -04001119 error = nfs_callback_up(clp->cl_minorversion,
1120 clp->cl_rpcclient->cl_xprt);
Benny Halevy9bdaa862009-04-01 09:22:55 -04001121 if (error < 0) {
1122 dprintk("%s: failed to start callback. Error = %d\n",
1123 __func__, error);
1124 return error;
1125 }
1126 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
1127 }
1128 return 0;
1129}
1130
1131/*
Andy Adamson557134a2009-04-01 09:21:53 -04001132 * Initialize the minor version specific parts of an NFS4 client record
1133 */
1134static int nfs4_init_client_minor_version(struct nfs_client *clp)
1135{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001136 clp->cl_call_sync = _nfs4_call_sync;
1137
Andy Adamson557134a2009-04-01 09:21:53 -04001138#if defined(CONFIG_NFS_V4_1)
1139 if (clp->cl_minorversion) {
1140 struct nfs4_session *session = NULL;
1141 /*
1142 * Create the session and mark it expired.
1143 * When a SEQUENCE operation encounters the expired session
1144 * it will do session recovery to initialize it.
1145 */
1146 session = nfs4_alloc_session(clp);
1147 if (!session)
1148 return -ENOMEM;
1149
1150 clp->cl_session = session;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001151 clp->cl_call_sync = _nfs4_call_sync_session;
Andy Adamson557134a2009-04-01 09:21:53 -04001152 }
1153#endif /* CONFIG_NFS_V4_1 */
1154
Benny Halevy71468512009-04-01 09:22:56 -04001155 return nfs4_init_callback(clp);
Andy Adamson557134a2009-04-01 09:21:53 -04001156}
1157
1158/*
David Howells54ceac42006-08-22 20:06:13 -04001159 * Initialise an NFS4 client record
1160 */
1161static int nfs4_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -05001162 const struct rpc_timeout *timeparms,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001163 const char *ip_addr,
Chuck Leverd7403512008-12-23 15:21:37 -05001164 rpc_authflavor_t authflavour,
1165 int flags)
David Howells54ceac42006-08-22 20:06:13 -04001166{
1167 int error;
1168
1169 if (clp->cl_cons_state == NFS_CS_READY) {
1170 /* the client is initialised already */
1171 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
1172 return 0;
1173 }
1174
1175 /* Check NFS protocol revision and initialize RPC op vector */
1176 clp->rpc_ops = &nfs_v4_clientops;
1177
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001178 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Chuck Leverd7403512008-12-23 15:21:37 -05001179 1, flags & NFS_MOUNT_NORESVPORT);
David Howells54ceac42006-08-22 20:06:13 -04001180 if (error < 0)
1181 goto error;
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001182 memcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -04001183
1184 error = nfs_idmap_new(clp);
1185 if (error < 0) {
1186 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -07001187 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -04001188 goto error;
1189 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -04001190 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -04001191
Andy Adamson557134a2009-04-01 09:21:53 -04001192 error = nfs4_init_client_minor_version(clp);
1193 if (error < 0)
1194 goto error;
1195
Andy Adamson76db6d92009-04-01 09:22:38 -04001196 if (!nfs4_has_session(clp))
1197 nfs_mark_client_ready(clp, NFS_CS_READY);
David Howells54ceac42006-08-22 20:06:13 -04001198 return 0;
1199
1200error:
1201 nfs_mark_client_ready(clp, error);
1202 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1203 return error;
1204}
1205
1206/*
1207 * Set up an NFS4 client
1208 */
1209static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001210 const char *hostname,
1211 const struct sockaddr *addr,
1212 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001213 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001214 rpc_authflavor_t authflavour,
Benny Halevy94a417f2009-04-01 09:21:49 -04001215 int proto, const struct rpc_timeout *timeparms,
1216 u32 minorversion)
David Howells54ceac42006-08-22 20:06:13 -04001217{
Trond Myklebust3a498022007-12-14 14:56:04 -05001218 struct nfs_client_initdata cl_init = {
1219 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001220 .addr = addr,
1221 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001222 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001223 .proto = proto,
Benny Halevy5aae4a92009-04-01 09:21:50 -04001224 .minorversion = minorversion,
Trond Myklebust3a498022007-12-14 14:56:04 -05001225 };
David Howells54ceac42006-08-22 20:06:13 -04001226 struct nfs_client *clp;
1227 int error;
1228
1229 dprintk("--> nfs4_set_client()\n");
1230
1231 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -05001232 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -04001233 if (IS_ERR(clp)) {
1234 error = PTR_ERR(clp);
1235 goto error;
1236 }
Chuck Leverd7403512008-12-23 15:21:37 -05001237 error = nfs4_init_client(clp, timeparms, ip_addr, authflavour,
1238 server->flags);
David Howells54ceac42006-08-22 20:06:13 -04001239 if (error < 0)
1240 goto error_put;
1241
1242 server->nfs_client = clp;
1243 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1244 return 0;
1245
1246error_put:
1247 nfs_put_client(clp);
1248error:
1249 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1250 return error;
1251}
1252
Andy Adamson557134a2009-04-01 09:21:53 -04001253
1254/*
Andy Adamson96b09e02009-04-01 09:22:33 -04001255 * Session has been established, and the client marked ready.
1256 * Set the mount rsize and wsize with negotiated fore channel
1257 * attributes which will be bound checked in nfs_server_set_fsinfo.
1258 */
1259static void nfs4_session_set_rwsize(struct nfs_server *server)
1260{
1261#ifdef CONFIG_NFS_V4_1
1262 if (!nfs4_has_session(server->nfs_client))
1263 return;
1264 server->rsize = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
1265 server->wsize = server->nfs_client->cl_session->fc_attrs.max_rqst_sz;
1266#endif /* CONFIG_NFS_V4_1 */
1267}
1268
1269/*
David Howells54ceac42006-08-22 20:06:13 -04001270 * Create a version 4 volume record
1271 */
1272static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001273 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001274{
Trond Myklebust33170232007-12-20 16:03:59 -05001275 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001276 int error;
1277
1278 dprintk("--> nfs4_init_server()\n");
1279
Trond Myklebust33170232007-12-20 16:03:59 -05001280 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1281 data->timeo, data->retrans);
1282
Chuck Lever542fcc32008-12-23 15:21:36 -05001283 /* Initialise the client representation from the mount data */
1284 server->flags = data->flags;
Trond Myklebust62ab4602009-08-09 15:06:19 -04001285 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
David Howellsb797cac2009-04-03 16:42:48 +01001286 server->options = data->options;
Chuck Lever542fcc32008-12-23 15:21:36 -05001287
Trond Myklebust33170232007-12-20 16:03:59 -05001288 /* Get a client record */
1289 error = nfs4_set_client(server,
1290 data->nfs_server.hostname,
1291 (const struct sockaddr *)&data->nfs_server.address,
1292 data->nfs_server.addrlen,
1293 data->client_address,
1294 data->auth_flavors[0],
1295 data->nfs_server.protocol,
Benny Halevy94a417f2009-04-01 09:21:49 -04001296 &timeparms,
1297 data->minorversion);
Trond Myklebust33170232007-12-20 16:03:59 -05001298 if (error < 0)
1299 goto error;
1300
David Howells54ceac42006-08-22 20:06:13 -04001301 if (data->rsize)
1302 server->rsize = nfs_block_size(data->rsize, NULL);
1303 if (data->wsize)
1304 server->wsize = nfs_block_size(data->wsize, NULL);
1305
1306 server->acregmin = data->acregmin * HZ;
1307 server->acregmax = data->acregmax * HZ;
1308 server->acdirmin = data->acdirmin * HZ;
1309 server->acdirmax = data->acdirmax * HZ;
1310
Chuck Leverf22d6d72008-03-14 14:10:22 -04001311 server->port = data->nfs_server.port;
1312
Trond Myklebust33170232007-12-20 16:03:59 -05001313 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001314
Trond Myklebust33170232007-12-20 16:03:59 -05001315error:
David Howells54ceac42006-08-22 20:06:13 -04001316 /* Done */
1317 dprintk("<-- nfs4_init_server() = %d\n", error);
1318 return error;
1319}
1320
1321/*
1322 * Create a version 4 volume record
1323 * - keyed on server and FSID
1324 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001325struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001326 struct nfs_fh *mntfh)
1327{
1328 struct nfs_fattr fattr;
1329 struct nfs_server *server;
1330 int error;
1331
1332 dprintk("--> nfs4_create_server()\n");
1333
1334 server = nfs_alloc_server();
1335 if (!server)
1336 return ERR_PTR(-ENOMEM);
1337
David Howells54ceac42006-08-22 20:06:13 -04001338 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001339 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001340 if (error < 0)
1341 goto error;
1342
1343 BUG_ON(!server->nfs_client);
1344 BUG_ON(!server->nfs_client->rpc_ops);
1345 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1346
Trond Myklebustfccba802009-07-21 16:48:07 -04001347 error = nfs4_init_session(server);
1348 if (error < 0)
1349 goto error;
Andy Adamson557134a2009-04-01 09:21:53 -04001350
David Howells54ceac42006-08-22 20:06:13 -04001351 /* Probe the root fh to retrieve its FSID */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001352 error = nfs4_path_walk(server, mntfh, data->nfs_server.export_path);
David Howells54ceac42006-08-22 20:06:13 -04001353 if (error < 0)
1354 goto error;
1355
David Howells6daabf12006-08-24 15:44:16 -04001356 dprintk("Server FSID: %llx:%llx\n",
1357 (unsigned long long) server->fsid.major,
1358 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001359 dprintk("Mount FH: %d\n", mntfh->size);
1360
Andy Adamson96b09e02009-04-01 09:22:33 -04001361 nfs4_session_set_rwsize(server);
1362
David Howells54ceac42006-08-22 20:06:13 -04001363 error = nfs_probe_fsinfo(server, mntfh, &fattr);
1364 if (error < 0)
1365 goto error;
1366
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001367 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1368 server->namelen = NFS4_MAXNAMLEN;
1369
David Howells54ceac42006-08-22 20:06:13 -04001370 spin_lock(&nfs_client_lock);
1371 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1372 list_add_tail(&server->master_link, &nfs_volume_list);
1373 spin_unlock(&nfs_client_lock);
1374
1375 server->mount_time = jiffies;
1376 dprintk("<-- nfs4_create_server() = %p\n", server);
1377 return server;
1378
1379error:
1380 nfs_free_server(server);
1381 dprintk("<-- nfs4_create_server() = error %d\n", error);
1382 return ERR_PTR(error);
1383}
1384
1385/*
1386 * Create an NFS4 referral server record
1387 */
1388struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001389 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001390{
1391 struct nfs_client *parent_client;
1392 struct nfs_server *server, *parent_server;
1393 struct nfs_fattr fattr;
1394 int error;
1395
1396 dprintk("--> nfs4_create_referral_server()\n");
1397
1398 server = nfs_alloc_server();
1399 if (!server)
1400 return ERR_PTR(-ENOMEM);
1401
1402 parent_server = NFS_SB(data->sb);
1403 parent_client = parent_server->nfs_client;
1404
Chuck Lever542fcc32008-12-23 15:21:36 -05001405 /* Initialise the client representation from the parent server */
1406 nfs_server_copy_userdata(server, parent_server);
Trond Myklebust62ab4602009-08-09 15:06:19 -04001407 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
Chuck Lever542fcc32008-12-23 15:21:36 -05001408
David Howells54ceac42006-08-22 20:06:13 -04001409 /* Get a client representation.
1410 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001411 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001412 data->addr,
1413 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001414 parent_client->cl_ipaddr,
1415 data->authflavor,
1416 parent_server->client->cl_xprt->prot,
Benny Halevy94a417f2009-04-01 09:21:49 -04001417 parent_server->client->cl_timeout,
1418 parent_client->cl_minorversion);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001419 if (error < 0)
1420 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001421
Trond Myklebust33170232007-12-20 16:03:59 -05001422 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001423 if (error < 0)
1424 goto error;
1425
1426 BUG_ON(!server->nfs_client);
1427 BUG_ON(!server->nfs_client->rpc_ops);
1428 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1429
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001430 /* Probe the root fh to retrieve its FSID and filehandle */
1431 error = nfs4_path_walk(server, mntfh, data->mnt_path);
1432 if (error < 0)
1433 goto error;
1434
David Howells54ceac42006-08-22 20:06:13 -04001435 /* probe the filesystem info for this server filesystem */
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001436 error = nfs_probe_fsinfo(server, mntfh, &fattr);
David Howells54ceac42006-08-22 20:06:13 -04001437 if (error < 0)
1438 goto error;
1439
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001440 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1441 server->namelen = NFS4_MAXNAMLEN;
1442
David Howells54ceac42006-08-22 20:06:13 -04001443 dprintk("Referral FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001444 (unsigned long long) server->fsid.major,
1445 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001446
1447 spin_lock(&nfs_client_lock);
1448 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1449 list_add_tail(&server->master_link, &nfs_volume_list);
1450 spin_unlock(&nfs_client_lock);
1451
1452 server->mount_time = jiffies;
1453
1454 dprintk("<-- nfs_create_referral_server() = %p\n", server);
1455 return server;
1456
1457error:
1458 nfs_free_server(server);
1459 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
1460 return ERR_PTR(error);
1461}
1462
1463#endif /* CONFIG_NFS_V4 */
1464
1465/*
1466 * Clone an NFS2, NFS3 or NFS4 server record
1467 */
1468struct nfs_server *nfs_clone_server(struct nfs_server *source,
1469 struct nfs_fh *fh,
1470 struct nfs_fattr *fattr)
1471{
1472 struct nfs_server *server;
1473 struct nfs_fattr fattr_fsinfo;
1474 int error;
1475
1476 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
David Howells6daabf12006-08-24 15:44:16 -04001477 (unsigned long long) fattr->fsid.major,
1478 (unsigned long long) fattr->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001479
1480 server = nfs_alloc_server();
1481 if (!server)
1482 return ERR_PTR(-ENOMEM);
1483
1484 /* Copy data from the source */
1485 server->nfs_client = source->nfs_client;
1486 atomic_inc(&server->nfs_client->cl_count);
1487 nfs_server_copy_userdata(server, source);
1488
1489 server->fsid = fattr->fsid;
1490
Trond Myklebust33170232007-12-20 16:03:59 -05001491 error = nfs_init_server_rpcclient(server,
1492 source->client->cl_timeout,
1493 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001494 if (error < 0)
1495 goto out_free_server;
1496 if (!IS_ERR(source->client_acl))
1497 nfs_init_server_aclclient(server);
1498
1499 /* probe the filesystem info for this server filesystem */
1500 error = nfs_probe_fsinfo(server, fh, &fattr_fsinfo);
1501 if (error < 0)
1502 goto out_free_server;
1503
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001504 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1505 server->namelen = NFS4_MAXNAMLEN;
1506
David Howells54ceac42006-08-22 20:06:13 -04001507 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001508 (unsigned long long) server->fsid.major,
1509 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001510
1511 error = nfs_start_lockd(server);
1512 if (error < 0)
1513 goto out_free_server;
1514
1515 spin_lock(&nfs_client_lock);
1516 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1517 list_add_tail(&server->master_link, &nfs_volume_list);
1518 spin_unlock(&nfs_client_lock);
1519
1520 server->mount_time = jiffies;
1521
1522 dprintk("<-- nfs_clone_server() = %p\n", server);
1523 return server;
1524
1525out_free_server:
1526 nfs_free_server(server);
1527 dprintk("<-- nfs_clone_server() = error %d\n", error);
1528 return ERR_PTR(error);
1529}
David Howells6aaca562006-08-22 20:06:13 -04001530
1531#ifdef CONFIG_PROC_FS
1532static struct proc_dir_entry *proc_fs_nfs;
1533
1534static int nfs_server_list_open(struct inode *inode, struct file *file);
1535static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1536static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1537static void nfs_server_list_stop(struct seq_file *p, void *v);
1538static int nfs_server_list_show(struct seq_file *m, void *v);
1539
James Morris88e9d342009-09-22 16:43:43 -07001540static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001541 .start = nfs_server_list_start,
1542 .next = nfs_server_list_next,
1543 .stop = nfs_server_list_stop,
1544 .show = nfs_server_list_show,
1545};
1546
Arjan van de Ven00977a52007-02-12 00:55:34 -08001547static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001548 .open = nfs_server_list_open,
1549 .read = seq_read,
1550 .llseek = seq_lseek,
1551 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001552 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001553};
1554
1555static int nfs_volume_list_open(struct inode *inode, struct file *file);
1556static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1557static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1558static void nfs_volume_list_stop(struct seq_file *p, void *v);
1559static int nfs_volume_list_show(struct seq_file *m, void *v);
1560
James Morris88e9d342009-09-22 16:43:43 -07001561static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001562 .start = nfs_volume_list_start,
1563 .next = nfs_volume_list_next,
1564 .stop = nfs_volume_list_stop,
1565 .show = nfs_volume_list_show,
1566};
1567
Arjan van de Ven00977a52007-02-12 00:55:34 -08001568static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001569 .open = nfs_volume_list_open,
1570 .read = seq_read,
1571 .llseek = seq_lseek,
1572 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001573 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001574};
1575
1576/*
1577 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1578 * we're dealing
1579 */
1580static int nfs_server_list_open(struct inode *inode, struct file *file)
1581{
1582 struct seq_file *m;
1583 int ret;
1584
1585 ret = seq_open(file, &nfs_server_list_ops);
1586 if (ret < 0)
1587 return ret;
1588
1589 m = file->private_data;
1590 m->private = PDE(inode)->data;
1591
1592 return 0;
1593}
1594
1595/*
1596 * set up the iterator to start reading from the server list and return the first item
1597 */
1598static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1599{
David Howells6aaca562006-08-22 20:06:13 -04001600 /* lock the list against modification */
1601 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001602 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001603}
1604
1605/*
1606 * move to next server
1607 */
1608static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1609{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001610 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001611}
1612
1613/*
1614 * clean up after reading from the transports list
1615 */
1616static void nfs_server_list_stop(struct seq_file *p, void *v)
1617{
1618 spin_unlock(&nfs_client_lock);
1619}
1620
1621/*
1622 * display a header line followed by a load of call lines
1623 */
1624static int nfs_server_list_show(struct seq_file *m, void *v)
1625{
1626 struct nfs_client *clp;
1627
1628 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001629 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001630 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1631 return 0;
1632 }
1633
1634 /* display one transport per line on subsequent lines */
1635 clp = list_entry(v, struct nfs_client, cl_share_link);
1636
Chuck Lever5d8515c2007-12-10 14:57:16 -05001637 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001638 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001639 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1640 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001641 atomic_read(&clp->cl_count),
1642 clp->cl_hostname);
1643
1644 return 0;
1645}
1646
1647/*
1648 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1649 */
1650static int nfs_volume_list_open(struct inode *inode, struct file *file)
1651{
1652 struct seq_file *m;
1653 int ret;
1654
1655 ret = seq_open(file, &nfs_volume_list_ops);
1656 if (ret < 0)
1657 return ret;
1658
1659 m = file->private_data;
1660 m->private = PDE(inode)->data;
1661
1662 return 0;
1663}
1664
1665/*
1666 * set up the iterator to start reading from the volume list and return the first item
1667 */
1668static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1669{
David Howells6aaca562006-08-22 20:06:13 -04001670 /* lock the list against modification */
1671 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001672 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001673}
1674
1675/*
1676 * move to next volume
1677 */
1678static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1679{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001680 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001681}
1682
1683/*
1684 * clean up after reading from the transports list
1685 */
1686static void nfs_volume_list_stop(struct seq_file *p, void *v)
1687{
1688 spin_unlock(&nfs_client_lock);
1689}
1690
1691/*
1692 * display a header line followed by a load of call lines
1693 */
1694static int nfs_volume_list_show(struct seq_file *m, void *v)
1695{
1696 struct nfs_server *server;
1697 struct nfs_client *clp;
1698 char dev[8], fsid[17];
1699
1700 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001701 if (v == &nfs_volume_list) {
David Howells5d1acff2009-04-03 16:42:47 +01001702 seq_puts(m, "NV SERVER PORT DEV FSID FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001703 return 0;
1704 }
1705 /* display one transport per line on subsequent lines */
1706 server = list_entry(v, struct nfs_server, master_link);
1707 clp = server->nfs_client;
1708
1709 snprintf(dev, 8, "%u:%u",
1710 MAJOR(server->s_dev), MINOR(server->s_dev));
1711
1712 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001713 (unsigned long long) server->fsid.major,
1714 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001715
David Howells5d1acff2009-04-03 16:42:47 +01001716 seq_printf(m, "v%u %s %s %-7s %-17s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001717 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001718 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1719 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001720 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001721 fsid,
1722 nfs_server_fscache_state(server));
David Howells6aaca562006-08-22 20:06:13 -04001723
1724 return 0;
1725}
1726
1727/*
1728 * initialise the /proc/fs/nfsfs/ directory
1729 */
1730int __init nfs_fs_proc_init(void)
1731{
1732 struct proc_dir_entry *p;
1733
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001734 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001735 if (!proc_fs_nfs)
1736 goto error_0;
1737
David Howells6aaca562006-08-22 20:06:13 -04001738 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001739 p = proc_create("servers", S_IFREG|S_IRUGO,
1740 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001741 if (!p)
1742 goto error_1;
1743
David Howells6aaca562006-08-22 20:06:13 -04001744 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001745 p = proc_create("volumes", S_IFREG|S_IRUGO,
1746 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001747 if (!p)
1748 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001749 return 0;
1750
1751error_2:
1752 remove_proc_entry("servers", proc_fs_nfs);
1753error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001754 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001755error_0:
1756 return -ENOMEM;
1757}
1758
1759/*
1760 * clean up the /proc/fs/nfsfs/ directory
1761 */
1762void nfs_fs_proc_exit(void)
1763{
1764 remove_proc_entry("volumes", proc_fs_nfs);
1765 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001766 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001767}
1768
1769#endif /* CONFIG_PROC_FS */