blob: d11cdaafb39a612aea68d49156a6fbffae375cfb [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>
40
41#include <asm/system.h>
42
43#include "nfs4_fs.h"
44#include "callback.h"
45#include "delegation.h"
46#include "iostat.h"
47#include "internal.h"
48
49#define NFSDBG_FACILITY NFSDBG_CLIENT
50
51static DEFINE_SPINLOCK(nfs_client_lock);
52static LIST_HEAD(nfs_client_list);
David Howells54ceac42006-08-22 20:06:13 -040053static LIST_HEAD(nfs_volume_list);
David Howells24c8dbb2006-08-22 20:06:10 -040054static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq);
55
56/*
David Howells5006a762006-08-22 20:06:12 -040057 * RPC cruft for NFS
58 */
59static struct rpc_version *nfs_version[5] = {
60 [2] = &nfs_version2,
61#ifdef CONFIG_NFS_V3
62 [3] = &nfs_version3,
63#endif
64#ifdef CONFIG_NFS_V4
65 [4] = &nfs_version4,
66#endif
67};
68
69struct rpc_program nfs_program = {
70 .name = "nfs",
71 .number = NFS_PROGRAM,
72 .nrvers = ARRAY_SIZE(nfs_version),
73 .version = nfs_version,
74 .stats = &nfs_rpcstat,
75 .pipe_dir_name = "/nfs",
76};
77
78struct rpc_stat nfs_rpcstat = {
79 .program = &nfs_program
80};
81
82
83#ifdef CONFIG_NFS_V3_ACL
84static struct rpc_stat nfsacl_rpcstat = { &nfsacl_program };
85static struct rpc_version * nfsacl_version[] = {
86 [3] = &nfsacl_version3,
87};
88
89struct rpc_program nfsacl_program = {
90 .name = "nfsacl",
91 .number = NFS_ACL_PROGRAM,
92 .nrvers = ARRAY_SIZE(nfsacl_version),
93 .version = nfsacl_version,
94 .stats = &nfsacl_rpcstat,
95};
96#endif /* CONFIG_NFS_V3_ACL */
97
Trond Myklebust3a498022007-12-14 14:56:04 -050098struct nfs_client_initdata {
99 const char *hostname;
Chuck Leverd7422c42007-12-10 14:58:51 -0500100 const struct sockaddr *addr;
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500101 size_t addrlen;
Trond Myklebust40c553192007-12-14 14:56:07 -0500102 const struct nfs_rpc_ops *rpc_ops;
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500103 int proto;
Trond Myklebust3a498022007-12-14 14:56:04 -0500104};
105
David Howells5006a762006-08-22 20:06:12 -0400106/*
David Howells24c8dbb2006-08-22 20:06:10 -0400107 * Allocate a shared client record
108 *
109 * Since these are allocated/deallocated very rarely, we don't
110 * bother putting them in a slab cache...
111 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500112static struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400113{
114 struct nfs_client *clp;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400115 struct rpc_cred *cred;
David Howells24c8dbb2006-08-22 20:06:10 -0400116
117 if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL)
118 goto error_0;
119
Trond Myklebust40c553192007-12-14 14:56:07 -0500120 clp->rpc_ops = cl_init->rpc_ops;
121
122 if (cl_init->rpc_ops->version == 4) {
David Howells24c8dbb2006-08-22 20:06:10 -0400123 if (nfs_callback_up() < 0)
124 goto error_2;
125 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
126 }
127
128 atomic_set(&clp->cl_count, 1);
129 clp->cl_cons_state = NFS_CS_INITING;
130
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500131 memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen);
132 clp->cl_addrlen = cl_init->addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -0400133
Trond Myklebust3a498022007-12-14 14:56:04 -0500134 if (cl_init->hostname) {
135 clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL);
David Howells24c8dbb2006-08-22 20:06:10 -0400136 if (!clp->cl_hostname)
137 goto error_3;
138 }
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
146 init_rwsem(&clp->cl_sem);
147 INIT_LIST_HEAD(&clp->cl_delegations);
David Howells24c8dbb2006-08-22 20:06:10 -0400148 spin_lock_init(&clp->cl_lock);
David Howells65f27f32006-11-22 14:55:48 +0000149 INIT_DELAYED_WORK(&clp->cl_renewd, nfs4_renew_state);
David Howells24c8dbb2006-08-22 20:06:10 -0400150 rpc_init_wait_queue(&clp->cl_rpcwaitq, "NFS client");
151 clp->cl_boot_time = CURRENT_TIME;
152 clp->cl_state = 1 << NFS4CLNT_LEASE_EXPIRED;
153#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
158 return clp;
159
160error_3:
Trond Myklebust9c5bf382006-08-22 20:06:14 -0400161 if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
162 nfs_callback_down();
David Howells24c8dbb2006-08-22 20:06:10 -0400163error_2:
David Howells24c8dbb2006-08-22 20:06:10 -0400164 kfree(clp);
165error_0:
166 return NULL;
167}
168
Trond Myklebust5dd31772006-08-24 01:03:05 -0400169static void nfs4_shutdown_client(struct nfs_client *clp)
170{
171#ifdef CONFIG_NFS_V4
172 if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state))
173 nfs4_kill_renewd(clp);
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400174 BUG_ON(!RB_EMPTY_ROOT(&clp->cl_state_owners));
Trond Myklebust5dd31772006-08-24 01:03:05 -0400175 if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state))
176 nfs_idmap_delete(clp);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500177
178 rpc_destroy_wait_queue(&clp->cl_rpcwaitq);
Trond Myklebust5dd31772006-08-24 01:03:05 -0400179#endif
180}
181
David Howells24c8dbb2006-08-22 20:06:10 -0400182/*
183 * Destroy a shared client record
184 */
185static void nfs_free_client(struct nfs_client *clp)
186{
Trond Myklebust40c553192007-12-14 14:56:07 -0500187 dprintk("--> nfs_free_client(%u)\n", clp->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400188
Trond Myklebust5dd31772006-08-24 01:03:05 -0400189 nfs4_shutdown_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400190
191 /* -EIO all pending I/O */
192 if (!IS_ERR(clp->cl_rpcclient))
193 rpc_shutdown_client(clp->cl_rpcclient);
194
195 if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
196 nfs_callback_down();
197
Trond Myklebust7c67db32008-04-07 20:50:11 -0400198 if (clp->cl_machine_cred != NULL)
199 put_rpccred(clp->cl_machine_cred);
200
David Howells24c8dbb2006-08-22 20:06:10 -0400201 kfree(clp->cl_hostname);
202 kfree(clp);
203
204 dprintk("<-- nfs_free_client()\n");
205}
206
207/*
208 * Release a reference to a shared client record
209 */
210void nfs_put_client(struct nfs_client *clp)
211{
David Howells27ba8512006-07-30 14:40:56 -0400212 if (!clp)
213 return;
214
David Howells24c8dbb2006-08-22 20:06:10 -0400215 dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count));
216
217 if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) {
218 list_del(&clp->cl_share_link);
219 spin_unlock(&nfs_client_lock);
220
221 BUG_ON(!list_empty(&clp->cl_superblocks));
222
223 nfs_free_client(clp);
224 }
225}
226
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500227static int nfs_sockaddr_match_ipaddr4(const struct sockaddr_in *sa1,
228 const struct sockaddr_in *sa2)
229{
230 return sa1->sin_addr.s_addr == sa2->sin_addr.s_addr;
231}
232
233static int nfs_sockaddr_match_ipaddr6(const struct sockaddr_in6 *sa1,
234 const struct sockaddr_in6 *sa2)
235{
236 return ipv6_addr_equal(&sa1->sin6_addr, &sa2->sin6_addr);
237}
238
239static int nfs_sockaddr_match_ipaddr(const struct sockaddr *sa1,
240 const struct sockaddr *sa2)
241{
242 switch (sa1->sa_family) {
243 case AF_INET:
244 return nfs_sockaddr_match_ipaddr4((const struct sockaddr_in *)sa1,
245 (const struct sockaddr_in *)sa2);
246 case AF_INET6:
247 return nfs_sockaddr_match_ipaddr6((const struct sockaddr_in6 *)sa1,
248 (const struct sockaddr_in6 *)sa2);
249 }
250 BUG();
251}
252
David Howells24c8dbb2006-08-22 20:06:10 -0400253/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500254 * Find a client by IP address and protocol version
255 * - returns NULL if no such client
David Howells24c8dbb2006-08-22 20:06:10 -0400256 */
Chuck Leverff052642007-12-10 14:58:44 -0500257struct nfs_client *nfs_find_client(const struct sockaddr *addr, u32 nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500258{
259 struct nfs_client *clp;
260
261 spin_lock(&nfs_client_lock);
262 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500263 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
264
Trond Myklebustc81468a2007-12-14 14:56:05 -0500265 /* Don't match clients that failed to initialise properly */
266 if (clp->cl_cons_state != NFS_CS_READY)
267 continue;
268
269 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500270 if (clp->rpc_ops->version != nfsversion)
Trond Myklebustc81468a2007-12-14 14:56:05 -0500271 continue;
272
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500273 if (addr->sa_family != clap->sa_family)
274 continue;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500275 /* Match only the IP address, not the port number */
Trond Myklebust3b0d3f92008-01-03 13:28:58 -0500276 if (!nfs_sockaddr_match_ipaddr(addr, clap))
Trond Myklebustc81468a2007-12-14 14:56:05 -0500277 continue;
278
279 atomic_inc(&clp->cl_count);
280 spin_unlock(&nfs_client_lock);
281 return clp;
282 }
283 spin_unlock(&nfs_client_lock);
284 return NULL;
285}
286
287/*
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500288 * Find a client by IP address and protocol version
289 * - returns NULL if no such client
290 */
291struct nfs_client *nfs_find_client_next(struct nfs_client *clp)
292{
293 struct sockaddr *sap = (struct sockaddr *)&clp->cl_addr;
294 u32 nfsvers = clp->rpc_ops->version;
295
296 spin_lock(&nfs_client_lock);
297 list_for_each_entry_continue(clp, &nfs_client_list, cl_share_link) {
298 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
299
300 /* Don't match clients that failed to initialise properly */
301 if (clp->cl_cons_state != NFS_CS_READY)
302 continue;
303
304 /* Different NFS versions cannot share the same nfs_client */
305 if (clp->rpc_ops->version != nfsvers)
306 continue;
307
308 if (sap->sa_family != clap->sa_family)
309 continue;
310 /* Match only the IP address, not the port number */
311 if (!nfs_sockaddr_match_ipaddr(sap, clap))
312 continue;
313
314 atomic_inc(&clp->cl_count);
315 spin_unlock(&nfs_client_lock);
316 return clp;
317 }
318 spin_unlock(&nfs_client_lock);
319 return NULL;
320}
321
322/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500323 * Find an nfs_client on the list that matches the initialisation data
324 * that is supplied.
325 */
326static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400327{
328 struct nfs_client *clp;
329
330 list_for_each_entry(clp, &nfs_client_list, cl_share_link) {
Trond Myklebust13bbc062006-10-19 23:28:40 -0700331 /* Don't match clients that failed to initialise properly */
332 if (clp->cl_cons_state < 0)
333 continue;
334
David Howells24c8dbb2006-08-22 20:06:10 -0400335 /* Different NFS versions cannot share the same nfs_client */
Trond Myklebust40c553192007-12-14 14:56:07 -0500336 if (clp->rpc_ops != data->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400337 continue;
338
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500339 if (clp->cl_proto != data->proto)
340 continue;
341
Trond Myklebustc81468a2007-12-14 14:56:05 -0500342 /* Match the full socket address */
343 if (memcmp(&clp->cl_addr, data->addr, sizeof(clp->cl_addr)) != 0)
David Howells24c8dbb2006-08-22 20:06:10 -0400344 continue;
345
Trond Myklebustc81468a2007-12-14 14:56:05 -0500346 atomic_inc(&clp->cl_count);
347 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400348 }
David Howells24c8dbb2006-08-22 20:06:10 -0400349 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400350}
351
352/*
353 * Look up a client by IP address and protocol version
354 * - creates a new record if one doesn't yet exist
355 */
Trond Myklebust3a498022007-12-14 14:56:04 -0500356static struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400357{
358 struct nfs_client *clp, *new = NULL;
359 int error;
360
Chuck Leverd7422c42007-12-10 14:58:51 -0500361 dprintk("--> nfs_get_client(%s,v%u)\n",
362 cl_init->hostname ?: "", cl_init->rpc_ops->version);
David Howells24c8dbb2006-08-22 20:06:10 -0400363
364 /* see if the client already exists */
365 do {
366 spin_lock(&nfs_client_lock);
367
Trond Myklebustc81468a2007-12-14 14:56:05 -0500368 clp = nfs_match_client(cl_init);
David Howells24c8dbb2006-08-22 20:06:10 -0400369 if (clp)
370 goto found_client;
371 if (new)
372 goto install_client;
373
374 spin_unlock(&nfs_client_lock);
375
Trond Myklebust3a498022007-12-14 14:56:04 -0500376 new = nfs_alloc_client(cl_init);
David Howells24c8dbb2006-08-22 20:06:10 -0400377 } while (new);
378
379 return ERR_PTR(-ENOMEM);
380
381 /* install a new client and return with it unready */
382install_client:
383 clp = new;
384 list_add(&clp->cl_share_link, &nfs_client_list);
385 spin_unlock(&nfs_client_lock);
386 dprintk("--> nfs_get_client() = %p [new]\n", clp);
387 return clp;
388
389 /* found an existing client
390 * - make sure it's ready before returning
391 */
392found_client:
393 spin_unlock(&nfs_client_lock);
394
395 if (new)
396 nfs_free_client(new);
397
Matthew Wilcox150030b2007-12-06 16:24:39 -0500398 error = wait_event_killable(nfs_client_active_wq,
Trond Myklebust0bae89e2006-10-08 14:33:24 -0400399 clp->cl_cons_state != NFS_CS_INITING);
400 if (error < 0) {
401 nfs_put_client(clp);
402 return ERR_PTR(-ERESTARTSYS);
David Howells24c8dbb2006-08-22 20:06:10 -0400403 }
404
405 if (clp->cl_cons_state < NFS_CS_READY) {
406 error = clp->cl_cons_state;
407 nfs_put_client(clp);
408 return ERR_PTR(error);
409 }
410
David Howells54ceac42006-08-22 20:06:13 -0400411 BUG_ON(clp->cl_cons_state != NFS_CS_READY);
412
David Howells24c8dbb2006-08-22 20:06:10 -0400413 dprintk("--> nfs_get_client() = %p [share]\n", clp);
414 return clp;
415}
416
417/*
418 * Mark a server as ready or failed
419 */
David Howells54ceac42006-08-22 20:06:13 -0400420static void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400421{
422 clp->cl_cons_state = state;
423 wake_up_all(&nfs_client_active_wq);
424}
David Howells5006a762006-08-22 20:06:12 -0400425
426/*
427 * Initialise the timeout values for a connection
428 */
429static void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
430 unsigned int timeo, unsigned int retrans)
431{
432 to->to_initval = timeo * HZ / 10;
433 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400434
435 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400436 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400437 case XPRT_TRANSPORT_RDMA:
Trond Myklebust259875e2008-07-02 14:43:47 -0400438 if (to->to_retries == 0)
439 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500440 if (to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400441 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400442 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
443 to->to_initval = NFS_MAX_TCP_TIMEOUT;
444 to->to_increment = to->to_initval;
445 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500446 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
447 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
448 if (to->to_maxval < to->to_initval)
449 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400450 to->to_exponential = 0;
451 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400452 case XPRT_TRANSPORT_UDP:
Trond Myklebust259875e2008-07-02 14:43:47 -0400453 if (to->to_retries == 0)
454 to->to_retries = NFS_DEF_UDP_RETRANS;
David Howells5006a762006-08-22 20:06:12 -0400455 if (!to->to_initval)
Trond Myklebust259875e2008-07-02 14:43:47 -0400456 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400457 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
458 to->to_initval = NFS_MAX_UDP_TIMEOUT;
459 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
460 to->to_exponential = 1;
461 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400462 default:
463 BUG();
David Howells5006a762006-08-22 20:06:12 -0400464 }
465}
466
467/*
468 * Create an RPC client handle
469 */
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500470static int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500471 const struct rpc_timeout *timeparms,
472 rpc_authflavor_t flavor,
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500473 int discrtry, int noresvport)
David Howells5006a762006-08-22 20:06:12 -0400474{
David Howells5006a762006-08-22 20:06:12 -0400475 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400476 struct rpc_create_args args = {
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500477 .protocol = clp->cl_proto,
Chuck Lever41877d22006-08-22 20:06:20 -0400478 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500479 .addrsize = clp->cl_addrlen,
Trond Myklebust33170232007-12-20 16:03:59 -0500480 .timeout = timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400481 .servername = clp->cl_hostname,
482 .program = &nfs_program,
483 .version = clp->rpc_ops->version,
484 .authflavor = flavor,
485 };
David Howells5006a762006-08-22 20:06:12 -0400486
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500487 if (discrtry)
488 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
489 if (noresvport)
490 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
491
David Howells5006a762006-08-22 20:06:12 -0400492 if (!IS_ERR(clp->cl_rpcclient))
493 return 0;
494
Chuck Lever41877d22006-08-22 20:06:20 -0400495 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400496 if (IS_ERR(clnt)) {
497 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700498 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400499 return PTR_ERR(clnt);
500 }
501
David Howells5006a762006-08-22 20:06:12 -0400502 clp->cl_rpcclient = clnt;
503 return 0;
504}
David Howells54ceac42006-08-22 20:06:13 -0400505
506/*
507 * Version 2 or 3 client destruction
508 */
509static void nfs_destroy_server(struct nfs_server *server)
510{
David Howells54ceac42006-08-22 20:06:13 -0400511 if (!(server->flags & NFS_MOUNT_NONLM))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500512 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400513}
514
515/*
516 * Version 2 or 3 lockd setup
517 */
518static int nfs_start_lockd(struct nfs_server *server)
519{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500520 struct nlm_host *host;
521 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500522 struct nlmclnt_initdata nlm_init = {
523 .hostname = clp->cl_hostname,
524 .address = (struct sockaddr *)&clp->cl_addr,
525 .addrlen = clp->cl_addrlen,
526 .protocol = server->flags & NFS_MOUNT_TCP ?
527 IPPROTO_TCP : IPPROTO_UDP,
528 .nfs_version = clp->rpc_ops->version,
529 };
David Howells54ceac42006-08-22 20:06:13 -0400530
Chuck Lever883bb162008-01-15 16:04:20 -0500531 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500532 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400533 if (server->flags & NFS_MOUNT_NONLM)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500534 return 0;
535
Chuck Lever883bb162008-01-15 16:04:20 -0500536 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500537 if (IS_ERR(host))
538 return PTR_ERR(host);
539
540 server->nlm_host = host;
541 server->destroy = nfs_destroy_server;
542 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400543}
544
545/*
546 * Initialise an NFSv3 ACL client connection
547 */
548#ifdef CONFIG_NFS_V3_ACL
549static void nfs_init_server_aclclient(struct nfs_server *server)
550{
Trond Myklebust40c553192007-12-14 14:56:07 -0500551 if (server->nfs_client->rpc_ops->version != 3)
David Howells54ceac42006-08-22 20:06:13 -0400552 goto out_noacl;
553 if (server->flags & NFS_MOUNT_NOACL)
554 goto out_noacl;
555
556 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
557 if (IS_ERR(server->client_acl))
558 goto out_noacl;
559
560 /* No errors! Assume that Sun nfsacls are supported */
561 server->caps |= NFS_CAP_ACLS;
562 return;
563
564out_noacl:
565 server->caps &= ~NFS_CAP_ACLS;
566}
567#else
568static inline void nfs_init_server_aclclient(struct nfs_server *server)
569{
570 server->flags &= ~NFS_MOUNT_NOACL;
571 server->caps &= ~NFS_CAP_ACLS;
572}
573#endif
574
575/*
576 * Create a general RPC client
577 */
Trond Myklebust33170232007-12-20 16:03:59 -0500578static int nfs_init_server_rpcclient(struct nfs_server *server,
579 const struct rpc_timeout *timeo,
580 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400581{
582 struct nfs_client *clp = server->nfs_client;
583
584 server->client = rpc_clone_client(clp->cl_rpcclient);
585 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700586 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400587 return PTR_ERR(server->client);
588 }
589
Trond Myklebust33170232007-12-20 16:03:59 -0500590 memcpy(&server->client->cl_timeout_default,
591 timeo,
592 sizeof(server->client->cl_timeout_default));
593 server->client->cl_timeout = &server->client->cl_timeout_default;
594
David Howells54ceac42006-08-22 20:06:13 -0400595 if (pseudoflavour != clp->cl_rpcclient->cl_auth->au_flavor) {
596 struct rpc_auth *auth;
597
598 auth = rpcauth_create(pseudoflavour, server->client);
599 if (IS_ERR(auth)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700600 dprintk("%s: couldn't create credcache!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400601 return PTR_ERR(auth);
602 }
603 }
604 server->client->cl_softrtry = 0;
605 if (server->flags & NFS_MOUNT_SOFT)
606 server->client->cl_softrtry = 1;
607
David Howells54ceac42006-08-22 20:06:13 -0400608 return 0;
609}
610
611/*
612 * Initialise an NFS2 or NFS3 client
613 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400614static int nfs_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500615 const struct rpc_timeout *timeparms,
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400616 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400617{
David Howells54ceac42006-08-22 20:06:13 -0400618 int error;
619
620 if (clp->cl_cons_state == NFS_CS_READY) {
621 /* the client is already initialised */
622 dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp);
623 return 0;
624 }
625
David Howells54ceac42006-08-22 20:06:13 -0400626 /*
627 * Create a client RPC handle for doing FSSTAT with UNIX auth only
628 * - RFC 2623, sec 2.3.2
629 */
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500630 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX, 0, 0);
David Howells54ceac42006-08-22 20:06:13 -0400631 if (error < 0)
632 goto error;
633 nfs_mark_client_ready(clp, NFS_CS_READY);
634 return 0;
635
636error:
637 nfs_mark_client_ready(clp, error);
638 dprintk("<-- nfs_init_client() = xerror %d\n", error);
639 return error;
640}
641
642/*
643 * Create a version 2 or 3 client
644 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400645static int nfs_init_server(struct nfs_server *server,
646 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -0400647{
Trond Myklebust3a498022007-12-14 14:56:04 -0500648 struct nfs_client_initdata cl_init = {
649 .hostname = data->nfs_server.hostname,
Chuck Leverd7422c42007-12-10 14:58:51 -0500650 .addr = (const struct sockaddr *)&data->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -0500651 .addrlen = data->nfs_server.addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -0500652 .rpc_ops = &nfs_v2_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500653 .proto = data->nfs_server.protocol,
Trond Myklebust3a498022007-12-14 14:56:04 -0500654 };
Trond Myklebust33170232007-12-20 16:03:59 -0500655 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -0400656 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500657 int error;
David Howells54ceac42006-08-22 20:06:13 -0400658
659 dprintk("--> nfs_init_server()\n");
660
661#ifdef CONFIG_NFS_V3
662 if (data->flags & NFS_MOUNT_VER3)
Trond Myklebust40c553192007-12-14 14:56:07 -0500663 cl_init.rpc_ops = &nfs_v3_clientops;
David Howells54ceac42006-08-22 20:06:13 -0400664#endif
665
666 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -0500667 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -0400668 if (IS_ERR(clp)) {
669 dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp));
670 return PTR_ERR(clp);
671 }
672
Trond Myklebust33170232007-12-20 16:03:59 -0500673 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
674 data->timeo, data->retrans);
675 error = nfs_init_client(clp, &timeparms, data);
David Howells54ceac42006-08-22 20:06:13 -0400676 if (error < 0)
677 goto error;
678
679 server->nfs_client = clp;
680
681 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -0400682 server->flags = data->flags;
David Howells54ceac42006-08-22 20:06:13 -0400683
684 if (data->rsize)
685 server->rsize = nfs_block_size(data->rsize, NULL);
686 if (data->wsize)
687 server->wsize = nfs_block_size(data->wsize, NULL);
688
689 server->acregmin = data->acregmin * HZ;
690 server->acregmax = data->acregmax * HZ;
691 server->acdirmin = data->acdirmin * HZ;
692 server->acdirmax = data->acdirmax * HZ;
693
694 /* Start lockd here, before we might error out */
695 error = nfs_start_lockd(server);
696 if (error < 0)
697 goto error;
698
Chuck Leverf22d6d72008-03-14 14:10:22 -0400699 server->port = data->nfs_server.port;
700
Trond Myklebust33170232007-12-20 16:03:59 -0500701 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -0400702 if (error < 0)
703 goto error;
704
Chuck Lever3f8400d2008-03-14 14:10:30 -0400705 /* Preserve the values of mount_server-related mount options */
706 if (data->mount_server.addrlen) {
707 memcpy(&server->mountd_address, &data->mount_server.address,
708 data->mount_server.addrlen);
709 server->mountd_addrlen = data->mount_server.addrlen;
710 }
711 server->mountd_version = data->mount_server.version;
712 server->mountd_port = data->mount_server.port;
713 server->mountd_protocol = data->mount_server.protocol;
714
David Howells54ceac42006-08-22 20:06:13 -0400715 server->namelen = data->namlen;
716 /* Create a client RPC handle for the NFSv3 ACL management interface */
717 nfs_init_server_aclclient(server);
David Howells54ceac42006-08-22 20:06:13 -0400718 dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp);
719 return 0;
720
721error:
722 server->nfs_client = NULL;
723 nfs_put_client(clp);
724 dprintk("<-- nfs_init_server() = xerror %d\n", error);
725 return error;
726}
727
728/*
729 * Load up the server record from information gained in an fsinfo record
730 */
731static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *fsinfo)
732{
733 unsigned long max_rpc_payload;
734
735 /* Work out a lot of parameters */
736 if (server->rsize == 0)
737 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
738 if (server->wsize == 0)
739 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
740
741 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
742 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
743 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
744 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
745
746 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
747 if (server->rsize > max_rpc_payload)
748 server->rsize = max_rpc_payload;
749 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
750 server->rsize = NFS_MAX_FILE_IO_SIZE;
751 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700752
David Howells54ceac42006-08-22 20:06:13 -0400753 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
754
755 if (server->wsize > max_rpc_payload)
756 server->wsize = max_rpc_payload;
757 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
758 server->wsize = NFS_MAX_FILE_IO_SIZE;
759 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
760 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
761
762 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
763 if (server->dtsize > PAGE_CACHE_SIZE)
764 server->dtsize = PAGE_CACHE_SIZE;
765 if (server->dtsize > server->rsize)
766 server->dtsize = server->rsize;
767
768 if (server->flags & NFS_MOUNT_NOAC) {
769 server->acregmin = server->acregmax = 0;
770 server->acdirmin = server->acdirmax = 0;
771 }
772
773 server->maxfilesize = fsinfo->maxfilesize;
774
775 /* We're airborne Set socket buffersize */
776 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
777}
778
779/*
780 * Probe filesystem information, including the FSID on v2/v3
781 */
782static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
783{
784 struct nfs_fsinfo fsinfo;
785 struct nfs_client *clp = server->nfs_client;
786 int error;
787
788 dprintk("--> nfs_probe_fsinfo()\n");
789
790 if (clp->rpc_ops->set_capabilities != NULL) {
791 error = clp->rpc_ops->set_capabilities(server, mntfh);
792 if (error < 0)
793 goto out_error;
794 }
795
796 fsinfo.fattr = fattr;
797 nfs_fattr_init(fattr);
798 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
799 if (error < 0)
800 goto out_error;
801
802 nfs_server_set_fsinfo(server, &fsinfo);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700803 error = bdi_init(&server->backing_dev_info);
804 if (error)
805 goto out_error;
806
David Howells54ceac42006-08-22 20:06:13 -0400807
808 /* Get some general file system info */
809 if (server->namelen == 0) {
810 struct nfs_pathconf pathinfo;
811
812 pathinfo.fattr = fattr;
813 nfs_fattr_init(fattr);
814
815 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
816 server->namelen = pathinfo.max_namelen;
817 }
818
819 dprintk("<-- nfs_probe_fsinfo() = 0\n");
820 return 0;
821
822out_error:
823 dprintk("nfs_probe_fsinfo: error = %d\n", -error);
824 return error;
825}
826
827/*
828 * Copy useful information when duplicating a server record
829 */
830static void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
831{
832 target->flags = source->flags;
833 target->acregmin = source->acregmin;
834 target->acregmax = source->acregmax;
835 target->acdirmin = source->acdirmin;
836 target->acdirmax = source->acdirmax;
837 target->caps = source->caps;
838}
839
840/*
841 * Allocate and initialise a server record
842 */
843static struct nfs_server *nfs_alloc_server(void)
844{
845 struct nfs_server *server;
846
847 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
848 if (!server)
849 return NULL;
850
851 server->client = server->client_acl = ERR_PTR(-EINVAL);
852
853 /* Zero out the NFS state stuff */
854 INIT_LIST_HEAD(&server->client_link);
855 INIT_LIST_HEAD(&server->master_link);
856
Steve Dicksonef818a22007-11-08 04:05:04 -0500857 atomic_set(&server->active, 0);
858
David Howells54ceac42006-08-22 20:06:13 -0400859 server->io_stats = nfs_alloc_iostats();
860 if (!server->io_stats) {
861 kfree(server);
862 return NULL;
863 }
864
865 return server;
866}
867
868/*
869 * Free up a server record
870 */
871void nfs_free_server(struct nfs_server *server)
872{
873 dprintk("--> nfs_free_server()\n");
874
875 spin_lock(&nfs_client_lock);
876 list_del(&server->client_link);
877 list_del(&server->master_link);
878 spin_unlock(&nfs_client_lock);
879
880 if (server->destroy != NULL)
881 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -0500882
883 if (!IS_ERR(server->client_acl))
884 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -0400885 if (!IS_ERR(server->client))
886 rpc_shutdown_client(server->client);
887
888 nfs_put_client(server->nfs_client);
889
890 nfs_free_iostats(server->io_stats);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700891 bdi_destroy(&server->backing_dev_info);
David Howells54ceac42006-08-22 20:06:13 -0400892 kfree(server);
893 nfs_release_automount_timer();
894 dprintk("<-- nfs_free_server()\n");
895}
896
897/*
898 * Create a version 2 or 3 volume record
899 * - keyed on server and FSID
900 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400901struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -0400902 struct nfs_fh *mntfh)
903{
904 struct nfs_server *server;
905 struct nfs_fattr fattr;
906 int error;
907
908 server = nfs_alloc_server();
909 if (!server)
910 return ERR_PTR(-ENOMEM);
911
912 /* Get a client representation */
913 error = nfs_init_server(server, data);
914 if (error < 0)
915 goto error;
916
917 BUG_ON(!server->nfs_client);
918 BUG_ON(!server->nfs_client->rpc_ops);
919 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
920
921 /* Probe the root fh to retrieve its FSID */
922 error = nfs_probe_fsinfo(server, mntfh, &fattr);
923 if (error < 0)
924 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -0400925 if (server->nfs_client->rpc_ops->version == 3) {
926 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
927 server->namelen = NFS3_MAXNAMLEN;
928 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
929 server->caps |= NFS_CAP_READDIRPLUS;
930 } else {
931 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
932 server->namelen = NFS2_MAXNAMLEN;
933 }
934
David Howells54ceac42006-08-22 20:06:13 -0400935 if (!(fattr.valid & NFS_ATTR_FATTR)) {
936 error = server->nfs_client->rpc_ops->getattr(server, mntfh, &fattr);
937 if (error < 0) {
938 dprintk("nfs_create_server: getattr error = %d\n", -error);
939 goto error;
940 }
941 }
942 memcpy(&server->fsid, &fattr.fsid, sizeof(server->fsid));
943
David Howells6daabf12006-08-24 15:44:16 -0400944 dprintk("Server FSID: %llx:%llx\n",
945 (unsigned long long) server->fsid.major,
946 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -0400947
948 BUG_ON(!server->nfs_client);
949 BUG_ON(!server->nfs_client->rpc_ops);
950 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
951
952 spin_lock(&nfs_client_lock);
953 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
954 list_add_tail(&server->master_link, &nfs_volume_list);
955 spin_unlock(&nfs_client_lock);
956
957 server->mount_time = jiffies;
958 return server;
959
960error:
961 nfs_free_server(server);
962 return ERR_PTR(error);
963}
964
965#ifdef CONFIG_NFS_V4
966/*
967 * Initialise an NFS4 client record
968 */
969static int nfs4_init_client(struct nfs_client *clp,
Trond Myklebust33170232007-12-20 16:03:59 -0500970 const struct rpc_timeout *timeparms,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -0700971 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -0400972 rpc_authflavor_t authflavour)
973{
974 int error;
975
976 if (clp->cl_cons_state == NFS_CS_READY) {
977 /* the client is initialised already */
978 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
979 return 0;
980 }
981
982 /* Check NFS protocol revision and initialize RPC op vector */
983 clp->rpc_ops = &nfs_v4_clientops;
984
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500985 error = nfs_create_rpc_client(clp, timeparms, authflavour,
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500986 1, 0);
David Howells54ceac42006-08-22 20:06:13 -0400987 if (error < 0)
988 goto error;
J. Bruce Fields7d9ac062006-10-19 23:28:39 -0700989 memcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
David Howells54ceac42006-08-22 20:06:13 -0400990
991 error = nfs_idmap_new(clp);
992 if (error < 0) {
993 dprintk("%s: failed to create idmapper. Error = %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700994 __func__, error);
David Howells54ceac42006-08-22 20:06:13 -0400995 goto error;
996 }
Trond Myklebust9c5bf382006-08-22 20:06:14 -0400997 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
David Howells54ceac42006-08-22 20:06:13 -0400998
999 nfs_mark_client_ready(clp, NFS_CS_READY);
1000 return 0;
1001
1002error:
1003 nfs_mark_client_ready(clp, error);
1004 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
1005 return error;
1006}
1007
1008/*
1009 * Set up an NFS4 client
1010 */
1011static int nfs4_set_client(struct nfs_server *server,
Chuck Leverdcecae02007-12-10 14:58:59 -05001012 const char *hostname,
1013 const struct sockaddr *addr,
1014 const size_t addrlen,
J. Bruce Fields7d9ac062006-10-19 23:28:39 -07001015 const char *ip_addr,
David Howells54ceac42006-08-22 20:06:13 -04001016 rpc_authflavor_t authflavour,
Trond Myklebust33170232007-12-20 16:03:59 -05001017 int proto, const struct rpc_timeout *timeparms)
David Howells54ceac42006-08-22 20:06:13 -04001018{
Trond Myklebust3a498022007-12-14 14:56:04 -05001019 struct nfs_client_initdata cl_init = {
1020 .hostname = hostname,
Chuck Leverdcecae02007-12-10 14:58:59 -05001021 .addr = addr,
1022 .addrlen = addrlen,
Trond Myklebust40c553192007-12-14 14:56:07 -05001023 .rpc_ops = &nfs_v4_clientops,
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001024 .proto = proto,
Trond Myklebust3a498022007-12-14 14:56:04 -05001025 };
David Howells54ceac42006-08-22 20:06:13 -04001026 struct nfs_client *clp;
1027 int error;
1028
1029 dprintk("--> nfs4_set_client()\n");
1030
1031 /* Allocate or find a client reference we can use */
Trond Myklebust3a498022007-12-14 14:56:04 -05001032 clp = nfs_get_client(&cl_init);
David Howells54ceac42006-08-22 20:06:13 -04001033 if (IS_ERR(clp)) {
1034 error = PTR_ERR(clp);
1035 goto error;
1036 }
Trond Myklebust59dca3b2008-01-03 16:29:06 -05001037 error = nfs4_init_client(clp, timeparms, ip_addr, authflavour);
David Howells54ceac42006-08-22 20:06:13 -04001038 if (error < 0)
1039 goto error_put;
1040
1041 server->nfs_client = clp;
1042 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
1043 return 0;
1044
1045error_put:
1046 nfs_put_client(clp);
1047error:
1048 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
1049 return error;
1050}
1051
1052/*
1053 * Create a version 4 volume record
1054 */
1055static int nfs4_init_server(struct nfs_server *server,
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001056 const struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001057{
Trond Myklebust33170232007-12-20 16:03:59 -05001058 struct rpc_timeout timeparms;
David Howells54ceac42006-08-22 20:06:13 -04001059 int error;
1060
1061 dprintk("--> nfs4_init_server()\n");
1062
Trond Myklebust33170232007-12-20 16:03:59 -05001063 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
1064 data->timeo, data->retrans);
1065
1066 /* Get a client record */
1067 error = nfs4_set_client(server,
1068 data->nfs_server.hostname,
1069 (const struct sockaddr *)&data->nfs_server.address,
1070 data->nfs_server.addrlen,
1071 data->client_address,
1072 data->auth_flavors[0],
1073 data->nfs_server.protocol,
1074 &timeparms);
1075 if (error < 0)
1076 goto error;
1077
David Howells54ceac42006-08-22 20:06:13 -04001078 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001079 server->flags = data->flags;
David Howells54ceac42006-08-22 20:06:13 -04001080 server->caps |= NFS_CAP_ATOMIC_OPEN;
1081
1082 if (data->rsize)
1083 server->rsize = nfs_block_size(data->rsize, NULL);
1084 if (data->wsize)
1085 server->wsize = nfs_block_size(data->wsize, NULL);
1086
1087 server->acregmin = data->acregmin * HZ;
1088 server->acregmax = data->acregmax * HZ;
1089 server->acdirmin = data->acdirmin * HZ;
1090 server->acdirmax = data->acdirmax * HZ;
1091
Chuck Leverf22d6d72008-03-14 14:10:22 -04001092 server->port = data->nfs_server.port;
1093
Trond Myklebust33170232007-12-20 16:03:59 -05001094 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
David Howells54ceac42006-08-22 20:06:13 -04001095
Trond Myklebust33170232007-12-20 16:03:59 -05001096error:
David Howells54ceac42006-08-22 20:06:13 -04001097 /* Done */
1098 dprintk("<-- nfs4_init_server() = %d\n", error);
1099 return error;
1100}
1101
1102/*
1103 * Create a version 4 volume record
1104 * - keyed on server and FSID
1105 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001106struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
David Howells54ceac42006-08-22 20:06:13 -04001107 struct nfs_fh *mntfh)
1108{
1109 struct nfs_fattr fattr;
1110 struct nfs_server *server;
1111 int error;
1112
1113 dprintk("--> nfs4_create_server()\n");
1114
1115 server = nfs_alloc_server();
1116 if (!server)
1117 return ERR_PTR(-ENOMEM);
1118
David Howells54ceac42006-08-22 20:06:13 -04001119 /* set up the general RPC client */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001120 error = nfs4_init_server(server, data);
David Howells54ceac42006-08-22 20:06:13 -04001121 if (error < 0)
1122 goto error;
1123
1124 BUG_ON(!server->nfs_client);
1125 BUG_ON(!server->nfs_client->rpc_ops);
1126 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1127
1128 /* Probe the root fh to retrieve its FSID */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001129 error = nfs4_path_walk(server, mntfh, data->nfs_server.export_path);
David Howells54ceac42006-08-22 20:06:13 -04001130 if (error < 0)
1131 goto error;
1132
David Howells6daabf12006-08-24 15:44:16 -04001133 dprintk("Server FSID: %llx:%llx\n",
1134 (unsigned long long) server->fsid.major,
1135 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001136 dprintk("Mount FH: %d\n", mntfh->size);
1137
1138 error = nfs_probe_fsinfo(server, mntfh, &fattr);
1139 if (error < 0)
1140 goto error;
1141
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001142 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1143 server->namelen = NFS4_MAXNAMLEN;
1144
David Howells54ceac42006-08-22 20:06:13 -04001145 BUG_ON(!server->nfs_client);
1146 BUG_ON(!server->nfs_client->rpc_ops);
1147 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1148
1149 spin_lock(&nfs_client_lock);
1150 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1151 list_add_tail(&server->master_link, &nfs_volume_list);
1152 spin_unlock(&nfs_client_lock);
1153
1154 server->mount_time = jiffies;
1155 dprintk("<-- nfs4_create_server() = %p\n", server);
1156 return server;
1157
1158error:
1159 nfs_free_server(server);
1160 dprintk("<-- nfs4_create_server() = error %d\n", error);
1161 return ERR_PTR(error);
1162}
1163
1164/*
1165 * Create an NFS4 referral server record
1166 */
1167struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001168 struct nfs_fh *mntfh)
David Howells54ceac42006-08-22 20:06:13 -04001169{
1170 struct nfs_client *parent_client;
1171 struct nfs_server *server, *parent_server;
1172 struct nfs_fattr fattr;
1173 int error;
1174
1175 dprintk("--> nfs4_create_referral_server()\n");
1176
1177 server = nfs_alloc_server();
1178 if (!server)
1179 return ERR_PTR(-ENOMEM);
1180
1181 parent_server = NFS_SB(data->sb);
1182 parent_client = parent_server->nfs_client;
1183
1184 /* Get a client representation.
1185 * Note: NFSv4 always uses TCP, */
Chuck Leverdcecae02007-12-10 14:58:59 -05001186 error = nfs4_set_client(server, data->hostname,
Chuck Lever6677d092007-12-10 14:59:06 -05001187 data->addr,
1188 data->addrlen,
Chuck Leverdcecae02007-12-10 14:58:59 -05001189 parent_client->cl_ipaddr,
1190 data->authflavor,
1191 parent_server->client->cl_xprt->prot,
Trond Myklebust33170232007-12-20 16:03:59 -05001192 parent_server->client->cl_timeout);
andros@citi.umich.edu297de4f2006-08-29 12:19:41 -04001193 if (error < 0)
1194 goto error;
David Howells54ceac42006-08-22 20:06:13 -04001195
1196 /* Initialise the client representation from the parent server */
1197 nfs_server_copy_userdata(server, parent_server);
1198 server->caps |= NFS_CAP_ATOMIC_OPEN;
1199
Trond Myklebust33170232007-12-20 16:03:59 -05001200 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04001201 if (error < 0)
1202 goto error;
1203
1204 BUG_ON(!server->nfs_client);
1205 BUG_ON(!server->nfs_client->rpc_ops);
1206 BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops);
1207
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001208 /* Probe the root fh to retrieve its FSID and filehandle */
1209 error = nfs4_path_walk(server, mntfh, data->mnt_path);
1210 if (error < 0)
1211 goto error;
1212
David Howells54ceac42006-08-22 20:06:13 -04001213 /* probe the filesystem info for this server filesystem */
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001214 error = nfs_probe_fsinfo(server, mntfh, &fattr);
David Howells54ceac42006-08-22 20:06:13 -04001215 if (error < 0)
1216 goto error;
1217
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001218 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1219 server->namelen = NFS4_MAXNAMLEN;
1220
David Howells54ceac42006-08-22 20:06:13 -04001221 dprintk("Referral FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001222 (unsigned long long) server->fsid.major,
1223 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001224
1225 spin_lock(&nfs_client_lock);
1226 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1227 list_add_tail(&server->master_link, &nfs_volume_list);
1228 spin_unlock(&nfs_client_lock);
1229
1230 server->mount_time = jiffies;
1231
1232 dprintk("<-- nfs_create_referral_server() = %p\n", server);
1233 return server;
1234
1235error:
1236 nfs_free_server(server);
1237 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
1238 return ERR_PTR(error);
1239}
1240
1241#endif /* CONFIG_NFS_V4 */
1242
1243/*
1244 * Clone an NFS2, NFS3 or NFS4 server record
1245 */
1246struct nfs_server *nfs_clone_server(struct nfs_server *source,
1247 struct nfs_fh *fh,
1248 struct nfs_fattr *fattr)
1249{
1250 struct nfs_server *server;
1251 struct nfs_fattr fattr_fsinfo;
1252 int error;
1253
1254 dprintk("--> nfs_clone_server(,%llx:%llx,)\n",
David Howells6daabf12006-08-24 15:44:16 -04001255 (unsigned long long) fattr->fsid.major,
1256 (unsigned long long) fattr->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001257
1258 server = nfs_alloc_server();
1259 if (!server)
1260 return ERR_PTR(-ENOMEM);
1261
1262 /* Copy data from the source */
1263 server->nfs_client = source->nfs_client;
1264 atomic_inc(&server->nfs_client->cl_count);
1265 nfs_server_copy_userdata(server, source);
1266
1267 server->fsid = fattr->fsid;
1268
Trond Myklebust33170232007-12-20 16:03:59 -05001269 error = nfs_init_server_rpcclient(server,
1270 source->client->cl_timeout,
1271 source->client->cl_auth->au_flavor);
David Howells54ceac42006-08-22 20:06:13 -04001272 if (error < 0)
1273 goto out_free_server;
1274 if (!IS_ERR(source->client_acl))
1275 nfs_init_server_aclclient(server);
1276
1277 /* probe the filesystem info for this server filesystem */
1278 error = nfs_probe_fsinfo(server, fh, &fattr_fsinfo);
1279 if (error < 0)
1280 goto out_free_server;
1281
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001282 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1283 server->namelen = NFS4_MAXNAMLEN;
1284
David Howells54ceac42006-08-22 20:06:13 -04001285 dprintk("Cloned FSID: %llx:%llx\n",
David Howells6daabf12006-08-24 15:44:16 -04001286 (unsigned long long) server->fsid.major,
1287 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001288
1289 error = nfs_start_lockd(server);
1290 if (error < 0)
1291 goto out_free_server;
1292
1293 spin_lock(&nfs_client_lock);
1294 list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks);
1295 list_add_tail(&server->master_link, &nfs_volume_list);
1296 spin_unlock(&nfs_client_lock);
1297
1298 server->mount_time = jiffies;
1299
1300 dprintk("<-- nfs_clone_server() = %p\n", server);
1301 return server;
1302
1303out_free_server:
1304 nfs_free_server(server);
1305 dprintk("<-- nfs_clone_server() = error %d\n", error);
1306 return ERR_PTR(error);
1307}
David Howells6aaca562006-08-22 20:06:13 -04001308
1309#ifdef CONFIG_PROC_FS
1310static struct proc_dir_entry *proc_fs_nfs;
1311
1312static int nfs_server_list_open(struct inode *inode, struct file *file);
1313static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1314static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1315static void nfs_server_list_stop(struct seq_file *p, void *v);
1316static int nfs_server_list_show(struct seq_file *m, void *v);
1317
1318static struct seq_operations nfs_server_list_ops = {
1319 .start = nfs_server_list_start,
1320 .next = nfs_server_list_next,
1321 .stop = nfs_server_list_stop,
1322 .show = nfs_server_list_show,
1323};
1324
Arjan van de Ven00977a52007-02-12 00:55:34 -08001325static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001326 .open = nfs_server_list_open,
1327 .read = seq_read,
1328 .llseek = seq_lseek,
1329 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001330 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001331};
1332
1333static int nfs_volume_list_open(struct inode *inode, struct file *file);
1334static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1335static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1336static void nfs_volume_list_stop(struct seq_file *p, void *v);
1337static int nfs_volume_list_show(struct seq_file *m, void *v);
1338
1339static struct seq_operations nfs_volume_list_ops = {
1340 .start = nfs_volume_list_start,
1341 .next = nfs_volume_list_next,
1342 .stop = nfs_volume_list_stop,
1343 .show = nfs_volume_list_show,
1344};
1345
Arjan van de Ven00977a52007-02-12 00:55:34 -08001346static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001347 .open = nfs_volume_list_open,
1348 .read = seq_read,
1349 .llseek = seq_lseek,
1350 .release = seq_release,
Denis V. Lunev34b37232008-04-29 01:02:07 -07001351 .owner = THIS_MODULE,
David Howells6aaca562006-08-22 20:06:13 -04001352};
1353
1354/*
1355 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1356 * we're dealing
1357 */
1358static int nfs_server_list_open(struct inode *inode, struct file *file)
1359{
1360 struct seq_file *m;
1361 int ret;
1362
1363 ret = seq_open(file, &nfs_server_list_ops);
1364 if (ret < 0)
1365 return ret;
1366
1367 m = file->private_data;
1368 m->private = PDE(inode)->data;
1369
1370 return 0;
1371}
1372
1373/*
1374 * set up the iterator to start reading from the server list and return the first item
1375 */
1376static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
1377{
David Howells6aaca562006-08-22 20:06:13 -04001378 /* lock the list against modification */
1379 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001380 return seq_list_start_head(&nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001381}
1382
1383/*
1384 * move to next server
1385 */
1386static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1387{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001388 return seq_list_next(v, &nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001389}
1390
1391/*
1392 * clean up after reading from the transports list
1393 */
1394static void nfs_server_list_stop(struct seq_file *p, void *v)
1395{
1396 spin_unlock(&nfs_client_lock);
1397}
1398
1399/*
1400 * display a header line followed by a load of call lines
1401 */
1402static int nfs_server_list_show(struct seq_file *m, void *v)
1403{
1404 struct nfs_client *clp;
1405
1406 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001407 if (v == &nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001408 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1409 return 0;
1410 }
1411
1412 /* display one transport per line on subsequent lines */
1413 clp = list_entry(v, struct nfs_client, cl_share_link);
1414
Chuck Lever5d8515c2007-12-10 14:57:16 -05001415 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001416 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001417 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1418 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001419 atomic_read(&clp->cl_count),
1420 clp->cl_hostname);
1421
1422 return 0;
1423}
1424
1425/*
1426 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1427 */
1428static int nfs_volume_list_open(struct inode *inode, struct file *file)
1429{
1430 struct seq_file *m;
1431 int ret;
1432
1433 ret = seq_open(file, &nfs_volume_list_ops);
1434 if (ret < 0)
1435 return ret;
1436
1437 m = file->private_data;
1438 m->private = PDE(inode)->data;
1439
1440 return 0;
1441}
1442
1443/*
1444 * set up the iterator to start reading from the volume list and return the first item
1445 */
1446static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
1447{
David Howells6aaca562006-08-22 20:06:13 -04001448 /* lock the list against modification */
1449 spin_lock(&nfs_client_lock);
Pavel Emelianov259902e2007-07-15 23:39:56 -07001450 return seq_list_start_head(&nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001451}
1452
1453/*
1454 * move to next volume
1455 */
1456static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1457{
Pavel Emelianov259902e2007-07-15 23:39:56 -07001458 return seq_list_next(v, &nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001459}
1460
1461/*
1462 * clean up after reading from the transports list
1463 */
1464static void nfs_volume_list_stop(struct seq_file *p, void *v)
1465{
1466 spin_unlock(&nfs_client_lock);
1467}
1468
1469/*
1470 * display a header line followed by a load of call lines
1471 */
1472static int nfs_volume_list_show(struct seq_file *m, void *v)
1473{
1474 struct nfs_server *server;
1475 struct nfs_client *clp;
1476 char dev[8], fsid[17];
1477
1478 /* display header on line 1 */
Pavel Emelianov259902e2007-07-15 23:39:56 -07001479 if (v == &nfs_volume_list) {
David Howells6aaca562006-08-22 20:06:13 -04001480 seq_puts(m, "NV SERVER PORT DEV FSID\n");
1481 return 0;
1482 }
1483 /* display one transport per line on subsequent lines */
1484 server = list_entry(v, struct nfs_server, master_link);
1485 clp = server->nfs_client;
1486
1487 snprintf(dev, 8, "%u:%u",
1488 MAJOR(server->s_dev), MINOR(server->s_dev));
1489
1490 snprintf(fsid, 17, "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001491 (unsigned long long) server->fsid.major,
1492 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001493
Chuck Lever5d8515c2007-12-10 14:57:16 -05001494 seq_printf(m, "v%u %s %s %-7s %-17s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001495 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001496 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1497 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001498 dev,
1499 fsid);
1500
1501 return 0;
1502}
1503
1504/*
1505 * initialise the /proc/fs/nfsfs/ directory
1506 */
1507int __init nfs_fs_proc_init(void)
1508{
1509 struct proc_dir_entry *p;
1510
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001511 proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001512 if (!proc_fs_nfs)
1513 goto error_0;
1514
1515 proc_fs_nfs->owner = THIS_MODULE;
1516
1517 /* a file of servers with which we're dealing */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001518 p = proc_create("servers", S_IFREG|S_IRUGO,
1519 proc_fs_nfs, &nfs_server_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001520 if (!p)
1521 goto error_1;
1522
David Howells6aaca562006-08-22 20:06:13 -04001523 /* a file of volumes that we have mounted */
Denis V. Lunev34b37232008-04-29 01:02:07 -07001524 p = proc_create("volumes", S_IFREG|S_IRUGO,
1525 proc_fs_nfs, &nfs_volume_list_fops);
David Howells6aaca562006-08-22 20:06:13 -04001526 if (!p)
1527 goto error_2;
David Howells6aaca562006-08-22 20:06:13 -04001528 return 0;
1529
1530error_2:
1531 remove_proc_entry("servers", proc_fs_nfs);
1532error_1:
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001533 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001534error_0:
1535 return -ENOMEM;
1536}
1537
1538/*
1539 * clean up the /proc/fs/nfsfs/ directory
1540 */
1541void nfs_fs_proc_exit(void)
1542{
1543 remove_proc_entry("volumes", proc_fs_nfs);
1544 remove_proc_entry("servers", proc_fs_nfs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -07001545 remove_proc_entry("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001546}
1547
1548#endif /* CONFIG_PROC_FS */