blob: cd9906415a14eb5a2a83d8722c206cb173c925c0 [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>
Andy Adamson974cec82010-10-20 00:18:02 -040031#include "internal.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040032#include "pnfs.h"
33
34#define NFSDBG_FACILITY NFSDBG_PNFS
35
Fred Isaman02c35fc2010-10-20 00:17:59 -040036/* Locking:
37 *
38 * pnfs_spinlock:
39 * protects pnfs_modules_tbl.
40 */
41static DEFINE_SPINLOCK(pnfs_spinlock);
42
43/*
44 * pnfs_modules_tbl holds all pnfs modules
45 */
46static LIST_HEAD(pnfs_modules_tbl);
47
48/* Return the registered pnfs layout driver module matching given id */
49static struct pnfs_layoutdriver_type *
50find_pnfs_driver_locked(u32 id)
51{
52 struct pnfs_layoutdriver_type *local;
53
54 list_for_each_entry(local, &pnfs_modules_tbl, pnfs_tblid)
55 if (local->id == id)
56 goto out;
57 local = NULL;
58out:
59 dprintk("%s: Searching for id %u, found %p\n", __func__, id, local);
60 return local;
61}
62
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040063static struct pnfs_layoutdriver_type *
64find_pnfs_driver(u32 id)
65{
Fred Isaman02c35fc2010-10-20 00:17:59 -040066 struct pnfs_layoutdriver_type *local;
67
68 spin_lock(&pnfs_spinlock);
69 local = find_pnfs_driver_locked(id);
70 spin_unlock(&pnfs_spinlock);
71 return local;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040072}
73
74void
75unset_pnfs_layoutdriver(struct nfs_server *nfss)
76{
Fred Isaman02c35fc2010-10-20 00:17:59 -040077 if (nfss->pnfs_curr_ld) {
Trond Myklebust1c787092010-10-21 16:56:48 -040078 nfss->pnfs_curr_ld->clear_layoutdriver(nfss);
Fred Isaman02c35fc2010-10-20 00:17:59 -040079 module_put(nfss->pnfs_curr_ld->owner);
80 }
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040081 nfss->pnfs_curr_ld = NULL;
82}
83
84/*
85 * Try to set the server's pnfs module to the pnfs layout type specified by id.
86 * Currently only one pNFS layout driver per filesystem is supported.
87 *
88 * @id layout type. Zero (illegal layout type) indicates pNFS not in use.
89 */
90void
91set_pnfs_layoutdriver(struct nfs_server *server, u32 id)
92{
93 struct pnfs_layoutdriver_type *ld_type = NULL;
94
95 if (id == 0)
96 goto out_no_driver;
97 if (!(server->nfs_client->cl_exchange_flags &
98 (EXCHGID4_FLAG_USE_NON_PNFS | EXCHGID4_FLAG_USE_PNFS_MDS))) {
99 printk(KERN_ERR "%s: id %u cl_exchange_flags 0x%x\n", __func__,
100 id, server->nfs_client->cl_exchange_flags);
101 goto out_no_driver;
102 }
103 ld_type = find_pnfs_driver(id);
104 if (!ld_type) {
105 request_module("%s-%u", LAYOUT_NFSV4_1_MODULE_PREFIX, id);
106 ld_type = find_pnfs_driver(id);
107 if (!ld_type) {
108 dprintk("%s: No pNFS module found for %u.\n",
109 __func__, id);
110 goto out_no_driver;
111 }
112 }
Fred Isaman02c35fc2010-10-20 00:17:59 -0400113 if (!try_module_get(ld_type->owner)) {
114 dprintk("%s: Could not grab reference on module\n", __func__);
115 goto out_no_driver;
116 }
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400117 server->pnfs_curr_ld = ld_type;
Trond Myklebust1c787092010-10-21 16:56:48 -0400118 if (ld_type->set_layoutdriver(server)) {
Fred Isaman02c35fc2010-10-20 00:17:59 -0400119 printk(KERN_ERR
120 "%s: Error initializing mount point for layout driver %u.\n",
121 __func__, id);
122 module_put(ld_type->owner);
123 goto out_no_driver;
124 }
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400125 dprintk("%s: pNFS module for %u set\n", __func__, id);
126 return;
127
128out_no_driver:
129 dprintk("%s: Using NFSv4 I/O\n", __func__);
130 server->pnfs_curr_ld = NULL;
131}
Fred Isaman02c35fc2010-10-20 00:17:59 -0400132
133int
134pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
135{
136 int status = -EINVAL;
137 struct pnfs_layoutdriver_type *tmp;
138
139 if (ld_type->id == 0) {
140 printk(KERN_ERR "%s id 0 is reserved\n", __func__);
141 return status;
142 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400143 if (!ld_type->alloc_lseg || !ld_type->free_lseg) {
144 printk(KERN_ERR "%s Layout driver must provide "
145 "alloc_lseg and free_lseg.\n", __func__);
146 return status;
147 }
Fred Isaman02c35fc2010-10-20 00:17:59 -0400148
149 spin_lock(&pnfs_spinlock);
150 tmp = find_pnfs_driver_locked(ld_type->id);
151 if (!tmp) {
152 list_add(&ld_type->pnfs_tblid, &pnfs_modules_tbl);
153 status = 0;
154 dprintk("%s Registering id:%u name:%s\n", __func__, ld_type->id,
155 ld_type->name);
156 } else {
157 printk(KERN_ERR "%s Module with id %d already loaded!\n",
158 __func__, ld_type->id);
159 }
160 spin_unlock(&pnfs_spinlock);
161
162 return status;
163}
164EXPORT_SYMBOL_GPL(pnfs_register_layoutdriver);
165
166void
167pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
168{
169 dprintk("%s Deregistering id:%u\n", __func__, ld_type->id);
170 spin_lock(&pnfs_spinlock);
171 list_del(&ld_type->pnfs_tblid);
172 spin_unlock(&pnfs_spinlock);
173}
174EXPORT_SYMBOL_GPL(pnfs_unregister_layoutdriver);
Benny Halevye5e94012010-10-20 00:18:01 -0400175
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400176/*
177 * pNFS client layout cache
178 */
179
Benny Halevye5e94012010-10-20 00:18:01 -0400180static void
181get_layout_hdr_locked(struct pnfs_layout_hdr *lo)
182{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000183 assert_spin_locked(&lo->plh_inode->i_lock);
184 lo->plh_refcount++;
Benny Halevye5e94012010-10-20 00:18:01 -0400185}
186
187static void
188put_layout_hdr_locked(struct pnfs_layout_hdr *lo)
189{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000190 assert_spin_locked(&lo->plh_inode->i_lock);
191 BUG_ON(lo->plh_refcount == 0);
Benny Halevye5e94012010-10-20 00:18:01 -0400192
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000193 lo->plh_refcount--;
194 if (!lo->plh_refcount) {
Benny Halevye5e94012010-10-20 00:18:01 -0400195 dprintk("%s: freeing layout cache %p\n", __func__, lo);
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000196 BUG_ON(!list_empty(&lo->plh_layouts));
197 NFS_I(lo->plh_inode)->layout = NULL;
Benny Halevye5e94012010-10-20 00:18:01 -0400198 kfree(lo);
199 }
200}
201
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400202void
Andy Adamson974cec82010-10-20 00:18:02 -0400203put_layout_hdr(struct inode *inode)
204{
205 spin_lock(&inode->i_lock);
206 put_layout_hdr_locked(NFS_I(inode)->layout);
207 spin_unlock(&inode->i_lock);
208}
209
210static void
211init_lseg(struct pnfs_layout_hdr *lo, struct pnfs_layout_segment *lseg)
212{
Fred Isaman566052c2011-01-06 11:36:20 +0000213 INIT_LIST_HEAD(&lseg->pls_list);
Fred Isaman4541d162011-01-06 11:36:23 +0000214 atomic_set(&lseg->pls_refcount, 1);
215 smp_mb();
216 set_bit(NFS_LSEG_VALID, &lseg->pls_flags);
Fred Isaman566052c2011-01-06 11:36:20 +0000217 lseg->pls_layout = lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400218}
219
Fred Isaman4541d162011-01-06 11:36:23 +0000220static void free_lseg(struct pnfs_layout_segment *lseg)
Andy Adamson974cec82010-10-20 00:18:02 -0400221{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000222 struct inode *ino = lseg->pls_layout->plh_inode;
Andy Adamson974cec82010-10-20 00:18:02 -0400223
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400224 NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
Fred Isaman52fabd72011-01-06 11:36:18 +0000225 /* Matched by get_layout_hdr in pnfs_insert_layout */
Andy Adamson974cec82010-10-20 00:18:02 -0400226 put_layout_hdr(ino);
227}
228
Fred Isaman4541d162011-01-06 11:36:23 +0000229/* The use of tmp_list is necessary because pnfs_curr_ld->free_lseg
230 * could sleep, so must be called outside of the lock.
231 * Returns 1 if object was removed, otherwise return 0.
232 */
233static int
234put_lseg_locked(struct pnfs_layout_segment *lseg,
235 struct list_head *tmp_list)
Andy Adamson974cec82010-10-20 00:18:02 -0400236{
Fred Isaman4541d162011-01-06 11:36:23 +0000237 dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
238 atomic_read(&lseg->pls_refcount),
239 test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
240 if (atomic_dec_and_test(&lseg->pls_refcount)) {
241 struct inode *ino = lseg->pls_layout->plh_inode;
Andy Adamson974cec82010-10-20 00:18:02 -0400242
Fred Isaman4541d162011-01-06 11:36:23 +0000243 BUG_ON(test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
244 list_del(&lseg->pls_list);
245 if (list_empty(&lseg->pls_layout->plh_segs)) {
246 struct nfs_client *clp;
247
248 clp = NFS_SERVER(ino)->nfs_client;
249 spin_lock(&clp->cl_lock);
250 /* List does not take a reference, so no need for put here */
251 list_del_init(&lseg->pls_layout->plh_layouts);
252 spin_unlock(&clp->cl_lock);
253 }
254 list_add(&lseg->pls_list, tmp_list);
255 return 1;
256 }
257 return 0;
Andy Adamson974cec82010-10-20 00:18:02 -0400258}
259
Fred Isaman4541d162011-01-06 11:36:23 +0000260static bool
261should_free_lseg(u32 lseg_iomode, u32 recall_iomode)
262{
263 return (recall_iomode == IOMODE_ANY ||
264 lseg_iomode == recall_iomode);
265}
266
267/* Returns 1 if lseg is removed from list, 0 otherwise */
268static int mark_lseg_invalid(struct pnfs_layout_segment *lseg,
269 struct list_head *tmp_list)
270{
271 int rv = 0;
272
273 if (test_and_clear_bit(NFS_LSEG_VALID, &lseg->pls_flags)) {
274 /* Remove the reference keeping the lseg in the
275 * list. It will now be removed when all
276 * outstanding io is finished.
277 */
278 rv = put_lseg_locked(lseg, tmp_list);
279 }
280 return rv;
281}
282
283/* Returns count of number of matching invalid lsegs remaining in list
284 * after call.
285 */
286static int
287mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
288 struct list_head *tmp_list,
289 u32 iomode)
Andy Adamson974cec82010-10-20 00:18:02 -0400290{
291 struct pnfs_layout_segment *lseg, *next;
Fred Isaman4541d162011-01-06 11:36:23 +0000292 int invalid = 0, removed = 0;
Andy Adamson974cec82010-10-20 00:18:02 -0400293
294 dprintk("%s:Begin lo %p\n", __func__, lo);
295
Fred Isaman4541d162011-01-06 11:36:23 +0000296 list_for_each_entry_safe(lseg, next, &lo->plh_segs, pls_list)
297 if (should_free_lseg(lseg->pls_range.iomode, iomode)) {
298 dprintk("%s: freeing lseg %p iomode %d "
299 "offset %llu length %llu\n", __func__,
300 lseg, lseg->pls_range.iomode, lseg->pls_range.offset,
301 lseg->pls_range.length);
302 invalid++;
303 removed += mark_lseg_invalid(lseg, tmp_list);
304 }
305 dprintk("%s:Return %i\n", __func__, invalid - removed);
306 return invalid - removed;
Andy Adamson974cec82010-10-20 00:18:02 -0400307}
308
309static void
Fred Isaman4541d162011-01-06 11:36:23 +0000310pnfs_free_lseg_list(struct list_head *free_me)
Andy Adamson974cec82010-10-20 00:18:02 -0400311{
Fred Isaman4541d162011-01-06 11:36:23 +0000312 struct pnfs_layout_segment *lseg, *tmp;
Andy Adamson974cec82010-10-20 00:18:02 -0400313
Fred Isaman4541d162011-01-06 11:36:23 +0000314 list_for_each_entry_safe(lseg, tmp, free_me, pls_list) {
Fred Isaman566052c2011-01-06 11:36:20 +0000315 list_del(&lseg->pls_list);
Fred Isaman4541d162011-01-06 11:36:23 +0000316 free_lseg(lseg);
Andy Adamson974cec82010-10-20 00:18:02 -0400317 }
318}
319
Benny Halevye5e94012010-10-20 00:18:01 -0400320void
321pnfs_destroy_layout(struct nfs_inode *nfsi)
322{
323 struct pnfs_layout_hdr *lo;
Andy Adamson974cec82010-10-20 00:18:02 -0400324 LIST_HEAD(tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400325
326 spin_lock(&nfsi->vfs_inode.i_lock);
327 lo = nfsi->layout;
328 if (lo) {
Fred Isaman4541d162011-01-06 11:36:23 +0000329 set_bit(NFS_LAYOUT_DESTROYED, &nfsi->layout->plh_flags);
330 mark_matching_lsegs_invalid(lo, &tmp_list, IOMODE_ANY);
Benny Halevye5e94012010-10-20 00:18:01 -0400331 /* Matched by refcount set to 1 in alloc_init_layout_hdr */
332 put_layout_hdr_locked(lo);
333 }
334 spin_unlock(&nfsi->vfs_inode.i_lock);
Andy Adamson974cec82010-10-20 00:18:02 -0400335 pnfs_free_lseg_list(&tmp_list);
Benny Halevye5e94012010-10-20 00:18:01 -0400336}
337
Andy Adamson974cec82010-10-20 00:18:02 -0400338/*
339 * Called by the state manger to remove all layouts established under an
340 * expired lease.
341 */
342void
343pnfs_destroy_all_layouts(struct nfs_client *clp)
344{
345 struct pnfs_layout_hdr *lo;
346 LIST_HEAD(tmp_list);
347
348 spin_lock(&clp->cl_lock);
349 list_splice_init(&clp->cl_layouts, &tmp_list);
350 spin_unlock(&clp->cl_lock);
351
352 while (!list_empty(&tmp_list)) {
353 lo = list_entry(tmp_list.next, struct pnfs_layout_hdr,
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000354 plh_layouts);
Andy Adamson974cec82010-10-20 00:18:02 -0400355 dprintk("%s freeing layout for inode %lu\n", __func__,
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000356 lo->plh_inode->i_ino);
357 pnfs_destroy_layout(NFS_I(lo->plh_inode));
Andy Adamson974cec82010-10-20 00:18:02 -0400358 }
359}
360
Fred Isamanfd6002e2011-01-06 11:36:22 +0000361/* update lo->plh_stateid with new if is more recent */
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400362static void
363pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo,
364 const nfs4_stateid *new)
365{
Fred Isamanfd6002e2011-01-06 11:36:22 +0000366 u32 oldseq, newseq;
Andy Adamson974cec82010-10-20 00:18:02 -0400367
Fred Isamanfd6002e2011-01-06 11:36:22 +0000368 oldseq = be32_to_cpu(lo->plh_stateid.stateid.seqid);
369 newseq = be32_to_cpu(new->stateid.seqid);
370 if ((int)(newseq - oldseq) > 0)
371 memcpy(&lo->plh_stateid, &new->stateid, sizeof(new->stateid));
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400372}
373
Fred Isamancf7d63f2011-01-06 11:36:25 +0000374/* lget is set to 1 if called from inside send_layoutget call chain */
375static bool
376pnfs_layoutgets_blocked(struct pnfs_layout_hdr *lo, int lget)
377{
378 return (list_empty(&lo->plh_segs) &&
379 (atomic_read(&lo->plh_outstanding) > lget));
380}
381
Fred Isamanfd6002e2011-01-06 11:36:22 +0000382int
383pnfs_choose_layoutget_stateid(nfs4_stateid *dst, struct pnfs_layout_hdr *lo,
384 struct nfs4_state *open_state)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400385{
Fred Isamanfd6002e2011-01-06 11:36:22 +0000386 int status = 0;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400387
388 dprintk("--> %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000389 spin_lock(&lo->plh_inode->i_lock);
Fred Isamancf7d63f2011-01-06 11:36:25 +0000390 if (pnfs_layoutgets_blocked(lo, 1)) {
391 status = -EAGAIN;
392 } else if (list_empty(&lo->plh_segs)) {
Fred Isamanfd6002e2011-01-06 11:36:22 +0000393 int seq;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400394
Fred Isamanfd6002e2011-01-06 11:36:22 +0000395 do {
396 seq = read_seqbegin(&open_state->seqlock);
397 memcpy(dst->data, open_state->stateid.data,
398 sizeof(open_state->stateid.data));
399 } while (read_seqretry(&open_state->seqlock, seq));
400 } else
401 memcpy(dst->data, lo->plh_stateid.data, sizeof(lo->plh_stateid.data));
402 spin_unlock(&lo->plh_inode->i_lock);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400403 dprintk("<-- %s\n", __func__);
Fred Isamanfd6002e2011-01-06 11:36:22 +0000404 return status;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400405}
406
407/*
408* Get layout from server.
409* for now, assume that whole file layouts are requested.
410* arg->offset: 0
411* arg->length: all ones
412*/
Benny Halevye5e94012010-10-20 00:18:01 -0400413static struct pnfs_layout_segment *
414send_layoutget(struct pnfs_layout_hdr *lo,
415 struct nfs_open_context *ctx,
416 u32 iomode)
417{
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000418 struct inode *ino = lo->plh_inode;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400419 struct nfs_server *server = NFS_SERVER(ino);
420 struct nfs4_layoutget *lgp;
421 struct pnfs_layout_segment *lseg = NULL;
Benny Halevye5e94012010-10-20 00:18:01 -0400422
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400423 dprintk("--> %s\n", __func__);
424
425 BUG_ON(ctx == NULL);
426 lgp = kzalloc(sizeof(*lgp), GFP_KERNEL);
Fred Isamancf7d63f2011-01-06 11:36:25 +0000427 if (lgp == NULL)
Andy Adamson974cec82010-10-20 00:18:02 -0400428 return NULL;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400429 lgp->args.minlength = NFS4_MAX_UINT64;
430 lgp->args.maxcount = PNFS_LAYOUT_MAXSIZE;
431 lgp->args.range.iomode = iomode;
432 lgp->args.range.offset = 0;
433 lgp->args.range.length = NFS4_MAX_UINT64;
434 lgp->args.type = server->pnfs_curr_ld->id;
435 lgp->args.inode = ino;
436 lgp->args.ctx = get_nfs_open_context(ctx);
437 lgp->lsegpp = &lseg;
438
439 /* Synchronously retrieve layout information from server and
440 * store in lseg.
441 */
442 nfs4_proc_layoutget(lgp);
443 if (!lseg) {
444 /* remember that LAYOUTGET failed and suspend trying */
Fred Isaman566052c2011-01-06 11:36:20 +0000445 set_bit(lo_fail_bit(iomode), &lo->plh_flags);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400446 }
Andy Adamson974cec82010-10-20 00:18:02 -0400447 return lseg;
448}
449
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400450/*
451 * Compare two layout segments for sorting into layout cache.
452 * We want to preferentially return RW over RO layouts, so ensure those
453 * are seen first.
454 */
455static s64
456cmp_layout(u32 iomode1, u32 iomode2)
457{
458 /* read > read/write */
459 return (int)(iomode2 == IOMODE_READ) - (int)(iomode1 == IOMODE_READ);
460}
461
Andy Adamson974cec82010-10-20 00:18:02 -0400462static void
463pnfs_insert_layout(struct pnfs_layout_hdr *lo,
464 struct pnfs_layout_segment *lseg)
465{
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400466 struct pnfs_layout_segment *lp;
467 int found = 0;
468
Andy Adamson974cec82010-10-20 00:18:02 -0400469 dprintk("%s:Begin\n", __func__);
470
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000471 assert_spin_locked(&lo->plh_inode->i_lock);
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000472 list_for_each_entry(lp, &lo->plh_segs, pls_list) {
Fred Isaman566052c2011-01-06 11:36:20 +0000473 if (cmp_layout(lp->pls_range.iomode, lseg->pls_range.iomode) > 0)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400474 continue;
Fred Isaman566052c2011-01-06 11:36:20 +0000475 list_add_tail(&lseg->pls_list, &lp->pls_list);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400476 dprintk("%s: inserted lseg %p "
477 "iomode %d offset %llu length %llu before "
478 "lp %p iomode %d offset %llu length %llu\n",
Fred Isaman566052c2011-01-06 11:36:20 +0000479 __func__, lseg, lseg->pls_range.iomode,
480 lseg->pls_range.offset, lseg->pls_range.length,
481 lp, lp->pls_range.iomode, lp->pls_range.offset,
482 lp->pls_range.length);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400483 found = 1;
484 break;
Andy Adamson974cec82010-10-20 00:18:02 -0400485 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400486 if (!found) {
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000487 list_add_tail(&lseg->pls_list, &lo->plh_segs);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400488 dprintk("%s: inserted lseg %p "
489 "iomode %d offset %llu length %llu at tail\n",
Fred Isaman566052c2011-01-06 11:36:20 +0000490 __func__, lseg, lseg->pls_range.iomode,
491 lseg->pls_range.offset, lseg->pls_range.length);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400492 }
493 get_layout_hdr_locked(lo);
Andy Adamson974cec82010-10-20 00:18:02 -0400494
495 dprintk("%s:Return\n", __func__);
Benny Halevye5e94012010-10-20 00:18:01 -0400496}
497
498static struct pnfs_layout_hdr *
499alloc_init_layout_hdr(struct inode *ino)
500{
501 struct pnfs_layout_hdr *lo;
502
503 lo = kzalloc(sizeof(struct pnfs_layout_hdr), GFP_KERNEL);
504 if (!lo)
505 return NULL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000506 lo->plh_refcount = 1;
507 INIT_LIST_HEAD(&lo->plh_layouts);
508 INIT_LIST_HEAD(&lo->plh_segs);
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000509 lo->plh_inode = ino;
Benny Halevye5e94012010-10-20 00:18:01 -0400510 return lo;
511}
512
513static struct pnfs_layout_hdr *
514pnfs_find_alloc_layout(struct inode *ino)
515{
516 struct nfs_inode *nfsi = NFS_I(ino);
517 struct pnfs_layout_hdr *new = NULL;
518
519 dprintk("%s Begin ino=%p layout=%p\n", __func__, ino, nfsi->layout);
520
521 assert_spin_locked(&ino->i_lock);
Fred Isaman4541d162011-01-06 11:36:23 +0000522 if (nfsi->layout) {
523 if (test_bit(NFS_LAYOUT_DESTROYED, &nfsi->layout->plh_flags))
524 return NULL;
525 else
526 return nfsi->layout;
527 }
Benny Halevye5e94012010-10-20 00:18:01 -0400528 spin_unlock(&ino->i_lock);
529 new = alloc_init_layout_hdr(ino);
530 spin_lock(&ino->i_lock);
531
532 if (likely(nfsi->layout == NULL)) /* Won the race? */
533 nfsi->layout = new;
534 else
535 kfree(new);
536 return nfsi->layout;
537}
538
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400539/*
540 * iomode matching rules:
541 * iomode lseg match
542 * ----- ----- -----
543 * ANY READ true
544 * ANY RW true
545 * RW READ false
546 * RW RW true
547 * READ READ true
548 * READ RW true
549 */
550static int
551is_matching_lseg(struct pnfs_layout_segment *lseg, u32 iomode)
552{
Fred Isaman566052c2011-01-06 11:36:20 +0000553 return (iomode != IOMODE_RW || lseg->pls_range.iomode == IOMODE_RW);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400554}
555
556/*
557 * lookup range in layout
558 */
Benny Halevye5e94012010-10-20 00:18:01 -0400559static struct pnfs_layout_segment *
560pnfs_has_layout(struct pnfs_layout_hdr *lo, u32 iomode)
561{
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400562 struct pnfs_layout_segment *lseg, *ret = NULL;
563
564 dprintk("%s:Begin\n", __func__);
565
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000566 assert_spin_locked(&lo->plh_inode->i_lock);
567 list_for_each_entry(lseg, &lo->plh_segs, pls_list) {
Fred Isaman4541d162011-01-06 11:36:23 +0000568 if (test_bit(NFS_LSEG_VALID, &lseg->pls_flags) &&
569 is_matching_lseg(lseg, iomode)) {
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400570 ret = lseg;
571 break;
572 }
Fred Isaman566052c2011-01-06 11:36:20 +0000573 if (cmp_layout(iomode, lseg->pls_range.iomode) > 0)
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400574 break;
575 }
576
577 dprintk("%s:Return lseg %p ref %d\n",
Fred Isaman4541d162011-01-06 11:36:23 +0000578 __func__, ret, ret ? atomic_read(&ret->pls_refcount) : 0);
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400579 return ret;
Benny Halevye5e94012010-10-20 00:18:01 -0400580}
581
582/*
583 * Layout segment is retreived from the server if not cached.
584 * The appropriate layout segment is referenced and returned to the caller.
585 */
586struct pnfs_layout_segment *
587pnfs_update_layout(struct inode *ino,
588 struct nfs_open_context *ctx,
589 enum pnfs_iomode iomode)
590{
591 struct nfs_inode *nfsi = NFS_I(ino);
Fred Isaman2130ff62011-01-06 11:36:26 +0000592 struct nfs_client *clp = NFS_SERVER(ino)->nfs_client;
Benny Halevye5e94012010-10-20 00:18:01 -0400593 struct pnfs_layout_hdr *lo;
594 struct pnfs_layout_segment *lseg = NULL;
595
596 if (!pnfs_enabled_sb(NFS_SERVER(ino)))
597 return NULL;
598 spin_lock(&ino->i_lock);
599 lo = pnfs_find_alloc_layout(ino);
600 if (lo == NULL) {
601 dprintk("%s ERROR: can't get pnfs_layout_hdr\n", __func__);
602 goto out_unlock;
603 }
604
605 /* Check to see if the layout for the given range already exists */
606 lseg = pnfs_has_layout(lo, iomode);
607 if (lseg) {
608 dprintk("%s: Using cached lseg %p for iomode %d)\n",
609 __func__, lseg, iomode);
610 goto out_unlock;
611 }
612
613 /* if LAYOUTGET already failed once we don't try again */
Fred Isaman566052c2011-01-06 11:36:20 +0000614 if (test_bit(lo_fail_bit(iomode), &nfsi->layout->plh_flags))
Benny Halevye5e94012010-10-20 00:18:01 -0400615 goto out_unlock;
616
Fred Isamancf7d63f2011-01-06 11:36:25 +0000617 if (pnfs_layoutgets_blocked(lo, 0))
618 goto out_unlock;
619 atomic_inc(&lo->plh_outstanding);
620
621 get_layout_hdr_locked(lo);
Fred Isaman2130ff62011-01-06 11:36:26 +0000622 if (list_empty(&lo->plh_segs)) {
623 /* The lo must be on the clp list if there is any
624 * chance of a CB_LAYOUTRECALL(FILE) coming in.
625 */
626 spin_lock(&clp->cl_lock);
627 BUG_ON(!list_empty(&lo->plh_layouts));
628 list_add_tail(&lo->plh_layouts, &clp->cl_layouts);
629 spin_unlock(&clp->cl_lock);
630 }
Benny Halevye5e94012010-10-20 00:18:01 -0400631 spin_unlock(&ino->i_lock);
632
633 lseg = send_layoutget(lo, ctx, iomode);
Fred Isaman2130ff62011-01-06 11:36:26 +0000634 if (!lseg) {
635 spin_lock(&ino->i_lock);
636 if (list_empty(&lo->plh_segs)) {
637 spin_lock(&clp->cl_lock);
638 list_del_init(&lo->plh_layouts);
639 spin_unlock(&clp->cl_lock);
640 }
641 spin_unlock(&ino->i_lock);
642 }
Fred Isamancf7d63f2011-01-06 11:36:25 +0000643 atomic_dec(&lo->plh_outstanding);
644 put_layout_hdr(ino);
Benny Halevye5e94012010-10-20 00:18:01 -0400645out:
646 dprintk("%s end, state 0x%lx lseg %p\n", __func__,
Fred Isaman566052c2011-01-06 11:36:20 +0000647 nfsi->layout->plh_flags, lseg);
Benny Halevye5e94012010-10-20 00:18:01 -0400648 return lseg;
649out_unlock:
650 spin_unlock(&ino->i_lock);
651 goto out;
652}
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400653
654int
655pnfs_layout_process(struct nfs4_layoutget *lgp)
656{
657 struct pnfs_layout_hdr *lo = NFS_I(lgp->args.inode)->layout;
658 struct nfs4_layoutget_res *res = &lgp->res;
659 struct pnfs_layout_segment *lseg;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000660 struct inode *ino = lo->plh_inode;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400661 int status = 0;
662
Fred Isamanfc1794c2011-01-06 11:36:27 +0000663 /* Verify we got what we asked for.
664 * Note that because the xdr parsing only accepts a single
665 * element array, this can fail even if the server is behaving
666 * correctly.
667 */
668 if (lgp->args.range.iomode > res->range.iomode ||
669 res->range.offset != 0 ||
670 res->range.length != NFS4_MAX_UINT64) {
671 status = -EINVAL;
672 goto out;
673 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400674 /* Inject layout blob into I/O device driver */
675 lseg = NFS_SERVER(ino)->pnfs_curr_ld->alloc_lseg(lo, res);
676 if (!lseg || IS_ERR(lseg)) {
677 if (!lseg)
678 status = -ENOMEM;
679 else
680 status = PTR_ERR(lseg);
681 dprintk("%s: Could not allocate layout: error %d\n",
682 __func__, status);
683 goto out;
684 }
685
686 spin_lock(&ino->i_lock);
687 init_lseg(lo, lseg);
Fred Isaman566052c2011-01-06 11:36:20 +0000688 lseg->pls_range = res->range;
Andy Adamsonb1f69b72010-10-20 00:18:03 -0400689 *lgp->lsegpp = lseg;
690 pnfs_insert_layout(lo, lseg);
691
692 /* Done processing layoutget. Set the layout stateid */
693 pnfs_set_layout_stateid(lo, &res->stateid);
694 spin_unlock(&ino->i_lock);
695out:
696 return status;
697}
698
699/*
700 * Device ID cache. Currently supports one layout type per struct nfs_client.
701 * Add layout type to the lookup key to expand to support multiple types.
702 */
703int
704pnfs_alloc_init_deviceid_cache(struct nfs_client *clp,
705 void (*free_callback)(struct pnfs_deviceid_node *))
706{
707 struct pnfs_deviceid_cache *c;
708
709 c = kzalloc(sizeof(struct pnfs_deviceid_cache), GFP_KERNEL);
710 if (!c)
711 return -ENOMEM;
712 spin_lock(&clp->cl_lock);
713 if (clp->cl_devid_cache != NULL) {
714 atomic_inc(&clp->cl_devid_cache->dc_ref);
715 dprintk("%s [kref [%d]]\n", __func__,
716 atomic_read(&clp->cl_devid_cache->dc_ref));
717 kfree(c);
718 } else {
719 /* kzalloc initializes hlists */
720 spin_lock_init(&c->dc_lock);
721 atomic_set(&c->dc_ref, 1);
722 c->dc_free_callback = free_callback;
723 clp->cl_devid_cache = c;
724 dprintk("%s [new]\n", __func__);
725 }
726 spin_unlock(&clp->cl_lock);
727 return 0;
728}
729EXPORT_SYMBOL_GPL(pnfs_alloc_init_deviceid_cache);
730
731/*
732 * Called from pnfs_layoutdriver_type->free_lseg
733 * last layout segment reference frees deviceid
734 */
735void
736pnfs_put_deviceid(struct pnfs_deviceid_cache *c,
737 struct pnfs_deviceid_node *devid)
738{
739 struct nfs4_deviceid *id = &devid->de_id;
740 struct pnfs_deviceid_node *d;
741 struct hlist_node *n;
742 long h = nfs4_deviceid_hash(id);
743
744 dprintk("%s [%d]\n", __func__, atomic_read(&devid->de_ref));
745 if (!atomic_dec_and_lock(&devid->de_ref, &c->dc_lock))
746 return;
747
748 hlist_for_each_entry_rcu(d, n, &c->dc_deviceids[h], de_node)
749 if (!memcmp(&d->de_id, id, sizeof(*id))) {
750 hlist_del_rcu(&d->de_node);
751 spin_unlock(&c->dc_lock);
752 synchronize_rcu();
753 c->dc_free_callback(devid);
754 return;
755 }
756 spin_unlock(&c->dc_lock);
757 /* Why wasn't it found in the list? */
758 BUG();
759}
760EXPORT_SYMBOL_GPL(pnfs_put_deviceid);
761
762/* Find and reference a deviceid */
763struct pnfs_deviceid_node *
764pnfs_find_get_deviceid(struct pnfs_deviceid_cache *c, struct nfs4_deviceid *id)
765{
766 struct pnfs_deviceid_node *d;
767 struct hlist_node *n;
768 long hash = nfs4_deviceid_hash(id);
769
770 dprintk("--> %s hash %ld\n", __func__, hash);
771 rcu_read_lock();
772 hlist_for_each_entry_rcu(d, n, &c->dc_deviceids[hash], de_node) {
773 if (!memcmp(&d->de_id, id, sizeof(*id))) {
774 if (!atomic_inc_not_zero(&d->de_ref)) {
775 goto fail;
776 } else {
777 rcu_read_unlock();
778 return d;
779 }
780 }
781 }
782fail:
783 rcu_read_unlock();
784 return NULL;
785}
786EXPORT_SYMBOL_GPL(pnfs_find_get_deviceid);
787
788/*
789 * Add a deviceid to the cache.
790 * GETDEVICEINFOs for same deviceid can race. If deviceid is found, discard new
791 */
792struct pnfs_deviceid_node *
793pnfs_add_deviceid(struct pnfs_deviceid_cache *c, struct pnfs_deviceid_node *new)
794{
795 struct pnfs_deviceid_node *d;
796 long hash = nfs4_deviceid_hash(&new->de_id);
797
798 dprintk("--> %s hash %ld\n", __func__, hash);
799 spin_lock(&c->dc_lock);
800 d = pnfs_find_get_deviceid(c, &new->de_id);
801 if (d) {
802 spin_unlock(&c->dc_lock);
803 dprintk("%s [discard]\n", __func__);
804 c->dc_free_callback(new);
805 return d;
806 }
807 INIT_HLIST_NODE(&new->de_node);
808 atomic_set(&new->de_ref, 1);
809 hlist_add_head_rcu(&new->de_node, &c->dc_deviceids[hash]);
810 spin_unlock(&c->dc_lock);
811 dprintk("%s [new]\n", __func__);
812 return new;
813}
814EXPORT_SYMBOL_GPL(pnfs_add_deviceid);
815
816void
817pnfs_put_deviceid_cache(struct nfs_client *clp)
818{
819 struct pnfs_deviceid_cache *local = clp->cl_devid_cache;
820
821 dprintk("--> %s cl_devid_cache %p\n", __func__, clp->cl_devid_cache);
822 if (atomic_dec_and_lock(&local->dc_ref, &clp->cl_lock)) {
823 int i;
824 /* Verify cache is empty */
825 for (i = 0; i < NFS4_DEVICE_ID_HASH_SIZE; i++)
826 BUG_ON(!hlist_empty(&local->dc_deviceids[i]));
827 clp->cl_devid_cache = NULL;
828 spin_unlock(&clp->cl_lock);
829 kfree(local);
830 }
831}
832EXPORT_SYMBOL_GPL(pnfs_put_deviceid_cache);