blob: c7b346f8cc44b0e469a3271a41320c4a0e2c6652 [file] [log] [blame]
Bryan Schumaker428360d2012-07-16 16:39:17 -04001/*
2 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
3 * Written by David Howells (dhowells@redhat.com)
4 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -04005#include <linux/module.h>
Bryan Schumaker428360d2012-07-16 16:39:17 -04006#include <linux/nfs_fs.h>
7#include <linux/nfs_idmap.h>
Bryan Schumakerfcf10392012-07-16 16:39:18 -04008#include <linux/nfs_mount.h>
Jeff Layton59766872013-02-04 12:50:00 -05009#include <linux/sunrpc/addr.h>
Bryan Schumaker428360d2012-07-16 16:39:17 -040010#include <linux/sunrpc/auth.h>
11#include <linux/sunrpc/xprt.h>
12#include <linux/sunrpc/bc_xprt.h>
13#include "internal.h"
14#include "callback.h"
Bryan Schumakerfcf10392012-07-16 16:39:18 -040015#include "delegation.h"
Trond Myklebust73e39aa2012-11-26 12:49:34 -050016#include "nfs4session.h"
Bryan Schumakerfcf10392012-07-16 16:39:18 -040017#include "pnfs.h"
18#include "netns.h"
Bryan Schumaker428360d2012-07-16 16:39:17 -040019
20#define NFSDBG_FACILITY NFSDBG_CLIENT
21
22/*
Bryan Schumakerec409892012-07-16 16:39:21 -040023 * Get a unique NFSv4.0 callback identifier which will be used
24 * by the V4.0 callback service to lookup the nfs_client struct
25 */
26static int nfs_get_cb_ident_idr(struct nfs_client *clp, int minorversion)
27{
28 int ret = 0;
29 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
30
31 if (clp->rpc_ops->version != 4 || minorversion != 0)
32 return ret;
Tejun Heod6870312013-02-27 17:05:01 -080033 idr_preload(GFP_KERNEL);
Bryan Schumakerec409892012-07-16 16:39:21 -040034 spin_lock(&nn->nfs_client_lock);
Tejun Heod6870312013-02-27 17:05:01 -080035 ret = idr_alloc(&nn->cb_ident_idr, clp, 0, 0, GFP_NOWAIT);
36 if (ret >= 0)
37 clp->cl_cb_ident = ret;
Bryan Schumakerec409892012-07-16 16:39:21 -040038 spin_unlock(&nn->nfs_client_lock);
Tejun Heod6870312013-02-27 17:05:01 -080039 idr_preload_end();
40 return ret < 0 ? ret : 0;
Bryan Schumakerec409892012-07-16 16:39:21 -040041}
42
43#ifdef CONFIG_NFS_V4_1
44static void nfs4_shutdown_session(struct nfs_client *clp)
45{
46 if (nfs4_has_session(clp)) {
47 nfs4_destroy_session(clp->cl_session);
48 nfs4_destroy_clientid(clp);
49 }
50
51}
52#else /* CONFIG_NFS_V4_1 */
53static void nfs4_shutdown_session(struct nfs_client *clp)
54{
55}
56#endif /* CONFIG_NFS_V4_1 */
57
58struct nfs_client *nfs4_alloc_client(const struct nfs_client_initdata *cl_init)
59{
60 int err;
61 struct nfs_client *clp = nfs_alloc_client(cl_init);
62 if (IS_ERR(clp))
63 return clp;
64
65 err = nfs_get_cb_ident_idr(clp, cl_init->minorversion);
66 if (err)
67 goto error;
68
69 spin_lock_init(&clp->cl_lock);
70 INIT_DELAYED_WORK(&clp->cl_renewd, nfs4_renew_state);
71 rpc_init_wait_queue(&clp->cl_rpcwaitq, "NFS client");
72 clp->cl_state = 1 << NFS4CLNT_LEASE_EXPIRED;
73 clp->cl_minorversion = cl_init->minorversion;
74 clp->cl_mvops = nfs_v4_minor_ops[cl_init->minorversion];
75 return clp;
76
77error:
Trond Myklebust7653f6f2012-08-20 12:12:29 -040078 nfs_free_client(clp);
Bryan Schumakerec409892012-07-16 16:39:21 -040079 return ERR_PTR(err);
80}
81
82/*
83 * Destroy the NFS4 callback service
84 */
85static void nfs4_destroy_callback(struct nfs_client *clp)
86{
87 if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state))
Stanislav Kinsburskyc9465562012-08-20 18:00:16 +040088 nfs_callback_down(clp->cl_mvops->minor_version, clp->cl_net);
Bryan Schumakerec409892012-07-16 16:39:21 -040089}
90
91static void nfs4_shutdown_client(struct nfs_client *clp)
92{
93 if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state))
94 nfs4_kill_renewd(clp);
95 nfs4_shutdown_session(clp);
96 nfs4_destroy_callback(clp);
97 if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state))
98 nfs_idmap_delete(clp);
99
100 rpc_destroy_wait_queue(&clp->cl_rpcwaitq);
101 kfree(clp->cl_serverowner);
102 kfree(clp->cl_serverscope);
103 kfree(clp->cl_implid);
104}
105
106void nfs4_free_client(struct nfs_client *clp)
107{
108 nfs4_shutdown_client(clp);
109 nfs_free_client(clp);
110}
111
112/*
Bryan Schumaker428360d2012-07-16 16:39:17 -0400113 * Initialize the NFS4 callback service
114 */
115static int nfs4_init_callback(struct nfs_client *clp)
116{
117 int error;
118
119 if (clp->rpc_ops->version == 4) {
120 struct rpc_xprt *xprt;
121
122 xprt = rcu_dereference_raw(clp->cl_rpcclient->cl_xprt);
123
124 if (nfs4_has_session(clp)) {
125 error = xprt_setup_backchannel(xprt,
126 NFS41_BC_MIN_CALLBACKS);
127 if (error < 0)
128 return error;
129 }
130
131 error = nfs_callback_up(clp->cl_mvops->minor_version, xprt);
132 if (error < 0) {
133 dprintk("%s: failed to start callback. Error = %d\n",
134 __func__, error);
135 return error;
136 }
137 __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state);
138 }
139 return 0;
140}
141
142/*
143 * Initialize the minor version specific parts of an NFS4 client record
144 */
145static int nfs4_init_client_minor_version(struct nfs_client *clp)
146{
147#if defined(CONFIG_NFS_V4_1)
148 if (clp->cl_mvops->minor_version) {
149 struct nfs4_session *session = NULL;
150 /*
151 * Create the session and mark it expired.
152 * When a SEQUENCE operation encounters the expired session
153 * it will do session recovery to initialize it.
154 */
155 session = nfs4_alloc_session(clp);
156 if (!session)
157 return -ENOMEM;
158
159 clp->cl_session = session;
160 /*
161 * The create session reply races with the server back
162 * channel probe. Mark the client NFS_CS_SESSION_INITING
163 * so that the client back channel can find the
164 * nfs_client struct
165 */
166 nfs_mark_client_ready(clp, NFS_CS_SESSION_INITING);
167 }
168#endif /* CONFIG_NFS_V4_1 */
169
170 return nfs4_init_callback(clp);
171}
172
173/**
174 * nfs4_init_client - Initialise an NFS4 client record
175 *
176 * @clp: nfs_client to initialise
177 * @timeparms: timeout parameters for underlying RPC transport
178 * @ip_addr: callback IP address in presentation format
179 * @authflavor: authentication flavor for underlying RPC transport
180 *
181 * Returns pointer to an NFS client, or an ERR_PTR value.
182 */
183struct nfs_client *nfs4_init_client(struct nfs_client *clp,
184 const struct rpc_timeout *timeparms,
185 const char *ip_addr,
186 rpc_authflavor_t authflavour)
187{
188 char buf[INET6_ADDRSTRLEN + 1];
Chuck Lever05f4c352012-09-14 17:24:32 -0400189 struct nfs_client *old;
Bryan Schumaker428360d2012-07-16 16:39:17 -0400190 int error;
191
192 if (clp->cl_cons_state == NFS_CS_READY) {
193 /* the client is initialised already */
194 dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp);
195 return clp;
196 }
197
198 /* Check NFS protocol revision and initialize RPC op vector */
199 clp->rpc_ops = &nfs_v4_clientops;
200
201 __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags);
202 error = nfs_create_rpc_client(clp, timeparms, authflavour);
203 if (error < 0)
204 goto error;
205
206 /* If no clientaddr= option was specified, find a usable cb address */
207 if (ip_addr == NULL) {
208 struct sockaddr_storage cb_addr;
209 struct sockaddr *sap = (struct sockaddr *)&cb_addr;
210
211 error = rpc_localaddr(clp->cl_rpcclient, sap, sizeof(cb_addr));
212 if (error < 0)
213 goto error;
214 error = rpc_ntop(sap, buf, sizeof(buf));
215 if (error < 0)
216 goto error;
217 ip_addr = (const char *)buf;
218 }
219 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
220
221 error = nfs_idmap_new(clp);
222 if (error < 0) {
223 dprintk("%s: failed to create idmapper. Error = %d\n",
224 __func__, error);
225 goto error;
226 }
227 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
228
229 error = nfs4_init_client_minor_version(clp);
230 if (error < 0)
231 goto error;
232
233 if (!nfs4_has_session(clp))
234 nfs_mark_client_ready(clp, NFS_CS_READY);
Chuck Lever05f4c352012-09-14 17:24:32 -0400235
236 error = nfs4_discover_server_trunking(clp, &old);
237 if (error < 0)
238 goto error;
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500239 nfs_put_client(clp);
Chuck Lever05f4c352012-09-14 17:24:32 -0400240 if (clp != old) {
241 clp->cl_preserve_clid = true;
Chuck Lever05f4c352012-09-14 17:24:32 -0400242 clp = old;
Chuck Lever05f4c352012-09-14 17:24:32 -0400243 }
244
Bryan Schumaker428360d2012-07-16 16:39:17 -0400245 return clp;
246
247error:
248 nfs_mark_client_ready(clp, error);
249 nfs_put_client(clp);
250 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
251 return ERR_PTR(error);
252}
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400253
Chuck Lever05f4c352012-09-14 17:24:32 -0400254/*
Chuck Lever05f4c352012-09-14 17:24:32 -0400255 * SETCLIENTID just did a callback update with the callback ident in
256 * "drop," but server trunking discovery claims "drop" and "keep" are
257 * actually the same server. Swap the callback IDs so that "keep"
258 * will continue to use the callback ident the server now knows about,
259 * and so that "keep"'s original callback ident is destroyed when
260 * "drop" is freed.
261 */
262static void nfs4_swap_callback_idents(struct nfs_client *keep,
263 struct nfs_client *drop)
264{
265 struct nfs_net *nn = net_generic(keep->cl_net, nfs_net_id);
266 unsigned int save = keep->cl_cb_ident;
267
268 if (keep->cl_cb_ident == drop->cl_cb_ident)
269 return;
270
271 dprintk("%s: keeping callback ident %u and dropping ident %u\n",
272 __func__, keep->cl_cb_ident, drop->cl_cb_ident);
273
274 spin_lock(&nn->nfs_client_lock);
275
276 idr_replace(&nn->cb_ident_idr, keep, drop->cl_cb_ident);
277 keep->cl_cb_ident = drop->cl_cb_ident;
278
279 idr_replace(&nn->cb_ident_idr, drop, save);
280 drop->cl_cb_ident = save;
281
282 spin_unlock(&nn->nfs_client_lock);
283}
284
285/**
286 * nfs40_walk_client_list - Find server that recognizes a client ID
287 *
288 * @new: nfs_client with client ID to test
289 * @result: OUT: found nfs_client, or new
290 * @cred: credential to use for trunking test
291 *
292 * Returns zero, a negative errno, or a negative NFS4ERR status.
293 * If zero is returned, an nfs_client pointer is planted in "result."
294 *
295 * NB: nfs40_walk_client_list() relies on the new nfs_client being
296 * the last nfs_client on the list.
297 */
298int nfs40_walk_client_list(struct nfs_client *new,
299 struct nfs_client **result,
300 struct rpc_cred *cred)
301{
302 struct nfs_net *nn = net_generic(new->cl_net, nfs_net_id);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400303 struct nfs_client *pos, *prev = NULL;
Chuck Lever05f4c352012-09-14 17:24:32 -0400304 struct nfs4_setclientid_res clid = {
305 .clientid = new->cl_clientid,
306 .confirm = new->cl_confirm,
307 };
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500308 int status = -NFS4ERR_STALE_CLIENTID;
Chuck Lever05f4c352012-09-14 17:24:32 -0400309
310 spin_lock(&nn->nfs_client_lock);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400311 list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400312 /* If "pos" isn't marked ready, we can't trust the
313 * remaining fields in "pos" */
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400314 if (pos->cl_cons_state > NFS_CS_READY) {
315 atomic_inc(&pos->cl_count);
316 spin_unlock(&nn->nfs_client_lock);
317
318 if (prev)
319 nfs_put_client(prev);
320 prev = pos;
321
322 status = nfs_wait_client_init_complete(pos);
323 spin_lock(&nn->nfs_client_lock);
324 if (status < 0)
325 continue;
326 }
327 if (pos->cl_cons_state != NFS_CS_READY)
Chuck Lever05f4c352012-09-14 17:24:32 -0400328 continue;
329
330 if (pos->rpc_ops != new->rpc_ops)
331 continue;
332
333 if (pos->cl_proto != new->cl_proto)
334 continue;
335
336 if (pos->cl_minorversion != new->cl_minorversion)
337 continue;
338
339 if (pos->cl_clientid != new->cl_clientid)
340 continue;
341
342 atomic_inc(&pos->cl_count);
343 spin_unlock(&nn->nfs_client_lock);
344
345 if (prev)
346 nfs_put_client(prev);
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500347 prev = pos;
Chuck Lever05f4c352012-09-14 17:24:32 -0400348
349 status = nfs4_proc_setclientid_confirm(pos, &clid, cred);
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500350 switch (status) {
351 case -NFS4ERR_STALE_CLIENTID:
352 break;
353 case 0:
Chuck Lever05f4c352012-09-14 17:24:32 -0400354 nfs4_swap_callback_idents(pos, new);
355
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500356 prev = NULL;
Chuck Lever05f4c352012-09-14 17:24:32 -0400357 *result = pos;
358 dprintk("NFS: <-- %s using nfs_client = %p ({%d})\n",
359 __func__, pos, atomic_read(&pos->cl_count));
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500360 default:
361 goto out;
Chuck Lever05f4c352012-09-14 17:24:32 -0400362 }
363
364 spin_lock(&nn->nfs_client_lock);
Chuck Lever05f4c352012-09-14 17:24:32 -0400365 }
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500366 spin_unlock(&nn->nfs_client_lock);
Chuck Lever05f4c352012-09-14 17:24:32 -0400367
Trond Myklebust202c3122013-01-18 22:56:23 -0500368 /* No match found. The server lost our clientid */
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500369out:
Chuck Lever05f4c352012-09-14 17:24:32 -0400370 if (prev)
371 nfs_put_client(prev);
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500372 dprintk("NFS: <-- %s status = %d\n", __func__, status);
373 return status;
Chuck Lever05f4c352012-09-14 17:24:32 -0400374}
375
376#ifdef CONFIG_NFS_V4_1
377/*
Trond Myklebustf9d640f2012-10-01 16:37:51 -0700378 * Returns true if the client IDs match
379 */
380static bool nfs4_match_clientids(struct nfs_client *a, struct nfs_client *b)
381{
382 if (a->cl_clientid != b->cl_clientid) {
383 dprintk("NFS: --> %s client ID %llx does not match %llx\n",
384 __func__, a->cl_clientid, b->cl_clientid);
385 return false;
386 }
387 dprintk("NFS: --> %s client ID %llx matches %llx\n",
388 __func__, a->cl_clientid, b->cl_clientid);
389 return true;
390}
391
392/*
Chuck Lever05f4c352012-09-14 17:24:32 -0400393 * Returns true if the server owners match
394 */
395static bool
396nfs4_match_serverowners(struct nfs_client *a, struct nfs_client *b)
397{
398 struct nfs41_server_owner *o1 = a->cl_serverowner;
399 struct nfs41_server_owner *o2 = b->cl_serverowner;
400
401 if (o1->minor_id != o2->minor_id) {
402 dprintk("NFS: --> %s server owner minor IDs do not match\n",
403 __func__);
404 return false;
405 }
406
407 if (o1->major_id_sz != o2->major_id_sz)
408 goto out_major_mismatch;
409 if (memcmp(o1->major_id, o2->major_id, o1->major_id_sz) != 0)
410 goto out_major_mismatch;
411
412 dprintk("NFS: --> %s server owners match\n", __func__);
413 return true;
414
415out_major_mismatch:
416 dprintk("NFS: --> %s server owner major IDs do not match\n",
417 __func__);
418 return false;
419}
420
421/**
422 * nfs41_walk_client_list - Find nfs_client that matches a client/server owner
423 *
424 * @new: nfs_client with client ID to test
425 * @result: OUT: found nfs_client, or new
426 * @cred: credential to use for trunking test
427 *
428 * Returns zero, a negative errno, or a negative NFS4ERR status.
429 * If zero is returned, an nfs_client pointer is planted in "result."
430 *
431 * NB: nfs41_walk_client_list() relies on the new nfs_client being
432 * the last nfs_client on the list.
433 */
434int nfs41_walk_client_list(struct nfs_client *new,
435 struct nfs_client **result,
436 struct rpc_cred *cred)
437{
438 struct nfs_net *nn = net_generic(new->cl_net, nfs_net_id);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400439 struct nfs_client *pos, *prev = NULL;
Trond Myklebust202c3122013-01-18 22:56:23 -0500440 int status = -NFS4ERR_STALE_CLIENTID;
Chuck Lever05f4c352012-09-14 17:24:32 -0400441
442 spin_lock(&nn->nfs_client_lock);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400443 list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400444 /* If "pos" isn't marked ready, we can't trust the
445 * remaining fields in "pos", especially the client
446 * ID and serverowner fields. Wait for CREATE_SESSION
447 * to finish. */
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400448 if (pos->cl_cons_state > NFS_CS_READY) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400449 atomic_inc(&pos->cl_count);
450 spin_unlock(&nn->nfs_client_lock);
451
452 if (prev)
453 nfs_put_client(prev);
454 prev = pos;
455
Trond Myklebust202c3122013-01-18 22:56:23 -0500456 status = nfs_wait_client_init_complete(pos);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400457 if (status == 0) {
458 nfs4_schedule_lease_recovery(pos);
459 status = nfs4_wait_clnt_recover(pos);
Chuck Lever05f4c352012-09-14 17:24:32 -0400460 }
Chuck Lever05f4c352012-09-14 17:24:32 -0400461 spin_lock(&nn->nfs_client_lock);
Trond Myklebust65436ec2013-01-18 23:01:43 -0500462 if (status < 0)
463 continue;
Chuck Lever05f4c352012-09-14 17:24:32 -0400464 }
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400465 if (pos->cl_cons_state != NFS_CS_READY)
466 continue;
Chuck Lever05f4c352012-09-14 17:24:32 -0400467
468 if (pos->rpc_ops != new->rpc_ops)
469 continue;
470
471 if (pos->cl_proto != new->cl_proto)
472 continue;
473
474 if (pos->cl_minorversion != new->cl_minorversion)
475 continue;
476
477 if (!nfs4_match_clientids(pos, new))
478 continue;
479
480 if (!nfs4_match_serverowners(pos, new))
481 continue;
482
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500483 atomic_inc(&pos->cl_count);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400484 *result = pos;
Chuck Lever05f4c352012-09-14 17:24:32 -0400485 dprintk("NFS: <-- %s using nfs_client = %p ({%d})\n",
486 __func__, pos, atomic_read(&pos->cl_count));
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400487 break;
Chuck Lever05f4c352012-09-14 17:24:32 -0400488 }
489
Trond Myklebust202c3122013-01-18 22:56:23 -0500490 /* No matching nfs_client found. */
Chuck Lever05f4c352012-09-14 17:24:32 -0400491 spin_unlock(&nn->nfs_client_lock);
Trond Myklebust202c3122013-01-18 22:56:23 -0500492 dprintk("NFS: <-- %s status = %d\n", __func__, status);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400493 if (prev)
494 nfs_put_client(prev);
Trond Myklebust202c3122013-01-18 22:56:23 -0500495 return status;
Chuck Lever05f4c352012-09-14 17:24:32 -0400496}
497#endif /* CONFIG_NFS_V4_1 */
498
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400499static void nfs4_destroy_server(struct nfs_server *server)
500{
501 nfs_server_return_all_delegations(server);
502 unset_pnfs_layoutdriver(server);
503 nfs4_purge_state_owners(server);
504}
505
506/*
507 * NFSv4.0 callback thread helper
508 *
509 * Find a client by callback identifier
510 */
511struct nfs_client *
512nfs4_find_client_ident(struct net *net, int cb_ident)
513{
514 struct nfs_client *clp;
515 struct nfs_net *nn = net_generic(net, nfs_net_id);
516
517 spin_lock(&nn->nfs_client_lock);
518 clp = idr_find(&nn->cb_ident_idr, cb_ident);
519 if (clp)
520 atomic_inc(&clp->cl_count);
521 spin_unlock(&nn->nfs_client_lock);
522 return clp;
523}
524
525#if defined(CONFIG_NFS_V4_1)
526/* Common match routine for v4.0 and v4.1 callback services */
527static bool nfs4_cb_match_client(const struct sockaddr *addr,
528 struct nfs_client *clp, u32 minorversion)
529{
530 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
531
532 /* Don't match clients that failed to initialise */
533 if (!(clp->cl_cons_state == NFS_CS_READY ||
534 clp->cl_cons_state == NFS_CS_SESSION_INITING))
535 return false;
536
537 smp_rmb();
538
539 /* Match the version and minorversion */
540 if (clp->rpc_ops->version != 4 ||
541 clp->cl_minorversion != minorversion)
542 return false;
543
544 /* Match only the IP address, not the port number */
545 if (!nfs_sockaddr_match_ipaddr(addr, clap))
546 return false;
547
548 return true;
549}
550
551/*
552 * NFSv4.1 callback thread helper
553 * For CB_COMPOUND calls, find a client by IP address, protocol version,
554 * minorversion, and sessionID
555 *
556 * Returns NULL if no such client
557 */
558struct nfs_client *
559nfs4_find_client_sessionid(struct net *net, const struct sockaddr *addr,
560 struct nfs4_sessionid *sid)
561{
562 struct nfs_client *clp;
563 struct nfs_net *nn = net_generic(net, nfs_net_id);
564
565 spin_lock(&nn->nfs_client_lock);
566 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
567 if (nfs4_cb_match_client(addr, clp, 1) == false)
568 continue;
569
570 if (!nfs4_has_session(clp))
571 continue;
572
573 /* Match sessionid*/
574 if (memcmp(clp->cl_session->sess_id.data,
575 sid->data, NFS4_MAX_SESSIONID_LEN) != 0)
576 continue;
577
578 atomic_inc(&clp->cl_count);
579 spin_unlock(&nn->nfs_client_lock);
580 return clp;
581 }
582 spin_unlock(&nn->nfs_client_lock);
583 return NULL;
584}
585
586#else /* CONFIG_NFS_V4_1 */
587
588struct nfs_client *
589nfs4_find_client_sessionid(struct net *net, const struct sockaddr *addr,
590 struct nfs4_sessionid *sid)
591{
592 return NULL;
593}
594#endif /* CONFIG_NFS_V4_1 */
595
596/*
597 * Set up an NFS4 client
598 */
599static int nfs4_set_client(struct nfs_server *server,
600 const char *hostname,
601 const struct sockaddr *addr,
602 const size_t addrlen,
603 const char *ip_addr,
604 rpc_authflavor_t authflavour,
605 int proto, const struct rpc_timeout *timeparms,
606 u32 minorversion, struct net *net)
607{
608 struct nfs_client_initdata cl_init = {
609 .hostname = hostname,
610 .addr = addr,
611 .addrlen = addrlen,
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400612 .nfs_mod = &nfs_v4,
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400613 .proto = proto,
614 .minorversion = minorversion,
615 .net = net,
616 };
617 struct nfs_client *clp;
618 int error;
619
620 dprintk("--> nfs4_set_client()\n");
621
622 if (server->flags & NFS_MOUNT_NORESVPORT)
623 set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
624
625 /* Allocate or find a client reference we can use */
626 clp = nfs_get_client(&cl_init, timeparms, ip_addr, authflavour);
627 if (IS_ERR(clp)) {
628 error = PTR_ERR(clp);
629 goto error;
630 }
631
632 /*
633 * Query for the lease time on clientid setup or renewal
634 *
635 * Note that this will be set on nfs_clients that were created
636 * only for the DS role and did not set this bit, but now will
637 * serve a dual role.
638 */
639 set_bit(NFS_CS_CHECK_LEASE_TIME, &clp->cl_res_state);
640
641 server->nfs_client = clp;
642 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
643 return 0;
644error:
645 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
646 return error;
647}
648
649/*
650 * Set up a pNFS Data Server client.
651 *
652 * Return any existing nfs_client that matches server address,port,version
653 * and minorversion.
654 *
655 * For a new nfs_client, use a soft mount (default), a low retrans and a
656 * low timeout interval so that if a connection is lost, we retry through
657 * the MDS.
658 */
659struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp,
660 const struct sockaddr *ds_addr, int ds_addrlen,
661 int ds_proto, unsigned int ds_timeo, unsigned int ds_retrans)
662{
663 struct nfs_client_initdata cl_init = {
664 .addr = ds_addr,
665 .addrlen = ds_addrlen,
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400666 .nfs_mod = &nfs_v4,
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400667 .proto = ds_proto,
668 .minorversion = mds_clp->cl_minorversion,
669 .net = mds_clp->cl_net,
670 };
671 struct rpc_timeout ds_timeout;
672 struct nfs_client *clp;
673
674 /*
675 * Set an authflavor equual to the MDS value. Use the MDS nfs_client
676 * cl_ipaddr so as to use the same EXCHANGE_ID co_ownerid as the MDS
677 * (section 13.1 RFC 5661).
678 */
679 nfs_init_timeout_values(&ds_timeout, ds_proto, ds_timeo, ds_retrans);
680 clp = nfs_get_client(&cl_init, &ds_timeout, mds_clp->cl_ipaddr,
681 mds_clp->cl_rpcclient->cl_auth->au_flavor);
682
683 dprintk("<-- %s %p\n", __func__, clp);
684 return clp;
685}
686EXPORT_SYMBOL_GPL(nfs4_set_ds_client);
687
688/*
689 * Session has been established, and the client marked ready.
690 * Set the mount rsize and wsize with negotiated fore channel
691 * attributes which will be bound checked in nfs_server_set_fsinfo.
692 */
693static void nfs4_session_set_rwsize(struct nfs_server *server)
694{
695#ifdef CONFIG_NFS_V4_1
696 struct nfs4_session *sess;
697 u32 server_resp_sz;
698 u32 server_rqst_sz;
699
700 if (!nfs4_has_session(server->nfs_client))
701 return;
702 sess = server->nfs_client->cl_session;
703 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
704 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
705
706 if (server->rsize > server_resp_sz)
707 server->rsize = server_resp_sz;
708 if (server->wsize > server_rqst_sz)
709 server->wsize = server_rqst_sz;
710#endif /* CONFIG_NFS_V4_1 */
711}
712
713static int nfs4_server_common_setup(struct nfs_server *server,
714 struct nfs_fh *mntfh)
715{
716 struct nfs_fattr *fattr;
717 int error;
718
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400719 /* data servers support only a subset of NFSv4.1 */
720 if (is_ds_only_client(server->nfs_client))
721 return -EPROTONOSUPPORT;
722
723 fattr = nfs_alloc_fattr();
724 if (fattr == NULL)
725 return -ENOMEM;
726
727 /* We must ensure the session is initialised first */
728 error = nfs4_init_session(server);
729 if (error < 0)
730 goto out;
731
732 /* Probe the root fh to retrieve its FSID and filehandle */
733 error = nfs4_get_rootfh(server, mntfh);
734 if (error < 0)
735 goto out;
736
737 dprintk("Server FSID: %llx:%llx\n",
738 (unsigned long long) server->fsid.major,
739 (unsigned long long) server->fsid.minor);
740 dprintk("Mount FH: %d\n", mntfh->size);
741
742 nfs4_session_set_rwsize(server);
743
744 error = nfs_probe_fsinfo(server, mntfh, fattr);
745 if (error < 0)
746 goto out;
747
748 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
749 server->namelen = NFS4_MAXNAMLEN;
750
751 nfs_server_insert_lists(server);
752 server->mount_time = jiffies;
753 server->destroy = nfs4_destroy_server;
754out:
755 nfs_free_fattr(fattr);
756 return error;
757}
758
759/*
760 * Create a version 4 volume record
761 */
762static int nfs4_init_server(struct nfs_server *server,
763 const struct nfs_parsed_mount_data *data)
764{
765 struct rpc_timeout timeparms;
766 int error;
767
768 dprintk("--> nfs4_init_server()\n");
769
770 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
771 data->timeo, data->retrans);
772
773 /* Initialise the client representation from the mount data */
774 server->flags = data->flags;
775 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR|NFS_CAP_POSIX_LOCK;
776 if (!(data->flags & NFS_MOUNT_NORDIRPLUS))
777 server->caps |= NFS_CAP_READDIRPLUS;
778 server->options = data->options;
779
780 /* Get a client record */
781 error = nfs4_set_client(server,
782 data->nfs_server.hostname,
783 (const struct sockaddr *)&data->nfs_server.address,
784 data->nfs_server.addrlen,
785 data->client_address,
786 data->auth_flavors[0],
787 data->nfs_server.protocol,
788 &timeparms,
789 data->minorversion,
790 data->net);
791 if (error < 0)
792 goto error;
793
794 /*
795 * Don't use NFS uid/gid mapping if we're using AUTH_SYS or lower
796 * authentication.
797 */
798 if (nfs4_disable_idmapping && data->auth_flavors[0] == RPC_AUTH_UNIX)
799 server->caps |= NFS_CAP_UIDGID_NOMAP;
800
801 if (data->rsize)
802 server->rsize = nfs_block_size(data->rsize, NULL);
803 if (data->wsize)
804 server->wsize = nfs_block_size(data->wsize, NULL);
805
806 server->acregmin = data->acregmin * HZ;
807 server->acregmax = data->acregmax * HZ;
808 server->acdirmin = data->acdirmin * HZ;
809 server->acdirmax = data->acdirmax * HZ;
810
811 server->port = data->nfs_server.port;
812
813 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
814
815error:
816 /* Done */
817 dprintk("<-- nfs4_init_server() = %d\n", error);
818 return error;
819}
820
821/*
822 * Create a version 4 volume record
823 * - keyed on server and FSID
824 */
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400825/*struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
826 struct nfs_fh *mntfh)*/
827struct nfs_server *nfs4_create_server(struct nfs_mount_info *mount_info,
828 struct nfs_subversion *nfs_mod)
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400829{
830 struct nfs_server *server;
831 int error;
832
833 dprintk("--> nfs4_create_server()\n");
834
835 server = nfs_alloc_server();
836 if (!server)
837 return ERR_PTR(-ENOMEM);
838
839 /* set up the general RPC client */
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400840 error = nfs4_init_server(server, mount_info->parsed);
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400841 if (error < 0)
842 goto error;
843
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400844 error = nfs4_server_common_setup(server, mount_info->mntfh);
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400845 if (error < 0)
846 goto error;
847
848 dprintk("<-- nfs4_create_server() = %p\n", server);
849 return server;
850
851error:
852 nfs_free_server(server);
853 dprintk("<-- nfs4_create_server() = error %d\n", error);
854 return ERR_PTR(error);
855}
856
857/*
858 * Create an NFS4 referral server record
859 */
860struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
861 struct nfs_fh *mntfh)
862{
863 struct nfs_client *parent_client;
864 struct nfs_server *server, *parent_server;
865 int error;
866
867 dprintk("--> nfs4_create_referral_server()\n");
868
869 server = nfs_alloc_server();
870 if (!server)
871 return ERR_PTR(-ENOMEM);
872
873 parent_server = NFS_SB(data->sb);
874 parent_client = parent_server->nfs_client;
875
876 /* Initialise the client representation from the parent server */
877 nfs_server_copy_userdata(server, parent_server);
878 server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR;
879
880 /* Get a client representation.
881 * Note: NFSv4 always uses TCP, */
882 error = nfs4_set_client(server, data->hostname,
883 data->addr,
884 data->addrlen,
885 parent_client->cl_ipaddr,
886 data->authflavor,
887 rpc_protocol(parent_server->client),
888 parent_server->client->cl_timeout,
889 parent_client->cl_mvops->minor_version,
890 parent_client->cl_net);
891 if (error < 0)
892 goto error;
893
894 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
895 if (error < 0)
896 goto error;
897
898 error = nfs4_server_common_setup(server, mntfh);
899 if (error < 0)
900 goto error;
901
902 dprintk("<-- nfs_create_referral_server() = %p\n", server);
903 return server;
904
905error:
906 nfs_free_server(server);
907 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
908 return ERR_PTR(error);
909}