Whamcloud - gitweb
LU-9771 lov: pack lsm_flags from layout
[fs/lustre-release.git] / lustre / lov / lov_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, 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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef LOV_INTERNAL_H
34 #define LOV_INTERNAL_H
35
36 #include <obd_class.h>
37 #include <uapi/linux/lustre/lustre_user.h>
38
39 /* If we are unable to get the maximum object size from the OST in
40  * ocd_maxbytes using OBD_CONNECT_MAXBYTES, then we fall back to using
41  * the old maximum object size from ext3. */
42 #define LUSTRE_EXT3_STRIPE_MAXBYTES 0x1fffffff000ULL
43
44 struct lov_stripe_md_entry {
45         struct lu_extent        lsme_extent;
46         u32                     lsme_id;
47         u32                     lsme_magic;
48         u32                     lsme_flags;
49         u32                     lsme_pattern;
50         u32                     lsme_stripe_size;
51         u16                     lsme_stripe_count;
52         u16                     lsme_layout_gen;
53         char                    lsme_pool_name[LOV_MAXPOOLNAME + 1];
54         struct lov_oinfo       *lsme_oinfo[];
55 };
56
57 static inline bool lsme_is_dom(struct lov_stripe_md_entry *lsme)
58 {
59         return (lov_pattern(lsme->lsme_pattern) == LOV_PATTERN_MDT);
60 }
61
62 static inline void copy_lsm_entry(struct lov_stripe_md_entry *dst,
63                                   struct lov_stripe_md_entry *src)
64 {
65         unsigned i;
66
67         for (i = 0; i < src->lsme_stripe_count; i++)
68                 *dst->lsme_oinfo[i] = *src->lsme_oinfo[i];
69         memcpy(dst, src, offsetof(typeof(*src), lsme_oinfo));
70 }
71
72 struct lov_stripe_md {
73         atomic_t        lsm_refc;
74         spinlock_t      lsm_lock;
75         pid_t           lsm_lock_owner; /* debugging */
76
77         /* maximum possible file size, might change as OSTs status changes,
78          * e.g. disconnected, deactivated */
79         loff_t          lsm_maxbytes;
80         struct ost_id   lsm_oi;
81         u32             lsm_magic;
82         u32             lsm_layout_gen;
83         u16             lsm_flags;
84         bool            lsm_is_released;
85         u32             lsm_entry_count;
86         struct lov_stripe_md_entry *lsm_entries[];
87 };
88
89 static inline bool lsme_inited(const struct lov_stripe_md_entry *lsme)
90 {
91         return lsme->lsme_flags & LCME_FL_INIT;
92 }
93
94 static inline bool lsm_entry_inited(const struct lov_stripe_md *lsm, int index)
95 {
96         return lsme_inited(lsm->lsm_entries[index]);
97 }
98
99 static inline bool lsm_is_composite(__u32 magic)
100 {
101         return magic == LOV_MAGIC_COMP_V1;
102 }
103
104 static inline size_t lov_comp_md_size(const struct lov_stripe_md *lsm)
105 {
106         struct lov_stripe_md_entry *lsme;
107         size_t size;
108         int entry;
109
110         if (lsm->lsm_magic == LOV_MAGIC_V1 || lsm->lsm_magic == LOV_MAGIC_V3)
111                 return lov_mds_md_size(lsm->lsm_entries[0]->lsme_stripe_count,
112                                        lsm->lsm_entries[0]->lsme_magic);
113
114         LASSERT(lsm->lsm_magic == LOV_MAGIC_COMP_V1);
115
116         size = sizeof(struct lov_comp_md_v1);
117         for (entry = 0; entry < lsm->lsm_entry_count; entry++) {
118                 u16 stripe_count;
119
120                 lsme = lsm->lsm_entries[entry];
121
122                 if (lsme_inited(lsme))
123                         stripe_count = lsme->lsme_stripe_count;
124                 else
125                         stripe_count = 0;
126
127                 size += sizeof(*lsme);
128                 size += lov_mds_md_size(lsme->lsme_stripe_count,
129                                         lsme->lsme_magic);
130         }
131
132         return size;
133 }
134
135 static inline bool lsm_has_objects(struct lov_stripe_md *lsm)
136 {
137         return lsm != NULL && !lsm->lsm_is_released;
138 }
139
140 static inline unsigned int lov_comp_index(int entry, int stripe)
141 {
142         LASSERT(entry >= 0 && entry <= SHRT_MAX);
143         LASSERT(stripe >= 0 && stripe < USHRT_MAX);
144
145         return entry << 16 | stripe;
146 }
147
148 static inline int lov_comp_stripe(int index)
149 {
150         return index & 0xffff;
151 }
152
153 static inline int lov_comp_entry(int index)
154 {
155         return index >> 16;
156 }
157
158 struct lsm_operations {
159         struct lov_stripe_md *(*lsm_unpackmd)(struct lov_obd *, void *, size_t);
160 };
161
162 extern const struct lsm_operations lsm_v1_ops;
163 extern const struct lsm_operations lsm_v3_ops;
164 extern const struct lsm_operations lsm_comp_md_v1_ops;
165 static inline const struct lsm_operations *lsm_op_find(int magic)
166 {
167         switch (magic) {
168         case LOV_MAGIC_V1:
169                 return &lsm_v1_ops;
170         case LOV_MAGIC_V3:
171                 return &lsm_v3_ops;
172         case LOV_MAGIC_COMP_V1:
173                 return &lsm_comp_md_v1_ops;
174         default:
175                 CERROR("unrecognized lsm_magic %08x\n", magic);
176                 return NULL;
177         }
178 }
179
180 void lsm_free(struct lov_stripe_md *lsm);
181
182 /* lov_do_div64(a, b) returns a % b, and a = a / b.
183  * The 32-bit code is LOV-specific due to knowing about stripe limits in
184  * order to reduce the divisor to a 32-bit number.  If the divisor is
185  * already a 32-bit value the compiler handles this directly. */
186 #if BITS_PER_LONG == 64
187 # define lov_do_div64(n, base) ({                                       \
188         uint64_t __base = (base);                                       \
189         uint64_t __rem;                                                 \
190         __rem = ((uint64_t)(n)) % __base;                               \
191         (n) = ((uint64_t)(n)) / __base;                                 \
192         __rem;                                                          \
193 })
194 #elif BITS_PER_LONG == 32
195 # define lov_do_div64(n, base) ({                                       \
196         uint64_t __rem;                                                 \
197         if ((sizeof(base) > 4) && (((base) & 0xffffffff00000000ULL) != 0)) {  \
198                 int __remainder;                                              \
199                 LASSERTF(!((base) & (LOV_MIN_STRIPE_SIZE - 1)), "64 bit lov " \
200                          "division %llu / %llu\n", (n), (uint64_t)(base));    \
201                 __remainder = (n) & (LOV_MIN_STRIPE_SIZE - 1);          \
202                 (n) >>= LOV_MIN_STRIPE_BITS;                            \
203                 __rem = do_div(n, (base) >> LOV_MIN_STRIPE_BITS);       \
204                 __rem <<= LOV_MIN_STRIPE_BITS;                          \
205                 __rem += __remainder;                                   \
206         } else {                                                        \
207                 __rem = do_div(n, base);                                \
208         }                                                               \
209         __rem;                                                          \
210 })
211 #endif
212
213 #define pool_tgt_count(p) ((p)->pool_obds.op_count)
214 #define pool_tgt_array(p) ((p)->pool_obds.op_array)
215 #define pool_tgt_rw_sem(p) ((p)->pool_obds.op_rw_sem)
216
217 struct pool_desc {
218         char                     pool_name[LOV_MAXPOOLNAME + 1];
219         struct ost_pool          pool_obds;
220         atomic_t                 pool_refcount;
221         struct hlist_node        pool_hash;     /* access by poolname */
222         struct list_head         pool_list;     /* serial access */
223         struct proc_dir_entry   *pool_proc_entry;
224         struct obd_device       *pool_lobd;     /* owner */
225 };
226
227 struct lov_request {
228         struct obd_info          rq_oi;
229         struct lov_request_set  *rq_rqset;
230         struct list_head         rq_link;
231         int                      rq_idx;        /* index in lov->tgts array */
232 };
233
234 struct lov_request_set {
235         struct obd_info         *set_oi;
236         struct obd_device       *set_obd;
237         int                      set_count;
238         atomic_t                 set_completes;
239         atomic_t                 set_success;
240         struct list_head         set_list;
241 };
242
243 extern struct kmem_cache *lov_oinfo_slab;
244
245 extern struct lu_kmem_descr lov_caches[];
246
247 #define lov_uuid2str(lv, index) \
248         (char *)((lv)->lov_tgts[index]->ltd_uuid.uuid)
249
250 /* lov_merge.c */
251 int lov_merge_lvb_kms(struct lov_stripe_md *lsm, int index,
252                       struct ost_lvb *lvb, __u64 *kms_place);
253
254 /* lov_offset.c */
255 u64 lov_stripe_size(struct lov_stripe_md *lsm, int index,
256                     u64 ost_size, int stripeno);
257 int lov_stripe_offset(struct lov_stripe_md *lsm, int index, loff_t lov_off,
258                       int stripeno, loff_t *obd_off);
259 loff_t lov_size_to_stripe(struct lov_stripe_md *lsm, int index, u64 file_size,
260                           int stripeno);
261 int lov_stripe_intersects(struct lov_stripe_md *lsm, int index, int stripeno,
262                           struct lu_extent *ext, u64 *obd_start, u64 *obd_end);
263 int lov_stripe_number(struct lov_stripe_md *lsm, int index, loff_t lov_off);
264 pgoff_t lov_stripe_pgoff(struct lov_stripe_md *lsm, int index,
265                          pgoff_t stripe_index, int stripe);
266
267 /* lov_request.c */
268 int lov_prep_statfs_set(struct obd_device *obd, struct obd_info *oinfo,
269                         struct lov_request_set **reqset);
270 int lov_fini_statfs_set(struct lov_request_set *set);
271
272 /* lov_obd.c */
273 void lov_stripe_lock(struct lov_stripe_md *md);
274 void lov_stripe_unlock(struct lov_stripe_md *md);
275 void lov_fix_desc(struct lov_desc *desc);
276 void lov_fix_desc_stripe_size(__u64 *val);
277 void lov_fix_desc_stripe_count(__u32 *val);
278 void lov_fix_desc_pattern(__u32 *val);
279 void lov_fix_desc_qos_maxage(__u32 *val);
280 __u16 lov_get_stripe_count(struct lov_obd *lov, __u32 magic,
281                            __u16 stripe_count);
282 int lov_connect_obd(struct obd_device *obd, __u32 index, int activate,
283                     struct obd_connect_data *data);
284 int lov_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
285 int lov_process_config_base(struct obd_device *obd, struct lustre_cfg *lcfg,
286                             __u32 *indexp, int *genp);
287 int lov_del_target(struct obd_device *obd, __u32 index,
288                    struct obd_uuid *uuidp, int gen);
289
290 /* lov_pack.c */
291 ssize_t lov_lsm_pack(const struct lov_stripe_md *lsm, void *buf,
292                      size_t buf_size);
293 struct lov_stripe_md *lov_unpackmd(struct lov_obd *lov, void *buf,
294                                    size_t buf_size);
295 int lov_free_memmd(struct lov_stripe_md **lsmp);
296
297 void lov_dump_lmm_v1(int level, struct lov_mds_md_v1 *lmm);
298 void lov_dump_lmm_v3(int level, struct lov_mds_md_v3 *lmm);
299 void lov_dump_lmm_common(int level, void *lmmp);
300 void lov_dump_lmm(int level, void *lmm);
301
302 /* lov_ea.c */
303 void lsm_free_plain(struct lov_stripe_md *lsm);
304 void dump_lsm(unsigned int level, const struct lov_stripe_md *lsm);
305
306 /* lproc_lov.c */
307 extern struct file_operations lov_proc_target_fops;
308 #ifdef CONFIG_PROC_FS
309 extern struct lprocfs_vars lprocfs_lov_obd_vars[];
310 #endif
311
312 /* lov_cl.c */
313 extern struct lu_device_type lov_device_type;
314
315 #define LOV_MDC_TGT_MAX 256
316
317 /* pools */
318 extern struct cfs_hash_ops pool_hash_operations;
319 /* ost_pool methods */
320 int lov_ost_pool_init(struct ost_pool *op, unsigned int count);
321 int lov_ost_pool_extend(struct ost_pool *op, unsigned int min_count);
322 int lov_ost_pool_add(struct ost_pool *op, __u32 idx, unsigned int min_count);
323 int lov_ost_pool_remove(struct ost_pool *op, __u32 idx);
324 int lov_ost_pool_free(struct ost_pool *op);
325
326 /* high level pool methods */
327 int lov_pool_new(struct obd_device *obd, char *poolname);
328 int lov_pool_del(struct obd_device *obd, char *poolname);
329 int lov_pool_add(struct obd_device *obd, char *poolname, char *ostname);
330 int lov_pool_remove(struct obd_device *obd, char *poolname, char *ostname);
331 void lov_dump_pool(int level, struct pool_desc *pool);
332
333 static inline struct lov_stripe_md *lsm_addref(struct lov_stripe_md *lsm)
334 {
335         LASSERT(atomic_read(&lsm->lsm_refc) > 0);
336         atomic_inc(&lsm->lsm_refc);
337         return lsm;
338 }
339
340 static inline bool lov_oinfo_is_dummy(const struct lov_oinfo *loi)
341 {
342         if (unlikely(loi->loi_oi.oi.oi_id == 0 &&
343                      loi->loi_oi.oi.oi_seq == 0 &&
344                      loi->loi_ost_idx == 0 &&
345                      loi->loi_ost_gen == 0))
346                 return true;
347
348         return false;
349 }
350
351 static inline struct obd_device *lov2obd(const struct lov_obd *lov)
352 {
353         return container_of0(lov, struct obd_device, u.lov);
354 }
355
356 static inline void lov_lsm2layout(struct lov_stripe_md *lsm,
357                                   struct lov_stripe_md_entry *lsme,
358                                   struct ost_layout *ol)
359 {
360         ol->ol_stripe_size = lsme->lsme_stripe_size;
361         ol->ol_stripe_count = lsme->lsme_stripe_count;
362         if (lsm->lsm_magic == LOV_MAGIC_COMP_V1) {
363                 ol->ol_comp_start = lsme->lsme_extent.e_start;
364                 ol->ol_comp_end = lsme->lsme_extent.e_end;
365                 ol->ol_comp_id = lsme->lsme_id;
366         } else {
367                 ol->ol_comp_start = 0;
368                 ol->ol_comp_end = 0;
369                 ol->ol_comp_id = 0;
370         }
371 }
372 #endif