Whamcloud - gitweb
d9cc9334e14a36cdea77cbaca0d5b663276b2d56
[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 = BIT(0),
337         /** index supports variable sized records */
338         DT_IND_VARREC = BIT(1),
339         /** index can be modified */
340         DT_IND_UPDATE = BIT(2),
341         /** index supports records with non-unique (duplicate) keys */
342         DT_IND_NONUNQ = BIT(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 = BIT(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] maxlnb    max slots in @lnb array
1200          * \param[in] rw        0 if used to read, 1 if used for write
1201          *
1202          * \retval positive     number of descriptors on success
1203          * \retval negative     negated errno on error
1204          */
1205         int (*dbo_bufs_get)(const struct lu_env *env,
1206                             struct dt_object *dt,
1207                             loff_t pos,
1208                             ssize_t len,
1209                             struct niobuf_local *lb,
1210                             int maxlnb,
1211                             enum dt_bufs_type rw);
1212
1213         /**
1214          * Release reference granted by ->dbo_bufs_get().
1215          *
1216          * Release the reference granted by the previous ->dbo_bufs_get().
1217          * Note the references are counted.
1218          *
1219          * \param[in] env       execution environment for this thread
1220          * \param[in] dt        object
1221          * \param[out] lb       array of descriptors to fill
1222          * \param[in] nr        size of the array
1223          *
1224          * \retval 0            on success
1225          * \retval negative     negated errno on error
1226          */
1227         int (*dbo_bufs_put)(const struct lu_env *env,
1228                             struct dt_object *dt,
1229                             struct niobuf_local *lb,
1230                             int nr);
1231
1232         /**
1233          * Prepare buffers for reading.
1234          *
1235          * The method is called on the given buffers to fill them with data
1236          * if that wasn't done in ->dbo_bufs_get(). The idea is that the
1237          * caller should be able to get few buffers for discontiguous regions
1238          * using few calls to ->dbo_bufs_get() and then request them all for
1239          * the preparation with a single call, so that OSD can fire many I/Os
1240          * to run concurrently. It's up to the specific OSD whether to implement
1241          * this logic in ->dbo_read_prep() or just use ->dbo_bufs_get() to
1242          * prepare data for every requested region individually.
1243          *
1244          * \param[in] env       execution environment for this thread
1245          * \param[in] dt        object
1246          * \param[in] lnb       array of buffer descriptors
1247          * \param[in] nr        size of the array
1248          *
1249          * \retval 0            on success
1250          * \retval negative     negated errno on error
1251          */
1252         int (*dbo_read_prep)(const struct lu_env *env,
1253                              struct dt_object *dt,
1254                              struct niobuf_local *lnb,
1255                              int nr);
1256
1257         /**
1258          * Prepare buffers for write.
1259          *
1260          * This method is called on the given buffers to ensure the partial
1261          * buffers contain correct data. The underlying idea is the same as
1262          * in ->db_read_prep().
1263          *
1264          * \param[in] env       execution environment for this thread
1265          * \param[in] dt        object
1266          * \param[in] lb        array of buffer descriptors
1267          * \param[in] nr        size of the array
1268          *
1269          * \retval 0            on success
1270          * \retval negative     negated errno on error
1271          */
1272         int (*dbo_write_prep)(const struct lu_env *env,
1273                               struct dt_object *dt,
1274                               struct niobuf_local *lb,
1275                               int nr);
1276
1277         /**
1278          * Declare intention to write data stored in the buffers.
1279          *
1280          * Notify the underlying filesystem that data may be written in
1281          * this transaction. This enables the layer below to prepare resources
1282          * (e.g. journal credits in ext4).  This method should be called
1283          * between creating the transaction and starting it.
1284          *
1285          * If the layer implementing this method is responsible for quota,
1286          * then the method should be reserving a space for the given
1287          * credentials and return an error if quota is exceeded. If the write
1288          * later fails for some reason, then the reserve should be released
1289          * properly (usually in ->dt_trans_stop()).
1290          *
1291          * \param[in] env       execution environment for this thread
1292          * \param[in] dt        object
1293          * \param[in] lb        array of descriptors
1294          * \param[in] nr        size of the array
1295          * \param[in] th        transaction handle
1296          *
1297          * \retval 0            on success
1298          * \retval negative     negated errno on error
1299          */
1300         int (*dbo_declare_write_commit)(const struct lu_env *env,
1301                                         struct dt_object *dt,
1302                                         struct niobuf_local *lb,
1303                                         int nr,
1304                                         struct thandle *th);
1305
1306         /**
1307          * Write to existing object.
1308          *
1309          * This method is used to write data to a persistent storage using
1310          * the buffers returned by ->dbo_bufs_get(). The caller puts new
1311          * data into the buffers using own mechanisms (e.g. direct transfer
1312          * from a NIC). The method should maintain attr.la_size. Also,
1313          * attr.la_blocks should be maintained but this can be done in lazy
1314          * manner, when actual allocation happens.
1315          *
1316          * If the layer implementing this method is responsible for quota,
1317          * then the method should maintain space accounting for the given
1318          * credentials.
1319          *
1320          * \param[in] env       execution environment for this thread
1321          * \param[in] dt        object
1322          * \param[in] lb        array of descriptors for the buffers
1323          * \param[in] nr        size of the array
1324          * \param[in] th        transaction handle
1325          *
1326          * \retval 0            on success
1327          * \retval negative     negated errno on error
1328          */
1329         int (*dbo_write_commit)(const struct lu_env *env,
1330                                 struct dt_object *dt,
1331                                 struct niobuf_local *lb,
1332                                 int nr,
1333                                 struct thandle *th);
1334
1335         /**
1336          * Return logical to physical block mapping for a given extent
1337          *
1338          * \param[in] env       execution environment for this thread
1339          * \param[in] dt        object
1340          * \param[in] fm        describe the region to map and the output buffer
1341          *                      see the details in include/linux/fiemap.h
1342          *
1343          * \retval 0            on success
1344          * \retval negative     negated errno on error
1345          */
1346         int (*dbo_fiemap_get)(const struct lu_env *env,
1347                               struct dt_object *dt,
1348                               struct fiemap *fm);
1349
1350         /**
1351          * Declare intention to deallocate space from an object.
1352          *
1353          * Notify the underlying filesystem that space may be deallocated in
1354          * this transactions. This enables the layer below to prepare resources
1355          * (e.g. journal credits in ext4).  This method should be called between
1356          * creating the transaction and starting it. The object need not exist.
1357          *
1358          * \param[in] env       execution environment for this thread
1359          * \param[in] dt        object
1360          * \param[in] start     the start of the region to deallocate
1361          * \param[in] end       the end of the region to deallocate
1362          * \param[in] th        transaction handle
1363          *
1364          * \retval 0            on success
1365          * \retval negative     negated errno on error
1366          */
1367         int   (*dbo_declare_punch)(const struct lu_env *env,
1368                                    struct dt_object *dt,
1369                                    __u64 start,
1370                                    __u64 end,
1371                                    struct thandle *th);
1372
1373         /**
1374          * Deallocate specified region in an object.
1375          *
1376          * This method is used to deallocate (release) space possibly consumed
1377          * by the given region of the object. If the layer implementing this
1378          * method is responsible for quota, then the method should maintain
1379          * space accounting for the given credentials.
1380          *
1381          * \param[in] env       execution environment for this thread
1382          * \param[in] dt        object
1383          * \param[in] start     the start of the region to deallocate
1384          * \param[in] end       the end of the region to deallocate
1385          * \param[in] th        transaction handle
1386          *
1387          * \retval 0            on success
1388          * \retval negative     negated errno on error
1389          */
1390         int   (*dbo_punch)(const struct lu_env *env,
1391                            struct dt_object *dt,
1392                            __u64 start,
1393                            __u64 end,
1394                            struct thandle *th);
1395         /**
1396          * Give advices on specified region in an object.
1397          *
1398          * This method is used to give advices about access pattern on an
1399          * given region of the object. The disk filesystem understands
1400          * the advices and tunes cache/read-ahead policies.
1401          *
1402          * \param[in] env       execution environment for this thread
1403          * \param[in] dt        object
1404          * \param[in] start     the start of the region affected
1405          * \param[in] end       the end of the region affected
1406          * \param[in] advice    advice type
1407          *
1408          * \retval 0            on success
1409          * \retval negative     negated errno on error
1410          */
1411         int   (*dbo_ladvise)(const struct lu_env *env,
1412                              struct dt_object *dt,
1413                              __u64 start,
1414                              __u64 end,
1415                              enum lu_ladvise_type advice);
1416
1417         /**
1418          * Declare intention to preallocate space for an object
1419          *
1420          * \param[in] env       execution environment for this thread
1421          * \param[in] dt        object
1422          * \param[in] th        transaction handle
1423          *
1424          * \retval 0            on success
1425          * \retval negative     negated errno on error
1426          */
1427         int (*dbo_declare_fallocate)(const struct lu_env *env,
1428                                     struct dt_object *dt,
1429                                     struct thandle *th);
1430         /**
1431          * Allocate specified region for an object
1432          *
1433          * \param[in] env       execution environment for this thread
1434          * \param[in] dt        object
1435          * \param[in] start     the start of the region to allocate
1436          * \param[in] end       the end of the region to allocate
1437          * \param[in] mode      fallocate mode
1438          * \param[in] th        transaction handle
1439          *
1440          * \retval 0            on success
1441          * \retval negative     negated errno on error
1442          */
1443         int (*dbo_fallocate)(const struct lu_env *env,
1444                             struct dt_object *dt,
1445                             __u64 start,
1446                             __u64 end,
1447                             int mode,
1448                             struct thandle *th);
1449 };
1450
1451 /**
1452  * Incomplete type of index record.
1453  */
1454 struct dt_rec;
1455
1456 /**
1457  * Incomplete type of index key.
1458  */
1459 struct dt_key;
1460
1461 /**
1462  * Incomplete type of dt iterator.
1463  */
1464 struct dt_it;
1465
1466 /**
1467  * Per-dt-object operations on object as index. Index is a set of key/value
1468  * pairs abstracted from an on-disk representation. An index supports the
1469  * number of operations including lookup by key, insert and delete. Also,
1470  * an index can be iterated to find the pairs one by one, from a beginning
1471  * or specified point.
1472  */
1473 struct dt_index_operations {
1474         /**
1475          * Lookup in an index by key.
1476          *
1477          * The method returns a value for the given key. Key/value format
1478          * and size should have been negotiated with ->do_index_try() before.
1479          * Thus it's the caller's responsibility to provide the method with
1480          * proper key and big enough buffer. No external locking is required,
1481          * all the internal consistency should be implemented by the method
1482          * or lower layers. The object should should have been created with
1483          * type DFT_INDEX or DFT_DIR.
1484          *
1485          * \param[in] env       execution environment for this thread
1486          * \param[in] dt        object
1487          * \param[out] rec      buffer where value will be stored
1488          * \param[in] key       key
1489          *
1490          * \retval 0            on success
1491          * \retval -ENOENT      if key isn't found
1492          * \retval negative     negated errno on error
1493          */
1494         int (*dio_lookup)(const struct lu_env *env,
1495                           struct dt_object *dt,
1496                           struct dt_rec *rec,
1497                           const struct dt_key *key);
1498
1499         /**
1500          * Declare intention to insert a key/value into an index.
1501          *
1502          * Notify the underlying filesystem that new key/value may be inserted
1503          * in this transaction. This enables the layer below to prepare
1504          * resources (e.g. journal credits in ext4). This method should be
1505          * called between creating the transaction and starting it. key/value
1506          * format and size is subject to ->do_index_try().
1507          *
1508          * \param[in] env       execution environment for this thread
1509          * \param[in] dt        object
1510          * \param[in] rec       buffer storing value
1511          * \param[in] key       key
1512          * \param[in] th        transaction handle
1513          *
1514          * \retval 0            on success
1515          * \retval negative     negated errno on error
1516          */
1517         int (*dio_declare_insert)(const struct lu_env *env,
1518                                   struct dt_object *dt,
1519                                   const struct dt_rec *rec,
1520                                   const struct dt_key *key,
1521                                   struct thandle *th);
1522
1523         /**
1524          * Insert a new key/value pair into an index.
1525          *
1526          * The method inserts specified key/value pair into the given index
1527          * object. The internal consistency is maintained by the method or
1528          * the functionality below. The format and size of key/value should
1529          * have been negotiated before using ->do_index_try(), no additional
1530          * information can be specified to the method. The keys are unique
1531          * in a given index.
1532          *
1533          * \param[in] env       execution environment for this thread
1534          * \param[in] dt        object
1535          * \param[in] rec       buffer storing value
1536          * \param[in] key       key
1537          * \param[in] th        transaction handle
1538          *
1539          * \retval 0            on success
1540          * \retval negative     negated errno on error
1541          */
1542         int (*dio_insert)(const struct lu_env *env,
1543                           struct dt_object *dt,
1544                           const struct dt_rec *rec,
1545                           const struct dt_key *key,
1546                           struct thandle *th);
1547
1548         /**
1549          * Declare intention to delete a key/value from an index.
1550          *
1551          * Notify the underlying filesystem that key/value may be deleted in
1552          * this transaction. This enables the layer below to prepare resources
1553          * (e.g. journal credits in ext4).  This method should be called
1554          * between creating the transaction and starting it. Key/value format
1555          * and size is subject to ->do_index_try(). The object need not exist.
1556          *
1557          * \param[in] env       execution environment for this thread
1558          * \param[in] dt        object
1559          * \param[in] key       key
1560          * \param[in] th        transaction handle
1561          *
1562          * \retval 0            on success
1563          * \retval negative     negated errno on error
1564          */
1565         int (*dio_declare_delete)(const struct lu_env *env,
1566                                   struct dt_object *dt,
1567                                   const struct dt_key *key,
1568                                   struct thandle *th);
1569
1570         /**
1571          * Delete key/value pair from an index.
1572          *
1573          * The method deletes specified key and corresponding value from the
1574          * given index object. The internal consistency is maintained by the
1575          * method or the functionality below. The format and size of the key
1576          * should have been negotiated before using ->do_index_try(), no
1577          * additional information can be specified to the method.
1578          *
1579          * \param[in] env       execution environment for this thread
1580          * \param[in] dt        object
1581          * \param[in] key       key
1582          * \param[in] th        transaction handle
1583          *
1584          * \retval 0            on success
1585          * \retval negative     negated errno on error
1586          */
1587         int (*dio_delete)(const struct lu_env *env,
1588                           struct dt_object *dt,
1589                           const struct dt_key *key,
1590                           struct thandle *th);
1591
1592         /**
1593          * Iterator interface.
1594          *
1595          * Methods to iterate over an existing index, list the keys stored and
1596          * associated values, get key/value size, etc.
1597          */
1598         struct dt_it_ops {
1599                 /**
1600                  * Allocate and initialize new iterator.
1601                  *
1602                  * The iterator is a handler to be used in the subsequent
1603                  * methods to access index's content. Note the position is
1604                  * not defined at this point and should be initialized with
1605                  * ->get() or ->load() method.
1606                  *
1607                  * \param[in] env       execution environment for this thread
1608                  * \param[in] dt        object
1609                  * \param[in] attr      ask the iterator to return part of
1610                                         the records, see LUDA_* for details
1611                  *
1612                  * \retval pointer      iterator pointer on success
1613                  * \retval ERR_PTR(errno)       on error
1614                  */
1615                 struct dt_it *(*init)(const struct lu_env *env,
1616                                       struct dt_object *dt,
1617                                       __u32 attr);
1618
1619                 /**
1620                  * Release iterator.
1621                  *
1622                  * Release the specified iterator and all the resources
1623                  * associated (e.g. the object, index cache, etc).
1624                  *
1625                  * \param[in] env       execution environment for this thread
1626                  * \param[in] di        iterator to release
1627                  */
1628                 void          (*fini)(const struct lu_env *env,
1629                                       struct dt_it *di);
1630
1631                 /**
1632                  * Move position of iterator.
1633                  *
1634                  * Move the position of the specified iterator to the specified
1635                  * key.
1636                  *
1637                  * \param[in] env       execution environment for this thread
1638                  * \param[in] di        iterator
1639                  * \param[in] key       key to position to
1640                  *
1641                  * \retval 0            if exact key is found
1642                  * \retval 1            if at the record with least key
1643                  *                      not larger than the key
1644                  * \retval negative     negated errno on error
1645                  */
1646                 int            (*get)(const struct lu_env *env,
1647                                       struct dt_it *di,
1648                                       const struct dt_key *key);
1649
1650                 /**
1651                  * Release position
1652                  *
1653                  * Complimentary method for dt_it_ops::get() above. Some
1654                  * implementation can increase a reference on the iterator in
1655                  * dt_it_ops::get(). So the caller should be able to release
1656                  * with dt_it_ops::put().
1657                  *
1658                  * \param[in] env       execution environment for this thread
1659                  * \param[in] di        iterator
1660                  */
1661                 void           (*put)(const struct lu_env *env,
1662                                       struct dt_it *di);
1663
1664                 /**
1665                  * Move to next record.
1666                  *
1667                  * Moves the position of the iterator to a next record
1668                  *
1669                  * \param[in] env       execution environment for this thread
1670                  * \param[in] di        iterator
1671                  *
1672                  * \retval 1            if no more records
1673                  * \retval 0            on success, the next record is found
1674                  * \retval negative     negated errno on error
1675                  */
1676                 int           (*next)(const struct lu_env *env,
1677                                       struct dt_it *di);
1678
1679                 /**
1680                  * Return key.
1681                  *
1682                  * Returns a pointer to a buffer containing the key of the
1683                  * record at the current position. The pointer is valid and
1684                  * retains data until ->get(), ->load() and ->fini() methods
1685                  * are called.
1686                  *
1687                  * \param[in] env       execution environment for this thread
1688                  * \param[in] di        iterator
1689                  *
1690                  * \retval pointer to key       on success
1691                  * \retval ERR_PTR(errno)       on error
1692                  */
1693                 struct dt_key *(*key)(const struct lu_env *env,
1694                                       const struct dt_it *di);
1695
1696                 /**
1697                  * Return key size.
1698                  *
1699                  * Returns size of the key at the current position.
1700                  *
1701                  * \param[in] env       execution environment for this thread
1702                  * \param[in] di        iterator
1703                  *
1704                  * \retval key's size   on success
1705                  * \retval negative     negated errno on error
1706                  */
1707                 int       (*key_size)(const struct lu_env *env,
1708                                       const struct dt_it *di);
1709
1710                 /**
1711                  * Return record.
1712                  *
1713                  * Stores the value of the record at the current position. The
1714                  * buffer must be big enough (as negotiated with
1715                  * ->do_index_try() or ->rec_size()). The caller can specify
1716                  * she is interested only in part of the record, using attr
1717                  * argument (see LUDA_* definitions for the details).
1718                  *
1719                  * \param[in] env       execution environment for this thread
1720                  * \param[in] di        iterator
1721                  * \param[out] rec      buffer to store value in
1722                  * \param[in] attr      specify part of the value to copy
1723                  *
1724                  * \retval 0            on success
1725                  * \retval negative     negated errno on error
1726                  */
1727                 int            (*rec)(const struct lu_env *env,
1728                                       const struct dt_it *di,
1729                                       struct dt_rec *rec,
1730                                       __u32 attr);
1731
1732                 /**
1733                  * Return record size.
1734                  *
1735                  * Returns size of the record at the current position. The
1736                  * \a attr can be used to specify only the parts of the record
1737                  * needed to be returned. (see LUDA_* definitions for the
1738                  * details).
1739                  *
1740                  * \param[in] env       execution environment for this thread
1741                  * \param[in] di        iterator
1742                  * \param[in] attr      part of the record to return
1743                  *
1744                  * \retval record's size        on success
1745                  * \retval negative             negated errno on error
1746                  */
1747                 int        (*rec_size)(const struct lu_env *env,
1748                                        const struct dt_it *di,
1749                                       __u32 attr);
1750
1751                 /**
1752                  * Return a cookie (hash).
1753                  *
1754                  * Returns the cookie (usually hash) of the key at the current
1755                  * position. This allows the caller to resume iteration at this
1756                  * position later. The exact value is specific to implementation
1757                  * and should not be interpreted by the caller.
1758                  *
1759                  * \param[in] env       execution environment for this thread
1760                  * \param[in] di        iterator
1761                  *
1762                  * \retval cookie/hash of the key
1763                  */
1764                 __u64        (*store)(const struct lu_env *env,
1765                                       const struct dt_it *di);
1766
1767                 /**
1768                  * Initialize position using cookie/hash.
1769                  *
1770                  * Initializes the current position of the iterator to one
1771                  * described by the cookie/hash as returned by ->store()
1772                  * previously.
1773                  *
1774                  * \param[in] env       execution environment for this thread
1775                  * \param[in] di        iterator
1776                  * \param[in] hash      cookie/hash value
1777                  *
1778                  * \retval positive     if current position points to
1779                  *                      record with least cookie not larger
1780                  *                      than cookie
1781                  * \retval 0            if current position matches cookie
1782                  * \retval negative     negated errno on error
1783                  */
1784                 int           (*load)(const struct lu_env *env,
1785                                       const struct dt_it *di,
1786                                       __u64 hash);
1787
1788                 /**
1789                  * Not used
1790                  */
1791                 int        (*key_rec)(const struct lu_env *env,
1792                                       const struct dt_it *di,
1793                                       void *key_rec);
1794         } dio_it;
1795 };
1796
1797 enum dt_otable_it_valid {
1798         DOIV_ERROR_HANDLE       = 0x0001,
1799         DOIV_DRYRUN             = 0x0002,
1800 };
1801
1802 enum dt_otable_it_flags {
1803         /* Exit when fail. */
1804         DOIF_FAILOUT    = 0x0001,
1805
1806         /* Reset iteration position to the device beginning. */
1807         DOIF_RESET      = 0x0002,
1808
1809         /* There is up layer component uses the iteration. */
1810         DOIF_OUTUSED    = 0x0004,
1811
1812         /* Check only without repairing. */
1813         DOIF_DRYRUN     = 0x0008,
1814 };
1815
1816 /* otable based iteration needs to use the common DT iteration APIs.
1817  * To initialize the iteration, it needs call dio_it::init() firstly.
1818  * Here is how the otable based iteration should prepare arguments to
1819  * call dt_it_ops::init().
1820  *
1821  * For otable based iteration, the 32-bits 'attr' for dt_it_ops::init()
1822  * is composed of two parts:
1823  * low 16-bits is for valid bits, high 16-bits is for flags bits. */
1824 #define DT_OTABLE_IT_FLAGS_SHIFT        16
1825 #define DT_OTABLE_IT_FLAGS_MASK         0xffff0000
1826
1827 struct dt_device {
1828         struct lu_device                   dd_lu_dev;
1829         const struct dt_device_operations *dd_ops;
1830
1831         /**
1832          * List of dt_txn_callback (see below). This is not protected in any
1833          * way, because callbacks are supposed to be added/deleted only during
1834          * single-threaded start-up shut-down procedures.
1835          */
1836         struct list_head                   dd_txn_callbacks;
1837         unsigned int                       dd_record_fid_accessed:1,
1838                                            dd_rdonly:1;
1839
1840         /* sysfs and debugfs handling */
1841         struct dentry                     *dd_debugfs_entry;
1842
1843         const struct attribute           **dd_def_attrs;
1844         struct kobject                     dd_kobj;
1845         struct kobj_type                   dd_ktype;
1846         struct completion                  dd_kobj_unregister;
1847 };
1848
1849 int  dt_device_init(struct dt_device *dev, struct lu_device_type *t);
1850 void dt_device_fini(struct dt_device *dev);
1851
1852 static inline int lu_device_is_dt(const struct lu_device *d)
1853 {
1854         return ergo(d != NULL, d->ld_type->ldt_tags & LU_DEVICE_DT);
1855 }
1856
1857 static inline struct dt_device * lu2dt_dev(struct lu_device *l)
1858 {
1859         LASSERT(lu_device_is_dt(l));
1860         return container_of0(l, struct dt_device, dd_lu_dev);
1861 }
1862
1863 struct dt_object {
1864         struct lu_object                   do_lu;
1865         const struct dt_object_operations *do_ops;
1866         const struct dt_body_operations   *do_body_ops;
1867         const struct dt_index_operations  *do_index_ops;
1868 };
1869
1870 /*
1871  * In-core representation of per-device local object OID storage
1872  */
1873 struct local_oid_storage {
1874         /* all initialized llog systems on this node linked by this */
1875         struct list_head  los_list;
1876
1877         /* how many handle's reference this los has */
1878         atomic_t          los_refcount;
1879         struct dt_device *los_dev;
1880         struct dt_object *los_obj;
1881
1882         /* data used to generate new fids */
1883         struct mutex      los_id_lock;
1884         __u64             los_seq;
1885         __u32             los_last_oid;
1886 };
1887
1888 static inline struct lu_device *dt2lu_dev(struct dt_device *d)
1889 {
1890         return &d->dd_lu_dev;
1891 }
1892
1893 static inline struct dt_object *lu2dt(struct lu_object *l)
1894 {
1895         LASSERT(l == NULL || IS_ERR(l) || lu_device_is_dt(l->lo_dev));
1896         return container_of0(l, struct dt_object, do_lu);
1897 }
1898
1899 int  dt_object_init(struct dt_object *obj,
1900                     struct lu_object_header *h, struct lu_device *d);
1901
1902 void dt_object_fini(struct dt_object *obj);
1903
1904 static inline int dt_object_exists(const struct dt_object *dt)
1905 {
1906         return lu_object_exists(&dt->do_lu);
1907 }
1908
1909 static inline int dt_object_remote(const struct dt_object *dt)
1910 {
1911         return lu_object_remote(&dt->do_lu);
1912 }
1913
1914 static inline struct dt_object *lu2dt_obj(struct lu_object *o)
1915 {
1916         LASSERT(ergo(o != NULL, lu_device_is_dt(o->lo_dev)));
1917         return container_of0(o, struct dt_object, do_lu);
1918 }
1919
1920 static inline struct dt_object *dt_object_child(struct dt_object *o)
1921 {
1922         return container_of0(lu_object_next(&(o)->do_lu),
1923                              struct dt_object, do_lu);
1924 }
1925
1926 /**
1927  * This is the general purpose transaction handle.
1928  * 1. Transaction Life Cycle
1929  *      This transaction handle is allocated upon starting a new transaction,
1930  *      and deallocated after this transaction is committed.
1931  * 2. Transaction Nesting
1932  *      We do _NOT_ support nested transaction. So, every thread should only
1933  *      have one active transaction, and a transaction only belongs to one
1934  *      thread. Due to this, transaction handle need no reference count.
1935  * 3. Transaction & dt_object locking
1936  *      dt_object locks should be taken inside transaction.
1937  * 4. Transaction & RPC
1938  *      No RPC request should be issued inside transaction.
1939  */
1940 struct thandle {
1941         /** the dt device on which the transactions are executed */
1942         struct dt_device *th_dev;
1943
1944         /* point to the top thandle, XXX this is a bit hacky right now,
1945          * but normal device trans callback triggered by the bottom
1946          * device (OSP/OSD == sub thandle layer) needs to get the
1947          * top_thandle (see dt_txn_hook_start/stop()), so we put the
1948          * top thandle here for now, will fix it when we have better
1949          * callback mechanism */
1950         struct thandle  *th_top;
1951
1952         /** the last operation result in this transaction.
1953          * this value is used in recovery */
1954         __s32             th_result;
1955
1956         /** whether we need sync commit */
1957         unsigned int            th_sync:1,
1958         /* local transation, no need to inform other layers */
1959                                 th_local:1,
1960         /* Whether we need wait the transaction to be submitted
1961          * (send to remote target) */
1962                                 th_wait_submit:1,
1963         /* complex transaction which will track updates on all targets,
1964          * including OSTs */
1965                                 th_complex:1,
1966         /* whether ignore quota */
1967                                 th_ignore_quota:1;
1968 };
1969
1970 /**
1971  * Transaction call-backs.
1972  *
1973  * These are invoked by osd (or underlying transaction engine) when
1974  * transaction changes state.
1975  *
1976  * Call-backs are used by upper layers to modify transaction parameters and to
1977  * perform some actions on for each transaction state transition. Typical
1978  * example is mdt registering call-back to write into last-received file
1979  * before each transaction commit.
1980  */
1981 struct dt_txn_callback {
1982         int (*dtc_txn_start)(const struct lu_env *env,
1983                              struct thandle *txn, void *cookie);
1984         int (*dtc_txn_stop)(const struct lu_env *env,
1985                             struct thandle *txn, void *cookie);
1986         void                    *dtc_cookie;
1987         __u32                   dtc_tag;
1988         struct list_head        dtc_linkage;
1989 };
1990
1991 void dt_txn_callback_add(struct dt_device *dev, struct dt_txn_callback *cb);
1992 void dt_txn_callback_del(struct dt_device *dev, struct dt_txn_callback *cb);
1993
1994 int dt_txn_hook_start(const struct lu_env *env,
1995                       struct dt_device *dev, struct thandle *txn);
1996 int dt_txn_hook_stop(const struct lu_env *env, struct thandle *txn);
1997
1998 int dt_try_as_dir(const struct lu_env *env, struct dt_object *obj);
1999
2000 /**
2001  * Callback function used for parsing path.
2002  * \see llo_store_resolve
2003  */
2004 typedef int (*dt_entry_func_t)(const struct lu_env *env,
2005                             const char *name,
2006                             void *pvt);
2007
2008 #define DT_MAX_PATH 1024
2009
2010 int dt_path_parser(const struct lu_env *env,
2011                    char *local, dt_entry_func_t entry_func,
2012                    void *data);
2013
2014 struct dt_object *
2015 dt_store_resolve(const struct lu_env *env, struct dt_device *dt,
2016                  const char *path, struct lu_fid *fid);
2017
2018 struct dt_object *dt_store_open(const struct lu_env *env,
2019                                 struct dt_device *dt,
2020                                 const char *dirname,
2021                                 const char *filename,
2022                                 struct lu_fid *fid);
2023
2024 struct dt_object *dt_find_or_create(const struct lu_env *env,
2025                                     struct dt_device *dt,
2026                                     const struct lu_fid *fid,
2027                                     struct dt_object_format *dof,
2028                                     struct lu_attr *attr);
2029
2030 struct dt_object *dt_locate_at(const struct lu_env *env,
2031                                struct dt_device *dev,
2032                                const struct lu_fid *fid,
2033                                struct lu_device *top_dev,
2034                                const struct lu_object_conf *conf);
2035
2036 static inline struct dt_object *
2037 dt_locate(const struct lu_env *env, struct dt_device *dev,
2038           const struct lu_fid *fid)
2039 {
2040         return dt_locate_at(env, dev, fid,
2041                             dev->dd_lu_dev.ld_site->ls_top_dev, NULL);
2042 }
2043
2044 static inline struct dt_object *
2045 dt_object_locate(struct dt_object *dto, struct dt_device *dt_dev)
2046 {
2047         struct lu_object *lo;
2048
2049         list_for_each_entry(lo, &dto->do_lu.lo_header->loh_layers, lo_linkage) {
2050                 if (lo->lo_dev == &dt_dev->dd_lu_dev)
2051                         return container_of(lo, struct dt_object, do_lu);
2052         }
2053         return NULL;
2054 }
2055
2056 static inline void dt_object_put(const struct lu_env *env,
2057                                  struct dt_object *dto)
2058 {
2059         lu_object_put(env, &dto->do_lu);
2060 }
2061
2062 static inline void dt_object_put_nocache(const struct lu_env *env,
2063                                          struct dt_object *dto)
2064 {
2065         lu_object_put_nocache(env, &dto->do_lu);
2066 }
2067
2068 int local_oid_storage_init(const struct lu_env *env, struct dt_device *dev,
2069                            const struct lu_fid *first_fid,
2070                            struct local_oid_storage **los);
2071 void local_oid_storage_fini(const struct lu_env *env,
2072                             struct local_oid_storage *los);
2073 int local_object_fid_generate(const struct lu_env *env,
2074                               struct local_oid_storage *los,
2075                               struct lu_fid *fid);
2076 int local_object_declare_create(const struct lu_env *env,
2077                                 struct local_oid_storage *los,
2078                                 struct dt_object *o,
2079                                 struct lu_attr *attr,
2080                                 struct dt_object_format *dof,
2081                                 struct thandle *th);
2082 int local_object_create(const struct lu_env *env,
2083                         struct local_oid_storage *los,
2084                         struct dt_object *o,
2085                         struct lu_attr *attr, struct dt_object_format *dof,
2086                         struct thandle *th);
2087 struct dt_object *local_file_find(const struct lu_env *env,
2088                                   struct local_oid_storage *los,
2089                                   struct dt_object *parent,
2090                                   const char *name);
2091 struct dt_object *local_file_find_or_create(const struct lu_env *env,
2092                                             struct local_oid_storage *los,
2093                                             struct dt_object *parent,
2094                                             const char *name, __u32 mode);
2095 struct dt_object *local_file_find_or_create_with_fid(const struct lu_env *env,
2096                                                      struct dt_device *dt,
2097                                                      const struct lu_fid *fid,
2098                                                      struct dt_object *parent,
2099                                                      const char *name,
2100                                                      __u32 mode);
2101 struct dt_object *
2102 local_index_find_or_create(const struct lu_env *env,
2103                            struct local_oid_storage *los,
2104                            struct dt_object *parent,
2105                            const char *name, __u32 mode,
2106                            const struct dt_index_features *ft);
2107 struct dt_object *
2108 local_index_find_or_create_with_fid(const struct lu_env *env,
2109                                     struct dt_device *dt,
2110                                     const struct lu_fid *fid,
2111                                     struct dt_object *parent,
2112                                     const char *name, __u32 mode,
2113                                     const struct dt_index_features *ft);
2114 int local_object_unlink(const struct lu_env *env, struct dt_device *dt,
2115                         struct dt_object *parent, const char *name);
2116
2117 static inline int dt_object_lock(const struct lu_env *env,
2118                                  struct dt_object *o, struct lustre_handle *lh,
2119                                  struct ldlm_enqueue_info *einfo,
2120                                  union ldlm_policy_data *policy)
2121 {
2122         LASSERT(o != NULL);
2123         LASSERT(o->do_ops != NULL);
2124         LASSERT(o->do_ops->do_object_lock != NULL);
2125         return o->do_ops->do_object_lock(env, o, lh, einfo, policy);
2126 }
2127
2128 static inline int dt_object_unlock(const struct lu_env *env,
2129                                    struct dt_object *o,
2130                                    struct ldlm_enqueue_info *einfo,
2131                                    union ldlm_policy_data *policy)
2132 {
2133         LASSERT(o != NULL);
2134         LASSERT(o->do_ops != NULL);
2135         LASSERT(o->do_ops->do_object_unlock != NULL);
2136         return o->do_ops->do_object_unlock(env, o, einfo, policy);
2137 }
2138
2139 int dt_lookup_dir(const struct lu_env *env, struct dt_object *dir,
2140                   const char *name, struct lu_fid *fid);
2141
2142 static inline int dt_object_sync(const struct lu_env *env, struct dt_object *o,
2143                                  __u64 start, __u64 end)
2144 {
2145         LASSERT(o);
2146         LASSERT(o->do_ops);
2147         LASSERT(o->do_ops->do_object_sync);
2148         return o->do_ops->do_object_sync(env, o, start, end);
2149 }
2150
2151 static inline int dt_fid_alloc(const struct lu_env *env,
2152                                struct dt_device *d,
2153                                struct lu_fid *fid,
2154                                struct lu_object *parent,
2155                                const struct lu_name *name)
2156 {
2157         struct lu_device *l = dt2lu_dev(d);
2158
2159         return l->ld_ops->ldo_fid_alloc(env, l, fid, parent, name);
2160 }
2161
2162 int dt_declare_version_set(const struct lu_env *env, struct dt_object *o,
2163                            struct thandle *th);
2164 void dt_version_set(const struct lu_env *env, struct dt_object *o,
2165                     dt_obj_version_t version, struct thandle *th);
2166 dt_obj_version_t dt_version_get(const struct lu_env *env, struct dt_object *o);
2167
2168
2169 int dt_read(const struct lu_env *env, struct dt_object *dt,
2170             struct lu_buf *buf, loff_t *pos);
2171 int dt_record_read(const struct lu_env *env, struct dt_object *dt,
2172                    struct lu_buf *buf, loff_t *pos);
2173 int dt_record_write(const struct lu_env *env, struct dt_object *dt,
2174                     const struct lu_buf *buf, loff_t *pos, struct thandle *th);
2175 typedef int (*dt_index_page_build_t)(const struct lu_env *env,
2176                                      union lu_page *lp, size_t nob,
2177                                      const struct dt_it_ops *iops,
2178                                      struct dt_it *it, __u32 attr, void *arg);
2179 int dt_index_walk(const struct lu_env *env, struct dt_object *obj,
2180                   const struct lu_rdpg *rdpg, dt_index_page_build_t filler,
2181                   void *arg);
2182 int dt_index_read(const struct lu_env *env, struct dt_device *dev,
2183                   struct idx_info *ii, const struct lu_rdpg *rdpg);
2184
2185 static inline struct thandle *dt_trans_create(const struct lu_env *env,
2186                                               struct dt_device *d)
2187 {
2188         LASSERT(d->dd_ops->dt_trans_create);
2189         return d->dd_ops->dt_trans_create(env, d);
2190 }
2191
2192 static inline int dt_trans_start(const struct lu_env *env,
2193                                  struct dt_device *d, struct thandle *th)
2194 {
2195         LASSERT(d->dd_ops->dt_trans_start);
2196         return d->dd_ops->dt_trans_start(env, d, th);
2197 }
2198
2199 /* for this transaction hooks shouldn't be called */
2200 static inline int dt_trans_start_local(const struct lu_env *env,
2201                                        struct dt_device *d, struct thandle *th)
2202 {
2203         LASSERT(d->dd_ops->dt_trans_start);
2204         th->th_local = 1;
2205         return d->dd_ops->dt_trans_start(env, d, th);
2206 }
2207
2208 static inline int dt_trans_stop(const struct lu_env *env,
2209                                 struct dt_device *d, struct thandle *th)
2210 {
2211         LASSERT(d->dd_ops->dt_trans_stop);
2212         return d->dd_ops->dt_trans_stop(env, d, th);
2213 }
2214
2215 static inline int dt_trans_cb_add(struct thandle *th,
2216                                   struct dt_txn_commit_cb *dcb)
2217 {
2218         LASSERT(th->th_dev->dd_ops->dt_trans_cb_add);
2219         dcb->dcb_magic = TRANS_COMMIT_CB_MAGIC;
2220         return th->th_dev->dd_ops->dt_trans_cb_add(th, dcb);
2221 }
2222 /** @} dt */
2223
2224
2225 static inline int dt_declare_record_write(const struct lu_env *env,
2226                                           struct dt_object *dt,
2227                                           const struct lu_buf *buf,
2228                                           loff_t pos,
2229                                           struct thandle *th)
2230 {
2231         int rc;
2232
2233         LASSERTF(dt != NULL, "dt is NULL when we want to write record\n");
2234         LASSERT(th != NULL);
2235         LASSERT(dt->do_body_ops);
2236         LASSERT(dt->do_body_ops->dbo_declare_write);
2237         rc = dt->do_body_ops->dbo_declare_write(env, dt, buf, pos, th);
2238         return rc;
2239 }
2240
2241 static inline int dt_declare_create(const struct lu_env *env,
2242                                     struct dt_object *dt,
2243                                     struct lu_attr *attr,
2244                                     struct dt_allocation_hint *hint,
2245                                     struct dt_object_format *dof,
2246                                     struct thandle *th)
2247 {
2248         LASSERT(dt);
2249         LASSERT(dt->do_ops);
2250         LASSERT(dt->do_ops->do_declare_create);
2251
2252         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_CREATE))
2253                 return cfs_fail_err;
2254
2255         return dt->do_ops->do_declare_create(env, dt, attr, hint, dof, th);
2256 }
2257
2258 static inline int dt_create(const struct lu_env *env,
2259                                     struct dt_object *dt,
2260                                     struct lu_attr *attr,
2261                                     struct dt_allocation_hint *hint,
2262                                     struct dt_object_format *dof,
2263                                     struct thandle *th)
2264 {
2265         LASSERT(dt);
2266         LASSERT(dt->do_ops);
2267         LASSERT(dt->do_ops->do_create);
2268
2269         if (CFS_FAULT_CHECK(OBD_FAIL_DT_CREATE))
2270                 return cfs_fail_err;
2271
2272         return dt->do_ops->do_create(env, dt, attr, hint, dof, th);
2273 }
2274
2275 static inline int dt_declare_destroy(const struct lu_env *env,
2276                                      struct dt_object *dt,
2277                                      struct thandle *th)
2278 {
2279         LASSERT(dt);
2280         LASSERT(dt->do_ops);
2281         LASSERT(dt->do_ops->do_declare_destroy);
2282
2283         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_DESTROY))
2284                 return cfs_fail_err;
2285
2286         return dt->do_ops->do_declare_destroy(env, dt, th);
2287 }
2288
2289 static inline int dt_destroy(const struct lu_env *env,
2290                              struct dt_object *dt,
2291                              struct thandle *th)
2292 {
2293         LASSERT(dt);
2294         LASSERT(dt->do_ops);
2295         LASSERT(dt->do_ops->do_destroy);
2296
2297         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DESTROY))
2298                 return cfs_fail_err;
2299
2300         return dt->do_ops->do_destroy(env, dt, th);
2301 }
2302
2303 static inline void dt_read_lock(const struct lu_env *env,
2304                                 struct dt_object *dt,
2305                                 unsigned role)
2306 {
2307         LASSERT(dt);
2308         LASSERT(dt->do_ops);
2309         LASSERT(dt->do_ops->do_read_lock);
2310         dt->do_ops->do_read_lock(env, dt, role);
2311 }
2312
2313 static inline void dt_write_lock(const struct lu_env *env,
2314                                 struct dt_object *dt,
2315                                 unsigned role)
2316 {
2317         LASSERT(dt);
2318         LASSERT(dt->do_ops);
2319         LASSERT(dt->do_ops->do_write_lock);
2320         dt->do_ops->do_write_lock(env, dt, role);
2321 }
2322
2323 static inline void dt_read_unlock(const struct lu_env *env,
2324                                 struct dt_object *dt)
2325 {
2326         LASSERT(dt);
2327         LASSERT(dt->do_ops);
2328         LASSERT(dt->do_ops->do_read_unlock);
2329         dt->do_ops->do_read_unlock(env, dt);
2330 }
2331
2332 static inline void dt_write_unlock(const struct lu_env *env,
2333                                 struct dt_object *dt)
2334 {
2335         LASSERT(dt);
2336         LASSERT(dt->do_ops);
2337         LASSERT(dt->do_ops->do_write_unlock);
2338         dt->do_ops->do_write_unlock(env, dt);
2339 }
2340
2341 static inline int dt_write_locked(const struct lu_env *env,
2342                                   struct dt_object *dt)
2343 {
2344         LASSERT(dt);
2345         LASSERT(dt->do_ops);
2346         LASSERT(dt->do_ops->do_write_locked);
2347         return dt->do_ops->do_write_locked(env, dt);
2348 }
2349
2350 static inline int dt_declare_attr_get(const struct lu_env *env,
2351                                       struct dt_object *dt)
2352 {
2353         LASSERT(dt);
2354         LASSERT(dt->do_ops);
2355         LASSERT(dt->do_ops->do_declare_attr_get);
2356
2357         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_ATTR_GET))
2358                 return cfs_fail_err;
2359
2360         return dt->do_ops->do_declare_attr_get(env, dt);
2361 }
2362
2363 static inline int dt_attr_get(const struct lu_env *env, struct dt_object *dt,
2364                               struct lu_attr *la)
2365 {
2366         LASSERT(dt);
2367         LASSERT(dt->do_ops);
2368         LASSERT(dt->do_ops->do_attr_get);
2369
2370         if (CFS_FAULT_CHECK(OBD_FAIL_DT_ATTR_GET))
2371                 return cfs_fail_err;
2372
2373         return dt->do_ops->do_attr_get(env, dt, la);
2374 }
2375
2376 static inline int dt_declare_attr_set(const struct lu_env *env,
2377                                       struct dt_object *dt,
2378                                       const struct lu_attr *la,
2379                                       struct thandle *th)
2380 {
2381         LASSERT(dt);
2382         LASSERT(dt->do_ops);
2383         LASSERT(dt->do_ops->do_declare_attr_set);
2384
2385         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_ATTR_SET))
2386                 return cfs_fail_err;
2387
2388         return dt->do_ops->do_declare_attr_set(env, dt, la, th);
2389 }
2390
2391 static inline int dt_attr_set(const struct lu_env *env, struct dt_object *dt,
2392                               const struct lu_attr *la, struct thandle *th)
2393 {
2394         LASSERT(dt);
2395         LASSERT(dt->do_ops);
2396         LASSERT(dt->do_ops->do_attr_set);
2397
2398         if (CFS_FAULT_CHECK(OBD_FAIL_DT_ATTR_SET))
2399                 return cfs_fail_err;
2400
2401         return dt->do_ops->do_attr_set(env, dt, la, th);
2402 }
2403
2404 static inline int dt_declare_ref_add(const struct lu_env *env,
2405                                      struct dt_object *dt, struct thandle *th)
2406 {
2407         LASSERT(dt);
2408         LASSERT(dt->do_ops);
2409         LASSERT(dt->do_ops->do_declare_ref_add);
2410
2411         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_REF_ADD))
2412                 return cfs_fail_err;
2413
2414         return dt->do_ops->do_declare_ref_add(env, dt, th);
2415 }
2416
2417 static inline int dt_ref_add(const struct lu_env *env,
2418                              struct dt_object *dt, struct thandle *th)
2419 {
2420         LASSERT(dt);
2421         LASSERT(dt->do_ops);
2422         LASSERT(dt->do_ops->do_ref_add);
2423
2424         if (CFS_FAULT_CHECK(OBD_FAIL_DT_REF_ADD))
2425                 return cfs_fail_err;
2426
2427         return dt->do_ops->do_ref_add(env, dt, th);
2428 }
2429
2430 static inline int dt_declare_ref_del(const struct lu_env *env,
2431                                      struct dt_object *dt, struct thandle *th)
2432 {
2433         LASSERT(dt);
2434         LASSERT(dt->do_ops);
2435         LASSERT(dt->do_ops->do_declare_ref_del);
2436
2437         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_REF_DEL))
2438                 return cfs_fail_err;
2439
2440         return dt->do_ops->do_declare_ref_del(env, dt, th);
2441 }
2442
2443 static inline int dt_ref_del(const struct lu_env *env,
2444                              struct dt_object *dt, struct thandle *th)
2445 {
2446         LASSERT(dt);
2447         LASSERT(dt->do_ops);
2448         LASSERT(dt->do_ops->do_ref_del);
2449
2450         if (CFS_FAULT_CHECK(OBD_FAIL_DT_REF_DEL))
2451                 return cfs_fail_err;
2452
2453         return dt->do_ops->do_ref_del(env, dt, th);
2454 }
2455
2456 static inline int dt_bufs_get(const struct lu_env *env, struct dt_object *d,
2457                               struct niobuf_remote *rnb,
2458                               struct niobuf_local *lnb, int maxlnb,
2459                               enum dt_bufs_type rw)
2460 {
2461         LASSERT(d);
2462         LASSERT(d->do_body_ops);
2463         LASSERT(d->do_body_ops->dbo_bufs_get);
2464         return d->do_body_ops->dbo_bufs_get(env, d, rnb->rnb_offset,
2465                                             rnb->rnb_len, lnb, maxlnb, rw);
2466 }
2467
2468 static inline int dt_bufs_put(const struct lu_env *env, struct dt_object *d,
2469                               struct niobuf_local *lnb, int n)
2470 {
2471         LASSERT(d);
2472         LASSERT(d->do_body_ops);
2473         LASSERT(d->do_body_ops->dbo_bufs_put);
2474         return d->do_body_ops->dbo_bufs_put(env, d, lnb, n);
2475 }
2476
2477 static inline int dt_write_prep(const struct lu_env *env, struct dt_object *d,
2478                                 struct niobuf_local *lnb, int n)
2479 {
2480         LASSERT(d);
2481         LASSERT(d->do_body_ops);
2482         LASSERT(d->do_body_ops->dbo_write_prep);
2483         return d->do_body_ops->dbo_write_prep(env, d, lnb, n);
2484 }
2485
2486 static inline int dt_declare_write_commit(const struct lu_env *env,
2487                                           struct dt_object *d,
2488                                           struct niobuf_local *lnb,
2489                                           int n, struct thandle *th)
2490 {
2491         LASSERTF(d != NULL, "dt is NULL when we want to declare write\n");
2492         LASSERT(th != NULL);
2493         return d->do_body_ops->dbo_declare_write_commit(env, d, lnb, n, th);
2494 }
2495
2496
2497 static inline int dt_write_commit(const struct lu_env *env,
2498                                   struct dt_object *d, struct niobuf_local *lnb,
2499                                   int n, struct thandle *th)
2500 {
2501         LASSERT(d);
2502         LASSERT(d->do_body_ops);
2503         LASSERT(d->do_body_ops->dbo_write_commit);
2504         return d->do_body_ops->dbo_write_commit(env, d, lnb, n, th);
2505 }
2506
2507 static inline int dt_read_prep(const struct lu_env *env, struct dt_object *d,
2508                                struct niobuf_local *lnb, int n)
2509 {
2510         LASSERT(d);
2511         LASSERT(d->do_body_ops);
2512         LASSERT(d->do_body_ops->dbo_read_prep);
2513         return d->do_body_ops->dbo_read_prep(env, d, lnb, n);
2514 }
2515
2516 static inline int dt_declare_write(const struct lu_env *env,
2517                                    struct dt_object *dt,
2518                                    const struct lu_buf *buf, loff_t pos,
2519                                    struct thandle *th)
2520 {
2521         LASSERT(dt);
2522         LASSERT(dt->do_body_ops);
2523         LASSERT(dt->do_body_ops->dbo_declare_write);
2524         return dt->do_body_ops->dbo_declare_write(env, dt, buf, pos, th);
2525 }
2526
2527 static inline ssize_t dt_write(const struct lu_env *env, struct dt_object *dt,
2528                                const struct lu_buf *buf, loff_t *pos,
2529                                struct thandle *th)
2530 {
2531         LASSERT(dt);
2532         LASSERT(dt->do_body_ops);
2533         LASSERT(dt->do_body_ops->dbo_write);
2534         return dt->do_body_ops->dbo_write(env, dt, buf, pos, th);
2535 }
2536
2537 static inline int dt_declare_punch(const struct lu_env *env,
2538                                    struct dt_object *dt, __u64 start,
2539                                    __u64 end, struct thandle *th)
2540 {
2541         LASSERT(dt);
2542         LASSERT(dt->do_body_ops);
2543         LASSERT(dt->do_body_ops->dbo_declare_punch);
2544         return dt->do_body_ops->dbo_declare_punch(env, dt, start, end, th);
2545 }
2546
2547 static inline int dt_punch(const struct lu_env *env, struct dt_object *dt,
2548                            __u64 start, __u64 end, struct thandle *th)
2549 {
2550         LASSERT(dt);
2551         LASSERT(dt->do_body_ops);
2552         LASSERT(dt->do_body_ops->dbo_punch);
2553         return dt->do_body_ops->dbo_punch(env, dt, start, end, th);
2554 }
2555
2556 static inline int dt_ladvise(const struct lu_env *env, struct dt_object *dt,
2557                              __u64 start, __u64 end, int advice)
2558 {
2559         LASSERT(dt);
2560         LASSERT(dt->do_body_ops);
2561         LASSERT(dt->do_body_ops->dbo_ladvise);
2562         return dt->do_body_ops->dbo_ladvise(env, dt, start, end, advice);
2563 }
2564
2565 static inline int dt_declare_falloc(const struct lu_env *env,
2566                                       struct dt_object *dt, struct thandle *th)
2567 {
2568         LASSERT(dt);
2569         if (!dt->do_body_ops)
2570                 return -EOPNOTSUPP;
2571         LASSERT(dt->do_body_ops);
2572         LASSERT(dt->do_body_ops->dbo_declare_fallocate);
2573         return dt->do_body_ops->dbo_declare_fallocate(env, dt, th);
2574 }
2575
2576 static inline int dt_falloc(const struct lu_env *env, struct dt_object *dt,
2577                               __u64 start, __u64 end, int mode,
2578                               struct thandle *th)
2579 {
2580         LASSERT(dt);
2581         if (!dt->do_body_ops)
2582                 return -EOPNOTSUPP;
2583         LASSERT(dt->do_body_ops);
2584         LASSERT(dt->do_body_ops->dbo_fallocate);
2585         return dt->do_body_ops->dbo_fallocate(env, dt, start, end, mode, th);
2586 }
2587
2588 static inline int dt_fiemap_get(const struct lu_env *env, struct dt_object *d,
2589                                 struct fiemap *fm)
2590 {
2591         LASSERT(d);
2592         if (d->do_body_ops == NULL)
2593                 return -EPROTO;
2594         if (d->do_body_ops->dbo_fiemap_get == NULL)
2595                 return -EOPNOTSUPP;
2596         return d->do_body_ops->dbo_fiemap_get(env, d, fm);
2597 }
2598
2599 static inline int dt_statfs_info(const struct lu_env *env,
2600                                  struct dt_device *dev,
2601                                 struct obd_statfs *osfs,
2602                                 struct obd_statfs_info *info)
2603 {
2604         LASSERT(dev);
2605         LASSERT(dev->dd_ops);
2606         LASSERT(dev->dd_ops->dt_statfs);
2607         return dev->dd_ops->dt_statfs(env, dev, osfs, info);
2608 }
2609
2610 static inline int dt_statfs(const struct lu_env *env, struct dt_device *dev,
2611                             struct obd_statfs *osfs)
2612 {
2613         return dt_statfs_info(env, dev, osfs, NULL);
2614 }
2615
2616 static inline int dt_root_get(const struct lu_env *env, struct dt_device *dev,
2617                               struct lu_fid *f)
2618 {
2619         LASSERT(dev);
2620         LASSERT(dev->dd_ops);
2621         LASSERT(dev->dd_ops->dt_root_get);
2622         return dev->dd_ops->dt_root_get(env, dev, f);
2623 }
2624
2625 static inline void dt_conf_get(const struct lu_env *env,
2626                                const struct dt_device *dev,
2627                                struct dt_device_param *param)
2628 {
2629         LASSERT(dev);
2630         LASSERT(dev->dd_ops);
2631         LASSERT(dev->dd_ops->dt_conf_get);
2632         return dev->dd_ops->dt_conf_get(env, dev, param);
2633 }
2634
2635 static inline struct super_block *dt_mnt_sb_get(const struct dt_device *dev)
2636 {
2637         LASSERT(dev);
2638         LASSERT(dev->dd_ops);
2639         if (dev->dd_ops->dt_mnt_sb_get)
2640                 return dev->dd_ops->dt_mnt_sb_get(dev);
2641
2642         return ERR_PTR(-EOPNOTSUPP);
2643 }
2644
2645 static inline int dt_sync(const struct lu_env *env, struct dt_device *dev)
2646 {
2647         LASSERT(dev);
2648         LASSERT(dev->dd_ops);
2649         LASSERT(dev->dd_ops->dt_sync);
2650         return dev->dd_ops->dt_sync(env, dev);
2651 }
2652
2653 static inline int dt_ro(const struct lu_env *env, struct dt_device *dev)
2654 {
2655         LASSERT(dev);
2656         LASSERT(dev->dd_ops);
2657         LASSERT(dev->dd_ops->dt_ro);
2658         return dev->dd_ops->dt_ro(env, dev);
2659 }
2660
2661 static inline int dt_declare_insert(const struct lu_env *env,
2662                                     struct dt_object *dt,
2663                                     const struct dt_rec *rec,
2664                                     const struct dt_key *key,
2665                                     struct thandle *th)
2666 {
2667         LASSERT(dt);
2668         LASSERT(dt->do_index_ops);
2669         LASSERT(dt->do_index_ops->dio_declare_insert);
2670
2671         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_INSERT))
2672                 return cfs_fail_err;
2673
2674         return dt->do_index_ops->dio_declare_insert(env, dt, rec, key, th);
2675 }
2676
2677 static inline int dt_insert(const struct lu_env *env,
2678                             struct dt_object *dt,
2679                             const struct dt_rec *rec,
2680                             const struct dt_key *key,
2681                             struct thandle *th)
2682 {
2683         LASSERT(dt);
2684         LASSERT(dt->do_index_ops);
2685         LASSERT(dt->do_index_ops->dio_insert);
2686
2687         if (CFS_FAULT_CHECK(OBD_FAIL_DT_INSERT))
2688                 return cfs_fail_err;
2689
2690         return dt->do_index_ops->dio_insert(env, dt, rec, key, th);
2691 }
2692
2693 static inline int dt_declare_xattr_del(const struct lu_env *env,
2694                                        struct dt_object *dt,
2695                                        const char *name,
2696                                        struct thandle *th)
2697 {
2698         LASSERT(dt);
2699         LASSERT(dt->do_ops);
2700         LASSERT(dt->do_ops->do_declare_xattr_del);
2701
2702         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_XATTR_DEL))
2703                 return cfs_fail_err;
2704
2705         return dt->do_ops->do_declare_xattr_del(env, dt, name, th);
2706 }
2707
2708 static inline int dt_xattr_del(const struct lu_env *env,
2709                                struct dt_object *dt, const char *name,
2710                                struct thandle *th)
2711 {
2712         LASSERT(dt);
2713         LASSERT(dt->do_ops);
2714         LASSERT(dt->do_ops->do_xattr_del);
2715
2716         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_DEL))
2717                 return cfs_fail_err;
2718
2719         return dt->do_ops->do_xattr_del(env, dt, name, th);
2720 }
2721
2722 static inline int dt_declare_xattr_set(const struct lu_env *env,
2723                                       struct dt_object *dt,
2724                                       const struct lu_buf *buf,
2725                                       const char *name, int fl,
2726                                       struct thandle *th)
2727 {
2728         LASSERT(dt);
2729         LASSERT(dt->do_ops);
2730         LASSERT(dt->do_ops->do_declare_xattr_set);
2731
2732         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_XATTR_SET))
2733                 return cfs_fail_err;
2734
2735         return dt->do_ops->do_declare_xattr_set(env, dt, buf, name, fl, th);
2736 }
2737
2738 static inline int dt_xattr_set(const struct lu_env *env,
2739                                struct dt_object *dt, const struct lu_buf *buf,
2740                                const char *name, int fl, struct thandle *th)
2741 {
2742         LASSERT(dt);
2743         LASSERT(dt->do_ops);
2744         LASSERT(dt->do_ops->do_xattr_set);
2745
2746         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_SET))
2747                 return cfs_fail_err;
2748
2749         return dt->do_ops->do_xattr_set(env, dt, buf, name, fl, th);
2750 }
2751
2752 static inline int dt_declare_xattr_get(const struct lu_env *env,
2753                                        struct dt_object *dt,
2754                                        struct lu_buf *buf,
2755                                        const char *name)
2756 {
2757         LASSERT(dt);
2758         LASSERT(dt->do_ops);
2759         LASSERT(dt->do_ops->do_declare_xattr_get);
2760
2761         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_XATTR_GET))
2762                 return cfs_fail_err;
2763
2764         return dt->do_ops->do_declare_xattr_get(env, dt, buf, name);
2765 }
2766
2767 static inline int dt_xattr_get(const struct lu_env *env,
2768                                struct dt_object *dt, struct lu_buf *buf,
2769                                const char *name)
2770 {
2771         LASSERT(dt);
2772         LASSERT(dt->do_ops);
2773         LASSERT(dt->do_ops->do_xattr_get);
2774
2775         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_GET))
2776                 return cfs_fail_err;
2777
2778         return dt->do_ops->do_xattr_get(env, dt, buf, name);
2779 }
2780
2781 static inline int dt_xattr_list(const struct lu_env *env, struct dt_object *dt,
2782                                 const struct lu_buf *buf)
2783 {
2784         LASSERT(dt);
2785         LASSERT(dt->do_ops);
2786         LASSERT(dt->do_ops->do_xattr_list);
2787
2788         if (CFS_FAULT_CHECK(OBD_FAIL_DT_XATTR_LIST))
2789                 return cfs_fail_err;
2790
2791         return dt->do_ops->do_xattr_list(env, dt, buf);
2792 }
2793
2794 static inline int dt_invalidate(const struct lu_env *env, struct dt_object *dt)
2795 {
2796         LASSERT(dt);
2797         LASSERT(dt->do_ops);
2798         LASSERT(dt->do_ops->do_invalidate);
2799
2800         return dt->do_ops->do_invalidate(env, dt);
2801 }
2802
2803 static inline int dt_declare_delete(const struct lu_env *env,
2804                                     struct dt_object *dt,
2805                                     const struct dt_key *key,
2806                                     struct thandle *th)
2807 {
2808         LASSERT(dt);
2809         LASSERT(dt->do_index_ops);
2810         LASSERT(dt->do_index_ops->dio_declare_delete);
2811
2812         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DECLARE_DELETE))
2813                 return cfs_fail_err;
2814
2815         return dt->do_index_ops->dio_declare_delete(env, dt, key, th);
2816 }
2817
2818 static inline int dt_delete(const struct lu_env *env,
2819                             struct dt_object *dt,
2820                             const struct dt_key *key,
2821                             struct thandle *th)
2822 {
2823         LASSERT(dt);
2824         LASSERT(dt->do_index_ops);
2825         LASSERT(dt->do_index_ops->dio_delete);
2826
2827         if (CFS_FAULT_CHECK(OBD_FAIL_DT_DELETE))
2828                 return cfs_fail_err;
2829
2830         return dt->do_index_ops->dio_delete(env, dt, key, th);
2831 }
2832
2833 static inline int dt_commit_async(const struct lu_env *env,
2834                                   struct dt_device *dev)
2835 {
2836         LASSERT(dev);
2837         LASSERT(dev->dd_ops);
2838         LASSERT(dev->dd_ops->dt_commit_async);
2839         return dev->dd_ops->dt_commit_async(env, dev);
2840 }
2841
2842 static inline int dt_lookup(const struct lu_env *env,
2843                             struct dt_object *dt,
2844                             struct dt_rec *rec,
2845                             const struct dt_key *key)
2846 {
2847         int ret;
2848
2849         LASSERT(dt);
2850         LASSERT(dt->do_index_ops);
2851         LASSERT(dt->do_index_ops->dio_lookup);
2852
2853         if (CFS_FAULT_CHECK(OBD_FAIL_DT_LOOKUP))
2854                 return cfs_fail_err;
2855
2856         ret = dt->do_index_ops->dio_lookup(env, dt, rec, key);
2857         if (ret > 0)
2858                 ret = 0;
2859         else if (ret == 0)
2860                 ret = -ENOENT;
2861         return ret;
2862 }
2863
2864 static inline int dt_declare_layout_change(const struct lu_env *env,
2865                                            struct dt_object *o,
2866                                            struct md_layout_change *mlc,
2867                                            struct thandle *th)
2868 {
2869         LASSERT(o);
2870         LASSERT(o->do_ops);
2871         LASSERT(o->do_ops->do_declare_layout_change);
2872         return o->do_ops->do_declare_layout_change(env, o, mlc, th);
2873 }
2874
2875 static inline int dt_layout_change(const struct lu_env *env,
2876                                    struct dt_object *o,
2877                                    struct md_layout_change *mlc,
2878                                    struct thandle *th)
2879 {
2880         LASSERT(o);
2881         LASSERT(o->do_ops);
2882         LASSERT(o->do_ops->do_layout_change);
2883         return o->do_ops->do_layout_change(env, o, mlc, th);
2884 }
2885
2886 struct dt_find_hint {
2887         struct lu_fid        *dfh_fid;
2888         struct dt_device     *dfh_dt;
2889         struct dt_object     *dfh_o;
2890 };
2891
2892 struct dt_insert_rec {
2893         union {
2894                 const struct lu_fid     *rec_fid;
2895                 void                    *rec_data;
2896         };
2897         union {
2898                 struct {
2899                         __u32            rec_type;
2900                         __u32            rec_padding;
2901                 };
2902                 __u64                    rec_misc;
2903         };
2904 };
2905
2906 struct dt_thread_info {
2907         char                     dti_buf[DT_MAX_PATH];
2908         struct dt_find_hint      dti_dfh;
2909         struct lu_attr           dti_attr;
2910         struct lu_fid            dti_fid;
2911         struct dt_object_format  dti_dof;
2912         struct lustre_mdt_attrs  dti_lma;
2913         struct lu_buf            dti_lb;
2914         struct lu_object_conf    dti_conf;
2915         loff_t                   dti_off;
2916         struct dt_insert_rec     dti_dt_rec;
2917 };
2918
2919 extern struct lu_context_key dt_key;
2920
2921 static inline struct dt_thread_info *dt_info(const struct lu_env *env)
2922 {
2923         struct dt_thread_info *dti;
2924
2925         dti = lu_context_key_get(&env->le_ctx, &dt_key);
2926         LASSERT(dti);
2927         return dti;
2928 }
2929
2930 int dt_global_init(void);
2931 void dt_global_fini(void);
2932 int dt_tunables_init(struct dt_device *dt, struct obd_type *type,
2933                      const char *name, struct lprocfs_vars *list);
2934 int dt_tunables_fini(struct dt_device *dt);
2935
2936 # ifdef CONFIG_PROC_FS
2937 int lprocfs_dt_blksize_seq_show(struct seq_file *m, void *v);
2938 int lprocfs_dt_kbytestotal_seq_show(struct seq_file *m, void *v);
2939 int lprocfs_dt_kbytesfree_seq_show(struct seq_file *m, void *v);
2940 int lprocfs_dt_kbytesavail_seq_show(struct seq_file *m, void *v);
2941 int lprocfs_dt_filestotal_seq_show(struct seq_file *m, void *v);
2942 int lprocfs_dt_filesfree_seq_show(struct seq_file *m, void *v);
2943 # endif /* CONFIG_PROC_FS */
2944
2945 #endif /* __LUSTRE_DT_OBJECT_H */