Whamcloud - gitweb
9d5437dd518f2943567a9512137cec2fb5e5d886
[fs/lustre-release.git] / lustre / include / lu_object.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #ifndef __LUSTRE_LU_OBJECT_H
33 #define __LUSTRE_LU_OBJECT_H
34
35 #include <stdarg.h>
36 #include <libcfs/libcfs.h>
37 #include <uapi/linux/lustre/lustre_idl.h>
38 #include <lu_ref.h>
39 #include <linux/percpu_counter.h>
40 #include <linux/rhashtable.h>
41 #include <linux/ctype.h>
42 #include <obd_target.h>
43
44 struct seq_file;
45 struct proc_dir_entry;
46 struct lustre_cfg;
47 struct lprocfs_stats;
48 struct obd_type;
49
50 /** \defgroup lu lu
51  * lu_* data-types represent server-side entities shared by data and meta-data
52  * stacks.
53  *
54  * Design goals:
55  *
56  * -# support for layering.
57  *
58  *     Server side object is split into layers, one per device in the
59  *     corresponding device stack. Individual layer is represented by struct
60  *     lu_object. Compound layered object --- by struct lu_object_header. Most
61  *     interface functions take lu_object as an argument and operate on the
62  *     whole compound object. This decision was made due to the following
63  *     reasons:
64  *
65  *        - it's envisaged that lu_object will be used much more often than
66  *        lu_object_header;
67  *
68  *        - we want lower (non-top) layers to be able to initiate operations
69  *        on the whole object.
70  *
71  *     Generic code supports layering more complex than simple stacking, e.g.,
72  *     it is possible that at some layer object "spawns" multiple sub-objects
73  *     on the lower layer.
74  *
75  * -# fid-based identification.
76  *
77  *     Compound object is uniquely identified by its fid. Objects are indexed
78  *     by their fids (hash table is used for index).
79  *
80  * -# caching and life-cycle management.
81  *
82  *     Object's life-time is controlled by reference counting. When reference
83  *     count drops to 0, object is returned to cache. Cached objects still
84  *     retain their identity (i.e., fid), and can be recovered from cache.
85  *
86  *     Objects are kept in the global LRU list, and lu_site_purge() function
87  *     can be used to reclaim given number of unused objects from the tail of
88  *     the LRU.
89  *
90  * -# avoiding recursion.
91  *
92  *     Generic code tries to replace recursion through layers by iterations
93  *     where possible. Additionally to the end of reducing stack consumption,
94  *     data, when practically possible, are allocated through lu_context_key
95  *     interface rather than on stack.
96  * @{
97  */
98
99 struct lu_site;
100 struct lu_object;
101 struct lu_device;
102 struct lu_object_header;
103 struct lu_context;
104 struct lu_env;
105 struct lu_name;
106
107 /**
108  * Operations common for data and meta-data devices.
109  */
110 struct lu_device_operations {
111         /**
112          * Allocate object for the given device (without lower-layer
113          * parts). This is called by lu_object_operations::loo_object_init()
114          * from the parent layer, and should setup at least lu_object::lo_dev
115          * and lu_object::lo_ops fields of resulting lu_object.
116          *
117          * Object creation protocol.
118          *
119          * Due to design goal of avoiding recursion, object creation (see
120          * lu_object_alloc()) is somewhat involved:
121          *
122          *  - first, lu_device_operations::ldo_object_alloc() method of the
123          *  top-level device in the stack is called. It should allocate top
124          *  level object (including lu_object_header), but without any
125          *  lower-layer sub-object(s).
126          *
127          *  - then lu_object_alloc() sets fid in the header of newly created
128          *  object.
129          *
130          *  - then lu_object_operations::loo_object_init() is called. It has
131          *  to allocate lower-layer object(s). To do this,
132          *  lu_object_operations::loo_object_init() calls ldo_object_alloc()
133          *  of the lower-layer device(s).
134          *
135          *  - for all new objects allocated by
136          *  lu_object_operations::loo_object_init() (and inserted into object
137          *  stack), lu_object_operations::loo_object_init() is called again
138          *  repeatedly, until no new objects are created.
139          *
140          * \post ergo(!IS_ERR(result), result->lo_dev == d &&
141          *                             result->lo_ops != NULL);
142          */
143         struct lu_object *(*ldo_object_alloc)(const struct lu_env *env,
144                                               const struct lu_object_header *h,
145                                               struct lu_device *d);
146         /**
147          * process config specific for device.
148          */
149         int (*ldo_process_config)(const struct lu_env *env,
150                                   struct lu_device *, struct lustre_cfg *);
151         int (*ldo_recovery_complete)(const struct lu_env *,
152                                      struct lu_device *);
153
154         /**
155          * initialize local objects for device. this method called after layer has
156          * been initialized (after LCFG_SETUP stage) and before it starts serving
157          * user requests.
158          */
159
160         int (*ldo_prepare)(const struct lu_env *,
161                            struct lu_device *parent,
162                            struct lu_device *dev);
163
164
165         /**
166          * Allocate new FID for file with @name under @parent
167          *
168          * \param[in] env       execution environment for this thread
169          * \param[in] dev       dt device
170          * \param[out] fid      new FID allocated
171          * \param[in] parent    parent object
172          * \param[in] name      lu_name
173          *
174          * \retval 0            0 FID allocated successfully.
175          * \retval 1            1 FID allocated successfully and new sequence
176          *                      requested from seq meta server
177          * \retval negative     negative errno if FID allocation failed.
178          */
179         int (*ldo_fid_alloc)(const struct lu_env *env,
180                              struct lu_device *dev,
181                              struct lu_fid *fid,
182                              struct lu_object *parent,
183                              const struct lu_name *name);
184 };
185
186 /**
187  * For lu_object_conf flags
188  */
189 typedef enum {
190         /* This is a new object to be allocated, or the file
191          * corresponding to the object does not exists. */
192         LOC_F_NEW       = 0x00000001,
193 } loc_flags_t;
194
195 /**
196  * Object configuration, describing particulars of object being created. On
197  * server this is not used, as server objects are full identified by fid. On
198  * client configuration contains struct lustre_md.
199  */
200 struct lu_object_conf {
201         /**
202          * Some hints for obj find and alloc.
203          */
204         loc_flags_t     loc_flags;
205 };
206
207 /**
208  * Type of "printer" function used by lu_object_operations::loo_object_print()
209  * method.
210  *
211  * Printer function is needed to provide some flexibility in (semi-)debugging
212  * output: possible implementations: printk, CDEBUG, sysfs/seq_file
213  */
214 typedef int (*lu_printer_t)(const struct lu_env *env,
215                             void *cookie, const char *format, ...)
216         __attribute__ ((format (printf, 3, 4)));
217
218 /**
219  * Operations specific for particular lu_object.
220  */
221 struct lu_object_operations {
222
223         /**
224          * Allocate lower-layer parts of the object by calling
225          * lu_device_operations::ldo_object_alloc() of the corresponding
226          * underlying device.
227          *
228          * This method is called once for each object inserted into object
229          * stack. It's responsibility of this method to insert lower-layer
230          * object(s) it create into appropriate places of object stack.
231          */
232         int (*loo_object_init)(const struct lu_env *env,
233                                struct lu_object *o,
234                                const struct lu_object_conf *conf);
235         /**
236          * Called (in top-to-bottom order) during object allocation after all
237          * layers were allocated and initialized. Can be used to perform
238          * initialization depending on lower layers.
239          */
240         int (*loo_object_start)(const struct lu_env *env,
241                                 struct lu_object *o);
242         /**
243          * Called before lu_object_operations::loo_object_free() to signal
244          * that object is being destroyed. Dual to
245          * lu_object_operations::loo_object_init().
246          */
247         void (*loo_object_delete)(const struct lu_env *env,
248                                   struct lu_object *o);
249         /**
250          * Dual to lu_device_operations::ldo_object_alloc(). Called when
251          * object is removed from memory.  Must use call_rcu or kfree_rcu
252          * if the object contains an lu_object_header.
253          */
254         void (*loo_object_free)(const struct lu_env *env,
255                                 struct lu_object *o);
256         /**
257          * Called when last active reference to the object is released (and
258          * object returns to the cache). This method is optional.
259          */
260         void (*loo_object_release)(const struct lu_env *env,
261                                    struct lu_object *o);
262         /**
263          * Optional debugging helper. Print given object.
264          */
265         int (*loo_object_print)(const struct lu_env *env, void *cookie,
266                                 lu_printer_t p, const struct lu_object *o);
267         /**
268          * Optional debugging method. Returns true iff method is internally
269          * consistent.
270          */
271         int (*loo_object_invariant)(const struct lu_object *o);
272 };
273
274 /**
275  * Type of lu_device.
276  */
277 struct lu_device_type;
278
279 /**
280  * Device: a layer in the server side abstraction stacking.
281  */
282 struct lu_device {
283         /**
284          * reference count. This is incremented, in particular, on each object
285          * created at this layer.
286          *
287          * \todo XXX which means that atomic_t is probably too small.
288          */
289         atomic_t                           ld_ref;
290         /**
291          * Pointer to device type. Never modified once set.
292          */
293         struct lu_device_type             *ld_type;
294         /**
295          * Operation vector for this device.
296          */
297         const struct lu_device_operations *ld_ops;
298         /**
299          * Stack this device belongs to.
300          */
301         struct lu_site                    *ld_site;
302         struct proc_dir_entry             *ld_proc_entry;
303
304         /** \todo XXX: temporary back pointer into obd. */
305         struct obd_device                 *ld_obd;
306         /**
307          * A list of references to this object, for debugging.
308          */
309         struct lu_ref                      ld_reference;
310         /**
311          * Link the device to the site.
312          **/
313         struct list_head                   ld_linkage;
314 };
315
316 struct lu_device_type_operations;
317
318 /**
319  * Tag bits for device type. They are used to distinguish certain groups of
320  * device types.
321  */
322 enum lu_device_tag {
323         /** this is meta-data device */
324         LU_DEVICE_MD = BIT(0),
325         /** this is data device */
326         LU_DEVICE_DT = BIT(1),
327         /** data device in the client stack */
328         LU_DEVICE_CL = BIT(2)
329 };
330
331 /**
332  * Type of device.
333  */
334 struct lu_device_type {
335         /**
336          * Tag bits. Taken from enum lu_device_tag. Never modified once set.
337          */
338         __u32                                   ldt_tags;
339         /**
340          * Name of this class. Unique system-wide. Never modified once set.
341          */
342         char                                   *ldt_name;
343         /**
344          * Operations for this type.
345          */
346         const struct lu_device_type_operations *ldt_ops;
347         /**
348          * \todo XXX: temporary: context tags used by obd_*() calls.
349          */
350         __u32                                   ldt_ctx_tags;
351         /**
352          * Number of existing device type instances.
353          */
354         atomic_t                                ldt_device_nr;
355 };
356
357 /**
358  * Operations on a device type.
359  */
360 struct lu_device_type_operations {
361         /**
362          * Allocate new device.
363          */
364         struct lu_device *(*ldto_device_alloc)(const struct lu_env *env,
365                                                struct lu_device_type *t,
366                                                struct lustre_cfg *lcfg);
367         /**
368          * Free device. Dual to
369          * lu_device_type_operations::ldto_device_alloc(). Returns pointer to
370          * the next device in the stack.
371          */
372         struct lu_device *(*ldto_device_free)(const struct lu_env *,
373                                               struct lu_device *);
374
375         /**
376          * Initialize the devices after allocation
377          */
378         int  (*ldto_device_init)(const struct lu_env *env,
379                                  struct lu_device *, const char *,
380                                  struct lu_device *);
381         /**
382          * Finalize device. Dual to
383          * lu_device_type_operations::ldto_device_init(). Returns pointer to
384          * the next device in the stack.
385          */
386         struct lu_device *(*ldto_device_fini)(const struct lu_env *env,
387                                               struct lu_device *);
388         /**
389          * Initialize device type. This is called on module load.
390          */
391         int  (*ldto_init)(struct lu_device_type *t);
392         /**
393          * Finalize device type. Dual to
394          * lu_device_type_operations::ldto_init(). Called on module unload.
395          */
396         void (*ldto_fini)(struct lu_device_type *t);
397         /**
398          * Called when the first device is created.
399          */
400         void (*ldto_start)(struct lu_device_type *t);
401         /**
402          * Called when number of devices drops to 0.
403          */
404         void (*ldto_stop)(struct lu_device_type *t);
405 };
406
407 static inline int lu_device_is_md(const struct lu_device *d)
408 {
409         return ergo(d != NULL, d->ld_type->ldt_tags & LU_DEVICE_MD);
410 }
411
412 /**
413  * Common object attributes.
414  */
415 struct lu_attr {
416         /**
417          * valid bits
418          *
419          * \see enum la_valid
420          */
421         __u64           la_valid;
422         /** size in bytes */
423         __u64           la_size;
424         /** modification time in seconds since Epoch */
425         s64             la_mtime;
426         /** access time in seconds since Epoch */
427         s64             la_atime;
428         /** change time in seconds since Epoch */
429         s64             la_ctime;
430         /** create time in seconds since Epoch */
431         s64             la_btime;
432         /** 512-byte blocks allocated to object */
433         __u64           la_blocks;
434         /** permission bits and file type */
435         __u32           la_mode;
436         /** owner id */
437         __u32           la_uid;
438         /** group id */
439         __u32           la_gid;
440         /** object flags */
441         __u32           la_flags;
442         /** number of persistent references to this object */
443         __u32           la_nlink;
444         /** blk bits of the object*/
445         __u32           la_blkbits;
446         /** blk size of the object*/
447         __u32           la_blksize;
448         /** real device */
449         __u32           la_rdev;
450         /** project id */
451         __u32           la_projid;
452         /** set layout version to OST objects. */
453         __u32           la_layout_version;
454         /** dirent count */
455         __u64           la_dirent_count;
456 };
457
458 #define LU_DIRENT_COUNT_UNSET   ~0ULL
459
460 /**
461  * Layer in the layered object.
462  */
463 struct lu_object {
464         /**
465          * Header for this object.
466          */
467         struct lu_object_header           *lo_header;
468         /**
469          * Device for this layer.
470          */
471         struct lu_device                  *lo_dev;
472         /**
473          * Operations for this object.
474          */
475         const struct lu_object_operations *lo_ops;
476         /**
477          * Linkage into list of all layers.
478          */
479         struct list_head                   lo_linkage;
480         /**
481          * Link to the device, for debugging.
482          */
483         struct lu_ref_link                 lo_dev_ref;
484 };
485
486 enum lu_object_header_flags {
487         /**
488          * Don't keep this object in cache. Object will be destroyed as soon
489          * as last reference to it is released. This flag cannot be cleared
490          * once set.
491          */
492         LU_OBJECT_HEARD_BANSHEE = 0,
493         /**
494          * Mark this object has already been taken out of cache.
495          */
496         LU_OBJECT_UNHASHED      = 1,
497         /**
498          * Object is initialized, when object is found in cache, it may not be
499          * intialized yet, the object allocator will initialize it.
500          */
501         LU_OBJECT_INITED        = 2,
502 };
503
504 enum lu_object_header_attr {
505         LOHA_EXISTS             = BIT(0),
506         LOHA_REMOTE             = BIT(1),
507         LOHA_HAS_AGENT_ENTRY    = BIT(2),
508         /**
509          * UNIX file type is stored in S_IFMT bits.
510          */
511         LOHA_FT_START           = 001 << 12, /**< S_IFIFO */
512         LOHA_FT_END             = 017 << 12, /**< S_IFMT */
513 };
514
515 /**
516  * "Compound" object, consisting of multiple layers.
517  *
518  * Compound object with given fid is unique with given lu_site.
519  *
520  * Note, that object does *not* necessary correspond to the real object in the
521  * persistent storage: object is an anchor for locking and method calling, so
522  * it is created for things like not-yet-existing child created by mkdir or
523  * create calls. lu_object_operations::loo_exists() can be used to check
524  * whether object is backed by persistent storage entity.
525  * Any object containing this structre which might be placed in an
526  * rhashtable via loh_hash MUST be freed using call_rcu() or rcu_kfree().
527  */
528 struct lu_object_header {
529         /**
530          * Fid, uniquely identifying this object.
531          */
532         struct lu_fid           loh_fid;
533         /**
534          * Object flags from enum lu_object_header_flags. Set and checked
535          * atomically.
536          */
537         unsigned long           loh_flags;
538         /**
539          * Object reference count. Protected by lu_site::ls_guard.
540          */
541         atomic_t                loh_ref;
542         /**
543          * Common object attributes, cached for efficiency. From enum
544          * lu_object_header_attr.
545          */
546         __u32                   loh_attr;
547         /**
548          * Linkage into per-site hash table.
549          */
550         struct rhash_head       loh_hash;
551         /**
552          * Linkage into per-site LRU list. Protected by lu_site::ls_guard.
553          */
554         struct list_head        loh_lru;
555         /**
556          * Linkage into list of layers. Never modified once set (except lately
557          * during object destruction). No locking is necessary.
558          */
559         struct list_head        loh_layers;
560         /**
561          * A list of references to this object, for debugging.
562          */
563         struct lu_ref           loh_reference;
564         /*
565          * Handle used for kfree_rcu() or similar.
566          */
567         struct rcu_head         loh_rcu;
568 };
569
570 struct fld;
571
572 enum {
573         LU_SS_CREATED           = 0,
574         LU_SS_CACHE_HIT,
575         LU_SS_CACHE_MISS,
576         LU_SS_CACHE_RACE,
577         LU_SS_CACHE_DEATH_RACE,
578         LU_SS_LRU_PURGED,
579         LU_SS_LAST_STAT
580 };
581
582 /**
583  * lu_site is a "compartment" within which objects are unique, and LRU
584  * discipline is maintained.
585  *
586  * lu_site exists so that multiple layered stacks can co-exist in the same
587  * address space.
588  *
589  * lu_site has the same relation to lu_device as lu_object_header to
590  * lu_object.
591  */
592 struct lu_site {
593         /**
594          * objects hash table
595          */
596         struct rhashtable       ls_obj_hash;
597         /*
598          * buckets for summary data
599          */
600         struct lu_site_bkt_data *ls_bkts;
601         int                     ls_bkt_cnt;
602         u32                     ls_bkt_seed;
603         /**
604          * index of bucket on hash table while purging
605          */
606         unsigned int            ls_purge_start;
607         /**
608          * Top-level device for this stack.
609          */
610         struct lu_device        *ls_top_dev;
611         /**
612          * Bottom-level device for this stack
613          */
614         struct lu_device        *ls_bottom_dev;
615         /**
616          * Linkage into global list of sites.
617          */
618         struct list_head        ls_linkage;
619         /**
620          * List for lu device for this site, protected
621          * by ls_ld_lock.
622          **/
623         struct list_head        ls_ld_linkage;
624         spinlock_t              ls_ld_lock;
625         /**
626          * Lock to serialize site purge.
627          */
628         struct mutex            ls_purge_mutex;
629         /**
630          * lu_site stats
631          */
632         struct lprocfs_stats    *ls_stats;
633         /**
634          * XXX: a hack! fld has to find md_site via site, remove when possible
635          */
636         struct seq_server_site  *ld_seq_site;
637         /**
638          * Pointer to the lu_target for this site.
639          */
640         struct lu_target        *ls_tgt;
641
642         /**
643          * Number of objects in lsb_lru_lists - used for shrinking
644          */
645         struct percpu_counter   ls_lru_len_counter;
646 };
647
648 wait_queue_head_t *
649 lu_site_wq_from_fid(struct lu_site *site, struct lu_fid *fid);
650
651 static inline struct seq_server_site *lu_site2seq(const struct lu_site *s)
652 {
653         return s->ld_seq_site;
654 }
655
656 /** \name ctors
657  * Constructors/destructors.
658  * @{
659  */
660
661 int  lu_site_init         (struct lu_site *s, struct lu_device *d);
662 void lu_site_fini         (struct lu_site *s);
663 int  lu_site_init_finish  (struct lu_site *s);
664 void lu_stack_fini        (const struct lu_env *env, struct lu_device *top);
665 void lu_device_get        (struct lu_device *d);
666 void lu_device_put        (struct lu_device *d);
667 int  lu_device_init       (struct lu_device *d, struct lu_device_type *t);
668 void lu_device_fini       (struct lu_device *d);
669 int  lu_object_header_init(struct lu_object_header *h);
670 void lu_object_header_fini(struct lu_object_header *h);
671 void lu_object_header_free(struct lu_object_header *h);
672 int  lu_object_init       (struct lu_object *o,
673                            struct lu_object_header *h, struct lu_device *d);
674 void lu_object_fini       (struct lu_object *o);
675 void lu_object_add_top    (struct lu_object_header *h, struct lu_object *o);
676 void lu_object_add        (struct lu_object *before, struct lu_object *o);
677 struct lu_object *lu_object_get_first(struct lu_object_header *h,
678                                       struct lu_device *dev);
679 void lu_dev_add_linkage(struct lu_site *s, struct lu_device *d);
680 void lu_dev_del_linkage(struct lu_site *s, struct lu_device *d);
681
682 /**
683  * Helpers to initialize and finalize device types.
684  */
685
686 int  lu_device_type_init(struct lu_device_type *ldt);
687 void lu_device_type_fini(struct lu_device_type *ldt);
688
689 /** @} ctors */
690
691 /** \name caching
692  * Caching and reference counting.
693  * @{
694  */
695
696 /**
697  * Acquire additional reference to the given object. This function is used to
698  * attain additional reference. To acquire initial reference use
699  * lu_object_find().
700  */
701 static inline void lu_object_get(struct lu_object *o)
702 {
703         LASSERT(atomic_read(&o->lo_header->loh_ref) > 0);
704         atomic_inc(&o->lo_header->loh_ref);
705 }
706
707 /**
708  * Return true if object will not be cached after last reference to it is
709  * released.
710  */
711 static inline int lu_object_is_dying(const struct lu_object_header *h)
712 {
713         return test_bit(LU_OBJECT_HEARD_BANSHEE, &h->loh_flags);
714 }
715
716 /**
717  * Return true if object is initialized.
718  */
719 static inline int lu_object_is_inited(const struct lu_object_header *h)
720 {
721         return test_bit(LU_OBJECT_INITED, &h->loh_flags);
722 }
723
724 void lu_object_put(const struct lu_env *env, struct lu_object *o);
725 void lu_object_put_nocache(const struct lu_env *env, struct lu_object *o);
726 void lu_object_unhash(const struct lu_env *env, struct lu_object *o);
727 int lu_site_purge_objects(const struct lu_env *env, struct lu_site *s, int nr,
728                           int canblock);
729
730 static inline int lu_site_purge(const struct lu_env *env, struct lu_site *s,
731                                 int nr)
732 {
733         return lu_site_purge_objects(env, s, nr, 1);
734 }
735
736 void lu_site_print(const struct lu_env *env, struct lu_site *s, atomic_t *ref,
737                    int msg_flags, lu_printer_t printer);
738 struct lu_object *lu_object_find(const struct lu_env *env,
739                                  struct lu_device *dev, const struct lu_fid *f,
740                                  const struct lu_object_conf *conf);
741 struct lu_object *lu_object_find_at(const struct lu_env *env,
742                                     struct lu_device *dev,
743                                     const struct lu_fid *f,
744                                     const struct lu_object_conf *conf);
745 struct lu_object *lu_object_find_slice(const struct lu_env *env,
746                                        struct lu_device *dev,
747                                        const struct lu_fid *f,
748                                        const struct lu_object_conf *conf);
749 /** @} caching */
750
751 /** \name helpers
752  * Helpers.
753  * @{
754  */
755
756 /**
757  * First (topmost) sub-object of given compound object
758  */
759 static inline struct lu_object *lu_object_top(struct lu_object_header *h)
760 {
761         LASSERT(!list_empty(&h->loh_layers));
762         return container_of(h->loh_layers.next, struct lu_object, lo_linkage);
763 }
764
765 /**
766  * Next sub-object in the layering
767  */
768 static inline struct lu_object *lu_object_next(const struct lu_object *o)
769 {
770         return container_of(o->lo_linkage.next, struct lu_object, lo_linkage);
771 }
772
773 /**
774  * Pointer to the fid of this object.
775  */
776 static inline const struct lu_fid *lu_object_fid(const struct lu_object *o)
777 {
778         return &o->lo_header->loh_fid;
779 }
780
781 /**
782  * return device operations vector for this object
783  */
784 static const inline struct lu_device_operations *
785 lu_object_ops(const struct lu_object *o)
786 {
787         return o->lo_dev->ld_ops;
788 }
789
790 /**
791  * Given a compound object, find its slice, corresponding to the device type
792  * \a dtype.
793  */
794 struct lu_object *lu_object_locate(struct lu_object_header *h,
795                                    const struct lu_device_type *dtype);
796
797 /**
798  * Printer function emitting messages through libcfs_debug_msg().
799  */
800 int lu_cdebug_printer(const struct lu_env *env,
801                       void *cookie, const char *format, ...);
802
803 /**
804  * Print object description followed by a user-supplied message.
805  */
806 #define LU_OBJECT_DEBUG(mask, env, object, format, ...)                   \
807 do {                                                                      \
808         if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) {                     \
809                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);          \
810                 lu_object_print(env, &msgdata, lu_cdebug_printer, object);\
811                 CDEBUG(mask, format "\n", ## __VA_ARGS__);                \
812         }                                                                 \
813 } while (0)
814
815 /**
816  * Print short object description followed by a user-supplied message.
817  */
818 #define LU_OBJECT_HEADER(mask, env, object, format, ...)                \
819 do {                                                                    \
820         if (cfs_cdebug_show(mask, DEBUG_SUBSYSTEM)) {                   \
821                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);        \
822                 lu_object_header_print(env, &msgdata, lu_cdebug_printer,\
823                                        (object)->lo_header);            \
824                 lu_cdebug_printer(env, &msgdata, "\n");                 \
825                 CDEBUG(mask, format , ## __VA_ARGS__);                  \
826         }                                                               \
827 } while (0)
828
829 void lu_object_print       (const struct lu_env *env, void *cookie,
830                             lu_printer_t printer, const struct lu_object *o);
831 void lu_object_header_print(const struct lu_env *env, void *cookie,
832                             lu_printer_t printer,
833                             const struct lu_object_header *hdr);
834
835 /**
836  * Check object consistency.
837  */
838 int lu_object_invariant(const struct lu_object *o);
839
840
841 /**
842  * Check whether object exists, no matter on local or remote storage.
843  * Note: LOHA_EXISTS will be set once some one created the object,
844  * and it does not needs to be committed to storage.
845  */
846 #define lu_object_exists(o) ((o)->lo_header->loh_attr & LOHA_EXISTS)
847
848 /**
849  * Check whether object on the remote storage.
850  */
851 #define lu_object_remote(o) unlikely((o)->lo_header->loh_attr & LOHA_REMOTE)
852
853 /**
854  * Check whether the object as agent entry on current target
855  */
856 #define lu_object_has_agent_entry(o) \
857         unlikely((o)->lo_header->loh_attr & LOHA_HAS_AGENT_ENTRY)
858
859 static inline void lu_object_set_agent_entry(struct lu_object *o)
860 {
861         o->lo_header->loh_attr |= LOHA_HAS_AGENT_ENTRY;
862 }
863
864 static inline void lu_object_clear_agent_entry(struct lu_object *o)
865 {
866         o->lo_header->loh_attr &= ~LOHA_HAS_AGENT_ENTRY;
867 }
868
869 static inline int lu_object_assert_exists(const struct lu_object *o)
870 {
871         return lu_object_exists(o);
872 }
873
874 static inline int lu_object_assert_not_exists(const struct lu_object *o)
875 {
876         return !lu_object_exists(o);
877 }
878
879 /**
880  * Attr of this object.
881  */
882 static inline __u32 lu_object_attr(const struct lu_object *o)
883 {
884         LASSERT(lu_object_exists(o) != 0);
885
886         return o->lo_header->loh_attr & S_IFMT;
887 }
888
889 static inline void lu_object_ref_add(struct lu_object *o,
890                                      const char *scope,
891                                      const void *source)
892 {
893         lu_ref_add(&o->lo_header->loh_reference, scope, source);
894 }
895
896 static inline void lu_object_ref_add_at(struct lu_object *o,
897                                         struct lu_ref_link *link,
898                                         const char *scope,
899                                         const void *source)
900 {
901         lu_ref_add_at(&o->lo_header->loh_reference, link, scope, source);
902 }
903
904 static inline void lu_object_ref_del(struct lu_object *o,
905                                      const char *scope, const void *source)
906 {
907         lu_ref_del(&o->lo_header->loh_reference, scope, source);
908 }
909
910 static inline void lu_object_ref_del_at(struct lu_object *o,
911                                         struct lu_ref_link *link,
912                                         const char *scope, const void *source)
913 {
914         lu_ref_del_at(&o->lo_header->loh_reference, link, scope, source);
915 }
916
917 /** input params, should be filled out by mdt */
918 struct lu_rdpg {
919         /** hash */
920         __u64                   rp_hash;
921         /** count in bytes */
922         unsigned int            rp_count;
923         /** number of pages */
924         unsigned int            rp_npages;
925         /** requested attr */
926         __u32                   rp_attrs;
927         /** pointers to pages */
928         struct page           **rp_pages;
929 };
930
931 enum lu_xattr_flags {
932         LU_XATTR_REPLACE = BIT(0),
933         LU_XATTR_CREATE  = BIT(1),
934         LU_XATTR_MERGE   = BIT(2),
935         LU_XATTR_SPLIT   = BIT(3),
936 };
937
938 /** @} helpers */
939
940 /** \name lu_context
941  * @{ */
942
943 /** For lu_context health-checks */
944 enum lu_context_state {
945         LCS_INITIALIZED = 1,
946         LCS_ENTERED,
947         LCS_LEAVING,
948         LCS_LEFT,
949         LCS_FINALIZED
950 };
951
952 /**
953  * lu_context. Execution context for lu_object methods. Currently associated
954  * with thread.
955  *
956  * All lu_object methods, except device and device type methods (called during
957  * system initialization and shutdown) are executed "within" some
958  * lu_context. This means, that pointer to some "current" lu_context is passed
959  * as an argument to all methods.
960  *
961  * All service ptlrpc threads create lu_context as part of their
962  * initialization. It is possible to create "stand-alone" context for other
963  * execution environments (like system calls).
964  *
965  * lu_object methods mainly use lu_context through lu_context_key interface
966  * that allows each layer to associate arbitrary pieces of data with each
967  * context (see pthread_key_create(3) for similar interface).
968  *
969  * On a client, lu_context is bound to a thread, see cl_env_get().
970  *
971  * \see lu_context_key
972  */
973 struct lu_context {
974         /**
975          * lu_context is used on the client side too. Yet we don't want to
976          * allocate values of server-side keys for the client contexts and
977          * vice versa.
978          *
979          * To achieve this, set of tags in introduced. Contexts and keys are
980          * marked with tags. Key value are created only for context whose set
981          * of tags has non-empty intersection with one for key. Tags are taken
982          * from enum lu_context_tag.
983          */
984         __u32                  lc_tags;
985         enum lu_context_state  lc_state;
986         /**
987          * Pointer to the home service thread. NULL for other execution
988          * contexts.
989          */
990         struct ptlrpc_thread  *lc_thread;
991         /**
992          * Pointer to an array with key values. Internal implementation
993          * detail.
994          */
995         void                  **lc_value;
996         /**
997          * Linkage into a list of all remembered contexts. Only
998          * `non-transient' contexts, i.e., ones created for service threads
999          * are placed here.
1000          */
1001         struct list_head        lc_remember;
1002         /**
1003          * Version counter used to skip calls to lu_context_refill() when no
1004          * keys were registered.
1005          */
1006         unsigned                lc_version;
1007         /**
1008          * Debugging cookie.
1009          */
1010         unsigned                lc_cookie;
1011 };
1012
1013 /**
1014  * lu_context_key interface. Similar to pthread_key.
1015  */
1016
1017 enum lu_context_tag {
1018         /**
1019          * Thread on md server
1020          */
1021         LCT_MD_THREAD           = BIT(0),
1022         /**
1023          * Thread on dt server
1024          */
1025         LCT_DT_THREAD           = BIT(1),
1026         /**
1027          * Thread on client
1028          */
1029         LCT_CL_THREAD           = BIT(3),
1030         /**
1031          * A per-request session on a server, and a per-system-call session on
1032          * a client.
1033          */
1034         LCT_SESSION             = BIT(4),
1035         /**
1036          * A per-request data on OSP device
1037          */
1038         LCT_OSP_THREAD          = BIT(5),
1039         /**
1040          * MGS device thread
1041          */
1042         LCT_MG_THREAD           = BIT(6),
1043         /**
1044          * Context for local operations
1045          */
1046         LCT_LOCAL               = BIT(7),
1047         /**
1048          * session for server thread
1049          **/
1050         LCT_SERVER_SESSION      = BIT(8),
1051         /**
1052          * Set when at least one of keys, having values in this context has
1053          * non-NULL lu_context_key::lct_exit() method. This is used to
1054          * optimize lu_context_exit() call.
1055          */
1056         LCT_HAS_EXIT            = BIT(28),
1057         /**
1058          * Don't add references for modules creating key values in that context.
1059          * This is only for contexts used internally by lu_object framework.
1060          */
1061         LCT_NOREF               = BIT(29),
1062         /**
1063          * Key is being prepared for retiring, don't create new values for it.
1064          */
1065         LCT_QUIESCENT           = BIT(30),
1066         /**
1067          * Context should be remembered.
1068          */
1069         LCT_REMEMBER            = BIT(31),
1070         /**
1071          * Contexts usable in cache shrinker thread.
1072          */
1073         LCT_SHRINKER    = LCT_MD_THREAD|LCT_DT_THREAD|LCT_CL_THREAD|LCT_NOREF,
1074 };
1075
1076 /**
1077  * Key. Represents per-context value slot.
1078  *
1079  * Keys are usually registered when module owning the key is initialized, and
1080  * de-registered when module is unloaded. Once key is registered, all new
1081  * contexts with matching tags, will get key value. "Old" contexts, already
1082  * initialized at the time of key registration, can be forced to get key value
1083  * by calling lu_context_refill().
1084  *
1085  * Every key value is counted in lu_context_key::lct_used and acquires a
1086  * reference on an owning module. This means, that all key values have to be
1087  * destroyed before module can be unloaded. This is usually achieved by
1088  * stopping threads started by the module, that created contexts in their
1089  * entry functions. Situation is complicated by the threads shared by multiple
1090  * modules, like ptlrpcd daemon on a client. To work around this problem,
1091  * contexts, created in such threads, are `remembered' (see
1092  * LCT_REMEMBER)---i.e., added into a global list. When module is preparing
1093  * for unloading it does the following:
1094  *
1095  *     - marks its keys as `quiescent' (lu_context_tag::LCT_QUIESCENT)
1096  *       preventing new key values from being allocated in the new contexts,
1097  *       and
1098  *
1099  *     - scans a list of remembered contexts, destroying values of module
1100  *       keys, thus releasing references to the module.
1101  *
1102  * This is done by lu_context_key_quiesce(). If module is re-activated
1103  * before key has been de-registered, lu_context_key_revive() call clears
1104  * `quiescent' marker.
1105  *
1106  * lu_context code doesn't provide any internal synchronization for these
1107  * activities---it's assumed that startup (including threads start-up) and
1108  * shutdown are serialized by some external means.
1109  *
1110  * \see lu_context
1111  */
1112 struct lu_context_key {
1113         /**
1114          * Set of tags for which values of this key are to be instantiated.
1115          */
1116         __u32 lct_tags;
1117         /**
1118          * Value constructor. This is called when new value is created for a
1119          * context. Returns pointer to new value of error pointer.
1120          */
1121         void  *(*lct_init)(const struct lu_context *ctx,
1122                            struct lu_context_key *key);
1123         /**
1124          * Value destructor. Called when context with previously allocated
1125          * value of this slot is destroyed. \a data is a value that was returned
1126          * by a matching call to lu_context_key::lct_init().
1127          */
1128         void   (*lct_fini)(const struct lu_context *ctx,
1129                            struct lu_context_key *key, void *data);
1130         /**
1131          * Optional method called on lu_context_exit() for all allocated
1132          * keys. Can be used by debugging code checking that locks are
1133          * released, etc.
1134          */
1135         void   (*lct_exit)(const struct lu_context *ctx,
1136                            struct lu_context_key *key, void *data);
1137         /**
1138          * Internal implementation detail: index within lu_context::lc_value[]
1139          * reserved for this key.
1140          */
1141         int             lct_index;
1142         /**
1143          * Internal implementation detail: number of values created for this
1144          * key.
1145          */
1146         atomic_t        lct_used;
1147         /**
1148          * Internal implementation detail: module for this key.
1149          */
1150         struct module   *lct_owner;
1151         /**
1152          * References to this key. For debugging.
1153          */
1154         struct lu_ref   lct_reference;
1155 };
1156
1157 #define LU_KEY_INIT(mod, type)                                    \
1158         static void *mod##_key_init(const struct lu_context *ctx, \
1159                                     struct lu_context_key *key)   \
1160         {                                                         \
1161                 type *value;                                      \
1162                                                                   \
1163                 BUILD_BUG_ON(PAGE_SIZE < sizeof(*value));         \
1164                                                                   \
1165                 OBD_ALLOC_PTR(value);                             \
1166                 if (value == NULL)                                \
1167                         value = ERR_PTR(-ENOMEM);                 \
1168                                                                   \
1169                 return value;                                     \
1170         }                                                         \
1171         struct __##mod##__dummy_init { ; } /* semicolon catcher */
1172
1173 #define LU_KEY_FINI(mod, type)                                              \
1174         static void mod##_key_fini(const struct lu_context *ctx,            \
1175                                     struct lu_context_key *key, void* data) \
1176         {                                                                   \
1177                 type *info = data;                                          \
1178                                                                             \
1179                 OBD_FREE_PTR(info);                                         \
1180         }                                                                   \
1181         struct __##mod##__dummy_fini {;} /* semicolon catcher */
1182
1183 #define LU_KEY_INIT_FINI(mod, type)   \
1184         LU_KEY_INIT(mod,type);        \
1185         LU_KEY_FINI(mod,type)
1186
1187 #define LU_CONTEXT_KEY_DEFINE(mod, tags)                \
1188         struct lu_context_key mod##_thread_key = {      \
1189                 .lct_tags = tags,                       \
1190                 .lct_init = mod##_key_init,             \
1191                 .lct_fini = mod##_key_fini              \
1192         }
1193
1194 #define LU_CONTEXT_KEY_INIT(key)                        \
1195 do {                                                    \
1196         (key)->lct_owner = THIS_MODULE;                 \
1197 } while (0)
1198
1199 int   lu_context_key_register(struct lu_context_key *key);
1200 void  lu_context_key_degister(struct lu_context_key *key);
1201 void *lu_context_key_get     (const struct lu_context *ctx,
1202                                const struct lu_context_key *key);
1203 void  lu_context_key_quiesce(struct lu_device_type *t,
1204                              struct lu_context_key *key);
1205 void  lu_context_key_revive(struct lu_context_key *key);
1206
1207
1208 /*
1209  * LU_KEY_INIT_GENERIC() has to be a macro to correctly determine an
1210  * owning module.
1211  */
1212
1213 #define LU_KEY_INIT_GENERIC(mod)                                        \
1214         static void mod##_key_init_generic(struct lu_context_key *k, ...) \
1215         {                                                               \
1216                 struct lu_context_key *key = k;                         \
1217                 va_list args;                                           \
1218                                                                         \
1219                 va_start(args, k);                                      \
1220                 do {                                                    \
1221                         LU_CONTEXT_KEY_INIT(key);                       \
1222                         key = va_arg(args, struct lu_context_key *);    \
1223                 } while (key != NULL);                                  \
1224                 va_end(args);                                           \
1225         }
1226
1227 #define LU_TYPE_INIT(mod, ...)                                          \
1228         LU_KEY_INIT_GENERIC(mod)                                        \
1229         static int mod##_type_init(struct lu_device_type *t)            \
1230         {                                                               \
1231                 mod##_key_init_generic(__VA_ARGS__, NULL);              \
1232                 return lu_context_key_register_many(__VA_ARGS__, NULL); \
1233         }                                                               \
1234         struct __##mod##_dummy_type_init {;}
1235
1236 #define LU_TYPE_FINI(mod, ...)                                          \
1237         static void mod##_type_fini(struct lu_device_type *t)           \
1238         {                                                               \
1239                 lu_context_key_degister_many(__VA_ARGS__, NULL);        \
1240         }                                                               \
1241         struct __##mod##_dummy_type_fini {;}
1242
1243 #define LU_TYPE_START(mod, ...)                                 \
1244         static void mod##_type_start(struct lu_device_type *t)  \
1245         {                                                       \
1246                 lu_context_key_revive_many(__VA_ARGS__, NULL);  \
1247         }                                                       \
1248         struct __##mod##_dummy_type_start {;}
1249
1250 #define LU_TYPE_STOP(mod, ...)                                     \
1251         static void mod##_type_stop(struct lu_device_type *t)      \
1252         {                                                          \
1253                 lu_context_key_quiesce_many(t, __VA_ARGS__, NULL); \
1254         }                                                          \
1255         struct __##mod##_dummy_type_stop { }
1256
1257
1258
1259 #define LU_TYPE_INIT_FINI(mod, ...)             \
1260         LU_TYPE_INIT(mod, __VA_ARGS__);         \
1261         LU_TYPE_FINI(mod, __VA_ARGS__);         \
1262         LU_TYPE_START(mod, __VA_ARGS__);        \
1263         LU_TYPE_STOP(mod, __VA_ARGS__)
1264
1265 int   lu_context_init  (struct lu_context *ctx, __u32 tags);
1266 void  lu_context_fini  (struct lu_context *ctx);
1267 void  lu_context_enter (struct lu_context *ctx);
1268 void  lu_context_exit  (struct lu_context *ctx);
1269 int   lu_context_refill(struct lu_context *ctx);
1270
1271 /*
1272  * Helper functions to operate on multiple keys. These are used by the default
1273  * device type operations, defined by LU_TYPE_INIT_FINI().
1274  */
1275
1276 int  lu_context_key_register_many(struct lu_context_key *k, ...);
1277 void lu_context_key_degister_many(struct lu_context_key *k, ...);
1278 void lu_context_key_revive_many  (struct lu_context_key *k, ...);
1279 void lu_context_key_quiesce_many(struct lu_device_type *t,
1280                                  struct lu_context_key *k, ...);
1281
1282 /*
1283  * update/clear ctx/ses tags.
1284  */
1285 void lu_context_tags_update(__u32 tags);
1286 void lu_context_tags_clear(__u32 tags);
1287 void lu_session_tags_update(__u32 tags);
1288 void lu_session_tags_clear(__u32 tags);
1289
1290 /**
1291  * Environment.
1292  */
1293 struct lu_env {
1294         /**
1295          * "Local" context, used to store data instead of stack.
1296          */
1297         struct lu_context  le_ctx;
1298         /**
1299          * "Session" context for per-request data.
1300          */
1301         struct lu_context *le_ses;
1302 };
1303
1304 int  lu_env_init  (struct lu_env *env, __u32 tags);
1305 void lu_env_fini  (struct lu_env *env);
1306 int  lu_env_refill(struct lu_env *env);
1307 int  lu_env_refill_by_tags(struct lu_env *env, __u32 ctags, __u32 stags);
1308
1309 static inline void* lu_env_info(const struct lu_env *env,
1310                                 const struct lu_context_key *key)
1311 {
1312         void *info;
1313         info = lu_context_key_get(&env->le_ctx, key);
1314         if (!info) {
1315                 if (!lu_env_refill((struct lu_env *)env))
1316                         info = lu_context_key_get(&env->le_ctx, key);
1317         }
1318         LASSERT(info);
1319         return info;
1320 }
1321
1322 struct lu_env *lu_env_find(void);
1323 int lu_env_add(struct lu_env *env);
1324 int lu_env_add_task(struct lu_env *env, struct task_struct *task);
1325 void lu_env_remove(struct lu_env *env);
1326
1327 /** @} lu_context */
1328
1329 /**
1330  * Output site statistical counters into a buffer. Suitable for
1331  * ll_rd_*()-style functions.
1332  */
1333 int lu_site_stats_seq_print(const struct lu_site *s, struct seq_file *m);
1334
1335 /**
1336  * Common name structure to be passed around for various name related methods.
1337  */
1338 struct lu_name {
1339         const char    *ln_name;
1340         int            ln_namelen;
1341 };
1342
1343 static inline bool name_is_dot_or_dotdot(const char *name, int namelen)
1344 {
1345         return name[0] == '.' &&
1346                (namelen == 1 || (namelen == 2 && name[1] == '.'));
1347 }
1348
1349 static inline bool lu_name_is_dot_or_dotdot(const struct lu_name *lname)
1350 {
1351         return name_is_dot_or_dotdot(lname->ln_name, lname->ln_namelen);
1352 }
1353
1354 static inline bool lu_name_is_temp_file(const char *name, int namelen,
1355                                         bool dot_prefix, int suffixlen)
1356 {
1357         int lower = 0;
1358         int upper = 0;
1359         int digit = 0;
1360         int len = suffixlen;
1361
1362         if (dot_prefix && name[0] != '.')
1363                 return false;
1364
1365         if (namelen < dot_prefix + suffixlen + 2 ||
1366             name[namelen - suffixlen - 1] != '.')
1367                 return false;
1368
1369         while (len) {
1370                 lower += islower(name[namelen - len]);
1371                 upper += isupper(name[namelen - len]);
1372                 digit += isdigit(name[namelen - len]);
1373                 len--;
1374         }
1375         /* mktemp() filename suffixes will have a mix of upper- and lower-case
1376          * letters and/or numbers, not all numbers, or all upper or lower-case.
1377          * About 0.07% of randomly-generated names will slip through,
1378          * but this avoids 99.93% of cross-MDT renames for those files.
1379          */
1380         if ((digit >= suffixlen - 1 && !isdigit(name[namelen - suffixlen])) ||
1381             upper == suffixlen || lower == suffixlen)
1382                 return false;
1383
1384         return true;
1385 }
1386
1387 static inline bool lu_name_is_backup_file(const char *name, int namelen,
1388                                           int *suffixlen)
1389 {
1390         if (namelen > 1 &&
1391             name[namelen - 2] != '.' && name[namelen - 1] == '~') {
1392                 if (suffixlen)
1393                         *suffixlen = 1;
1394                 return true;
1395         }
1396
1397         if (namelen > 4 && name[namelen - 4] == '.' &&
1398             (!strncasecmp(name + namelen - 3, "bak", 3) ||
1399              !strncasecmp(name + namelen - 3, "sav", 3))) {
1400                 if (suffixlen)
1401                         *suffixlen = 4;
1402                 return true;
1403         }
1404
1405         if (namelen > 5 && name[namelen - 5] == '.' &&
1406             !strncasecmp(name + namelen - 4, "orig", 4)) {
1407                 if (suffixlen)
1408                         *suffixlen = 5;
1409                 return true;
1410         }
1411
1412         return false;
1413 }
1414
1415 static inline bool lu_name_is_valid_len(const char *name, size_t name_len)
1416 {
1417         return name != NULL &&
1418                name_len > 0 &&
1419                name_len < INT_MAX &&
1420                strlen(name) == name_len &&
1421                memchr(name, '/', name_len) == NULL;
1422 }
1423
1424 /**
1425  * Validate names (path components)
1426  *
1427  * To be valid \a name must be non-empty, '\0' terminated of length \a
1428  * name_len, and not contain '/'. The maximum length of a name (before
1429  * say -ENAMETOOLONG will be returned) is really controlled by llite
1430  * and the server. We only check for something insane coming from bad
1431  * integer handling here.
1432  */
1433 static inline bool lu_name_is_valid_2(const char *name, size_t name_len)
1434 {
1435         return lu_name_is_valid_len(name, name_len) && name[name_len] == '\0';
1436 }
1437
1438 static inline bool lu_name_is_valid(const struct lu_name *ln)
1439 {
1440         return lu_name_is_valid_2(ln->ln_name, ln->ln_namelen);
1441 }
1442
1443 #define DNAME "%.*s"
1444 #define PNAME(ln)                                       \
1445         (lu_name_is_valid(ln) ? (ln)->ln_namelen : 0),  \
1446         (lu_name_is_valid(ln) ? (ln)->ln_name : "")
1447
1448 /**
1449  * Common buffer structure to be passed around for various xattr_{s,g}et()
1450  * methods.
1451  */
1452 struct lu_buf {
1453         void   *lb_buf;
1454         size_t  lb_len;
1455 };
1456
1457 #define DLUBUF "(%p %zu)"
1458 #define PLUBUF(buf) (buf)->lb_buf, (buf)->lb_len
1459
1460 /* read buffer params, should be filled out by out */
1461 struct lu_rdbuf {
1462         /** number of buffers */
1463         unsigned int    rb_nbufs;
1464         /** pointers to buffers */
1465         struct lu_buf   rb_bufs[];
1466 };
1467
1468 /**
1469  * One-time initializers, called at obdclass module initialization, not
1470  * exported.
1471  */
1472
1473 /**
1474  * Initialization of global lu_* data.
1475  */
1476 int lu_global_init(void);
1477
1478 /**
1479  * Dual to lu_global_init().
1480  */
1481 void lu_global_fini(void);
1482
1483 struct lu_kmem_descr {
1484         struct kmem_cache **ckd_cache;
1485         const char       *ckd_name;
1486         const size_t      ckd_size;
1487 };
1488
1489 int  lu_kmem_init(struct lu_kmem_descr *caches);
1490 void lu_kmem_fini(struct lu_kmem_descr *caches);
1491
1492 void lu_object_assign_fid(const struct lu_env *env, struct lu_object *o,
1493                           const struct lu_fid *fid);
1494 struct lu_object *lu_object_anon(const struct lu_env *env,
1495                                  struct lu_device *dev,
1496                                  const struct lu_object_conf *conf);
1497
1498 /** null buffer */
1499 extern struct lu_buf LU_BUF_NULL;
1500
1501 void lu_buf_free(struct lu_buf *buf);
1502 void lu_buf_alloc(struct lu_buf *buf, size_t size);
1503 void lu_buf_realloc(struct lu_buf *buf, size_t size);
1504
1505 int lu_buf_check_and_grow(struct lu_buf *buf, size_t len);
1506 struct lu_buf *lu_buf_check_and_alloc(struct lu_buf *buf, size_t len);
1507
1508 extern __u32 lu_context_tags_default;
1509 extern __u32 lu_session_tags_default;
1510
1511 static inline bool lu_device_is_cl(const struct lu_device *d)
1512 {
1513         return d->ld_type->ldt_tags & LU_DEVICE_CL;
1514 }
1515
1516 static inline bool lu_object_is_cl(const struct lu_object *o)
1517 {
1518         return lu_device_is_cl(o->lo_dev);
1519 }
1520
1521 /* bitflags used in rr / qos allocation */
1522 enum lq_flag {
1523         LQ_DIRTY        = 0, /* recalc qos data */
1524         LQ_SAME_SPACE,       /* the OSTs all have approx.
1525                               * the same space avail */
1526         LQ_RESET,            /* zero current penalties */
1527 };
1528
1529 #ifdef HAVE_SERVER_SUPPORT
1530 /* round-robin QoS data for LOD/LMV */
1531 struct lu_qos_rr {
1532         spinlock_t               lqr_alloc;     /* protect allocation index */
1533         __u32                    lqr_start_idx; /* start index of new inode */
1534         __u32                    lqr_offset_idx;/* aliasing for start_idx */
1535         int                      lqr_start_count;/* reseed counter */
1536         struct lu_tgt_pool       lqr_pool;      /* round-robin optimized list */
1537         unsigned long            lqr_flags;
1538 };
1539
1540 static inline void lu_qos_rr_init(struct lu_qos_rr *lqr)
1541 {
1542         spin_lock_init(&lqr->lqr_alloc);
1543         set_bit(LQ_DIRTY, &lqr->lqr_flags);
1544 }
1545
1546 #endif /* HAVE_SERVER_SUPPORT */
1547
1548 /* QoS data per MDS/OSS */
1549 struct lu_svr_qos {
1550         struct obd_uuid          lsq_uuid;      /* ptlrpc's c_remote_uuid */
1551         struct list_head         lsq_svr_list;  /* link to lq_svr_list */
1552         __u64                    lsq_bavail;    /* total bytes avail on svr */
1553         __u64                    lsq_iavail;    /* tital inode avail on svr */
1554         __u64                    lsq_penalty;   /* current penalty */
1555         __u64                    lsq_penalty_per_obj; /* penalty decrease
1556                                                        * every obj*/
1557         time64_t                 lsq_used;      /* last used time, seconds */
1558         __u32                    lsq_tgt_count; /* number of tgts on this svr */
1559         __u32                    lsq_id;        /* unique svr id */
1560 };
1561
1562 /* QoS data per MDT/OST */
1563 struct lu_tgt_qos {
1564         struct lu_svr_qos       *ltq_svr;       /* svr info */
1565         __u64                    ltq_penalty;   /* current penalty */
1566         __u64                    ltq_penalty_per_obj; /* penalty decrease
1567                                                        * every obj*/
1568         __u64                    ltq_weight;    /* net weighting */
1569         time64_t                 ltq_used;      /* last used time, seconds */
1570         bool                     ltq_usable:1;  /* usable for striping */
1571 };
1572
1573 /* target descriptor */
1574 struct lu_tgt_desc {
1575         union {
1576                 struct dt_device        *ltd_tgt;
1577                 struct obd_device       *ltd_obd;
1578         };
1579         struct obd_export *ltd_exp;
1580         struct obd_uuid    ltd_uuid;
1581         __u32              ltd_index;
1582         __u32              ltd_gen;
1583         struct list_head   ltd_kill;
1584         struct task_struct *ltd_recovery_task;
1585         struct mutex       ltd_fid_mutex;
1586         struct lu_tgt_qos  ltd_qos; /* qos info per target */
1587         struct obd_statfs  ltd_statfs;
1588         time64_t           ltd_statfs_age;
1589         unsigned long      ltd_active:1,/* is this target up for requests */
1590                            ltd_activate:1,/* should target be activated */
1591                            ltd_reap:1,  /* should this target be deleted */
1592                            ltd_got_update_log:1, /* Already got update log */
1593                            ltd_connecting:1; /* target is connecting */
1594 };
1595
1596 /* number of pointers at 2nd level */
1597 #define TGT_PTRS_PER_BLOCK      (PAGE_SIZE / sizeof(void *))
1598 /* number of pointers at 1st level - only need as many as max OST/MDT count */
1599 #define TGT_PTRS                ((LOV_ALL_STRIPES + 1) / TGT_PTRS_PER_BLOCK)
1600
1601 struct lu_tgt_desc_idx {
1602         struct lu_tgt_desc *ldi_tgt[TGT_PTRS_PER_BLOCK];
1603 };
1604
1605 /* QoS data for LOD/LMV */
1606 struct lu_qos {
1607         struct list_head         lq_svr_list;   /* lu_svr_qos list */
1608         struct rw_semaphore      lq_rw_sem;
1609         __u32                    lq_active_svr_count;
1610         unsigned int             lq_prio_free;   /* priority for free space */
1611         unsigned int             lq_threshold_rr;/* priority for rr */
1612 #ifdef HAVE_SERVER_SUPPORT
1613         struct lu_qos_rr         lq_rr;          /* round robin qos data */
1614 #endif
1615         unsigned long            lq_flags;
1616 #if 0
1617         unsigned long            lq_dirty:1,     /* recalc qos data */
1618                                  lq_same_space:1,/* the servers all have approx.
1619                                                   * the same space avail */
1620                                  lq_reset:1;     /* zero current penalties */
1621 #endif
1622 };
1623
1624 struct lu_tgt_descs {
1625         union {
1626                 struct lov_desc       ltd_lov_desc;
1627                 struct lmv_desc       ltd_lmv_desc;
1628         };
1629         /* list of known TGTs */
1630         struct lu_tgt_desc_idx  *ltd_tgt_idx[TGT_PTRS];
1631         /* Size of the lu_tgts array, granted to be a power of 2 */
1632         __u32                   ltd_tgts_size;
1633         /* bitmap of TGTs available */
1634         unsigned long           *ltd_tgt_bitmap;
1635         /* TGTs scheduled to be deleted */
1636         __u32                   ltd_death_row;
1637         /* Table refcount used for delayed deletion */
1638         int                     ltd_refcount;
1639         /* mutex to serialize concurrent updates to the tgt table */
1640         struct mutex            ltd_mutex;
1641         /* read/write semaphore used for array relocation */
1642         struct rw_semaphore     ltd_rw_sem;
1643         /* QoS */
1644         struct lu_qos           ltd_qos;
1645         /* all tgts in a packed array */
1646         struct lu_tgt_pool      ltd_tgt_pool;
1647         /* true if tgt is MDT */
1648         bool                    ltd_is_mdt;
1649 };
1650
1651 #define LTD_TGT(ltd, index)                                             \
1652          (ltd)->ltd_tgt_idx[(index) / TGT_PTRS_PER_BLOCK]->             \
1653                 ldi_tgt[(index) % TGT_PTRS_PER_BLOCK]
1654
1655 u64 lu_prandom_u64_max(u64 ep_ro);
1656 int lu_qos_add_tgt(struct lu_qos *qos, struct lu_tgt_desc *ltd);
1657 void lu_tgt_qos_weight_calc(struct lu_tgt_desc *tgt);
1658
1659 int lu_tgt_descs_init(struct lu_tgt_descs *ltd, bool is_mdt);
1660 void lu_tgt_descs_fini(struct lu_tgt_descs *ltd);
1661 int ltd_add_tgt(struct lu_tgt_descs *ltd, struct lu_tgt_desc *tgt);
1662 void ltd_del_tgt(struct lu_tgt_descs *ltd, struct lu_tgt_desc *tgt);
1663 bool ltd_qos_is_usable(struct lu_tgt_descs *ltd);
1664 int ltd_qos_penalties_calc(struct lu_tgt_descs *ltd);
1665 int ltd_qos_update(struct lu_tgt_descs *ltd, struct lu_tgt_desc *tgt,
1666                    __u64 *total_wt);
1667
1668 static inline struct lu_tgt_desc *ltd_first_tgt(struct lu_tgt_descs *ltd)
1669 {
1670         int index;
1671
1672         index = find_first_bit(ltd->ltd_tgt_bitmap,
1673                                ltd->ltd_tgts_size);
1674         return (index < ltd->ltd_tgts_size) ? LTD_TGT(ltd, index) : NULL;
1675 }
1676
1677 static inline struct lu_tgt_desc *ltd_next_tgt(struct lu_tgt_descs *ltd,
1678                                                struct lu_tgt_desc *tgt)
1679 {
1680         int index;
1681
1682         if (!tgt)
1683                 return NULL;
1684
1685         index = tgt->ltd_index;
1686         LASSERT(index < ltd->ltd_tgts_size);
1687         index = find_next_bit(ltd->ltd_tgt_bitmap,
1688                               ltd->ltd_tgts_size, index + 1);
1689         return (index < ltd->ltd_tgts_size) ? LTD_TGT(ltd, index) : NULL;
1690 }
1691
1692 #define ltd_foreach_tgt(ltd, tgt) \
1693         for (tgt = ltd_first_tgt(ltd); tgt; tgt = ltd_next_tgt(ltd, tgt))
1694
1695 #define ltd_foreach_tgt_safe(ltd, tgt, tmp)                               \
1696         for (tgt = ltd_first_tgt(ltd), tmp = ltd_next_tgt(ltd, tgt); tgt; \
1697              tgt = tmp, tmp = ltd_next_tgt(ltd, tgt))
1698
1699 /** @} lu */
1700 #endif /* __LUSTRE_LU_OBJECT_H */