Whamcloud - gitweb
3060e7a79a0a8dceb57c99dd778ca8e2aa9794e8
[fs/lustre-release.git] / lustre / lod / lod_internal.h
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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright  2009 Sun Microsystems, Inc. All rights reserved
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/lod/lod_internal.h
32  *
33  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
34  * Author: Mikhail Pershin <mike.pershin@intel.com>
35  */
36
37 #ifndef _LOD_INTERNAL_H
38 #define _LOD_INTERNAL_H
39
40 #include <libcfs/libcfs.h>
41 #include <uapi/linux/lustre/lustre_cfg.h>
42 #include <obd.h>
43 #include <dt_object.h>
44
45 #define LOV_USES_ASSIGNED_STRIPE        0
46 #define LOV_USES_DEFAULT_STRIPE         1
47
48 /* Special values to remove LOV EA from disk */
49 #define LOVEA_DELETE_VALUES(size, count, offset, pool)                  \
50         ((size) == 0 && (count) == 0 &&                                 \
51          (offset) == (typeof(offset))(-1) && (pool) == NULL)
52
53 #define LMVEA_DELETE_VALUES(count, offset)                              \
54         ((count) == 0 && (offset) == (typeof(offset))(-1))
55
56 struct pool_desc {
57         char                     pool_name[LOV_MAXPOOLNAME + 1];
58         struct lu_tgt_pool       pool_obds;     /* pool members */
59         atomic_t                 pool_refcount;
60         struct lu_qos_rr         pool_rr;
61         struct rhash_head        pool_hash;     /* access by poolname */
62         struct list_head         pool_list;
63         struct rcu_head          pool_rcu;
64         struct proc_dir_entry   *pool_proc_entry;
65         struct obd_device       *pool_lobd;     /* owner */
66         time64_t                 pool_spill_expire;
67         struct proc_dir_entry   *pool_spill_proc_entry;
68         bool                     pool_spill_is_active;
69         unsigned int             pool_spill_threshold_pct;
70         char                     pool_spill_target[LOV_MAXPOOLNAME + 1];
71 };
72
73 int lod_pool_hash_init(struct rhashtable *tbl);
74 void lod_pool_hash_destroy(struct rhashtable *tbl);
75 extern const struct rhashtable_params pools_hash_params;
76
77 #define pool_tgt_count(p) ((p)->pool_obds.op_count)
78 #define pool_tgt_array(p)  ((p)->pool_obds.op_array)
79 #define pool_tgt_rw_sem(p) ((p)->pool_obds.op_rw_sem)
80
81 #define lod_tgt_desc    lu_tgt_desc
82 #define lod_tgt_descs   lu_tgt_descs
83
84 #define OST_TGT(lod, index)   LTD_TGT(&lod->lod_ost_descs, index)
85 #define MDT_TGT(lod, index)   LTD_TGT(&lod->lod_mdt_descs, index)
86
87 struct lod_avoid_guide {
88         /* ids of OSSs avoid guidance */
89         __u32                   *lag_oss_avoid_array;
90         /* number of filled array items */
91         unsigned int            lag_oaa_count;
92         /* number of allocated array items */
93         unsigned int            lag_oaa_size;
94         /* bitmap of OSTs avoid guidance */
95         unsigned long           *lag_ost_avoid_bitmap;
96         u32                     lag_ost_avoid_size;
97         /* how many OSTs are available for alloc */
98         __u32                   lag_ost_avail;
99 };
100
101 #define LOD_DOM_MIN_SIZE_KB (LOV_MIN_STRIPE_SIZE >> 10)
102 #define LOD_DOM_SFS_MAX_AGE 10
103
104 struct lod_device {
105         struct dt_device      lod_dt_dev;
106         struct obd_export    *lod_child_exp;
107         struct dt_device     *lod_child;
108         struct lprocfs_stats *lod_stats;
109         spinlock_t            lod_connects_lock;
110         int                   lod_connects;
111         unsigned int          lod_recovery_completed:1,
112                               lod_initialized:1,
113                               lod_lmv_failout:1,
114                               lod_child_got_update_log:1;
115
116         /* protect ld_active_tgt_count, ltd_active and lod_md_root */
117         spinlock_t           lod_lock;
118
119         /* Description of OST */
120         struct lod_tgt_descs  lod_ost_descs;
121         /* Description of MDT */
122         struct lod_tgt_descs  lod_mdt_descs;
123
124         /* Recovery thread for lod_child */
125         struct task_struct   *lod_child_recovery_task;
126
127         /* maximum EA size underlied OSD may have */
128         unsigned int          lod_osd_max_easize;
129         /* maximum size of MDT stripe for Data-on-MDT files. */
130         unsigned int          lod_dom_stripesize_max_kb;
131         /* current DOM default stripe size adjusted by threshold */
132         unsigned int          lod_dom_stripesize_cur_kb;
133         /* Threshold at which DOM default stripe will start decreasing */
134         __u64                 lod_dom_threshold_free_mb;
135
136         /* Local OSD statfs cache */
137         spinlock_t            lod_lsfs_lock;
138         time64_t              lod_lsfs_age;
139         __u64                 lod_lsfs_total_mb;
140         __u64                 lod_lsfs_free_mb;
141
142         /* OST pool data */
143         int                     lod_pool_count;
144         struct rhashtable       lod_pools_hash_body; /* used for key access */
145         struct list_head        lod_pool_list; /* used for sequential access */
146         struct proc_dir_entry  *lod_pool_proc_entry;
147         struct proc_dir_entry  *lod_spill_proc_entry;
148
149         enum lustre_sec_part   lod_sp_me;
150
151         struct proc_dir_entry *lod_symlink;
152         struct dentry          *lod_debugfs;
153
154         /* ROOT object, used to fetch FS default striping */
155         struct lod_object      *lod_md_root;
156 };
157
158 #define lod_ost_bitmap          lod_ost_descs.ltd_tgt_bitmap
159 #define lod_ost_count           lod_ost_descs.ltd_lov_desc.ld_tgt_count
160 #define lod_ost_active_count    lod_ost_descs.ltd_lov_desc.ld_active_tgt_count
161 #define lod_remote_mdt_count    lod_mdt_descs.ltd_lmv_desc.ld_tgt_count
162
163 struct lod_layout_component {
164         struct lu_extent          llc_extent;
165         __u32                     llc_id;
166         __u32                     llc_flags;
167         __u32                     llc_stripe_size;
168         __u32                     llc_pattern;
169         __u16                     llc_layout_gen;
170         __u16                     llc_stripe_offset;
171         __u16                     llc_stripe_count;
172         __u16                     llc_stripes_allocated;
173         __u64                     llc_timestamp; /* snapshot time */
174         char                     *llc_pool;
175         /* ost list specified with LOV_USER_MAGIC_SPECIFIC lum */
176         struct lu_tgt_pool        llc_ostlist;
177         struct dt_object        **llc_stripe;
178         __u32                    *llc_ost_indices;
179 };
180
181 struct lod_default_striping {
182         /* default LOV */
183         /* current layout component count */
184         __u16                           lds_def_comp_cnt;
185         __u16                           lds_def_mirror_cnt;
186         /* the largest comp count ever used */
187         __u32                           lds_def_comp_size_cnt;
188         struct lod_layout_component     *lds_def_comp_entries;
189         /* default LMV */
190         __u32                           lds_dir_def_stripe_count;
191         __u32                           lds_dir_def_stripe_offset;
192         __u32                           lds_dir_def_hash_type;
193         __u8                            lds_dir_def_max_inherit;
194         __u8                            lds_dir_def_max_inherit_rr;
195                                         /* default file striping flags (LOV) */
196         __u32                           lds_def_striping_set:1,
197                                         lds_def_striping_is_composite:1,
198                                         /* default dir striping flags (LMV) */
199                                         lds_dir_def_striping_set:1;
200 };
201
202 static inline __u8 lmv_inherit_next(__u8 inherit)
203 {
204         if (inherit == LMV_INHERIT_END || inherit == LMV_INHERIT_NONE)
205                 return LMV_INHERIT_NONE;
206
207         if (inherit == LMV_INHERIT_UNLIMITED || inherit > LMV_INHERIT_MAX)
208                 return inherit;
209
210         return inherit - 1;
211 }
212
213 static inline __u8 lmv_inherit_rr_next(__u8 inherit_rr)
214 {
215         if (inherit_rr == LMV_INHERIT_RR_NONE ||
216             inherit_rr == LMV_INHERIT_RR_UNLIMITED ||
217             inherit_rr > LMV_INHERIT_RR_MAX)
218                 return inherit_rr;
219
220         return inherit_rr - 1;
221 }
222
223 struct lod_mirror_entry {
224         __u16   lme_stale:1,
225                 lme_prefer:1;
226         /* mirror id */
227         __u16   lme_id;
228         /* preference */
229         __u16   lme_preference;
230         /* start,end index of this mirror in ldo_comp_entries */
231         __u16   lme_start;
232         __u16   lme_end;
233 };
234
235 struct lod_object {
236         /* common fields for both files and directories */
237         struct dt_object                ldo_obj;
238         struct mutex                    ldo_layout_mutex;
239         union {
240                 /* file stripe (LOV) */
241                 struct {
242                         __u32           ldo_layout_gen;
243                         /* Layout component count for a regular file.
244                          * It equals to 1 for non-composite layout. */
245                         __u16           ldo_comp_cnt;
246                         /* Layout mirror count for a PFLR file.
247                          * It's 0 for files with non-composite layout. */
248                         __u16           ldo_mirror_count;
249                         struct lod_mirror_entry *ldo_mirrors;
250                         __u32           ldo_is_composite:1,
251                                         ldo_flr_state:4,
252                                         ldo_comp_cached:1,
253                                         ldo_is_foreign:1;
254                 };
255                 /* directory stripe (LMV) */
256                 struct {
257                         /* Slave stripe count for striped directory. */
258                         __u16           ldo_dir_stripe_count;
259                         /* How many stripes allocated for a striped directory */
260                         __u16           ldo_dir_stripes_allocated;
261                         __u32           ldo_dir_stripe_offset;
262                         __u32           ldo_dir_hash_type;
263                         __u32           ldo_dir_migrate_offset;
264                         __u32           ldo_dir_migrate_hash;
265                         __u32           ldo_dir_layout_version;
266                         /* Is a slave stripe of striped directory? */
267                         __u32           ldo_dir_slave_stripe:1,
268                                         ldo_dir_striped:1,
269                                         /* the stripe has been loaded */
270                                         ldo_dir_stripe_loaded:1,
271                                         /* foreign directory */
272                                         ldo_dir_is_foreign;
273                         /*
274                          * This default LMV is parent default LMV, which will be
275                          * used in child creation, and it's not cached, so this
276                          * field is invalid after create, make sure it's used by
277                          * lod_dir_striping_create_internal() only.
278                          */
279                         struct lod_default_striping     *ldo_def_striping;
280                 };
281         };
282         union {
283                 struct {
284                         /* foreign/raw format LOV */
285                         char                            *ldo_foreign_lov;
286                         size_t                           ldo_foreign_lov_size;
287                 };
288                 struct {
289                         /* foreign/raw format LMV */
290                         char                            *ldo_foreign_lmv;
291                         size_t                           ldo_foreign_lmv_size;
292                 };
293                 struct {
294                         /* file stripe (LOV) */
295                         struct lod_layout_component     *ldo_comp_entries;
296                         /* slave stripes of striped directory (LMV) */
297                         struct dt_object                **ldo_stripe;
298                 };
299         };
300 };
301
302 #define ldo_dir_split_offset    ldo_dir_migrate_offset
303 #define ldo_dir_split_hash      ldo_dir_migrate_hash
304
305 #define lod_foreach_mirror_comp(comp, lo, mirror_idx)                      \
306 for (comp = &lo->ldo_comp_entries[lo->ldo_mirrors[mirror_idx].lme_start];  \
307      comp <= &lo->ldo_comp_entries[lo->ldo_mirrors[mirror_idx].lme_end];   \
308      comp++)
309
310 static inline bool lod_is_flr(const struct lod_object *lo)
311 {
312         if (!lo->ldo_is_composite)
313                 return false;
314
315         return (lo->ldo_flr_state & LCM_FL_FLR_MASK) != LCM_FL_NONE;
316 }
317
318 static inline bool lod_is_splitting(const struct lod_object *lo)
319 {
320         return lmv_hash_is_splitting(lo->ldo_dir_hash_type);
321 }
322
323 static inline bool lod_is_migrating(const struct lod_object *lo)
324 {
325         return lmv_hash_is_migrating(lo->ldo_dir_hash_type);
326 }
327
328 static inline bool lod_is_layout_changing(const struct lod_object *lo)
329 {
330         return lmv_hash_is_layout_changing(lo->ldo_dir_hash_type);
331 }
332
333 static inline int lod_set_pool(char **pool, const char *new_pool)
334 {
335         int len;
336
337         if (*pool == new_pool)
338                 return 0;
339
340         if (*pool != NULL) {
341                 len = strlen(*pool) + 1;
342                 OBD_FREE(*pool, len);
343                 *pool = NULL;
344         }
345         if (new_pool != NULL) {
346                 len = strlen(new_pool) + 1;
347                 OBD_ALLOC(*pool, len);
348                 if (*pool == NULL)
349                         return -ENOMEM;
350                 strlcpy(*pool, new_pool, len);
351         }
352         return 0;
353 }
354
355 static inline int lod_set_def_pool(struct lod_default_striping *lds,
356                                    int i, const char *new_pool)
357 {
358         return lod_set_pool(&lds->lds_def_comp_entries[i].llc_pool, new_pool);
359 }
360
361 static inline int lod_obj_set_pool(struct lod_object *lo, int i,
362                                    const char *new_pool)
363 {
364         return lod_set_pool(&lo->ldo_comp_entries[i].llc_pool, new_pool);
365 }
366
367 /**
368  * Create new layout generation.
369  *
370  * The only requirement for layout generation is that it changes when
371  * the layout is modified, so a circular counter is sufficient for the
372  * low rate of layout modifications.
373  *
374  * Layout generation is also used to generate unique component ID.
375  * To detect generation overflow, we preserve the highest bit of the
376  * generation when it wrapped.
377  */
378 static inline void lod_obj_inc_layout_gen(struct lod_object *lo)
379 {
380         __u32 preserve = lo->ldo_layout_gen & ~LCME_ID_MASK;
381         lo->ldo_layout_gen++;
382         lo->ldo_layout_gen |= preserve;
383         /* Zero is not a valid generation */
384         if (unlikely((lo->ldo_layout_gen & LCME_ID_MASK) == 0))
385                 lo->ldo_layout_gen++;
386 }
387
388 struct lod_it {
389         struct dt_object        *lit_obj; /* object from the layer below */
390         /* stripe offset of iteration */
391         __u32                   lit_stripe_index;
392         __u32                   lit_attr;
393         struct dt_it            *lit_it;  /* iterator from the layer below */
394 };
395
396 struct lod_thread_info {
397         /* per-thread buffer for LOV EA, may be vmalloc'd */
398         void                           *lti_ea_store;
399         __u32                           lti_ea_store_size;
400         /* per-thread buffer for LMV EA */
401         struct lu_buf                   lti_buf;
402         struct ost_id                   lti_ostid;
403         struct lu_fid                   lti_fid;
404         struct obd_statfs               lti_osfs;
405         struct lu_attr                  lti_attr;
406         struct lod_it                   lti_it;
407         struct ldlm_res_id              lti_res_id;
408         /* used to hold lu_dirent, sizeof(struct lu_dirent) + NAME_MAX */
409         char                            lti_key[sizeof(struct lu_dirent) +
410                                                 NAME_MAX];
411         struct dt_object_format         lti_format;
412         struct lu_name                  lti_name;
413         struct lu_buf                   lti_linkea_buf;
414         struct dt_insert_rec            lti_dt_rec;
415         struct llog_catid               lti_cid;
416         struct llog_cookie              lti_cookie;
417         struct lustre_cfg               lti_lustre_cfg;
418         /* used to store parent default striping in create */
419         struct lod_default_striping     lti_def_striping;
420         struct filter_fid               lti_ff;
421         __u32                           *lti_comp_idx;
422         size_t                          lti_comp_size;
423         size_t                          lti_count;
424         struct lu_attr                  lti_layout_attr;
425         /* object allocation avoid guide info */
426         struct lod_avoid_guide          lti_avoid;
427         union lmv_mds_md                lti_lmv;
428         struct dt_allocation_hint       lti_ah;
429 };
430
431 extern const struct lu_device_operations lod_lu_ops;
432
433 static inline int lu_device_is_lod(struct lu_device *d)
434 {
435         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &lod_lu_ops);
436 }
437
438 static inline struct lod_device* lu2lod_dev(struct lu_device *d)
439 {
440         LASSERT(lu_device_is_lod(d));
441         return container_of_safe(d, struct lod_device, lod_dt_dev.dd_lu_dev);
442 }
443
444 static inline struct lu_device *lod2lu_dev(struct lod_device *d)
445 {
446         return &d->lod_dt_dev.dd_lu_dev;
447 }
448
449 static inline struct obd_device *lod2obd(struct lod_device *d)
450 {
451         return d->lod_dt_dev.dd_lu_dev.ld_obd;
452 }
453
454 static inline struct lod_device *dt2lod_dev(struct dt_device *d)
455 {
456         LASSERT(lu_device_is_lod(&d->dd_lu_dev));
457         return container_of(d, struct lod_device, lod_dt_dev);
458 }
459
460 static inline struct lod_object *lu2lod_obj(struct lu_object *o)
461 {
462         LASSERT(ergo(o != NULL, lu_device_is_lod(o->lo_dev)));
463         return container_of_safe(o, struct lod_object, ldo_obj.do_lu);
464 }
465
466 static inline struct lu_object *lod2lu_obj(struct lod_object *obj)
467 {
468         return &obj->ldo_obj.do_lu;
469 }
470
471 static inline const struct lu_fid *lod_object_fid(struct lod_object *obj)
472 {
473         return lu_object_fid(lod2lu_obj(obj));
474 }
475
476 static inline struct lod_object *lod_obj(const struct lu_object *o)
477 {
478         LASSERT(lu_device_is_lod(o->lo_dev));
479         return container_of(o, struct lod_object, ldo_obj.do_lu);
480 }
481
482 static inline struct lod_object *lod_dt_obj(const struct dt_object *d)
483 {
484         return lod_obj(&d->do_lu);
485 }
486
487 static inline struct dt_object* lod_object_child(struct lod_object *o)
488 {
489         return container_of(lu_object_next(lod2lu_obj(o)),
490                             struct dt_object, do_lu);
491 }
492
493 static inline bool lod_obj_is_striped(struct dt_object *dt)
494 {
495         struct lod_object *lo = lod_dt_obj(dt);
496         int i;
497         bool rc = false;
498
499         if (!dt_object_exists(dt_object_child(dt)))
500                 return false;
501
502         mutex_lock(&lo->ldo_layout_mutex);
503
504         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
505                 rc = lo->ldo_dir_stripe_count != 0;
506         } else if (lo->ldo_is_foreign) {
507                 rc = false;
508         } else {
509                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
510                         if (lo->ldo_comp_entries[i].llc_stripe == NULL)
511                                 continue;
512                         LASSERT(lo->ldo_comp_entries[i].llc_stripe_count > 0);
513                         rc = true;
514                         break;
515                 }
516         }
517
518         mutex_unlock(&lo->ldo_layout_mutex);
519         return rc;
520 }
521
522 extern struct lu_context_key lod_thread_key;
523
524 static inline struct lod_thread_info *lod_env_info(const struct lu_env *env)
525 {
526         struct lod_thread_info *info;
527         info = lu_context_key_get(&env->le_ctx, &lod_thread_key);
528         LASSERT(info);
529         return info;
530 }
531
532 static inline struct lu_name *
533 lod_name_get(const struct lu_env *env, const void *area, int len)
534 {
535         struct lu_name *lname;
536
537         lname = &lod_env_info(env)->lti_name;
538         lname->ln_name = area;
539         lname->ln_namelen = len;
540         return lname;
541 }
542
543 static inline struct lod_default_striping *
544 lod_lds_buf_get(const struct lu_env *env)
545 {
546         struct lod_thread_info *info = lod_env_info(env);
547
548         info->lti_def_striping.lds_def_striping_set = 0;
549         info->lti_def_striping.lds_dir_def_striping_set = 0;
550         return &info->lti_def_striping;
551 }
552
553 static inline void lod_layout_get_pool(struct lod_layout_component *entries,
554                                        int count, char *pool, int len)
555 {
556         int i;
557
558         for (i = 0; i < count; i++) {
559                 if (entries[i].llc_pool != NULL) {
560                         strlcpy(pool, entries[i].llc_pool, len);
561                         break;
562                 }
563         }
564 }
565
566 #define lod_foreach_mdt(lod, mdt) ltd_foreach_tgt(&(lod)->lod_mdt_descs, mdt)
567 #define lod_foreach_ost(lod, ost) ltd_foreach_tgt(&(lod)->lod_ost_descs, ost)
568
569 /* lod_dev.c */
570 extern struct kmem_cache *lod_object_kmem;
571 int lod_fld_lookup(const struct lu_env *env, struct lod_device *lod,
572                    const struct lu_fid *fid, __u32 *tgt, int *flags);
573 int lod_sub_init_llog(const struct lu_env *env, struct lod_device *lod,
574                       struct dt_device *dt);
575 void lod_sub_fini_llog(const struct lu_env *env,
576                        struct dt_device *dt, struct task_struct **taskp);
577 int lodname2mdt_index(char *lodname, __u32 *mdt_index);
578 extern void target_recovery_fini(struct obd_device *obd);
579
580 /* lod_lov.c */
581 void lod_getref(struct lod_tgt_descs *ltd);
582 void lod_putref(struct lod_device *lod, struct lod_tgt_descs *ltd);
583 int lod_add_device(const struct lu_env *env, struct lod_device *lod,
584                    char *osp, unsigned index, unsigned gen, int mdt_index,
585                    char *type, int active);
586 int lod_del_device(const struct lu_env *env, struct lod_device *lod,
587                    struct lod_tgt_descs *ltd, char *osp, unsigned int idx,
588                    unsigned int gen);
589 int validate_lod_and_idx(struct lod_device *lod, __u32 idx);
590 int lod_fini_tgt(const struct lu_env *env, struct lod_device *lod,
591                  struct lod_tgt_descs *ltd);
592 int lod_striping_load(const struct lu_env *env, struct lod_object *lo);
593 int lod_striping_reload(const struct lu_env *env, struct lod_object *lo,
594                         const struct lu_buf *buf);
595 void lod_dom_stripesize_recalc(struct lod_device *d);
596
597 int lod_get_ea(const struct lu_env *env, struct lod_object *lo,
598                const char *name);
599 static inline int
600 lod_get_lov_ea(const struct lu_env *env, struct lod_object *lo)
601 {
602         return lod_get_ea(env, lo, XATTR_NAME_LOV);
603 }
604
605 static inline int
606 lod_get_lmv_ea(const struct lu_env *env, struct lod_object *lo)
607 {
608         return lod_get_ea(env, lo, XATTR_NAME_LMV);
609 }
610
611 static inline int
612 lod_get_default_lmv_ea(const struct lu_env *env, struct lod_object *lo)
613 {
614         return lod_get_ea(env, lo, XATTR_NAME_DEFAULT_LMV);
615 }
616
617 static inline void
618 lod_comp_set_init(struct lod_layout_component *entry)
619 {
620         entry->llc_flags |= LCME_FL_INIT;
621 }
622
623 static inline void
624 lod_comp_unset_init(struct lod_layout_component *entry)
625 {
626         entry->llc_flags &= ~LCME_FL_INIT;
627 }
628
629 static inline bool
630 lod_comp_inited(const struct lod_layout_component *entry)
631 {
632         return entry->llc_flags & LCME_FL_INIT;
633 }
634
635 /**
636  * For a PFL file, some of its component could be un-instantiated, so
637  * that their lov_ost_data_v1 array is not needed, we'd use this function
638  * to reduce the LOVEA buffer size.
639  *
640  * Note: if llc_ostlist contains value, we'd need lov_ost_data_v1 array to
641  * save the specified OST index list.
642  */
643 static inline void
644 lod_comp_shrink_stripe_count(struct lod_layout_component *lod_comp,
645                              __u16 *stripe_count)
646 {
647         /**
648          * Need one lov_ost_data_v1 to store invalid ost_idx, please refer to
649          * lod_parse_striping()
650          */
651         if (!lod_comp_inited(lod_comp) && lod_comp->llc_ostlist.op_count == 0)
652                 *stripe_count = 1;
653 }
654
655 void lod_fix_desc(struct lov_desc *desc);
656 void lod_fix_desc_qos_maxage(__u32 *val);
657 void lod_fix_desc_pattern(__u32 *val);
658 void lod_fix_desc_stripe_count(__u32 *val);
659 void lod_fix_desc_stripe_size(__u64 *val);
660 void lod_fix_lmv_desc_pattern(__u32 *val);
661 int lod_pools_init(struct lod_device *m, struct lustre_cfg *cfg);
662 int lod_pools_fini(struct lod_device *m);
663 int lod_parse_striping(const struct lu_env *env, struct lod_object *mo,
664                        const struct lu_buf *buf);
665 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
666                            const struct lu_buf *buf);
667 int lod_initialize_objects(const struct lu_env *env, struct lod_object *mo,
668                            struct lov_ost_data_v1 *objs, int index);
669 int lod_verify_striping(const struct lu_env *env, struct lod_device *d,
670                         struct lod_object *lo, const struct lu_buf *buf,
671                         bool is_from_disk);
672 int lod_generate_lovea(const struct lu_env *env, struct lod_object *lo,
673                        struct lov_mds_md *lmm, int *lmm_size, bool is_dir);
674 int lod_ea_store_resize(struct lod_thread_info *info, size_t size);
675 int lod_def_striping_comp_resize(struct lod_default_striping *lds, __u16 count);
676 void lod_free_def_comp_entries(struct lod_default_striping *lds);
677 void lod_free_comp_entries(struct lod_object *lo);
678 int lod_alloc_comp_entries(struct lod_object *lo, int mirror_cnt, int comp_cnt);
679 int lod_fill_mirrors(struct lod_object *lo);
680
681 /* lod_pool.c */
682 struct pool_desc *lod_find_pool(struct lod_device *lod, char *poolname);
683 void lod_pool_putref(struct pool_desc *pool);
684 int lod_pool_del(struct obd_device *obd, char *poolname);
685 int lod_check_index_in_pool(__u32 idx, struct pool_desc *pool);
686 int lod_pool_new(struct obd_device *obd, char *poolname);
687 int lod_pool_add(struct obd_device *obd, char *poolname, char *ostname);
688 int lod_pool_remove(struct obd_device *obd, char *poolname, char *ostname);
689
690 struct lod_obj_stripe_cb_data;
691 typedef int (*lod_obj_stripe_cb_t)(const struct lu_env *env,
692                                    struct lod_object *lo, struct dt_object *dt,
693                                    struct thandle *th,
694                                    int comp_idx, int stripe_idx,
695                                    struct lod_obj_stripe_cb_data *data);
696 typedef bool (*lod_obj_comp_skip_cb_t)(const struct lu_env *env,
697                                         struct lod_object *lo, int comp_idx,
698                                         struct lod_obj_stripe_cb_data *data);
699 typedef int (*lod_obj_comp_cb_t)(const struct lu_env *env,
700                                 struct lod_object *lo, int comp_idx,
701                                 struct lod_obj_stripe_cb_data *data);
702 struct lod_obj_stripe_cb_data {
703         union {
704                 const struct lu_attr    *locd_attr;
705                 int                     locd_ost_index;
706                 const struct lu_buf     *locd_buf;
707         };
708         lod_obj_stripe_cb_t             locd_stripe_cb;
709         lod_obj_comp_skip_cb_t          locd_comp_skip_cb;
710         lod_obj_comp_cb_t               locd_comp_cb;
711         bool                            locd_declare;
712 };
713
714 /* lod_qos.c */
715 int lod_mdt_alloc_qos(const struct lu_env *env, struct lod_object *lo,
716                       struct dt_object **stripes, u32 stripe_idx,
717                       u32 stripe_count);
718 int lod_mdt_alloc_rr(const struct lu_env *env, struct lod_object *lo,
719                      struct dt_object **stripes, u32 stripe_idx,
720                      u32 stripe_count);
721 int lod_prepare_create(const struct lu_env *env, struct lod_object *lo,
722                        struct lu_attr *attr, const struct lu_buf *buf,
723                        struct thandle *th);
724 int lod_use_defined_striping(const struct lu_env *, struct lod_object *,
725                              const struct lu_buf *);
726 int lod_qos_parse_config(const struct lu_env *env, struct lod_object *lo,
727                          const struct lu_buf *buf);
728 int lod_qos_prep_create(const struct lu_env *env, struct lod_object *lo,
729                         struct lu_attr *attr, struct thandle *th,
730                         int comp_idx, __u64 reserve);
731 __u16 lod_comp_entry_stripe_count(struct lod_object *lo,
732                                   int comp_idx, bool is_dir);
733 __u16 lod_get_stripe_count(struct lod_device *lod, struct lod_object *lo,
734                            int comp_idx, __u16 stripe_count, bool overstriping);
735 void lod_qos_statfs_update(const struct lu_env *env, struct lod_device *lod,
736                            struct lu_tgt_descs *ltd);
737
738 /* lproc_lod.c */
739 int lod_procfs_init(struct lod_device *lod);
740 void lod_procfs_fini(struct lod_device *lod);
741
742 /* lod_object.c */
743 extern const struct dt_object_operations lod_obj_ops;
744 extern const struct lu_object_operations lod_lu_obj_ops;
745
746 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
747                         struct lu_buf *buf, bool resize);
748 int lod_declare_striped_create(const struct lu_env *env, struct dt_object *dt,
749                                struct lu_attr *attr,
750                                const struct lu_buf *lovea, struct thandle *th);
751 int lod_striped_create(const struct lu_env *env, struct dt_object *dt,
752                         struct lu_attr *attr, struct dt_object_format *dof,
753                         struct thandle *th);
754 int lod_alloc_foreign_lov(struct lod_object *lo, size_t size);
755 void lod_free_foreign_lov(struct lod_object *lo);
756 void lod_striping_free_nolock(const struct lu_env *env, struct lod_object *lo);
757 void lod_striping_free(const struct lu_env *env, struct lod_object *lo);
758
759 int lod_obj_for_each_stripe(const struct lu_env *env, struct lod_object *lo,
760                             struct thandle *th,
761                             struct lod_obj_stripe_cb_data *data);
762 int lod_comp_copy_ost_lists(struct lod_layout_component *lod_comp,
763                             struct lov_user_md_v3 *v3);
764 void lod_adjust_stripe_size(struct lod_layout_component *comp,
765                             __u32 def_stripe_size);
766
767 /* lod_sub_object.c */
768 struct thandle *lod_sub_get_thandle(const struct lu_env *env,
769                                     struct thandle *th,
770                                     const struct dt_object *sub_obj,
771                                     bool *record_update);
772 int lod_sub_declare_create(const struct lu_env *env, struct dt_object *dt,
773                            struct lu_attr *attr,
774                            struct dt_allocation_hint *hint,
775                            struct dt_object_format *dof, struct thandle *th);
776 int lod_sub_create(const struct lu_env *env, struct dt_object *dt,
777                    struct lu_attr *attr, struct dt_allocation_hint *hint,
778                    struct dt_object_format *dof, struct thandle *th);
779 int lod_sub_declare_ref_add(const struct lu_env *env, struct dt_object *dt,
780                             struct thandle *th);
781 int lod_sub_ref_add(const struct lu_env *env, struct dt_object *dt,
782                     struct thandle *th);
783 int lod_sub_declare_ref_del(const struct lu_env *env, struct dt_object *dt,
784                             struct thandle *th);
785 int lod_sub_ref_del(const struct lu_env *env, struct dt_object *dt,
786                     struct thandle *th);
787 int lod_sub_declare_destroy(const struct lu_env *env, struct dt_object *dt,
788                             struct thandle *th);
789 int lod_sub_destroy(const struct lu_env *env, struct dt_object *dt,
790                     struct thandle *th);
791 int lod_sub_declare_insert(const struct lu_env *env, struct dt_object *dt,
792                            const struct dt_rec *rec, const struct dt_key *key,
793                            struct thandle *th);
794 int lod_sub_insert(const struct lu_env *env, struct dt_object *dt,
795                    const struct dt_rec *rec, const struct dt_key *key,
796                    struct thandle *th);
797 int lod_sub_declare_delete(const struct lu_env *env, struct dt_object *dt,
798                            const struct dt_key *key, struct thandle *th);
799 int lod_sub_delete(const struct lu_env *env, struct dt_object *dt,
800                    const struct dt_key *name, struct thandle *th);
801 int lod_sub_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
802                               const struct lu_buf *buf, const char *name,
803                               int fl, struct thandle *th);
804 int lod_sub_xattr_set(const struct lu_env *env, struct dt_object *dt,
805                       const struct lu_buf *buf, const char *name, int fl,
806                       struct thandle *th);
807 int lod_sub_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
808                              const struct lu_attr *attr, struct thandle *th);
809 int lod_sub_attr_set(const struct lu_env *env, struct dt_object *dt,
810                      const struct lu_attr *attr, struct thandle *th);
811 int lod_sub_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
812                               const char *name, struct thandle *th);
813 int lod_sub_xattr_del(const struct lu_env *env, struct dt_object *dt,
814                       const char *name, struct thandle *th);
815 int lod_sub_declare_write(const struct lu_env *env, struct dt_object *dt,
816                           const struct lu_buf *buf, loff_t pos,
817                           struct thandle *th);
818 ssize_t lod_sub_write(const struct lu_env *env, struct dt_object *dt,
819                       const struct lu_buf *buf, loff_t *pos,
820                       struct thandle *th);
821 int lod_sub_declare_punch(const struct lu_env *env, struct dt_object *dt,
822                           __u64 start, __u64 end, struct thandle *th);
823 int lod_sub_punch(const struct lu_env *env, struct dt_object *dt,
824                   __u64 start, __u64 end, struct thandle *th);
825
826 int lod_sub_prep_llog(const struct lu_env *env, struct lod_device *lod,
827                       struct dt_device *dt, int index);
828 void lod_check_and_spill_pool(const struct lu_env *env, struct lod_device *lod,
829                               char **poolname);
830 void lod_spill_target_refresh(const struct lu_env *env, struct lod_device *lod,
831                               struct pool_desc *pool);
832 extern struct lprocfs_vars lprocfs_lod_spill_vars[];
833 #endif