Whamcloud - gitweb
ea6d87d6ace24c0028d068e4e2795c94c2e4edf0
[fs/lustre-release.git] / lustre / mdd / mdd_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdd/mdd_internal.h
37  *
38  * Author: Wang Di <wangdi@clusterfs.com>
39  */
40
41 #ifndef _MDD_INTERNAL_H
42 #define _MDD_INTERNAL_H
43
44 #include <lustre_acl.h>
45 #include <lustre_eacl.h>
46 #include <md_object.h>
47 #include <dt_object.h>
48 #include <lustre_lfsck.h>
49 #include <lustre_fid.h>
50 #include <lustre_capa.h>
51 #include <lprocfs_status.h>
52 #include <lustre_log.h>
53 #include <lustre_linkea.h>
54
55 /* Changelog flags */
56 /** changelog is recording */
57 #define CLM_ON    0x00001
58 /** internal error prevented changelogs from starting */
59 #define CLM_ERR   0x00002
60 /* Marker flags */
61 /** changelogs turned on */
62 #define CLM_START 0x10000
63 /** changelogs turned off */
64 #define CLM_FINI  0x20000
65 /** some changelog records purged */
66 #define CLM_PURGE 0x40000
67
68 struct mdd_changelog {
69         spinlock_t              mc_lock;        /* for index */
70         int                     mc_flags;
71         int                     mc_mask;
72         __u64                   mc_index;
73         __u64                   mc_starttime;
74         spinlock_t              mc_user_lock;
75         int                     mc_lastuser;
76 };
77
78 static inline __u64 cl_time(void) {
79         cfs_fs_time_t time;
80
81         cfs_fs_time_current(&time);
82         return (((__u64)time.tv_sec) << 30) + time.tv_nsec;
83 }
84
85 /** Objects in .lustre dir */
86 struct mdd_dot_lustre_objs {
87         struct mdd_object *mdd_obf;
88         struct mdd_object *mdd_lpf;
89 };
90
91 struct mdd_generic_thread {
92         struct completion       mgt_started;
93         struct completion       mgt_finished;
94         void                   *mgt_data;
95         bool                    mgt_abort;
96         bool                    mgt_init;
97 };
98
99 struct mdd_device {
100         struct md_device                 mdd_md_dev;
101         struct obd_export               *mdd_child_exp;
102         struct dt_device                *mdd_child;
103         struct dt_device                *mdd_bottom;
104         struct lu_fid                    mdd_root_fid; /* /ROOT */
105         struct lu_fid                    mdd_local_root_fid;
106         struct dt_device_param           mdd_dt_conf;
107         struct dt_object                *mdd_orphans; /* PENDING directory */
108         cfs_proc_dir_entry_t            *mdd_proc_entry;
109         struct mdd_changelog             mdd_cl;
110         unsigned long                    mdd_atime_diff;
111         struct mdd_object               *mdd_dot_lustre;
112         struct mdd_dot_lustre_objs       mdd_dot_lustre_objs;
113         unsigned int                     mdd_sync_permission;
114         int                              mdd_connects;
115         struct local_oid_storage        *mdd_los;
116         struct mdd_generic_thread        mdd_orph_cleanup_thread;
117 };
118
119 enum mod_flags {
120         /* The dir object has been unlinked */
121         DEAD_OBJ   = 1 << 0,
122         APPEND_OBJ = 1 << 1,
123         IMMUTE_OBJ = 1 << 2,
124         ORPHAN_OBJ = 1 << 3,
125 };
126
127 struct mdd_object {
128         struct md_object   mod_obj;
129         /* open count */
130         __u32             mod_count;
131         __u32             mod_valid;
132         __u64             mod_cltime;
133         unsigned long     mod_flags;
134 };
135
136 struct mdd_thread_info {
137         struct lu_fid             mti_fid;
138         struct lu_fid             mti_fid2; /* used for be & cpu converting */
139         /**
140         * only be used by MDD interfaces, can be passed into local MDD APIs.
141         */
142         struct lu_attr            mti_pattr;
143         struct lu_attr            mti_cattr;
144         struct lu_attr            mti_tpattr;
145         struct lu_attr            mti_tattr;
146         /** used to set c/mtime */
147         struct lu_attr            mti_la_for_fix;
148         /* Only used in mdd_object_start */
149         struct lu_attr            mti_la_for_start;
150         /* mti_ent and mti_key must be conjoint,
151         * then mti_ent::lde_name will be mti_key. */
152         struct lu_dirent          mti_ent;
153         char                      mti_key[NAME_MAX + 16];
154         struct lu_buf             mti_buf[4];
155         struct lu_buf             mti_big_buf; /* biggish persistent buf */
156         struct lu_buf             mti_link_buf; /* buf for link ea */
157         struct obdo               mti_oa;
158         char                      mti_xattr_buf[LUSTRE_POSIX_ACL_MAX_SIZE];
159         struct dt_allocation_hint mti_hint;
160         struct dt_object_format   mti_dof;
161         struct linkea_data        mti_link_data;
162         struct md_op_spec         mti_spec;
163 };
164
165 extern const char orph_index_name[];
166
167 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
168                struct lu_attr *la, struct lustre_capa *capa);
169 void mdd_flags_xlate(struct mdd_object *obj, __u32 flags);
170 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
171                  struct md_attr *ma);
172 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
173                  const struct md_attr *ma);
174 int mdd_attr_set_internal(const struct lu_env *env,
175                           struct mdd_object *obj,
176                           const struct lu_attr *attr,
177                           struct thandle *handle,
178                           int needacl);
179 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
180                     const struct lu_attr *oattr, struct lu_attr *attr,
181                     struct thandle *handle);
182 int mdd_object_create_internal(const struct lu_env *env, struct mdd_object *p,
183                                struct mdd_object *c, struct lu_attr *attr,
184                                struct thandle *handle,
185                                const struct md_op_spec *spec,
186                                struct dt_allocation_hint *hint);
187
188 /* mdd_lock.c */
189 void mdd_write_lock(const struct lu_env *env, struct mdd_object *obj,
190                     enum mdd_object_role role);
191 void mdd_read_lock(const struct lu_env *env, struct mdd_object *obj,
192                    enum mdd_object_role role);
193 void mdd_write_unlock(const struct lu_env *env, struct mdd_object *obj);
194 void mdd_read_unlock(const struct lu_env *env, struct mdd_object *obj);
195 int mdd_write_locked(const struct lu_env *env, struct mdd_object *obj);
196
197 /* mdd_dir.c */
198 int mdd_is_subdir(const struct lu_env *env, struct md_object *mo,
199                   const struct lu_fid *fid, struct lu_fid *sfid);
200 int mdd_may_create(const struct lu_env *env, struct mdd_object *pobj,
201                    const struct lu_attr *pattr, struct mdd_object *cobj,
202                    bool check_perm);
203 int mdd_may_unlink(const struct lu_env *env, struct mdd_object *pobj,
204                    const struct lu_attr *pattr, const struct lu_attr *attr);
205 int mdd_may_delete(const struct lu_env *env, struct mdd_object *tpobj,
206                    const struct lu_attr *tpattr, struct mdd_object *tobj,
207                    const struct lu_attr *tattr, const struct lu_attr *cattr,
208                    int check_perm, int check_empty);
209 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
210                             const struct lu_attr *pattr,
211                             struct mdd_object *cobj,
212                             const struct lu_attr *cattr);
213 int mdd_finish_unlink(const struct lu_env *env, struct mdd_object *obj,
214                       struct md_attr *ma, const struct mdd_object *pobj,
215                       const struct lu_name *lname, struct thandle *th);
216
217 int mdd_is_root(struct mdd_device *mdd, const struct lu_fid *fid);
218 int mdd_lookup(const struct lu_env *env,
219                struct md_object *pobj, const struct lu_name *lname,
220                struct lu_fid* fid, struct md_op_spec *spec);
221 int mdd_links_read(const struct lu_env *env, struct mdd_object *mdd_obj,
222                    struct linkea_data *ldata);
223 int mdd_declare_links_add(const struct lu_env *env, struct mdd_object *mdd_obj,
224                           struct thandle *handle, struct linkea_data *ldata);
225 int mdd_links_write(const struct lu_env *env, struct mdd_object *mdd_obj,
226                     struct linkea_data *ldata, struct thandle *handle);
227 struct lu_buf *mdd_links_get(const struct lu_env *env,
228                              struct mdd_object *mdd_obj);
229 int mdd_links_rename(const struct lu_env *env,
230                      struct mdd_object *mdd_obj,
231                      const struct lu_fid *oldpfid,
232                      const struct lu_name *oldlname,
233                      const struct lu_fid *newpfid,
234                      const struct lu_name *newlname,
235                      struct thandle *handle,
236                      struct linkea_data *ldata,
237                      int first, int check);
238
239 struct mdd_thread_info *mdd_env_info(const struct lu_env *env);
240
241 #define MDD_ENV_VAR(env, var) (&mdd_env_info(env)->mti_##var)
242
243 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len);
244 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
245                                        const void *area, ssize_t len);
246
247 int mdd_orphan_cleanup(const struct lu_env *env, struct mdd_device *d);
248 int __mdd_orphan_add(const struct lu_env *, struct mdd_object *,
249                      struct thandle *);
250 int __mdd_orphan_del(const struct lu_env *, struct mdd_object *,
251                      struct thandle *);
252 int orph_index_init(const struct lu_env *env, struct mdd_device *mdd);
253 void orph_index_fini(const struct lu_env *env, struct mdd_device *mdd);
254 int orph_declare_index_insert(const struct lu_env *, struct mdd_object *,
255                               umode_t mode, struct thandle *);
256 int orph_declare_index_delete(const struct lu_env *, struct mdd_object *,
257                               struct thandle *);
258
259 /* mdd_lproc.c */
260 void lprocfs_mdd_init_vars(struct lprocfs_static_vars *lvars);
261 int mdd_procfs_init(struct mdd_device *mdd, const char *name);
262 int mdd_procfs_fini(struct mdd_device *mdd);
263
264 /* mdd_object.c */
265 extern struct kmem_cache *mdd_object_kmem;
266 extern const struct md_dir_operations    mdd_dir_ops;
267 extern const struct md_object_operations mdd_obj_ops;
268 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
269                  struct lu_buf *buf);
270 int accmode(const struct lu_env *env, const struct lu_attr *la, int flags);
271 extern struct lu_context_key mdd_thread_key;
272 extern const struct lu_device_operations mdd_lu_ops;
273
274 struct mdd_object *mdd_object_find(const struct lu_env *env,
275                                    struct mdd_device *d,
276                                    const struct lu_fid *f);
277 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
278                  const struct lu_rdpg *rdpg);
279 int mdd_declare_changelog_store(const struct lu_env *env,
280                                 struct mdd_device *mdd,
281                                 const struct lu_name *fname,
282                                 struct thandle *handle);
283 int mdd_changelog_store(const struct lu_env *env, struct mdd_device *mdd,
284                         struct llog_changelog_rec *rec, struct thandle *th);
285 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
286                              enum changelog_rec_type type, int flags,
287                              struct mdd_object *mdd_obj,
288                              struct thandle *handle);
289 int mdd_changelog_ns_store(const struct lu_env *env, struct mdd_device *mdd,
290                            enum changelog_rec_type type, unsigned flags,
291                            struct mdd_object *target, struct mdd_object *parent,
292                            const struct lu_name *tname, struct thandle *handle);
293 int mdd_declare_object_create_internal(const struct lu_env *env,
294                                        struct mdd_object *p,
295                                        struct mdd_object *c,
296                                        struct lu_attr *attr,
297                                        struct thandle *handle,
298                                        const struct md_op_spec *spec,
299                                        struct dt_allocation_hint *hint);
300 int mdd_get_lov_ea(const struct lu_env *env, struct mdd_object *obj,
301                    struct lu_buf *lmm_buf);
302
303 /* mdd_trans.c */
304 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
305                           struct mdd_object *child, const struct lu_attr *attr,
306                           const struct md_op_spec *spec,
307                           struct dt_allocation_hint *hint);
308
309 static inline void mdd_object_get(struct mdd_object *o)
310 {
311         lu_object_get(&o->mod_obj.mo_lu);
312 }
313
314 static inline void mdd_object_put(const struct lu_env *env,
315                                   struct mdd_object *o)
316 {
317         lu_object_put(env, &o->mod_obj.mo_lu);
318 }
319
320 struct thandle *mdd_trans_create(const struct lu_env *env,
321                                  struct mdd_device *mdd);
322 int mdd_trans_start(const struct lu_env *env, struct mdd_device *mdd,
323                     struct thandle *th);
324 int mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
325                    int rc, struct thandle *handle);
326
327 /* mdd_device.c */
328 struct lu_object *mdd_object_alloc(const struct lu_env *env,
329                                    const struct lu_object_header *hdr,
330                                    struct lu_device *d);
331 int mdd_local_file_create(const struct lu_env *env, struct mdd_device *mdd,
332                           const struct lu_fid *pfid, const char *name,
333                           __u32 mode, struct lu_fid *fid);
334
335 int mdd_acl_chmod(const struct lu_env *env, struct mdd_object *o, __u32 mode,
336                   struct thandle *handle);
337 int mdd_acl_set(const struct lu_env *env, struct mdd_object *obj,
338                 struct lu_attr *attr, const struct lu_buf *buf, int fl);
339 int __mdd_fix_mode_acl(const struct lu_env *env, struct lu_buf *buf,
340                        __u32 *mode);
341 int __mdd_permission_internal(const struct lu_env *env, struct mdd_object *obj,
342                               const struct lu_attr *la, int mask, int role);
343 int mdd_permission(const struct lu_env *env,
344                    struct md_object *pobj, struct md_object *cobj,
345                    struct md_attr *ma, int mask);
346 int mdd_capa_get(const struct lu_env *env, struct md_object *obj,
347                  struct lustre_capa *capa, int renewal);
348 int mdd_generic_thread_start(struct mdd_generic_thread *thread,
349                              int (*func)(void *), void *data, char *name);
350 void mdd_generic_thread_stop(struct mdd_generic_thread *thread);
351
352 /* mdd_prepare.c */
353 int mdd_compat_fixes(const struct lu_env *env, struct mdd_device *mdd);
354
355 /* inline functions */
356 static inline int lu_device_is_mdd(struct lu_device *d)
357 {
358         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &mdd_lu_ops);
359 }
360
361 static inline struct mdd_device* lu2mdd_dev(struct lu_device *d)
362 {
363         LASSERT(lu_device_is_mdd(d));
364         return container_of0(d, struct mdd_device, mdd_md_dev.md_lu_dev);
365 }
366
367 static inline struct lu_device *mdd2lu_dev(struct mdd_device *d)
368 {
369         return (&d->mdd_md_dev.md_lu_dev);
370 }
371
372 static inline struct mdd_object *lu2mdd_obj(struct lu_object *o)
373 {
374         LASSERT(ergo(o != NULL, lu_device_is_mdd(o->lo_dev)));
375         return container_of0(o, struct mdd_object, mod_obj.mo_lu);
376 }
377
378 static inline struct mdd_device* mdo2mdd(struct md_object *mdo)
379 {
380         return lu2mdd_dev(mdo->mo_lu.lo_dev);
381 }
382
383 static inline struct mdd_object* md2mdd_obj(struct md_object *mdo)
384 {
385         return container_of0(mdo, struct mdd_object, mod_obj);
386 }
387
388 static inline const struct dt_device_operations *
389 mdd_child_ops(struct mdd_device *d)
390 {
391         return d->mdd_child->dd_ops;
392 }
393
394 static inline struct lu_object *mdd2lu_obj(struct mdd_object *obj)
395 {
396         return &obj->mod_obj.mo_lu;
397 }
398
399 static inline struct dt_object* mdd_object_child(struct mdd_object *o)
400 {
401         return container_of0(lu_object_next(mdd2lu_obj(o)),
402                              struct dt_object, do_lu);
403 }
404
405 static inline struct obd_device *mdd2obd_dev(struct mdd_device *mdd)
406 {
407         return (mdd->mdd_md_dev.md_lu_dev.ld_obd);
408 }
409
410 static inline struct mdd_device *mdd_obj2mdd_dev(struct mdd_object *obj)
411 {
412         return mdo2mdd(&obj->mod_obj);
413 }
414
415 static inline const struct lu_fid *mdo2fid(const struct mdd_object *obj)
416 {
417         return lu_object_fid(&obj->mod_obj.mo_lu);
418 }
419
420 static inline umode_t mdd_object_type(const struct mdd_object *obj)
421 {
422         return lu_object_attr(&obj->mod_obj.mo_lu);
423 }
424
425 static inline int mdd_is_immutable(struct mdd_object *obj)
426 {
427         return obj->mod_flags & IMMUTE_OBJ;
428 }
429
430 static inline int mdd_is_dead_obj(struct mdd_object *obj)
431 {
432         return obj && obj->mod_flags & DEAD_OBJ;
433 }
434
435 static inline int mdd_is_append(struct mdd_object *obj)
436 {
437         return obj->mod_flags & APPEND_OBJ;
438 }
439
440 static inline int mdd_object_exists(struct mdd_object *obj)
441 {
442         return lu_object_exists(mdd2lu_obj(obj));
443 }
444
445 static inline int mdd_object_remote(struct mdd_object *obj)
446 {
447         return lu_object_remote(mdd2lu_obj(obj));
448 }
449
450 static inline const struct lu_fid *mdd_object_fid(struct mdd_object *obj)
451 {
452         return lu_object_fid(mdd2lu_obj(obj));
453 }
454
455 static inline struct seq_server_site *mdd_seq_site(struct mdd_device *mdd)
456 {
457         return mdd2lu_dev(mdd)->ld_site->ld_seq_site;
458 }
459
460 static inline struct lustre_capa *mdd_object_capa(const struct lu_env *env,
461                                                   const struct mdd_object *obj)
462 {
463         struct lu_capainfo *lci = lu_capainfo_get(env);
464         const struct lu_fid *fid = mdo2fid(obj);
465         int i;
466
467         /* NB: in mdt_init0 */
468         if (lci == NULL)
469                 return BYPASS_CAPA;
470
471         for (i = 0; i < LU_CAPAINFO_MAX; i++)
472                 if (lu_fid_eq(&lci->lci_fid[i], fid))
473                         return lci->lci_capa[i];
474         return NULL;
475 }
476
477 static inline void mdd_set_capainfo(const struct lu_env *env, int offset,
478                                     const struct mdd_object *obj,
479                                     struct lustre_capa *capa)
480 {
481         struct lu_capainfo *lci = lu_capainfo_get(env);
482         const struct lu_fid *fid = mdo2fid(obj);
483
484         LASSERT(offset >= 0 && offset < LU_CAPAINFO_MAX);
485         /* NB: in mdt_init0 */
486         if (lci == NULL)
487                 return;
488
489         lci->lci_fid[offset]  = *fid;
490         lci->lci_capa[offset] = capa;
491 }
492
493 static inline const char *mdd_obj_dev_name(const struct mdd_object *obj)
494 {
495         return lu_dev_name(obj->mod_obj.mo_lu.lo_dev);
496 }
497
498 #define MAX_ATIME_DIFF 60
499
500 static inline int mdd_permission_internal(const struct lu_env *env,
501                                           struct mdd_object *obj,
502                                           const struct lu_attr *la, int mask)
503 {
504         return __mdd_permission_internal(env, obj, la, mask, -1);
505 }
506
507 static inline int mdd_permission_internal_locked(const struct lu_env *env,
508                                                 struct mdd_object *obj,
509                                                 const struct lu_attr *la,
510                                                 int mask,
511                                                 enum mdd_object_role role)
512 {
513         return __mdd_permission_internal(env, obj, la, mask, role);
514 }
515
516 /* mdd inline func for calling osd_dt_object ops */
517 static inline int mdo_attr_get(const struct lu_env *env, struct mdd_object *obj,
518                                struct lu_attr *la, struct lustre_capa *capa)
519 {
520         struct dt_object *next = mdd_object_child(obj);
521         return next->do_ops->do_attr_get(env, next, la, capa);
522 }
523
524 static inline int mdo_declare_attr_set(const struct lu_env *env,
525                                        struct mdd_object *obj,
526                                        const struct lu_attr *la,
527                                        struct thandle *handle)
528 {
529         struct dt_object *next = mdd_object_child(obj);
530         return dt_declare_attr_set(env, next, la, handle);
531 }
532
533 static inline int mdo_attr_set(const struct lu_env *env,
534                                struct mdd_object *obj,
535                                const struct lu_attr *la,
536                                struct thandle *handle,
537                                struct lustre_capa *capa)
538 {
539         struct dt_object *next = mdd_object_child(obj);
540         if (mdd_object_exists(obj) == 0) {
541                 CERROR("%s: object "DFID" not found: rc = -2\n",
542                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
543                 return -ENOENT;
544         }
545         return next->do_ops->do_attr_set(env, next, la, handle, capa);
546 }
547
548 static inline int mdo_xattr_get(const struct lu_env *env,struct mdd_object *obj,
549                                 struct lu_buf *buf, const char *name,
550                                 struct lustre_capa *capa)
551 {
552         struct dt_object *next = mdd_object_child(obj);
553         return next->do_ops->do_xattr_get(env, next, buf, name, capa);
554 }
555
556 static inline int mdo_declare_xattr_set(const struct lu_env *env,
557                                         struct mdd_object *obj,
558                                         const struct lu_buf *buf,
559                                         const char *name,
560                                         int fl, struct thandle *handle)
561 {
562         struct dt_object *next = mdd_object_child(obj);
563         return dt_declare_xattr_set(env, next, buf, name, fl, handle);
564 }
565
566 static inline int mdo_xattr_set(const struct lu_env *env,struct mdd_object *obj,
567                                 const struct lu_buf *buf, const char *name,
568                                 int fl, struct thandle *handle,
569                                 struct lustre_capa *capa)
570 {
571         struct dt_object *next = mdd_object_child(obj);
572         if (mdd_object_exists(obj) == 0) {
573                 CERROR("%s: object "DFID" not found: rc = -2\n",
574                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
575                 return -ENOENT;
576         }
577         return next->do_ops->do_xattr_set(env, next, buf, name, fl, handle,
578                                           capa);
579 }
580
581 static inline int mdo_declare_xattr_del(const struct lu_env *env,
582                                         struct mdd_object *obj,
583                                         const char *name,
584                                         struct thandle *handle)
585 {
586         struct dt_object *next = mdd_object_child(obj);
587         return dt_declare_xattr_del(env, next, name, handle);
588 }
589
590 static inline int mdo_xattr_del(const struct lu_env *env,struct mdd_object *obj,
591                                 const char *name, struct thandle *handle,
592                                 struct lustre_capa *capa)
593 {
594         struct dt_object *next = mdd_object_child(obj);
595         if (mdd_object_exists(obj) == 0) {
596                 CERROR("%s: object "DFID" not found: rc = -2\n",
597                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
598                 return -ENOENT;
599         }
600         return next->do_ops->do_xattr_del(env, next, name, handle, capa);
601 }
602
603 static inline
604 int mdo_xattr_list(const struct lu_env *env, struct mdd_object *obj,
605                    struct lu_buf *buf, struct lustre_capa *capa)
606 {
607         struct dt_object *next = mdd_object_child(obj);
608         if (mdd_object_exists(obj) == 0) {
609                 CERROR("%s: object "DFID" not found: rc = -2\n",
610                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
611                 return -ENOENT;
612         }
613         return next->do_ops->do_xattr_list(env, next, buf, capa);
614 }
615
616 static inline
617 int mdo_declare_index_insert(const struct lu_env *env, struct mdd_object *obj,
618                              const struct lu_fid *fid, const char *name,
619                              struct thandle *handle)
620 {
621         struct dt_object *next = mdd_object_child(obj);
622         int              rc = 0;
623
624         /*
625          * if the object doesn't exist yet, then it's supposed to be created
626          * and declaration of the creation should be enough to insert ./..
627          */
628          /* FIXME: remote object should not be awared by MDD layer, but local
629           * creation does not declare insert ./.. (comments above), which
630           * is required by remote directory creation.
631           * This remote check should be removed when mdd_object_exists check is
632           * removed.
633           */
634          if (mdd_object_exists(obj) || mdd_object_remote(obj)) {
635                 rc = -ENOTDIR;
636                 if (dt_try_as_dir(env, next))
637                         rc = dt_declare_insert(env, next,
638                                                (struct dt_rec *)fid,
639                                                (const struct dt_key *)name,
640                                                handle);
641         }
642
643         return rc;
644 }
645
646 static inline
647 int mdo_declare_index_delete(const struct lu_env *env, struct mdd_object *obj,
648                              const char *name, struct thandle *handle)
649 {
650         struct dt_object *next = mdd_object_child(obj);
651
652         if (!dt_try_as_dir(env, next))
653                 return -ENOTDIR;
654
655         return dt_declare_delete(env, next, (const struct dt_key *)name,
656                                  handle);
657 }
658
659 static inline int mdo_declare_ref_add(const struct lu_env *env,
660                                       struct mdd_object *obj,
661                                       struct thandle *handle)
662 {
663         struct dt_object *next = mdd_object_child(obj);
664         return dt_declare_ref_add(env, next, handle);
665 }
666
667 static inline int mdo_ref_add(const struct lu_env *env, struct mdd_object *obj,
668                               struct thandle *handle)
669 {
670         struct dt_object *next = mdd_object_child(obj);
671         if (mdd_object_exists(obj) == 0) {
672                 CERROR("%s: object "DFID" not found: rc = -2\n",
673                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
674                 return -ENOENT;
675         }
676         return next->do_ops->do_ref_add(env, next, handle);
677 }
678
679 static inline int mdo_declare_ref_del(const struct lu_env *env,
680                                       struct mdd_object *obj,
681                                       struct thandle *handle)
682 {
683         struct dt_object *next = mdd_object_child(obj);
684         return dt_declare_ref_del(env, next, handle);
685 }
686
687 static inline int mdo_ref_del(const struct lu_env *env, struct mdd_object *obj,
688                               struct thandle *handle)
689 {
690         struct dt_object *next = mdd_object_child(obj);
691         if (mdd_object_exists(obj) == 0) {
692                 CERROR("%s: object "DFID" not found: rc = -2\n",
693                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
694                 return -ENOENT;
695         }
696         return next->do_ops->do_ref_del(env, next, handle);
697 }
698
699 static inline
700 int mdo_declare_create_obj(const struct lu_env *env, struct mdd_object *o,
701                            struct lu_attr *attr,
702                            struct dt_allocation_hint *hint,
703                            struct dt_object_format *dof,
704                            struct thandle *handle)
705 {
706         struct dt_object *next = mdd_object_child(o);
707         return next->do_ops->do_declare_create(env, next, attr, hint,
708                                                dof, handle);
709 }
710
711 static inline
712 int mdo_create_obj(const struct lu_env *env, struct mdd_object *o,
713                    struct lu_attr *attr,
714                    struct dt_allocation_hint *hint,
715                    struct dt_object_format *dof,
716                    struct thandle *handle)
717 {
718         struct dt_object *next = mdd_object_child(o);
719         int rc;
720
721         rc = next->do_ops->do_create(env, next, attr, hint, dof, handle);
722
723         return rc;
724 }
725
726 static inline
727 int mdo_declare_destroy(const struct lu_env *env, struct mdd_object *o,
728                         struct thandle *handle)
729 {
730         struct dt_object *next = mdd_object_child(o);
731         return dt_declare_destroy(env, next, handle);
732 }
733
734 static inline
735 int mdo_destroy(const struct lu_env *env, struct mdd_object *o,
736                 struct thandle *handle)
737 {
738         struct dt_object *next = mdd_object_child(o);
739         return dt_destroy(env, next, handle);
740 }
741
742 static inline struct obd_capa *mdo_capa_get(const struct lu_env *env,
743                                             struct mdd_object *obj,
744                                             struct lustre_capa *old,
745                                             __u64 opc)
746 {
747         struct dt_object *next = mdd_object_child(obj);
748         if (mdd_object_exists(obj) == 0) {
749                 CERROR("%s: object "DFID" not found: rc = -2\n",
750                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
751                 return ERR_PTR(-ENOENT);
752         }
753         return next->do_ops->do_capa_get(env, next, old, opc);
754 }
755
756 #endif