Whamcloud - gitweb
LU-5459 lov: adjust page bufsize after layout change
[fs/lustre-release.git] / lustre / lov / lov_object.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Implementation of cl_object for LOV layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_LOV
43
44 #include "lov_cl_internal.h"
45
46 /** \addtogroup lov
47  *  @{
48  */
49
50 /*****************************************************************************
51  *
52  * Layout operations.
53  *
54  */
55
56 struct lov_layout_operations {
57         int (*llo_init)(const struct lu_env *env, struct lov_device *dev,
58                         struct lov_object *lov,
59                         const struct cl_object_conf *conf,
60                         union lov_layout_state *state);
61         int (*llo_delete)(const struct lu_env *env, struct lov_object *lov,
62                            union lov_layout_state *state);
63         void (*llo_fini)(const struct lu_env *env, struct lov_object *lov,
64                          union lov_layout_state *state);
65         void (*llo_install)(const struct lu_env *env, struct lov_object *lov,
66                             union lov_layout_state *state);
67         int  (*llo_print)(const struct lu_env *env, void *cookie,
68                           lu_printer_t p, const struct lu_object *o);
69         int  (*llo_page_init)(const struct lu_env *env, struct cl_object *obj,
70                               struct cl_page *page, pgoff_t index);
71         int  (*llo_lock_init)(const struct lu_env *env,
72                               struct cl_object *obj, struct cl_lock *lock,
73                               const struct cl_io *io);
74         int  (*llo_io_init)(const struct lu_env *env,
75                             struct cl_object *obj, struct cl_io *io);
76         int  (*llo_getattr)(const struct lu_env *env, struct cl_object *obj,
77                             struct cl_attr *attr);
78 };
79
80 static int lov_layout_wait(const struct lu_env *env, struct lov_object *lov);
81
82 /*****************************************************************************
83  *
84  * Lov object layout operations.
85  *
86  */
87
88 static void lov_install_empty(const struct lu_env *env,
89                               struct lov_object *lov,
90                               union  lov_layout_state *state)
91 {
92         /*
93          * File without objects.
94          */
95 }
96
97 static int lov_init_empty(const struct lu_env *env,
98                           struct lov_device *dev, struct lov_object *lov,
99                           const struct cl_object_conf *conf,
100                           union  lov_layout_state *state)
101 {
102         return 0;
103 }
104
105 static void lov_install_raid0(const struct lu_env *env,
106                               struct lov_object *lov,
107                               union  lov_layout_state *state)
108 {
109 }
110
111 static struct cl_object *lov_sub_find(const struct lu_env *env,
112                                       struct cl_device *dev,
113                                       const struct lu_fid *fid,
114                                       const struct cl_object_conf *conf)
115 {
116         struct lu_object *o;
117
118         ENTRY;
119         o = lu_object_find_at(env, cl2lu_dev(dev), fid, &conf->coc_lu);
120         LASSERT(ergo(!IS_ERR(o), o->lo_dev->ld_type == &lovsub_device_type));
121         RETURN(lu2cl(o));
122 }
123
124 static int lov_init_sub(const struct lu_env *env, struct lov_object *lov,
125                         struct cl_object *stripe, struct lov_layout_raid0 *r0,
126                         int idx)
127 {
128         struct cl_object_header *hdr;
129         struct cl_object_header *subhdr;
130         struct cl_object_header *parent;
131         struct lov_oinfo        *oinfo;
132         int result;
133
134         if (OBD_FAIL_CHECK(OBD_FAIL_LOV_INIT)) {
135                 /* For sanity:test_206.
136                  * Do not leave the object in cache to avoid accessing
137                  * freed memory. This is because osc_object is referring to
138                  * lov_oinfo of lsm_stripe_data which will be freed due to
139                  * this failure. */
140                 cl_object_kill(env, stripe);
141                 cl_object_put(env, stripe);
142                 return -EIO;
143         }
144
145         hdr    = cl_object_header(lov2cl(lov));
146         subhdr = cl_object_header(stripe);
147
148         oinfo = lov->lo_lsm->lsm_oinfo[idx];
149         CDEBUG(D_INODE, DFID"@%p[%d] -> "DFID"@%p: ostid: "DOSTID
150                " idx: %d gen: %d\n",
151                PFID(&subhdr->coh_lu.loh_fid), subhdr, idx,
152                PFID(&hdr->coh_lu.loh_fid), hdr, POSTID(&oinfo->loi_oi),
153                oinfo->loi_ost_idx, oinfo->loi_ost_gen);
154
155         /* reuse ->coh_attr_guard to protect coh_parent change */
156         spin_lock(&subhdr->coh_attr_guard);
157         parent = subhdr->coh_parent;
158         if (parent == NULL) {
159                 subhdr->coh_parent = hdr;
160                 spin_unlock(&subhdr->coh_attr_guard);
161                 subhdr->coh_nesting = hdr->coh_nesting + 1;
162                 lu_object_ref_add(&stripe->co_lu, "lov-parent", lov);
163                 r0->lo_sub[idx] = cl2lovsub(stripe);
164                 r0->lo_sub[idx]->lso_super = lov;
165                 r0->lo_sub[idx]->lso_index = idx;
166                 result = 0;
167         } else {
168                 struct lu_object  *old_obj;
169                 struct lov_object *old_lov;
170                 unsigned int mask = D_INODE;
171
172                 spin_unlock(&subhdr->coh_attr_guard);
173                 old_obj = lu_object_locate(&parent->coh_lu, &lov_device_type);
174                 LASSERT(old_obj != NULL);
175                 old_lov = cl2lov(lu2cl(old_obj));
176                 if (old_lov->lo_layout_invalid) {
177                         /* the object's layout has already changed but isn't
178                          * refreshed */
179                         lu_object_unhash(env, &stripe->co_lu);
180                         result = -EAGAIN;
181                 } else {
182                         mask = D_ERROR;
183                         result = -EIO;
184                 }
185
186                 LU_OBJECT_DEBUG(mask, env, &stripe->co_lu,
187                                 "stripe %d is already owned.\n", idx);
188                 LU_OBJECT_DEBUG(mask, env, old_obj, "owned.\n");
189                 LU_OBJECT_HEADER(mask, env, lov2lu(lov), "try to own.\n");
190                 cl_object_put(env, stripe);
191         }
192         return result;
193 }
194
195 static int lov_page_slice_fixup(struct lov_object *lov,
196                                 struct cl_object *stripe)
197 {
198         struct cl_object_header *hdr = cl_object_header(&lov->lo_cl);
199         struct cl_object *o;
200
201         if (stripe == NULL)
202                 return hdr->coh_page_bufsize - lov->lo_cl.co_slice_off -
203                        cfs_size_round(sizeof(struct lov_page));
204
205         cl_object_for_each(o, stripe)
206                 o->co_slice_off += hdr->coh_page_bufsize;
207
208         return cl_object_header(stripe)->coh_page_bufsize;
209 }
210
211 static int lov_init_raid0(const struct lu_env *env,
212                           struct lov_device *dev, struct lov_object *lov,
213                           const struct cl_object_conf *conf,
214                           union  lov_layout_state *state)
215 {
216         int result;
217         int i;
218
219         struct cl_object        *stripe;
220         struct lov_thread_info  *lti     = lov_env_info(env);
221         struct cl_object_conf   *subconf = &lti->lti_stripe_conf;
222         struct lov_stripe_md    *lsm     = conf->u.coc_md->lsm;
223         struct lu_fid           *ofid    = &lti->lti_fid;
224         struct lov_layout_raid0 *r0      = &state->raid0;
225
226         ENTRY;
227
228         if (lsm->lsm_magic != LOV_MAGIC_V1 && lsm->lsm_magic != LOV_MAGIC_V3) {
229                 dump_lsm(D_ERROR, lsm);
230                 LASSERTF(0, "magic mismatch, expected %d/%d, actual %d.\n",
231                          LOV_MAGIC_V1, LOV_MAGIC_V3, lsm->lsm_magic);
232         }
233
234         LASSERT(lov->lo_lsm == NULL);
235         lov->lo_lsm = lsm_addref(lsm);
236         r0->lo_nr  = lsm->lsm_stripe_count;
237         LASSERT(r0->lo_nr <= lov_targets_nr(dev));
238
239         lov->lo_layout_invalid = true;
240
241         OBD_ALLOC_LARGE(r0->lo_sub, r0->lo_nr * sizeof r0->lo_sub[0]);
242         if (r0->lo_sub != NULL) {
243                 int psz = 0;
244
245                 result = 0;
246                 subconf->coc_inode = conf->coc_inode;
247                 spin_lock_init(&r0->lo_sub_lock);
248                 /*
249                  * Create stripe cl_objects.
250                  */
251                 for (i = 0; i < r0->lo_nr && result == 0; ++i) {
252                         struct cl_device *subdev;
253                         struct lov_oinfo *oinfo = lsm->lsm_oinfo[i];
254                         int ost_idx = oinfo->loi_ost_idx;
255
256                         if (lov_oinfo_is_dummy(oinfo))
257                                 continue;
258
259                         result = ostid_to_fid(ofid, &oinfo->loi_oi,
260                                               oinfo->loi_ost_idx);
261                         if (result != 0)
262                                 GOTO(out, result);
263
264                         subdev = lovsub2cl_dev(dev->ld_target[ost_idx]);
265                         subconf->u.coc_oinfo = oinfo;
266                         LASSERTF(subdev != NULL, "not init ost %d\n", ost_idx);
267                         /* In the function below, .hs_keycmp resolves to
268                          * lu_obj_hop_keycmp() */
269                         /* coverity[overrun-buffer-val] */
270                         stripe = lov_sub_find(env, subdev, ofid, subconf);
271                         if (!IS_ERR(stripe)) {
272                                 result = lov_init_sub(env, lov, stripe, r0, i);
273                                 if (result == -EAGAIN) { /* try again */
274                                         --i;
275                                         result = 0;
276                                         continue;
277                                 }
278                         } else {
279                                 result = PTR_ERR(stripe);
280                         }
281
282                         if (result == 0) {
283                                 int sz = lov_page_slice_fixup(lov, stripe);
284                                 LASSERT(ergo(psz > 0, psz == sz));
285                                 psz = sz;
286                         }
287                 }
288                 if (result == 0)
289                         cl_object_header(&lov->lo_cl)->coh_page_bufsize += psz;
290         } else
291                 result = -ENOMEM;
292 out:
293         RETURN(result);
294 }
295
296 static int lov_init_released(const struct lu_env *env,
297                         struct lov_device *dev, struct lov_object *lov,
298                         const struct cl_object_conf *conf,
299                         union  lov_layout_state *state)
300 {
301         struct lov_stripe_md *lsm = conf->u.coc_md->lsm;
302
303         LASSERT(lsm != NULL);
304         LASSERT(lsm_is_released(lsm));
305         LASSERT(lov->lo_lsm == NULL);
306
307         lov->lo_lsm = lsm_addref(lsm);
308         return 0;
309 }
310
311 static int lov_delete_empty(const struct lu_env *env, struct lov_object *lov,
312                             union lov_layout_state *state)
313 {
314         LASSERT(lov->lo_type == LLT_EMPTY || lov->lo_type == LLT_RELEASED);
315
316         lov_layout_wait(env, lov);
317
318         cl_locks_prune(env, &lov->lo_cl, 0);
319         return 0;
320 }
321
322 static void lov_subobject_kill(const struct lu_env *env, struct lov_object *lov,
323                                struct lovsub_object *los, int idx)
324 {
325         struct cl_object        *sub;
326         struct lov_layout_raid0 *r0;
327         struct lu_site          *site;
328         struct lu_site_bkt_data *bkt;
329         wait_queue_t          *waiter;
330
331         r0  = &lov->u.raid0;
332         LASSERT(r0->lo_sub[idx] == los);
333
334         sub  = lovsub2cl(los);
335         site = sub->co_lu.lo_dev->ld_site;
336         bkt  = lu_site_bkt_from_fid(site, &sub->co_lu.lo_header->loh_fid);
337
338         cl_object_kill(env, sub);
339         /* release a reference to the sub-object and ... */
340         lu_object_ref_del(&sub->co_lu, "lov-parent", lov);
341         cl_object_put(env, sub);
342
343         /* ... wait until it is actually destroyed---sub-object clears its
344          * ->lo_sub[] slot in lovsub_object_fini() */
345         if (r0->lo_sub[idx] == los) {
346                 waiter = &lov_env_info(env)->lti_waiter;
347                 init_waitqueue_entry_current(waiter);
348                 add_wait_queue(&bkt->lsb_marche_funebre, waiter);
349                 set_current_state(TASK_UNINTERRUPTIBLE);
350                 while (1) {
351                         /* this wait-queue is signaled at the end of
352                          * lu_object_free(). */
353                         set_current_state(TASK_UNINTERRUPTIBLE);
354                         spin_lock(&r0->lo_sub_lock);
355                         if (r0->lo_sub[idx] == los) {
356                                 spin_unlock(&r0->lo_sub_lock);
357                                 waitq_wait(waiter, TASK_UNINTERRUPTIBLE);
358                         } else {
359                                 spin_unlock(&r0->lo_sub_lock);
360                                 set_current_state(TASK_RUNNING);
361                                 break;
362                         }
363                 }
364                 remove_wait_queue(&bkt->lsb_marche_funebre, waiter);
365         }
366         LASSERT(r0->lo_sub[idx] == NULL);
367 }
368
369 static int lov_delete_raid0(const struct lu_env *env, struct lov_object *lov,
370                             union lov_layout_state *state)
371 {
372         struct lov_layout_raid0 *r0 = &state->raid0;
373         struct lov_stripe_md    *lsm = lov->lo_lsm;
374         int i;
375
376         ENTRY;
377
378         dump_lsm(D_INODE, lsm);
379
380         lov_layout_wait(env, lov);
381         if (r0->lo_sub != NULL) {
382                 for (i = 0; i < r0->lo_nr; ++i) {
383                         struct lovsub_object *los = r0->lo_sub[i];
384
385                         if (los != NULL) {
386                                 cl_locks_prune(env, &los->lso_cl, 1);
387                                 /*
388                                  * If top-level object is to be evicted from
389                                  * the cache, so are its sub-objects.
390                                  */
391                                 lov_subobject_kill(env, lov, los, i);
392                         }
393                 }
394         }
395         cl_locks_prune(env, &lov->lo_cl, 0);
396         RETURN(0);
397 }
398
399 static void lov_fini_empty(const struct lu_env *env, struct lov_object *lov,
400                            union lov_layout_state *state)
401 {
402         LASSERT(lov->lo_type == LLT_EMPTY || lov->lo_type == LLT_RELEASED);
403 }
404
405 static void lov_fini_raid0(const struct lu_env *env, struct lov_object *lov,
406                            union lov_layout_state *state)
407 {
408         struct lov_layout_raid0 *r0 = &state->raid0;
409         ENTRY;
410
411         if (r0->lo_sub != NULL) {
412                 OBD_FREE_LARGE(r0->lo_sub, r0->lo_nr * sizeof r0->lo_sub[0]);
413                 r0->lo_sub = NULL;
414         }
415
416         dump_lsm(D_INODE, lov->lo_lsm);
417         lov_free_memmd(&lov->lo_lsm);
418
419         EXIT;
420 }
421
422 static void lov_fini_released(const struct lu_env *env, struct lov_object *lov,
423                                 union lov_layout_state *state)
424 {
425         ENTRY;
426         dump_lsm(D_INODE, lov->lo_lsm);
427         lov_free_memmd(&lov->lo_lsm);
428         EXIT;
429 }
430
431 static int lov_print_empty(const struct lu_env *env, void *cookie,
432                            lu_printer_t p, const struct lu_object *o)
433 {
434         (*p)(env, cookie, "empty %d\n", lu2lov(o)->lo_layout_invalid);
435         return 0;
436 }
437
438 static int lov_print_raid0(const struct lu_env *env, void *cookie,
439                            lu_printer_t p, const struct lu_object *o)
440 {
441         struct lov_object       *lov = lu2lov(o);
442         struct lov_layout_raid0 *r0  = lov_r0(lov);
443         struct lov_stripe_md    *lsm = lov->lo_lsm;
444         int                      i;
445
446         (*p)(env, cookie, "stripes: %d, %s, lsm{%p 0x%08X %d %u %u}:\n",
447                 r0->lo_nr, lov->lo_layout_invalid ? "invalid" : "valid", lsm,
448                 lsm->lsm_magic, atomic_read(&lsm->lsm_refc),
449                 lsm->lsm_stripe_count, lsm->lsm_layout_gen);
450         for (i = 0; i < r0->lo_nr; ++i) {
451                 struct lu_object *sub;
452
453                 if (r0->lo_sub[i] != NULL) {
454                         sub = lovsub2lu(r0->lo_sub[i]);
455                         lu_object_print(env, cookie, p, sub);
456                 } else {
457                         (*p)(env, cookie, "sub %d absent\n", i);
458                 }
459         }
460         return 0;
461 }
462
463 static int lov_print_released(const struct lu_env *env, void *cookie,
464                                 lu_printer_t p, const struct lu_object *o)
465 {
466         struct lov_object       *lov = lu2lov(o);
467         struct lov_stripe_md    *lsm = lov->lo_lsm;
468
469         (*p)(env, cookie,
470                 "released: %s, lsm{%p 0x%08X %d %u %u}:\n",
471                 lov->lo_layout_invalid ? "invalid" : "valid", lsm,
472                 lsm->lsm_magic, atomic_read(&lsm->lsm_refc),
473                 lsm->lsm_stripe_count, lsm->lsm_layout_gen);
474         return 0;
475 }
476
477 /**
478  * Implements cl_object_operations::coo_attr_get() method for an object
479  * without stripes (LLT_EMPTY layout type).
480  *
481  * The only attributes this layer is authoritative in this case is
482  * cl_attr::cat_blocks---it's 0.
483  */
484 static int lov_attr_get_empty(const struct lu_env *env, struct cl_object *obj,
485                               struct cl_attr *attr)
486 {
487         attr->cat_blocks = 0;
488         return 0;
489 }
490
491 static int lov_attr_get_raid0(const struct lu_env *env, struct cl_object *obj,
492                               struct cl_attr *attr)
493 {
494         struct lov_object       *lov = cl2lov(obj);
495         struct lov_layout_raid0 *r0 = lov_r0(lov);
496         struct cl_attr          *lov_attr = &r0->lo_attr;
497         int                      result = 0;
498
499         ENTRY;
500
501         /* this is called w/o holding type guard mutex, so it must be inside
502          * an on going IO otherwise lsm may be replaced.
503          * LU-2117: it turns out there exists one exception. For mmaped files,
504          * the lock of those files may be requested in the other file's IO
505          * context, and this function is called in ccc_lock_state(), it will
506          * hit this assertion.
507          * Anyway, it's still okay to call attr_get w/o type guard as layout
508          * can't go if locks exist. */
509         /* LASSERT(atomic_read(&lsm->lsm_refc) > 1); */
510
511         if (!r0->lo_attr_valid) {
512                 struct lov_stripe_md    *lsm = lov->lo_lsm;
513                 struct ost_lvb          *lvb = &lov_env_info(env)->lti_lvb;
514                 __u64                    kms = 0;
515
516                 memset(lvb, 0, sizeof(*lvb));
517                 /* XXX: timestamps can be negative by sanity:test_39m,
518                  * how can it be? */
519                 lvb->lvb_atime = LLONG_MIN;
520                 lvb->lvb_ctime = LLONG_MIN;
521                 lvb->lvb_mtime = LLONG_MIN;
522
523                 /*
524                  * XXX that should be replaced with a loop over sub-objects,
525                  * doing cl_object_attr_get() on them. But for now, let's
526                  * reuse old lov code.
527                  */
528
529                 /*
530                  * XXX take lsm spin-lock to keep lov_merge_lvb_kms()
531                  * happy. It's not needed, because new code uses
532                  * ->coh_attr_guard spin-lock to protect consistency of
533                  * sub-object attributes.
534                  */
535                 lov_stripe_lock(lsm);
536                 result = lov_merge_lvb_kms(lsm, lvb, &kms);
537                 lov_stripe_unlock(lsm);
538                 if (result == 0) {
539                         cl_lvb2attr(lov_attr, lvb);
540                         lov_attr->cat_kms = kms;
541                         r0->lo_attr_valid = 1;
542                 }
543         }
544         if (result == 0) { /* merge results */
545                 attr->cat_blocks = lov_attr->cat_blocks;
546                 attr->cat_size = lov_attr->cat_size;
547                 attr->cat_kms = lov_attr->cat_kms;
548                 if (attr->cat_atime < lov_attr->cat_atime)
549                         attr->cat_atime = lov_attr->cat_atime;
550                 if (attr->cat_ctime < lov_attr->cat_ctime)
551                         attr->cat_ctime = lov_attr->cat_ctime;
552                 if (attr->cat_mtime < lov_attr->cat_mtime)
553                         attr->cat_mtime = lov_attr->cat_mtime;
554         }
555         RETURN(result);
556 }
557
558 const static struct lov_layout_operations lov_dispatch[] = {
559         [LLT_EMPTY] = {
560                 .llo_init      = lov_init_empty,
561                 .llo_delete    = lov_delete_empty,
562                 .llo_fini      = lov_fini_empty,
563                 .llo_install   = lov_install_empty,
564                 .llo_print     = lov_print_empty,
565                 .llo_page_init = lov_page_init_empty,
566                 .llo_lock_init = lov_lock_init_empty,
567                 .llo_io_init   = lov_io_init_empty,
568                 .llo_getattr   = lov_attr_get_empty
569         },
570         [LLT_RAID0] = {
571                 .llo_init      = lov_init_raid0,
572                 .llo_delete    = lov_delete_raid0,
573                 .llo_fini      = lov_fini_raid0,
574                 .llo_install   = lov_install_raid0,
575                 .llo_print     = lov_print_raid0,
576                 .llo_page_init = lov_page_init_raid0,
577                 .llo_lock_init = lov_lock_init_raid0,
578                 .llo_io_init   = lov_io_init_raid0,
579                 .llo_getattr   = lov_attr_get_raid0
580         },
581         [LLT_RELEASED] = {
582                 .llo_init      = lov_init_released,
583                 .llo_delete    = lov_delete_empty,
584                 .llo_fini      = lov_fini_released,
585                 .llo_install   = lov_install_empty,
586                 .llo_print     = lov_print_released,
587                 .llo_page_init = lov_page_init_empty,
588                 .llo_lock_init = lov_lock_init_empty,
589                 .llo_io_init   = lov_io_init_released,
590                 .llo_getattr   = lov_attr_get_empty
591         }
592 };
593
594 /**
595  * Performs a double-dispatch based on the layout type of an object.
596  */
597 #define LOV_2DISPATCH_NOLOCK(obj, op, ...)                              \
598 ({                                                                      \
599         struct lov_object                      *__obj = (obj);          \
600         enum lov_layout_type                    __llt;                  \
601                                                                         \
602         __llt = __obj->lo_type;                                         \
603         LASSERT(0 <= __llt && __llt < ARRAY_SIZE(lov_dispatch));        \
604         lov_dispatch[__llt].op(__VA_ARGS__);                            \
605 })
606
607 /**
608  * Return lov_layout_type associated with a given lsm
609  */
610 enum lov_layout_type lov_type(struct lov_stripe_md *lsm)
611 {
612         if (lsm == NULL)
613                 return LLT_EMPTY;
614         if (lsm_is_released(lsm))
615                 return LLT_RELEASED;
616         return LLT_RAID0;
617 }
618
619 static inline void lov_conf_freeze(struct lov_object *lov)
620 {
621         if (lov->lo_owner != current)
622                 down_read(&lov->lo_type_guard);
623 }
624
625 static inline void lov_conf_thaw(struct lov_object *lov)
626 {
627         if (lov->lo_owner != current)
628                 up_read(&lov->lo_type_guard);
629 }
630
631 #define LOV_2DISPATCH_MAYLOCK(obj, op, lock, ...)                       \
632 ({                                                                      \
633         struct lov_object                      *__obj = (obj);          \
634         int                                     __lock = !!(lock);      \
635         typeof(lov_dispatch[0].op(__VA_ARGS__)) __result;               \
636                                                                         \
637         if (__lock)                                                     \
638                 lov_conf_freeze(__obj);                                 \
639         __result = LOV_2DISPATCH_NOLOCK(obj, op, __VA_ARGS__);          \
640         if (__lock)                                                     \
641                 lov_conf_thaw(__obj);                                   \
642         __result;                                                       \
643 })
644
645 /**
646  * Performs a locked double-dispatch based on the layout type of an object.
647  */
648 #define LOV_2DISPATCH(obj, op, ...)                     \
649         LOV_2DISPATCH_MAYLOCK(obj, op, 1, __VA_ARGS__)
650
651 #define LOV_2DISPATCH_VOID(obj, op, ...)                                \
652 do {                                                                    \
653         struct lov_object                      *__obj = (obj);          \
654         enum lov_layout_type                    __llt;                  \
655                                                                         \
656         lov_conf_freeze(__obj);                                         \
657         __llt = __obj->lo_type;                                         \
658         LASSERT(0 <= __llt && __llt < ARRAY_SIZE(lov_dispatch));        \
659         lov_dispatch[__llt].op(__VA_ARGS__);                            \
660         lov_conf_thaw(__obj);                                           \
661 } while (0)
662
663 static void lov_conf_lock(struct lov_object *lov)
664 {
665         LASSERT(lov->lo_owner != current);
666         down_write(&lov->lo_type_guard);
667         LASSERT(lov->lo_owner == NULL);
668         lov->lo_owner = current;
669 }
670
671 static void lov_conf_unlock(struct lov_object *lov)
672 {
673         lov->lo_owner = NULL;
674         up_write(&lov->lo_type_guard);
675 }
676
677 static int lov_layout_wait(const struct lu_env *env, struct lov_object *lov)
678 {
679         struct l_wait_info lwi = { 0 };
680         ENTRY;
681
682         while (atomic_read(&lov->lo_active_ios) > 0) {
683                 CDEBUG(D_INODE, "file:"DFID" wait for active IO, now: %d.\n",
684                         PFID(lu_object_fid(lov2lu(lov))),
685                         atomic_read(&lov->lo_active_ios));
686
687                 l_wait_event(lov->lo_waitq,
688                              atomic_read(&lov->lo_active_ios) == 0, &lwi);
689         }
690         RETURN(0);
691 }
692
693 static int lov_layout_change(const struct lu_env *unused,
694                              struct lov_object *lov,
695                              const struct cl_object_conf *conf)
696 {
697         int result;
698         enum lov_layout_type llt = LLT_EMPTY;
699         union lov_layout_state *state = &lov->u;
700         const struct lov_layout_operations *old_ops;
701         const struct lov_layout_operations *new_ops;
702
703         void *cookie;
704         struct lu_env *env;
705         int refcheck;
706         ENTRY;
707
708         LASSERT(0 <= lov->lo_type && lov->lo_type < ARRAY_SIZE(lov_dispatch));
709
710         if (conf->u.coc_md != NULL)
711                 llt = lov_type(conf->u.coc_md->lsm);
712         LASSERT(0 <= llt && llt < ARRAY_SIZE(lov_dispatch));
713
714         cookie = cl_env_reenter();
715         env = cl_env_get(&refcheck);
716         if (IS_ERR(env)) {
717                 cl_env_reexit(cookie);
718                 RETURN(PTR_ERR(env));
719         }
720
721         CDEBUG(D_INODE, DFID" from %s to %s\n",
722                PFID(lu_object_fid(lov2lu(lov))),
723                llt2str(lov->lo_type), llt2str(llt));
724
725         old_ops = &lov_dispatch[lov->lo_type];
726         new_ops = &lov_dispatch[llt];
727
728         cl_object_prune(env, &lov->lo_cl);
729
730         result = old_ops->llo_delete(env, lov, &lov->u);
731         if (result == 0) {
732                 old_ops->llo_fini(env, lov, &lov->u);
733
734                 LASSERT(atomic_read(&lov->lo_active_ios) == 0);
735
736                 lov->lo_type = LLT_EMPTY;
737                 /* page bufsize fixup */
738                 cl_object_header(&lov->lo_cl)->coh_page_bufsize -=
739                         lov_page_slice_fixup(lov, NULL);
740
741                 result = new_ops->llo_init(env,
742                                         lu2lov_dev(lov->lo_cl.co_lu.lo_dev),
743                                         lov, conf, state);
744                 if (result == 0) {
745                         new_ops->llo_install(env, lov, state);
746                         lov->lo_type = llt;
747                 } else {
748                         new_ops->llo_delete(env, lov, state);
749                         new_ops->llo_fini(env, lov, state);
750                         /* this file becomes an EMPTY file. */
751                 }
752         }
753
754         cl_env_put(env, &refcheck);
755         cl_env_reexit(cookie);
756         RETURN(result);
757 }
758
759 /*****************************************************************************
760  *
761  * Lov object operations.
762  *
763  */
764 int lov_object_init(const struct lu_env *env, struct lu_object *obj,
765                     const struct lu_object_conf *conf)
766 {
767         struct lov_device            *dev   = lu2lov_dev(obj->lo_dev);
768         struct lov_object            *lov   = lu2lov(obj);
769         const struct cl_object_conf  *cconf = lu2cl_conf(conf);
770         union  lov_layout_state      *set   = &lov->u;
771         const struct lov_layout_operations *ops;
772         int result;
773
774         ENTRY;
775         init_rwsem(&lov->lo_type_guard);
776         atomic_set(&lov->lo_active_ios, 0);
777         init_waitqueue_head(&lov->lo_waitq);
778
779         cl_object_page_init(lu2cl(obj), sizeof(struct lov_page));
780
781         /* no locking is necessary, as object is being created */
782         lov->lo_type = lov_type(cconf->u.coc_md->lsm);
783         ops = &lov_dispatch[lov->lo_type];
784         result = ops->llo_init(env, dev, lov, cconf, set);
785         if (result == 0)
786                 ops->llo_install(env, lov, set);
787         RETURN(result);
788 }
789
790 static int lov_conf_set(const struct lu_env *env, struct cl_object *obj,
791                         const struct cl_object_conf *conf)
792 {
793         struct lov_stripe_md    *lsm = NULL;
794         struct lov_object       *lov = cl2lov(obj);
795         int                      result = 0;
796         ENTRY;
797
798         lov_conf_lock(lov);
799         if (conf->coc_opc == OBJECT_CONF_INVALIDATE) {
800                 lov->lo_layout_invalid = true;
801                 GOTO(out, result = 0);
802         }
803
804         if (conf->coc_opc == OBJECT_CONF_WAIT) {
805                 if (lov->lo_layout_invalid &&
806                     atomic_read(&lov->lo_active_ios) > 0) {
807                         lov_conf_unlock(lov);
808                         result = lov_layout_wait(env, lov);
809                         lov_conf_lock(lov);
810                 }
811                 GOTO(out, result);
812         }
813
814         LASSERT(conf->coc_opc == OBJECT_CONF_SET);
815
816         if (conf->u.coc_md != NULL)
817                 lsm = conf->u.coc_md->lsm;
818         if ((lsm == NULL && lov->lo_lsm == NULL) ||
819             ((lsm != NULL && lov->lo_lsm != NULL) &&
820              (lov->lo_lsm->lsm_layout_gen == lsm->lsm_layout_gen) &&
821              (lov->lo_lsm->lsm_pattern == lsm->lsm_pattern))) {
822                 /* same version of layout */
823                 lov->lo_layout_invalid = false;
824                 GOTO(out, result = 0);
825         }
826
827         /* will change layout - check if there still exists active IO. */
828         if (atomic_read(&lov->lo_active_ios) > 0) {
829                 lov->lo_layout_invalid = true;
830                 GOTO(out, result = -EBUSY);
831         }
832
833         lov->lo_layout_invalid = lov_layout_change(env, lov, conf);
834         EXIT;
835
836 out:
837         lov_conf_unlock(lov);
838         CDEBUG(D_INODE, DFID" lo_layout_invalid=%d\n",
839                PFID(lu_object_fid(lov2lu(lov))), lov->lo_layout_invalid);
840         RETURN(result);
841 }
842
843 static void lov_object_delete(const struct lu_env *env, struct lu_object *obj)
844 {
845         struct lov_object *lov = lu2lov(obj);
846
847         ENTRY;
848         LOV_2DISPATCH_VOID(lov, llo_delete, env, lov, &lov->u);
849         EXIT;
850 }
851
852 static void lov_object_free(const struct lu_env *env, struct lu_object *obj)
853 {
854         struct lov_object *lov = lu2lov(obj);
855
856         ENTRY;
857         LOV_2DISPATCH_VOID(lov, llo_fini, env, lov, &lov->u);
858         lu_object_fini(obj);
859         OBD_SLAB_FREE_PTR(lov, lov_object_kmem);
860         EXIT;
861 }
862
863 static int lov_object_print(const struct lu_env *env, void *cookie,
864                             lu_printer_t p, const struct lu_object *o)
865 {
866         return LOV_2DISPATCH_NOLOCK(lu2lov(o), llo_print, env, cookie, p, o);
867 }
868
869 int lov_page_init(const struct lu_env *env, struct cl_object *obj,
870                   struct cl_page *page, pgoff_t index)
871 {
872         return LOV_2DISPATCH_NOLOCK(cl2lov(obj), llo_page_init, env, obj, page,
873                                     index);
874 }
875
876 /**
877  * Implements cl_object_operations::clo_io_init() method for lov
878  * layer. Dispatches to the appropriate layout io initialization method.
879  */
880 int lov_io_init(const struct lu_env *env, struct cl_object *obj,
881                 struct cl_io *io)
882 {
883         CL_IO_SLICE_CLEAN(lov_env_io(env), lis_cl);
884         return LOV_2DISPATCH_MAYLOCK(cl2lov(obj), llo_io_init,
885                                      !io->ci_ignore_layout, env, obj, io);
886 }
887
888 /**
889  * An implementation of cl_object_operations::clo_attr_get() method for lov
890  * layer. For raid0 layout this collects and merges attributes of all
891  * sub-objects.
892  */
893 static int lov_attr_get(const struct lu_env *env, struct cl_object *obj,
894                         struct cl_attr *attr)
895 {
896         /* do not take lock, as this function is called under a
897          * spin-lock. Layout is protected from changing by ongoing IO. */
898         return LOV_2DISPATCH_NOLOCK(cl2lov(obj), llo_getattr, env, obj, attr);
899 }
900
901 static int lov_attr_set(const struct lu_env *env, struct cl_object *obj,
902                         const struct cl_attr *attr, unsigned valid)
903 {
904         /*
905          * No dispatch is required here, as no layout implements this.
906          */
907         return 0;
908 }
909
910 int lov_lock_init(const struct lu_env *env, struct cl_object *obj,
911                   struct cl_lock *lock, const struct cl_io *io)
912 {
913         /* No need to lock because we've taken one refcount of layout.  */
914         return LOV_2DISPATCH_NOLOCK(cl2lov(obj), llo_lock_init, env, obj, lock,
915                                     io);
916 }
917
918 static const struct cl_object_operations lov_ops = {
919         .coo_page_init = lov_page_init,
920         .coo_lock_init = lov_lock_init,
921         .coo_io_init   = lov_io_init,
922         .coo_attr_get  = lov_attr_get,
923         .coo_attr_set  = lov_attr_set,
924         .coo_conf_set  = lov_conf_set
925 };
926
927 static const struct lu_object_operations lov_lu_obj_ops = {
928         .loo_object_init      = lov_object_init,
929         .loo_object_delete    = lov_object_delete,
930         .loo_object_release   = NULL,
931         .loo_object_free      = lov_object_free,
932         .loo_object_print     = lov_object_print,
933         .loo_object_invariant = NULL
934 };
935
936 struct lu_object *lov_object_alloc(const struct lu_env *env,
937                                    const struct lu_object_header *unused,
938                                    struct lu_device *dev)
939 {
940         struct lov_object *lov;
941         struct lu_object  *obj;
942
943         ENTRY;
944         OBD_SLAB_ALLOC_PTR_GFP(lov, lov_object_kmem, GFP_NOFS);
945         if (lov != NULL) {
946                 obj = lov2lu(lov);
947                 lu_object_init(obj, NULL, dev);
948                 lov->lo_cl.co_ops = &lov_ops;
949                 lov->lo_type = -1; /* invalid, to catch uninitialized type */
950                 /*
951                  * object io operation vector (cl_object::co_iop) is installed
952                  * later in lov_object_init(), as different vectors are used
953                  * for object with different layouts.
954                  */
955                 obj->lo_ops = &lov_lu_obj_ops;
956         } else
957                 obj = NULL;
958         RETURN(obj);
959 }
960
961 struct lov_stripe_md *lov_lsm_addref(struct lov_object *lov)
962 {
963         struct lov_stripe_md *lsm = NULL;
964
965         lov_conf_freeze(lov);
966         if (lov->lo_lsm != NULL) {
967                 lsm = lsm_addref(lov->lo_lsm);
968                 CDEBUG(D_INODE, "lsm %p addref %d/%d by %p.\n",
969                         lsm, atomic_read(&lsm->lsm_refc),
970                         lov->lo_layout_invalid, current);
971         }
972         lov_conf_thaw(lov);
973         return lsm;
974 }
975
976 struct lov_stripe_md *lov_lsm_get(struct cl_object *clobj)
977 {
978         struct lu_object *luobj;
979         struct lov_stripe_md *lsm = NULL;
980
981         if (clobj == NULL)
982                 return NULL;
983
984         luobj = lu_object_locate(&cl_object_header(clobj)->coh_lu,
985                                  &lov_device_type);
986         if (luobj != NULL)
987                 lsm = lov_lsm_addref(lu2lov(luobj));
988         return lsm;
989 }
990 EXPORT_SYMBOL(lov_lsm_get);
991
992 void lov_lsm_put(struct cl_object *unused, struct lov_stripe_md *lsm)
993 {
994         if (lsm != NULL)
995                 lov_free_memmd(&lsm);
996 }
997 EXPORT_SYMBOL(lov_lsm_put);
998
999 int lov_read_and_clear_async_rc(struct cl_object *clob)
1000 {
1001         struct lu_object *luobj;
1002         int rc = 0;
1003         ENTRY;
1004
1005         luobj = lu_object_locate(&cl_object_header(clob)->coh_lu,
1006                                  &lov_device_type);
1007         if (luobj != NULL) {
1008                 struct lov_object *lov = lu2lov(luobj);
1009
1010                 lov_conf_freeze(lov);
1011                 switch (lov->lo_type) {
1012                 case LLT_RAID0: {
1013                         struct lov_stripe_md *lsm;
1014                         int i;
1015
1016                         lsm = lov->lo_lsm;
1017                         LASSERT(lsm != NULL);
1018                         for (i = 0; i < lsm->lsm_stripe_count; i++) {
1019                                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
1020
1021                                 if (lov_oinfo_is_dummy(loi))
1022                                         continue;
1023
1024                                 if (loi->loi_ar.ar_rc && !rc)
1025                                         rc = loi->loi_ar.ar_rc;
1026                                 loi->loi_ar.ar_rc = 0;
1027                         }
1028                 }
1029                 case LLT_RELEASED:
1030                 case LLT_EMPTY:
1031                         break;
1032                 default:
1033                         LBUG();
1034                 }
1035                 lov_conf_thaw(lov);
1036         }
1037         RETURN(rc);
1038 }
1039 EXPORT_SYMBOL(lov_read_and_clear_async_rc);
1040
1041 /** @} lov */