Whamcloud - gitweb
LU-8851 nodemap: add uid/gid only flags to control mapping
[fs/lustre-release.git] / lustre / lov / lov_cl_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) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 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  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Internal interfaces of LOV layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  *   Author: Jinshan Xiong <jinshan.xiong@intel.com>
40  */
41
42 #ifndef LOV_CL_INTERNAL_H
43 #define LOV_CL_INTERNAL_H
44
45 #include <libcfs/libcfs.h>
46 #include <obd.h>
47 #include <cl_object.h>
48 #include "lov_internal.h"
49
50 /** \defgroup lov lov
51  * Logical object volume layer. This layer implements data striping (raid0).
52  *
53  * At the lov layer top-entity (object, page, lock, io) is connected to one or
54  * more sub-entities: top-object, representing a file is connected to a set of
55  * sub-objects, each representing a stripe, file-level top-lock is connected
56  * to a set of per-stripe sub-locks, top-page is connected to a (single)
57  * sub-page, and a top-level IO is connected to a set of (potentially
58  * concurrent) sub-IO's.
59  *
60  * Sub-object, sub-page, and sub-io have well-defined top-object and top-page
61  * respectively, while a single sub-lock can be part of multiple top-locks.
62  *
63  * Reference counting models are different for different types of entities:
64  *
65  *     - top-object keeps a reference to its sub-objects, and destroys them
66  *       when it is destroyed.
67  *
68  *     - top-page keeps a reference to its sub-page, and destroys it when it
69  *       is destroyed.
70  *
71  *     - IO's are not reference counted.
72  *
73  * To implement a connection between top and sub entities, lov layer is split
74  * into two pieces: lov ("upper half"), and lovsub ("bottom half"), both
75  * implementing full set of cl-interfaces. For example, top-object has vvp and
76  * lov layers, and it's sub-object has lovsub and osc layers. lovsub layer is
77  * used to track child-parent relationship.
78  *
79  * @{
80  */
81
82 struct lovsub_device;
83 struct lovsub_object;
84 struct lovsub_lock;
85
86 enum lov_device_flags {
87         LOV_DEV_INITIALIZED = 1 << 0
88 };
89
90 /*
91  * Upper half.
92  */
93
94 struct lov_device {
95         /*
96          * XXX Locking of lov-private data is missing.
97          */
98         struct cl_device          ld_cl;
99         struct lov_obd           *ld_lov;
100         /** size of lov_device::ld_target[] array */
101         __u32                     ld_target_nr;
102         struct lovsub_device    **ld_target;
103         __u32                     ld_flags;
104 };
105
106 /**
107  * Layout type.
108  */
109 enum lov_layout_type {
110         LLT_EMPTY,      /** empty file without body (mknod + truncate) */
111         LLT_RELEASED,   /** file with no objects (data in HSM) */
112         LLT_COMP,       /** support composite layout */
113         LLT_NR
114 };
115
116 static inline char *llt2str(enum lov_layout_type llt)
117 {
118         switch (llt) {
119         case LLT_EMPTY:
120                 return "EMPTY";
121         case LLT_RELEASED:
122                 return "RELEASED";
123         case LLT_COMP:
124                 return "COMPOSITE";
125         case LLT_NR:
126                 LBUG();
127         }
128         LBUG();
129         return "";
130 }
131
132 struct lov_layout_raid0 {
133         unsigned               lo_nr;
134         /**
135          * When this is true, lov_object::lo_attr contains
136          * valid up to date attributes for a top-level
137          * object. This field is reset to 0 when attributes of
138          * any sub-object change.
139          */
140         int                    lo_attr_valid;
141         /**
142          * Array of sub-objects. Allocated when top-object is
143          * created (lov_init_raid0()).
144          *
145          * Top-object is a strict master of its sub-objects:
146          * it is created before them, and outlives its
147          * children (this later is necessary so that basic
148          * functions like cl_object_top() always
149          * work). Top-object keeps a reference on every
150          * sub-object.
151          *
152          * When top-object is destroyed (lov_delete_raid0())
153          * it releases its reference to a sub-object and waits
154          * until the latter is finally destroyed.
155          */
156         struct lovsub_object **lo_sub;
157         /**
158          * protect lo_sub
159          */
160         spinlock_t              lo_sub_lock;
161         /**
162          * Cached object attribute, built from sub-object
163          * attributes.
164          */
165         struct cl_attr         lo_attr;
166 };
167
168 /**
169  * lov-specific file state.
170  *
171  * lov object has particular layout type, determining how top-object is built
172  * on top of sub-objects. Layout type can change dynamically. When this
173  * happens, lov_object::lo_type_guard semaphore is taken in exclusive mode,
174  * all state pertaining to the old layout type is destroyed, and new state is
175  * constructed. All object methods take said semaphore in the shared mode,
176  * providing serialization against transition between layout types.
177  *
178  * To avoid multiple `if' or `switch' statements, selecting behavior for the
179  * current layout type, object methods perform double-dispatch, invoking
180  * function corresponding to the current layout type.
181  */
182 struct lov_object {
183         struct cl_object       lo_cl;
184         /**
185          * Serializes object operations with transitions between layout types.
186          *
187          * This semaphore is taken in shared mode by all object methods, and
188          * is taken in exclusive mode when object type is changed.
189          *
190          * \see lov_object::lo_type
191          */
192         struct rw_semaphore     lo_type_guard;
193         /**
194          * Type of an object. Protected by lov_object::lo_type_guard.
195          */
196         enum lov_layout_type    lo_type;
197         /**
198          * True if layout is invalid. This bit is cleared when layout lock
199          * is lost.
200          */
201         bool                    lo_layout_invalid;
202         /**
203          * How many IOs are on going on this object. Layout can be changed
204          * only if there is no active IO.
205          */
206         atomic_t               lo_active_ios;
207         /**
208          * Waitq - wait for no one else is using lo_lsm
209          */
210         wait_queue_head_t       lo_waitq;
211         /**
212          * Layout metadata. NULL if empty layout.
213          */
214         struct lov_stripe_md  *lo_lsm;
215
216         union lov_layout_state {
217                 struct lov_layout_state_empty {
218                 } empty;
219                 struct lov_layout_state_released {
220                 } released;
221                 struct lov_layout_composite {
222                         /**
223                          * Current valid entry count of lo_entries.
224                          */
225                         unsigned int lo_entry_count;
226                         struct lov_layout_entry {
227                                 struct lu_extent lle_extent;
228                                 struct lov_layout_raid0 lle_raid0;
229                         } *lo_entries;
230                 } composite;
231         } u;
232         /**
233          * Thread that acquired lov_object::lo_type_guard in an exclusive
234          * mode.
235          */
236         struct task_struct            *lo_owner;
237 };
238
239 #define lov_foreach_layout_entry(lov, entry)                    \
240         for (entry = &lov->u.composite.lo_entries[0];           \
241              entry < &lov->u.composite.lo_entries               \
242                         [lov->u.composite.lo_entry_count];      \
243              entry++)
244
245 /**
246  * State lov_lock keeps for each sub-lock.
247  */
248 struct lov_lock_sub {
249         /** sub-lock itself */
250         struct cl_lock          sub_lock;
251         /** Set if the sublock has ever been enqueued, meaning it may
252          * hold resources of underlying layers */
253         unsigned int            sub_is_enqueued:1,
254                                 sub_initialized:1;
255         int                     sub_index;
256 };
257
258 /**
259  * lov-specific lock state.
260  */
261 struct lov_lock {
262         struct cl_lock_slice    lls_cl;
263         /** Number of sub-locks in this lock */
264         int                     lls_nr;
265         /** sublock array */
266         struct lov_lock_sub     lls_sub[0];
267 };
268
269 struct lov_page {
270         struct cl_page_slice    lps_cl;
271         /** layout_entry + stripe index, composed using lov_comp_index() */
272         unsigned int            lps_index;
273 };
274
275 /*
276  * Bottom half.
277  */
278
279 struct lovsub_device {
280         struct cl_device   acid_cl;
281         struct cl_device  *acid_next;
282 };
283
284 struct lovsub_object {
285         struct cl_object_header lso_header;
286         struct cl_object        lso_cl;
287         struct lov_object      *lso_super;
288         int                     lso_index;
289 };
290
291 /**
292  * Lock state at lovsub layer.
293  */
294 struct lovsub_lock {
295         struct cl_lock_slice  lss_cl;
296 };
297
298 /**
299  * Describe the environment settings for sublocks.
300  */
301 struct lov_sublock_env {
302         const struct lu_env *lse_env;
303         struct cl_io        *lse_io;
304 };
305
306 struct lovsub_page {
307         struct cl_page_slice lsb_cl;
308 };
309
310
311 struct lov_thread_info {
312         struct cl_object_conf   lti_stripe_conf;
313         struct lu_fid           lti_fid;
314         struct ost_lvb          lti_lvb;
315         struct cl_2queue        lti_cl2q;
316         struct cl_page_list     lti_plist;
317         wait_queue_t            lti_waiter;
318 };
319
320 /**
321  * State that lov_io maintains for every sub-io.
322  */
323 struct lov_io_sub {
324         /**
325          * Linkage into a list (hanging off lov_io::lis_subios)
326          */
327         struct list_head        sub_list;
328         /**
329          * Linkage into a list (hanging off lov_io::lis_active) of all
330          * sub-io's active for the current IO iteration.
331          */
332         struct list_head        sub_linkage;
333         unsigned int            sub_subio_index;
334         /**
335          * sub-io for a stripe. Ideally sub-io's can be stopped and resumed
336          * independently, with lov acting as a scheduler to maximize overall
337          * throughput.
338          */
339         struct cl_io            sub_io;
340         /**
341          * environment, in which sub-io executes.
342          */
343         struct lu_env           *sub_env;
344         /**
345          * environment's refcheck.
346          *
347          * \see cl_env_get()
348          */
349         __u16                   sub_refcheck;
350         __u16                   sub_reenter;
351 };
352
353 /**
354  * IO state private for LOV.
355  */
356 struct lov_io {
357         /** super-class */
358         struct cl_io_slice lis_cl;
359         /**
360          * Pointer to the object slice. This is a duplicate of
361          * lov_io::lis_cl::cis_object.
362          */
363         struct lov_object *lis_object;
364         /**
365          * Original end-of-io position for this IO, set by the upper layer as
366          * cl_io::u::ci_rw::pos + cl_io::u::ci_rw::count. lov remembers this,
367          * changes pos and count to fit IO into a single stripe and uses saved
368          * value to determine when IO iterations have to stop.
369          *
370          * This is used only for CIT_READ and CIT_WRITE io's.
371          */
372         loff_t             lis_io_endpos;
373
374         /**
375          * starting position within a file, for the current io loop iteration
376          * (stripe), used by ci_io_loop().
377          */
378         loff_t                  lis_pos;
379         /**
380          * end position with in a file, for the current stripe io. This is
381          * exclusive (i.e., next offset after last byte affected by io).
382          */
383         loff_t                  lis_endpos;
384         int                     lis_nr_subios;
385
386         /**
387          * the index of ls_single_subio in ls_subios array
388          */
389         int                     lis_single_subio_index;
390         struct lov_io_sub       lis_single_subio;
391
392         /**
393          * List of active sub-io's. Active sub-io's are under the range
394          * of [lis_pos, lis_endpos).
395          */
396         struct list_head        lis_active;
397         /**
398          * All sub-io's created in this lov_io.
399          */
400         struct list_head        lis_subios;
401 };
402
403 struct lov_session {
404         struct lov_io          ls_io;
405         struct lov_sublock_env ls_subenv;
406 };
407
408 extern struct lu_device_type lov_device_type;
409 extern struct lu_device_type lovsub_device_type;
410
411 extern struct lu_context_key lov_key;
412 extern struct lu_context_key lov_session_key;
413
414 extern struct kmem_cache *lov_lock_kmem;
415 extern struct kmem_cache *lov_object_kmem;
416 extern struct kmem_cache *lov_thread_kmem;
417 extern struct kmem_cache *lov_session_kmem;
418
419 extern struct kmem_cache *lovsub_lock_kmem;
420 extern struct kmem_cache *lovsub_object_kmem;
421
422 int   lov_object_init     (const struct lu_env *env, struct lu_object *obj,
423                            const struct lu_object_conf *conf);
424 int   lovsub_object_init  (const struct lu_env *env, struct lu_object *obj,
425                            const struct lu_object_conf *conf);
426 int   lov_lock_init       (const struct lu_env *env, struct cl_object *obj,
427                            struct cl_lock *lock, const struct cl_io *io);
428 int   lov_io_init         (const struct lu_env *env, struct cl_object *obj,
429                            struct cl_io *io);
430 int   lovsub_lock_init    (const struct lu_env *env, struct cl_object *obj,
431                            struct cl_lock *lock, const struct cl_io *io);
432
433 int   lov_lock_init_composite(const struct lu_env *env, struct cl_object *obj,
434                            struct cl_lock *lock, const struct cl_io *io);
435 int   lov_lock_init_empty (const struct lu_env *env, struct cl_object *obj,
436                            struct cl_lock *lock, const struct cl_io *io);
437 int   lov_io_init_composite(const struct lu_env *env, struct cl_object *obj,
438                            struct cl_io *io);
439 int   lov_io_init_empty   (const struct lu_env *env, struct cl_object *obj,
440                            struct cl_io *io);
441 int   lov_io_init_released(const struct lu_env *env, struct cl_object *obj,
442                            struct cl_io *io);
443
444 struct lov_io_sub *lov_sub_get(const struct lu_env *env, struct lov_io *lio,
445                                int stripe);
446
447 int   lov_page_init       (const struct lu_env *env, struct cl_object *ob,
448                            struct cl_page *page, pgoff_t index);
449 int   lovsub_page_init    (const struct lu_env *env, struct cl_object *ob,
450                            struct cl_page *page, pgoff_t index);
451 int   lov_page_init_empty (const struct lu_env *env, struct cl_object *obj,
452                            struct cl_page *page, pgoff_t index);
453 int   lov_page_init_composite(const struct lu_env *env, struct cl_object *obj,
454                            struct cl_page *page, pgoff_t index);
455 struct lu_object *lov_object_alloc   (const struct lu_env *env,
456                                       const struct lu_object_header *hdr,
457                                       struct lu_device *dev);
458 struct lu_object *lovsub_object_alloc(const struct lu_env *env,
459                                       const struct lu_object_header *hdr,
460                                       struct lu_device *dev);
461
462 struct lov_stripe_md *lov_lsm_addref(struct lov_object *lov);
463 int lov_page_stripe(const struct cl_page *page);
464 int lov_lsm_entry(const struct lov_stripe_md *lsm, __u64 offset);
465
466 #define lov_foreach_target(lov, var)                    \
467         for (var = 0; var < lov_targets_nr(lov); ++var)
468
469 /*****************************************************************************
470  *
471  * Type conversions.
472  *
473  * Accessors.
474  *
475  */
476
477 static inline struct lov_session *lov_env_session(const struct lu_env *env)
478 {
479         struct lov_session *ses;
480
481         ses = lu_context_key_get(env->le_ses, &lov_session_key);
482         LASSERT(ses != NULL);
483         return ses;
484 }
485
486 static inline struct lov_io *lov_env_io(const struct lu_env *env)
487 {
488         return &lov_env_session(env)->ls_io;
489 }
490
491 static inline int lov_is_object(const struct lu_object *obj)
492 {
493         return obj->lo_dev->ld_type == &lov_device_type;
494 }
495
496 static inline int lovsub_is_object(const struct lu_object *obj)
497 {
498         return obj->lo_dev->ld_type == &lovsub_device_type;
499 }
500
501 static inline struct lu_device *lov2lu_dev(struct lov_device *lov)
502 {
503         return &lov->ld_cl.cd_lu_dev;
504 }
505
506 static inline struct lov_device *lu2lov_dev(const struct lu_device *d)
507 {
508         LINVRNT(d->ld_type == &lov_device_type);
509         return container_of0(d, struct lov_device, ld_cl.cd_lu_dev);
510 }
511
512 static inline struct cl_device *lovsub2cl_dev(struct lovsub_device *lovsub)
513 {
514         return &lovsub->acid_cl;
515 }
516
517 static inline struct lu_device *lovsub2lu_dev(struct lovsub_device *lovsub)
518 {
519         return &lovsub2cl_dev(lovsub)->cd_lu_dev;
520 }
521
522 static inline struct lovsub_device *lu2lovsub_dev(const struct lu_device *d)
523 {
524         LINVRNT(d->ld_type == &lovsub_device_type);
525         return container_of0(d, struct lovsub_device, acid_cl.cd_lu_dev);
526 }
527
528 static inline struct lovsub_device *cl2lovsub_dev(const struct cl_device *d)
529 {
530         LINVRNT(d->cd_lu_dev.ld_type == &lovsub_device_type);
531         return container_of0(d, struct lovsub_device, acid_cl);
532 }
533
534 static inline struct lu_object *lov2lu(struct lov_object *lov)
535 {
536         return &lov->lo_cl.co_lu;
537 }
538
539 static inline struct cl_object *lov2cl(struct lov_object *lov)
540 {
541         return &lov->lo_cl;
542 }
543
544 static inline struct lov_object *lu2lov(const struct lu_object *obj)
545 {
546         LINVRNT(lov_is_object(obj));
547         return container_of0(obj, struct lov_object, lo_cl.co_lu);
548 }
549
550 static inline struct lov_object *cl2lov(const struct cl_object *obj)
551 {
552         LINVRNT(lov_is_object(&obj->co_lu));
553         return container_of0(obj, struct lov_object, lo_cl);
554 }
555
556 static inline struct lu_object *lovsub2lu(struct lovsub_object *los)
557 {
558         return &los->lso_cl.co_lu;
559 }
560
561 static inline struct cl_object *lovsub2cl(struct lovsub_object *los)
562 {
563         return &los->lso_cl;
564 }
565
566 static inline struct lovsub_object *cl2lovsub(const struct cl_object *obj)
567 {
568         LINVRNT(lovsub_is_object(&obj->co_lu));
569         return container_of0(obj, struct lovsub_object, lso_cl);
570 }
571
572 static inline struct lovsub_object *lu2lovsub(const struct lu_object *obj)
573 {
574         LINVRNT(lovsub_is_object(obj));
575         return container_of0(obj, struct lovsub_object, lso_cl.co_lu);
576 }
577
578 static inline struct lovsub_lock *
579 cl2lovsub_lock(const struct cl_lock_slice *slice)
580 {
581         LINVRNT(lovsub_is_object(&slice->cls_obj->co_lu));
582         return container_of(slice, struct lovsub_lock, lss_cl);
583 }
584
585 static inline struct lovsub_lock *cl2sub_lock(const struct cl_lock *lock)
586 {
587         const struct cl_lock_slice *slice;
588
589         slice = cl_lock_at(lock, &lovsub_device_type);
590         LASSERT(slice != NULL);
591         return cl2lovsub_lock(slice);
592 }
593
594 static inline struct lov_lock *cl2lov_lock(const struct cl_lock_slice *slice)
595 {
596         LINVRNT(lov_is_object(&slice->cls_obj->co_lu));
597         return container_of(slice, struct lov_lock, lls_cl);
598 }
599
600 static inline struct lov_page *cl2lov_page(const struct cl_page_slice *slice)
601 {
602         LINVRNT(lov_is_object(&slice->cpl_obj->co_lu));
603         return container_of0(slice, struct lov_page, lps_cl);
604 }
605
606 static inline struct lovsub_page *
607 cl2lovsub_page(const struct cl_page_slice *slice)
608 {
609         LINVRNT(lovsub_is_object(&slice->cpl_obj->co_lu));
610         return container_of0(slice, struct lovsub_page, lsb_cl);
611 }
612
613 static inline struct lov_io *cl2lov_io(const struct lu_env *env,
614                                 const struct cl_io_slice *ios)
615 {
616         struct lov_io *lio;
617
618         lio = container_of(ios, struct lov_io, lis_cl);
619         LASSERT(lio == lov_env_io(env));
620         return lio;
621 }
622
623 static inline int lov_targets_nr(const struct lov_device *lov)
624 {
625         return lov->ld_lov->desc.ld_tgt_count;
626 }
627
628 static inline struct lov_thread_info *lov_env_info(const struct lu_env *env)
629 {
630         struct lov_thread_info *info;
631
632         info = lu_context_key_get(&env->le_ctx, &lov_key);
633         LASSERT(info != NULL);
634         return info;
635 }
636
637 static inline struct lov_layout_raid0 *lov_r0(struct lov_object *lov, int i)
638 {
639         LASSERT(lov->lo_type == LLT_COMP);
640         LASSERTF(i < lov->u.composite.lo_entry_count,
641                  "entry %d entry_count %d", i, lov->u.composite.lo_entry_count);
642
643         return &lov->u.composite.lo_entries[i].lle_raid0;
644 }
645
646 static inline struct lov_stripe_md_entry *lov_lse(struct lov_object *lov, int i)
647 {
648         LASSERT(lov->lo_lsm != NULL);
649         LASSERT(i < lov->lo_lsm->lsm_entry_count);
650
651         return lov->lo_lsm->lsm_entries[i];
652 }
653
654 /* lov_pack.c */
655 int lov_getstripe(struct lov_object *obj, struct lov_stripe_md *lsm,
656                   struct lov_user_md __user *lump);
657
658 /** @} lov */
659
660 #endif