blob: 02773aab43c52a828ec890f5f56e4279f906d5b2 [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
Trond Myklebust98f98cf2013-04-14 11:49:51 -0400201 if (clp->cl_minorversion != 0)
202 __set_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags);
Bryan Schumaker428360d2012-07-16 16:39:17 -0400203 __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags);
Chuck Lever4edaa302013-03-16 15:56:20 -0400204 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_GSS_KRB5I);
Trond Myklebust23631222013-04-04 16:14:11 -0400205 if (error == -EINVAL)
Chuck Lever83c168b2013-05-15 22:00:10 -0400206 error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX);
Bryan Schumaker428360d2012-07-16 16:39:17 -0400207 if (error < 0)
208 goto error;
209
210 /* If no clientaddr= option was specified, find a usable cb address */
211 if (ip_addr == NULL) {
212 struct sockaddr_storage cb_addr;
213 struct sockaddr *sap = (struct sockaddr *)&cb_addr;
214
215 error = rpc_localaddr(clp->cl_rpcclient, sap, sizeof(cb_addr));
216 if (error < 0)
217 goto error;
218 error = rpc_ntop(sap, buf, sizeof(buf));
219 if (error < 0)
220 goto error;
221 ip_addr = (const char *)buf;
222 }
223 strlcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr));
224
225 error = nfs_idmap_new(clp);
226 if (error < 0) {
227 dprintk("%s: failed to create idmapper. Error = %d\n",
228 __func__, error);
229 goto error;
230 }
231 __set_bit(NFS_CS_IDMAP, &clp->cl_res_state);
232
233 error = nfs4_init_client_minor_version(clp);
234 if (error < 0)
235 goto error;
236
237 if (!nfs4_has_session(clp))
238 nfs_mark_client_ready(clp, NFS_CS_READY);
Chuck Lever05f4c352012-09-14 17:24:32 -0400239
240 error = nfs4_discover_server_trunking(clp, &old);
241 if (error < 0)
242 goto error;
Chuck Lever05f4c352012-09-14 17:24:32 -0400243
Weston Andros Adamsondaab6e72014-01-19 22:45:36 -0500244 if (clp != old)
245 clp->cl_preserve_clid = true;
246 nfs_put_client(clp);
247 return old;
Bryan Schumaker428360d2012-07-16 16:39:17 -0400248
249error:
250 nfs_mark_client_ready(clp, error);
251 nfs_put_client(clp);
252 dprintk("<-- nfs4_init_client() = xerror %d\n", error);
253 return ERR_PTR(error);
254}
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400255
Chuck Lever05f4c352012-09-14 17:24:32 -0400256/*
Chuck Lever05f4c352012-09-14 17:24:32 -0400257 * SETCLIENTID just did a callback update with the callback ident in
258 * "drop," but server trunking discovery claims "drop" and "keep" are
259 * actually the same server. Swap the callback IDs so that "keep"
260 * will continue to use the callback ident the server now knows about,
261 * and so that "keep"'s original callback ident is destroyed when
262 * "drop" is freed.
263 */
264static void nfs4_swap_callback_idents(struct nfs_client *keep,
265 struct nfs_client *drop)
266{
267 struct nfs_net *nn = net_generic(keep->cl_net, nfs_net_id);
268 unsigned int save = keep->cl_cb_ident;
269
270 if (keep->cl_cb_ident == drop->cl_cb_ident)
271 return;
272
273 dprintk("%s: keeping callback ident %u and dropping ident %u\n",
274 __func__, keep->cl_cb_ident, drop->cl_cb_ident);
275
276 spin_lock(&nn->nfs_client_lock);
277
278 idr_replace(&nn->cb_ident_idr, keep, drop->cl_cb_ident);
279 keep->cl_cb_ident = drop->cl_cb_ident;
280
281 idr_replace(&nn->cb_ident_idr, drop, save);
282 drop->cl_cb_ident = save;
283
284 spin_unlock(&nn->nfs_client_lock);
285}
286
287/**
288 * nfs40_walk_client_list - Find server that recognizes a client ID
289 *
290 * @new: nfs_client with client ID to test
291 * @result: OUT: found nfs_client, or new
292 * @cred: credential to use for trunking test
293 *
294 * Returns zero, a negative errno, or a negative NFS4ERR status.
295 * If zero is returned, an nfs_client pointer is planted in "result."
296 *
297 * NB: nfs40_walk_client_list() relies on the new nfs_client being
298 * the last nfs_client on the list.
299 */
300int nfs40_walk_client_list(struct nfs_client *new,
301 struct nfs_client **result,
302 struct rpc_cred *cred)
303{
304 struct nfs_net *nn = net_generic(new->cl_net, nfs_net_id);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400305 struct nfs_client *pos, *prev = NULL;
Chuck Lever05f4c352012-09-14 17:24:32 -0400306 struct nfs4_setclientid_res clid = {
307 .clientid = new->cl_clientid,
308 .confirm = new->cl_confirm,
309 };
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500310 int status = -NFS4ERR_STALE_CLIENTID;
Chuck Lever05f4c352012-09-14 17:24:32 -0400311
312 spin_lock(&nn->nfs_client_lock);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400313 list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400314 /* If "pos" isn't marked ready, we can't trust the
315 * remaining fields in "pos" */
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400316 if (pos->cl_cons_state > NFS_CS_READY) {
317 atomic_inc(&pos->cl_count);
318 spin_unlock(&nn->nfs_client_lock);
319
320 if (prev)
321 nfs_put_client(prev);
322 prev = pos;
323
324 status = nfs_wait_client_init_complete(pos);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400325 if (status < 0)
Trond Myklebust14ff66c2014-01-17 17:03:41 -0500326 goto out;
327 status = -NFS4ERR_STALE_CLIENTID;
328 spin_lock(&nn->nfs_client_lock);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400329 }
330 if (pos->cl_cons_state != NFS_CS_READY)
Chuck Lever05f4c352012-09-14 17:24:32 -0400331 continue;
332
333 if (pos->rpc_ops != new->rpc_ops)
334 continue;
335
336 if (pos->cl_proto != new->cl_proto)
337 continue;
338
339 if (pos->cl_minorversion != new->cl_minorversion)
340 continue;
341
342 if (pos->cl_clientid != new->cl_clientid)
343 continue;
344
345 atomic_inc(&pos->cl_count);
346 spin_unlock(&nn->nfs_client_lock);
347
348 if (prev)
349 nfs_put_client(prev);
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500350 prev = pos;
Chuck Lever05f4c352012-09-14 17:24:32 -0400351
352 status = nfs4_proc_setclientid_confirm(pos, &clid, cred);
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500353 switch (status) {
354 case -NFS4ERR_STALE_CLIENTID:
355 break;
356 case 0:
Chuck Lever05f4c352012-09-14 17:24:32 -0400357 nfs4_swap_callback_idents(pos, new);
358
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500359 prev = NULL;
Chuck Lever05f4c352012-09-14 17:24:32 -0400360 *result = pos;
361 dprintk("NFS: <-- %s using nfs_client = %p ({%d})\n",
362 __func__, pos, atomic_read(&pos->cl_count));
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500363 default:
364 goto out;
Chuck Lever05f4c352012-09-14 17:24:32 -0400365 }
366
367 spin_lock(&nn->nfs_client_lock);
Chuck Lever05f4c352012-09-14 17:24:32 -0400368 }
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500369 spin_unlock(&nn->nfs_client_lock);
Chuck Lever05f4c352012-09-14 17:24:32 -0400370
Trond Myklebust202c3122013-01-18 22:56:23 -0500371 /* No match found. The server lost our clientid */
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500372out:
Chuck Lever05f4c352012-09-14 17:24:32 -0400373 if (prev)
374 nfs_put_client(prev);
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500375 dprintk("NFS: <-- %s status = %d\n", __func__, status);
376 return status;
Chuck Lever05f4c352012-09-14 17:24:32 -0400377}
378
379#ifdef CONFIG_NFS_V4_1
380/*
Trond Myklebustf9d640f2012-10-01 16:37:51 -0700381 * Returns true if the client IDs match
382 */
383static bool nfs4_match_clientids(struct nfs_client *a, struct nfs_client *b)
384{
385 if (a->cl_clientid != b->cl_clientid) {
386 dprintk("NFS: --> %s client ID %llx does not match %llx\n",
387 __func__, a->cl_clientid, b->cl_clientid);
388 return false;
389 }
390 dprintk("NFS: --> %s client ID %llx matches %llx\n",
391 __func__, a->cl_clientid, b->cl_clientid);
392 return true;
393}
394
395/*
Chuck Lever05f4c352012-09-14 17:24:32 -0400396 * Returns true if the server owners match
397 */
398static bool
399nfs4_match_serverowners(struct nfs_client *a, struct nfs_client *b)
400{
401 struct nfs41_server_owner *o1 = a->cl_serverowner;
402 struct nfs41_server_owner *o2 = b->cl_serverowner;
403
404 if (o1->minor_id != o2->minor_id) {
405 dprintk("NFS: --> %s server owner minor IDs do not match\n",
406 __func__);
407 return false;
408 }
409
410 if (o1->major_id_sz != o2->major_id_sz)
411 goto out_major_mismatch;
412 if (memcmp(o1->major_id, o2->major_id, o1->major_id_sz) != 0)
413 goto out_major_mismatch;
414
415 dprintk("NFS: --> %s server owners match\n", __func__);
416 return true;
417
418out_major_mismatch:
419 dprintk("NFS: --> %s server owner major IDs do not match\n",
420 __func__);
421 return false;
422}
423
424/**
425 * nfs41_walk_client_list - Find nfs_client that matches a client/server owner
426 *
427 * @new: nfs_client with client ID to test
428 * @result: OUT: found nfs_client, or new
429 * @cred: credential to use for trunking test
430 *
431 * Returns zero, a negative errno, or a negative NFS4ERR status.
432 * If zero is returned, an nfs_client pointer is planted in "result."
433 *
434 * NB: nfs41_walk_client_list() relies on the new nfs_client being
435 * the last nfs_client on the list.
436 */
437int nfs41_walk_client_list(struct nfs_client *new,
438 struct nfs_client **result,
439 struct rpc_cred *cred)
440{
441 struct nfs_net *nn = net_generic(new->cl_net, nfs_net_id);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400442 struct nfs_client *pos, *prev = NULL;
Trond Myklebust202c3122013-01-18 22:56:23 -0500443 int status = -NFS4ERR_STALE_CLIENTID;
Chuck Lever05f4c352012-09-14 17:24:32 -0400444
445 spin_lock(&nn->nfs_client_lock);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400446 list_for_each_entry(pos, &nn->nfs_client_list, cl_share_link) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400447 /* If "pos" isn't marked ready, we can't trust the
448 * remaining fields in "pos", especially the client
449 * ID and serverowner fields. Wait for CREATE_SESSION
450 * to finish. */
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400451 if (pos->cl_cons_state > NFS_CS_READY) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400452 atomic_inc(&pos->cl_count);
453 spin_unlock(&nn->nfs_client_lock);
454
455 if (prev)
456 nfs_put_client(prev);
457 prev = pos;
458
Trond Myklebust202c3122013-01-18 22:56:23 -0500459 status = nfs_wait_client_init_complete(pos);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400460 if (status == 0) {
461 nfs4_schedule_lease_recovery(pos);
462 status = nfs4_wait_clnt_recover(pos);
Chuck Lever05f4c352012-09-14 17:24:32 -0400463 }
Chuck Lever05f4c352012-09-14 17:24:32 -0400464 spin_lock(&nn->nfs_client_lock);
Trond Myklebust65436ec2013-01-18 23:01:43 -0500465 if (status < 0)
Trond Myklebust14ff66c2014-01-17 17:03:41 -0500466 break;
467 status = -NFS4ERR_STALE_CLIENTID;
Chuck Lever05f4c352012-09-14 17:24:32 -0400468 }
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400469 if (pos->cl_cons_state != NFS_CS_READY)
470 continue;
Chuck Lever05f4c352012-09-14 17:24:32 -0400471
472 if (pos->rpc_ops != new->rpc_ops)
473 continue;
474
475 if (pos->cl_proto != new->cl_proto)
476 continue;
477
478 if (pos->cl_minorversion != new->cl_minorversion)
479 continue;
480
481 if (!nfs4_match_clientids(pos, new))
482 continue;
483
484 if (!nfs4_match_serverowners(pos, new))
485 continue;
486
Trond Myklebust4ae19c22013-01-18 22:41:53 -0500487 atomic_inc(&pos->cl_count);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400488 *result = pos;
Trond Myklebusteb04e0a2013-04-10 12:44:18 -0400489 status = 0;
Chuck Lever05f4c352012-09-14 17:24:32 -0400490 dprintk("NFS: <-- %s using nfs_client = %p ({%d})\n",
491 __func__, pos, atomic_read(&pos->cl_count));
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400492 break;
Chuck Lever05f4c352012-09-14 17:24:32 -0400493 }
494
Trond Myklebust202c3122013-01-18 22:56:23 -0500495 /* No matching nfs_client found. */
Chuck Lever05f4c352012-09-14 17:24:32 -0400496 spin_unlock(&nn->nfs_client_lock);
Trond Myklebust202c3122013-01-18 22:56:23 -0500497 dprintk("NFS: <-- %s status = %d\n", __func__, status);
Trond Myklebust7b1f1fd2013-04-05 16:11:11 -0400498 if (prev)
499 nfs_put_client(prev);
Trond Myklebust202c3122013-01-18 22:56:23 -0500500 return status;
Chuck Lever05f4c352012-09-14 17:24:32 -0400501}
502#endif /* CONFIG_NFS_V4_1 */
503
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400504static void nfs4_destroy_server(struct nfs_server *server)
505{
506 nfs_server_return_all_delegations(server);
507 unset_pnfs_layoutdriver(server);
508 nfs4_purge_state_owners(server);
509}
510
511/*
512 * NFSv4.0 callback thread helper
513 *
514 * Find a client by callback identifier
515 */
516struct nfs_client *
517nfs4_find_client_ident(struct net *net, int cb_ident)
518{
519 struct nfs_client *clp;
520 struct nfs_net *nn = net_generic(net, nfs_net_id);
521
522 spin_lock(&nn->nfs_client_lock);
523 clp = idr_find(&nn->cb_ident_idr, cb_ident);
524 if (clp)
525 atomic_inc(&clp->cl_count);
526 spin_unlock(&nn->nfs_client_lock);
527 return clp;
528}
529
530#if defined(CONFIG_NFS_V4_1)
531/* Common match routine for v4.0 and v4.1 callback services */
532static bool nfs4_cb_match_client(const struct sockaddr *addr,
533 struct nfs_client *clp, u32 minorversion)
534{
535 struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
536
537 /* Don't match clients that failed to initialise */
538 if (!(clp->cl_cons_state == NFS_CS_READY ||
539 clp->cl_cons_state == NFS_CS_SESSION_INITING))
540 return false;
541
542 smp_rmb();
543
544 /* Match the version and minorversion */
545 if (clp->rpc_ops->version != 4 ||
546 clp->cl_minorversion != minorversion)
547 return false;
548
549 /* Match only the IP address, not the port number */
550 if (!nfs_sockaddr_match_ipaddr(addr, clap))
551 return false;
552
553 return true;
554}
555
556/*
557 * NFSv4.1 callback thread helper
558 * For CB_COMPOUND calls, find a client by IP address, protocol version,
559 * minorversion, and sessionID
560 *
561 * Returns NULL if no such client
562 */
563struct nfs_client *
564nfs4_find_client_sessionid(struct net *net, const struct sockaddr *addr,
565 struct nfs4_sessionid *sid)
566{
567 struct nfs_client *clp;
568 struct nfs_net *nn = net_generic(net, nfs_net_id);
569
570 spin_lock(&nn->nfs_client_lock);
571 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
572 if (nfs4_cb_match_client(addr, clp, 1) == false)
573 continue;
574
575 if (!nfs4_has_session(clp))
576 continue;
577
578 /* Match sessionid*/
579 if (memcmp(clp->cl_session->sess_id.data,
580 sid->data, NFS4_MAX_SESSIONID_LEN) != 0)
581 continue;
582
583 atomic_inc(&clp->cl_count);
584 spin_unlock(&nn->nfs_client_lock);
585 return clp;
586 }
587 spin_unlock(&nn->nfs_client_lock);
588 return NULL;
589}
590
591#else /* CONFIG_NFS_V4_1 */
592
593struct nfs_client *
594nfs4_find_client_sessionid(struct net *net, const struct sockaddr *addr,
595 struct nfs4_sessionid *sid)
596{
597 return NULL;
598}
599#endif /* CONFIG_NFS_V4_1 */
600
601/*
602 * Set up an NFS4 client
603 */
604static int nfs4_set_client(struct nfs_server *server,
605 const char *hostname,
606 const struct sockaddr *addr,
607 const size_t addrlen,
608 const char *ip_addr,
609 rpc_authflavor_t authflavour,
610 int proto, const struct rpc_timeout *timeparms,
611 u32 minorversion, struct net *net)
612{
613 struct nfs_client_initdata cl_init = {
614 .hostname = hostname,
615 .addr = addr,
616 .addrlen = addrlen,
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400617 .nfs_mod = &nfs_v4,
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400618 .proto = proto,
619 .minorversion = minorversion,
620 .net = net,
621 };
622 struct nfs_client *clp;
623 int error;
624
625 dprintk("--> nfs4_set_client()\n");
626
627 if (server->flags & NFS_MOUNT_NORESVPORT)
628 set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
629
630 /* Allocate or find a client reference we can use */
631 clp = nfs_get_client(&cl_init, timeparms, ip_addr, authflavour);
632 if (IS_ERR(clp)) {
633 error = PTR_ERR(clp);
634 goto error;
635 }
636
637 /*
638 * Query for the lease time on clientid setup or renewal
639 *
640 * Note that this will be set on nfs_clients that were created
641 * only for the DS role and did not set this bit, but now will
642 * serve a dual role.
643 */
644 set_bit(NFS_CS_CHECK_LEASE_TIME, &clp->cl_res_state);
645
646 server->nfs_client = clp;
647 dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp);
648 return 0;
649error:
650 dprintk("<-- nfs4_set_client() = xerror %d\n", error);
651 return error;
652}
653
654/*
655 * Set up a pNFS Data Server client.
656 *
657 * Return any existing nfs_client that matches server address,port,version
658 * and minorversion.
659 *
660 * For a new nfs_client, use a soft mount (default), a low retrans and a
661 * low timeout interval so that if a connection is lost, we retry through
662 * the MDS.
663 */
664struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp,
665 const struct sockaddr *ds_addr, int ds_addrlen,
666 int ds_proto, unsigned int ds_timeo, unsigned int ds_retrans)
667{
668 struct nfs_client_initdata cl_init = {
669 .addr = ds_addr,
670 .addrlen = ds_addrlen,
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400671 .nfs_mod = &nfs_v4,
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400672 .proto = ds_proto,
673 .minorversion = mds_clp->cl_minorversion,
674 .net = mds_clp->cl_net,
675 };
676 struct rpc_timeout ds_timeout;
677 struct nfs_client *clp;
678
679 /*
680 * Set an authflavor equual to the MDS value. Use the MDS nfs_client
681 * cl_ipaddr so as to use the same EXCHANGE_ID co_ownerid as the MDS
682 * (section 13.1 RFC 5661).
683 */
684 nfs_init_timeout_values(&ds_timeout, ds_proto, ds_timeo, ds_retrans);
685 clp = nfs_get_client(&cl_init, &ds_timeout, mds_clp->cl_ipaddr,
686 mds_clp->cl_rpcclient->cl_auth->au_flavor);
687
688 dprintk("<-- %s %p\n", __func__, clp);
689 return clp;
690}
691EXPORT_SYMBOL_GPL(nfs4_set_ds_client);
692
693/*
694 * Session has been established, and the client marked ready.
695 * Set the mount rsize and wsize with negotiated fore channel
696 * attributes which will be bound checked in nfs_server_set_fsinfo.
697 */
698static void nfs4_session_set_rwsize(struct nfs_server *server)
699{
700#ifdef CONFIG_NFS_V4_1
701 struct nfs4_session *sess;
702 u32 server_resp_sz;
703 u32 server_rqst_sz;
704
705 if (!nfs4_has_session(server->nfs_client))
706 return;
707 sess = server->nfs_client->cl_session;
708 server_resp_sz = sess->fc_attrs.max_resp_sz - nfs41_maxread_overhead;
709 server_rqst_sz = sess->fc_attrs.max_rqst_sz - nfs41_maxwrite_overhead;
710
711 if (server->rsize > server_resp_sz)
712 server->rsize = server_resp_sz;
713 if (server->wsize > server_rqst_sz)
714 server->wsize = server_rqst_sz;
715#endif /* CONFIG_NFS_V4_1 */
716}
717
718static int nfs4_server_common_setup(struct nfs_server *server,
719 struct nfs_fh *mntfh)
720{
721 struct nfs_fattr *fattr;
722 int error;
723
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400724 /* data servers support only a subset of NFSv4.1 */
725 if (is_ds_only_client(server->nfs_client))
726 return -EPROTONOSUPPORT;
727
728 fattr = nfs_alloc_fattr();
729 if (fattr == NULL)
730 return -ENOMEM;
731
732 /* We must ensure the session is initialised first */
733 error = nfs4_init_session(server);
734 if (error < 0)
735 goto out;
736
Trond Myklebust39c6daa2013-03-15 16:11:57 -0400737 /* Set the basic capabilities */
738 server->caps |= server->nfs_client->cl_mvops->init_caps;
739 if (server->flags & NFS_MOUNT_NORDIRPLUS)
740 server->caps &= ~NFS_CAP_READDIRPLUS;
741 /*
742 * Don't use NFS uid/gid mapping if we're using AUTH_SYS or lower
743 * authentication.
744 */
745 if (nfs4_disable_idmapping &&
746 server->client->cl_auth->au_flavor == RPC_AUTH_UNIX)
747 server->caps |= NFS_CAP_UIDGID_NOMAP;
748
749
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400750 /* Probe the root fh to retrieve its FSID and filehandle */
751 error = nfs4_get_rootfh(server, mntfh);
752 if (error < 0)
753 goto out;
754
755 dprintk("Server FSID: %llx:%llx\n",
756 (unsigned long long) server->fsid.major,
757 (unsigned long long) server->fsid.minor);
758 dprintk("Mount FH: %d\n", mntfh->size);
759
760 nfs4_session_set_rwsize(server);
761
762 error = nfs_probe_fsinfo(server, mntfh, fattr);
763 if (error < 0)
764 goto out;
765
766 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
767 server->namelen = NFS4_MAXNAMLEN;
768
769 nfs_server_insert_lists(server);
770 server->mount_time = jiffies;
771 server->destroy = nfs4_destroy_server;
772out:
773 nfs_free_fattr(fattr);
774 return error;
775}
776
777/*
778 * Create a version 4 volume record
779 */
780static int nfs4_init_server(struct nfs_server *server,
781 const struct nfs_parsed_mount_data *data)
782{
783 struct rpc_timeout timeparms;
784 int error;
785
786 dprintk("--> nfs4_init_server()\n");
787
788 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
789 data->timeo, data->retrans);
790
791 /* Initialise the client representation from the mount data */
792 server->flags = data->flags;
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400793 server->options = data->options;
794
795 /* Get a client record */
796 error = nfs4_set_client(server,
797 data->nfs_server.hostname,
798 (const struct sockaddr *)&data->nfs_server.address,
799 data->nfs_server.addrlen,
800 data->client_address,
801 data->auth_flavors[0],
802 data->nfs_server.protocol,
803 &timeparms,
804 data->minorversion,
805 data->net);
806 if (error < 0)
807 goto error;
808
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400809 if (data->rsize)
810 server->rsize = nfs_block_size(data->rsize, NULL);
811 if (data->wsize)
812 server->wsize = nfs_block_size(data->wsize, NULL);
813
814 server->acregmin = data->acregmin * HZ;
815 server->acregmax = data->acregmax * HZ;
816 server->acdirmin = data->acdirmin * HZ;
817 server->acdirmax = data->acdirmax * HZ;
818
819 server->port = data->nfs_server.port;
820
821 error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]);
822
823error:
824 /* Done */
825 dprintk("<-- nfs4_init_server() = %d\n", error);
826 return error;
827}
828
829/*
830 * Create a version 4 volume record
831 * - keyed on server and FSID
832 */
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400833/*struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data,
834 struct nfs_fh *mntfh)*/
835struct nfs_server *nfs4_create_server(struct nfs_mount_info *mount_info,
836 struct nfs_subversion *nfs_mod)
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400837{
838 struct nfs_server *server;
839 int error;
840
841 dprintk("--> nfs4_create_server()\n");
842
843 server = nfs_alloc_server();
844 if (!server)
845 return ERR_PTR(-ENOMEM);
846
847 /* set up the general RPC client */
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400848 error = nfs4_init_server(server, mount_info->parsed);
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400849 if (error < 0)
850 goto error;
851
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400852 error = nfs4_server_common_setup(server, mount_info->mntfh);
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400853 if (error < 0)
854 goto error;
855
856 dprintk("<-- nfs4_create_server() = %p\n", server);
857 return server;
858
859error:
860 nfs_free_server(server);
861 dprintk("<-- nfs4_create_server() = error %d\n", error);
862 return ERR_PTR(error);
863}
864
865/*
866 * Create an NFS4 referral server record
867 */
868struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data,
869 struct nfs_fh *mntfh)
870{
871 struct nfs_client *parent_client;
872 struct nfs_server *server, *parent_server;
873 int error;
874
875 dprintk("--> nfs4_create_referral_server()\n");
876
877 server = nfs_alloc_server();
878 if (!server)
879 return ERR_PTR(-ENOMEM);
880
881 parent_server = NFS_SB(data->sb);
882 parent_client = parent_server->nfs_client;
883
884 /* Initialise the client representation from the parent server */
885 nfs_server_copy_userdata(server, parent_server);
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400886
887 /* Get a client representation.
888 * Note: NFSv4 always uses TCP, */
889 error = nfs4_set_client(server, data->hostname,
890 data->addr,
891 data->addrlen,
892 parent_client->cl_ipaddr,
893 data->authflavor,
894 rpc_protocol(parent_server->client),
895 parent_server->client->cl_timeout,
896 parent_client->cl_mvops->minor_version,
897 parent_client->cl_net);
898 if (error < 0)
899 goto error;
900
901 error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor);
902 if (error < 0)
903 goto error;
904
905 error = nfs4_server_common_setup(server, mntfh);
906 if (error < 0)
907 goto error;
908
909 dprintk("<-- nfs_create_referral_server() = %p\n", server);
910 return server;
911
912error:
913 nfs_free_server(server);
914 dprintk("<-- nfs4_create_referral_server() = error %d\n", error);
915 return ERR_PTR(error);
916}