blob: 230606243be6ad079733e583d173b14d3baeda55 [file] [log] [blame]
Ricardo Labiaga85e174b2010-10-20 00:17:58 -04001/*
2 * pNFS functions to call and manage layout drivers.
3 *
4 * Copyright (c) 2002 [year of first publication]
5 * The Regents of the University of Michigan
6 * All Rights Reserved
7 *
8 * Dean Hildebrand <dhildebz@umich.edu>
9 *
10 * Permission is granted to use, copy, create derivative works, and
11 * redistribute this software and such derivative works for any purpose,
12 * so long as the name of the University of Michigan is not used in
13 * any advertising or publicity pertaining to the use or distribution
14 * of this software without specific, written prior authorization. If
15 * the above copyright notice or any other identification of the
16 * University of Michigan is included in any copy of any portion of
17 * this software, then the disclaimer below must also be included.
18 *
19 * This software is provided as is, without representation or warranty
20 * of any kind either express or implied, including without limitation
21 * the implied warranties of merchantability, fitness for a particular
22 * purpose, or noninfringement. The Regents of the University of
23 * Michigan shall not be liable for any damages, including special,
24 * indirect, incidental, or consequential damages, with respect to any
25 * claim arising out of or in connection with the use of the software,
26 * even if it has been or is hereafter advised of the possibility of
27 * such damages.
28 */
29
30#include <linux/nfs_fs.h>
Trond Myklebust493292d2011-07-13 15:58:28 -040031#include <linux/nfs_page.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040032#include <linux/module.h>
Andy Adamson974cec82010-10-20 00:18:02 -040033#include "internal.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040034#include "pnfs.h"
Andy Adamson64419a92011-03-01 01:34:16 +000035#include "iostat.h"
Trond Myklebustcc668ab2013-08-14 15:31:28 -040036#include "nfs4trace.h"
Trond Myklebust40dd4b72015-01-24 13:54:37 -050037#include "delegation.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040038
39#define NFSDBG_FACILITY NFSDBG_PNFS
Trond Myklebust25c75332012-09-18 17:01:12 -040040#define PNFS_LAYOUTGET_RETRY_TIMEOUT (120*HZ)
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040041
Fred Isaman02c35fc2010-10-20 00:17:59 -040042/* Locking:
43 *
44 * pnfs_spinlock:
45 * protects pnfs_modules_tbl.
46 */
47static DEFINE_SPINLOCK(pnfs_spinlock);
48
49/*
50 * pnfs_modules_tbl holds all pnfs modules
51 */
52static LIST_HEAD(pnfs_modules_tbl);
53
Peng Taoaa1e0e3a2014-09-06 00:53:25 +080054static int
55pnfs_send_layoutreturn(struct pnfs_layout_hdr *lo, nfs4_stateid stateid,
Peng Tao6c166052014-11-17 09:30:40 +080056 enum pnfs_iomode iomode, bool sync);
Peng Taoaa1e0e3a2014-09-06 00:53:25 +080057
Fred Isaman02c35fc2010-10-20 00:17:59 -040058/* Return the registered pnfs layout driver module matching given id */
59static struct pnfs_layoutdriver_type *
60find_pnfs_driver_locked(u32 id)
61{
62 struct pnfs_layoutdriver_type *local;
63
64 list_for_each_entry(local, &pnfs_modules_tbl, pnfs_tblid)
65 if (local->id == id)
66 goto out;
67 local = NULL;
68out:
69 dprintk("%s: Searching for id %u, found %p\n", __func__, id, local);
70 return local;
71}
72
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040073static struct pnfs_layoutdriver_type *
74find_pnfs_driver(u32 id)
75{
Fred Isaman02c35fc2010-10-20 00:17:59 -040076 struct pnfs_layoutdriver_type *local;
77
78 spin_lock(&pnfs_spinlock);
79 local = find_pnfs_driver_locked(id);
Trond Myklebust0a9c63f2012-06-15 13:02:58 -040080 if (local != NULL && !try_module_get(local->owner)) {
81 dprintk("%s: Could not grab reference on module\n", __func__);
82 local = NULL;
83 }
Fred Isaman02c35fc2010-10-20 00:17:59 -040084 spin_unlock(&pnfs_spinlock);
85 return local;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040086}
87
88void
89unset_pnfs_layoutdriver(struct nfs_server *nfss)
90{
Benny Halevy738fd0f32011-07-30 20:52:36 -040091 if (nfss->pnfs_curr_ld) {
92 if (nfss->pnfs_curr_ld->clear_layoutdriver)
93 nfss->pnfs_curr_ld->clear_layoutdriver(nfss);
Trond Myklebust2a4c8992012-06-14 13:08:38 -040094 /* Decrement the MDS count. Purge the deviceid cache if zero */
95 if (atomic_dec_and_test(&nfss->nfs_client->cl_mds_count))
96 nfs4_deviceid_purge_client(nfss->nfs_client);
Fred Isaman02c35fc2010-10-20 00:17:59 -040097 module_put(nfss->pnfs_curr_ld->owner);
Benny Halevy738fd0f32011-07-30 20:52:36 -040098 }
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040099 nfss->pnfs_curr_ld = NULL;
100}
101
102/*
103 * Try to set the server's pnfs module to the pnfs layout type specified by id.
104 * Currently only one pNFS layout driver per filesystem is supported.
105 *
106 * @id layout type. Zero (illegal layout type) indicates pNFS not in use.
107 */
108void
Benny Halevy738fd0f32011-07-30 20:52:36 -0400109set_pnfs_layoutdriver(struct nfs_server *server, const struct nfs_fh *mntfh,
110 u32 id)
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400111{
112 struct pnfs_layoutdriver_type *ld_type = NULL;
113
114 if (id == 0)
115 goto out_no_driver;
116 if (!(server->nfs_client->cl_exchange_flags &
117 (EXCHGID4_FLAG_USE_NON_PNFS | EXCHGID4_FLAG_USE_PNFS_MDS))) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500118 printk(KERN_ERR "NFS: %s: id %u cl_exchange_flags 0x%x\n",
119 __func__, id, server->nfs_client->cl_exchange_flags);
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400120 goto out_no_driver;
121 }
122 ld_type = find_pnfs_driver(id);
123 if (!ld_type) {
124 request_module("%s-%u", LAYOUT_NFSV4_1_MODULE_PREFIX, id);
125 ld_type = find_pnfs_driver(id);
126 if (!ld_type) {
127 dprintk("%s: No pNFS module found for %u.\n",
128 __func__, id);
129 goto out_no_driver;
130 }
131 }
132 server->pnfs_curr_ld = ld_type;
Benny Halevy738fd0f32011-07-30 20:52:36 -0400133 if (ld_type->set_layoutdriver
134 && ld_type->set_layoutdriver(server, mntfh)) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500135 printk(KERN_ERR "NFS: %s: Error initializing pNFS layout "
136 "driver %u.\n", __func__, id);
Benny Halevy738fd0f32011-07-30 20:52:36 -0400137 module_put(ld_type->owner);
138 goto out_no_driver;
139 }
Trond Myklebust2a4c8992012-06-14 13:08:38 -0400140 /* Bump the MDS count */
141 atomic_inc(&server->nfs_client->cl_mds_count);
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000142
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400143 dprintk("%s: pNFS module for %u set\n", __func__, id);
144 return;
145
146out_no_driver:
147 dprintk("%s: Using NFSv4 I/O\n", __func__);
148 server->pnfs_curr_ld = NULL;
149}
Fred Isaman02c35fc2010-10-20 00:17:59 -0400150
151int
152pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
153{
154 int status = -EINVAL;
155 struct pnfs_layoutdriver_type *tmp;
156
157 if (ld_type->id == 0) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500158 printk(KERN_ERR "NFS: %s id 0 is reserved\n", __func__);
Fred Isaman02c35fc2010-10-20 00:17:59 -0400159 return status;
160 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400161 if (!ld_type->alloc_lseg || !ld_type->free_lseg) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500162 printk(KERN_ERR "NFS: %s Layout driver must provide "
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400163 "alloc_lseg and free_lseg.\n", __func__);
164 return status;
165 }
Fred Isaman02c35fc2010-10-20 00:17:59 -0400166
167 spin_lock(&pnfs_spinlock);
168 tmp = find_pnfs_driver_locked(ld_type->id);
169 if (!tmp) {
170 list_add(&ld_type->pnfs_tblid, &pnfs_modules_tbl);
171 status = 0;
172 dprintk("%s Registering id:%u name:%s\n", __func__, ld_type->id,
173 ld_type->name);
174 } else {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500175 printk(KERN_ERR "NFS: %s Module with id %d already loaded!\n",
Fred Isaman02c35fc2010-10-20 00:17:59 -0400176 __func__, ld_type->id);
177 }
178 spin_unlock(&pnfs_spinlock);
179
180 return status;
181}
182EXPORT_SYMBOL_GPL(pnfs_register_layoutdriver);
183
184void
185pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
186{
187 dprintk("%s Deregistering id:%u\n", __func__, ld_type->id);
188 spin_lock(&pnfs_spinlock);
189 list_del(&ld_type->pnfs_tblid);
190 spin_unlock(&pnfs_spinlock);
191}
192EXPORT_SYMBOL_GPL(pnfs_unregister_layoutdriver);
Benny Halevye5e94012010-10-20 00:18:01 -0400193
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400194/*
195 * pNFS client layout cache
196 */
197
Fred Isamancc6e5342011-01-06 11:36:28 +0000198/* Need to hold i_lock if caller does not already hold reference */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000199void
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400200pnfs_get_layout_hdr(struct pnfs_layout_hdr *lo)
Benny Halevye5e94012010-10-20 00:18:01 -0400201{
Fred Isamancc6e5342011-01-06 11:36:28 +0000202 atomic_inc(&lo->plh_refcount);
203}
204
Benny Halevy636fb9c2011-05-22 19:51:33 +0300205static struct pnfs_layout_hdr *
206pnfs_alloc_layout_hdr(struct inode *ino, gfp_t gfp_flags)
207{
208 struct pnfs_layoutdriver_type *ld = NFS_SERVER(ino)->pnfs_curr_ld;
Trond Myklebust57934272012-09-20 20:37:23 -0400209 return ld->alloc_layout_hdr(ino, gfp_flags);
Benny Halevy636fb9c2011-05-22 19:51:33 +0300210}
211
212static void
213pnfs_free_layout_hdr(struct pnfs_layout_hdr *lo)
214{
Trond Myklebust9c626382012-09-20 17:31:43 -0400215 struct nfs_server *server = NFS_SERVER(lo->plh_inode);
216 struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
217
218 if (!list_empty(&lo->plh_layouts)) {
219 struct nfs_client *clp = server->nfs_client;
220
221 spin_lock(&clp->cl_lock);
222 list_del_init(&lo->plh_layouts);
223 spin_unlock(&clp->cl_lock);
224 }
Peng Tao9fa40752011-07-30 20:52:32 -0400225 put_rpccred(lo->plh_lc_cred);
Trond Myklebust57934272012-09-20 20:37:23 -0400226 return ld->free_layout_hdr(lo);
Benny Halevy636fb9c2011-05-22 19:51:33 +0300227}
228
Fred Isamancc6e5342011-01-06 11:36:28 +0000229static void
Trond Myklebust6622c3e2012-09-20 17:23:11 -0400230pnfs_detach_layout_hdr(struct pnfs_layout_hdr *lo)
Fred Isamancc6e5342011-01-06 11:36:28 +0000231{
Trond Myklebustbb346f62012-09-20 15:52:13 -0400232 struct nfs_inode *nfsi = NFS_I(lo->plh_inode);
Fred Isamancc6e5342011-01-06 11:36:28 +0000233 dprintk("%s: freeing layout cache %p\n", __func__, lo);
Trond Myklebustbb346f62012-09-20 15:52:13 -0400234 nfsi->layout = NULL;
235 /* Reset MDS Threshold I/O counters */
236 nfsi->write_io = 0;
237 nfsi->read_io = 0;
Benny Halevye5e94012010-10-20 00:18:01 -0400238}
239
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400240void
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400241pnfs_put_layout_hdr(struct pnfs_layout_hdr *lo)
Andy Adamson974cec82010-10-20 00:18:02 -0400242{
Fred Isamancc6e5342011-01-06 11:36:28 +0000243 struct inode *inode = lo->plh_inode;
244
245 if (atomic_dec_and_lock(&lo->plh_refcount, &inode->i_lock)) {
Peng Tao566f8732014-10-10 23:25:46 +0800246 if (!list_empty(&lo->plh_segs))
247 WARN_ONCE(1, "NFS: BUG unfreed layout segments.\n");
Trond Myklebust6622c3e2012-09-20 17:23:11 -0400248 pnfs_detach_layout_hdr(lo);
Fred Isamancc6e5342011-01-06 11:36:28 +0000249 spin_unlock(&inode->i_lock);
Trond Myklebust6622c3e2012-09-20 17:23:11 -0400250 pnfs_free_layout_hdr(lo);
Fred Isamancc6e5342011-01-06 11:36:28 +0000251 }
Andy Adamson974cec82010-10-20 00:18:02 -0400252}
253
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400254static int
255pnfs_iomode_to_fail_bit(u32 iomode)
256{
257 return iomode == IOMODE_RW ?
258 NFS_LAYOUT_RW_FAILED : NFS_LAYOUT_RO_FAILED;
259}
260
261static void
Trond Myklebust3e621212012-09-24 13:07:16 -0400262pnfs_layout_set_fail_bit(struct pnfs_layout_hdr *lo, int fail_bit)
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400263{
Trond Myklebust25c75332012-09-18 17:01:12 -0400264 lo->plh_retry_timestamp = jiffies;
Yanchuan Nian39e88fc2013-01-04 20:19:49 +0800265 if (!test_and_set_bit(fail_bit, &lo->plh_flags))
Trond Myklebust3e621212012-09-24 13:07:16 -0400266 atomic_inc(&lo->plh_refcount);
267}
268
269static void
270pnfs_layout_clear_fail_bit(struct pnfs_layout_hdr *lo, int fail_bit)
271{
272 if (test_and_clear_bit(fail_bit, &lo->plh_flags))
273 atomic_dec(&lo->plh_refcount);
274}
275
276static void
277pnfs_layout_io_set_failed(struct pnfs_layout_hdr *lo, u32 iomode)
278{
279 struct inode *inode = lo->plh_inode;
Trond Myklebust115ce572012-09-20 21:19:43 -0400280 struct pnfs_layout_range range = {
281 .iomode = iomode,
282 .offset = 0,
283 .length = NFS4_MAX_UINT64,
284 };
285 LIST_HEAD(head);
Trond Myklebust3e621212012-09-24 13:07:16 -0400286
287 spin_lock(&inode->i_lock);
288 pnfs_layout_set_fail_bit(lo, pnfs_iomode_to_fail_bit(iomode));
Trond Myklebust115ce572012-09-20 21:19:43 -0400289 pnfs_mark_matching_lsegs_invalid(lo, &head, &range);
Trond Myklebust3e621212012-09-24 13:07:16 -0400290 spin_unlock(&inode->i_lock);
Trond Myklebust115ce572012-09-20 21:19:43 -0400291 pnfs_free_lseg_list(&head);
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400292 dprintk("%s Setting layout IOMODE_%s fail bit\n", __func__,
293 iomode == IOMODE_RW ? "RW" : "READ");
294}
295
296static bool
297pnfs_layout_io_test_failed(struct pnfs_layout_hdr *lo, u32 iomode)
298{
Trond Myklebust25c75332012-09-18 17:01:12 -0400299 unsigned long start, end;
Trond Myklebust3e621212012-09-24 13:07:16 -0400300 int fail_bit = pnfs_iomode_to_fail_bit(iomode);
301
302 if (test_bit(fail_bit, &lo->plh_flags) == 0)
Trond Myklebust25c75332012-09-18 17:01:12 -0400303 return false;
304 end = jiffies;
305 start = end - PNFS_LAYOUTGET_RETRY_TIMEOUT;
306 if (!time_in_range(lo->plh_retry_timestamp, start, end)) {
307 /* It is time to retry the failed layoutgets */
Trond Myklebust3e621212012-09-24 13:07:16 -0400308 pnfs_layout_clear_fail_bit(lo, fail_bit);
Trond Myklebust25c75332012-09-18 17:01:12 -0400309 return false;
310 }
311 return true;
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400312}
313
Andy Adamson974cec82010-10-20 00:18:02 -0400314static void
315init_lseg(struct pnfs_layout_hdr *lo, struct pnfs_layout_segment *lseg)
316{
Fred Isaman566052c2011-01-06 11:36:20 +0000317 INIT_LIST_HEAD(&lseg->pls_list);
Peng Taoa9bae562011-07-30 20:52:33 -0400318 INIT_LIST_HEAD(&lseg->pls_lc_list);
Fred Isaman4541d162011-01-06 11:36:23 +0000319 atomic_set(&lseg->pls_refcount, 1);
320 smp_mb();
321 set_bit(NFS_LSEG_VALID, &lseg->pls_flags);
Fred Isaman566052c2011-01-06 11:36:20 +0000322 lseg->pls_layout = lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400323}
324
Trond Myklebust905ca192012-09-20 20:46:49 -0400325static void pnfs_free_lseg(struct pnfs_layout_segment *lseg)
Andy Adamson974cec82010-10-20 00:18:02 -0400326{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000327 struct inode *ino = lseg->pls_layout->plh_inode;
Andy Adamson974cec82010-10-20 00:18:02 -0400328
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400329 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400330}
331
Fred Isamand684d2a2011-03-01 01:34:13 +0000332static void
Trond Myklebust57036a32012-09-20 16:33:30 -0400333pnfs_layout_remove_lseg(struct pnfs_layout_hdr *lo,
334 struct pnfs_layout_segment *lseg)
Andy Adamson974cec82010-10-20 00:18:02 -0400335{
Trond Myklebust57036a32012-09-20 16:33:30 -0400336 struct inode *inode = lo->plh_inode;
Fred Isamand684d2a2011-03-01 01:34:13 +0000337
Benny Halevyd20581a2011-05-22 19:52:03 +0300338 WARN_ON(test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
Fred Isamand684d2a2011-03-01 01:34:13 +0000339 list_del_init(&lseg->pls_list);
Trond Myklebust8f0d27d2012-09-20 20:57:11 -0400340 /* Matched by pnfs_get_layout_hdr in pnfs_layout_insert_lseg */
341 atomic_dec(&lo->plh_refcount);
Trond Myklebust173f77e2012-09-21 15:49:42 -0400342 if (list_empty(&lo->plh_segs))
343 clear_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags);
Fred Isamand684d2a2011-03-01 01:34:13 +0000344 rpc_wake_up(&NFS_SERVER(inode)->roc_rpcwaitq);
345}
346
Peng Taoaa1e0e3a2014-09-06 00:53:25 +0800347/* Return true if layoutreturn is needed */
348static bool
349pnfs_layout_need_return(struct pnfs_layout_hdr *lo,
Peng Tao27b6f532014-10-20 14:44:38 +0800350 struct pnfs_layout_segment *lseg)
Peng Taoaa1e0e3a2014-09-06 00:53:25 +0800351{
352 struct pnfs_layout_segment *s;
353
354 if (!test_bit(NFS_LSEG_LAYOUTRETURN, &lseg->pls_flags))
355 return false;
356
357 list_for_each_entry(s, &lo->plh_segs, pls_list)
Peng Tao27b6f532014-10-20 14:44:38 +0800358 if (s != lseg && test_bit(NFS_LSEG_LAYOUTRETURN, &s->pls_flags))
Peng Taoaa1e0e3a2014-09-06 00:53:25 +0800359 return false;
360
Peng Taoaa1e0e3a2014-09-06 00:53:25 +0800361 return true;
362}
363
Trond Myklebust4ef2e4f2015-02-05 17:27:39 -0500364static void pnfs_layoutreturn_before_put_lseg(struct pnfs_layout_segment *lseg,
365 struct pnfs_layout_hdr *lo, struct inode *inode)
Peng Tao27b6f532014-10-20 14:44:38 +0800366{
Peng Tao27b6f532014-10-20 14:44:38 +0800367 lo = lseg->pls_layout;
368 inode = lo->plh_inode;
369
370 spin_lock(&inode->i_lock);
371 if (pnfs_layout_need_return(lo, lseg)) {
372 nfs4_stateid stateid;
373 enum pnfs_iomode iomode;
374
375 stateid = lo->plh_stateid;
376 iomode = lo->plh_return_iomode;
377 /* decreased in pnfs_send_layoutreturn() */
378 lo->plh_block_lgets++;
379 lo->plh_return_iomode = 0;
380 spin_unlock(&inode->i_lock);
Trond Myklebust4ef2e4f2015-02-05 17:27:39 -0500381 pnfs_get_layout_hdr(lo);
Peng Tao27b6f532014-10-20 14:44:38 +0800382
Trond Myklebust4ef2e4f2015-02-05 17:27:39 -0500383 /* Send an async layoutreturn so we dont deadlock */
384 pnfs_send_layoutreturn(lo, stateid, iomode, false);
Peng Tao27b6f532014-10-20 14:44:38 +0800385 } else
Trond Myklebust4ef2e4f2015-02-05 17:27:39 -0500386 spin_unlock(&inode->i_lock);
Peng Tao27b6f532014-10-20 14:44:38 +0800387}
388
Fred Isamanbae724e2011-03-01 01:34:15 +0000389void
Trond Myklebust9369a432012-09-18 20:57:08 -0400390pnfs_put_lseg(struct pnfs_layout_segment *lseg)
Fred Isamand684d2a2011-03-01 01:34:13 +0000391{
Trond Myklebust57036a32012-09-20 16:33:30 -0400392 struct pnfs_layout_hdr *lo;
Fred Isamand684d2a2011-03-01 01:34:13 +0000393 struct inode *inode;
394
395 if (!lseg)
396 return;
397
Fred Isaman4541d162011-01-06 11:36:23 +0000398 dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
399 atomic_read(&lseg->pls_refcount),
400 test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
Trond Myklebust4ef2e4f2015-02-05 17:27:39 -0500401
402 /* Handle the case where refcount != 1 */
403 if (atomic_add_unless(&lseg->pls_refcount, -1, 1))
404 return;
405
Trond Myklebust57036a32012-09-20 16:33:30 -0400406 lo = lseg->pls_layout;
407 inode = lo->plh_inode;
Trond Myklebust4ef2e4f2015-02-05 17:27:39 -0500408 /* Do we need a layoutreturn? */
409 if (test_bit(NFS_LSEG_LAYOUTRETURN, &lseg->pls_flags))
410 pnfs_layoutreturn_before_put_lseg(lseg, lo, inode);
411
Fred Isamand684d2a2011-03-01 01:34:13 +0000412 if (atomic_dec_and_lock(&lseg->pls_refcount, &inode->i_lock)) {
Trond Myklebust8f0d27d2012-09-20 20:57:11 -0400413 pnfs_get_layout_hdr(lo);
Trond Myklebust4ef2e4f2015-02-05 17:27:39 -0500414 pnfs_layout_remove_lseg(lo, lseg);
415 spin_unlock(&inode->i_lock);
416 pnfs_free_lseg(lseg);
417 pnfs_put_layout_hdr(lo);
Fred Isaman4541d162011-01-06 11:36:23 +0000418 }
Andy Adamson974cec82010-10-20 00:18:02 -0400419}
Trond Myklebust9369a432012-09-18 20:57:08 -0400420EXPORT_SYMBOL_GPL(pnfs_put_lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400421
Trond Myklebust6543f802014-10-08 16:39:12 -0400422static void pnfs_free_lseg_async_work(struct work_struct *work)
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400423{
424 struct pnfs_layout_segment *lseg;
Trond Myklebust6543f802014-10-08 16:39:12 -0400425 struct pnfs_layout_hdr *lo;
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400426
427 lseg = container_of(work, struct pnfs_layout_segment, pls_work);
Trond Myklebust6543f802014-10-08 16:39:12 -0400428 lo = lseg->pls_layout;
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400429
Trond Myklebust6543f802014-10-08 16:39:12 -0400430 pnfs_free_lseg(lseg);
431 pnfs_put_layout_hdr(lo);
432}
433
434static void pnfs_free_lseg_async(struct pnfs_layout_segment *lseg)
435{
436 INIT_WORK(&lseg->pls_work, pnfs_free_lseg_async_work);
437 schedule_work(&lseg->pls_work);
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400438}
439
440void
Trond Myklebust6543f802014-10-08 16:39:12 -0400441pnfs_put_lseg_locked(struct pnfs_layout_segment *lseg)
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400442{
Trond Myklebust6543f802014-10-08 16:39:12 -0400443 if (!lseg)
444 return;
445
446 assert_spin_locked(&lseg->pls_layout->plh_inode->i_lock);
447
448 dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
449 atomic_read(&lseg->pls_refcount),
450 test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
451 if (atomic_dec_and_test(&lseg->pls_refcount)) {
452 struct pnfs_layout_hdr *lo = lseg->pls_layout;
453 pnfs_get_layout_hdr(lo);
454 pnfs_layout_remove_lseg(lo, lseg);
455 pnfs_free_lseg_async(lseg);
456 }
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400457}
Trond Myklebust6543f802014-10-08 16:39:12 -0400458EXPORT_SYMBOL_GPL(pnfs_put_lseg_locked);
Weston Andros Adamsone6cf82d2014-07-17 20:42:18 -0400459
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400460static u64
Benny Halevyfb3296e2011-05-22 19:47:26 +0300461end_offset(u64 start, u64 len)
Fred Isaman4541d162011-01-06 11:36:23 +0000462{
Benny Halevyfb3296e2011-05-22 19:47:26 +0300463 u64 end;
464
465 end = start + len;
466 return end >= start ? end : NFS4_MAX_UINT64;
467}
468
Benny Halevyfb3296e2011-05-22 19:47:26 +0300469/*
470 * is l2 fully contained in l1?
471 * start1 end1
472 * [----------------------------------)
473 * start2 end2
474 * [----------------)
475 */
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400476static bool
Trond Myklebust7dc0ac72013-06-03 11:30:24 -0400477pnfs_lseg_range_contained(const struct pnfs_layout_range *l1,
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400478 const struct pnfs_layout_range *l2)
Benny Halevyfb3296e2011-05-22 19:47:26 +0300479{
480 u64 start1 = l1->offset;
481 u64 end1 = end_offset(start1, l1->length);
482 u64 start2 = l2->offset;
483 u64 end2 = end_offset(start2, l2->length);
484
485 return (start1 <= start2) && (end1 >= end2);
486}
487
488/*
489 * is l1 and l2 intersecting?
490 * start1 end1
491 * [----------------------------------)
492 * start2 end2
493 * [----------------)
494 */
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400495static bool
Trond Myklebust7dc0ac72013-06-03 11:30:24 -0400496pnfs_lseg_range_intersecting(const struct pnfs_layout_range *l1,
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400497 const struct pnfs_layout_range *l2)
Benny Halevyfb3296e2011-05-22 19:47:26 +0300498{
499 u64 start1 = l1->offset;
500 u64 end1 = end_offset(start1, l1->length);
501 u64 start2 = l2->offset;
502 u64 end2 = end_offset(start2, l2->length);
503
504 return (end1 == NFS4_MAX_UINT64 || end1 > start2) &&
505 (end2 == NFS4_MAX_UINT64 || end2 > start1);
506}
507
Fred Isaman4541d162011-01-06 11:36:23 +0000508static bool
Trond Myklebust3cb2df12013-06-03 11:24:36 -0400509should_free_lseg(const struct pnfs_layout_range *lseg_range,
510 const struct pnfs_layout_range *recall_range)
Fred Isaman4541d162011-01-06 11:36:23 +0000511{
Benny Halevy778b5502011-05-22 19:48:02 +0300512 return (recall_range->iomode == IOMODE_ANY ||
513 lseg_range->iomode == recall_range->iomode) &&
Trond Myklebust7dc0ac72013-06-03 11:30:24 -0400514 pnfs_lseg_range_intersecting(lseg_range, recall_range);
Fred Isaman4541d162011-01-06 11:36:23 +0000515}
516
Trond Myklebust24956802013-03-20 13:03:00 -0400517static bool pnfs_lseg_dec_and_remove_zero(struct pnfs_layout_segment *lseg,
518 struct list_head *tmp_list)
519{
520 if (!atomic_dec_and_test(&lseg->pls_refcount))
521 return false;
522 pnfs_layout_remove_lseg(lseg->pls_layout, lseg);
523 list_add(&lseg->pls_list, tmp_list);
524 return true;
525}
526
Fred Isaman4541d162011-01-06 11:36:23 +0000527/* Returns 1 if lseg is removed from list, 0 otherwise */
528static int mark_lseg_invalid(struct pnfs_layout_segment *lseg,
529 struct list_head *tmp_list)
530{
531 int rv = 0;
532
533 if (test_and_clear_bit(NFS_LSEG_VALID, &lseg->pls_flags)) {
534 /* Remove the reference keeping the lseg in the
535 * list. It will now be removed when all
536 * outstanding io is finished.
537 */
Fred Isamand684d2a2011-03-01 01:34:13 +0000538 dprintk("%s: lseg %p ref %d\n", __func__, lseg,
539 atomic_read(&lseg->pls_refcount));
Trond Myklebust24956802013-03-20 13:03:00 -0400540 if (pnfs_lseg_dec_and_remove_zero(lseg, tmp_list))
Fred Isamand684d2a2011-03-01 01:34:13 +0000541 rv = 1;
Fred Isaman4541d162011-01-06 11:36:23 +0000542 }
543 return rv;
544}
545
546/* Returns count of number of matching invalid lsegs remaining in list
547 * after call.
548 */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000549int
Trond Myklebust49a85062012-09-18 20:43:31 -0400550pnfs_mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
Fred Isaman4541d162011-01-06 11:36:23 +0000551 struct list_head *tmp_list,
Benny Halevy778b5502011-05-22 19:48:02 +0300552 struct pnfs_layout_range *recall_range)
Andy Adamson974cec82010-10-20 00:18:02 -0400553{
554 struct pnfs_layout_segment *lseg, *next;
Fred Isaman4541d162011-01-06 11:36:23 +0000555 int invalid = 0, removed = 0;
Andy Adamson974cec82010-10-20 00:18:02 -0400556
557 dprintk("%s:Begin lo %p\n", __func__, lo);
558
Trond Myklebust8006bfb2012-09-21 14:48:04 -0400559 if (list_empty(&lo->plh_segs))
Fred Isaman38511722011-02-03 18:28:50 +0000560 return 0;
Fred Isaman4541d162011-01-06 11:36:23 +0000561 list_for_each_entry_safe(lseg, next, &lo->plh_segs, pls_list)
Benny Halevy778b5502011-05-22 19:48:02 +0300562 if (!recall_range ||
563 should_free_lseg(&lseg->pls_range, recall_range)) {
Fred Isaman4541d162011-01-06 11:36:23 +0000564 dprintk("%s: freeing lseg %p iomode %d "
565 "offset %llu length %llu\n", __func__,
566 lseg, lseg->pls_range.iomode, lseg->pls_range.offset,
567 lseg->pls_range.length);
568 invalid++;
569 removed += mark_lseg_invalid(lseg, tmp_list);
570 }
571 dprintk("%s:Return %i\n", __func__, invalid - removed);
572 return invalid - removed;
Andy Adamson974cec82010-10-20 00:18:02 -0400573}
574
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000575/* note free_me must contain lsegs from a single layout_hdr */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000576void
Fred Isaman4541d162011-01-06 11:36:23 +0000577pnfs_free_lseg_list(struct list_head *free_me)
Andy Adamson974cec82010-10-20 00:18:02 -0400578{
Fred Isaman4541d162011-01-06 11:36:23 +0000579 struct pnfs_layout_segment *lseg, *tmp;
Andy Adamson974cec82010-10-20 00:18:02 -0400580
Fred Isamanf49f9ba2011-02-03 18:28:52 +0000581 if (list_empty(free_me))
582 return;
583
Fred Isaman4541d162011-01-06 11:36:23 +0000584 list_for_each_entry_safe(lseg, tmp, free_me, pls_list) {
Fred Isaman566052c2011-01-06 11:36:20 +0000585 list_del(&lseg->pls_list);
Trond Myklebust905ca192012-09-20 20:46:49 -0400586 pnfs_free_lseg(lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400587 }
588}
589
Benny Halevye5e94012010-10-20 00:18:01 -0400590void
591pnfs_destroy_layout(struct nfs_inode *nfsi)
592{
593 struct pnfs_layout_hdr *lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400594 LIST_HEAD(tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400595
596 spin_lock(&nfsi->vfs_inode.i_lock);
597 lo = nfsi->layout;
598 if (lo) {
Fred Isaman38511722011-02-03 18:28:50 +0000599 lo->plh_block_lgets++; /* permanently block new LAYOUTGETs */
Trond Myklebust49a85062012-09-18 20:43:31 -0400600 pnfs_mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
Trond Myklebust3e621212012-09-24 13:07:16 -0400601 pnfs_get_layout_hdr(lo);
602 pnfs_layout_clear_fail_bit(lo, NFS_LAYOUT_RO_FAILED);
603 pnfs_layout_clear_fail_bit(lo, NFS_LAYOUT_RW_FAILED);
Peng Taoc8290132014-12-01 08:22:18 +0800604 pnfs_clear_retry_layoutget(lo);
Trond Myklebust3e621212012-09-24 13:07:16 -0400605 spin_unlock(&nfsi->vfs_inode.i_lock);
606 pnfs_free_lseg_list(&tmp_list);
607 pnfs_put_layout_hdr(lo);
608 } else
609 spin_unlock(&nfsi->vfs_inode.i_lock);
Benny Halevye5e94012010-10-20 00:18:01 -0400610}
Andy Adamson041245c2012-04-27 17:53:53 -0400611EXPORT_SYMBOL_GPL(pnfs_destroy_layout);
Benny Halevye5e94012010-10-20 00:18:01 -0400612
Trond Myklebustfd9a8d72013-02-12 09:48:42 -0500613static bool
614pnfs_layout_add_bulk_destroy_list(struct inode *inode,
615 struct list_head *layout_list)
616{
617 struct pnfs_layout_hdr *lo;
618 bool ret = false;
619
620 spin_lock(&inode->i_lock);
621 lo = NFS_I(inode)->layout;
622 if (lo != NULL && list_empty(&lo->plh_bulk_destroy)) {
623 pnfs_get_layout_hdr(lo);
624 list_add(&lo->plh_bulk_destroy, layout_list);
625 ret = true;
626 }
627 spin_unlock(&inode->i_lock);
628 return ret;
629}
630
631/* Caller must hold rcu_read_lock and clp->cl_lock */
632static int
633pnfs_layout_bulk_destroy_byserver_locked(struct nfs_client *clp,
634 struct nfs_server *server,
635 struct list_head *layout_list)
636{
637 struct pnfs_layout_hdr *lo, *next;
638 struct inode *inode;
639
640 list_for_each_entry_safe(lo, next, &server->layouts, plh_layouts) {
641 inode = igrab(lo->plh_inode);
642 if (inode == NULL)
643 continue;
644 list_del_init(&lo->plh_layouts);
645 if (pnfs_layout_add_bulk_destroy_list(inode, layout_list))
646 continue;
647 rcu_read_unlock();
648 spin_unlock(&clp->cl_lock);
649 iput(inode);
650 spin_lock(&clp->cl_lock);
651 rcu_read_lock();
652 return -EAGAIN;
653 }
654 return 0;
655}
656
657static int
658pnfs_layout_free_bulk_destroy_list(struct list_head *layout_list,
659 bool is_bulk_recall)
660{
661 struct pnfs_layout_hdr *lo;
662 struct inode *inode;
663 struct pnfs_layout_range range = {
664 .iomode = IOMODE_ANY,
665 .offset = 0,
666 .length = NFS4_MAX_UINT64,
667 };
668 LIST_HEAD(lseg_list);
669 int ret = 0;
670
671 while (!list_empty(layout_list)) {
672 lo = list_entry(layout_list->next, struct pnfs_layout_hdr,
673 plh_bulk_destroy);
674 dprintk("%s freeing layout for inode %lu\n", __func__,
675 lo->plh_inode->i_ino);
676 inode = lo->plh_inode;
Christoph Hellwig7c5d1872014-09-10 08:23:29 -0700677
678 pnfs_layoutcommit_inode(inode, false);
679
Trond Myklebustfd9a8d72013-02-12 09:48:42 -0500680 spin_lock(&inode->i_lock);
681 list_del_init(&lo->plh_bulk_destroy);
682 lo->plh_block_lgets++; /* permanently block new LAYOUTGETs */
683 if (is_bulk_recall)
684 set_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags);
685 if (pnfs_mark_matching_lsegs_invalid(lo, &lseg_list, &range))
686 ret = -EAGAIN;
687 spin_unlock(&inode->i_lock);
688 pnfs_free_lseg_list(&lseg_list);
689 pnfs_put_layout_hdr(lo);
690 iput(inode);
691 }
692 return ret;
693}
694
695int
696pnfs_destroy_layouts_byfsid(struct nfs_client *clp,
697 struct nfs_fsid *fsid,
698 bool is_recall)
699{
700 struct nfs_server *server;
701 LIST_HEAD(layout_list);
702
703 spin_lock(&clp->cl_lock);
704 rcu_read_lock();
705restart:
706 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
707 if (memcmp(&server->fsid, fsid, sizeof(*fsid)) != 0)
708 continue;
709 if (pnfs_layout_bulk_destroy_byserver_locked(clp,
710 server,
711 &layout_list) != 0)
712 goto restart;
713 }
714 rcu_read_unlock();
715 spin_unlock(&clp->cl_lock);
716
717 if (list_empty(&layout_list))
718 return 0;
719 return pnfs_layout_free_bulk_destroy_list(&layout_list, is_recall);
720}
721
722int
723pnfs_destroy_layouts_byclid(struct nfs_client *clp,
724 bool is_recall)
725{
726 struct nfs_server *server;
727 LIST_HEAD(layout_list);
728
729 spin_lock(&clp->cl_lock);
730 rcu_read_lock();
731restart:
732 list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
733 if (pnfs_layout_bulk_destroy_byserver_locked(clp,
734 server,
735 &layout_list) != 0)
736 goto restart;
737 }
738 rcu_read_unlock();
739 spin_unlock(&clp->cl_lock);
740
741 if (list_empty(&layout_list))
742 return 0;
743 return pnfs_layout_free_bulk_destroy_list(&layout_list, is_recall);
744}
745
Andy Adamson974cec82010-10-20 00:18:02 -0400746/*
747 * Called by the state manger to remove all layouts established under an
748 * expired lease.
749 */
750void
751pnfs_destroy_all_layouts(struct nfs_client *clp)
752{
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400753 nfs4_deviceid_mark_client_invalid(clp);
754 nfs4_deviceid_purge_client(clp);
755
Trond Myklebustfd9a8d72013-02-12 09:48:42 -0500756 pnfs_destroy_layouts_byclid(clp, false);
Andy Adamson974cec82010-10-20 00:18:02 -0400757}
758
Trond Myklebust5a655032012-10-02 16:47:14 -0700759/*
760 * Compare 2 layout stateid sequence ids, to see which is newer,
761 * taking into account wraparound issues.
762 */
763static bool pnfs_seqid_is_newer(u32 s1, u32 s2)
764{
Trond Myklebust2c64c572014-02-12 09:36:59 -0500765 return (s32)(s1 - s2) > 0;
Trond Myklebust5a655032012-10-02 16:47:14 -0700766}
767
Fred Isamanfd6002e2011-01-06 11:36:22 +0000768/* update lo->plh_stateid with new if is more recent */
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000769void
770pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo, const nfs4_stateid *new,
771 bool update_barrier)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400772{
Trond Myklebust22aaf712012-10-04 16:32:22 -0700773 u32 oldseq, newseq, new_barrier;
774 int empty = list_empty(&lo->plh_segs);
Andy Adamson974cec82010-10-20 00:18:02 -0400775
Trond Myklebust2d2f24a2012-03-04 18:13:57 -0500776 oldseq = be32_to_cpu(lo->plh_stateid.seqid);
777 newseq = be32_to_cpu(new->seqid);
Trond Myklebust22aaf712012-10-04 16:32:22 -0700778 if (empty || pnfs_seqid_is_newer(newseq, oldseq)) {
Trond Myklebustf597c532012-03-04 18:13:56 -0500779 nfs4_stateid_copy(&lo->plh_stateid, new);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000780 if (update_barrier) {
Trond Myklebust22aaf712012-10-04 16:32:22 -0700781 new_barrier = be32_to_cpu(new->seqid);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000782 } else {
783 /* Because of wraparound, we want to keep the barrier
Trond Myklebust22aaf712012-10-04 16:32:22 -0700784 * "close" to the current seqids.
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000785 */
Trond Myklebust22aaf712012-10-04 16:32:22 -0700786 new_barrier = newseq - atomic_read(&lo->plh_outstanding);
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000787 }
Trond Myklebust22aaf712012-10-04 16:32:22 -0700788 if (empty || pnfs_seqid_is_newer(new_barrier, lo->plh_barrier))
789 lo->plh_barrier = new_barrier;
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000790 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400791}
792
Trond Myklebust19c54ab2012-10-05 16:56:58 -0700793static bool
794pnfs_layout_stateid_blocked(const struct pnfs_layout_hdr *lo,
795 const nfs4_stateid *stateid)
796{
797 u32 seqid = be32_to_cpu(stateid->seqid);
798
799 return !pnfs_seqid_is_newer(seqid, lo->plh_barrier);
800}
801
Peng Taoce6ab4f2014-09-06 00:53:24 +0800802static bool
803pnfs_layout_returning(const struct pnfs_layout_hdr *lo,
804 struct pnfs_layout_range *range)
805{
806 return test_bit(NFS_LAYOUT_RETURN, &lo->plh_flags) &&
807 (lo->plh_return_iomode == IOMODE_ANY ||
808 lo->plh_return_iomode == range->iomode);
809}
810
Fred Isamancf7d63f2011-01-06 11:36:25 +0000811/* lget is set to 1 if called from inside send_layoutget call chain */
812static bool
Peng Taoce6ab4f2014-09-06 00:53:24 +0800813pnfs_layoutgets_blocked(const struct pnfs_layout_hdr *lo,
814 struct pnfs_layout_range *range, int lget)
Fred Isamancf7d63f2011-01-06 11:36:25 +0000815{
Fred Isamanf7e89172011-01-06 11:36:32 +0000816 return lo->plh_block_lgets ||
817 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags) ||
Fred Isaman43f1b3d2011-01-06 11:36:30 +0000818 (list_empty(&lo->plh_segs) &&
Peng Taoce6ab4f2014-09-06 00:53:24 +0800819 (atomic_read(&lo->plh_outstanding) > lget)) ||
820 pnfs_layout_returning(lo, range);
Fred Isamancf7d63f2011-01-06 11:36:25 +0000821}
822
Fred Isamanfd6002e2011-01-06 11:36:22 +0000823int
824pnfs_choose_layoutget_stateid(nfs4_stateid *dst, struct pnfs_layout_hdr *lo,
Peng Taoce6ab4f2014-09-06 00:53:24 +0800825 struct pnfs_layout_range *range,
Fred Isamanfd6002e2011-01-06 11:36:22 +0000826 struct nfs4_state *open_state)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400827{
Fred Isamanfd6002e2011-01-06 11:36:22 +0000828 int status = 0;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400829
830 dprintk("--> %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000831 spin_lock(&lo->plh_inode->i_lock);
Peng Taoce6ab4f2014-09-06 00:53:24 +0800832 if (pnfs_layoutgets_blocked(lo, range, 1)) {
Fred Isamancf7d63f2011-01-06 11:36:25 +0000833 status = -EAGAIN;
Trond Myklebust5d422302013-03-14 16:57:48 -0400834 } else if (!nfs4_valid_open_stateid(open_state)) {
835 status = -EBADF;
Christoph Hellwig47abade2014-08-21 11:09:22 -0500836 } else if (list_empty(&lo->plh_segs) ||
837 test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags)) {
Fred Isamanfd6002e2011-01-06 11:36:22 +0000838 int seq;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400839
Fred Isamanfd6002e2011-01-06 11:36:22 +0000840 do {
841 seq = read_seqbegin(&open_state->seqlock);
Trond Myklebustf597c532012-03-04 18:13:56 -0500842 nfs4_stateid_copy(dst, &open_state->stateid);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000843 } while (read_seqretry(&open_state->seqlock, seq));
844 } else
Trond Myklebustf597c532012-03-04 18:13:56 -0500845 nfs4_stateid_copy(dst, &lo->plh_stateid);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000846 spin_unlock(&lo->plh_inode->i_lock);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400847 dprintk("<-- %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000848 return status;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400849}
850
851/*
852* Get layout from server.
853* for now, assume that whole file layouts are requested.
854* arg->offset: 0
855* arg->length: all ones
856*/
Benny Halevye5e94012010-10-20 00:18:01 -0400857static struct pnfs_layout_segment *
858send_layoutget(struct pnfs_layout_hdr *lo,
859 struct nfs_open_context *ctx,
Benny Halevyfb3296e2011-05-22 19:47:26 +0300860 struct pnfs_layout_range *range,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400861 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -0400862{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000863 struct inode *ino = lo->plh_inode;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400864 struct nfs_server *server = NFS_SERVER(ino);
865 struct nfs4_layoutget *lgp;
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -0400866 struct pnfs_layout_segment *lseg;
Benny Halevye5e94012010-10-20 00:18:01 -0400867
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400868 dprintk("--> %s\n", __func__);
869
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400870 lgp = kzalloc(sizeof(*lgp), gfp_flags);
Fred Isamancf7d63f2011-01-06 11:36:25 +0000871 if (lgp == NULL)
Andy Adamson974cec82010-10-20 00:18:02 -0400872 return NULL;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400873
Benny Halevyfb3296e2011-05-22 19:47:26 +0300874 lgp->args.minlength = PAGE_CACHE_SIZE;
875 if (lgp->args.minlength > range->length)
876 lgp->args.minlength = range->length;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400877 lgp->args.maxcount = PNFS_LAYOUT_MAXSIZE;
Benny Halevyfb3296e2011-05-22 19:47:26 +0300878 lgp->args.range = *range;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400879 lgp->args.type = server->pnfs_curr_ld->id;
880 lgp->args.inode = ino;
881 lgp->args.ctx = get_nfs_open_context(ctx);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400882 lgp->gfp_flags = gfp_flags;
Trond Myklebust6ab59342013-05-20 10:49:34 -0400883 lgp->cred = lo->plh_lc_cred;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400884
885 /* Synchronously retrieve layout information from server and
886 * store in lseg.
887 */
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -0400888 lseg = nfs4_proc_layoutget(lgp, gfp_flags);
889 if (IS_ERR(lseg)) {
890 switch (PTR_ERR(lseg)) {
891 case -ENOMEM:
892 case -ERESTARTSYS:
893 break;
894 default:
895 /* remember that LAYOUTGET failed and suspend trying */
Trond Myklebustb9e028f2012-09-18 16:41:18 -0400896 pnfs_layout_io_set_failed(lo, range->iomode);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -0400897 }
898 return NULL;
Tom Haynesd67ae822014-12-11 17:02:04 -0500899 } else
900 pnfs_layout_clear_fail_bit(lo,
901 pnfs_iomode_to_fail_bit(range->iomode));
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400902
Andy Adamson974cec82010-10-20 00:18:02 -0400903 return lseg;
904}
905
Trond Myklebust24956802013-03-20 13:03:00 -0400906static void pnfs_clear_layoutcommit(struct inode *inode,
907 struct list_head *head)
908{
909 struct nfs_inode *nfsi = NFS_I(inode);
910 struct pnfs_layout_segment *lseg, *tmp;
911
912 if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
913 return;
914 list_for_each_entry_safe(lseg, tmp, &nfsi->layout->plh_segs, pls_list) {
915 if (!test_and_clear_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags))
916 continue;
917 pnfs_lseg_dec_and_remove_zero(lseg, head);
918 }
919}
920
Tom Haynesd67ae822014-12-11 17:02:04 -0500921void pnfs_clear_layoutreturn_waitbit(struct pnfs_layout_hdr *lo)
922{
923 clear_bit_unlock(NFS_LAYOUT_RETURN, &lo->plh_flags);
924 smp_mb__after_atomic();
925 wake_up_bit(&lo->plh_flags, NFS_LAYOUT_RETURN);
926}
927
Peng Taof40eb5d2014-09-06 00:53:22 +0800928static int
929pnfs_send_layoutreturn(struct pnfs_layout_hdr *lo, nfs4_stateid stateid,
Peng Tao6c166052014-11-17 09:30:40 +0800930 enum pnfs_iomode iomode, bool sync)
Peng Taof40eb5d2014-09-06 00:53:22 +0800931{
932 struct inode *ino = lo->plh_inode;
933 struct nfs4_layoutreturn *lrp;
934 int status = 0;
935
Trond Myklebuste4af4402015-02-05 17:05:08 -0500936 lrp = kzalloc(sizeof(*lrp), GFP_NOFS);
Peng Taof40eb5d2014-09-06 00:53:22 +0800937 if (unlikely(lrp == NULL)) {
938 status = -ENOMEM;
939 spin_lock(&ino->i_lock);
940 lo->plh_block_lgets--;
Tom Haynesd67ae822014-12-11 17:02:04 -0500941 pnfs_clear_layoutreturn_waitbit(lo);
Peng Tao193e3aa2014-11-17 09:30:41 +0800942 rpc_wake_up(&NFS_SERVER(ino)->roc_rpcwaitq);
Peng Taof40eb5d2014-09-06 00:53:22 +0800943 spin_unlock(&ino->i_lock);
944 pnfs_put_layout_hdr(lo);
945 goto out;
946 }
947
948 lrp->args.stateid = stateid;
949 lrp->args.layout_type = NFS_SERVER(ino)->pnfs_curr_ld->id;
950 lrp->args.inode = ino;
Peng Tao15eb67c2014-11-17 09:30:36 +0800951 lrp->args.range.iomode = iomode;
952 lrp->args.range.offset = 0;
953 lrp->args.range.length = NFS4_MAX_UINT64;
Peng Taof40eb5d2014-09-06 00:53:22 +0800954 lrp->args.layout = lo;
955 lrp->clp = NFS_SERVER(ino)->nfs_client;
956 lrp->cred = lo->plh_lc_cred;
957
Peng Tao6c166052014-11-17 09:30:40 +0800958 status = nfs4_proc_layoutreturn(lrp, sync);
Peng Taof40eb5d2014-09-06 00:53:22 +0800959out:
960 dprintk("<-- %s status: %d\n", __func__, status);
961 return status;
962}
963
Andy Adamson293b3b02012-06-20 15:03:34 -0400964/*
965 * Initiates a LAYOUTRETURN(FILE), and removes the pnfs_layout_hdr
966 * when the layout segment list is empty.
967 *
968 * Note that a pnfs_layout_hdr can exist with an empty layout segment
969 * list when LAYOUTGET has failed, or when LAYOUTGET succeeded, but the
970 * deviceid is marked invalid.
971 */
Benny Halevycbe82602011-05-22 19:52:37 +0300972int
973_pnfs_return_layout(struct inode *ino)
974{
975 struct pnfs_layout_hdr *lo = NULL;
976 struct nfs_inode *nfsi = NFS_I(ino);
977 LIST_HEAD(tmp_list);
Benny Halevycbe82602011-05-22 19:52:37 +0300978 nfs4_stateid stateid;
Andy Adamson293b3b02012-06-20 15:03:34 -0400979 int status = 0, empty;
Benny Halevycbe82602011-05-22 19:52:37 +0300980
Andy Adamson366d5052012-06-20 15:03:33 -0400981 dprintk("NFS: %s for inode %lu\n", __func__, ino->i_ino);
Benny Halevycbe82602011-05-22 19:52:37 +0300982
983 spin_lock(&ino->i_lock);
984 lo = nfsi->layout;
Trond Myklebuste5929f32012-09-21 16:37:02 -0400985 if (!lo) {
Benny Halevycbe82602011-05-22 19:52:37 +0300986 spin_unlock(&ino->i_lock);
Andy Adamson293b3b02012-06-20 15:03:34 -0400987 dprintk("NFS: %s no layout to return\n", __func__);
988 goto out;
Benny Halevycbe82602011-05-22 19:52:37 +0300989 }
990 stateid = nfsi->layout->plh_stateid;
991 /* Reference matched in nfs4_layoutreturn_release */
Trond Myklebust70c3bd22012-09-18 20:51:13 -0400992 pnfs_get_layout_hdr(lo);
Andy Adamson293b3b02012-06-20 15:03:34 -0400993 empty = list_empty(&lo->plh_segs);
Trond Myklebust24956802013-03-20 13:03:00 -0400994 pnfs_clear_layoutcommit(ino, &tmp_list);
Trond Myklebust49a85062012-09-18 20:43:31 -0400995 pnfs_mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
Christoph Hellwigc88953d2014-09-10 08:23:31 -0700996
997 if (NFS_SERVER(ino)->pnfs_curr_ld->return_range) {
998 struct pnfs_layout_range range = {
999 .iomode = IOMODE_ANY,
1000 .offset = 0,
1001 .length = NFS4_MAX_UINT64,
1002 };
1003 NFS_SERVER(ino)->pnfs_curr_ld->return_range(lo, &range);
1004 }
1005
Andy Adamson293b3b02012-06-20 15:03:34 -04001006 /* Don't send a LAYOUTRETURN if list was initially empty */
1007 if (empty) {
1008 spin_unlock(&ino->i_lock);
Trond Myklebust70c3bd22012-09-18 20:51:13 -04001009 pnfs_put_layout_hdr(lo);
Andy Adamson293b3b02012-06-20 15:03:34 -04001010 dprintk("NFS: %s no layout segments to return\n", __func__);
1011 goto out;
1012 }
Christoph Hellwig47abade2014-08-21 11:09:22 -05001013
1014 set_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags);
Fred Isamanea0ded72011-06-15 12:31:02 -04001015 lo->plh_block_lgets++;
Benny Halevycbe82602011-05-22 19:52:37 +03001016 spin_unlock(&ino->i_lock);
1017 pnfs_free_lseg_list(&tmp_list);
1018
Peng Tao6c166052014-11-17 09:30:40 +08001019 status = pnfs_send_layoutreturn(lo, stateid, IOMODE_ANY, true);
Benny Halevycbe82602011-05-22 19:52:37 +03001020out:
1021 dprintk("<-- %s status: %d\n", __func__, status);
1022 return status;
1023}
Andy Adamson0a57cda2012-04-27 17:53:50 -04001024EXPORT_SYMBOL_GPL(_pnfs_return_layout);
Benny Halevycbe82602011-05-22 19:52:37 +03001025
Trond Myklebust24028672013-03-20 13:23:33 -04001026int
1027pnfs_commit_and_return_layout(struct inode *inode)
1028{
1029 struct pnfs_layout_hdr *lo;
1030 int ret;
1031
1032 spin_lock(&inode->i_lock);
1033 lo = NFS_I(inode)->layout;
1034 if (lo == NULL) {
1035 spin_unlock(&inode->i_lock);
1036 return 0;
1037 }
1038 pnfs_get_layout_hdr(lo);
1039 /* Block new layoutgets and read/write to ds */
1040 lo->plh_block_lgets++;
1041 spin_unlock(&inode->i_lock);
1042 filemap_fdatawait(inode->i_mapping);
1043 ret = pnfs_layoutcommit_inode(inode, true);
1044 if (ret == 0)
1045 ret = _pnfs_return_layout(inode);
1046 spin_lock(&inode->i_lock);
1047 lo->plh_block_lgets--;
1048 spin_unlock(&inode->i_lock);
1049 pnfs_put_layout_hdr(lo);
1050 return ret;
1051}
1052
Fred Isamanf7e89172011-01-06 11:36:32 +00001053bool pnfs_roc(struct inode *ino)
1054{
Trond Myklebust40dd4b72015-01-24 13:54:37 -05001055 struct nfs_inode *nfsi = NFS_I(ino);
1056 struct nfs_open_context *ctx;
1057 struct nfs4_state *state;
Fred Isamanf7e89172011-01-06 11:36:32 +00001058 struct pnfs_layout_hdr *lo;
1059 struct pnfs_layout_segment *lseg, *tmp;
Peng Tao193e3aa2014-11-17 09:30:41 +08001060 nfs4_stateid stateid;
Fred Isamanf7e89172011-01-06 11:36:32 +00001061 LIST_HEAD(tmp_list);
Peng Tao193e3aa2014-11-17 09:30:41 +08001062 bool found = false, layoutreturn = false;
Fred Isamanf7e89172011-01-06 11:36:32 +00001063
1064 spin_lock(&ino->i_lock);
Trond Myklebust40dd4b72015-01-24 13:54:37 -05001065 lo = nfsi->layout;
Fred Isamanf7e89172011-01-06 11:36:32 +00001066 if (!lo || !test_and_clear_bit(NFS_LAYOUT_ROC, &lo->plh_flags) ||
1067 test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags))
Trond Myklebust40dd4b72015-01-24 13:54:37 -05001068 goto out_noroc;
1069
1070 /* Don't return layout if we hold a delegation */
1071 if (nfs4_check_delegation(ino, FMODE_READ))
1072 goto out_noroc;
1073
1074 list_for_each_entry(ctx, &nfsi->open_files, list) {
1075 state = ctx->state;
1076 /* Don't return layout if there is open file state */
1077 if (state != NULL && state->state != 0)
1078 goto out_noroc;
1079 }
1080
Peng Taoc8290132014-12-01 08:22:18 +08001081 pnfs_clear_retry_layoutget(lo);
Fred Isamanf7e89172011-01-06 11:36:32 +00001082 list_for_each_entry_safe(lseg, tmp, &lo->plh_segs, pls_list)
1083 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
1084 mark_lseg_invalid(lseg, &tmp_list);
1085 found = true;
1086 }
1087 if (!found)
Trond Myklebust40dd4b72015-01-24 13:54:37 -05001088 goto out_noroc;
Fred Isamanf7e89172011-01-06 11:36:32 +00001089 lo->plh_block_lgets++;
Trond Myklebust70c3bd22012-09-18 20:51:13 -04001090 pnfs_get_layout_hdr(lo); /* matched in pnfs_roc_release */
Fred Isamanf7e89172011-01-06 11:36:32 +00001091 spin_unlock(&ino->i_lock);
1092 pnfs_free_lseg_list(&tmp_list);
Trond Myklebust71401712015-03-25 12:36:13 -04001093 pnfs_layoutcommit_inode(ino, true);
Fred Isamanf7e89172011-01-06 11:36:32 +00001094 return true;
1095
Trond Myklebust40dd4b72015-01-24 13:54:37 -05001096out_noroc:
Peng Tao193e3aa2014-11-17 09:30:41 +08001097 if (lo) {
1098 stateid = lo->plh_stateid;
1099 layoutreturn =
1100 test_and_clear_bit(NFS_LAYOUT_RETURN_BEFORE_CLOSE,
1101 &lo->plh_flags);
1102 if (layoutreturn) {
1103 lo->plh_block_lgets++;
1104 pnfs_get_layout_hdr(lo);
1105 }
1106 }
Fred Isamanf7e89172011-01-06 11:36:32 +00001107 spin_unlock(&ino->i_lock);
Trond Myklebust71401712015-03-25 12:36:13 -04001108 if (layoutreturn) {
1109 pnfs_layoutcommit_inode(ino, true);
Peng Tao27b6f532014-10-20 14:44:38 +08001110 pnfs_send_layoutreturn(lo, stateid, IOMODE_ANY, true);
Trond Myklebust71401712015-03-25 12:36:13 -04001111 }
Fred Isamanf7e89172011-01-06 11:36:32 +00001112 return false;
1113}
1114
1115void pnfs_roc_release(struct inode *ino)
1116{
1117 struct pnfs_layout_hdr *lo;
1118
1119 spin_lock(&ino->i_lock);
1120 lo = NFS_I(ino)->layout;
1121 lo->plh_block_lgets--;
Trond Myklebust6622c3e2012-09-20 17:23:11 -04001122 if (atomic_dec_and_test(&lo->plh_refcount)) {
1123 pnfs_detach_layout_hdr(lo);
1124 spin_unlock(&ino->i_lock);
1125 pnfs_free_layout_hdr(lo);
1126 } else
1127 spin_unlock(&ino->i_lock);
Fred Isamanf7e89172011-01-06 11:36:32 +00001128}
1129
1130void pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
1131{
1132 struct pnfs_layout_hdr *lo;
1133
1134 spin_lock(&ino->i_lock);
1135 lo = NFS_I(ino)->layout;
Trond Myklebust0f35ad62012-10-04 16:28:17 -07001136 if (pnfs_seqid_is_newer(barrier, lo->plh_barrier))
Fred Isamanf7e89172011-01-06 11:36:32 +00001137 lo->plh_barrier = barrier;
1138 spin_unlock(&ino->i_lock);
1139}
1140
Trond Myklebust7fdab062012-09-20 20:15:57 -04001141bool pnfs_roc_drain(struct inode *ino, u32 *barrier, struct rpc_task *task)
Fred Isamanf7e89172011-01-06 11:36:32 +00001142{
1143 struct nfs_inode *nfsi = NFS_I(ino);
Trond Myklebust7fdab062012-09-20 20:15:57 -04001144 struct pnfs_layout_hdr *lo;
Fred Isamanf7e89172011-01-06 11:36:32 +00001145 struct pnfs_layout_segment *lseg;
Peng Tao193e3aa2014-11-17 09:30:41 +08001146 nfs4_stateid stateid;
Trond Myklebust7fdab062012-09-20 20:15:57 -04001147 u32 current_seqid;
Peng Tao193e3aa2014-11-17 09:30:41 +08001148 bool found = false, layoutreturn = false;
Fred Isamanf7e89172011-01-06 11:36:32 +00001149
1150 spin_lock(&ino->i_lock);
1151 list_for_each_entry(lseg, &nfsi->layout->plh_segs, pls_list)
1152 if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
Trond Myklebust7fdab062012-09-20 20:15:57 -04001153 rpc_sleep_on(&NFS_SERVER(ino)->roc_rpcwaitq, task, NULL);
Fred Isamanf7e89172011-01-06 11:36:32 +00001154 found = true;
Trond Myklebust7fdab062012-09-20 20:15:57 -04001155 goto out;
Fred Isamanf7e89172011-01-06 11:36:32 +00001156 }
Trond Myklebust7fdab062012-09-20 20:15:57 -04001157 lo = nfsi->layout;
1158 current_seqid = be32_to_cpu(lo->plh_stateid.seqid);
Fred Isamanf7e89172011-01-06 11:36:32 +00001159
Trond Myklebust7fdab062012-09-20 20:15:57 -04001160 /* Since close does not return a layout stateid for use as
1161 * a barrier, we choose the worst-case barrier.
1162 */
1163 *barrier = current_seqid + atomic_read(&lo->plh_outstanding);
1164out:
Peng Tao193e3aa2014-11-17 09:30:41 +08001165 if (!found) {
1166 stateid = lo->plh_stateid;
1167 layoutreturn =
1168 test_and_clear_bit(NFS_LAYOUT_RETURN_BEFORE_CLOSE,
1169 &lo->plh_flags);
1170 if (layoutreturn) {
1171 lo->plh_block_lgets++;
1172 pnfs_get_layout_hdr(lo);
1173 }
1174 }
Fred Isamanf7e89172011-01-06 11:36:32 +00001175 spin_unlock(&ino->i_lock);
Peng Tao193e3aa2014-11-17 09:30:41 +08001176 if (layoutreturn) {
1177 rpc_sleep_on(&NFS_SERVER(ino)->roc_rpcwaitq, task, NULL);
Peng Tao27b6f532014-10-20 14:44:38 +08001178 pnfs_send_layoutreturn(lo, stateid, IOMODE_ANY, false);
Peng Tao193e3aa2014-11-17 09:30:41 +08001179 }
Fred Isamanf7e89172011-01-06 11:36:32 +00001180 return found;
1181}
1182
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001183/*
1184 * Compare two layout segments for sorting into layout cache.
1185 * We want to preferentially return RW over RO layouts, so ensure those
1186 * are seen first.
1187 */
1188static s64
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001189pnfs_lseg_range_cmp(const struct pnfs_layout_range *l1,
Trond Myklebust3cb2df12013-06-03 11:24:36 -04001190 const struct pnfs_layout_range *l2)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001191{
Benny Halevyfb3296e2011-05-22 19:47:26 +03001192 s64 d;
1193
1194 /* high offset > low offset */
1195 d = l1->offset - l2->offset;
1196 if (d)
1197 return d;
1198
1199 /* short length > long length */
1200 d = l2->length - l1->length;
1201 if (d)
1202 return d;
1203
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001204 /* read > read/write */
Benny Halevyfb3296e2011-05-22 19:47:26 +03001205 return (int)(l1->iomode == IOMODE_READ) - (int)(l2->iomode == IOMODE_READ);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001206}
1207
Andy Adamson974cec82010-10-20 00:18:02 -04001208static void
Trond Myklebust57036a32012-09-20 16:33:30 -04001209pnfs_layout_insert_lseg(struct pnfs_layout_hdr *lo,
Andy Adamson974cec82010-10-20 00:18:02 -04001210 struct pnfs_layout_segment *lseg)
1211{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001212 struct pnfs_layout_segment *lp;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001213
Andy Adamson974cec82010-10-20 00:18:02 -04001214 dprintk("%s:Begin\n", __func__);
1215
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001216 list_for_each_entry(lp, &lo->plh_segs, pls_list) {
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001217 if (pnfs_lseg_range_cmp(&lseg->pls_range, &lp->pls_range) > 0)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001218 continue;
Fred Isaman566052c2011-01-06 11:36:20 +00001219 list_add_tail(&lseg->pls_list, &lp->pls_list);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001220 dprintk("%s: inserted lseg %p "
1221 "iomode %d offset %llu length %llu before "
1222 "lp %p iomode %d offset %llu length %llu\n",
Fred Isaman566052c2011-01-06 11:36:20 +00001223 __func__, lseg, lseg->pls_range.iomode,
1224 lseg->pls_range.offset, lseg->pls_range.length,
1225 lp, lp->pls_range.iomode, lp->pls_range.offset,
1226 lp->pls_range.length);
Benny Halevyfb3296e2011-05-22 19:47:26 +03001227 goto out;
Andy Adamson974cec82010-10-20 00:18:02 -04001228 }
Benny Halevyfb3296e2011-05-22 19:47:26 +03001229 list_add_tail(&lseg->pls_list, &lo->plh_segs);
1230 dprintk("%s: inserted lseg %p "
1231 "iomode %d offset %llu length %llu at tail\n",
1232 __func__, lseg, lseg->pls_range.iomode,
1233 lseg->pls_range.offset, lseg->pls_range.length);
1234out:
Trond Myklebust70c3bd22012-09-18 20:51:13 -04001235 pnfs_get_layout_hdr(lo);
Andy Adamson974cec82010-10-20 00:18:02 -04001236
1237 dprintk("%s:Return\n", __func__);
Benny Halevye5e94012010-10-20 00:18:01 -04001238}
1239
1240static struct pnfs_layout_hdr *
Peng Tao9fa40752011-07-30 20:52:32 -04001241alloc_init_layout_hdr(struct inode *ino,
1242 struct nfs_open_context *ctx,
1243 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -04001244{
1245 struct pnfs_layout_hdr *lo;
1246
Benny Halevy636fb9c2011-05-22 19:51:33 +03001247 lo = pnfs_alloc_layout_hdr(ino, gfp_flags);
Benny Halevye5e94012010-10-20 00:18:01 -04001248 if (!lo)
1249 return NULL;
Fred Isamancc6e5342011-01-06 11:36:28 +00001250 atomic_set(&lo->plh_refcount, 1);
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001251 INIT_LIST_HEAD(&lo->plh_layouts);
1252 INIT_LIST_HEAD(&lo->plh_segs);
Trond Myklebustfd9a8d72013-02-12 09:48:42 -05001253 INIT_LIST_HEAD(&lo->plh_bulk_destroy);
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001254 lo->plh_inode = ino;
Trond Myklebust5cc22162013-05-21 09:26:49 -04001255 lo->plh_lc_cred = get_rpccred(ctx->cred);
Benny Halevye5e94012010-10-20 00:18:01 -04001256 return lo;
1257}
1258
1259static struct pnfs_layout_hdr *
Peng Tao9fa40752011-07-30 20:52:32 -04001260pnfs_find_alloc_layout(struct inode *ino,
1261 struct nfs_open_context *ctx,
1262 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -04001263{
1264 struct nfs_inode *nfsi = NFS_I(ino);
1265 struct pnfs_layout_hdr *new = NULL;
1266
1267 dprintk("%s Begin ino=%p layout=%p\n", __func__, ino, nfsi->layout);
1268
Trond Myklebust251ec412012-10-02 15:41:05 -07001269 if (nfsi->layout != NULL)
1270 goto out_existing;
Benny Halevye5e94012010-10-20 00:18:01 -04001271 spin_unlock(&ino->i_lock);
Peng Tao9fa40752011-07-30 20:52:32 -04001272 new = alloc_init_layout_hdr(ino, ctx, gfp_flags);
Benny Halevye5e94012010-10-20 00:18:01 -04001273 spin_lock(&ino->i_lock);
1274
Trond Myklebust251ec412012-10-02 15:41:05 -07001275 if (likely(nfsi->layout == NULL)) { /* Won the race? */
Benny Halevye5e94012010-10-20 00:18:01 -04001276 nfsi->layout = new;
Trond Myklebust251ec412012-10-02 15:41:05 -07001277 return new;
Yanchuan Nian7175fe92012-10-31 16:05:48 +08001278 } else if (new != NULL)
1279 pnfs_free_layout_hdr(new);
Trond Myklebust251ec412012-10-02 15:41:05 -07001280out_existing:
1281 pnfs_get_layout_hdr(nfsi->layout);
Benny Halevye5e94012010-10-20 00:18:01 -04001282 return nfsi->layout;
1283}
1284
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001285/*
1286 * iomode matching rules:
1287 * iomode lseg match
1288 * ----- ----- -----
1289 * ANY READ true
1290 * ANY RW true
1291 * RW READ false
1292 * RW RW true
1293 * READ READ true
1294 * READ RW true
1295 */
Trond Myklebust3cb2df12013-06-03 11:24:36 -04001296static bool
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001297pnfs_lseg_range_match(const struct pnfs_layout_range *ls_range,
Trond Myklebust3cb2df12013-06-03 11:24:36 -04001298 const struct pnfs_layout_range *range)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001299{
Benny Halevyfb3296e2011-05-22 19:47:26 +03001300 struct pnfs_layout_range range1;
1301
1302 if ((range->iomode == IOMODE_RW &&
1303 ls_range->iomode != IOMODE_RW) ||
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001304 !pnfs_lseg_range_intersecting(ls_range, range))
Benny Halevyfb3296e2011-05-22 19:47:26 +03001305 return 0;
1306
1307 /* range1 covers only the first byte in the range */
1308 range1 = *range;
1309 range1.length = 1;
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001310 return pnfs_lseg_range_contained(ls_range, &range1);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001311}
1312
1313/*
1314 * lookup range in layout
1315 */
Benny Halevye5e94012010-10-20 00:18:01 -04001316static struct pnfs_layout_segment *
Benny Halevyfb3296e2011-05-22 19:47:26 +03001317pnfs_find_lseg(struct pnfs_layout_hdr *lo,
1318 struct pnfs_layout_range *range)
Benny Halevye5e94012010-10-20 00:18:01 -04001319{
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001320 struct pnfs_layout_segment *lseg, *ret = NULL;
1321
1322 dprintk("%s:Begin\n", __func__);
1323
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001324 list_for_each_entry(lseg, &lo->plh_segs, pls_list) {
Fred Isaman4541d162011-01-06 11:36:23 +00001325 if (test_bit(NFS_LSEG_VALID, &lseg->pls_flags) &&
Peng Taoce6ab4f2014-09-06 00:53:24 +08001326 !test_bit(NFS_LSEG_LAYOUTRETURN, &lseg->pls_flags) &&
Trond Myklebust7dc0ac72013-06-03 11:30:24 -04001327 pnfs_lseg_range_match(&lseg->pls_range, range)) {
Trond Myklebust9369a432012-09-18 20:57:08 -04001328 ret = pnfs_get_lseg(lseg);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001329 break;
1330 }
Benny Halevyd771e3a2011-06-14 16:30:16 -04001331 if (lseg->pls_range.offset > range->offset)
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001332 break;
1333 }
1334
1335 dprintk("%s:Return lseg %p ref %d\n",
Fred Isaman4541d162011-01-06 11:36:23 +00001336 __func__, ret, ret ? atomic_read(&ret->pls_refcount) : 0);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001337 return ret;
Benny Halevye5e94012010-10-20 00:18:01 -04001338}
1339
1340/*
Andy Adamsond23d61c2012-05-23 05:02:37 -04001341 * Use mdsthreshold hints set at each OPEN to determine if I/O should go
1342 * to the MDS or over pNFS
1343 *
1344 * The nfs_inode read_io and write_io fields are cumulative counters reset
1345 * when there are no layout segments. Note that in pnfs_update_layout iomode
1346 * is set to IOMODE_READ for a READ request, and set to IOMODE_RW for a
1347 * WRITE request.
1348 *
1349 * A return of true means use MDS I/O.
1350 *
1351 * From rfc 5661:
1352 * If a file's size is smaller than the file size threshold, data accesses
1353 * SHOULD be sent to the metadata server. If an I/O request has a length that
1354 * is below the I/O size threshold, the I/O SHOULD be sent to the metadata
1355 * server. If both file size and I/O size are provided, the client SHOULD
1356 * reach or exceed both thresholds before sending its read or write
1357 * requests to the data server.
1358 */
1359static bool pnfs_within_mdsthreshold(struct nfs_open_context *ctx,
1360 struct inode *ino, int iomode)
1361{
1362 struct nfs4_threshold *t = ctx->mdsthreshold;
1363 struct nfs_inode *nfsi = NFS_I(ino);
1364 loff_t fsize = i_size_read(ino);
1365 bool size = false, size_set = false, io = false, io_set = false, ret = false;
1366
1367 if (t == NULL)
1368 return ret;
1369
1370 dprintk("%s bm=0x%x rd_sz=%llu wr_sz=%llu rd_io=%llu wr_io=%llu\n",
1371 __func__, t->bm, t->rd_sz, t->wr_sz, t->rd_io_sz, t->wr_io_sz);
1372
1373 switch (iomode) {
1374 case IOMODE_READ:
1375 if (t->bm & THRESHOLD_RD) {
1376 dprintk("%s fsize %llu\n", __func__, fsize);
1377 size_set = true;
1378 if (fsize < t->rd_sz)
1379 size = true;
1380 }
1381 if (t->bm & THRESHOLD_RD_IO) {
1382 dprintk("%s nfsi->read_io %llu\n", __func__,
1383 nfsi->read_io);
1384 io_set = true;
1385 if (nfsi->read_io < t->rd_io_sz)
1386 io = true;
1387 }
1388 break;
1389 case IOMODE_RW:
1390 if (t->bm & THRESHOLD_WR) {
1391 dprintk("%s fsize %llu\n", __func__, fsize);
1392 size_set = true;
1393 if (fsize < t->wr_sz)
1394 size = true;
1395 }
1396 if (t->bm & THRESHOLD_WR_IO) {
1397 dprintk("%s nfsi->write_io %llu\n", __func__,
1398 nfsi->write_io);
1399 io_set = true;
1400 if (nfsi->write_io < t->wr_io_sz)
1401 io = true;
1402 }
1403 break;
1404 }
1405 if (size_set && io_set) {
1406 if (size && io)
1407 ret = true;
1408 } else if (size || io)
1409 ret = true;
1410
1411 dprintk("<-- %s size %d io %d ret %d\n", __func__, size, io, ret);
1412 return ret;
1413}
1414
Peng Taoaa8a45e2014-12-01 08:22:23 +08001415/* stop waiting if someone clears NFS_LAYOUT_RETRY_LAYOUTGET bit. */
1416static int pnfs_layoutget_retry_bit_wait(struct wait_bit_key *key)
1417{
1418 if (!test_bit(NFS_LAYOUT_RETRY_LAYOUTGET, key->flags))
1419 return 1;
1420 return nfs_wait_bit_killable(key);
1421}
1422
1423static bool pnfs_prepare_to_retry_layoutget(struct pnfs_layout_hdr *lo)
1424{
1425 /*
1426 * send layoutcommit as it can hold up layoutreturn due to lseg
1427 * reference
1428 */
1429 pnfs_layoutcommit_inode(lo->plh_inode, false);
1430 return !wait_on_bit_action(&lo->plh_flags, NFS_LAYOUT_RETURN,
1431 pnfs_layoutget_retry_bit_wait,
1432 TASK_UNINTERRUPTIBLE);
1433}
1434
Tom Haynesd67ae822014-12-11 17:02:04 -05001435static void pnfs_clear_first_layoutget(struct pnfs_layout_hdr *lo)
1436{
1437 unsigned long *bitlock = &lo->plh_flags;
1438
1439 clear_bit_unlock(NFS_LAYOUT_FIRST_LAYOUTGET, bitlock);
1440 smp_mb__after_atomic();
1441 wake_up_bit(bitlock, NFS_LAYOUT_FIRST_LAYOUTGET);
1442}
1443
Andy Adamsond23d61c2012-05-23 05:02:37 -04001444/*
Benny Halevye5e94012010-10-20 00:18:01 -04001445 * Layout segment is retreived from the server if not cached.
1446 * The appropriate layout segment is referenced and returned to the caller.
1447 */
Andy Adamson7c24d942011-06-13 18:22:38 -04001448struct pnfs_layout_segment *
Benny Halevye5e94012010-10-20 00:18:01 -04001449pnfs_update_layout(struct inode *ino,
1450 struct nfs_open_context *ctx,
Benny Halevyfb3296e2011-05-22 19:47:26 +03001451 loff_t pos,
1452 u64 count,
Trond Myklebusta75b9df2011-05-11 18:00:51 -04001453 enum pnfs_iomode iomode,
1454 gfp_t gfp_flags)
Benny Halevye5e94012010-10-20 00:18:01 -04001455{
Benny Halevyfb3296e2011-05-22 19:47:26 +03001456 struct pnfs_layout_range arg = {
1457 .iomode = iomode,
1458 .offset = pos,
1459 .length = count,
1460 };
Benny Halevy707ed5f2011-05-22 19:47:46 +03001461 unsigned pg_offset;
Weston Andros Adamson6382a442011-06-01 16:44:44 -04001462 struct nfs_server *server = NFS_SERVER(ino);
1463 struct nfs_client *clp = server->nfs_client;
Benny Halevye5e94012010-10-20 00:18:01 -04001464 struct pnfs_layout_hdr *lo;
1465 struct pnfs_layout_segment *lseg = NULL;
Weston Andros Adamson30005122013-02-28 20:30:10 -05001466 bool first;
Benny Halevye5e94012010-10-20 00:18:01 -04001467
1468 if (!pnfs_enabled_sb(NFS_SERVER(ino)))
Trond Myklebustf86bbcf2012-09-26 11:21:40 -04001469 goto out;
Andy Adamsond23d61c2012-05-23 05:02:37 -04001470
1471 if (pnfs_within_mdsthreshold(ctx, ino, iomode))
Trond Myklebustf86bbcf2012-09-26 11:21:40 -04001472 goto out;
Andy Adamsond23d61c2012-05-23 05:02:37 -04001473
Peng Tao9bf87482014-08-22 17:37:41 +08001474lookup_again:
1475 first = false;
Benny Halevye5e94012010-10-20 00:18:01 -04001476 spin_lock(&ino->i_lock);
Peng Tao9fa40752011-07-30 20:52:32 -04001477 lo = pnfs_find_alloc_layout(ino, ctx, gfp_flags);
Trond Myklebust830ffb52012-09-20 21:25:19 -04001478 if (lo == NULL) {
1479 spin_unlock(&ino->i_lock);
1480 goto out;
1481 }
Benny Halevye5e94012010-10-20 00:18:01 -04001482
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001483 /* Do we even need to bother with this? */
Trond Myklebusta59c30a2012-03-01 11:17:47 -05001484 if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001485 dprintk("%s matches recall, use MDS\n", __func__);
Benny Halevye5e94012010-10-20 00:18:01 -04001486 goto out_unlock;
1487 }
1488
1489 /* if LAYOUTGET already failed once we don't try again */
Peng Taoaa8a45e2014-12-01 08:22:23 +08001490 if (pnfs_layout_io_test_failed(lo, iomode) &&
1491 !pnfs_should_retry_layoutget(lo))
Benny Halevye5e94012010-10-20 00:18:01 -04001492 goto out_unlock;
1493
Peng Tao9bf87482014-08-22 17:37:41 +08001494 first = list_empty(&lo->plh_segs);
1495 if (first) {
1496 /* The first layoutget for the file. Need to serialize per
1497 * RFC 5661 Errata 3208.
1498 */
1499 if (test_and_set_bit(NFS_LAYOUT_FIRST_LAYOUTGET,
1500 &lo->plh_flags)) {
1501 spin_unlock(&ino->i_lock);
1502 wait_on_bit(&lo->plh_flags, NFS_LAYOUT_FIRST_LAYOUTGET,
1503 TASK_UNINTERRUPTIBLE);
1504 pnfs_put_layout_hdr(lo);
1505 goto lookup_again;
1506 }
1507 } else {
1508 /* Check to see if the layout for the given range
1509 * already exists
1510 */
1511 lseg = pnfs_find_lseg(lo, &arg);
1512 if (lseg)
1513 goto out_unlock;
1514 }
Andy Adamson568e8c42011-03-01 01:34:22 +00001515
Peng Taoaa8a45e2014-12-01 08:22:23 +08001516 /*
1517 * Because we free lsegs before sending LAYOUTRETURN, we need to wait
1518 * for LAYOUTRETURN even if first is true.
1519 */
1520 if (!lseg && pnfs_should_retry_layoutget(lo) &&
1521 test_bit(NFS_LAYOUT_RETURN, &lo->plh_flags)) {
1522 spin_unlock(&ino->i_lock);
1523 dprintk("%s wait for layoutreturn\n", __func__);
1524 if (pnfs_prepare_to_retry_layoutget(lo)) {
Tom Haynesd67ae822014-12-11 17:02:04 -05001525 if (first)
1526 pnfs_clear_first_layoutget(lo);
Peng Taoaa8a45e2014-12-01 08:22:23 +08001527 pnfs_put_layout_hdr(lo);
1528 dprintk("%s retrying\n", __func__);
1529 goto lookup_again;
1530 }
1531 goto out_put_layout_hdr;
1532 }
1533
Peng Taoce6ab4f2014-09-06 00:53:24 +08001534 if (pnfs_layoutgets_blocked(lo, &arg, 0))
Fred Isamancf7d63f2011-01-06 11:36:25 +00001535 goto out_unlock;
1536 atomic_inc(&lo->plh_outstanding);
Fred Isamanf49f9ba2011-02-03 18:28:52 +00001537 spin_unlock(&ino->i_lock);
Weston Andros Adamson30005122013-02-28 20:30:10 -05001538
Peng Taoabb9a002014-08-22 17:37:40 +08001539 if (list_empty(&lo->plh_layouts)) {
Fred Isaman2130ff62011-01-06 11:36:26 +00001540 /* The lo must be on the clp list if there is any
1541 * chance of a CB_LAYOUTRECALL(FILE) coming in.
1542 */
1543 spin_lock(&clp->cl_lock);
Peng Taoabb9a002014-08-22 17:37:40 +08001544 if (list_empty(&lo->plh_layouts))
1545 list_add_tail(&lo->plh_layouts, &server->layouts);
Fred Isaman2130ff62011-01-06 11:36:26 +00001546 spin_unlock(&clp->cl_lock);
1547 }
Benny Halevye5e94012010-10-20 00:18:01 -04001548
Benny Halevy707ed5f2011-05-22 19:47:46 +03001549 pg_offset = arg.offset & ~PAGE_CACHE_MASK;
1550 if (pg_offset) {
1551 arg.offset -= pg_offset;
1552 arg.length += pg_offset;
1553 }
Andy Adamson7c24d942011-06-13 18:22:38 -04001554 if (arg.length != NFS4_MAX_UINT64)
1555 arg.length = PAGE_CACHE_ALIGN(arg.length);
Benny Halevy707ed5f2011-05-22 19:47:46 +03001556
Benny Halevyfb3296e2011-05-22 19:47:26 +03001557 lseg = send_layoutget(lo, ctx, &arg, gfp_flags);
Peng Taoc8290132014-12-01 08:22:18 +08001558 pnfs_clear_retry_layoutget(lo);
Fred Isamancf7d63f2011-01-06 11:36:25 +00001559 atomic_dec(&lo->plh_outstanding);
Trond Myklebust830ffb52012-09-20 21:25:19 -04001560out_put_layout_hdr:
Tom Haynesd67ae822014-12-11 17:02:04 -05001561 if (first)
1562 pnfs_clear_first_layoutget(lo);
Trond Myklebust70c3bd22012-09-18 20:51:13 -04001563 pnfs_put_layout_hdr(lo);
Benny Halevye5e94012010-10-20 00:18:01 -04001564out:
Trond Myklebustf86bbcf2012-09-26 11:21:40 -04001565 dprintk("%s: inode %s/%llu pNFS layout segment %s for "
1566 "(%s, offset: %llu, length: %llu)\n",
1567 __func__, ino->i_sb->s_id,
1568 (unsigned long long)NFS_FILEID(ino),
1569 lseg == NULL ? "not found" : "found",
1570 iomode==IOMODE_RW ? "read/write" : "read-only",
1571 (unsigned long long)pos,
1572 (unsigned long long)count);
Benny Halevye5e94012010-10-20 00:18:01 -04001573 return lseg;
1574out_unlock:
1575 spin_unlock(&ino->i_lock);
Trond Myklebust830ffb52012-09-20 21:25:19 -04001576 goto out_put_layout_hdr;
Benny Halevye5e94012010-10-20 00:18:01 -04001577}
Andy Adamson7c24d942011-06-13 18:22:38 -04001578EXPORT_SYMBOL_GPL(pnfs_update_layout);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001579
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04001580struct pnfs_layout_segment *
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001581pnfs_layout_process(struct nfs4_layoutget *lgp)
1582{
1583 struct pnfs_layout_hdr *lo = NFS_I(lgp->args.inode)->layout;
1584 struct nfs4_layoutget_res *res = &lgp->res;
1585 struct pnfs_layout_segment *lseg;
Fred Isamanb7edfaa2011-01-06 11:36:21 +00001586 struct inode *ino = lo->plh_inode;
Trond Myklebust78096cc2014-02-12 10:02:27 -05001587 LIST_HEAD(free_me);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001588 int status = 0;
1589
1590 /* Inject layout blob into I/O device driver */
Trond Myklebusta75b9df2011-05-11 18:00:51 -04001591 lseg = NFS_SERVER(ino)->pnfs_curr_ld->alloc_lseg(lo, res, lgp->gfp_flags);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001592 if (!lseg || IS_ERR(lseg)) {
1593 if (!lseg)
1594 status = -ENOMEM;
1595 else
1596 status = PTR_ERR(lseg);
1597 dprintk("%s: Could not allocate layout: error %d\n",
1598 __func__, status);
1599 goto out;
1600 }
1601
Christoph Hellwig1013df612014-08-21 11:09:18 -05001602 init_lseg(lo, lseg);
1603 lseg->pls_range = res->range;
1604
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001605 spin_lock(&ino->i_lock);
Trond Myklebusta59c30a2012-03-01 11:17:47 -05001606 if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001607 dprintk("%s forget reply due to recall\n", __func__);
1608 goto out_forget_reply;
1609 }
1610
Peng Taoce6ab4f2014-09-06 00:53:24 +08001611 if (pnfs_layoutgets_blocked(lo, &lgp->args.range, 1)) {
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001612 dprintk("%s forget reply due to state\n", __func__);
1613 goto out_forget_reply;
1614 }
Trond Myklebust038d6492012-10-02 16:38:41 -07001615
Christoph Hellwig362f7472014-08-21 11:09:20 -05001616 if (nfs4_stateid_match_other(&lo->plh_stateid, &res->stateid)) {
1617 /* existing state ID, make sure the sequence number matches. */
1618 if (pnfs_layout_stateid_blocked(lo, &res->stateid)) {
1619 dprintk("%s forget reply due to sequence\n", __func__);
1620 goto out_forget_reply;
1621 }
1622 pnfs_set_layout_stateid(lo, &res->stateid, false);
1623 } else {
1624 /*
1625 * We got an entirely new state ID. Mark all segments for the
1626 * inode invalid, and don't bother validating the stateid
1627 * sequence number.
1628 */
1629 pnfs_mark_matching_lsegs_invalid(lo, &free_me, NULL);
1630
1631 nfs4_stateid_copy(&lo->plh_stateid, &res->stateid);
1632 lo->plh_barrier = be32_to_cpu(res->stateid.seqid);
1633 }
Trond Myklebust038d6492012-10-02 16:38:41 -07001634
Christoph Hellwig47abade2014-08-21 11:09:22 -05001635 clear_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags);
1636
Trond Myklebust9369a432012-09-18 20:57:08 -04001637 pnfs_get_lseg(lseg);
Trond Myklebust57036a32012-09-20 16:33:30 -04001638 pnfs_layout_insert_lseg(lo, lseg);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001639
Fred Isamanf7e89172011-01-06 11:36:32 +00001640 if (res->return_on_close) {
1641 set_bit(NFS_LSEG_ROC, &lseg->pls_flags);
1642 set_bit(NFS_LAYOUT_ROC, &lo->plh_flags);
1643 }
1644
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001645 spin_unlock(&ino->i_lock);
Trond Myklebust78096cc2014-02-12 10:02:27 -05001646 pnfs_free_lseg_list(&free_me);
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04001647 return lseg;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001648out:
Trond Myklebusta0b0a6e2012-09-17 17:12:15 -04001649 return ERR_PTR(status);
Fred Isaman43f1b3d2011-01-06 11:36:30 +00001650
1651out_forget_reply:
1652 spin_unlock(&ino->i_lock);
1653 lseg->pls_layout = lo;
1654 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
1655 goto out;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001656}
1657
Peng Tao016256d2014-09-06 00:53:23 +08001658static void
1659pnfs_mark_matching_lsegs_return(struct pnfs_layout_hdr *lo,
1660 struct list_head *tmp_list,
1661 struct pnfs_layout_range *return_range)
1662{
1663 struct pnfs_layout_segment *lseg, *next;
1664
1665 dprintk("%s:Begin lo %p\n", __func__, lo);
1666
1667 if (list_empty(&lo->plh_segs))
1668 return;
1669
1670 list_for_each_entry_safe(lseg, next, &lo->plh_segs, pls_list)
1671 if (should_free_lseg(&lseg->pls_range, return_range)) {
1672 dprintk("%s: marking lseg %p iomode %d "
1673 "offset %llu length %llu\n", __func__,
1674 lseg, lseg->pls_range.iomode,
1675 lseg->pls_range.offset,
1676 lseg->pls_range.length);
1677 set_bit(NFS_LSEG_LAYOUTRETURN, &lseg->pls_flags);
1678 mark_lseg_invalid(lseg, tmp_list);
1679 }
1680}
1681
1682void pnfs_error_mark_layout_for_return(struct inode *inode,
1683 struct pnfs_layout_segment *lseg)
1684{
1685 struct pnfs_layout_hdr *lo = NFS_I(inode)->layout;
1686 int iomode = pnfs_iomode_to_fail_bit(lseg->pls_range.iomode);
1687 struct pnfs_layout_range range = {
1688 .iomode = lseg->pls_range.iomode,
1689 .offset = 0,
1690 .length = NFS4_MAX_UINT64,
1691 };
1692 LIST_HEAD(free_me);
1693
1694 spin_lock(&inode->i_lock);
1695 /* set failure bit so that pnfs path will be retried later */
1696 pnfs_layout_set_fail_bit(lo, iomode);
1697 set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags);
1698 if (lo->plh_return_iomode == 0)
1699 lo->plh_return_iomode = range.iomode;
1700 else if (lo->plh_return_iomode != range.iomode)
1701 lo->plh_return_iomode = IOMODE_ANY;
1702 /*
1703 * mark all matching lsegs so that we are sure to have no live
1704 * segments at hand when sending layoutreturn. See pnfs_put_lseg()
1705 * for how it works.
1706 */
1707 pnfs_mark_matching_lsegs_return(lo, &free_me, &range);
1708 spin_unlock(&inode->i_lock);
1709 pnfs_free_lseg_list(&free_me);
1710}
1711EXPORT_SYMBOL_GPL(pnfs_error_mark_layout_for_return);
1712
Trond Myklebustd8007d42011-06-10 13:30:23 -04001713void
1714pnfs_generic_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
1715{
Peng Tao1fd937b2012-09-25 14:55:57 +08001716 u64 rd_size = req->wb_bytes;
1717
Peng Taocb5d04b2015-01-24 22:14:52 +08001718 if (pgio->pg_lseg == NULL) {
1719 if (pgio->pg_dreq == NULL)
1720 rd_size = i_size_read(pgio->pg_inode) - req_offset(req);
1721 else
1722 rd_size = nfs_dreq_bytes_left(pgio->pg_dreq);
Trond Myklebustd8007d42011-06-10 13:30:23 -04001723
Peng Taocb5d04b2015-01-24 22:14:52 +08001724 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
1725 req->wb_context,
1726 req_offset(req),
1727 rd_size,
1728 IOMODE_READ,
1729 GFP_KERNEL);
1730 }
Trond Myklebuste885de12011-06-10 13:30:23 -04001731 /* If no lseg, fall back to read through mds */
1732 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -04001733 nfs_pageio_reset_read_mds(pgio);
Trond Myklebuste885de12011-06-10 13:30:23 -04001734
Trond Myklebustd8007d42011-06-10 13:30:23 -04001735}
1736EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_read);
1737
1738void
Peng Tao62965562012-09-25 14:55:57 +08001739pnfs_generic_pg_init_write(struct nfs_pageio_descriptor *pgio,
1740 struct nfs_page *req, u64 wb_size)
Trond Myklebustd8007d42011-06-10 13:30:23 -04001741{
Peng Taocb5d04b2015-01-24 22:14:52 +08001742 if (pgio->pg_lseg == NULL)
1743 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
1744 req->wb_context,
1745 req_offset(req),
1746 wb_size,
1747 IOMODE_RW,
1748 GFP_NOFS);
Trond Myklebuste885de12011-06-10 13:30:23 -04001749 /* If no lseg, fall back to write through mds */
1750 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -04001751 nfs_pageio_reset_write_mds(pgio);
Trond Myklebustd8007d42011-06-10 13:30:23 -04001752}
1753EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_write);
1754
Weston Andros Adamson180bb5e2014-09-10 15:48:01 -04001755void
1756pnfs_generic_pg_cleanup(struct nfs_pageio_descriptor *desc)
1757{
1758 if (desc->pg_lseg) {
1759 pnfs_put_lseg(desc->pg_lseg);
1760 desc->pg_lseg = NULL;
1761 }
1762}
1763EXPORT_SYMBOL_GPL(pnfs_generic_pg_cleanup);
1764
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -04001765/*
1766 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
1767 * of bytes (maximum @req->wb_bytes) that can be coalesced.
1768 */
1769size_t
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001770pnfs_generic_pg_test(struct nfs_pageio_descriptor *pgio,
1771 struct nfs_page *prev, struct nfs_page *req)
Fred Isamanbae724e2011-03-01 01:34:15 +00001772{
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -04001773 unsigned int size;
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001774 u64 seg_end, req_start, seg_left;
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -04001775
1776 size = nfs_generic_pg_test(pgio, prev, req);
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -04001777 if (!size)
1778 return 0;
Benny Halevy89a58e32011-05-25 20:54:40 +03001779
Trond Myklebust19982ba2011-06-10 13:30:23 -04001780 /*
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001781 * 'size' contains the number of bytes left in the current page (up
1782 * to the original size asked for in @req->wb_bytes).
1783 *
1784 * Calculate how many bytes are left in the layout segment
1785 * and if there are less bytes than 'size', return that instead.
Trond Myklebust19982ba2011-06-10 13:30:23 -04001786 *
1787 * Please also note that 'end_offset' is actually the offset of the
1788 * first byte that lies outside the pnfs_layout_range. FIXME?
1789 *
1790 */
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001791 if (pgio->pg_lseg) {
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001792 seg_end = end_offset(pgio->pg_lseg->pls_range.offset,
1793 pgio->pg_lseg->pls_range.length);
1794 req_start = req_offset(req);
Weston Andros Adamson7c137892015-01-30 11:01:02 -05001795 WARN_ON_ONCE(req_start >= seg_end);
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001796 /* start of request is past the last byte of this segment */
Weston Andros Adamson7c137892015-01-30 11:01:02 -05001797 if (req_start >= seg_end) {
1798 /* reference the new lseg */
1799 if (pgio->pg_ops->pg_cleanup)
1800 pgio->pg_ops->pg_cleanup(pgio);
1801 if (pgio->pg_ops->pg_init)
1802 pgio->pg_ops->pg_init(pgio, req);
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001803 return 0;
Weston Andros Adamson7c137892015-01-30 11:01:02 -05001804 }
Weston Andros Adamsonc5e20cb2014-06-09 17:47:26 -04001805
1806 /* adjust 'size' iff there are fewer bytes left in the
1807 * segment than what nfs_generic_pg_test returned */
1808 seg_left = seg_end - req_start;
1809 if (seg_left < size)
1810 size = (unsigned int)seg_left;
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001811 }
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -04001812
Weston Andros Adamson19b54842014-05-15 11:56:55 -04001813 return size;
Fred Isamanbae724e2011-03-01 01:34:15 +00001814}
Benny Halevy89a58e32011-05-25 20:54:40 +03001815EXPORT_SYMBOL_GPL(pnfs_generic_pg_test);
Fred Isamanbae724e2011-03-01 01:34:15 +00001816
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001817int pnfs_write_done_resend_to_mds(struct nfs_pgio_header *hdr)
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001818{
1819 struct nfs_pageio_descriptor pgio;
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001820
1821 /* Resend all requests through the MDS */
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001822 nfs_pageio_init_write(&pgio, hdr->inode, FLUSH_STABLE, true,
1823 hdr->completion_ops);
1824 return nfs_pageio_resend(&pgio, hdr);
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001825}
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001826EXPORT_SYMBOL_GPL(pnfs_write_done_resend_to_mds);
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001827
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001828static void pnfs_ld_handle_write_error(struct nfs_pgio_header *hdr)
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001829{
Fred Isamancd841602012-04-20 14:47:44 -04001830
1831 dprintk("pnfs write error = %d\n", hdr->pnfs_error);
1832 if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001833 PNFS_LAYOUTRET_ON_ERROR) {
Fred Isamancd841602012-04-20 14:47:44 -04001834 pnfs_return_layout(hdr->inode);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001835 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001836 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001837 hdr->task.tk_status = pnfs_write_done_resend_to_mds(hdr);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001838}
1839
Benny Halevyd20581a2011-05-22 19:52:03 +03001840/*
1841 * Called by non rpc-based layout drivers
1842 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001843void pnfs_ld_write_done(struct nfs_pgio_header *hdr)
Fred Isaman94ad1c82011-03-01 01:34:14 +00001844{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001845 trace_nfs4_pnfs_write(hdr, hdr->pnfs_error);
Fred Isamancd841602012-04-20 14:47:44 -04001846 if (!hdr->pnfs_error) {
Trond Myklebust67af7612015-03-25 20:40:38 -04001847 pnfs_set_layoutcommit(hdr->inode, hdr->lseg,
1848 hdr->mds_offset + hdr->res.count);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001849 hdr->mds_ops->rpc_call_done(&hdr->task, hdr);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001850 } else
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001851 pnfs_ld_handle_write_error(hdr);
1852 hdr->mds_ops->rpc_release(hdr);
Fred Isaman44b83792011-03-03 15:13:44 +00001853}
Benny Halevyd20581a2011-05-22 19:52:03 +03001854EXPORT_SYMBOL_GPL(pnfs_ld_write_done);
Fred Isaman44b83792011-03-03 15:13:44 +00001855
Trond Myklebustdce81292011-07-13 15:59:19 -04001856static void
1857pnfs_write_through_mds(struct nfs_pageio_descriptor *desc,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001858 struct nfs_pgio_header *hdr)
Trond Myklebustdce81292011-07-13 15:59:19 -04001859{
Peng Tao48d635f2014-11-10 08:35:35 +08001860 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001861
Fred Isaman6c75dc02012-04-20 14:47:47 -04001862 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001863 list_splice_tail_init(&hdr->pages, &mirror->pg_list);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001864 nfs_pageio_reset_write_mds(desc);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001865 mirror->pg_recoalesce = 1;
Fred Isaman6c75dc02012-04-20 14:47:47 -04001866 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001867 nfs_pgio_data_destroy(hdr);
Trond Myklebustdce81292011-07-13 15:59:19 -04001868}
1869
1870static enum pnfs_try_status
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001871pnfs_try_to_write_data(struct nfs_pgio_header *hdr,
Trond Myklebustdce81292011-07-13 15:59:19 -04001872 const struct rpc_call_ops *call_ops,
1873 struct pnfs_layout_segment *lseg,
1874 int how)
Andy Adamson0382b742011-03-03 15:13:45 +00001875{
Fred Isamancd841602012-04-20 14:47:44 -04001876 struct inode *inode = hdr->inode;
Andy Adamson0382b742011-03-03 15:13:45 +00001877 enum pnfs_try_status trypnfs;
1878 struct nfs_server *nfss = NFS_SERVER(inode);
1879
Fred Isamancd841602012-04-20 14:47:44 -04001880 hdr->mds_ops = call_ops;
Andy Adamson0382b742011-03-03 15:13:45 +00001881
1882 dprintk("%s: Writing ino:%lu %u@%llu (how %d)\n", __func__,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001883 inode->i_ino, hdr->args.count, hdr->args.offset, how);
1884 trypnfs = nfss->pnfs_curr_ld->write_pagelist(hdr, how);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001885 if (trypnfs != PNFS_NOT_ATTEMPTED)
Andy Adamson0382b742011-03-03 15:13:45 +00001886 nfs_inc_stats(inode, NFSIOS_PNFS_WRITE);
Andy Adamson0382b742011-03-03 15:13:45 +00001887 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
1888 return trypnfs;
1889}
1890
Trond Myklebustdce81292011-07-13 15:59:19 -04001891static void
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001892pnfs_do_write(struct nfs_pageio_descriptor *desc,
1893 struct nfs_pgio_header *hdr, int how)
Trond Myklebustdce81292011-07-13 15:59:19 -04001894{
Trond Myklebustdce81292011-07-13 15:59:19 -04001895 const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
1896 struct pnfs_layout_segment *lseg = desc->pg_lseg;
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001897 enum pnfs_try_status trypnfs;
Trond Myklebustdce81292011-07-13 15:59:19 -04001898
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001899 trypnfs = pnfs_try_to_write_data(hdr, call_ops, lseg, how);
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001900 if (trypnfs == PNFS_NOT_ATTEMPTED)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001901 pnfs_write_through_mds(desc, hdr);
Trond Myklebustdce81292011-07-13 15:59:19 -04001902}
1903
Fred Isaman6c75dc02012-04-20 14:47:47 -04001904static void pnfs_writehdr_free(struct nfs_pgio_header *hdr)
1905{
Trond Myklebust9369a432012-09-18 20:57:08 -04001906 pnfs_put_lseg(hdr->lseg);
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04001907 nfs_pgio_header_free(hdr);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001908}
1909
Trond Myklebustdce81292011-07-13 15:59:19 -04001910int
1911pnfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
1912{
Peng Tao48d635f2014-11-10 08:35:35 +08001913 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001914
Fred Isaman6c75dc02012-04-20 14:47:47 -04001915 struct nfs_pgio_header *hdr;
Trond Myklebustdce81292011-07-13 15:59:19 -04001916 int ret;
1917
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04001918 hdr = nfs_pgio_header_alloc(desc->pg_rw_ops);
1919 if (!hdr) {
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001920 desc->pg_completion_ops->error_cleanup(&mirror->pg_list);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001921 return -ENOMEM;
1922 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001923 nfs_pgheader_init(desc, hdr, pnfs_writehdr_free);
Weston Andros Adamson180bb5e2014-09-10 15:48:01 -04001924
Trond Myklebust9369a432012-09-18 20:57:08 -04001925 hdr->lseg = pnfs_get_lseg(desc->pg_lseg);
Anna Schumakeref2c4882014-05-06 09:12:36 -04001926 ret = nfs_generic_pgio(desc, hdr);
Weston Andros Adamson180bb5e2014-09-10 15:48:01 -04001927 if (!ret)
Weston Andros Adamson7f714722014-05-15 11:56:53 -04001928 pnfs_do_write(desc, hdr, desc->pg_ioflags);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001929
Fred Isaman6c75dc02012-04-20 14:47:47 -04001930 return ret;
Trond Myklebustdce81292011-07-13 15:59:19 -04001931}
1932EXPORT_SYMBOL_GPL(pnfs_generic_pg_writepages);
1933
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001934int pnfs_read_done_resend_to_mds(struct nfs_pgio_header *hdr)
Trond Myklebust62e4a762011-11-10 14:30:37 -05001935{
1936 struct nfs_pageio_descriptor pgio;
1937
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001938 /* Resend all requests through the MDS */
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001939 nfs_pageio_init_read(&pgio, hdr->inode, true, hdr->completion_ops);
1940 return nfs_pageio_resend(&pgio, hdr);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001941}
Andy Adamsone7dd79af2012-04-27 17:53:46 -04001942EXPORT_SYMBOL_GPL(pnfs_read_done_resend_to_mds);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001943
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001944static void pnfs_ld_handle_read_error(struct nfs_pgio_header *hdr)
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001945{
Fred Isamancd841602012-04-20 14:47:44 -04001946 dprintk("pnfs read error = %d\n", hdr->pnfs_error);
1947 if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001948 PNFS_LAYOUTRET_ON_ERROR) {
Fred Isamancd841602012-04-20 14:47:44 -04001949 pnfs_return_layout(hdr->inode);
Fred Isaman1acbbb4e12012-04-20 14:47:37 -04001950 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001951 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
Weston Andros Adamson53113ad2014-06-09 11:48:38 -04001952 hdr->task.tk_status = pnfs_read_done_resend_to_mds(hdr);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001953}
1954
Andy Adamsonb1f69b72010-10-20 00:18:03 -04001955/*
Benny Halevyd20581a2011-05-22 19:52:03 +03001956 * Called by non rpc-based layout drivers
1957 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001958void pnfs_ld_read_done(struct nfs_pgio_header *hdr)
Benny Halevyd20581a2011-05-22 19:52:03 +03001959{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001960 trace_nfs4_pnfs_read(hdr, hdr->pnfs_error);
Fred Isamancd841602012-04-20 14:47:44 -04001961 if (likely(!hdr->pnfs_error)) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001962 __nfs4_read_done_cb(hdr);
1963 hdr->mds_ops->rpc_call_done(&hdr->task, hdr);
Trond Myklebust62e4a762011-11-10 14:30:37 -05001964 } else
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001965 pnfs_ld_handle_read_error(hdr);
1966 hdr->mds_ops->rpc_release(hdr);
Benny Halevyd20581a2011-05-22 19:52:03 +03001967}
1968EXPORT_SYMBOL_GPL(pnfs_ld_read_done);
1969
Trond Myklebust493292d2011-07-13 15:58:28 -04001970static void
1971pnfs_read_through_mds(struct nfs_pageio_descriptor *desc,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001972 struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -04001973{
Peng Tao48d635f2014-11-10 08:35:35 +08001974 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001975
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001976 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001977 list_splice_tail_init(&hdr->pages, &mirror->pg_list);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001978 nfs_pageio_reset_read_mds(desc);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04001979 mirror->pg_recoalesce = 1;
Fred Isaman4db6e0b2012-04-20 14:47:46 -04001980 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001981 nfs_pgio_data_destroy(hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -04001982}
1983
Benny Halevyd20581a2011-05-22 19:52:03 +03001984/*
Andy Adamson64419a92011-03-01 01:34:16 +00001985 * Call the appropriate parallel I/O subsystem read function.
1986 */
Trond Myklebust493292d2011-07-13 15:58:28 -04001987static enum pnfs_try_status
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001988pnfs_try_to_read_data(struct nfs_pgio_header *hdr,
Trond Myklebust493292d2011-07-13 15:58:28 -04001989 const struct rpc_call_ops *call_ops,
1990 struct pnfs_layout_segment *lseg)
Andy Adamson64419a92011-03-01 01:34:16 +00001991{
Fred Isamancd841602012-04-20 14:47:44 -04001992 struct inode *inode = hdr->inode;
Andy Adamson64419a92011-03-01 01:34:16 +00001993 struct nfs_server *nfss = NFS_SERVER(inode);
1994 enum pnfs_try_status trypnfs;
1995
Fred Isamancd841602012-04-20 14:47:44 -04001996 hdr->mds_ops = call_ops;
Andy Adamson64419a92011-03-01 01:34:16 +00001997
1998 dprintk("%s: Reading ino:%lu %u@%llu\n",
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04001999 __func__, inode->i_ino, hdr->args.count, hdr->args.offset);
Andy Adamson64419a92011-03-01 01:34:16 +00002000
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04002001 trypnfs = nfss->pnfs_curr_ld->read_pagelist(hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04002002 if (trypnfs != PNFS_NOT_ATTEMPTED)
Andy Adamson64419a92011-03-01 01:34:16 +00002003 nfs_inc_stats(inode, NFSIOS_PNFS_READ);
Andy Adamson64419a92011-03-01 01:34:16 +00002004 dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
2005 return trypnfs;
2006}
Andy Adamson863a3c62011-03-23 13:27:54 +00002007
Peng Taoceb11e12014-11-10 08:35:38 +08002008/* Resend all requests through pnfs. */
2009int pnfs_read_resend_pnfs(struct nfs_pgio_header *hdr)
2010{
2011 struct nfs_pageio_descriptor pgio;
2012
2013 nfs_pageio_init_read(&pgio, hdr->inode, false, hdr->completion_ops);
2014 return nfs_pageio_resend(&pgio, hdr);
2015}
2016EXPORT_SYMBOL_GPL(pnfs_read_resend_pnfs);
2017
Trond Myklebust493292d2011-07-13 15:58:28 -04002018static void
Weston Andros Adamson7f714722014-05-15 11:56:53 -04002019pnfs_do_read(struct nfs_pageio_descriptor *desc, struct nfs_pgio_header *hdr)
Trond Myklebust493292d2011-07-13 15:58:28 -04002020{
Trond Myklebust493292d2011-07-13 15:58:28 -04002021 const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
2022 struct pnfs_layout_segment *lseg = desc->pg_lseg;
Weston Andros Adamson7f714722014-05-15 11:56:53 -04002023 enum pnfs_try_status trypnfs;
Peng Taoceb11e12014-11-10 08:35:38 +08002024 int err = 0;
Trond Myklebust493292d2011-07-13 15:58:28 -04002025
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04002026 trypnfs = pnfs_try_to_read_data(hdr, call_ops, lseg);
Peng Taoceb11e12014-11-10 08:35:38 +08002027 if (trypnfs == PNFS_TRY_AGAIN)
2028 err = pnfs_read_resend_pnfs(hdr);
2029 if (trypnfs == PNFS_NOT_ATTEMPTED || err)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -04002030 pnfs_read_through_mds(desc, hdr);
Trond Myklebust493292d2011-07-13 15:58:28 -04002031}
2032
Fred Isaman4db6e0b2012-04-20 14:47:46 -04002033static void pnfs_readhdr_free(struct nfs_pgio_header *hdr)
2034{
Trond Myklebust9369a432012-09-18 20:57:08 -04002035 pnfs_put_lseg(hdr->lseg);
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04002036 nfs_pgio_header_free(hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04002037}
2038
Trond Myklebust493292d2011-07-13 15:58:28 -04002039int
2040pnfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
2041{
Peng Tao48d635f2014-11-10 08:35:35 +08002042 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04002043
Fred Isaman4db6e0b2012-04-20 14:47:46 -04002044 struct nfs_pgio_header *hdr;
Trond Myklebust493292d2011-07-13 15:58:28 -04002045 int ret;
2046
Weston Andros Adamson1e7f3a42014-06-09 11:48:33 -04002047 hdr = nfs_pgio_header_alloc(desc->pg_rw_ops);
2048 if (!hdr) {
Weston Andros Adamsona7d42dd2014-09-19 10:55:07 -04002049 desc->pg_completion_ops->error_cleanup(&mirror->pg_list);
Weston Andros Adamson180bb5e2014-09-10 15:48:01 -04002050 return -ENOMEM;
Trond Myklebust493292d2011-07-13 15:58:28 -04002051 }
Fred Isaman4db6e0b2012-04-20 14:47:46 -04002052 nfs_pgheader_init(desc, hdr, pnfs_readhdr_free);
Trond Myklebust9369a432012-09-18 20:57:08 -04002053 hdr->lseg = pnfs_get_lseg(desc->pg_lseg);
Anna Schumakeref2c4882014-05-06 09:12:36 -04002054 ret = nfs_generic_pgio(desc, hdr);
Weston Andros Adamson180bb5e2014-09-10 15:48:01 -04002055 if (!ret)
Weston Andros Adamson7f714722014-05-15 11:56:53 -04002056 pnfs_do_read(desc, hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -04002057 return ret;
Trond Myklebust493292d2011-07-13 15:58:28 -04002058}
2059EXPORT_SYMBOL_GPL(pnfs_generic_pg_readpages);
2060
Trond Myklebust71244d92014-01-13 13:34:36 -05002061static void pnfs_clear_layoutcommitting(struct inode *inode)
2062{
2063 unsigned long *bitlock = &NFS_I(inode)->flags;
2064
2065 clear_bit_unlock(NFS_INO_LAYOUTCOMMITTING, bitlock);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002066 smp_mb__after_atomic();
Trond Myklebust71244d92014-01-13 13:34:36 -05002067 wake_up_bit(bitlock, NFS_INO_LAYOUTCOMMITTING);
2068}
2069
Andy Adamson863a3c62011-03-23 13:27:54 +00002070/*
Peng Taoa9bae562011-07-30 20:52:33 -04002071 * There can be multiple RW segments.
Andy Adamson863a3c62011-03-23 13:27:54 +00002072 */
Peng Taoa9bae562011-07-30 20:52:33 -04002073static void pnfs_list_write_lseg(struct inode *inode, struct list_head *listp)
Andy Adamson863a3c62011-03-23 13:27:54 +00002074{
Peng Taoa9bae562011-07-30 20:52:33 -04002075 struct pnfs_layout_segment *lseg;
Andy Adamson863a3c62011-03-23 13:27:54 +00002076
Peng Taoa9bae562011-07-30 20:52:33 -04002077 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list) {
2078 if (lseg->pls_range.iomode == IOMODE_RW &&
Trond Myklebusta073dbf2013-03-20 12:34:32 -04002079 test_and_clear_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags))
Peng Taoa9bae562011-07-30 20:52:33 -04002080 list_add(&lseg->pls_lc_list, listp);
2081 }
Andy Adamson863a3c62011-03-23 13:27:54 +00002082}
2083
Trond Myklebusta073dbf2013-03-20 12:34:32 -04002084static void pnfs_list_write_lseg_done(struct inode *inode, struct list_head *listp)
2085{
2086 struct pnfs_layout_segment *lseg, *tmp;
Trond Myklebusta073dbf2013-03-20 12:34:32 -04002087
2088 /* Matched by references in pnfs_set_layoutcommit */
2089 list_for_each_entry_safe(lseg, tmp, listp, pls_lc_list) {
2090 list_del_init(&lseg->pls_lc_list);
2091 pnfs_put_lseg(lseg);
2092 }
2093
Trond Myklebust71244d92014-01-13 13:34:36 -05002094 pnfs_clear_layoutcommitting(inode);
Trond Myklebusta073dbf2013-03-20 12:34:32 -04002095}
2096
Peng Tao1b0ae062011-09-22 21:50:12 -04002097void pnfs_set_lo_fail(struct pnfs_layout_segment *lseg)
2098{
Trond Myklebustb9e028f2012-09-18 16:41:18 -04002099 pnfs_layout_io_set_failed(lseg->pls_layout, lseg->pls_range.iomode);
Peng Tao1b0ae062011-09-22 21:50:12 -04002100}
2101EXPORT_SYMBOL_GPL(pnfs_set_lo_fail);
2102
Andy Adamson863a3c62011-03-23 13:27:54 +00002103void
Trond Myklebust67af7612015-03-25 20:40:38 -04002104pnfs_set_layoutcommit(struct inode *inode, struct pnfs_layout_segment *lseg,
2105 loff_t end_pos)
Andy Adamson863a3c62011-03-23 13:27:54 +00002106{
Fred Isamancd841602012-04-20 14:47:44 -04002107 struct nfs_inode *nfsi = NFS_I(inode);
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04002108 bool mark_as_dirty = false;
Andy Adamson863a3c62011-03-23 13:27:54 +00002109
Fred Isamancd841602012-04-20 14:47:44 -04002110 spin_lock(&inode->i_lock);
Andy Adamson863a3c62011-03-23 13:27:54 +00002111 if (!test_and_set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
Trond Myklebust29559b12015-03-25 20:10:20 -04002112 nfsi->layout->plh_lwb = end_pos;
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04002113 mark_as_dirty = true;
Andy Adamson863a3c62011-03-23 13:27:54 +00002114 dprintk("%s: Set layoutcommit for inode %lu ",
Fred Isamancd841602012-04-20 14:47:44 -04002115 __func__, inode->i_ino);
Trond Myklebust29559b12015-03-25 20:10:20 -04002116 } else if (end_pos > nfsi->layout->plh_lwb)
2117 nfsi->layout->plh_lwb = end_pos;
Trond Myklebust67af7612015-03-25 20:40:38 -04002118 if (!test_and_set_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags)) {
Peng Taoa9bae562011-07-30 20:52:33 -04002119 /* references matched in nfs4_layoutcommit_release */
Trond Myklebust67af7612015-03-25 20:40:38 -04002120 pnfs_get_lseg(lseg);
Peng Taoa9bae562011-07-30 20:52:33 -04002121 }
Fred Isamancd841602012-04-20 14:47:44 -04002122 spin_unlock(&inode->i_lock);
Peng Taoacff58802011-07-30 20:52:31 -04002123 dprintk("%s: lseg %p end_pos %llu\n",
Trond Myklebust67af7612015-03-25 20:40:38 -04002124 __func__, lseg, nfsi->layout->plh_lwb);
Weston Andros Adamson79a48a12011-04-13 10:53:51 -04002125
2126 /* if pnfs_layoutcommit_inode() runs between inode locks, the next one
2127 * will be a noop because NFS_INO_LAYOUTCOMMIT will not be set */
2128 if (mark_as_dirty)
Fred Isamancd841602012-04-20 14:47:44 -04002129 mark_inode_dirty_sync(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00002130}
2131EXPORT_SYMBOL_GPL(pnfs_set_layoutcommit);
2132
Andy Adamsondb29c082011-07-30 20:52:38 -04002133void pnfs_cleanup_layoutcommit(struct nfs4_layoutcommit_data *data)
2134{
2135 struct nfs_server *nfss = NFS_SERVER(data->args.inode);
2136
2137 if (nfss->pnfs_curr_ld->cleanup_layoutcommit)
2138 nfss->pnfs_curr_ld->cleanup_layoutcommit(data);
Trond Myklebusta073dbf2013-03-20 12:34:32 -04002139 pnfs_list_write_lseg_done(data->args.inode, &data->lseg_list);
Andy Adamsondb29c082011-07-30 20:52:38 -04002140}
2141
Andy Adamsonde4b15c2011-03-12 02:58:09 -05002142/*
2143 * For the LAYOUT4_NFSV4_1_FILES layout type, NFS_DATA_SYNC WRITEs and
2144 * NFS_UNSTABLE WRITEs with a COMMIT to data servers must store enough
2145 * data to disk to allow the server to recover the data if it crashes.
2146 * LAYOUTCOMMIT is only needed when the NFL4_UFLG_COMMIT_THRU_MDS flag
2147 * is off, and a COMMIT is sent to a data server, or
2148 * if WRITEs to a data server return NFS_DATA_SYNC.
2149 */
Andy Adamson863a3c62011-03-23 13:27:54 +00002150int
Andy Adamsonef311532011-03-12 02:58:10 -05002151pnfs_layoutcommit_inode(struct inode *inode, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00002152{
Christoph Hellwig5f919c92014-08-21 11:09:25 -05002153 struct pnfs_layoutdriver_type *ld = NFS_SERVER(inode)->pnfs_curr_ld;
Andy Adamson863a3c62011-03-23 13:27:54 +00002154 struct nfs4_layoutcommit_data *data;
2155 struct nfs_inode *nfsi = NFS_I(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00002156 loff_t end_pos;
Trond Myklebust71244d92014-01-13 13:34:36 -05002157 int status;
2158
2159 if (!pnfs_layoutcommit_outstanding(inode))
2160 return 0;
Andy Adamson863a3c62011-03-23 13:27:54 +00002161
2162 dprintk("--> %s inode %lu\n", __func__, inode->i_ino);
2163
Trond Myklebust71244d92014-01-13 13:34:36 -05002164 status = -EAGAIN;
2165 if (test_and_set_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags)) {
2166 if (!sync)
2167 goto out;
NeilBrown74316202014-07-07 15:16:04 +10002168 status = wait_on_bit_lock_action(&nfsi->flags,
Trond Myklebust71244d92014-01-13 13:34:36 -05002169 NFS_INO_LAYOUTCOMMITTING,
2170 nfs_wait_bit_killable,
2171 TASK_KILLABLE);
2172 if (status)
2173 goto out;
2174 }
Andy Adamsonde4b15c2011-03-12 02:58:09 -05002175
Trond Myklebust71244d92014-01-13 13:34:36 -05002176 status = -ENOMEM;
Andy Adamson863a3c62011-03-23 13:27:54 +00002177 /* Note kzalloc ensures data->res.seq_res.sr_slot == NULL */
2178 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebust71244d92014-01-13 13:34:36 -05002179 if (!data)
2180 goto clear_layoutcommitting;
Andy Adamson863a3c62011-03-23 13:27:54 +00002181
Trond Myklebust71244d92014-01-13 13:34:36 -05002182 status = 0;
2183 spin_lock(&inode->i_lock);
2184 if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
2185 goto out_unlock;
Peng Tao92407e72011-10-23 20:21:17 -07002186
Peng Taoa9bae562011-07-30 20:52:33 -04002187 INIT_LIST_HEAD(&data->lseg_list);
Peng Taoa9bae562011-07-30 20:52:33 -04002188 pnfs_list_write_lseg(inode, &data->lseg_list);
Andy Adamson863a3c62011-03-23 13:27:54 +00002189
Peng Taoacff58802011-07-30 20:52:31 -04002190 end_pos = nfsi->layout->plh_lwb;
Andy Adamson863a3c62011-03-23 13:27:54 +00002191
Trond Myklebustf597c532012-03-04 18:13:56 -05002192 nfs4_stateid_copy(&data->args.stateid, &nfsi->layout->plh_stateid);
Andy Adamson863a3c62011-03-23 13:27:54 +00002193 spin_unlock(&inode->i_lock);
2194
2195 data->args.inode = inode;
Peng Tao9fa40752011-07-30 20:52:32 -04002196 data->cred = get_rpccred(nfsi->layout->plh_lc_cred);
Andy Adamson863a3c62011-03-23 13:27:54 +00002197 nfs_fattr_init(&data->fattr);
2198 data->args.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
2199 data->res.fattr = &data->fattr;
2200 data->args.lastbytewritten = end_pos - 1;
2201 data->res.server = NFS_SERVER(inode);
2202
Christoph Hellwig5f919c92014-08-21 11:09:25 -05002203 if (ld->prepare_layoutcommit) {
2204 status = ld->prepare_layoutcommit(&data->args);
2205 if (status) {
2206 spin_lock(&inode->i_lock);
Trond Myklebust29559b12015-03-25 20:10:20 -04002207 set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags);
2208 if (end_pos > nfsi->layout->plh_lwb)
Christoph Hellwig5f919c92014-08-21 11:09:25 -05002209 nfsi->layout->plh_lwb = end_pos;
2210 spin_unlock(&inode->i_lock);
2211 put_rpccred(data->cred);
Christoph Hellwig5f919c92014-08-21 11:09:25 -05002212 goto clear_layoutcommitting;
2213 }
2214 }
2215
2216
Andy Adamson863a3c62011-03-23 13:27:54 +00002217 status = nfs4_proc_layoutcommit(data, sync);
2218out:
Peng Tao92407e72011-10-23 20:21:17 -07002219 if (status)
2220 mark_inode_dirty_sync(inode);
Andy Adamson863a3c62011-03-23 13:27:54 +00002221 dprintk("<-- %s status %d\n", __func__, status);
2222 return status;
Trond Myklebust71244d92014-01-13 13:34:36 -05002223out_unlock:
2224 spin_unlock(&inode->i_lock);
Peng Tao92407e72011-10-23 20:21:17 -07002225 kfree(data);
Trond Myklebust71244d92014-01-13 13:34:36 -05002226clear_layoutcommitting:
2227 pnfs_clear_layoutcommitting(inode);
Peng Tao92407e72011-10-23 20:21:17 -07002228 goto out;
Andy Adamson863a3c62011-03-23 13:27:54 +00002229}
Peng Tao72cff442014-08-07 10:12:38 +08002230EXPORT_SYMBOL_GPL(pnfs_layoutcommit_inode);
Andy Adamson82be4172012-05-23 05:02:35 -04002231
Trond Myklebust5bb89b42015-03-25 14:14:42 -04002232int
2233pnfs_generic_sync(struct inode *inode, bool datasync)
2234{
2235 return pnfs_layoutcommit_inode(inode, true);
2236}
2237EXPORT_SYMBOL_GPL(pnfs_generic_sync);
2238
Andy Adamson82be4172012-05-23 05:02:35 -04002239struct nfs4_threshold *pnfs_mdsthreshold_alloc(void)
2240{
2241 struct nfs4_threshold *thp;
2242
2243 thp = kzalloc(sizeof(*thp), GFP_NOFS);
2244 if (!thp) {
2245 dprintk("%s mdsthreshold allocation failed\n", __func__);
2246 return NULL;
2247 }
2248 return thp;
2249}