blob: 1dcee1fd32d9c3eb327642bc60f7b4f125f357ff [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 2001 The Regents of the University of Michigan.
3 * All rights reserved.
4 *
5 * Kendrick Smith <kmsmith@umich.edu>
6 * Andy Adamson <andros@umich.edu>
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/sunrpc/clnt.h>
Kinglong Meed531c002014-03-24 11:59:46 +080035#include <linux/sunrpc/xprt.h>
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -050036#include <linux/sunrpc/svc_xprt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020038#include "nfsd.h"
39#include "state.h"
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +030040#include "netns.h"
J. Bruce Fields06b332a2013-04-09 11:34:36 -040041#include "xdr4cb.h"
Olga Kornievskaia9eb190fca8f2018-07-20 18:19:17 -040042#include "xdr4.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define NFSDDBG_FACILITY NFSDDBG_PROC
45
Benny Halevy54237322011-10-19 19:12:58 -070046static void nfsd4_mark_cb_fault(struct nfs4_client *, int reason);
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define NFSPROC4_CB_NULL 0
49#define NFSPROC4_CB_COMPOUND 1
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* Index of predefined Linux callback client operations */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053struct nfs4_cb_compound_hdr {
Andy Adamson38524ab2009-09-10 12:25:59 +030054 /* args */
55 u32 ident; /* minorversion 0 only */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 u32 nops;
Andy Adamsonef52bff2009-06-16 04:20:50 +030057 __be32 *nops_p;
Andy Adamsonab52ae62009-06-16 04:20:53 +030058 u32 minorversion;
Andy Adamson38524ab2009-09-10 12:25:59 +030059 /* res */
60 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Chuck Lever85a56482010-12-14 14:57:32 +000063/*
64 * Handle decode buffer overflows out-of-line.
65 */
66static void print_overflow_msg(const char *func, const struct xdr_stream *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Chuck Lever85a56482010-12-14 14:57:32 +000068 dprintk("NFS: %s prematurely hit the end of our receive buffer. "
69 "Remaining buffer length is %tu words.\n",
70 func, xdr->end - xdr->p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
Chuck Levera033db42010-12-14 14:57:22 +000073static __be32 *xdr_encode_empty_array(__be32 *p)
74{
75 *p++ = xdr_zero;
76 return p;
77}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
Chuck Levera033db42010-12-14 14:57:22 +000080 * Encode/decode NFSv4 CB basic data types
81 *
82 * Basic NFSv4 callback data types are defined in section 15 of RFC
83 * 3530: "Network File System (NFS) version 4 Protocol" and section
84 * 20 of RFC 5661: "Network File System (NFS) Version 4 Minor Version
85 * 1 Protocol"
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
87
Chuck Levera033db42010-12-14 14:57:22 +000088/*
89 * nfs_cb_opnum4
90 *
91 * enum nfs_cb_opnum4 {
92 * OP_CB_GETATTR = 3,
93 * ...
94 * };
95 */
96enum nfs_cb_opnum4 {
97 OP_CB_GETATTR = 3,
98 OP_CB_RECALL = 4,
99 OP_CB_LAYOUTRECALL = 5,
100 OP_CB_NOTIFY = 6,
101 OP_CB_PUSH_DELEG = 7,
102 OP_CB_RECALL_ANY = 8,
103 OP_CB_RECALLABLE_OBJ_AVAIL = 9,
104 OP_CB_RECALL_SLOT = 10,
105 OP_CB_SEQUENCE = 11,
106 OP_CB_WANTS_CANCELLED = 12,
107 OP_CB_NOTIFY_LOCK = 13,
108 OP_CB_NOTIFY_DEVICEID = 14,
Olga Kornievskaia9eb190fca8f2018-07-20 18:19:17 -0400109 OP_CB_OFFLOAD = 15,
Chuck Levera033db42010-12-14 14:57:22 +0000110 OP_CB_ILLEGAL = 10044
111};
112
113static void encode_nfs_cb_opnum4(struct xdr_stream *xdr, enum nfs_cb_opnum4 op)
Benny Halevy9303bbd2010-05-25 09:50:23 +0300114{
115 __be32 *p;
116
Chuck Levera033db42010-12-14 14:57:22 +0000117 p = xdr_reserve_space(xdr, 4);
118 *p = cpu_to_be32(op);
Benny Halevy9303bbd2010-05-25 09:50:23 +0300119}
120
Chuck Levera033db42010-12-14 14:57:22 +0000121/*
122 * nfs_fh4
123 *
124 * typedef opaque nfs_fh4<NFS4_FHSIZE>;
125 */
126static void encode_nfs_fh4(struct xdr_stream *xdr, const struct knfsd_fh *fh)
127{
128 u32 length = fh->fh_size;
129 __be32 *p;
130
131 BUG_ON(length > NFS4_FHSIZE);
132 p = xdr_reserve_space(xdr, 4 + length);
133 xdr_encode_opaque(p, &fh->fh_base, length);
134}
135
136/*
137 * stateid4
138 *
139 * struct stateid4 {
140 * uint32_t seqid;
141 * opaque other[12];
142 * };
143 */
144static void encode_stateid4(struct xdr_stream *xdr, const stateid_t *sid)
145{
146 __be32 *p;
147
148 p = xdr_reserve_space(xdr, NFS4_STATEID_SIZE);
149 *p++ = cpu_to_be32(sid->si_generation);
150 xdr_encode_opaque_fixed(p, &sid->si_opaque, NFS4_STATEID_OTHER_SIZE);
151}
152
153/*
154 * sessionid4
155 *
156 * typedef opaque sessionid4[NFS4_SESSIONID_SIZE];
157 */
158static void encode_sessionid4(struct xdr_stream *xdr,
159 const struct nfsd4_session *session)
160{
161 __be32 *p;
162
163 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN);
164 xdr_encode_opaque_fixed(p, session->se_sessionid.data,
165 NFS4_MAX_SESSIONID_LEN);
166}
167
168/*
Chuck Lever85a56482010-12-14 14:57:32 +0000169 * nfsstat4
170 */
171static const struct {
172 int stat;
173 int errno;
174} nfs_cb_errtbl[] = {
175 { NFS4_OK, 0 },
176 { NFS4ERR_PERM, -EPERM },
177 { NFS4ERR_NOENT, -ENOENT },
178 { NFS4ERR_IO, -EIO },
179 { NFS4ERR_NXIO, -ENXIO },
180 { NFS4ERR_ACCESS, -EACCES },
181 { NFS4ERR_EXIST, -EEXIST },
182 { NFS4ERR_XDEV, -EXDEV },
183 { NFS4ERR_NOTDIR, -ENOTDIR },
184 { NFS4ERR_ISDIR, -EISDIR },
185 { NFS4ERR_INVAL, -EINVAL },
186 { NFS4ERR_FBIG, -EFBIG },
187 { NFS4ERR_NOSPC, -ENOSPC },
188 { NFS4ERR_ROFS, -EROFS },
189 { NFS4ERR_MLINK, -EMLINK },
190 { NFS4ERR_NAMETOOLONG, -ENAMETOOLONG },
191 { NFS4ERR_NOTEMPTY, -ENOTEMPTY },
192 { NFS4ERR_DQUOT, -EDQUOT },
193 { NFS4ERR_STALE, -ESTALE },
194 { NFS4ERR_BADHANDLE, -EBADHANDLE },
195 { NFS4ERR_BAD_COOKIE, -EBADCOOKIE },
196 { NFS4ERR_NOTSUPP, -ENOTSUPP },
197 { NFS4ERR_TOOSMALL, -ETOOSMALL },
198 { NFS4ERR_SERVERFAULT, -ESERVERFAULT },
199 { NFS4ERR_BADTYPE, -EBADTYPE },
200 { NFS4ERR_LOCKED, -EAGAIN },
201 { NFS4ERR_RESOURCE, -EREMOTEIO },
202 { NFS4ERR_SYMLINK, -ELOOP },
203 { NFS4ERR_OP_ILLEGAL, -EOPNOTSUPP },
204 { NFS4ERR_DEADLOCK, -EDEADLK },
205 { -1, -EIO }
206};
207
208/*
209 * If we cannot translate the error, the recovery routines should
210 * handle it.
211 *
212 * Note: remaining NFSv4 error codes have values > 10000, so should
213 * not conflict with native Linux error codes.
214 */
215static int nfs_cb_stat_to_errno(int status)
216{
217 int i;
218
219 for (i = 0; nfs_cb_errtbl[i].stat != -1; i++) {
220 if (nfs_cb_errtbl[i].stat == status)
221 return nfs_cb_errtbl[i].errno;
222 }
223
224 dprintk("NFSD: Unrecognized NFS CB status value: %u\n", status);
225 return -status;
226}
227
Stefan Agner47299f72018-03-19 23:37:05 +0100228static int decode_cb_op_status(struct xdr_stream *xdr,
229 enum nfs_cb_opnum4 expected, int *status)
Chuck Lever85a56482010-12-14 14:57:32 +0000230{
231 __be32 *p;
232 u32 op;
233
234 p = xdr_inline_decode(xdr, 4 + 4);
235 if (unlikely(p == NULL))
236 goto out_overflow;
237 op = be32_to_cpup(p++);
238 if (unlikely(op != expected))
239 goto out_unexpected;
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200240 *status = nfs_cb_stat_to_errno(be32_to_cpup(p));
Chuck Lever85a56482010-12-14 14:57:32 +0000241 return 0;
242out_overflow:
243 print_overflow_msg(__func__, xdr);
244 return -EIO;
245out_unexpected:
246 dprintk("NFSD: Callback server returned operation %d but "
247 "we issued a request for %d\n", op, expected);
248 return -EIO;
249}
250
251/*
Chuck Levera033db42010-12-14 14:57:22 +0000252 * CB_COMPOUND4args
253 *
254 * struct CB_COMPOUND4args {
255 * utf8str_cs tag;
256 * uint32_t minorversion;
257 * uint32_t callback_ident;
258 * nfs_cb_argop4 argarray<>;
259 * };
260*/
261static void encode_cb_compound4args(struct xdr_stream *xdr,
262 struct nfs4_cb_compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Al Virof00f3282006-10-19 23:29:01 -0700264 __be32 * p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Chuck Levera033db42010-12-14 14:57:22 +0000266 p = xdr_reserve_space(xdr, 4 + 4 + 4 + 4);
267 p = xdr_encode_empty_array(p); /* empty tag */
268 *p++ = cpu_to_be32(hdr->minorversion);
269 *p++ = cpu_to_be32(hdr->ident);
270
Andy Adamsonef52bff2009-06-16 04:20:50 +0300271 hdr->nops_p = p;
Chuck Levera033db42010-12-14 14:57:22 +0000272 *p = cpu_to_be32(hdr->nops); /* argarray element count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Chuck Levera033db42010-12-14 14:57:22 +0000275/*
276 * Update argarray element count
277 */
Andy Adamsonef52bff2009-06-16 04:20:50 +0300278static void encode_cb_nops(struct nfs4_cb_compound_hdr *hdr)
279{
Chuck Levera033db42010-12-14 14:57:22 +0000280 BUG_ON(hdr->nops > NFS4_MAX_BACK_CHANNEL_OPS);
281 *hdr->nops_p = cpu_to_be32(hdr->nops);
Andy Adamsonef52bff2009-06-16 04:20:50 +0300282}
283
Chuck Levera033db42010-12-14 14:57:22 +0000284/*
Chuck Lever85a56482010-12-14 14:57:32 +0000285 * CB_COMPOUND4res
286 *
287 * struct CB_COMPOUND4res {
288 * nfsstat4 status;
289 * utf8str_cs tag;
290 * nfs_cb_resop4 resarray<>;
291 * };
292 */
293static int decode_cb_compound4res(struct xdr_stream *xdr,
294 struct nfs4_cb_compound_hdr *hdr)
295{
296 u32 length;
297 __be32 *p;
298
299 p = xdr_inline_decode(xdr, 4 + 4);
300 if (unlikely(p == NULL))
301 goto out_overflow;
302 hdr->status = be32_to_cpup(p++);
303 /* Ignore the tag */
304 length = be32_to_cpup(p++);
305 p = xdr_inline_decode(xdr, length + 4);
306 if (unlikely(p == NULL))
307 goto out_overflow;
Kinglong Meee86a40b2017-02-05 09:57:37 +0800308 p += XDR_QUADLEN(length);
Chuck Lever85a56482010-12-14 14:57:32 +0000309 hdr->nops = be32_to_cpup(p);
310 return 0;
311out_overflow:
312 print_overflow_msg(__func__, xdr);
313 return -EIO;
314}
315
316/*
Chuck Levera033db42010-12-14 14:57:22 +0000317 * CB_RECALL4args
318 *
319 * struct CB_RECALL4args {
320 * stateid4 stateid;
321 * bool truncate;
322 * nfs_fh4 fh;
323 * };
324 */
325static void encode_cb_recall4args(struct xdr_stream *xdr,
326 const struct nfs4_delegation *dp,
327 struct nfs4_cb_compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Al Virof00f3282006-10-19 23:29:01 -0700329 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Chuck Levera033db42010-12-14 14:57:22 +0000331 encode_nfs_cb_opnum4(xdr, OP_CB_RECALL);
J. Bruce Fieldsd5477a82011-09-08 12:07:44 -0400332 encode_stateid4(xdr, &dp->dl_stid.sc_stateid);
Chuck Levera033db42010-12-14 14:57:22 +0000333
334 p = xdr_reserve_space(xdr, 4);
335 *p++ = xdr_zero; /* truncate */
336
Trond Myklebust11b91642014-07-29 21:34:08 -0400337 encode_nfs_fh4(xdr, &dp->dl_stid.sc_file->fi_fhandle);
Chuck Levera033db42010-12-14 14:57:22 +0000338
Andy Adamsonef52bff2009-06-16 04:20:50 +0300339 hdr->nops++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Chuck Levera033db42010-12-14 14:57:22 +0000342/*
343 * CB_SEQUENCE4args
344 *
345 * struct CB_SEQUENCE4args {
346 * sessionid4 csa_sessionid;
347 * sequenceid4 csa_sequenceid;
348 * slotid4 csa_slotid;
349 * slotid4 csa_highest_slotid;
350 * bool csa_cachethis;
351 * referring_call_list4 csa_referring_call_lists<>;
352 * };
353 */
354static void encode_cb_sequence4args(struct xdr_stream *xdr,
355 const struct nfsd4_callback *cb,
356 struct nfs4_cb_compound_hdr *hdr)
Benny Halevy2af73582009-09-10 12:26:51 +0300357{
Chuck Levera033db42010-12-14 14:57:22 +0000358 struct nfsd4_session *session = cb->cb_clp->cl_cb_session;
Benny Halevy2af73582009-09-10 12:26:51 +0300359 __be32 *p;
360
361 if (hdr->minorversion == 0)
362 return;
363
Chuck Levera033db42010-12-14 14:57:22 +0000364 encode_nfs_cb_opnum4(xdr, OP_CB_SEQUENCE);
365 encode_sessionid4(xdr, session);
Benny Halevy2af73582009-09-10 12:26:51 +0300366
Chuck Levera033db42010-12-14 14:57:22 +0000367 p = xdr_reserve_space(xdr, 4 + 4 + 4 + 4 + 4);
368 *p++ = cpu_to_be32(session->se_cb_seq_nr); /* csa_sequenceid */
369 *p++ = xdr_zero; /* csa_slotid */
370 *p++ = xdr_zero; /* csa_highest_slotid */
371 *p++ = xdr_zero; /* csa_cachethis */
372 xdr_encode_empty_array(p); /* csa_referring_call_lists */
373
Benny Halevy2af73582009-09-10 12:26:51 +0300374 hdr->nops++;
375}
376
Chuck Levera033db42010-12-14 14:57:22 +0000377/*
Chuck Lever85a56482010-12-14 14:57:32 +0000378 * CB_SEQUENCE4resok
379 *
380 * struct CB_SEQUENCE4resok {
381 * sessionid4 csr_sessionid;
382 * sequenceid4 csr_sequenceid;
383 * slotid4 csr_slotid;
384 * slotid4 csr_highest_slotid;
385 * slotid4 csr_target_highest_slotid;
386 * };
387 *
388 * union CB_SEQUENCE4res switch (nfsstat4 csr_status) {
389 * case NFS4_OK:
390 * CB_SEQUENCE4resok csr_resok4;
391 * default:
392 * void;
393 * };
394 *
395 * Our current back channel implmentation supports a single backchannel
396 * with a single slot.
397 */
398static int decode_cb_sequence4resok(struct xdr_stream *xdr,
399 struct nfsd4_callback *cb)
400{
401 struct nfsd4_session *session = cb->cb_clp->cl_cb_session;
Kinglong Mee82743382017-02-05 09:57:48 +0800402 int status = -ESERVERFAULT;
Chuck Lever85a56482010-12-14 14:57:32 +0000403 __be32 *p;
404 u32 dummy;
405
Chuck Lever85a56482010-12-14 14:57:32 +0000406 /*
407 * If the server returns different values for sessionID, slotID or
408 * sequence number, the server is looney tunes.
409 */
Benny Halevy2c9c8f32011-02-22 14:43:22 -0800410 p = xdr_inline_decode(xdr, NFS4_MAX_SESSIONID_LEN + 4 + 4 + 4 + 4);
Chuck Lever85a56482010-12-14 14:57:32 +0000411 if (unlikely(p == NULL))
412 goto out_overflow;
Kinglong Mee82743382017-02-05 09:57:48 +0800413
414 if (memcmp(p, session->se_sessionid.data, NFS4_MAX_SESSIONID_LEN)) {
Chuck Lever85a56482010-12-14 14:57:32 +0000415 dprintk("NFS: %s Invalid session id\n", __func__);
416 goto out;
417 }
418 p += XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN);
419
420 dummy = be32_to_cpup(p++);
421 if (dummy != session->se_cb_seq_nr) {
422 dprintk("NFS: %s Invalid sequence number\n", __func__);
423 goto out;
424 }
425
426 dummy = be32_to_cpup(p++);
427 if (dummy != 0) {
428 dprintk("NFS: %s Invalid slotid\n", __func__);
429 goto out;
430 }
431
432 /*
433 * FIXME: process highest slotid and target highest slotid
434 */
435 status = 0;
436out:
Kinglong Mee7ba6cad2015-06-24 16:33:37 +0800437 cb->cb_seq_status = status;
Chuck Lever85a56482010-12-14 14:57:32 +0000438 return status;
439out_overflow:
440 print_overflow_msg(__func__, xdr);
Kinglong Mee7ba6cad2015-06-24 16:33:37 +0800441 status = -EIO;
442 goto out;
Chuck Lever85a56482010-12-14 14:57:32 +0000443}
444
445static int decode_cb_sequence4res(struct xdr_stream *xdr,
446 struct nfsd4_callback *cb)
447{
Chuck Lever85a56482010-12-14 14:57:32 +0000448 int status;
449
Jeff Layton89dfdc92016-08-16 13:29:27 -0400450 if (cb->cb_clp->cl_minorversion == 0)
Chuck Lever85a56482010-12-14 14:57:32 +0000451 return 0;
452
Kinglong Mee7ba6cad2015-06-24 16:33:37 +0800453 status = decode_cb_op_status(xdr, OP_CB_SEQUENCE, &cb->cb_seq_status);
454 if (unlikely(status || cb->cb_seq_status))
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200455 return status;
456
457 return decode_cb_sequence4resok(xdr, cb);
Chuck Lever85a56482010-12-14 14:57:32 +0000458}
459
460/*
Chuck Levera033db42010-12-14 14:57:22 +0000461 * NFSv4.0 and NFSv4.1 XDR encode functions
462 *
463 * NFSv4.0 callback argument types are defined in section 15 of RFC
464 * 3530: "Network File System (NFS) version 4 Protocol" and section 20
465 * of RFC 5661: "Network File System (NFS) Version 4 Minor Version 1
466 * Protocol".
467 */
468
469/*
470 * NB: Without this zero space reservation, callbacks over krb5p fail
471 */
Chuck Lever9f06c712010-12-14 14:59:18 +0000472static void nfs4_xdr_enc_cb_null(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwig1502c812017-05-08 14:47:53 +0200473 const void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Chuck Levera033db42010-12-14 14:57:22 +0000475 xdr_reserve_space(xdr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Chuck Levera033db42010-12-14 14:57:22 +0000478/*
479 * 20.2. Operation 4: CB_RECALL - Recall a Delegation
480 */
Chuck Lever9f06c712010-12-14 14:59:18 +0000481static void nfs4_xdr_enc_cb_recall(struct rpc_rqst *req, struct xdr_stream *xdr,
Christoph Hellwig1502c812017-05-08 14:47:53 +0200482 const void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Christoph Hellwig1502c812017-05-08 14:47:53 +0200484 const struct nfsd4_callback *cb = data;
Jeff Layton34549ab2014-10-01 08:05:22 -0400485 const struct nfs4_delegation *dp = cb_to_delegation(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 struct nfs4_cb_compound_hdr hdr = {
J. Bruce Fields6ff8da02010-06-04 20:04:45 -0400487 .ident = cb->cb_clp->cl_cb_ident,
Jeff Layton89dfdc92016-08-16 13:29:27 -0400488 .minorversion = cb->cb_clp->cl_minorversion,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 };
490
Chuck Lever9f06c712010-12-14 14:59:18 +0000491 encode_cb_compound4args(xdr, &hdr);
492 encode_cb_sequence4args(xdr, cb, &hdr);
Christoph Hellwig2faf3b42014-09-24 12:19:16 +0200493 encode_cb_recall4args(xdr, dp, &hdr);
Andy Adamsonef52bff2009-06-16 04:20:50 +0300494 encode_cb_nops(&hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
497
Chuck Lever85a56482010-12-14 14:57:32 +0000498/*
499 * NFSv4.0 and NFSv4.1 XDR decode functions
500 *
501 * NFSv4.0 callback result types are defined in section 15 of RFC
502 * 3530: "Network File System (NFS) version 4 Protocol" and section 20
503 * of RFC 5661: "Network File System (NFS) Version 4 Minor Version 1
504 * Protocol".
505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Chuck Leverbf269552010-12-14 14:59:29 +0000507static int nfs4_xdr_dec_cb_null(struct rpc_rqst *req, struct xdr_stream *xdr,
508 void *__unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 0;
511}
512
Benny Halevy2af73582009-09-10 12:26:51 +0300513/*
Chuck Lever85a56482010-12-14 14:57:32 +0000514 * 20.2. Operation 4: CB_RECALL - Recall a Delegation
Benny Halevy2af73582009-09-10 12:26:51 +0300515 */
Chuck Leverbf269552010-12-14 14:59:29 +0000516static int nfs4_xdr_dec_cb_recall(struct rpc_rqst *rqstp,
517 struct xdr_stream *xdr,
Christoph Hellwigd39916c2017-05-08 15:04:45 +0200518 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Christoph Hellwigd39916c2017-05-08 15:04:45 +0200520 struct nfsd4_callback *cb = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct nfs4_cb_compound_hdr hdr;
522 int status;
523
Chuck Leverbf269552010-12-14 14:59:29 +0000524 status = decode_cb_compound4res(xdr, &hdr);
Chuck Lever85a56482010-12-14 14:57:32 +0000525 if (unlikely(status))
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200526 return status;
Chuck Lever85a56482010-12-14 14:57:32 +0000527
528 if (cb != NULL) {
Chuck Leverbf269552010-12-14 14:59:29 +0000529 status = decode_cb_sequence4res(xdr, cb);
Kinglong Mee7ba6cad2015-06-24 16:33:37 +0800530 if (unlikely(status || cb->cb_seq_status))
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200531 return status;
Ricardo Labiaga0421b5c2009-09-10 12:27:04 +0300532 }
Chuck Lever85a56482010-12-14 14:57:32 +0000533
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200534 return decode_cb_op_status(xdr, OP_CB_RECALL, &cb->cb_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200537#ifdef CONFIG_NFSD_PNFS
538/*
539 * CB_LAYOUTRECALL4args
540 *
541 * struct layoutrecall_file4 {
542 * nfs_fh4 lor_fh;
543 * offset4 lor_offset;
544 * length4 lor_length;
545 * stateid4 lor_stateid;
546 * };
547 *
548 * union layoutrecall4 switch(layoutrecall_type4 lor_recalltype) {
549 * case LAYOUTRECALL4_FILE:
550 * layoutrecall_file4 lor_layout;
551 * case LAYOUTRECALL4_FSID:
552 * fsid4 lor_fsid;
553 * case LAYOUTRECALL4_ALL:
554 * void;
555 * };
556 *
557 * struct CB_LAYOUTRECALL4args {
558 * layouttype4 clora_type;
559 * layoutiomode4 clora_iomode;
560 * bool clora_changed;
561 * layoutrecall4 clora_recall;
562 * };
563 */
564static void encode_cb_layout4args(struct xdr_stream *xdr,
565 const struct nfs4_layout_stateid *ls,
566 struct nfs4_cb_compound_hdr *hdr)
567{
568 __be32 *p;
569
570 BUG_ON(hdr->minorversion == 0);
571
572 p = xdr_reserve_space(xdr, 5 * 4);
573 *p++ = cpu_to_be32(OP_CB_LAYOUTRECALL);
574 *p++ = cpu_to_be32(ls->ls_layout_type);
575 *p++ = cpu_to_be32(IOMODE_ANY);
576 *p++ = cpu_to_be32(1);
577 *p = cpu_to_be32(RETURN_FILE);
578
579 encode_nfs_fh4(xdr, &ls->ls_stid.sc_file->fi_fhandle);
580
581 p = xdr_reserve_space(xdr, 2 * 8);
582 p = xdr_encode_hyper(p, 0);
583 xdr_encode_hyper(p, NFS4_MAX_UINT64);
584
585 encode_stateid4(xdr, &ls->ls_recall_sid);
586
587 hdr->nops++;
588}
589
590static void nfs4_xdr_enc_cb_layout(struct rpc_rqst *req,
591 struct xdr_stream *xdr,
Christoph Hellwig1502c812017-05-08 14:47:53 +0200592 const void *data)
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200593{
Christoph Hellwig1502c812017-05-08 14:47:53 +0200594 const struct nfsd4_callback *cb = data;
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200595 const struct nfs4_layout_stateid *ls =
596 container_of(cb, struct nfs4_layout_stateid, ls_recall);
597 struct nfs4_cb_compound_hdr hdr = {
598 .ident = 0,
Jeff Layton89dfdc92016-08-16 13:29:27 -0400599 .minorversion = cb->cb_clp->cl_minorversion,
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200600 };
601
602 encode_cb_compound4args(xdr, &hdr);
603 encode_cb_sequence4args(xdr, cb, &hdr);
604 encode_cb_layout4args(xdr, ls, &hdr);
605 encode_cb_nops(&hdr);
606}
607
608static int nfs4_xdr_dec_cb_layout(struct rpc_rqst *rqstp,
609 struct xdr_stream *xdr,
Christoph Hellwigd39916c2017-05-08 15:04:45 +0200610 void *data)
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200611{
Christoph Hellwigd39916c2017-05-08 15:04:45 +0200612 struct nfsd4_callback *cb = data;
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200613 struct nfs4_cb_compound_hdr hdr;
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200614 int status;
615
616 status = decode_cb_compound4res(xdr, &hdr);
617 if (unlikely(status))
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200618 return status;
619
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200620 if (cb) {
621 status = decode_cb_sequence4res(xdr, cb);
Kinglong Mee7ba6cad2015-06-24 16:33:37 +0800622 if (unlikely(status || cb->cb_seq_status))
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200623 return status;
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200624 }
Christoph Hellwigef2a1b32015-04-30 11:49:23 +0200625 return decode_cb_op_status(xdr, OP_CB_LAYOUTRECALL, &cb->cb_status);
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200626}
627#endif /* CONFIG_NFSD_PNFS */
628
Jeff Laytona188620e2016-09-16 16:28:23 -0400629static void encode_stateowner(struct xdr_stream *xdr, struct nfs4_stateowner *so)
630{
631 __be32 *p;
632
633 p = xdr_reserve_space(xdr, 8 + 4 + so->so_owner.len);
634 p = xdr_encode_opaque_fixed(p, &so->so_client->cl_clientid, 8);
635 xdr_encode_opaque(p, so->so_owner.data, so->so_owner.len);
636}
637
638static void nfs4_xdr_enc_cb_notify_lock(struct rpc_rqst *req,
639 struct xdr_stream *xdr,
Christoph Hellwig1502c812017-05-08 14:47:53 +0200640 const void *data)
Jeff Laytona188620e2016-09-16 16:28:23 -0400641{
Christoph Hellwig1502c812017-05-08 14:47:53 +0200642 const struct nfsd4_callback *cb = data;
Jeff Laytona188620e2016-09-16 16:28:23 -0400643 const struct nfsd4_blocked_lock *nbl =
644 container_of(cb, struct nfsd4_blocked_lock, nbl_cb);
645 struct nfs4_lockowner *lo = (struct nfs4_lockowner *)nbl->nbl_lock.fl_owner;
646 struct nfs4_cb_compound_hdr hdr = {
647 .ident = 0,
648 .minorversion = cb->cb_clp->cl_minorversion,
649 };
650
651 __be32 *p;
652
653 BUG_ON(hdr.minorversion == 0);
654
655 encode_cb_compound4args(xdr, &hdr);
656 encode_cb_sequence4args(xdr, cb, &hdr);
657
658 p = xdr_reserve_space(xdr, 4);
659 *p = cpu_to_be32(OP_CB_NOTIFY_LOCK);
660 encode_nfs_fh4(xdr, &nbl->nbl_fh);
661 encode_stateowner(xdr, &lo->lo_owner);
662 hdr.nops++;
663
664 encode_cb_nops(&hdr);
665}
666
667static int nfs4_xdr_dec_cb_notify_lock(struct rpc_rqst *rqstp,
668 struct xdr_stream *xdr,
Christoph Hellwigd39916c2017-05-08 15:04:45 +0200669 void *data)
Jeff Laytona188620e2016-09-16 16:28:23 -0400670{
Christoph Hellwigd39916c2017-05-08 15:04:45 +0200671 struct nfsd4_callback *cb = data;
Jeff Laytona188620e2016-09-16 16:28:23 -0400672 struct nfs4_cb_compound_hdr hdr;
673 int status;
674
675 status = decode_cb_compound4res(xdr, &hdr);
676 if (unlikely(status))
677 return status;
678
679 if (cb) {
680 status = decode_cb_sequence4res(xdr, cb);
681 if (unlikely(status || cb->cb_seq_status))
682 return status;
683 }
684 return decode_cb_op_status(xdr, OP_CB_NOTIFY_LOCK, &cb->cb_status);
685}
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687/*
Olga Kornievskaia9eb190fca8f2018-07-20 18:19:17 -0400688 * struct write_response4 {
689 * stateid4 wr_callback_id<1>;
690 * length4 wr_count;
691 * stable_how4 wr_committed;
692 * verifier4 wr_writeverf;
693 * };
694 * union offload_info4 switch (nfsstat4 coa_status) {
695 * case NFS4_OK:
696 * write_response4 coa_resok4;
697 * default:
698 * length4 coa_bytes_copied;
699 * };
700 * struct CB_OFFLOAD4args {
701 * nfs_fh4 coa_fh;
702 * stateid4 coa_stateid;
703 * offload_info4 coa_offload_info;
704 * };
705 */
706static void encode_offload_info4(struct xdr_stream *xdr,
707 __be32 nfserr,
708 const struct nfsd4_copy *cp)
709{
710 __be32 *p;
711
712 p = xdr_reserve_space(xdr, 4);
713 *p++ = nfserr;
714 if (!nfserr) {
715 p = xdr_reserve_space(xdr, 4 + 8 + 4 + NFS4_VERIFIER_SIZE);
716 p = xdr_encode_empty_array(p);
717 p = xdr_encode_hyper(p, cp->cp_res.wr_bytes_written);
718 *p++ = cpu_to_be32(cp->cp_res.wr_stable_how);
719 p = xdr_encode_opaque_fixed(p, cp->cp_res.wr_verifier.data,
720 NFS4_VERIFIER_SIZE);
721 } else {
722 p = xdr_reserve_space(xdr, 8);
723 /* We always return success if bytes were written */
724 p = xdr_encode_hyper(p, 0);
725 }
726}
727
728static void encode_cb_offload4args(struct xdr_stream *xdr,
729 __be32 nfserr,
730 const struct knfsd_fh *fh,
731 const struct nfsd4_copy *cp,
732 struct nfs4_cb_compound_hdr *hdr)
733{
734 __be32 *p;
735
736 p = xdr_reserve_space(xdr, 4);
737 *p++ = cpu_to_be32(OP_CB_OFFLOAD);
738 encode_nfs_fh4(xdr, fh);
739 encode_stateid4(xdr, &cp->cp_res.cb_stateid);
740 encode_offload_info4(xdr, nfserr, cp);
741
742 hdr->nops++;
743}
744
745static void nfs4_xdr_enc_cb_offload(struct rpc_rqst *req,
746 struct xdr_stream *xdr,
747 const void *data)
748{
749 const struct nfsd4_callback *cb = data;
750 const struct nfsd4_copy *cp =
751 container_of(cb, struct nfsd4_copy, cp_cb);
752 struct nfs4_cb_compound_hdr hdr = {
753 .ident = 0,
754 .minorversion = cb->cb_clp->cl_minorversion,
755 };
756
757 encode_cb_compound4args(xdr, &hdr);
758 encode_cb_sequence4args(xdr, cb, &hdr);
759 encode_cb_offload4args(xdr, cp->nfserr, &cp->fh, cp, &hdr);
760 encode_cb_nops(&hdr);
761}
762
763static int nfs4_xdr_dec_cb_offload(struct rpc_rqst *rqstp,
764 struct xdr_stream *xdr,
765 void *data)
766{
767 struct nfsd4_callback *cb = data;
768 struct nfs4_cb_compound_hdr hdr;
769 int status;
770
771 status = decode_cb_compound4res(xdr, &hdr);
772 if (unlikely(status))
773 return status;
774
775 if (cb) {
776 status = decode_cb_sequence4res(xdr, cb);
777 if (unlikely(status || cb->cb_seq_status))
778 return status;
779 }
780 return decode_cb_op_status(xdr, OP_CB_OFFLOAD, &cb->cb_status);
781}
782/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * RPC procedure tables
784 */
Chuck Lever7d93bd712010-12-14 14:57:42 +0000785#define PROC(proc, call, argtype, restype) \
786[NFSPROC4_CLNT_##proc] = { \
787 .p_proc = NFSPROC4_CB_##call, \
Christoph Hellwig1502c812017-05-08 14:47:53 +0200788 .p_encode = nfs4_xdr_enc_##argtype, \
Christoph Hellwigd39916c2017-05-08 15:04:45 +0200789 .p_decode = nfs4_xdr_dec_##restype, \
Chuck Lever7d93bd712010-12-14 14:57:42 +0000790 .p_arglen = NFS4_enc_##argtype##_sz, \
791 .p_replen = NFS4_dec_##restype##_sz, \
792 .p_statidx = NFSPROC4_CB_##call, \
793 .p_name = #proc, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Christoph Hellwig499b4982017-05-12 15:36:49 +0200796static const struct rpc_procinfo nfs4_cb_procedures[] = {
Chuck Lever7d93bd712010-12-14 14:57:42 +0000797 PROC(CB_NULL, NULL, cb_null, cb_null),
798 PROC(CB_RECALL, COMPOUND, cb_recall, cb_recall),
Christoph Hellwigc5c707f2014-09-23 12:38:48 +0200799#ifdef CONFIG_NFSD_PNFS
800 PROC(CB_LAYOUT, COMPOUND, cb_layout, cb_layout),
801#endif
Jeff Laytona188620e2016-09-16 16:28:23 -0400802 PROC(CB_NOTIFY_LOCK, COMPOUND, cb_notify_lock, cb_notify_lock),
Olga Kornievskaia9eb190fca8f2018-07-20 18:19:17 -0400803 PROC(CB_OFFLOAD, COMPOUND, cb_offload, cb_offload),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804};
805
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200806static unsigned int nfs4_cb_counts[ARRAY_SIZE(nfs4_cb_procedures)];
Christoph Hellwig02be49f2017-05-12 15:58:06 +0200807static const struct rpc_version nfs_cb_version4 = {
J. Bruce Fieldsb7299f42010-05-14 17:57:35 -0400808/*
809 * Note on the callback rpc program version number: despite language in rfc
810 * 5661 section 18.36.3 requiring servers to use 4 in this field, the
811 * official xdr descriptions for both 4.0 and 4.1 specify version 1, and
812 * in practice that appears to be what implementations use. The section
813 * 18.36.3 language is expected to be fixed in an erratum.
814 */
Chuck Lever7d93bd712010-12-14 14:57:42 +0000815 .number = 1,
816 .nrprocs = ARRAY_SIZE(nfs4_cb_procedures),
Christoph Hellwig1c5876d2017-05-08 23:27:10 +0200817 .procs = nfs4_cb_procedures,
818 .counts = nfs4_cb_counts,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819};
820
Trond Myklebusteff79362017-07-16 22:57:27 +0000821static const struct rpc_version *nfs_cb_version[2] = {
822 [1] = &nfs_cb_version4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823};
824
Trond Myklebusta613fa12012-01-20 13:53:56 -0500825static const struct rpc_program cb_program;
Olga Kornievskaiaff7d9752008-03-28 16:04:56 -0400826
827static struct rpc_stat cb_stats = {
Chuck Lever7d93bd712010-12-14 14:57:42 +0000828 .program = &cb_program
Olga Kornievskaiaff7d9752008-03-28 16:04:56 -0400829};
830
831#define NFS4_CALLBACK 0x40000000
Trond Myklebusta613fa12012-01-20 13:53:56 -0500832static const struct rpc_program cb_program = {
Chuck Lever7d93bd712010-12-14 14:57:42 +0000833 .name = "nfs4_cb",
834 .number = NFS4_CALLBACK,
835 .nrvers = ARRAY_SIZE(nfs_cb_version),
836 .version = nfs_cb_version,
837 .stats = &cb_stats,
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400838 .pipe_dir_name = "nfsd4_cb",
Olga Kornievskaiaff7d9752008-03-28 16:04:56 -0400839};
840
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +0300841static int max_cb_time(struct net *net)
J. Bruce Fields595947a2009-03-05 17:18:10 -0500842{
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +0300843 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
844 return max(nn->nfsd4_lease/10, (time_t)1) * HZ;
J. Bruce Fields595947a2009-03-05 17:18:10 -0500845}
846
Fengguang Wu2b4cf662012-11-13 15:41:27 -0500847static struct rpc_cred *get_backchannel_cred(struct nfs4_client *clp, struct rpc_clnt *client, struct nfsd4_session *ses)
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -0400848{
849 if (clp->cl_minorversion == 0) {
NeilBrown5e169232018-12-03 11:30:30 +1100850 client->cl_principal = clp->cl_cred.cr_targ_princ ?
851 clp->cl_cred.cr_targ_princ : "nfs";
Chuck Levercb25e7b2018-08-16 12:06:04 -0400852
NeilBrown5e169232018-12-03 11:30:30 +1100853 return get_rpccred(rpc_machine_cred());
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -0400854 } else {
855 struct rpc_auth *auth = client->cl_auth;
856 struct auth_cred acred = {};
NeilBrown97f68c6b2018-12-03 11:30:30 +1100857 struct cred *kcred;
858 struct rpc_cred *ret;
859
860 kcred = prepare_kernel_cred(NULL);
861 if (!kcred)
862 return NULL;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -0400863
NeilBrown8276c902018-12-03 11:30:30 +1100864 kcred->uid = ses->se_cb_sec.uid;
865 kcred->gid = ses->se_cb_sec.gid;
NeilBrown97f68c6b2018-12-03 11:30:30 +1100866 acred.cred = kcred;
867 ret = auth->au_ops->lookup_cred(client->cl_auth, &acred, 0);
868 put_cred(kcred);
869 return ret;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -0400870 }
871}
J. Bruce Fields2b47eec2007-07-27 18:06:50 -0400872
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400873static int setup_callback_client(struct nfs4_client *clp, struct nfs4_cb_conn *conn, struct nfsd4_session *ses)
J. Bruce Fields2b47eec2007-07-27 18:06:50 -0400874{
Jeff Layton3758cf72014-04-15 08:51:48 -0400875 int maxtime = max_cb_time(clp->net);
Chuck Leverae5c7942006-08-22 20:06:21 -0400876 struct rpc_timeout timeparms = {
Jeff Layton3758cf72014-04-15 08:51:48 -0400877 .to_initval = maxtime,
J. Bruce Fields595947a2009-03-05 17:18:10 -0500878 .to_retries = 0,
Jeff Layton3758cf72014-04-15 08:51:48 -0400879 .to_maxval = maxtime,
Chuck Leverae5c7942006-08-22 20:06:21 -0400880 };
Chuck Leverae5c7942006-08-22 20:06:21 -0400881 struct rpc_create_args args = {
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +0300882 .net = clp->net,
J. Bruce Fields07263f12010-05-31 19:09:40 -0400883 .address = (struct sockaddr *) &conn->cb_addr,
884 .addrsize = conn->cb_addrlen,
Takuma Umeya6f3d7722010-12-15 14:09:01 +0900885 .saddress = (struct sockaddr *) &conn->cb_saddr,
Chuck Leverae5c7942006-08-22 20:06:21 -0400886 .timeout = &timeparms,
Olga Kornievskaiaff7d9752008-03-28 16:04:56 -0400887 .program = &cb_program,
Trond Myklebusteff79362017-07-16 22:57:27 +0000888 .version = 1,
Olga Kornievskaiab6b61522008-06-09 16:51:31 -0400889 .flags = (RPC_CLNT_CREATE_NOPING | RPC_CLNT_CREATE_QUIET),
Chuck Leverae5c7942006-08-22 20:06:21 -0400890 };
J. Bruce Fields63c86712007-10-25 19:00:26 -0400891 struct rpc_clnt *client;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -0400892 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
J. Bruce Fields5d18c1c2010-10-19 23:00:12 -0400894 if (clp->cl_minorversion == 0) {
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -0400895 if (!clp->cl_cred.cr_principal &&
J. Bruce Fields39307652012-08-16 17:01:21 -0400896 (clp->cl_cred.cr_flavor >= RPC_AUTH_GSS_KRB5))
J. Bruce Fields5d18c1c2010-10-19 23:00:12 -0400897 return -EINVAL;
J. Bruce Fields03a4e1f2012-05-14 19:55:22 -0400898 args.client_name = clp->cl_cred.cr_principal;
Himangi Saraogifc8e5a62014-07-23 20:12:31 +0530899 args.prognumber = conn->cb_prog;
J. Bruce Fields5d18c1c2010-10-19 23:00:12 -0400900 args.protocol = XPRT_TRANSPORT_TCP;
J. Bruce Fields39307652012-08-16 17:01:21 -0400901 args.authflavor = clp->cl_cred.cr_flavor;
J. Bruce Fields5d18c1c2010-10-19 23:00:12 -0400902 clp->cl_cb_ident = conn->cb_ident;
903 } else {
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -0400904 if (!conn->cb_xprt)
905 return -EINVAL;
906 clp->cl_cb_conn.cb_xprt = conn->cb_xprt;
907 clp->cl_cb_session = ses;
J. Bruce Fields07263f12010-05-31 19:09:40 -0400908 args.bc_xprt = conn->cb_xprt;
J. Bruce Fields8b5ce5c2010-10-19 17:31:50 -0400909 args.prognumber = clp->cl_cb_session->se_cb_prog;
Chuck Lever3c45ddf2014-07-16 15:38:32 -0400910 args.protocol = conn->cb_xprt->xpt_class->xcl_ident |
911 XPRT_TRANSPORT_BC;
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500912 args.authflavor = ses->se_cb_sec.flavor;
Alexandros Batsakis3ddc8bf2009-09-10 12:27:21 +0300913 }
Chuck Leverae5c7942006-08-22 20:06:21 -0400914 /* Create RPC client */
J. Bruce Fieldsd50039e2016-05-16 17:03:42 -0400915 client = rpc_create(&args);
J. Bruce Fieldse1cab5a52009-02-23 10:45:27 -0800916 if (IS_ERR(client)) {
J. Bruce Fieldsa601cae2009-02-22 16:43:45 -0800917 dprintk("NFSD: couldn't create callback client: %ld\n",
918 PTR_ERR(client));
J. Bruce Fieldse1cab5a52009-02-23 10:45:27 -0800919 return PTR_ERR(client);
920 }
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -0400921 cred = get_backchannel_cred(clp, client, ses);
922 if (IS_ERR(cred)) {
923 rpc_shutdown_client(client);
924 return PTR_ERR(cred);
925 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -0400926 clp->cl_cb_client = client;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -0400927 clp->cl_cb_cred = cred;
J. Bruce Fieldse1cab5a52009-02-23 10:45:27 -0800928 return 0;
J. Bruce Fieldsa601cae2009-02-22 16:43:45 -0800929}
930
J. Bruce Fieldsecdd03b2009-02-23 19:35:22 -0800931static void warn_no_callback_path(struct nfs4_client *clp, int reason)
932{
933 dprintk("NFSD: warning: no callback path to client %.*s: error %d\n",
934 (int)clp->cl_name.len, clp->cl_name.data, reason);
935}
936
J. Bruce Fields77a35692010-04-30 18:51:44 -0400937static void nfsd4_mark_cb_down(struct nfs4_client *clp, int reason)
938{
J. Bruce Fieldsd4f72cb2015-11-24 15:43:03 -0700939 if (test_bit(NFSD4_CLIENT_CB_UPDATE, &clp->cl_flags))
940 return;
J. Bruce Fields77a35692010-04-30 18:51:44 -0400941 clp->cl_cb_state = NFSD4_CB_DOWN;
942 warn_no_callback_path(clp, reason);
943}
944
Benny Halevy54237322011-10-19 19:12:58 -0700945static void nfsd4_mark_cb_fault(struct nfs4_client *clp, int reason)
946{
J. Bruce Fieldsd4f72cb2015-11-24 15:43:03 -0700947 if (test_bit(NFSD4_CLIENT_CB_UPDATE, &clp->cl_flags))
948 return;
Benny Halevy54237322011-10-19 19:12:58 -0700949 clp->cl_cb_state = NFSD4_CB_FAULT;
950 warn_no_callback_path(clp, reason);
951}
952
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500953static void nfsd4_cb_probe_done(struct rpc_task *task, void *calldata)
954{
J. Bruce Fieldscee277d2010-05-26 17:52:14 -0400955 struct nfs4_client *clp = container_of(calldata, struct nfs4_client, cl_cb_null);
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500956
957 if (task->tk_status)
J. Bruce Fields77a35692010-04-30 18:51:44 -0400958 nfsd4_mark_cb_down(clp, task->tk_status);
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500959 else
J. Bruce Fields77a35692010-04-30 18:51:44 -0400960 clp->cl_cb_state = NFSD4_CB_UP;
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500961}
962
963static const struct rpc_call_ops nfsd4_cb_probe_ops = {
J. Bruce Fieldscee277d2010-05-26 17:52:14 -0400964 /* XXX: release method to ensure we set the cb channel down if
965 * necessary on early failure? */
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500966 .rpc_call_done = nfsd4_cb_probe_done,
967};
968
J. Bruce Fieldscee277d2010-05-26 17:52:14 -0400969static struct workqueue_struct *callback_wq;
J. Bruce Fields80fc0152009-09-15 18:07:35 -0400970
J. Bruce Fields63c86712007-10-25 19:00:26 -0400971/*
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -0400972 * Poke the callback thread to process any updates to the callback
973 * parameters, and send a null probe.
J. Bruce Fields63c86712007-10-25 19:00:26 -0400974 */
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -0400975void nfsd4_probe_callback(struct nfs4_client *clp)
976{
J. Bruce Fields77a35692010-04-30 18:51:44 -0400977 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
Jeff Laytona52d7262012-03-21 09:52:02 -0400978 set_bit(NFSD4_CLIENT_CB_UPDATE, &clp->cl_flags);
Christoph Hellwigf0b5de12014-09-24 12:19:18 +0200979 nfsd4_run_cb(&clp->cl_cb_null);
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -0400980}
981
J. Bruce Fields84f5f7c2010-12-09 15:52:19 -0500982void nfsd4_probe_callback_sync(struct nfs4_client *clp)
983{
984 nfsd4_probe_callback(clp);
985 flush_workqueue(callback_wq);
986}
987
J. Bruce Fields5a3c9d72010-10-19 17:56:52 -0400988void nfsd4_change_callback(struct nfs4_client *clp, struct nfs4_cb_conn *conn)
J. Bruce Fields63c86712007-10-25 19:00:26 -0400989{
J. Bruce Fields77a35692010-04-30 18:51:44 -0400990 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
J. Bruce Fields6ff8da02010-06-04 20:04:45 -0400991 spin_lock(&clp->cl_lock);
992 memcpy(&clp->cl_cb_conn, conn, sizeof(struct nfs4_cb_conn));
J. Bruce Fields6ff8da02010-06-04 20:04:45 -0400993 spin_unlock(&clp->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +0300996/*
997 * There's currently a single callback channel slot.
998 * If the slot is available, then mark it busy. Otherwise, set the
999 * thread for sleeping on the callback RPC wait queue.
1000 */
J. Bruce Fields3ff36002011-01-10 16:37:51 -05001001static bool nfsd41_cb_get_slot(struct nfs4_client *clp, struct rpc_task *task)
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001002{
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001003 if (test_and_set_bit(0, &clp->cl_cb_slot_busy) != 0) {
1004 rpc_sleep_on(&clp->cl_cb_waitq, task, NULL);
Trond Myklebustc6c15e12014-11-19 12:47:50 -05001005 /* Race breaker */
1006 if (test_and_set_bit(0, &clp->cl_cb_slot_busy) != 0) {
1007 dprintk("%s slot is busy\n", __func__);
1008 return false;
1009 }
1010 rpc_wake_up_queued_task(&clp->cl_cb_waitq, task);
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001011 }
J. Bruce Fields3ff36002011-01-10 16:37:51 -05001012 return true;
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001013}
1014
1015/*
1016 * TODO: cb_sequence should support referring call lists, cachethis, multiple
1017 * slots, and mark callback channel down on communication errors.
1018 */
1019static void nfsd4_cb_prepare(struct rpc_task *task, void *calldata)
1020{
J. Bruce Fields58784532010-05-16 16:47:08 -04001021 struct nfsd4_callback *cb = calldata;
J. Bruce Fields8be2d232013-03-21 10:59:29 -04001022 struct nfs4_client *clp = cb->cb_clp;
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04001023 u32 minorversion = clp->cl_minorversion;
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001024
Kinglong Mee7ba6cad2015-06-24 16:33:37 +08001025 /*
1026 * cb_seq_status is only set in decode_cb_sequence4res,
1027 * and so will remain 1 if an rpc level failure occurs.
1028 */
1029 cb->cb_seq_status = 1;
Kinglong Mee43993962015-06-02 18:59:19 +08001030 cb->cb_status = 0;
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001031 if (minorversion) {
J. Bruce Fields3ff36002011-01-10 16:37:51 -05001032 if (!nfsd41_cb_get_slot(clp, task))
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001033 return;
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001034 }
1035 rpc_call_start(task);
1036}
1037
Kinglong Mee7ba6cad2015-06-24 16:33:37 +08001038static bool nfsd4_cb_sequence_done(struct rpc_task *task, struct nfsd4_callback *cb)
1039{
1040 struct nfs4_client *clp = cb->cb_clp;
1041 struct nfsd4_session *session = clp->cl_cb_session;
1042 bool ret = true;
1043
1044 if (!clp->cl_minorversion) {
1045 /*
1046 * If the backchannel connection was shut down while this
1047 * task was queued, we need to resubmit it after setting up
1048 * a new backchannel connection.
1049 *
1050 * Note that if we lost our callback connection permanently
1051 * the submission code will error out, so we don't need to
1052 * handle that case here.
1053 */
1054 if (task->tk_flags & RPC_TASK_KILLED)
1055 goto need_restart;
1056
1057 return true;
1058 }
1059
1060 switch (cb->cb_seq_status) {
1061 case 0:
1062 /*
1063 * No need for lock, access serialized in nfsd4_cb_prepare
1064 *
1065 * RFC5661 20.9.3
1066 * If CB_SEQUENCE returns an error, then the state of the slot
1067 * (sequence ID, cached reply) MUST NOT change.
1068 */
1069 ++session->se_cb_seq_nr;
1070 break;
1071 case -ESERVERFAULT:
1072 ++session->se_cb_seq_nr;
Gustavo A. R. Silva7b4d6da2018-07-31 21:24:10 -05001073 /* Fall through */
Kinglong Mee7ba6cad2015-06-24 16:33:37 +08001074 case 1:
1075 case -NFS4ERR_BADSESSION:
1076 nfsd4_mark_cb_fault(cb->cb_clp, cb->cb_seq_status);
1077 ret = false;
1078 break;
1079 case -NFS4ERR_DELAY:
1080 if (!rpc_restart_call(task))
1081 goto out;
1082
1083 rpc_delay(task, 2 * HZ);
1084 return false;
1085 case -NFS4ERR_BADSLOT:
1086 goto retry_nowait;
1087 case -NFS4ERR_SEQ_MISORDERED:
1088 if (session->se_cb_seq_nr != 1) {
1089 session->se_cb_seq_nr = 1;
1090 goto retry_nowait;
1091 }
1092 break;
1093 default:
1094 dprintk("%s: unprocessed error %d\n", __func__,
1095 cb->cb_seq_status);
1096 }
1097
1098 clear_bit(0, &clp->cl_cb_slot_busy);
1099 rpc_wake_up_next(&clp->cl_cb_waitq);
1100 dprintk("%s: freed slot, new seqid=%d\n", __func__,
1101 clp->cl_cb_session->se_cb_seq_nr);
1102
1103 if (task->tk_flags & RPC_TASK_KILLED)
1104 goto need_restart;
1105out:
1106 return ret;
1107retry_nowait:
1108 if (rpc_restart_call_prepare(task))
1109 ret = false;
1110 goto out;
1111need_restart:
1112 task->tk_status = 0;
1113 cb->cb_need_restart = true;
1114 return false;
1115}
1116
Ricardo Labiaga0421b5c2009-09-10 12:27:04 +03001117static void nfsd4_cb_done(struct rpc_task *task, void *calldata)
1118{
J. Bruce Fields58784532010-05-16 16:47:08 -04001119 struct nfsd4_callback *cb = calldata;
J. Bruce Fields8be2d232013-03-21 10:59:29 -04001120 struct nfs4_client *clp = cb->cb_clp;
Ricardo Labiaga0421b5c2009-09-10 12:27:04 +03001121
1122 dprintk("%s: minorversion=%d\n", __func__,
J. Bruce Fields8323c3b2010-10-19 19:36:51 -04001123 clp->cl_minorversion);
Ricardo Labiaga0421b5c2009-09-10 12:27:04 +03001124
Kinglong Mee7ba6cad2015-06-24 16:33:37 +08001125 if (!nfsd4_cb_sequence_done(task, cb))
J. Bruce Fields4b21d0d2010-03-07 23:39:01 -05001126 return;
J. Bruce Fields4b21d0d2010-03-07 23:39:01 -05001127
Christoph Hellwigef2a1b32015-04-30 11:49:23 +02001128 if (cb->cb_status) {
1129 WARN_ON_ONCE(task->tk_status);
1130 task->tk_status = cb->cb_status;
1131 }
1132
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001133 switch (cb->cb_ops->done(cb, task)) {
J. Bruce Fields172c85d2010-05-30 11:53:12 -04001134 case 0:
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001135 task->tk_status = 0;
1136 rpc_restart_call_prepare(task);
1137 return;
1138 case 1:
Christoph Hellwig444b6e92014-09-23 08:58:48 +02001139 break;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001140 case -1:
J. Bruce Fields63e48632009-05-01 22:36:55 -04001141 /* Network partition? */
J. Bruce Fields77a35692010-04-30 18:51:44 -04001142 nfsd4_mark_cb_down(clp, task->tk_status);
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001143 break;
1144 default:
1145 BUG();
J. Bruce Fields63e48632009-05-01 22:36:55 -04001146 }
J. Bruce Fields63e48632009-05-01 22:36:55 -04001147}
1148
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001149static void nfsd4_cb_release(void *calldata)
J. Bruce Fields63e48632009-05-01 22:36:55 -04001150{
J. Bruce Fields58784532010-05-16 16:47:08 -04001151 struct nfsd4_callback *cb = calldata;
J. Bruce Fields63e48632009-05-01 22:36:55 -04001152
Christoph Hellwigcba5f622015-04-30 11:49:24 +02001153 if (cb->cb_need_restart)
1154 nfsd4_run_cb(cb);
1155 else
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001156 cb->cb_ops->release(cb);
Christoph Hellwigcba5f622015-04-30 11:49:24 +02001157
J. Bruce Fields63e48632009-05-01 22:36:55 -04001158}
1159
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001160static const struct rpc_call_ops nfsd4_cb_ops = {
Ricardo Labiaga2a1d1b52009-09-10 12:26:38 +03001161 .rpc_call_prepare = nfsd4_cb_prepare,
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001162 .rpc_call_done = nfsd4_cb_done,
1163 .rpc_release = nfsd4_cb_release,
J. Bruce Fields63e48632009-05-01 22:36:55 -04001164};
1165
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001166int nfsd4_create_callback_queue(void)
1167{
J. Bruce Fields88382032016-11-14 11:13:43 -05001168 callback_wq = alloc_ordered_workqueue("nfsd4_callbacks", 0);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001169 if (!callback_wq)
1170 return -ENOMEM;
1171 return 0;
1172}
1173
1174void nfsd4_destroy_callback_queue(void)
1175{
1176 destroy_workqueue(callback_wq);
1177}
1178
Benny Halevyab707e152010-05-12 00:14:06 +03001179/* must be called under the state lock */
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001180void nfsd4_shutdown_callback(struct nfs4_client *clp)
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001181{
Jeff Laytona52d7262012-03-21 09:52:02 -04001182 set_bit(NFSD4_CLIENT_CB_KILL, &clp->cl_flags);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001183 /*
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001184 * Note this won't actually result in a null callback;
Jeff Layton02e12152014-07-16 10:31:57 -04001185 * instead, nfsd4_run_cb_null() will detect the killed
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001186 * client, destroy the rpc client, and stop:
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001187 */
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02001188 nfsd4_run_cb(&clp->cl_cb_null);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001189 flush_workqueue(callback_wq);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001190}
1191
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001192/* requires cl_lock: */
1193static struct nfsd4_conn * __nfsd4_find_backchannel(struct nfs4_client *clp)
1194{
1195 struct nfsd4_session *s;
1196 struct nfsd4_conn *c;
1197
1198 list_for_each_entry(s, &clp->cl_sessions, se_perclnt) {
1199 list_for_each_entry(c, &s->se_conns, cn_persession) {
1200 if (c->cn_flags & NFS4_CDFC4_BACK)
1201 return c;
1202 }
1203 }
1204 return NULL;
1205}
1206
Kirill A. Shutemov65e4c892010-12-16 15:25:54 +02001207static void nfsd4_process_cb_update(struct nfsd4_callback *cb)
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001208{
1209 struct nfs4_cb_conn conn;
1210 struct nfs4_client *clp = cb->cb_clp;
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001211 struct nfsd4_session *ses = NULL;
1212 struct nfsd4_conn *c;
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001213 int err;
1214
1215 /*
1216 * This is either an update, or the client dying; in either case,
1217 * kill the old client:
1218 */
1219 if (clp->cl_cb_client) {
1220 rpc_shutdown_client(clp->cl_cb_client);
1221 clp->cl_cb_client = NULL;
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001222 put_rpccred(clp->cl_cb_cred);
1223 clp->cl_cb_cred = NULL;
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001224 }
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001225 if (clp->cl_cb_conn.cb_xprt) {
1226 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
1227 clp->cl_cb_conn.cb_xprt = NULL;
1228 }
Jeff Laytona52d7262012-03-21 09:52:02 -04001229 if (test_bit(NFSD4_CLIENT_CB_KILL, &clp->cl_flags))
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001230 return;
1231 spin_lock(&clp->cl_lock);
1232 /*
1233 * Only serialized callback code is allowed to clear these
1234 * flags; main nfsd code can only set them:
1235 */
Jeff Laytona52d7262012-03-21 09:52:02 -04001236 BUG_ON(!(clp->cl_flags & NFSD4_CLIENT_CB_FLAG_MASK));
1237 clear_bit(NFSD4_CLIENT_CB_UPDATE, &clp->cl_flags);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001238 memcpy(&conn, &cb->cb_clp->cl_cb_conn, sizeof(struct nfs4_cb_conn));
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001239 c = __nfsd4_find_backchannel(clp);
1240 if (c) {
1241 svc_xprt_get(c->cn_xprt);
1242 conn.cb_xprt = c->cn_xprt;
1243 ses = c->cn_session;
1244 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001245 spin_unlock(&clp->cl_lock);
1246
J. Bruce Fieldsdcbeaa62010-06-15 17:25:45 -04001247 err = setup_callback_client(clp, &conn, ses);
J. Bruce Fields5ce8ba22011-01-10 16:44:41 -05001248 if (err) {
J. Bruce Fields8546ee52012-03-09 17:02:28 -05001249 nfsd4_mark_cb_down(clp, err);
J. Bruce Fields5ce8ba22011-01-10 16:44:41 -05001250 return;
1251 }
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001252}
1253
Jeff Layton02e12152014-07-16 10:31:57 -04001254static void
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001255nfsd4_run_cb_work(struct work_struct *work)
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001256{
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001257 struct nfsd4_callback *cb =
1258 container_of(work, struct nfsd4_callback, cb_work);
J. Bruce Fieldsfb003922010-05-31 18:21:37 -04001259 struct nfs4_client *clp = cb->cb_clp;
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001260 struct rpc_clnt *clnt;
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001261
Christoph Hellwigcba5f622015-04-30 11:49:24 +02001262 if (cb->cb_need_restart) {
1263 cb->cb_need_restart = false;
1264 } else {
1265 if (cb->cb_ops && cb->cb_ops->prepare)
1266 cb->cb_ops->prepare(cb);
1267 }
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001268
Jeff Laytona52d7262012-03-21 09:52:02 -04001269 if (clp->cl_flags & NFSD4_CLIENT_CB_FLAG_MASK)
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001270 nfsd4_process_cb_update(cb);
1271
1272 clnt = clp->cl_cb_client;
1273 if (!clnt) {
1274 /* Callback channel broken, or client killed; give up: */
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001275 if (cb->cb_ops && cb->cb_ops->release)
1276 cb->cb_ops->release(cb);
J. Bruce Fields6ff8da02010-06-04 20:04:45 -04001277 return;
J. Bruce Fields58784532010-05-16 16:47:08 -04001278 }
Christoph Hellwig4bd9e9b2015-04-30 11:49:25 +02001279
1280 /*
1281 * Don't send probe messages for 4.1 or later.
1282 */
1283 if (!cb->cb_ops && clp->cl_minorversion) {
1284 clp->cl_cb_state = NFSD4_CB_UP;
1285 return;
1286 }
1287
J. Bruce Fieldsc6bb3ca2012-11-01 16:31:02 -04001288 cb->cb_msg.rpc_cred = clp->cl_cb_cred;
J. Bruce Fieldscee277d2010-05-26 17:52:14 -04001289 rpc_call_async(clnt, &cb->cb_msg, RPC_TASK_SOFT | RPC_TASK_SOFTCONN,
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001290 cb->cb_ops ? &nfsd4_cb_ops : &nfsd4_cb_probe_ops, cb);
Jeff Layton02e12152014-07-16 10:31:57 -04001291}
1292
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02001293void nfsd4_init_cb(struct nfsd4_callback *cb, struct nfs4_client *clp,
Julia Lawallc4cb8972015-11-21 22:57:39 +01001294 const struct nfsd4_callback_ops *ops, enum nfsd4_cb_op op)
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001295{
J. Bruce Fields5ce8ba22011-01-10 16:44:41 -05001296 cb->cb_clp = clp;
Christoph Hellwig326129d2014-09-24 12:19:17 +02001297 cb->cb_msg.rpc_proc = &nfs4_cb_procedures[op];
J. Bruce Fieldsfb003922010-05-31 18:21:37 -04001298 cb->cb_msg.rpc_argp = cb;
1299 cb->cb_msg.rpc_resp = cb;
Christoph Hellwig0162ac22014-09-24 12:19:19 +02001300 cb->cb_ops = ops;
1301 INIT_WORK(&cb->cb_work, nfsd4_run_cb_work);
Kinglong Mee7ba6cad2015-06-24 16:33:37 +08001302 cb->cb_seq_status = 1;
Christoph Hellwigef2a1b32015-04-30 11:49:23 +02001303 cb->cb_status = 0;
Christoph Hellwigcba5f622015-04-30 11:49:24 +02001304 cb->cb_need_restart = false;
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02001305}
J. Bruce Fields5ce8ba22011-01-10 16:44:41 -05001306
Christoph Hellwigf0b5de12014-09-24 12:19:18 +02001307void nfsd4_run_cb(struct nfsd4_callback *cb)
1308{
Christoph Hellwig326129d2014-09-24 12:19:17 +02001309 queue_work(callback_wq, &cb->cb_work);
J. Bruce Fieldsb5a1a812010-03-03 14:52:55 -05001310}