Whamcloud - gitweb
9e9f1db63940ddf0ef39d5407412bfea2daf00b2
[fs/lustre-release.git] / lustre / include / dt_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  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef __LUSTRE_DT_OBJECT_H
34 #define __LUSTRE_DT_OBJECT_H
35
36 /** \defgroup dt dt
37  * Sub-class of lu_object with methods common for "data" objects in OST stack.
38  *
39  * Data objects behave like regular files: you can read/write them, get and
40  * set their attributes. Implementation of dt interface is supposed to
41  * implement some form of garbage collection, normally reference counting
42  * (nlink) based one.
43  *
44  * Examples: osd (lustre/osd) is an implementation of dt interface.
45  * @{
46  */
47
48 #include <obd_support.h>
49 /*
50  * super-class definitions.
51  */
52 #include <lu_object.h>
53
54 #include <libcfs/libcfs.h>
55
56 struct seq_file;
57 struct proc_dir_entry;
58 struct lustre_cfg;
59
60 struct thandle;
61 struct dt_device;
62 struct dt_object;
63 struct dt_index_features;
64 struct niobuf_local;
65 struct niobuf_remote;
66 struct ldlm_enqueue_info;
67
68 typedef enum {
69         MNTOPT_USERXATTR        = 0x00000001,
70         MNTOPT_ACL              = 0x00000002,
71 } mntopt_t;
72
73 struct dt_device_param {
74         unsigned           ddp_max_name_len;
75         unsigned           ddp_max_nlink;
76         unsigned           ddp_symlink_max;
77         mntopt_t           ddp_mntopts;
78         unsigned           ddp_max_ea_size;
79         unsigned           ddp_mount_type;
80         unsigned long long ddp_maxbytes;
81         /* per-inode space consumption */
82         short              ddp_inodespace;
83         /* maximum number of blocks in an extent */
84         unsigned           ddp_max_extent_blks;
85         /* per-extent insertion overhead to be used by client for grant
86          * calculation */
87         unsigned int       ddp_extent_tax;
88         unsigned int       ddp_brw_size;        /* optimal RPC size */
89         /* T10PI checksum type, zero if not supported */
90         enum cksum_types   ddp_t10_cksum_type;
91 };
92
93 /**
94  * Per-transaction commit callback function
95  */
96 struct dt_txn_commit_cb;
97 typedef void (*dt_cb_t)(struct lu_env *env, struct thandle *th,
98                         struct dt_txn_commit_cb *cb, int err);
99 /**
100  * Special per-transaction callback for cases when just commit callback
101  * is needed and per-device callback are not convenient to use
102  */
103 #define TRANS_COMMIT_CB_MAGIC   0xa0a00a0a
104 #define MAX_COMMIT_CB_STR_LEN   32
105
106 #define DCB_TRANS_STOP          0x1
107 struct dt_txn_commit_cb {
108         struct list_head        dcb_linkage;
109         dt_cb_t                 dcb_func;
110         void                    *dcb_data;
111         __u32                   dcb_magic;
112         __u32                   dcb_flags;
113         char                    dcb_name[MAX_COMMIT_CB_STR_LEN];
114 };
115
116 /**
117  * Operations on dt device.
118  */
119 struct dt_device_operations {
120         /**
121          * Return device-wide statistics.
122          *
123          * Return device-wide stats including block size, total and
124          * free blocks, total and free objects, etc. See struct obd_statfs
125          * for the details.
126          *
127          * \param[in] env       execution environment for this thread
128          * \param[in] dev       dt device
129          * \param[out] osfs     stats information
130          *
131          * \retval 0            on success
132          * \retval negative     negated errno on error
133          */
134         int   (*dt_statfs)(const struct lu_env *env,
135                            struct dt_device *dev,
136                            struct obd_statfs *osfs,
137                            struct obd_statfs_info *info);
138
139         /**
140          * Create transaction.
141          *
142          * Create in-memory structure representing the transaction for the
143          * caller. The structure returned will be used by the calling thread
144          * to specify the transaction the updates belong to. Once created
145          * successfully ->dt_trans_stop() must be called in any case (with
146          * ->dt_trans_start() and updates or not) so that the transaction
147          * handle and other resources can be released by the layers below.
148          *
149          * \param[in] env       execution environment for this thread
150          * \param[in] dev       dt device
151          *
152          * \retval pointer to handle    if creation succeeds
153          * \retval ERR_PTR(errno)       if creation fails
154          */
155         struct thandle *(*dt_trans_create)(const struct lu_env *env,
156                                            struct dt_device *dev);
157
158         /**
159          * Start transaction.
160          *
161          * Start the transaction. The transaction described by \a th can be
162          * started only once. Another start is considered as an error.
163          * A thread is not supposed to start a transaction while another
164          * transaction isn't closed by the thread (though multiple handles
165          * can be created). The caller should start the transaction once
166          * all possible updates are declared (see the ->do_declare_* methods
167          * below) and all the needed resources are reserved.
168          *
169          * \param[in] env       execution environment for this thread
170          * \param[in] dev       dt device
171          * \param[in] th        transaction handle
172          *
173          * \retval 0            on success
174          * \retval negative     negated errno on error
175          */
176         int   (*dt_trans_start)(const struct lu_env *env,
177                                 struct dt_device *dev,
178                                 struct thandle *th);
179
180         /**
181          * Stop transaction.
182          *
183          * Once stopped the transaction described by \a th is complete (all
184          * the needed updates are applied) and further processing such as
185          * flushing to disk, sending to another target, etc, is handled by
186          * lower layers. The caller can't access this transaction by the
187          * handle anymore (except from the commit callbacks, see below).
188          *
189          * \param[in] env       execution environment for this thread
190          * \param[in] dev       dt device
191          * \param[in] th        transaction handle
192          *
193          * \retval 0            on success
194          * \retval negative     negated errno on error
195          */
196         int   (*dt_trans_stop)(const struct lu_env *env,
197                                struct dt_device *dev,
198                                struct thandle *th);
199
200         /**
201          * Add commit callback to the transaction.
202          *
203          * Add a commit callback to the given transaction handle. The callback
204          * will be called when the associated transaction is stored. I.e. the
205          * transaction will survive an event like power off if the callback did
206          * run. The number of callbacks isn't limited, but you should note that
207          * some disk filesystems do handle the commit callbacks in the thread
208          * handling commit/flush of all the transactions, meaning that new
209          * transactions are blocked from commit and flush until all the
210          * callbacks are done. Also, note multiple callbacks can be running
211          * concurrently using multiple CPU cores. The callbacks will be running
212          * in a special environment which can not be used to pass data around.
213          *
214          * \param[in] th        transaction handle
215          * \param[in] dcb       commit callback description
216          *
217          * \retval 0            on success
218          * \retval negative     negated errno on error
219          */
220         int   (*dt_trans_cb_add)(struct thandle *th,
221                                  struct dt_txn_commit_cb *dcb);
222
223         /**
224          * Return FID of root index object.
225          *
226          * Return the FID of the root object in the filesystem. This object
227          * is usually provided as a bootstrap point by a disk filesystem.
228          * This is up to the implementation which FID to use, though
229          * [FID_SEQ_ROOT:1:0] is reserved for this purpose.
230          *
231          * \param[in] env       execution environment for this thread
232          * \param[in] dev       dt device
233          * \param[out] fid      FID of the root object
234          *
235          * \retval 0            on success
236          * \retval negative     negated errno on error
237          */
238         int   (*dt_root_get)(const struct lu_env *env,
239                              struct dt_device *dev,
240                              struct lu_fid *f);
241
242         /**
243          * Return device configuration data.
244          *
245          * Return device (disk fs, actually) specific configuration.
246          * The configuration isn't subject to change at runtime.
247          * See struct dt_device_param for the details.
248          *
249          * \param[in] env       execution environment for this thread
250          * \param[in] dev       dt device
251          * \param[out] param    configuration parameters
252          */
253         void  (*dt_conf_get)(const struct lu_env *env,
254                              const struct dt_device *dev,
255                              struct dt_device_param *param);
256
257         /**
258          * Return device's super block.
259          *
260          * \param[in] dev       dt device
261          */
262         struct super_block *(*dt_mnt_sb_get)(const struct dt_device *dev);
263
264         /**
265          * Sync the device.
266          *
267          * Sync all the cached state (dirty buffers, pages, etc) to the
268          * persistent storage. The method returns control once the sync is
269          * complete. This operation may incur significant I/O to disk and
270          * should be reserved for cases where a global sync is strictly
271          * necessary.
272          *
273          * \param[in] env       execution environment for this thread
274          * \param[in] dev       dt device
275          *
276          * \retval 0            on success
277          * \retval negative     negated errno on error
278          */
279         int   (*dt_sync)(const struct lu_env *env,
280                          struct dt_device *dev);
281
282         /**
283          * Make device read-only.
284          *
285          * Prevent new modifications to the device. This is a very specific
286          * state where all the changes are accepted successfully and the
287          * commit callbacks are called, but persistent state never changes.
288          * Used only in the tests to simulate power-off scenario.
289          *
290          * \param[in] env       execution environment for this thread
291          * \param[in] dev       dt device
292          *
293          * \retval 0            on success
294          * \retval negative     negated errno on error
295          */
296         int   (*dt_ro)(const struct lu_env *env,
297                        struct dt_device *dev);
298
299         /**
300          * Start transaction commit asynchronously.
301          *
302
303          * Provide a hint to the underlying filesystem that it should start
304          * committing soon. The control returns immediately. It's up to the
305          * layer implementing the method how soon to start committing. Usually
306          * this should be throttled to some extent, otherwise the number of
307          * aggregated transaction goes too high causing performance drop.
308          *
309          * \param[in] env       execution environment for this thread
310          * \param[in] dev       dt device
311          *
312          * \retval 0            on success
313          * \retval negative     negated errno on error
314          */
315          int   (*dt_commit_async)(const struct lu_env *env,
316                                   struct dt_device *dev);
317 };
318
319 struct dt_index_features {
320         /** required feature flags from enum dt_index_flags */
321         __u32 dif_flags;
322         /** minimal required key size */
323         size_t dif_keysize_min;
324         /** maximal required key size, 0 if no limit */
325         size_t dif_keysize_max;
326         /** minimal required record size */
327         size_t dif_recsize_min;
328         /** maximal required record size, 0 if no limit */
329         size_t dif_recsize_max;
330         /** pointer size for record */
331         size_t dif_ptrsize;
332 };
333
334 enum dt_index_flags {
335         /** index supports variable sized keys */
336         DT_IND_VARKEY = 1 << 0,
337         /** index supports variable sized records */
338         DT_IND_VARREC = 1 << 1,
339         /** index can be modified */
340         DT_IND_UPDATE = 1 << 2,
341         /** index supports records with non-unique (duplicate) keys */
342         DT_IND_NONUNQ = 1 << 3,
343         /**
344          * index support fixed-size keys sorted with natural numerical way
345          * and is able to return left-side value if no exact value found
346          */
347         DT_IND_RANGE = 1 << 4,
348 };
349
350 /* for dt_read_lock() and dt_write_lock() object lock rule */
351 enum dt_object_role {
352         DT_SRC_PARENT,
353         DT_SRC_CHILD,
354         DT_TGT_PARENT,
355         DT_TGT_CHILD,
356         DT_TGT_ORPHAN,
357         DT_LASTID,
358 };
359
360 /**
361  * Features, required from index to support file system directories (mapping
362  * names to fids).
363  */
364 extern const struct dt_index_features dt_directory_features;
365 extern const struct dt_index_features dt_otable_features;
366 extern const struct dt_index_features dt_lfsck_layout_orphan_features;
367 extern const struct dt_index_features dt_lfsck_layout_dangling_features;
368 extern const struct dt_index_features dt_lfsck_namespace_features;
369
370 /* index features supported by the accounting objects */
371 extern const struct dt_index_features dt_acct_features;
372
373 /* index features supported by the quota global indexes */
374 extern const struct dt_index_features dt_quota_glb_features;
375
376 /* index features supported by the quota slave indexes */
377 extern const struct dt_index_features dt_quota_slv_features;
378
379 /* index features supported by the nodemap index */
380 extern const struct dt_index_features dt_nodemap_features;
381
382 /**
383  * This is a general purpose dt allocation hint.
384  * It now contains the parent object.
385  * It can contain any allocation hint in the future.
386  */
387 struct dt_allocation_hint {
388         struct dt_object        *dah_parent;
389         const void              *dah_eadata;
390         int                     dah_eadata_len;
391         __u32                   dah_mode;
392         int                     dah_append_stripes;
393         char                    *dah_append_pool;
394 };
395
396 /**
397  * object type specifier.
398  */
399
400 enum dt_format_type {
401         DFT_REGULAR,
402         DFT_DIR,
403         /** for mknod */
404         DFT_NODE,
405         /** for special index */
406         DFT_INDEX,
407         /** for symbolic link */
408         DFT_SYM,
409 };
410
411 /**
412  * object format specifier.
413  */
414 struct dt_object_format {
415         /** type for dt object */
416         enum dt_format_type dof_type;
417         union {
418                 struct dof_regular {
419                         int striped;
420                 } dof_reg;
421                 struct dof_dir {
422                 } dof_dir;
423                 struct dof_node {
424                 } dof_node;
425                 /**
426                  * special index need feature as parameter to create
427                  * special idx
428                  */
429                 struct dof_index {
430                         const struct dt_index_features *di_feat;
431                 } dof_idx;
432         } u;
433 };
434
435 enum dt_format_type dt_mode_to_dft(__u32 mode);
436
437 typedef __u64 dt_obj_version_t;
438
439 union ldlm_policy_data;
440
441 struct md_layout_change;
442
443 /**
444  * A dt_object provides common operations to create and destroy
445  * objects and to manage regular and extended attributes.
446  */
447 struct dt_object_operations {
448         /**
449          * Get read lock on object.
450          *
451          * Read lock is compatible with other read locks, so it's shared.
452          * Read lock is not compatible with write lock which is exclusive.
453          * The lock is blocking and can't be used from an interrupt context.
454          *
455          * \param[in] env       execution environment for this thread
456          * \param[in] dt        object to lock for reading
457          * \param[in] role      a hint to debug locks (see kernel's mutexes)
458          */
459         void  (*do_read_lock)(const struct lu_env *env,
460                               struct dt_object *dt,
461                               unsigned role);
462
463         /*
464          * Get write lock on object.
465          *
466          * Write lock is exclusive and cannot be shared. The lock is blocking
467          * and can't be used from an interrupt context.
468          *
469          * \param[in] env       execution environment for this thread
470          * \param[in] dt        object to lock for writing
471          * \param[in] role      a hint to debug locks (see kernel's mutexes)
472          *
473          */
474         void  (*do_write_lock)(const struct lu_env *env,
475                                struct dt_object *dt,
476                                unsigned role);
477
478         /**
479          * Release read lock.
480          *
481          * \param[in] env       execution environment for this thread
482          * \param[in] dt        object
483          */
484         void  (*do_read_unlock)(const struct lu_env *env,
485                                 struct dt_object *dt);
486
487         /**
488          * Release write lock.
489          *
490          * \param[in] env       execution environment for this thread
491          * \param[in] dt        object
492          */
493         void  (*do_write_unlock)(const struct lu_env *env,
494                                  struct dt_object *dt);
495
496         /**
497          * Check whether write lock is held.
498          *
499          * The caller can learn whether write lock is held on the object
500          *
501          * \param[in] env       execution environment for this thread
502          * \param[in] dt        object
503          *
504          * \retval 0            no write lock
505          * \retval 1            write lock is held
506          */
507         int  (*do_write_locked)(const struct lu_env *env,
508                                 struct dt_object *dt);
509
510         /**
511          * Declare intention to request reqular attributes.
512          *
513          * Notity the underlying filesystem that the caller may request regular
514          * attributes with ->do_attr_get() soon. This allows OSD to implement
515          * prefetching logic in an object-oriented manner. The implementation
516          * can be noop. This method should avoid expensive delays such as
517          * waiting on disk I/O, otherwise the goal of enabling a performance
518          * optimization would be defeated.
519          *
520          * \param[in] env       execution environment for this thread
521          * \param[in] dt        object
522          *
523          * \retval 0            on success
524          * \retval negative     negated errno on error
525          */
526         int   (*do_declare_attr_get)(const struct lu_env *env,
527                                      struct dt_object *dt);
528
529         /**
530          * Return regular attributes.
531          *
532          * The object must exist. Currently all the attributes should be
533          * returned, but in the future this can be improved so that only
534          * a selected set is returned. This can improve performance as in
535          * some cases attributes are stored in different places and
536          * getting them all can be an iterative and expensive process.
537          *
538          * \param[in] env       execution environment for this thread
539          * \param[in] dt        object
540          * \param[out] attr     attributes to fill
541          *
542          * \retval 0            on success
543          * \retval negative     negated errno on error
544          */
545         int   (*do_attr_get)(const struct lu_env *env,
546                              struct dt_object *dt,
547                              struct lu_attr *attr);
548
549         /**
550          * Declare intention to change regular object's attributes.
551          *
552          * Notify the underlying filesystem that the regular attributes may
553          * change in this transaction. This enables the layer below to prepare
554          * resources (e.g. journal credits in ext4).  This method should be
555          * called between creating the transaction and starting it. Note that
556          * the la_valid field of \a attr specifies which attributes will change.
557          * The object need not exist.
558          *
559          * \param[in] env       execution environment for this thread
560          * \param[in] dt        object
561          * \param[in] attr      attributes to change specified in attr.la_valid
562          * \param[in] th        transaction handle
563          *
564          * \retval 0            on success
565          * \retval negative     negated errno on error
566          */
567         int   (*do_declare_attr_set)(const struct lu_env *env,
568                                      struct dt_object *dt,
569                                      const struct lu_attr *attr,
570                                      struct thandle *th);
571
572         /**
573          * Change regular attributes.
574          *
575          * Change regular attributes in the given transaction. Note only
576          * attributes flagged by attr.la_valid change. The object must
577          * exist. If the layer implementing this method is responsible for
578          * quota, then the method should maintain object accounting for the
579          * given credentials when la_uid/la_gid changes.
580          *
581          * \param[in] env       execution environment for this thread
582          * \param[in] dt        object
583          * \param[in] attr      new attributes to apply
584          * \param[in] th        transaction handle
585          *
586          * \retval 0            on success
587          * \retval negative     negated errno on error
588          */
589         int   (*do_attr_set)(const struct lu_env *env,
590                              struct dt_object *dt,
591                              const struct lu_attr *attr,
592                              struct thandle *th);
593
594         /**
595          * Declare intention to request extented attribute.
596          *
597          * Notify the underlying filesystem that the caller may request extended
598          * attribute with ->do_xattr_get() soon. This allows OSD to implement
599          * prefetching logic in an object-oriented manner. The implementation
600          * can be noop. This method should avoid expensive delays such as
601          * waiting on disk I/O, otherwise the goal of enabling a performance
602          * optimization would be defeated.
603          *
604          * \param[in] env       execution environment for this thread
605          * \param[in] dt        object
606          * \param[in] buf       unused, may be removed in the future
607          * \param[in] name      name of the extended attribute
608          *
609          * \retval 0            on success
610          * \retval negative     negated errno on error
611          */
612         int   (*do_declare_xattr_get)(const struct lu_env *env,
613                                       struct dt_object *dt,
614                                       struct lu_buf *buf,
615                                       const char *name);
616
617         /**
618          * Return a value of an extended attribute.
619          *
620          * The object must exist. If the buffer is NULL, then the method
621          * must return the size of the value.
622          *
623          * \param[in] env       execution environment for this thread
624          * \param[in] dt        object
625          * \param[out] buf      buffer in which to store the value
626          * \param[in] name      name of the extended attribute
627          *
628          * \retval 0            on success
629          * \retval -ERANGE      if \a buf is too small
630          * \retval negative     negated errno on error
631          * \retval positive     value's size if \a buf is NULL or has zero size
632          */
633         int   (*do_xattr_get)(const struct lu_env *env,
634                               struct dt_object *dt,
635                               struct lu_buf *buf,
636                               const char *name);
637
638         /**
639          * Declare intention to change an extended attribute.
640          *
641          * Notify the underlying filesystem that the extended attribute may
642          * change in this transaction.  This enables the layer below to prepare
643          * resources (e.g. journal credits in ext4).  This method should be
644          * called between creating the transaction and starting it. The object
645          * need not exist.
646          *
647          * \param[in] env       execution environment for this thread
648          * \param[in] dt        object
649          * \param[in] buf       buffer storing new value of the attribute
650          * \param[in] name      name of the attribute
651          * \param[in] fl        LU_XATTR_CREATE - fail if EA exists
652          *                      LU_XATTR_REPLACE - fail if EA doesn't exist
653          * \param[in] th        transaction handle
654          *
655          * \retval 0            on success
656          * \retval negative     negated errno on error
657          */
658         int   (*do_declare_xattr_set)(const struct lu_env *env,
659                                       struct dt_object *dt,
660                                       const struct lu_buf *buf,
661                                       const char *name,
662                                       int fl,
663                                       struct thandle *th);
664
665         /**
666          * Set an extended attribute.
667          *
668          * Change or replace the specified extended attribute (EA).
669          * The flags passed in \a fl dictate whether the EA is to be
670          * created or replaced, as follows.
671          *   LU_XATTR_CREATE - fail if EA exists
672          *   LU_XATTR_REPLACE - fail if EA doesn't exist
673          * The object must exist.
674          *
675          * \param[in] env       execution environment for this thread
676          * \param[in] dt        object
677          * \param[in] buf       buffer storing new value of the attribute
678          * \param[in] name      name of the attribute
679          * \param[in] fl        flags indicating EA creation or replacement
680          * \param[in] th        transaction handle
681          *
682          * \retval 0            on success
683          * \retval negative     negated errno on error
684          */
685         int   (*do_xattr_set)(const struct lu_env *env,
686                               struct dt_object *dt,
687                               const struct lu_buf *buf,
688                               const char *name,
689                               int fl,
690                               struct thandle *th);
691
692         /**
693          * Declare intention to delete an extended attribute.
694          *
695          * Notify the underlying filesystem that the extended attribute may
696          * be deleted in this transaction. This enables the layer below to
697          * prepare resources (e.g. journal credits in ext4).  This method
698          * should be called between creating the transaction and starting it.
699          * The object need not exist.
700          *
701          * \param[in] env       execution environment for this thread
702          * \param[in] dt        object
703          * \param[in] name      name of the attribute
704          * \param[in] th        transaction handle
705          *
706          * \retval 0            on success
707          * \retval negative     negated errno on error
708          */
709         int   (*do_declare_xattr_del)(const struct lu_env *env,
710                                       struct dt_object *dt,
711                                       const char *name,
712                                       struct thandle *th);
713
714         /**
715          * Delete an extended attribute.
716          *
717          * This method deletes the specified extended attribute. The object
718          * must exist.
719          *
720          * \param[in] env       execution environment for this thread
721          * \param[in] dt        object
722          * \param[in] name      name of the attribute
723          * \param[in] th        transaction handle
724          *
725          * \retval 0            on success
726          * \retval negative     negated errno on error
727          */
728         int   (*do_xattr_del)(const struct lu_env *env,
729                               struct dt_object *dt,
730                               const char *name,
731                               struct thandle *th);
732
733         /**
734          * Return a list of the extended attributes.
735          *
736          * Fills the passed buffer with a list of the extended attributes
737          * found in the object. The names are separated with '\0'.
738          * The object must exist.
739          *
740          * \param[in] env       execution environment for this thread
741          * \param[in] dt        object
742          * \param[out] buf      buffer to put the list in
743          *
744          * \retval positive     bytes used/required in the buffer
745          * \retval negative     negated errno on error
746          */
747         int   (*do_xattr_list)(const struct lu_env *env,
748                                struct dt_object *dt,
749                                const struct lu_buf *buf);
750
751         /**
752          * Prepare allocation hint for a new object.
753          *
754          * This method is used by the caller to inform OSD of the parent-child
755          * relationship between two objects and enable efficient object
756          * allocation. Filled allocation hint will be passed to ->do_create()
757          * later.
758          *
759          * \param[in] env       execution environment for this thread
760          * \param[out] ah       allocation hint
761          * \param[in] parent    parent object (can be NULL)
762          * \param[in] child     child object
763          * \param[in] _mode     type of the child object
764          */
765         void  (*do_ah_init)(const struct lu_env *env,
766                             struct dt_allocation_hint *ah,
767                             struct dt_object *parent,
768                             struct dt_object *child,
769                             umode_t mode);
770
771         /**
772          * Declare intention to create a new object.
773          *
774          * Notify the underlying filesystem that the object may be created
775          * in this transaction. This enables the layer below to prepare
776          * resources (e.g. journal credits in ext4).  This method should be
777          * called between creating the transaction and starting it.
778          *
779          * If the layer implementing this method is responsible for quota,
780          * then the method should reserve an object for the given credentials
781          * and return an error if quota is over. If object creation later
782          * fails for some reason, then the reservation should be released
783          * properly (usually in ->dt_trans_stop()).
784          *
785          * \param[in] env       execution environment for this thread
786          * \param[in] dt        object
787          * \param[in] attr      attributes of the new object
788          * \param[in] hint      allocation hint
789          * \param[in] dof       object format
790          * \param[in] th        transaction handle
791          *
792          * \retval 0            on success
793          * \retval negative     negated errno on error
794          */
795         int   (*do_declare_create)(const struct lu_env *env,
796                                    struct dt_object *dt,
797                                    struct lu_attr *attr,
798                                    struct dt_allocation_hint *hint,
799                                    struct dt_object_format *dof,
800                                    struct thandle *th);
801
802         /**
803          * Create new object.
804          *
805          * The method creates the object passed with the specified attributes
806          * and object format. Object allocation procedure can use information
807          * stored in the allocation hint. Different object formats are supported
808          * (see enum dt_format_type and struct dt_object_format) depending on
809          * the device. If creation succeeds, then LOHA_EXISTS flag must be set
810          * in the LU-object header attributes.
811          *
812          * If the layer implementing this method is responsible for quota,
813          * then the method should maintain object accounting for the given
814          * credentials.
815          *
816          * \param[in] env       execution environment for this thread
817          * \param[in] dt        object
818          * \param[in] attr      attributes of the new object
819          * \param[in] hint      allocation hint
820          * \param[in] dof       object format
821          * \param[in] th        transaction handle
822          *
823          * \retval 0            on success
824          * \retval negative     negated errno on error
825          */
826         int   (*do_create)(const struct lu_env *env,
827                            struct dt_object *dt,
828                            struct lu_attr *attr,
829                            struct dt_allocation_hint *hint,
830                            struct dt_object_format *dof,
831                            struct thandle *th);
832
833         /**
834          * Declare intention to destroy an object.
835          *
836          * Notify the underlying filesystem that the object may be destroyed
837          * in this transaction. This enables the layer below to prepare
838          * resources (e.g. journal credits in ext4).  This method should be
839          * called between creating the transaction and starting it. The object
840          * need not exist.
841          *
842          * \param[in] env       execution environment for this thread
843          * \param[in] dt        object
844          * \param[in] th        transaction handle
845          *
846          * \retval 0            on success
847          * \retval negative     negated errno on error
848          */
849         int   (*do_declare_destroy)(const struct lu_env *env,
850                                     struct dt_object *dt,
851                                     struct thandle *th);
852
853         /**
854          * Destroy an object.
855          *
856          * This method destroys the object and all the resources associated
857          * with the object (data, key/value pairs, extended attributes, etc).
858          * The object must exist. If destroy is successful, then flag
859          * LU_OBJECT_HEARD_BANSHEE should be set to forbid access to this
860          * instance of in-core object. Any subsequent access to the same FID
861          * should get another instance with no LOHA_EXIST flag set.
862          *
863          * If the layer implementing this method is responsible for quota,
864          * then the method should maintain object accounting for the given
865          * credentials.
866          *
867          * \param[in] env       execution environment for this thread
868          * \param[in] dt        object
869          * \param[in] th        transaction handle
870          *
871          * \retval 0            on success
872          * \retval negative     negated errno on error
873          */
874         int   (*do_destroy)(const struct lu_env *env,
875                             struct dt_object *dt,
876                             struct thandle *th);
877
878         /**
879          * Try object as an index.
880          *
881          * Announce that this object is going to be used as an index. This
882          * operation checks that object supports indexing operations and
883          * installs appropriate dt_index_operations vector on success.
884          * Also probes for features. Operation is successful if all required
885          * features are supported. It's not possible to access the object
886          * with index methods before ->do_index_try() returns success.
887          *
888          * \param[in] env       execution environment for this thread
889          * \param[in] dt        object
890          * \param[in] feat      index features
891          *
892          * \retval 0            on success
893          * \retval negative     negated errno on error
894          */
895         int   (*do_index_try)(const struct lu_env *env,
896                               struct dt_object *dt,
897                               const struct dt_index_features *feat);
898
899         /**
900          * Declare intention to increment nlink count.
901          *
902          * Notify the underlying filesystem that the nlink regular attribute
903          * be changed in this transaction. This enables the layer below to
904          * prepare resources (e.g. journal credits in ext4).  This method
905          * should be called between creating the transaction and starting it.
906          * The object need not exist.
907          *
908          * \param[in] env       execution environment for this thread
909          * \param[in] dt        object
910          * \param[in] th        transaction handle
911          *
912          * \retval 0            on success
913          * \retval negative     negated errno on error
914          */
915         int   (*do_declare_ref_add)(const struct lu_env *env,
916                                     struct dt_object *dt,
917                                     struct thandle *th);
918
919         /**
920          * Increment nlink.
921          *
922          * Increment nlink (from the regular attributes set) in the given
923          * transaction. Note the absolute limit for nlink should be learnt
924          * from struct dt_device_param::ddp_max_nlink. The object must exist.
925          *
926          * \param[in] env       execution environment for this thread
927          * \param[in] dt        object
928          * \param[in] th        transaction handle
929          *
930          * \retval 0            on success
931          * \retval negative     negated errno on error
932          */
933         int   (*do_ref_add)(const struct lu_env *env,
934                             struct dt_object *dt, struct thandle *th);
935
936         /**
937          * Declare intention to decrement nlink count.
938          *
939          * Notify the underlying filesystem that the nlink regular attribute
940          * be changed in this transaction. This enables the layer below to
941          * prepare resources (e.g. journal credits in ext4).  This method
942          * should be called between creating the transaction and starting it.
943          * The object need not exist.
944          *
945          * \param[in] env       execution environment for this thread
946          * \param[in] dt        object
947          * \param[in] th        transaction handle
948          *
949          * \retval 0            on success
950          * \retval negative     negated errno on error
951          */
952         int   (*do_declare_ref_del)(const struct lu_env *env,
953                                     struct dt_object *dt,
954                                     struct thandle *th);
955
956         /**
957          * Decrement nlink.
958          *
959          * Decrement nlink (from the regular attributes set) in the given
960          * transaction. The object must exist.
961          *
962          * \param[in] env       execution environment for this thread
963          * \param[in] dt        object
964          * \param[in] th        transaction handle
965          *
966          * \retval 0            on success
967          * \retval negative     negated errno on error
968          */
969         int   (*do_ref_del)(const struct lu_env *env,
970                             struct dt_object *dt,
971                             struct thandle *th);
972
973         /**
974          * Sync obect.
975          *
976          * The method is called to sync specified range of the object to a
977          * persistent storage. The control is returned once the operation is
978          * complete. The difference from ->do_sync() is that the object can
979          * be in-sync with the persistent storage (nothing to flush), then
980          * the method returns quickly with no I/O overhead. So, this method
981          * should be preferred over ->do_sync() where possible. Also note that
982          * if the object isn't clean, then some disk filesystems will call
983          * ->do_sync() to maintain overall consistency, in which case it's
984          * still very expensive.
985          *
986          * \param[in] env       execution environment for this thread
987          * \param[in] dt        object
988          * \param[in] start     start of the range to sync
989          * \param[in] end       end of the range to sync
990          *
991          * \retval 0            on success
992          * \retval negative     negated errno on error
993          */
994         int (*do_object_sync)(const struct lu_env *env, struct dt_object *obj,
995                               __u64 start, __u64 end);
996
997         /**
998          * Lock object.
999          *
1000          * Lock object(s) using Distributed Lock Manager (LDLM).
1001          *
1002          * Get LDLM locks for the object. Currently used to lock "remote"
1003          * objects in DNE configuration - a service running on MDTx needs
1004          * to lock an object on MDTy.
1005          *
1006          * \param[in] env       execution environment for this thread
1007          * \param[in] dt        object
1008          * \param[out] lh       lock handle, sometimes used, sometimes not
1009          * \param[in] einfo     ldlm callbacks, locking type and mode
1010          * \param[out] einfo    private data to be passed to unlock later
1011          * \param[in] policy    inodebits data
1012          *
1013          * \retval 0            on success
1014          * \retval negative     negated errno on error
1015          */
1016         int (*do_object_lock)(const struct lu_env *env, struct dt_object *dt,
1017                               struct lustre_handle *lh,
1018                               struct ldlm_enqueue_info *einfo,
1019                               union ldlm_policy_data *policy);
1020
1021         /**
1022          * Unlock object.
1023          *
1024          * Release LDLM lock(s) granted with ->do_object_lock().
1025          *
1026          * \param[in] env       execution environment for this thread
1027          * \param[in] dt        object
1028          * \param[in] einfo     lock handles, from ->do_object_lock()
1029          * \param[in] policy    inodebits data
1030          *
1031          * \retval 0            on success
1032          * \retval negative     negated errno on error
1033          */
1034         int (*do_object_unlock)(const struct lu_env *env,
1035                                 struct dt_object *dt,
1036                                 struct ldlm_enqueue_info *einfo,
1037                                 union ldlm_policy_data *policy);
1038
1039         /**
1040          * Invalidate attribute cache.
1041          *
1042          * This method invalidate attribute cache of the object, which is on OSP
1043          * only.
1044          *
1045          * \param[in] env       execution envionment for this thread
1046          * \param[in] dt        object
1047          *
1048          * \retval 0            on success
1049          * \retval negative     negated errno on error
1050          */
1051         int   (*do_invalidate)(const struct lu_env *env, struct dt_object *dt);
1052
1053         /**
1054          * Declare intention to instaintiate extended layout component.
1055          *
1056          * \param[in] env       execution environment
1057          * \param[in] dt        DT object
1058          * \param[in] layout    data structure to describe the changes to
1059          *                      the DT object's layout
1060          * \param[in] buf       buffer containing client's lovea or empty
1061          *
1062          * \retval 0            success
1063          * \retval -ne          error code
1064          */
1065         int (*do_declare_layout_change)(const struct lu_env *env,
1066                                         struct dt_object *dt,
1067                                         struct md_layout_change *mlc,
1068                                         struct thandle *th);
1069
1070         /**
1071          * Client is trying to write to un-instantiated layout component.
1072          *
1073          * \param[in] env       execution environment
1074          * \param[in] dt        DT object
1075          * \param[in] layout    data structure to describe the changes to
1076          *                      the DT object's layout
1077          * \param[in] buf       buffer containing client's lovea or empty
1078          *
1079          * \retval 0            success
1080          * \retval -ne          error code
1081          */
1082         int (*do_layout_change)(const struct lu_env *env, struct dt_object *dt,
1083                                 struct md_layout_change *mlc,
1084                                 struct thandle *th);
1085 };
1086
1087 enum dt_bufs_type {
1088         DT_BUFS_TYPE_READ       = 0x0000,
1089         DT_BUFS_TYPE_WRITE      = 0x0001,
1090         DT_BUFS_TYPE_READAHEAD  = 0x0002,
1091         DT_BUFS_TYPE_LOCAL      = 0x0004,
1092 };
1093
1094 /**
1095  * Per-dt-object operations on "file body" - unstructure raw data.
1096  */
1097 struct dt_body_operations {
1098         /**
1099          * Read data.
1100          *
1101          * Read unstructured data from an existing regular object.
1102          * Only data before attr.la_size is returned.
1103          *
1104          * \param[in] env       execution environment for this thread
1105          * \param[in] dt        object
1106          * \param[out] buf      buffer (including size) to copy data in
1107          * \param[in] pos       position in the object to start
1108          * \param[out] pos      original value of \a pos + bytes returned
1109          *
1110          * \retval positive     bytes read on success
1111          * \retval negative     negated errno on error
1112          */
1113         ssize_t (*dbo_read)(const struct lu_env *env,
1114                             struct dt_object *dt,
1115                             struct lu_buf *buf,
1116                             loff_t *pos);
1117
1118         /**
1119          * Declare intention to write data to object.
1120          *
1121          * Notify the underlying filesystem that data may be written in
1122          * this transaction. This enables the layer below to prepare resources
1123          * (e.g. journal credits in ext4).  This method should be called
1124          * between creating the transaction and starting it. The object need
1125          * not exist. If the layer implementing this method is responsible for
1126          * quota, then the method should reserve space for the given credentials
1127          * and return an error if quota is over. If the write later fails
1128          * for some reason, then the reserve should be released properly
1129          * (usually in ->dt_trans_stop()).
1130          *
1131          * \param[in] env       execution environment for this thread
1132          * \param[in] dt        object
1133          * \param[in] buf       buffer (including size) to copy data from
1134          * \param[in] pos       position in the object to start
1135          * \param[in] th        transaction handle
1136          *
1137          * \retval 0            on success
1138          * \retval negative     negated errno on error
1139          */
1140         ssize_t (*dbo_declare_write)(const struct lu_env *env,
1141                                      struct dt_object *dt,
1142                                      const struct lu_buf *buf,
1143                                      loff_t pos,
1144                                      struct thandle *th);
1145
1146         /**
1147          * Write unstructured data to regular existing object.
1148          *
1149          * The method allocates space and puts data in. Also, the method should
1150          * maintain attr.la_size properly. Partial writes are possible.
1151          *
1152          * If the layer implementing this method is responsible for quota,
1153          * then the method should maintain space accounting for the given
1154          * credentials.
1155          *
1156          * \param[in] env       execution environment for this thread
1157          * \param[in] dt        object
1158          * \param[in] buf       buffer (including size) to copy data from
1159          * \param[in] pos       position in the object to start
1160          * \param[out] pos      \a pos + bytes written
1161          * \param[in] th        transaction handle
1162          *
1163          * \retval positive     bytes written on success
1164          * \retval negative     negated errno on error
1165          */
1166         ssize_t (*dbo_write)(const struct lu_env *env,
1167                              struct dt_object *dt,
1168                              const struct lu_buf *buf,
1169                              loff_t *pos,
1170                              struct thandle *th);
1171
1172         /**
1173          * Return buffers for data.
1174          *
1175          * This method is used to access data with no copying. It's so-called
1176          * zero-copy I/O. The method returns the descriptors for the internal
1177          * buffers where data are managed by the disk filesystem. For example,
1178          * pagecache in case of ext4 or ARC with ZFS. Then other components
1179          * (e.g. networking) can transfer data from or to the buffers with no
1180          * additional copying.
1181          *
1182          * The method should fill an array of struct niobuf_local, where
1183          * each element describes a full or partial page for data at specific
1184          * offset. The caller should use page/lnb_page_offset/len to find data
1185          * at object's offset lnb_file_offset.
1186          *
1187          * The memory referenced by the descriptors can't change its purpose
1188          * until the complementary ->dbo_bufs_put() is called. The caller should
1189          * specify if the buffers are used to read or modify data so that OSD
1190          * can decide how to initialize the buffers: bring all the data for
1191          * reads or just bring partial buffers for write. Note: the method does
1192          * not check whether output array is large enough.
1193          *
1194          * \param[in] env       execution environment for this thread
1195          * \param[in] dt        object
1196          * \param[in] pos       position in the object to start
1197          * \param[in] len       size of region in bytes
1198          * \param[out] lb       array of descriptors to fill
1199          * \param[in] rw        0 if used to read, 1 if used for write
1200          *
1201          * \retval positive     number of descriptors on success
1202          * \retval negative     negated errno on error
1203          */
1204         int (*dbo_bufs_get)(const struct lu_env *env,
1205                             struct dt_object *dt,
1206                             loff_t pos,
1207                             ssize_t len,
1208                             struct niobuf_local *lb,
1209                             enum dt_bufs_type rw);
1210
1211         /**
1212          * Release reference granted by ->dbo_bufs_get().
1213          *
1214          * Release the reference granted by the previous ->dbo_bufs_get().
1215          * Note the references are counted.
1216          *
1217          * \param[in] env       execution environment for this thread
1218          * \param[in] dt        object
1219          * \param[out] lb       array of descriptors to fill
1220          * \param[in] nr        size of the array
1221          *
1222          * \retval 0            on success
1223          * \retval negative     negated errno on error
1224          */
1225         int (*dbo_bufs_put)(const struct lu_env *env,
1226                             struct dt_object *dt,
1227                             struct niobuf_local *lb,
1228                             int nr);
1229
1230         /**
1231          * Prepare buffers for reading.
1232          *
1233          * The method is called on the given buffers to fill them with data
1234          * if that wasn't done in ->dbo_bufs_get(). The idea is that the
1235          * caller should be able to get few buffers for discontiguous regions
1236          * using few calls to ->dbo_bufs_get() and then request them all for
1237          * the preparation with a single call, so that OSD can fire many I/Os
1238          * to run concurrently. It's up to the specific OSD whether to implement
1239          * this logic in ->dbo_read_prep() or just use ->dbo_bufs_get() to
1240          * prepare data for every requested region individually.
1241          *
1242          * \param[in] env       execution environment for this thread
1243          * \param[in] dt        object
1244          * \param[in] lnb       array of buffer descriptors
1245          * \param[in] nr        size of the array
1246          *
1247          * \retval 0            on success
1248          * \retval negative     negated errno on error
1249          */
1250         int (*dbo_read_prep)(const struct lu_env *env,
1251                              struct dt_object *dt,
1252                              struct niobuf_local *lnb,
1253                              int nr);
1254
1255         /**
1256          * Prepare buffers for write.
1257          *
1258          * This method is called on the given buffers to ensure the partial
1259          * buffers contain correct data. The underlying idea is the same as
1260          * in ->db_read_prep().
1261          *
1262          * \param[in] env       execution environment for this thread
1263          * \param[in] dt        object
1264          * \param[in] lb        array of buffer descriptors
1265          * \param[in] nr        size of the array
1266          *
1267          * \retval 0            on success
1268          * \retval negative     negated errno on error
1269          */
1270         int (*dbo_write_prep)(const struct lu_env *env,
1271                               struct dt_object *dt,
1272                               struct niobuf_local *lb,
1273                               int nr);
1274
1275         /**
1276          * Declare intention to write data stored in the buffers.
1277          *
1278          * Notify the underlying filesystem that data may be written in
1279          * this transaction. This enables the layer below to prepare resources
1280          * (e.g. journal credits in ext4).  This method should be called
1281          * between creating the transaction and starting it.
1282          *
1283          * If the layer implementing this method is responsible for quota,
1284          * then the method should be reserving a space for the given
1285          * credentials and return an error if quota is exceeded. If the write
1286          * later fails for some reason, then the reserve should be released
1287          * properly (usually in ->dt_trans_stop()).
1288          *
1289          * \param[in] env       execution environment for this thread
1290          * \param[in] dt        object
1291          * \param[in] lb        array of descriptors
1292          * \param[in] nr        size of the array
1293          * \param[in] th        transaction handle
1294          *
1295          * \retval 0            on success
1296          * \retval negative     negated errno on error
1297          */
1298         int (*dbo_declare_write_commit)(const struct lu_env *env,
1299                                         struct dt_object *dt,
1300                                         struct niobuf_local *lb,
1301                                         int nr,
1302                                         struct thandle *th);
1303
1304         /**
1305          * Write to existing object.
1306          *
1307          * This method is used to write data to a persistent storage using
1308          * the buffers returned by ->dbo_bufs_get(). The caller puts new
1309          * data into the buffers using own mechanisms (e.g. direct transfer
1310          * from a NIC). The method should maintain attr.la_size. Also,
1311          * attr.la_blocks should be maintained but this can be done in lazy
1312          * manner, when actual allocation happens.
1313          *
1314          * If the layer implementing this method is responsible for quota,
1315          * then the method should maintain space accounting for the given
1316          * credentials.
1317          *
1318          * \param[in] env       execution environment for this thread
1319          * \param[in] dt        object
1320          * \param[in] lb        array of descriptors for the buffers
1321          * \param[in] nr        size of the array
1322          * \param[in] th        transaction handle
1323          *
1324          * \retval 0            on success
1325          * \retval negative     negated errno on error
1326          */
1327         int (*dbo_write_commit)(const struct lu_env *env,
1328                                 struct dt_object *dt,
1329                                 struct niobuf_local *lb,
1330                                 int nr,
1331                                 struct thandle *th);
1332
1333         /**
1334          * Return logical to physical block mapping for a given extent
1335          *
1336          * \param[in] env       execution environment for this thread
1337          * \param[in] dt        object
1338          * \param[in] fm        describe the region to map and the output buffer
1339          *                      see the details in include/linux/fiemap.h
1340          *
1341          * \retval 0            on success
1342          * \retval negative     negated errno on error
1343          */
1344         int (*dbo_fiemap_get)(const struct lu_env *env,
1345                               struct dt_object *dt,
1346                               struct fiemap *fm);
1347
1348         /**
1349          * Declare intention to deallocate space from an object.
1350          *
1351          * Notify the underlying filesystem that space may be deallocated in
1352          * this transactions. This enables the layer below to prepare resources
1353          * (e.g. journal credits in ext4).  This method should be called between
1354          * creating the transaction and starting it. The object need not exist.
1355          *
1356          * \param[in] env       execution environment for this thread
1357          * \param[in] dt        object
1358          * \param[in] start     the start of the region to deallocate
1359          * \param[in] end       the end of the region to deallocate
1360          * \param[in] th        transaction handle
1361          *
1362          * \retval 0            on success
1363          * \retval negative     negated errno on error
1364          */
1365         int   (*dbo_declare_punch)(const struct lu_env *env,
1366                                    struct dt_object *dt,
1367                                    __u64 start,
1368                                    __u64 end,
1369                                    struct thandle *th);
1370
1371         /**
1372          * Deallocate specified region in an object.
1373          *
1374          * This method is used to deallocate (release) space possibly consumed
1375          * by the given region of the object. If the layer implementing this
1376          * method is responsible for quota, then the method should maintain
1377          * space accounting for the given credentials.
1378          *
1379          * \param[in] env       execution environment for this thread
1380          * \param[in] dt        object
1381          * \param[in] start     the start of the region to deallocate
1382          * \param[in] end       the end of the region to deallocate
1383          * \param[in] th        transaction handle
1384          *
1385          * \retval 0            on success
1386          * \retval negative     negated errno on error
1387          */
1388         int   (*dbo_punch)(const struct lu_env *env,
1389                            struct dt_object *dt,
1390                            __u64 start,
1391                            __u64 end,
1392                            struct thandle *th);
1393         /**
1394          * Give advices on specified region in an object.
1395          *
1396          * This method is used to give advices about access pattern on an
1397          * given region of the object. The disk filesystem understands
1398          * the advices and tunes cache/read-ahead policies.
1399          *
1400          * \param[in] env       execution environment for this thread
1401          * \param[in] dt        object
1402          * \param[in] start     the start of the region affected
1403          * \param[in] end       the end of the region affected
1404          * \param[in] advice    advice type
1405          *
1406          * \retval 0            on success
1407          * \retval negative     negated errno on error
1408          */
1409         int   (*dbo_ladvise)(const struct lu_env *env,
1410                              struct dt_object *dt,
1411                              __u64 start,
1412                              __u64 end,
1413                              enum lu_ladvise_type advice);
1414 };
1415
1416 /**
1417  * Incomplete type of index record.
1418  */
1419 struct dt_rec;
1420
1421 /**
1422  * Incomplete type of index key.
1423  */
1424 struct dt_key;
1425
1426 /**
1427  * Incomplete type of dt iterator.
1428  */
1429 struct dt_it;
1430
1431 /**
1432  * Per-dt-object operations on object as index. Index is a set of key/value
1433  * pairs abstracted from an on-disk representation. An index supports the
1434  * number of operations including lookup by key, insert and delete. Also,
1435  * an index can be iterated to find the pairs one by one, from a beginning
1436  * or specified point.
1437  */
1438 struct dt_index_operations {
1439         /**
1440          * Lookup in an index by key.
1441          *
1442          * The method returns a value for the given key. Key/value format
1443          * and size should have been negotiated with ->do_index_try() before.
1444          * Thus it's the caller's responsibility to provide the method with
1445          * proper key and big enough buffer. No external locking is required,
1446          * all the internal consistency should be implemented by the method
1447          * or lower layers. The object should should have been created with
1448          * type DFT_INDEX or DFT_DIR.
1449          *
1450          * \param[in] env       execution environment for this thread
1451          * \param[in] dt        object
1452          * \param[out] rec      buffer where value will be stored
1453          * \param[in] key       key
1454          *
1455          * \retval 0            on success
1456          * \retval -ENOENT      if key isn't found
1457          * \retval negative     negated errno on error
1458          */
1459         int (*dio_lookup)(const struct lu_env *env,
1460                           struct dt_object *dt,
1461                           struct dt_rec *rec,
1462                           const struct dt_key *key);
1463
1464         /**
1465          * Declare intention to insert a key/value into an index.
1466          *
1467          * Notify the underlying filesystem that new key/value may be inserted
1468          * in this transaction. This enables the layer below to prepare
1469          * resources (e.g. journal credits in ext4). This method should be
1470          * called between creating the transaction and starting it. key/value
1471          * format and size is subject to ->do_index_try().
1472          *
1473          * \param[in] env       execution environment for this thread
1474          * \param[in] dt        object
1475          * \param[in] rec       buffer storing value
1476          * \param[in] key       key
1477          * \param[in] th        transaction handle
1478          *
1479          * \retval 0            on success
1480          * \retval negative     negated errno on error
1481          */
1482         int (*dio_declare_insert)(const struct lu_env *env,
1483                                   struct dt_object *dt,
1484                                   const struct dt_rec *rec,
1485                                   const struct dt_key *key,
1486                                   struct thandle *th);
1487
1488         /**
1489          * Insert a new key/value pair into an index.
1490          *
1491          * The method inserts specified key/value pair into the given index
1492          * object. The internal consistency is maintained by the method or
1493          * the functionality below. The format and size of key/value should
1494          * have been negotiated before using ->do_index_try(), no additional
1495          * information can be specified to the method. The keys are unique
1496          * in a given index.
1497          *
1498          * \param[in] env       execution environment for this thread
1499          * \param[in] dt        object
1500          * \param[in] rec       buffer storing value
1501          * \param[in] key       key
1502          * \param[in] th        transaction handle
1503          *
1504          * \retval 0            on success
1505          * \retval negative     negated errno on error
1506          */
1507         int (*dio_insert)(const struct lu_env *env,
1508                           struct dt_object *dt,
1509                           const struct dt_rec *rec,
1510                           const struct dt_key *key,
1511                           struct thandle *th);
1512
1513         /**
1514          * Declare intention to delete a key/value from an index.
1515          *
1516          * Notify the underlying filesystem that key/value may be deleted in
1517          * this transaction. This enables the layer below to prepare resources
1518          * (e.g. journal credits in ext4).  This method should be called
1519          * between creating the transaction and starting it. Key/value format
1520          * and size is subject to ->do_index_try(). The object need not exist.
1521          *
1522          * \param[in] env       execution environment for this thread
1523          * \param[in] dt        object
1524          * \param[in] key       key
1525          * \param[in] th        transaction handle
1526          *
1527          * \retval 0            on success
1528          * \retval negative     negated errno on error
1529          */
1530         int (*dio_declare_delete)(const struct lu_env *env,
1531                                   struct dt_object *dt,
1532                                   const struct dt_key *key,
1533                                   struct thandle *th);
1534
1535         /**
1536          * Delete key/value pair from an index.
1537          *
1538          * The method deletes specified key and corresponding value from the
1539          * given index object. The internal consistency is maintained by the
1540          * method or the functionality below. The format and size of the key
1541          * should have been negotiated before using ->do_index_try(), no
1542          * additional information can be specified to the method.
1543          *
1544          * \param[in] env       execution environment for this thread
1545          * \param[in] dt        object
1546          * \param[in] key       key
1547          * \param[in] th        transaction handle
1548          *
1549          * \retval 0            on success
1550          * \retval negative     negated errno on error
1551          */
1552         int (*dio_delete)(const struct lu_env *env,
1553                           struct dt_object *dt,
1554                           const struct dt_key *key,
1555                           struct thandle *th);
1556
1557         /**
1558          * Iterator interface.
1559          *
1560          * Methods to iterate over an existing index, list the keys stored and
1561          * associated values, get key/value size, etc.
1562          */
1563         struct dt_it_ops {
1564                 /**
1565                  * Allocate and initialize new iterator.
1566                  *
1567                  * The iterator is a handler to be used in the subsequent
1568                  * methods to access index's content. Note the position is
1569                  * not defined at this point and should be initialized with
1570                  * ->get() or ->load() method.
1571                  *
1572                  * \param[in] env       execution environment for this thread
1573                  * \param[in] dt        object
1574                  * \param[in] attr      ask the iterator to return part of
1575                                         the records, see LUDA_* for details
1576                  *
1577                  * \retval pointer      iterator pointer on success
1578                  * \retval ERR_PTR(errno)       on error
1579                  */
1580                 struct dt_it *(*init)(const struct lu_env *env,
1581                                       struct dt_object *dt,
1582                                       __u32 attr);
1583
1584                 /**
1585                  * Release iterator.
1586                  *
1587                  * Release the specified iterator and all the resources
1588                  * associated (e.g. the object, index cache, etc).
1589                  *
1590                  * \param[in] env       execution environment for this thread
1591                  * \param[in] di        iterator to release
1592                  */
1593                 void          (*fini)(const struct lu_env *env,
1594                                       struct dt_it *di);
1595
1596                 /**
1597                  * Move position of iterator.
1598                  *
1599                  * Move the position of the specified iterator to the specified
1600                  * key.
1601                  *
1602                  * \param[in] env       execution environment for this thread
1603                  * \param[in] di        iterator
1604                  * \param[in] key       key to position to
1605                  *
1606                  * \retval 0            if exact key is found
1607                  * \retval 1            if at the record with least key
1608                  *                      not larger than the key
1609                  * \retval negative     negated errno on error
1610                  */
1611                 int            (*get)(const struct lu_env *env,
1612                                       struct dt_it *di,
1613                                       const struct dt_key *key);
1614
1615                 /**
1616                  * Release position
1617                  *
1618                  * Complimentary method for dt_it_ops::get() above. Some
1619                  * implementation can increase a reference on the iterator in
1620                  * dt_it_ops::get(). So the caller should be able to release
1621                  * with dt_it_ops::put().
1622                  *
1623                  * \param[in] env       execution environment for this thread
1624                  * \param[in] di        iterator
1625                  */
1626                 void           (*put)(const struct lu_env *env,
1627                                       struct dt_it *di);
1628
1629                 /**
1630                  * Move to next record.
1631                  *
1632                  * Moves the position of the iterator to a next record
1633                  *
1634                  * \param[in] env       execution environment for this thread
1635                  * \param[in] di        iterator
1636                  *
1637                  * \retval 1            if no more records
1638                  * \retval 0            on success, the next record is found
1639                  * \retval negative     negated errno on error
1640                  */
1641                 int           (*next)(const struct lu_env *env,
1642                                       struct dt_it *di);
1643
1644                 /**
1645                  * Return key.
1646                  *
1647                  * Returns a pointer to a buffer containing the key of the
1648                  * record at the current position. The pointer is valid and
1649                  * retains data until ->get(), ->load() and ->fini() methods
1650                  * are called.
1651                  *
1652                  * \param[in] env       execution environment for this thread
1653                  * \param[in] di        iterator
1654                  *
1655                  * \retval pointer to key       on success
1656                  * \retval ERR_PTR(errno)       on error
1657                  */
1658                 struct dt_key *(*key)(const struct lu_env *env,
1659                                       const struct dt_it *di);
1660
1661                 /**
1662                  * Return key size.
1663                  *
1664                  * Returns size of the key at the current position.
1665                  *
1666                  * \param[in] env       execution environment for this thread
1667                  * \param[in] di        iterator
1668                  *
1669                  * \retval key's size   on success
1670                  * \retval negative     negated errno on error
1671                  */
1672                 int       (*key_size)(const struct lu_env *env,
1673                                       const struct dt_it *di);
1674
1675                 /**
1676                  * Return record.
1677                  *
1678                  * Stores the value of the record at the current position. The
1679                  * buffer must be big enough (as negotiated with
1680                  * ->do_index_try() or ->rec_size()). The caller can specify
1681                  * she is interested only in part of the record, using attr
1682                  * argument (see LUDA_* definitions for the details).
1683                  *
1684                  * \param[in] env       execution environment for this thread
1685                  * \param[in] di        iterator
1686                  * \param[out] rec      buffer to store value in
1687                  * \param[in] attr      specify part of the value to copy
1688                  *
1689                  * \retval 0            on success
1690                  * \retval negative     negated errno on error
1691                  */
1692                 int            (*rec)(const struct lu_env *env,
1693                                       const struct dt_it *di,
1694                                       struct dt_rec *rec,
1695                                       __u32 attr);
1696
1697                 /**
1698                  * Return record size.
1699                  *
1700                  * Returns size of the record at the current position. The
1701                  * \a attr can be used to specify only the parts of the record
1702                  * needed to be returned. (see LUDA_* definitions for the
1703                  * details).
1704                  *
1705                  * \param[in] env       execution environment for this thread
1706                  * \param[in] di        iterator
1707                  * \param[in] attr      part of the record to return
1708                  *
1709                  * \retval record's size        on success
1710                  * \retval negative             negated errno on error
1711                  */
1712                 int        (*rec_size)(const struct lu_env *env,
1713                                        const struct dt_it *di,
1714                                       __u32 attr);
1715
1716                 /**
1717                  * Return a cookie (hash).
1718                  *
1719                  * Returns the cookie (usually hash) of the key at the current
1720                  * position. This allows the caller to resume iteration at this
1721                  * position later. The exact value is specific to implementation
1722                  * and should not be interpreted by the caller.
1723                  *
1724                  * \param[in] env       execution environment for this thread
1725                  * \param[in] di        iterator
1726                  *
1727                  * \retval cookie/hash of the key
1728                  */
1729                 __u64        (*store)(const struct lu_env *env,
1730                                       const struct dt_it *di);
1731
1732                 /**
1733                  * Initialize position using cookie/hash.
1734                  *
1735                  * Initializes the current position of the iterator to one
1736                  * described by the cookie/hash as returned by ->store()
1737                  * previously.
1738                  *
1739                  * \param[in] env       execution environment for this thread
1740                  * \param[in] di        iterator
1741                  * \param[in] hash      cookie/hash value
1742                  *
1743                  * \retval positive     if current position points to
1744                  *                      record with least cookie not larger
1745                  *                      than cookie
1746                  * \retval 0            if current position matches cookie
1747                  * \retval negative     negated errno on error
1748                  */
1749                 int           (*load)(const struct lu_env *env,
1750                                       const struct dt_it *di,
1751                                       __u64 hash);
1752
1753                 /**
1754                  * Not used
1755                  */
1756                 int        (*key_rec)(const struct lu_env *env,
1757                                       const struct dt_it *di,
1758                                       void *key_rec);
1759         } dio_it;
1760 };
1761
1762 enum dt_otable_it_valid {
1763         DOIV_ERROR_HANDLE       = 0x0001,
1764         DOIV_DRYRUN             = 0x0002,
1765 };
1766
1767 enum dt_otable_it_flags {
1768         /* Exit when fail. */
1769         DOIF_FAILOUT    = 0x0001,
1770
1771         /* Reset iteration position to the device beginning. */
1772         DOIF_RESET      = 0x0002,
1773
1774         /* There is up layer component uses the iteration. */
1775         DOIF_OUTUSED    = 0x0004,
1776
1777         /* Check only without repairing. */
1778         DOIF_DRYRUN     = 0x0008,
1779 };
1780
1781 /* otable based iteration needs to use the common DT iteration APIs.
1782  * To initialize the iteration, it needs call dio_it::init() firstly.
1783  * Here is how the otable based iteration should prepare arguments to
1784  * call dt_it_ops::init().
1785  *
1786  * For otable based iteration, the 32-bits 'attr' for dt_it_ops::init()
1787  * is composed of two parts:
1788  * low 16-bits is for valid bits, high 16-bits is for flags bits. */
1789 #define DT_OTABLE_IT_FLAGS_SHIFT        16
1790 #define DT_OTABLE_IT_FLAGS_MASK         0xffff0000
1791
1792 struct dt_device {
1793         struct lu_device                   dd_lu_dev;
1794         const struct dt_device_operations *dd_ops;
1795
1796         /**
1797          * List of dt_txn_callback (see below). This is not protected in any
1798          * way, because callbacks are supposed to be added/deleted only during
1799          * single-threaded start-up shut-down procedures.
1800          */
1801         struct list_head                   dd_txn_callbacks;
1802         unsigned int                       dd_record_fid_accessed:1,
1803                                            dd_rdonly:1;
1804
1805         /* sysfs and debugfs handling */
1806         struct dentry                     *dd_debugfs_entry;
1807
1808         const struct attribute           **dd_def_attrs;
1809         struct kobject                     dd_kobj;
1810         struct kobj_type                   dd_ktype;
1811         struct completion                  dd_kobj_unregister;
1812 };
1813
1814 int  dt_device_init(struct dt_device *dev, struct lu_device_type *t);
1815 void dt_device_fini(struct dt_device *dev);
1816
1817 static inline int lu_device_is_dt(const struct lu_device *d)
1818 {
1819         return ergo(d != NULL, d->ld_type->ldt_tags & LU_DEVICE_DT);
1820 }
1821
1822 static inline struct dt_device * lu2dt_dev(struct lu_device *l)
1823 {
1824         LASSERT(lu_device_is_dt(l));
1825         return container_of0(l, struct dt_device, dd_lu_dev);
1826 }
1827
1828 struct dt_object {
1829         struct lu_object                   do_lu;
1830         const struct dt_object_operations *do_ops;
1831         const struct dt_body_operations   *do_body_ops;
1832         const struct dt_index_operations  *do_index_ops;
1833 };
1834
1835 /*
1836  * In-core representation of per-device local object OID storage
1837  */
1838 struct local_oid_storage {
1839         /* all initialized llog systems on this node linked by this */
1840         struct list_head  los_list;
1841
1842         /* how many handle's reference this los has */
1843         atomic_t          los_refcount;
1844         struct dt_device *los_dev;
1845         struct dt_object *los_obj;
1846
1847         /* data used to generate new fids */
1848         struct mutex      los_id_lock;
1849         __u64             los_seq;
1850         __u32             los_last_oid;
1851 };
1852
1853 static inline struct lu_device *dt2lu_dev(struct dt_device *d)
1854 {
1855         return &d->dd_lu_dev;
1856 }
1857
1858 static inline struct dt_object *lu2dt(struct lu_object *l)
1859 {
1860         LASSERT(l == NULL || IS_ERR(l) || lu_device_is_dt(l->lo_dev));
1861         return container_of0(l, struct dt_object, do_lu);
1862 }
1863
1864 int  dt_object_init(struct dt_object *obj,
1865                     struct lu_object_header *h, struct lu_device *d);
1866
1867 void dt_object_fini(struct dt_object *obj);
1868
1869 static inline int dt_object_exists(const struct dt_object *dt)
1870 {
1871         return lu_object_exists(&dt->do_lu);
1872 }
1873
1874 static inline int dt_object_remote(const struct dt_object *dt)
1875 {
1876         return lu_object_remote(&dt->do_lu);
1877 }
1878
1879 static inline struct dt_object *lu2dt_obj(struct lu_object *o)
1880 {
1881         LASSERT(ergo(o != NULL, lu_device_is_dt(o->lo_dev)));
1882         return container_of0(o, struct dt_object, do_lu);
1883 }
1884
1885 static inline struct dt_object *dt_object_child(struct dt_object *o)
1886 {
1887         return container_of0(lu_object_next(&(o)->do_lu),
1888                              struct dt_object, do_lu);
1889 }
1890
1891 /**
1892  * This is the general purpose transaction handle.
1893  * 1. Transaction Life Cycle
1894  *      This transaction handle is allocated upon starting a new transaction,
1895  *      and deallocated after this transaction is committed.
1896  * 2. Transaction Nesting
1897  *      We do _NOT_ support nested transaction. So, every thread should only
1898  *      have one active transaction, and a transaction only belongs to one
1899  *      thread. Due to this, transaction handle need no reference count.
1900  * 3. Transaction & dt_object locking
1901  *      dt_object locks should be taken inside transaction.
1902  * 4. Transaction & RPC
1903  *      No RPC request should be issued inside transaction.
1904  */
1905 struct thandle {
1906         /** the dt device on which the transactions are executed */
1907         struct dt_device *th_dev;
1908
1909         /* point to the top thandle, XXX this is a bit hacky right now,
1910          * but normal device trans callback triggered by the bottom
1911          * device (OSP/OSD == sub thandle layer) needs to get the
1912          * top_thandle (see dt_txn_hook_start/stop()), so we put the
1913          * top thandle here for now, will fix it when we have better
1914          * callback mechanism */
1915         struct thandle  *th_top;
1916
1917         /** the last operation result in this transaction.
1918          * this value is used in recovery */
1919         __s32             th_result;
1920
1921         /** whether we need sync commit */
1922         unsigned int            th_sync:1,
1923         /* local transation, no need to inform other layers */
1924                                 th_local:1,
1925         /* Whether we need wait the transaction to be submitted
1926          * (send to remote target) */
1927                                 th_wait_submit:1,
1928         /* complex transaction which will track updates on all targets,
1929          * including OSTs */
1930                                 th_complex:1,
1931         /* whether ignore quota */
1932                                 th_ignore_quota:1;
1933 };
1934
1935 /**
1936  * Transaction call-backs.
1937  *
1938  * These are invoked by osd (or underlying transaction engine) when
1939  * transaction changes state.
1940  *
1941  * Call-backs are used by upper layers to modify transaction parameters and to
1942  * perform some actions on for each transaction state transition. Typical
1943  * example is mdt registering call-back to write into last-received file
1944  * before each transaction commit.
1945  */
1946 struct dt_txn_callback {
1947         int (*dtc_txn_start)(const struct lu_env *env,
1948                              struct thandle *txn, void *cookie);
1949         int (*dtc_txn_stop)(const struct lu_env *env,
1950                             struct thandle *txn, void *cookie);
1951         void                    *dtc_cookie;
1952         __u32                   dtc_tag;
1953         struct list_head        dtc_linkage;
1954 };
1955
1956 void dt_txn_callback_add(struct dt_device *dev, struct dt_txn_callback *cb);
1957 void dt_txn_callback_del(struct dt_device *dev, struct dt_txn_callback *cb);
1958
1959 int dt_txn_hook_start(const struct lu_env *env,
1960                       struct dt_device *dev, struct thandle *txn);
1961 int dt_txn_hook_stop(const struct lu_env *env, struct thandle *txn);
1962
1963 int dt_try_as_dir(const struct lu_env *env, struct dt_object *obj);
1964
1965 /**
1966  * Callback function used for parsing path.
1967  * \see llo_store_resolve
1968  */
1969 typedef int (*dt_entry_func_t)(const struct lu_env *env,
1970                             const char *name,
1971                             void *pvt);
1972
1973 #define DT_MAX_PATH 1024
1974
1975 int dt_path_parser(const struct lu_env *env,
1976                    char *local, dt_entry_func_t entry_func,
1977                    void *data);
1978
1979 struct dt_object *
1980 dt_store_resolve(const struct lu_env *env, struct dt_device *dt,
1981                  const char *path, struct lu_fid *fid);
1982
1983 struct dt_object *dt_store_open(const struct lu_env *env,
1984                                 struct dt_device *dt,
1985                                 const char *dirname,
1986                                 const char *filename,
1987                                 struct lu_fid *fid);
1988
1989 struct dt_object *dt_find_or_create(const struct lu_env *env,
1990                                     struct dt_device *dt,
1991                                     const struct lu_fid *fid,
1992                                     struct dt_object_format *dof,
1993                                     struct lu_attr *attr);
1994
1995 struct dt_object *dt_locate_at(const struct lu_env *env,
1996                                struct dt_device *dev,
1997                                const struct lu_fid *fid,
1998                                struct lu_device *top_dev,
1999                                const struct lu_object_conf *conf);
2000
2001 static inline struct dt_object *
2002 dt_locate(const struct lu_env *env, struct dt_device *dev,
2003           const struct lu_fid *fid)
2004 {
2005         return dt_locate_at(env, dev, fid,
2006                             dev->dd_lu_dev.ld_site->ls_top_dev, NULL);
2007 }
2008
2009 static inline struct dt_object *
2010 dt_object_locate(struct dt_object *dto, struct dt_device *dt_dev)
2011 {
2012         struct lu_object *lo;
2013
2014         list_for_each_entry(lo, &dto->do_lu.lo_header->loh_layers, lo_linkage) {
2015                 if (lo->lo_dev == &dt_dev->dd_lu_dev)
2016                         return container_of(lo, struct dt_object, do_lu);
2017         }
2018         return NULL;
2019 }
2020
2021 static inline void dt_object_put(const struct lu_env *env,
2022                                  struct dt_object *dto)
2023 {
2024         lu_object_put(env, &dto->do_lu);
2025 }
2026
2027 static inline void dt_object_put_nocache(const struct lu_env *env,
2028                                          struct dt_object *dto)
2029 {
2030         lu_object_put_nocache(env, &dto->do_lu);
2031 }
2032
2033 int local_oid_storage_init(const struct lu_env *env, struct dt_device *dev,
2034                            const struct lu_fid *first_fid,
2035                            struct local_oid_storage **los);
2036 void local_oid_storage_fini(const struct lu_env *env,
2037                             struct local_oid_storage *los);
2038 int local_object_fid_generate(const struct lu_env *env,
2039                               struct local_oid_storage *los,
2040                               struct lu_fid *fid);
2041 int local_object_declare_create(const struct lu_env *env,
2042                                 struct local_oid_storage *los,
2043                                 struct dt_object *o,
2044                                 struct lu_attr *attr,
2045                                 struct dt_object_format *dof,
2046                                 struct thandle *th);
2047 int local_object_create(const struct lu_env *env,
2048                         struct local_oid_storage *los,
2049                         struct dt_object *o,
2050                         struct lu_attr *attr, struct dt_object_format *dof,
2051                         struct thandle *th);
2052 struct dt_object *local_file_find(const struct lu_env *env,
2053                                   struct local_oid_storage *los,
2054                                   struct dt_object *parent,
2055                                   const char *name);
2056 struct dt_object *local_file_find_or_create(const struct lu_env *env,
2057                                             struct local_oid_storage *los,
2058                                             struct dt_object *parent,
2059                                             const char *name, __u32 mode);
2060 struct dt_object *local_file_find_or_create_with_fid(const struct lu_env *env,
2061                                                      struct dt_device *dt,
2062                                                      const struct lu_fid *fid,
2063                                                      struct dt_object *parent,
2064                                                      const char *name,
2065                                                      __u32 mode);
2066 struct dt_object *
2067 local_index_find_or_create(const struct lu_env *env,
2068                            struct local_oid_storage *los,
2069                            struct dt_object *parent,
2070                            const char *name, __u32 mode,
2071                            const struct dt_index_features *ft);
2072 struct dt_object *
2073 local_index_find_or_create_with_fid(const struct lu_env *env,
2074                                     struct dt_device *dt,
2075                                     const struct lu_fid *fid,
2076                                     struct dt_object *parent,
2077                                     const char *name, __u32 mode,
2078                                     const struct dt_index_features *ft);
2079 int local_object_unlink(const struct lu_env *env, struct dt_device *dt,
2080                         struct dt_object *parent, const char *name);
2081
2082 static inline int dt_object_lock(const struct lu_env *env,
2083                                  struct dt_object *o, struct lustre_handle *lh,
2084                                  struct ldlm_enqueue_info *einfo,
2085                                  union ldlm_policy_data *policy)
2086 {
2087         LASSERT(o != NULL);
2088         LASSERT(o->do_ops != NULL);
2089         LASSERT(o->do_ops->do_object_lock != NULL);
2090         return o->do_ops->do_object_lock(env, o, lh, einfo, policy);
2091 }
2092
2093 static inline int dt_object_unlock(const struct lu_env *env,
2094                                    struct dt_object *o,
2095                                    struct ldlm_enqueue_info *einfo,
2096                                    union ldlm_policy_data *policy)
2097 {
2098         LASSERT(o != NULL);
2099         LASSERT(o->do_ops != NULL);
2100         LASSERT(o->do_ops->do_object_unlock != NULL);
2101         return o->do_ops->do_object_unlock(env, o, einfo, policy);
2102 }
2103
2104 int dt_lookup_dir(const struct lu_env *env, struct dt_object *dir,
2105                   const char *name, struct lu_fid *fid);
2106
2107 static inline int dt_object_sync(const struct lu_env *env, struct dt_object *o,
2108                                  __u64 start, __u64 end)
2109 {
2110         LASSERT(o);
2111         LASSERT(o->do_ops);
2112         LASSERT(o->do_ops->do_object_sync);
2113         return o->do_ops->do_object_sync(env, o, start, end);
2114 }
2115
2116 int dt_declare_version_set(const struct lu_env *env, struct dt_object *o,
2117                            struct thandle *th);
2118 void dt_version_set(const struct lu_env *env, struct dt_object *o,
2119                     dt_obj_version_t version, struct thandle *th);
2120 dt_obj_version_t dt_version_get(const struct lu_env *env, struct dt_object *o);
2121
2122
2123 int dt_read(const struct lu_env *env, struct dt_object *dt,
2124             struct lu_buf *buf, loff_t *pos);
2125 int dt_record_read(const struct lu_env *env, struct dt_object *dt,
2126                    struct lu_buf *buf, loff_t *pos);
2127 int dt_record_write(const struct lu_env *env, struct dt_object *dt,
2128                     const struct lu_buf *buf, loff_t *pos, struct thandle *th);
2129 typedef int (*dt_index_page_build_t)(const struct lu_env *env,
2130                                      union lu_page *lp, size_t nob,
2131                                      const struct dt_it_ops *iops,
2132                                      struct dt_it *it, __u32 attr, void *arg);
2133 int dt_index_walk(const struct lu_env *env, struct dt_object *obj,
2134                   const struct lu_rdpg *rdpg, dt_index_page_build_t filler,
2135                   void *arg);
2136 int dt_index_read(const struct lu_env *env, struct dt_device *dev,
2137                   struct idx_info *ii, const struct lu_rdpg *rdpg);
2138
2139 static inline struct thandle *dt_trans_create(const struct lu_env *env,
2140                                               struct dt_device *d)
2141 {
2142         LASSERT(d->dd_ops->dt_trans_create);
2143         return d->dd_ops->dt_trans_create(env, d);
2144 }
2145
2146 static inline int dt_trans_start(const struct lu_env *env,
2147                                  struct dt_device *d, struct thandle *th)
2148 {
2149         LASSERT(d->dd_ops->dt_trans_start);
2150         return d->dd_ops->dt_trans_start(env, d, th);
2151 }
2152
2153 /* for this transaction hooks shouldn't be called */
2154 static inline int dt_trans_start_local(const struct lu_env *env,
2155                                        struct dt_device *d, struct thandle *th)
2156 {
2157         LASSERT(d->dd_ops->dt_trans_start);
2158         th->th_local = 1;
2159         return d->dd_ops->dt_trans_start(env, d, th);
2160 }
2161
2162 static inline int dt_trans_stop(const struct lu_env *env,
2163                                 struct dt_device *d, struct thandle *th)
2164 {
2165         LASSERT(d->dd_ops->dt_trans_stop);
2166         return d->dd_ops->dt_trans_stop(env, d, th);
2167 }
2168
2169 static inline int dt_trans_cb_add(struct thandle *th,
2170                                   struct dt_txn_commit_cb *dcb)
2171 {
2172         LASSERT(th->th_dev->dd_ops->dt_trans_cb_add);
2173         dcb->dcb_magic = TRANS_COMMIT_CB_MAGIC;
2174         return th->th_dev->dd_ops->dt_trans_cb_add(th, dcb);
2175 }
2176 /** @} dt */
2177
2178
2179 static inline int dt_declare_record_write(const struct lu_env *env,
2180                                           struct dt_object *dt,
2181                                           const struct lu_buf *buf,
2182                                           loff_t pos,
2183                                           struct thandle *th)
2184 {
2185         int rc;
2186
2187         LASSERTF(dt != NULL, "dt is NULL when we want to write record\n");
2188         LASSERT(th != NULL);
2189         LASSERT(dt->do_body_ops);
2190         LASSERT(dt->do_body_ops->dbo_declare_write);
2191         rc = dt->do_body_ops->dbo_declare_write(env, dt, buf, pos, th);
2192         return rc;
2193 }
2194
2195 static inline int dt_declare_create(const struct lu_env *env,
2196                                     struct dt_object *dt,
2197                                     struct lu_attr *attr,
2198                                     struct dt_allocation_hint *hint,
2199                                     struct dt_object_format *dof,
2200                                     struct thandle *th)
2201 {
2202         LASSERT(dt);
2203         LASSERT(dt->do_ops);
2204         LASSERT(dt->do_ops->do_declare_create);
2205
2206         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_CREATE))
2207                 return cfs_fail_err;
2208
2209         return dt->do_ops->do_declare_create(env, dt, attr, hint, dof, th);
2210 }
2211
2212 static inline int dt_create(const struct lu_env *env,
2213                                     struct dt_object *dt,
2214                                     struct lu_attr *attr,
2215                                     struct dt_allocation_hint *hint,
2216                                     struct dt_object_format *dof,
2217                                     struct thandle *th)
2218 {
2219         LASSERT(dt);
2220         LASSERT(dt->do_ops);
2221         LASSERT(dt->do_ops->do_create);
2222
2223         if (CFS_FAULT_CHECK(OBD_FAIL_DT_CREATE))
2224                 return cfs_fail_err;
2225
2226         return dt->do_ops->do_create(env, dt, attr, hint, dof, th);
2227 }
2228
2229 static inline int dt_declare_destroy(const struct lu_env *env,
2230                                      struct dt_object *dt,
2231                                      struct thandle *th)
2232 {
2233         LASSERT(dt);
2234         LASSERT(dt->do_ops);
2235         LASSERT(dt->do_ops->do_declare_destroy);
2236
2237         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_DESTROY))
2238                 return cfs_fail_err;
2239
2240         return dt->do_ops->do_declare_destroy(env, dt, th);
2241 }
2242
2243 static inline int dt_destroy(const struct lu_env *env,
2244                              struct dt_object *dt,
2245                              struct thandle *th)
2246 {
2247         LASSERT(dt);
2248         LASSERT(dt->do_ops);
2249         LASSERT(dt->do_ops->do_destroy);
2250
2251         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DESTROY))
2252                 return cfs_fail_err;
2253
2254         return dt->do_ops->do_destroy(env, dt, th);
2255 }
2256
2257 static inline void dt_read_lock(const struct lu_env *env,
2258                                 struct dt_object *dt,
2259                                 unsigned role)
2260 {
2261         LASSERT(dt);
2262         LASSERT(dt->do_ops);
2263         LASSERT(dt->do_ops->do_read_lock);
2264         dt->do_ops->do_read_lock(env, dt, role);
2265 }
2266
2267 static inline void dt_write_lock(const struct lu_env *env,
2268                                 struct dt_object *dt,
2269                                 unsigned role)
2270 {
2271         LASSERT(dt);
2272         LASSERT(dt->do_ops);
2273         LASSERT(dt->do_ops->do_write_lock);
2274         dt->do_ops->do_write_lock(env, dt, role);
2275 }
2276
2277 static inline void dt_read_unlock(const struct lu_env *env,
2278                                 struct dt_object *dt)
2279 {
2280         LASSERT(dt);
2281         LASSERT(dt->do_ops);
2282         LASSERT(dt->do_ops->do_read_unlock);
2283         dt->do_ops->do_read_unlock(env, dt);
2284 }
2285
2286 static inline void dt_write_unlock(const struct lu_env *env,
2287                                 struct dt_object *dt)
2288 {
2289         LASSERT(dt);
2290         LASSERT(dt->do_ops);
2291         LASSERT(dt->do_ops->do_write_unlock);
2292         dt->do_ops->do_write_unlock(env, dt);
2293 }
2294
2295 static inline int dt_write_locked(const struct lu_env *env,
2296                                   struct dt_object *dt)
2297 {
2298         LASSERT(dt);
2299         LASSERT(dt->do_ops);
2300         LASSERT(dt->do_ops->do_write_locked);
2301         return dt->do_ops->do_write_locked(env, dt);
2302 }
2303
2304 static inline int dt_declare_attr_get(const struct lu_env *env,
2305                                       struct dt_object *dt)
2306 {
2307         LASSERT(dt);
2308         LASSERT(dt->do_ops);
2309         LASSERT(dt->do_ops->do_declare_attr_get);
2310
2311         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_ATTR_GET))
2312                 return cfs_fail_err;
2313
2314         return dt->do_ops->do_declare_attr_get(env, dt);
2315 }
2316
2317 static inline int dt_attr_get(const struct lu_env *env, struct dt_object *dt,
2318                               struct lu_attr *la)
2319 {
2320         LASSERT(dt);
2321         LASSERT(dt->do_ops);
2322         LASSERT(dt->do_ops->do_attr_get);
2323
2324         if (CFS_FAULT_CHECK(OBD_FAIL_DT_ATTR_GET))
2325                 return cfs_fail_err;
2326
2327         return dt->do_ops->do_attr_get(env, dt, la);
2328 }
2329
2330 static inline int dt_declare_attr_set(const struct lu_env *env,
2331                                       struct dt_object *dt,
2332                                       const struct lu_attr *la,
2333                                       struct thandle *th)
2334 {
2335         LASSERT(dt);
2336         LASSERT(dt->do_ops);
2337         LASSERT(dt->do_ops->do_declare_attr_set);
2338
2339         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_ATTR_SET))
2340                 return cfs_fail_err;
2341
2342         return dt->do_ops->do_declare_attr_set(env, dt, la, th);
2343 }
2344
2345 static inline int dt_attr_set(const struct lu_env *env, struct dt_object *dt,
2346                               const struct lu_attr *la, struct thandle *th)
2347 {
2348         LASSERT(dt);
2349         LASSERT(dt->do_ops);
2350         LASSERT(dt->do_ops->do_attr_set);
2351
2352         if (CFS_FAULT_CHECK(OBD_FAIL_DT_ATTR_SET))
2353                 return cfs_fail_err;
2354
2355         return dt->do_ops->do_attr_set(env, dt, la, th);
2356 }
2357
2358 static inline int dt_declare_ref_add(const struct lu_env *env,
2359                                      struct dt_object *dt, struct thandle *th)
2360 {
2361         LASSERT(dt);
2362         LASSERT(dt->do_ops);
2363         LASSERT(dt->do_ops->do_declare_ref_add);
2364
2365         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_REF_ADD))
2366                 return cfs_fail_err;
2367
2368         return dt->do_ops->do_declare_ref_add(env, dt, th);
2369 }
2370
2371 static inline int dt_ref_add(const struct lu_env *env,
2372                              struct dt_object *dt, struct thandle *th)
2373 {
2374         LASSERT(dt);
2375         LASSERT(dt->do_ops);
2376         LASSERT(dt->do_ops->do_ref_add);
2377
2378         if (CFS_FAULT_CHECK(OBD_FAIL_DT_REF_ADD))
2379                 return cfs_fail_err;
2380
2381         return dt->do_ops->do_ref_add(env, dt, th);
2382 }
2383
2384 static inline int dt_declare_ref_del(const struct lu_env *env,
2385                                      struct dt_object *dt, struct thandle *th)
2386 {
2387         LASSERT(dt);
2388         LASSERT(dt->do_ops);
2389         LASSERT(dt->do_ops->do_declare_ref_del);
2390
2391         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_REF_DEL))
2392                 return cfs_fail_err;
2393
2394         return dt->do_ops->do_declare_ref_del(env, dt, th);
2395 }
2396
2397 static inline int dt_ref_del(const struct lu_env *env,
2398                              struct dt_object *dt, struct thandle *th)
2399 {
2400         LASSERT(dt);
2401         LASSERT(dt->do_ops);
2402         LASSERT(dt->do_ops->do_ref_del);
2403
2404         if (CFS_FAULT_CHECK(OBD_FAIL_DT_REF_DEL))
2405                 return cfs_fail_err;
2406
2407         return dt->do_ops->do_ref_del(env, dt, th);
2408 }
2409
2410 static inline int dt_bufs_get(const struct lu_env *env, struct dt_object *d,
2411                               struct niobuf_remote *rnb,
2412                               struct niobuf_local *lnb, enum dt_bufs_type rw)
2413 {
2414         LASSERT(d);
2415         LASSERT(d->do_body_ops);
2416         LASSERT(d->do_body_ops->dbo_bufs_get);
2417         return d->do_body_ops->dbo_bufs_get(env, d, rnb->rnb_offset,
2418                                             rnb->rnb_len, lnb, rw);
2419 }
2420
2421 static inline int dt_bufs_put(const struct lu_env *env, struct dt_object *d,
2422                               struct niobuf_local *lnb, int n)
2423 {
2424         LASSERT(d);
2425         LASSERT(d->do_body_ops);
2426         LASSERT(d->do_body_ops->dbo_bufs_put);
2427         return d->do_body_ops->dbo_bufs_put(env, d, lnb, n);
2428 }
2429
2430 static inline int dt_write_prep(const struct lu_env *env, struct dt_object *d,
2431                                 struct niobuf_local *lnb, int n)
2432 {
2433         LASSERT(d);
2434         LASSERT(d->do_body_ops);
2435         LASSERT(d->do_body_ops->dbo_write_prep);
2436         return d->do_body_ops->dbo_write_prep(env, d, lnb, n);
2437 }
2438
2439 static inline int dt_declare_write_commit(const struct lu_env *env,
2440                                           struct dt_object *d,
2441                                           struct niobuf_local *lnb,
2442                                           int n, struct thandle *th)
2443 {
2444         LASSERTF(d != NULL, "dt is NULL when we want to declare write\n");
2445         LASSERT(th != NULL);
2446         return d->do_body_ops->dbo_declare_write_commit(env, d, lnb, n, th);
2447 }
2448
2449
2450 static inline int dt_write_commit(const struct lu_env *env,
2451                                   struct dt_object *d, struct niobuf_local *lnb,
2452                                   int n, struct thandle *th)
2453 {
2454         LASSERT(d);
2455         LASSERT(d->do_body_ops);
2456         LASSERT(d->do_body_ops->dbo_write_commit);
2457         return d->do_body_ops->dbo_write_commit(env, d, lnb, n, th);
2458 }
2459
2460 static inline int dt_read_prep(const struct lu_env *env, struct dt_object *d,
2461                                struct niobuf_local *lnb, int n)
2462 {
2463         LASSERT(d);
2464         LASSERT(d->do_body_ops);
2465         LASSERT(d->do_body_ops->dbo_read_prep);
2466         return d->do_body_ops->dbo_read_prep(env, d, lnb, n);
2467 }
2468
2469 static inline int dt_declare_write(const struct lu_env *env,
2470                                    struct dt_object *dt,
2471                                    const struct lu_buf *buf, loff_t pos,
2472                                    struct thandle *th)
2473 {
2474         LASSERT(dt);
2475         LASSERT(dt->do_body_ops);
2476         LASSERT(dt->do_body_ops->dbo_declare_write);
2477         return dt->do_body_ops->dbo_declare_write(env, dt, buf, pos, th);
2478 }
2479
2480 static inline ssize_t dt_write(const struct lu_env *env, struct dt_object *dt,
2481                                const struct lu_buf *buf, loff_t *pos,
2482                                struct thandle *th)
2483 {
2484         LASSERT(dt);
2485         LASSERT(dt->do_body_ops);
2486         LASSERT(dt->do_body_ops->dbo_write);
2487         return dt->do_body_ops->dbo_write(env, dt, buf, pos, th);
2488 }
2489
2490 static inline int dt_declare_punch(const struct lu_env *env,
2491                                    struct dt_object *dt, __u64 start,
2492                                    __u64 end, struct thandle *th)
2493 {
2494         LASSERT(dt);
2495         LASSERT(dt->do_body_ops);
2496         LASSERT(dt->do_body_ops->dbo_declare_punch);
2497         return dt->do_body_ops->dbo_declare_punch(env, dt, start, end, th);
2498 }
2499
2500 static inline int dt_punch(const struct lu_env *env, struct dt_object *dt,
2501                            __u64 start, __u64 end, struct thandle *th)
2502 {
2503         LASSERT(dt);
2504         LASSERT(dt->do_body_ops);
2505         LASSERT(dt->do_body_ops->dbo_punch);
2506         return dt->do_body_ops->dbo_punch(env, dt, start, end, th);
2507 }
2508
2509 static inline int dt_ladvise(const struct lu_env *env, struct dt_object *dt,
2510                              __u64 start, __u64 end, int advice)
2511 {
2512         LASSERT(dt);
2513         LASSERT(dt->do_body_ops);
2514         LASSERT(dt->do_body_ops->dbo_ladvise);
2515         return dt->do_body_ops->dbo_ladvise(env, dt, start, end, advice);
2516 }
2517
2518 static inline int dt_fiemap_get(const struct lu_env *env, struct dt_object *d,
2519                                 struct fiemap *fm)
2520 {
2521         LASSERT(d);
2522         if (d->do_body_ops == NULL)
2523                 return -EPROTO;
2524         if (d->do_body_ops->dbo_fiemap_get == NULL)
2525                 return -EOPNOTSUPP;
2526         return d->do_body_ops->dbo_fiemap_get(env, d, fm);
2527 }
2528
2529 static inline int dt_statfs_info(const struct lu_env *env,
2530                                  struct dt_device *dev,
2531                                 struct obd_statfs *osfs,
2532                                 struct obd_statfs_info *info)
2533 {
2534         LASSERT(dev);
2535         LASSERT(dev->dd_ops);
2536         LASSERT(dev->dd_ops->dt_statfs);
2537         return dev->dd_ops->dt_statfs(env, dev, osfs, info);
2538 }
2539
2540 static inline int dt_statfs(const struct lu_env *env, struct dt_device *dev,
2541                             struct obd_statfs *osfs)
2542 {
2543         return dt_statfs_info(env, dev, osfs, NULL);
2544 }
2545
2546 static inline int dt_root_get(const struct lu_env *env, struct dt_device *dev,
2547                               struct lu_fid *f)
2548 {
2549         LASSERT(dev);
2550         LASSERT(dev->dd_ops);
2551         LASSERT(dev->dd_ops->dt_root_get);
2552         return dev->dd_ops->dt_root_get(env, dev, f);
2553 }
2554
2555 static inline void dt_conf_get(const struct lu_env *env,
2556                                const struct dt_device *dev,
2557                                struct dt_device_param *param)
2558 {
2559         LASSERT(dev);
2560         LASSERT(dev->dd_ops);
2561         LASSERT(dev->dd_ops->dt_conf_get);
2562         return dev->dd_ops->dt_conf_get(env, dev, param);
2563 }
2564
2565 static inline struct super_block *dt_mnt_sb_get(const struct dt_device *dev)
2566 {
2567         LASSERT(dev);
2568         LASSERT(dev->dd_ops);
2569         if (dev->dd_ops->dt_mnt_sb_get)
2570                 return dev->dd_ops->dt_mnt_sb_get(dev);
2571
2572         return ERR_PTR(-EOPNOTSUPP);
2573 }
2574
2575 static inline int dt_sync(const struct lu_env *env, struct dt_device *dev)
2576 {
2577         LASSERT(dev);
2578         LASSERT(dev->dd_ops);
2579         LASSERT(dev->dd_ops->dt_sync);
2580         return dev->dd_ops->dt_sync(env, dev);
2581 }
2582
2583 static inline int dt_ro(const struct lu_env *env, struct dt_device *dev)
2584 {
2585         LASSERT(dev);
2586         LASSERT(dev->dd_ops);
2587         LASSERT(dev->dd_ops->dt_ro);
2588         return dev->dd_ops->dt_ro(env, dev);
2589 }
2590
2591 static inline int dt_declare_insert(const struct lu_env *env,
2592                                     struct dt_object *dt,
2593                                     const struct dt_rec *rec,
2594                                     const struct dt_key *key,
2595                                     struct thandle *th)
2596 {
2597         LASSERT(dt);
2598         LASSERT(dt->do_index_ops);
2599         LASSERT(dt->do_index_ops->dio_declare_insert);
2600
2601         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_INSERT))
2602                 return cfs_fail_err;
2603
2604         return dt->do_index_ops->dio_declare_insert(env, dt, rec, key, th);
2605 }
2606
2607 static inline int dt_insert(const struct lu_env *env,
2608                             struct dt_object *dt,
2609                             const struct dt_rec *rec,
2610                             const struct dt_key *key,
2611                             struct thandle *th)
2612 {
2613         LASSERT(dt);
2614         LASSERT(dt->do_index_ops);
2615         LASSERT(dt->do_index_ops->dio_insert);
2616
2617         if (CFS_FAULT_CHECK(OBD_FAIL_DT_INSERT))
2618                 return cfs_fail_err;
2619
2620         return dt->do_index_ops->dio_insert(env, dt, rec, key, th);
2621 }
2622
2623 static inline int dt_declare_xattr_del(const struct lu_env *env,
2624                                        struct dt_object *dt,
2625                                        const char *name,
2626                                        struct thandle *th)
2627 {
2628         LASSERT(dt);
2629         LASSERT(dt->do_ops);
2630         LASSERT(dt->do_ops->do_declare_xattr_del);
2631
2632         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_XATTR_DEL))
2633                 return cfs_fail_err;
2634
2635         return dt->do_ops->do_declare_xattr_del(env, dt, name, th);
2636 }
2637
2638 static inline int dt_xattr_del(const struct lu_env *env,
2639                                struct dt_object *dt, const char *name,
2640                                struct thandle *th)
2641 {
2642         LASSERT(dt);
2643         LASSERT(dt->do_ops);
2644         LASSERT(dt->do_ops->do_xattr_del);
2645
2646         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_DEL))
2647                 return cfs_fail_err;
2648
2649         return dt->do_ops->do_xattr_del(env, dt, name, th);
2650 }
2651
2652 static inline int dt_declare_xattr_set(const struct lu_env *env,
2653                                       struct dt_object *dt,
2654                                       const struct lu_buf *buf,
2655                                       const char *name, int fl,
2656                                       struct thandle *th)
2657 {
2658         LASSERT(dt);
2659         LASSERT(dt->do_ops);
2660         LASSERT(dt->do_ops->do_declare_xattr_set);
2661
2662         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_XATTR_SET))
2663                 return cfs_fail_err;
2664
2665         return dt->do_ops->do_declare_xattr_set(env, dt, buf, name, fl, th);
2666 }
2667
2668 static inline int dt_xattr_set(const struct lu_env *env,
2669                                struct dt_object *dt, const struct lu_buf *buf,
2670                                const char *name, int fl, struct thandle *th)
2671 {
2672         LASSERT(dt);
2673         LASSERT(dt->do_ops);
2674         LASSERT(dt->do_ops->do_xattr_set);
2675
2676         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_SET))
2677                 return cfs_fail_err;
2678
2679         return dt->do_ops->do_xattr_set(env, dt, buf, name, fl, th);
2680 }
2681
2682 static inline int dt_declare_xattr_get(const struct lu_env *env,
2683                                        struct dt_object *dt,
2684                                        struct lu_buf *buf,
2685                                        const char *name)
2686 {
2687         LASSERT(dt);
2688         LASSERT(dt->do_ops);
2689         LASSERT(dt->do_ops->do_declare_xattr_get);
2690
2691         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_XATTR_GET))
2692                 return cfs_fail_err;
2693
2694         return dt->do_ops->do_declare_xattr_get(env, dt, buf, name);
2695 }
2696
2697 static inline int dt_xattr_get(const struct lu_env *env,
2698                                struct dt_object *dt, struct lu_buf *buf,
2699                                const char *name)
2700 {
2701         LASSERT(dt);
2702         LASSERT(dt->do_ops);
2703         LASSERT(dt->do_ops->do_xattr_get);
2704
2705         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_GET))
2706                 return cfs_fail_err;
2707
2708         return dt->do_ops->do_xattr_get(env, dt, buf, name);
2709 }
2710
2711 static inline int dt_xattr_list(const struct lu_env *env, struct dt_object *dt,
2712                                 const struct lu_buf *buf)
2713 {
2714         LASSERT(dt);
2715         LASSERT(dt->do_ops);
2716         LASSERT(dt->do_ops->do_xattr_list);
2717
2718         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_LIST))
2719                 return cfs_fail_err;
2720
2721         return dt->do_ops->do_xattr_list(env, dt, buf);
2722 }
2723
2724 static inline int dt_invalidate(const struct lu_env *env, struct dt_object *dt)
2725 {
2726         LASSERT(dt);
2727         LASSERT(dt->do_ops);
2728         LASSERT(dt->do_ops->do_invalidate);
2729
2730         return dt->do_ops->do_invalidate(env, dt);
2731 }
2732
2733 static inline int dt_declare_delete(const struct lu_env *env,
2734                                     struct dt_object *dt,
2735                                     const struct dt_key *key,
2736                                     struct thandle *th)
2737 {
2738         LASSERT(dt);
2739         LASSERT(dt->do_index_ops);
2740         LASSERT(dt->do_index_ops->dio_declare_delete);
2741
2742         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_DELETE))
2743                 return cfs_fail_err;
2744
2745         return dt->do_index_ops->dio_declare_delete(env, dt, key, th);
2746 }
2747
2748 static inline int dt_delete(const struct lu_env *env,
2749                             struct dt_object *dt,
2750                             const struct dt_key *key,
2751                             struct thandle *th)
2752 {
2753         LASSERT(dt);
2754         LASSERT(dt->do_index_ops);
2755         LASSERT(dt->do_index_ops->dio_delete);
2756
2757         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DELETE))
2758                 return cfs_fail_err;
2759
2760         return dt->do_index_ops->dio_delete(env, dt, key, th);
2761 }
2762
2763 static inline int dt_commit_async(const struct lu_env *env,
2764                                   struct dt_device *dev)
2765 {
2766         LASSERT(dev);
2767         LASSERT(dev->dd_ops);
2768         LASSERT(dev->dd_ops->dt_commit_async);
2769         return dev->dd_ops->dt_commit_async(env, dev);
2770 }
2771
2772 static inline int dt_lookup(const struct lu_env *env,
2773                             struct dt_object *dt,
2774                             struct dt_rec *rec,
2775                             const struct dt_key *key)
2776 {
2777         int ret;
2778
2779         LASSERT(dt);
2780         LASSERT(dt->do_index_ops);
2781         LASSERT(dt->do_index_ops->dio_lookup);
2782
2783         if (CFS_FAULT_CHECK(OBD_FAIL_DT_LOOKUP))
2784                 return cfs_fail_err;
2785
2786         ret = dt->do_index_ops->dio_lookup(env, dt, rec, key);
2787         if (ret > 0)
2788                 ret = 0;
2789         else if (ret == 0)
2790                 ret = -ENOENT;
2791         return ret;
2792 }
2793
2794 static inline int dt_declare_layout_change(const struct lu_env *env,
2795                                            struct dt_object *o,
2796                                            struct md_layout_change *mlc,
2797                                            struct thandle *th)
2798 {
2799         LASSERT(o);
2800         LASSERT(o->do_ops);
2801         LASSERT(o->do_ops->do_declare_layout_change);
2802         return o->do_ops->do_declare_layout_change(env, o, mlc, th);
2803 }
2804
2805 static inline int dt_layout_change(const struct lu_env *env,
2806                                    struct dt_object *o,
2807                                    struct md_layout_change *mlc,
2808                                    struct thandle *th)
2809 {
2810         LASSERT(o);
2811         LASSERT(o->do_ops);
2812         LASSERT(o->do_ops->do_layout_change);
2813         return o->do_ops->do_layout_change(env, o, mlc, th);
2814 }
2815
2816 struct dt_find_hint {
2817         struct lu_fid        *dfh_fid;
2818         struct dt_device     *dfh_dt;
2819         struct dt_object     *dfh_o;
2820 };
2821
2822 struct dt_insert_rec {
2823         union {
2824                 const struct lu_fid     *rec_fid;
2825                 void                    *rec_data;
2826         };
2827         union {
2828                 struct {
2829                         __u32            rec_type;
2830                         __u32            rec_padding;
2831                 };
2832                 __u64                    rec_misc;
2833         };
2834 };
2835
2836 struct dt_thread_info {
2837         char                     dti_buf[DT_MAX_PATH];
2838         struct dt_find_hint      dti_dfh;
2839         struct lu_attr           dti_attr;
2840         struct lu_fid            dti_fid;
2841         struct dt_object_format  dti_dof;
2842         struct lustre_mdt_attrs  dti_lma;
2843         struct lu_buf            dti_lb;
2844         struct lu_object_conf    dti_conf;
2845         loff_t                   dti_off;
2846         struct dt_insert_rec     dti_dt_rec;
2847 };
2848
2849 extern struct lu_context_key dt_key;
2850
2851 static inline struct dt_thread_info *dt_info(const struct lu_env *env)
2852 {
2853         struct dt_thread_info *dti;
2854
2855         dti = lu_context_key_get(&env->le_ctx, &dt_key);
2856         LASSERT(dti);
2857         return dti;
2858 }
2859
2860 int dt_global_init(void);
2861 void dt_global_fini(void);
2862 int dt_tunables_init(struct dt_device *dt, struct obd_type *type,
2863                      const char *name, struct lprocfs_vars *list);
2864 int dt_tunables_fini(struct dt_device *dt);
2865
2866 # ifdef CONFIG_PROC_FS
2867 int lprocfs_dt_blksize_seq_show(struct seq_file *m, void *v);
2868 int lprocfs_dt_kbytestotal_seq_show(struct seq_file *m, void *v);
2869 int lprocfs_dt_kbytesfree_seq_show(struct seq_file *m, void *v);
2870 int lprocfs_dt_kbytesavail_seq_show(struct seq_file *m, void *v);
2871 int lprocfs_dt_filestotal_seq_show(struct seq_file *m, void *v);
2872 int lprocfs_dt_filesfree_seq_show(struct seq_file *m, void *v);
2873 # endif /* CONFIG_PROC_FS */
2874
2875 #endif /* __LUSTRE_DT_OBJECT_H */