blob: 07258d269e5ae76aafa16182af4030cbb215507a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/callback_proc.c
3 *
4 * Copyright (C) 2004 Trond Myklebust
5 *
6 * NFSv4 callback procedures
7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/nfs4.h>
9#include <linux/nfs_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Trond Myklebust2446ab62012-03-01 17:00:56 -050011#include <linux/rcupdate.h>
Trond Myklebust4ce79712005-06-22 17:16:21 +000012#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "callback.h"
14#include "delegation.h"
David Howells24c8dbb2006-08-22 20:06:10 -040015#include "internal.h"
Fred Isaman43f1b3d2011-01-06 11:36:30 +000016#include "pnfs.h"
Trond Myklebust73e39aa2012-11-26 12:49:34 -050017#include "nfs4session.h"
Trond Myklebustca8acf82013-08-13 10:36:56 -040018#include "nfs4trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Chuck Lever1d98fe62007-12-10 14:57:23 -050020#ifdef NFS_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define NFSDBG_FACILITY NFSDBG_CALLBACK
Chuck Lever1d98fe62007-12-10 14:57:23 -050022#endif
Andy Adamsonc36fca52011-01-06 02:04:32 +000023
24__be32 nfs4_callback_getattr(struct cb_getattrargs *args,
25 struct cb_getattrres *res,
26 struct cb_process_state *cps)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 struct nfs_delegation *delegation;
29 struct nfs_inode *nfsi;
30 struct inode *inode;
Chuck Lever1d98fe62007-12-10 14:57:23 -050031
Andy Adamsonc36fca52011-01-06 02:04:32 +000032 res->status = htonl(NFS4ERR_OP_NOT_IN_SESSION);
33 if (!cps->clp) /* Always set for v4.0. Set in cb_sequence for v4.1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 goto out;
Chuck Lever1d98fe62007-12-10 14:57:23 -050035
Andy Adamsonc36fca52011-01-06 02:04:32 +000036 res->bitmap[0] = res->bitmap[1] = 0;
37 res->status = htonl(NFS4ERR_BADHANDLE);
Chuck Lever1d98fe62007-12-10 14:57:23 -050038
Trond Myklebust2446ab62012-03-01 17:00:56 -050039 dprintk_rcu("NFS: GETATTR callback request from %s\n",
Andy Adamsonc36fca52011-01-06 02:04:32 +000040 rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR));
41
42 inode = nfs_delegation_find_inode(cps->clp, &args->fh);
Trond Myklebust7cd14862015-08-20 20:07:54 -050043 if (inode == NULL) {
44 trace_nfs4_cb_getattr(cps->clp, &args->fh, inode,
45 -ntohl(res->status));
Andy Adamsonc36fca52011-01-06 02:04:32 +000046 goto out;
Trond Myklebust7cd14862015-08-20 20:07:54 -050047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 nfsi = NFS_I(inode);
Trond Myklebust761fe932010-08-04 09:29:52 -040049 rcu_read_lock();
50 delegation = rcu_dereference(nfsi->delegation);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 if (delegation == NULL || (delegation->type & FMODE_WRITE) == 0)
52 goto out_iput;
53 res->size = i_size_read(inode);
Trond Myklebustbeb2a5e2006-01-03 09:55:37 +010054 res->change_attr = delegation->change_attr;
Weston Andros Adamsoncb1410c2014-11-12 12:08:00 -050055 if (nfsi->nrequests != 0)
Trond Myklebustbeb2a5e2006-01-03 09:55:37 +010056 res->change_attr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 res->ctime = inode->i_ctime;
58 res->mtime = inode->i_mtime;
59 res->bitmap[0] = (FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE) &
60 args->bitmap[0];
61 res->bitmap[1] = (FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY) &
62 args->bitmap[1];
63 res->status = 0;
64out_iput:
Trond Myklebust761fe932010-08-04 09:29:52 -040065 rcu_read_unlock();
Trond Myklebust7cd14862015-08-20 20:07:54 -050066 trace_nfs4_cb_getattr(cps->clp, &args->fh, inode, -ntohl(res->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068out:
Harvey Harrison3110ff82008-05-02 13:42:44 -070069 dprintk("%s: exit with status = %d\n", __func__, ntohl(res->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 return res->status;
71}
72
Andy Adamsonc36fca52011-01-06 02:04:32 +000073__be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy,
74 struct cb_process_state *cps)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct inode *inode;
Al Viroe6f684f2006-10-19 23:28:50 -070077 __be32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Andy Adamsonc36fca52011-01-06 02:04:32 +000079 res = htonl(NFS4ERR_OP_NOT_IN_SESSION);
80 if (!cps->clp) /* Always set for v4.0. Set in cb_sequence for v4.1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 goto out;
Chuck Lever1d98fe62007-12-10 14:57:23 -050082
Trond Myklebust2446ab62012-03-01 17:00:56 -050083 dprintk_rcu("NFS: RECALL callback request from %s\n",
Andy Adamsonc36fca52011-01-06 02:04:32 +000084 rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR));
Chuck Lever1d98fe62007-12-10 14:57:23 -050085
Andy Adamsonc36fca52011-01-06 02:04:32 +000086 res = htonl(NFS4ERR_BADHANDLE);
87 inode = nfs_delegation_find_inode(cps->clp, &args->fh);
88 if (inode == NULL)
89 goto out;
90 /* Set up a helper thread to actually return the delegation */
91 switch (nfs_async_inode_return_delegation(inode, &args->stateid)) {
92 case 0:
93 res = 0;
94 break;
95 case -ENOENT:
Trond Myklebust8e663f02012-03-04 18:13:56 -050096 res = htonl(NFS4ERR_BAD_STATEID);
Andy Adamsonc36fca52011-01-06 02:04:32 +000097 break;
98 default:
99 res = htonl(NFS4ERR_RESOURCE);
100 }
Trond Myklebustca8acf82013-08-13 10:36:56 -0400101 trace_nfs4_recall_delegation(inode, -ntohl(res));
Andy Adamsonc36fca52011-01-06 02:04:32 +0000102 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700104 dprintk("%s: exit with status = %d\n", __func__, ntohl(res));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return res;
106}
Benny Halevyd49433e2009-04-01 09:23:25 -0400107
108#if defined(CONFIG_NFS_V4_1)
109
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200110/*
111 * Lookup a layout by filehandle.
112 *
113 * Note: gets a refcount on the layout hdr and on its respective inode.
114 * Caller must put the layout hdr and the inode.
115 *
116 * TODO: keep track of all layouts (and delegations) in a hash table
117 * hashed by filehandle.
118 */
Trond Myklebust27999f22014-02-12 08:12:42 -0500119static struct pnfs_layout_hdr * get_layout_by_fh_locked(struct nfs_client *clp,
120 struct nfs_fh *fh, nfs4_stateid *stateid)
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000121{
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400122 struct nfs_server *server;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000123 struct inode *ino;
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200124 struct pnfs_layout_hdr *lo;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000125
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400126 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
127 list_for_each_entry(lo, &server->layouts, plh_layouts) {
Trond Myklebust27999f22014-02-12 08:12:42 -0500128 if (!nfs4_stateid_match_other(&lo->plh_stateid, stateid))
129 continue;
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200130 if (nfs_compare_fh(fh, &NFS_I(lo->plh_inode)->fh))
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400131 continue;
132 ino = igrab(lo->plh_inode);
133 if (!ino)
Trond Myklebust9a7fe9e82014-02-12 08:17:00 -0500134 break;
Trond Myklebust9c626382012-09-20 17:31:43 -0400135 spin_lock(&ino->i_lock);
136 /* Is this layout in the process of being freed? */
137 if (NFS_I(ino)->layout != lo) {
138 spin_unlock(&ino->i_lock);
139 iput(ino);
Trond Myklebust9a7fe9e82014-02-12 08:17:00 -0500140 break;
Trond Myklebust9c626382012-09-20 17:31:43 -0400141 }
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400142 pnfs_get_layout_hdr(lo);
Trond Myklebust9c626382012-09-20 17:31:43 -0400143 spin_unlock(&ino->i_lock);
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200144 return lo;
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400145 }
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000146 }
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200147
148 return NULL;
149}
150
Trond Myklebust27999f22014-02-12 08:12:42 -0500151static struct pnfs_layout_hdr * get_layout_by_fh(struct nfs_client *clp,
152 struct nfs_fh *fh, nfs4_stateid *stateid)
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200153{
154 struct pnfs_layout_hdr *lo;
155
156 spin_lock(&clp->cl_lock);
157 rcu_read_lock();
Trond Myklebust27999f22014-02-12 08:12:42 -0500158 lo = get_layout_by_fh_locked(clp, fh, stateid);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400159 rcu_read_unlock();
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000160 spin_unlock(&clp->cl_lock);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400161
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200162 return lo;
163}
164
165static u32 initiate_file_draining(struct nfs_client *clp,
166 struct cb_layoutrecallargs *args)
167{
168 struct inode *ino;
169 struct pnfs_layout_hdr *lo;
170 u32 rv = NFS4ERR_NOMATCHING_LAYOUT;
171 LIST_HEAD(free_me_list);
172
Trond Myklebust27999f22014-02-12 08:12:42 -0500173 lo = get_layout_by_fh(clp, &args->cbl_fh, &args->cbl_stateid);
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200174 if (!lo)
Trond Myklebust27999f22014-02-12 08:12:42 -0500175 goto out;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000176
Benny Halevyd36b7cf2012-01-22 16:03:39 +0200177 ino = lo->plh_inode;
Christoph Hellwig7c5d1872014-09-10 08:23:29 -0700178
179 spin_lock(&ino->i_lock);
180 pnfs_set_layout_stateid(lo, &args->cbl_stateid, true);
181 spin_unlock(&ino->i_lock);
182
183 pnfs_layoutcommit_inode(ino, false);
184
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000185 spin_lock(&ino->i_lock);
186 if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags) ||
Trond Myklebust49a85062012-09-18 20:43:31 -0400187 pnfs_mark_matching_lsegs_invalid(lo, &free_me_list,
Christoph Hellwigc88953d2014-09-10 08:23:31 -0700188 &args->cbl_range)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000189 rv = NFS4ERR_DELAY;
Christoph Hellwigc88953d2014-09-10 08:23:31 -0700190 goto unlock;
191 }
192
193 if (NFS_SERVER(ino)->pnfs_curr_ld->return_range) {
194 NFS_SERVER(ino)->pnfs_curr_ld->return_range(lo,
195 &args->cbl_range);
196 }
197unlock:
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000198 spin_unlock(&ino->i_lock);
199 pnfs_free_lseg_list(&free_me_list);
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400200 pnfs_put_layout_hdr(lo);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000201 iput(ino);
Trond Myklebust27999f22014-02-12 08:12:42 -0500202out:
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000203 return rv;
204}
205
206static u32 initiate_bulk_draining(struct nfs_client *clp,
207 struct cb_layoutrecallargs *args)
208{
Trond Myklebustfd9a8d72013-02-12 09:48:42 -0500209 int stat;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000210
Trond Myklebustfd9a8d72013-02-12 09:48:42 -0500211 if (args->cbl_recall_type == RETURN_FSID)
212 stat = pnfs_destroy_layouts_byfsid(clp, &args->cbl_fsid, true);
213 else
214 stat = pnfs_destroy_layouts_byclid(clp, true);
215 if (stat != 0)
216 return NFS4ERR_DELAY;
217 return NFS4ERR_NOMATCHING_LAYOUT;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000218}
219
220static u32 do_callback_layoutrecall(struct nfs_client *clp,
221 struct cb_layoutrecallargs *args)
222{
Trond Myklebust0cb32842012-03-01 11:17:50 -0500223 u32 res;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000224
225 dprintk("%s enter, type=%i\n", __func__, args->cbl_recall_type);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000226 if (args->cbl_recall_type == RETURN_FILE)
227 res = initiate_file_draining(clp, args);
228 else
229 res = initiate_bulk_draining(clp, args);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000230 dprintk("%s returning %i\n", __func__, res);
231 return res;
232
233}
234
Fred Isamanf2a62562011-01-06 11:36:29 +0000235__be32 nfs4_callback_layoutrecall(struct cb_layoutrecallargs *args,
236 void *dummy, struct cb_process_state *cps)
237{
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000238 u32 res;
239
240 dprintk("%s: -->\n", __func__);
241
242 if (cps->clp)
243 res = do_callback_layoutrecall(cps->clp, args);
244 else
245 res = NFS4ERR_OP_NOT_IN_SESSION;
246
247 dprintk("%s: exit with status = %d\n", __func__, res);
248 return cpu_to_be32(res);
Fred Isamanf2a62562011-01-06 11:36:29 +0000249}
250
Alexandros Batsakis36840372011-01-06 11:36:31 +0000251static void pnfs_recall_all_layouts(struct nfs_client *clp)
252{
253 struct cb_layoutrecallargs args;
254
255 /* Pretend we got a CB_LAYOUTRECALL(ALL) */
256 memset(&args, 0, sizeof(args));
257 args.cbl_recall_type = RETURN_ALL;
258 /* FIXME we ignore errors, what should we do? */
259 do_callback_layoutrecall(clp, &args);
260}
261
Marc Eshel1be56832011-05-22 19:47:09 +0300262__be32 nfs4_callback_devicenotify(struct cb_devicenotifyargs *args,
263 void *dummy, struct cb_process_state *cps)
264{
265 int i;
266 __be32 res = 0;
267 struct nfs_client *clp = cps->clp;
268 struct nfs_server *server = NULL;
269
270 dprintk("%s: -->\n", __func__);
271
272 if (!clp) {
273 res = cpu_to_be32(NFS4ERR_OP_NOT_IN_SESSION);
274 goto out;
275 }
276
277 for (i = 0; i < args->ndevs; i++) {
278 struct cb_devicenotifyitem *dev = &args->devs[i];
279
280 if (!server ||
281 server->pnfs_curr_ld->id != dev->cbd_layout_type) {
282 rcu_read_lock();
283 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link)
284 if (server->pnfs_curr_ld &&
285 server->pnfs_curr_ld->id == dev->cbd_layout_type) {
286 rcu_read_unlock();
287 goto found;
288 }
289 rcu_read_unlock();
290 dprintk("%s: layout type %u not found\n",
291 __func__, dev->cbd_layout_type);
292 continue;
293 }
294
295 found:
Benny Halevy35c8bb52011-05-24 18:04:02 +0300296 nfs4_delete_deviceid(server->pnfs_curr_ld, clp, &dev->cbd_dev_id);
Marc Eshel1be56832011-05-22 19:47:09 +0300297 }
298
299out:
300 kfree(args->devs);
301 dprintk("%s: exit with status = %u\n",
302 __func__, be32_to_cpu(res));
303 return res;
304}
305
Ricardo Labiaga963891a2009-04-01 09:23:34 -0400306/*
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400307 * Validate the sequenceID sent by the server.
308 * Return success if the sequenceID is one more than what we last saw on
309 * this slot, accounting for wraparound. Increments the slot's sequence.
310 *
Andy Adamson49110962010-01-14 17:45:08 -0500311 * We don't yet implement a duplicate request cache, instead we set the
312 * back channel ca_maxresponsesize_cached to zero. This is OK for now
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400313 * since we only currently implement idempotent callbacks anyway.
314 *
315 * We have a single slot backchannel at this time, so we don't bother
316 * checking the used_slots bit array on the table. The lower layer guarantees
317 * a single outstanding callback request at a time.
318 */
Andy Adamson9733f0d2010-01-22 12:03:08 -0500319static __be32
Andy Adamsonb2f28bd2010-01-14 17:45:07 -0500320validate_seqid(struct nfs4_slot_table *tbl, struct cb_sequenceargs * args)
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400321{
322 struct nfs4_slot *slot;
323
Chuck Levere8d92382013-08-09 12:47:51 -0400324 dprintk("%s enter. slotid %u seqid %u\n",
Andy Adamsonb2f28bd2010-01-14 17:45:07 -0500325 __func__, args->csa_slotid, args->csa_sequenceid);
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400326
Andy Adamson61f2e512011-11-09 13:58:20 -0500327 if (args->csa_slotid >= NFS41_BC_MAX_CALLBACKS)
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400328 return htonl(NFS4ERR_BADSLOT);
329
Andy Adamsonb2f28bd2010-01-14 17:45:07 -0500330 slot = tbl->slots + args->csa_slotid;
Chuck Levere8d92382013-08-09 12:47:51 -0400331 dprintk("%s slot table seqid: %u\n", __func__, slot->seq_nr);
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400332
333 /* Normal */
Kinglong Meee937ee72015-06-02 18:58:46 +0800334 if (likely(args->csa_sequenceid == slot->seq_nr + 1))
Trond Myklebust55a67392011-08-02 14:46:29 -0400335 goto out_ok;
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400336
337 /* Replay */
Andy Adamsonb2f28bd2010-01-14 17:45:07 -0500338 if (args->csa_sequenceid == slot->seq_nr) {
Chuck Levere8d92382013-08-09 12:47:51 -0400339 dprintk("%s seqid %u is a replay\n",
Andy Adamsonb2f28bd2010-01-14 17:45:07 -0500340 __func__, args->csa_sequenceid);
Andy Adamson49110962010-01-14 17:45:08 -0500341 /* Signal process_op to set this error on next op */
342 if (args->csa_cachethis == 0)
343 return htonl(NFS4ERR_RETRY_UNCACHED_REP);
344
345 /* The ca_maxresponsesize_cached is 0 with no DRC */
346 else if (args->csa_cachethis == 1)
347 return htonl(NFS4ERR_REP_TOO_BIG_TO_CACHE);
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400348 }
349
350 /* Wraparound */
Andy Adamsonb2f28bd2010-01-14 17:45:07 -0500351 if (args->csa_sequenceid == 1 && (slot->seq_nr + 1) == 0) {
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400352 slot->seq_nr = 1;
Trond Myklebust55a67392011-08-02 14:46:29 -0400353 goto out_ok;
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400354 }
355
356 /* Misordered request */
357 return htonl(NFS4ERR_SEQ_MISORDERED);
Trond Myklebust55a67392011-08-02 14:46:29 -0400358out_ok:
359 tbl->highest_used_slotid = args->csa_slotid;
360 return htonl(NFS4_OK);
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400361}
362
363/*
Mike Sagera7989c32010-01-19 12:54:40 -0500364 * For each referring call triple, check the session's slot table for
365 * a match. If the slot is in use and the sequence numbers match, the
366 * client is still waiting for a response to the original request.
367 */
368static bool referring_call_exists(struct nfs_client *clp,
369 uint32_t nrclists,
370 struct referring_call_list *rclists)
371{
372 bool status = 0;
373 int i, j;
374 struct nfs4_session *session;
375 struct nfs4_slot_table *tbl;
376 struct referring_call_list *rclist;
377 struct referring_call *ref;
378
379 /*
380 * XXX When client trunking is implemented, this becomes
381 * a session lookup from within the loop
382 */
383 session = clp->cl_session;
384 tbl = &session->fc_slot_table;
385
386 for (i = 0; i < nrclists; i++) {
387 rclist = &rclists[i];
388 if (memcmp(session->sess_id.data,
389 rclist->rcl_sessionid.data,
390 NFS4_MAX_SESSIONID_LEN) != 0)
391 continue;
392
393 for (j = 0; j < rclist->rcl_nrefcalls; j++) {
394 ref = &rclist->rcl_refcalls[j];
395
396 dprintk("%s: sessionid %x:%x:%x:%x sequenceid %u "
397 "slotid %u\n", __func__,
398 ((u32 *)&rclist->rcl_sessionid.data)[0],
399 ((u32 *)&rclist->rcl_sessionid.data)[1],
400 ((u32 *)&rclist->rcl_sessionid.data)[2],
401 ((u32 *)&rclist->rcl_sessionid.data)[3],
402 ref->rc_sequenceid, ref->rc_slotid);
403
404 spin_lock(&tbl->slot_tbl_lock);
405 status = (test_bit(ref->rc_slotid, tbl->used_slots) &&
406 tbl->slots[ref->rc_slotid].seq_nr ==
407 ref->rc_sequenceid);
408 spin_unlock(&tbl->slot_tbl_lock);
409 if (status)
410 goto out;
411 }
412 }
413
414out:
415 return status;
416}
417
Andy Adamson9733f0d2010-01-22 12:03:08 -0500418__be32 nfs4_callback_sequence(struct cb_sequenceargs *args,
Andy Adamsonc36fca52011-01-06 02:04:32 +0000419 struct cb_sequenceres *res,
420 struct cb_process_state *cps)
Benny Halevyd49433e2009-04-01 09:23:25 -0400421{
Trond Myklebust55a67392011-08-02 14:46:29 -0400422 struct nfs4_slot_table *tbl;
Kinglong Meee937ee72015-06-02 18:58:46 +0800423 struct nfs4_slot *slot;
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400424 struct nfs_client *clp;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500425 int i;
Andy Adamson778be232011-01-25 15:38:01 +0000426 __be32 status = htonl(NFS4ERR_BADSESSION);
Benny Halevyd49433e2009-04-01 09:23:25 -0400427
Bryan Schumaker459de2e2013-06-05 11:15:01 -0400428 clp = nfs4_find_client_sessionid(cps->net, args->csa_addr,
429 &args->csa_sessionid, cps->minorversion);
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400430 if (clp == NULL)
431 goto out;
432
Trond Myklebustb1c0df52015-02-18 11:34:58 -0800433 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
434 goto out;
Kinglong Meee937ee72015-06-02 18:58:46 +0800435
Trond Myklebust55a67392011-08-02 14:46:29 -0400436 tbl = &clp->cl_session->bc_slot_table;
Kinglong Meee937ee72015-06-02 18:58:46 +0800437 slot = tbl->slots + args->csa_slotid;
Trond Myklebust55a67392011-08-02 14:46:29 -0400438
439 spin_lock(&tbl->slot_tbl_lock);
Andy Adamson42acd022011-01-06 02:04:34 +0000440 /* state manager is resetting the session */
Andy Adamson774d5f12013-05-20 14:13:50 -0400441 if (test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state)) {
Trond Myklebust55a67392011-08-02 14:46:29 -0400442 status = htonl(NFS4ERR_DELAY);
Trond Myklebust910ac682011-08-02 14:46:52 -0400443 /* Return NFS4ERR_BADSESSION if we're draining the session
444 * in order to reset it.
445 */
446 if (test_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state))
447 status = htonl(NFS4ERR_BADSESSION);
Trond Myklebust4e54ab82015-06-11 21:13:58 -0400448 goto out_unlock;
Andy Adamson42acd022011-01-06 02:04:34 +0000449 }
450
Kinglong Mee0579c8d2015-06-02 18:59:01 +0800451 memcpy(&res->csr_sessionid, &args->csa_sessionid,
452 sizeof(res->csr_sessionid));
453 res->csr_sequenceid = args->csa_sequenceid;
454 res->csr_slotid = args->csa_slotid;
455 res->csr_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
456 res->csr_target_highestslotid = NFS41_BC_MAX_CALLBACKS - 1;
457
Kinglong Meee937ee72015-06-02 18:58:46 +0800458 status = validate_seqid(tbl, args);
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400459 if (status)
Trond Myklebust4e54ab82015-06-11 21:13:58 -0400460 goto out_unlock;
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400461
Trond Myklebust55a67392011-08-02 14:46:29 -0400462 cps->slotid = args->csa_slotid;
463
Mike Sager72ce2b32010-01-19 12:54:41 -0500464 /*
465 * Check for pending referring calls. If a match is found, a
466 * related callback was received before the response to the original
467 * call.
468 */
469 if (referring_call_exists(clp, args->csa_nrclists, args->csa_rclists)) {
470 status = htonl(NFS4ERR_DELAY);
Trond Myklebust4e54ab82015-06-11 21:13:58 -0400471 goto out_unlock;
Mike Sager72ce2b32010-01-19 12:54:41 -0500472 }
473
Kinglong Meee937ee72015-06-02 18:58:46 +0800474 /*
475 * RFC5661 20.9.3
476 * If CB_SEQUENCE returns an error, then the state of the slot
477 * (sequence ID, cached reply) MUST NOT change.
478 */
479 slot->seq_nr++;
Trond Myklebust4e54ab82015-06-11 21:13:58 -0400480out_unlock:
481 spin_unlock(&tbl->slot_tbl_lock);
Kinglong Meee937ee72015-06-02 18:58:46 +0800482
Ricardo Labiaga68f3f902009-04-01 09:23:35 -0400483out:
Andy Adamson2c4cdf82011-01-25 15:38:02 +0000484 cps->clp = clp; /* put in nfs4_callback_compound */
Mike Sager72ce2b32010-01-19 12:54:41 -0500485 for (i = 0; i < args->csa_nrclists; i++)
486 kfree(args->csa_rclists[i].rcl_refcalls);
487 kfree(args->csa_rclists);
488
Andy Adamsonc36fca52011-01-06 02:04:32 +0000489 if (status == htonl(NFS4ERR_RETRY_UNCACHED_REP)) {
490 cps->drc_status = status;
491 status = 0;
492 } else
Andy Adamson49110962010-01-14 17:45:08 -0500493 res->csr_status = status;
Andy Adamsonc36fca52011-01-06 02:04:32 +0000494
Trond Myklebust2f92ae32013-08-14 17:58:28 -0400495 trace_nfs4_cb_sequence(args, res, status);
Andy Adamson49110962010-01-14 17:45:08 -0500496 dprintk("%s: exit with status = %d res->csr_status %d\n", __func__,
497 ntohl(status), ntohl(res->csr_status));
498 return status;
Benny Halevyd49433e2009-04-01 09:23:25 -0400499}
500
Alexandros Batsakis36840372011-01-06 11:36:31 +0000501static bool
502validate_bitmap_values(unsigned long mask)
503{
504 return (mask & ~RCA4_TYPE_MASK_ALL) == 0;
505}
506
Andy Adamsonc36fca52011-01-06 02:04:32 +0000507__be32 nfs4_callback_recallany(struct cb_recallanyargs *args, void *dummy,
508 struct cb_process_state *cps)
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500509{
Andy Adamson9733f0d2010-01-22 12:03:08 -0500510 __be32 status;
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500511 fmode_t flags = 0;
512
Alexandros Batsakis36840372011-01-06 11:36:31 +0000513 status = cpu_to_be32(NFS4ERR_OP_NOT_IN_SESSION);
Andy Adamsonc36fca52011-01-06 02:04:32 +0000514 if (!cps->clp) /* set in cb_sequence */
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500515 goto out;
516
Trond Myklebust2446ab62012-03-01 17:00:56 -0500517 dprintk_rcu("NFS: RECALL_ANY callback request from %s\n",
Andy Adamsonc36fca52011-01-06 02:04:32 +0000518 rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR));
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500519
Alexandros Batsakis36840372011-01-06 11:36:31 +0000520 status = cpu_to_be32(NFS4ERR_INVAL);
521 if (!validate_bitmap_values(args->craa_type_mask))
522 goto out;
523
524 status = cpu_to_be32(NFS4_OK);
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500525 if (test_bit(RCA4_TYPE_MASK_RDATA_DLG, (const unsigned long *)
526 &args->craa_type_mask))
527 flags = FMODE_READ;
528 if (test_bit(RCA4_TYPE_MASK_WDATA_DLG, (const unsigned long *)
529 &args->craa_type_mask))
530 flags |= FMODE_WRITE;
Alexandros Batsakis36840372011-01-06 11:36:31 +0000531 if (test_bit(RCA4_TYPE_MASK_FILE_LAYOUT, (const unsigned long *)
532 &args->craa_type_mask))
533 pnfs_recall_all_layouts(cps->clp);
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500534 if (flags)
Trond Myklebust826e0012013-04-03 19:27:52 -0400535 nfs_expire_unused_delegation_types(cps->clp, flags);
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500536out:
537 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
538 return status;
539}
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500540
541/* Reduce the fore channel's max_slots to the target value */
Andy Adamsonc36fca52011-01-06 02:04:32 +0000542__be32 nfs4_callback_recallslot(struct cb_recallslotargs *args, void *dummy,
543 struct cb_process_state *cps)
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500544{
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500545 struct nfs4_slot_table *fc_tbl;
Andy Adamson9733f0d2010-01-22 12:03:08 -0500546 __be32 status;
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500547
548 status = htonl(NFS4ERR_OP_NOT_IN_SESSION);
Andy Adamsonc36fca52011-01-06 02:04:32 +0000549 if (!cps->clp) /* set in cb_sequence */
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500550 goto out;
551
Chuck Levere8d92382013-08-09 12:47:51 -0400552 dprintk_rcu("NFS: CB_RECALL_SLOT request from %s target highest slotid %u\n",
Andy Adamsonc36fca52011-01-06 02:04:32 +0000553 rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR),
Trond Myklebustd5fb4ce2012-11-20 20:24:02 -0500554 args->crsa_target_highest_slotid);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500555
Andy Adamsonc36fca52011-01-06 02:04:32 +0000556 fc_tbl = &cps->clp->cl_session->fc_slot_table;
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500557
Andy Adamsonbae0ac02010-01-21 14:19:16 -0500558 status = htonl(NFS4_OK);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500559
Trond Myklebustd5fb4ce2012-11-20 20:24:02 -0500560 nfs41_set_target_slotid(fc_tbl, args->crsa_target_highest_slotid);
Anna Schumaker3f10a6a2015-07-13 14:01:31 -0400561 nfs41_notify_server(cps->clp);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500562out:
563 dprintk("%s: exit with status = %d\n", __func__, ntohl(status));
564 return status;
565}
Benny Halevyd49433e2009-04-01 09:23:25 -0400566#endif /* CONFIG_NFS_V4_1 */