Whamcloud - gitweb
LU-1244 obdecho: destroy ost objects for md echo client.
[fs/lustre-release.git] / lustre / mdd / mdd_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2011, 2012, Whamcloud, Inc.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  *
38  * lustre/mdd/mdd_internal.h
39  *
40  * Author: Wang Di <wangdi@clusterfs.com>
41  */
42
43 #ifndef _MDD_INTERNAL_H
44 #define _MDD_INTERNAL_H
45
46 #include <lustre_acl.h>
47 #include <lustre_eacl.h>
48 #include <obd.h>
49 #include <md_object.h>
50 #include <dt_object.h>
51 #include <linux/sched.h>
52 #include <linux/capability.h>
53 #ifdef HAVE_QUOTA_SUPPORT
54 # include <lustre_quota.h>
55 #endif
56 #include <lustre_fsfilt.h>
57
58 #ifdef HAVE_QUOTA_SUPPORT
59 /* quota stuff */
60 extern quota_interface_t *mds_quota_interface_ref;
61
62 static inline void mdd_quota_wrapper(struct lu_attr *la, unsigned int *qids)
63 {
64         qids[USRQUOTA] = la->la_uid;
65         qids[GRPQUOTA] = la->la_gid;
66 }
67 #endif
68
69 /* PDO lock is unnecessary for current MDT stack because operations
70  * are already protected by ldlm lock */
71 #define MDD_DISABLE_PDO_LOCK    1
72
73 /* Changelog flags */
74 /** changelog is recording */
75 #define CLM_ON    0x00001
76 /** internal error prevented changelogs from starting */
77 #define CLM_ERR   0x00002
78 /* Marker flags */
79 /** changelogs turned on */
80 #define CLM_START 0x10000
81 /** changelogs turned off */
82 #define CLM_FINI  0x20000
83 /** some changelog records purged */
84 #define CLM_PURGE 0x40000
85
86 struct mdd_changelog {
87         cfs_spinlock_t                   mc_lock;    /* for index */
88         int                              mc_flags;
89         int                              mc_mask;
90         __u64                            mc_index;
91         __u64                            mc_starttime;
92         cfs_spinlock_t                   mc_user_lock;
93         int                              mc_lastuser;
94 };
95
96 /** Objects in .lustre dir */
97 struct mdd_dot_lustre_objs {
98         struct mdd_object *mdd_obf;
99 };
100
101 struct mdd_device {
102         struct md_device                 mdd_md_dev;
103         struct dt_device                *mdd_child;
104         struct obd_device               *mdd_obd_dev;
105         struct lu_fid                    mdd_root_fid;
106         struct dt_device_param           mdd_dt_conf;
107         struct dt_object                *mdd_orphans; /* PENDING directory */
108         struct dt_object                *mdd_capa;
109         struct dt_txn_callback           mdd_txn_cb;
110         cfs_proc_dir_entry_t            *mdd_proc_entry;
111         struct lprocfs_stats            *mdd_stats;
112         struct mdd_changelog             mdd_cl;
113         unsigned long                    mdd_atime_diff;
114         struct mdd_object               *mdd_dot_lustre;
115         struct mdd_dot_lustre_objs       mdd_dot_lustre_objs;
116         unsigned int                     mdd_sync_permission;
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 enum mdd_object_role {
128         MOR_SRC_PARENT,
129         MOR_SRC_CHILD,
130         MOR_TGT_PARENT,
131         MOR_TGT_CHILD,
132         MOR_TGT_ORPHAN
133 };
134
135 struct mdd_object {
136         struct md_object   mod_obj;
137         /* open count */
138         __u32             mod_count;
139         __u32             mod_valid;
140         __u64             mod_cltime;
141         unsigned long     mod_flags;
142 #ifndef MDD_DISABLE_PDO_LOCK
143         struct dynlock    mod_pdlock;
144 #endif
145 #ifdef CONFIG_LOCKDEP
146         /* "dep_map" name is assumed by lockdep.h macros. */
147         struct lockdep_map dep_map;
148 #endif
149 };
150
151 struct mdd_thread_info {
152         struct lu_fid             mti_fid;
153         struct lu_fid             mti_fid2; /* used for be & cpu converting */
154         struct lu_attr            mti_la;
155         struct lu_attr            mti_la_for_fix;
156         struct md_attr            mti_ma;
157         struct obd_info           mti_oi;
158         char                      mti_orph_key[NAME_MAX + 1];
159         struct obd_trans_info     mti_oti;
160         struct lu_buf             mti_buf;
161         struct lu_buf             mti_big_buf; /* biggish persistent buf */
162         struct lu_name            mti_name;
163         struct obdo               mti_oa;
164         char                      mti_xattr_buf[LUSTRE_POSIX_ACL_MAX_SIZE];
165         struct dt_allocation_hint mti_hint;
166         struct lov_mds_md        *mti_max_lmm;
167         int                       mti_max_lmm_size;
168         struct llog_cookie       *mti_max_cookie;
169         int                       mti_max_cookie_size;
170         struct dt_object_format   mti_dof;
171         struct obd_quotactl       mti_oqctl;
172 };
173
174 extern const char orph_index_name[];
175
176 extern const struct dt_index_features orph_index_features;
177
178 struct lov_mds_md *mdd_max_lmm_get(const struct lu_env *env,
179                                    struct mdd_device *mdd);
180
181 struct llog_cookie *mdd_max_cookie_get(const struct lu_env *env,
182                                        struct mdd_device *mdd);
183
184 int mdd_init_obd(const struct lu_env *env, struct mdd_device *mdd,
185                  struct lustre_cfg *cfg);
186 int mdd_fini_obd(const struct lu_env *env, struct mdd_device *mdd,
187                  struct lustre_cfg *lcfg);
188 int __mdd_xattr_set(const struct lu_env *env, struct mdd_object *obj,
189                     const struct lu_buf *buf, const char *name,
190                     int fl, struct thandle *handle);
191 int mdd_xattr_set_txn(const struct lu_env *env, struct mdd_object *obj,
192                       const struct lu_buf *buf, const char *name, int fl,
193                       struct thandle *txn);
194 int mdd_lsm_sanity_check(const struct lu_env *env, struct mdd_object *obj);
195 int mdd_lov_set_md(const struct lu_env *env, struct mdd_object *pobj,
196                    struct mdd_object *child, struct lov_mds_md *lmm,
197                    int lmm_size, struct thandle *handle, int set_stripe);
198 int mdd_lov_create(const struct lu_env *env, struct mdd_device *mdd,
199                    struct mdd_object *parent, struct mdd_object *child,
200                    struct lov_mds_md **lmm, int *lmm_size,
201                    const struct md_op_spec *spec, struct md_attr *ma);
202 int mdd_lov_objid_prepare(struct mdd_device *mdd, struct lov_mds_md *lmm);
203 int mdd_declare_lov_objid_update(const struct lu_env *, struct mdd_device *,
204                                  struct thandle *);
205 void mdd_lov_objid_update(struct mdd_device *mdd, struct lov_mds_md *lmm);
206 void mdd_lov_create_finish(const struct lu_env *env, struct mdd_device *mdd,
207                            struct lov_mds_md *lmm, int lmm_size,
208                            const struct md_op_spec *spec);
209 int mdd_file_lock(const struct lu_env *env, struct md_object *obj,
210                   struct lov_mds_md *lmm, struct ldlm_extent *extent,
211                   struct lustre_handle *lockh);
212 int mdd_file_unlock(const struct lu_env *env, struct md_object *obj,
213                     struct lov_mds_md *lmm, struct lustre_handle *lockh);
214 int mdd_lum_lmm_cmp(const struct lu_env *env, struct md_object *cobj,
215                     const struct md_op_spec *spec, struct md_attr *ma);
216 int mdd_get_md(const struct lu_env *env, struct mdd_object *obj,
217                void *md, int *md_size, const char *name);
218 int mdd_get_md_locked(const struct lu_env *env, struct mdd_object *obj,
219                       void *md, int *md_size, const char *name);
220 int mdd_data_get(const struct lu_env *env, struct mdd_object *obj, void **data);
221 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
222                struct lu_attr *la, struct lustre_capa *capa);
223 int mdd_attr_set_internal(const struct lu_env *env,
224                           struct mdd_object *obj,
225                           struct lu_attr *attr,
226                           struct thandle *handle,
227                           int needacl);
228 int mdd_attr_check_set_internal(const struct lu_env *env,
229                                 struct mdd_object *obj,
230                                 struct lu_attr *attr,
231                                 struct thandle *handle,
232                                 int needacl);
233 int mdd_declare_object_kill(const struct lu_env *env, struct mdd_object *obj,
234                             struct md_attr *ma, struct thandle *handle);
235 int mdd_object_kill(const struct lu_env *env, struct mdd_object *obj,
236                     struct md_attr *ma, struct thandle *handle);
237 int mdd_iattr_get(const struct lu_env *env, struct mdd_object *mdd_obj,
238                   struct md_attr *ma);
239 int mdd_attr_get_internal(const struct lu_env *env, struct mdd_object *mdd_obj,
240                           struct md_attr *ma);
241 int mdd_attr_get_internal_locked(const struct lu_env *env,
242                                  struct mdd_object *mdd_obj,
243                                  struct md_attr *ma);
244 int mdd_object_create_internal(const struct lu_env *env, struct mdd_object *p,
245                                struct mdd_object *c, struct md_attr *ma,
246                                struct thandle *handle,
247                                const struct md_op_spec *spec);
248 int mdd_attr_check_set_internal_locked(const struct lu_env *env,
249                                        struct mdd_object *obj,
250                                        struct lu_attr *attr,
251                                        struct thandle *handle,
252                                        int needacl);
253 int mdd_lmm_get_locked(const struct lu_env *env, struct mdd_object *mdd_obj,
254                        struct md_attr *ma);
255
256 /* mdd_lock.c */
257 void mdd_write_lock(const struct lu_env *env, struct mdd_object *obj,
258                     enum mdd_object_role role);
259 void mdd_read_lock(const struct lu_env *env, struct mdd_object *obj,
260                    enum mdd_object_role role);
261 void mdd_write_unlock(const struct lu_env *env, struct mdd_object *obj);
262 void mdd_read_unlock(const struct lu_env *env, struct mdd_object *obj);
263 int mdd_write_locked(const struct lu_env *env, struct mdd_object *obj);
264
265 void mdd_pdlock_init(struct mdd_object *obj);
266 unsigned long mdd_name2hash(const char *name);
267 void *mdd_pdo_write_lock(const struct lu_env *env, struct mdd_object *obj,
268                          const char *name, enum mdd_object_role role);
269 void *mdd_pdo_read_lock(const struct lu_env *env, struct mdd_object *obj,
270                         const char *name, enum mdd_object_role role);
271 void mdd_pdo_write_unlock(const struct lu_env *env, struct mdd_object *obj,
272                           void *dlh);
273 void mdd_pdo_read_unlock(const struct lu_env *env, struct mdd_object *obj,
274                          void *dlh);
275 /* mdd_dir.c */
276 int mdd_is_subdir(const struct lu_env *env, struct md_object *mo,
277                   const struct lu_fid *fid, struct lu_fid *sfid);
278 int mdd_may_create(const struct lu_env *env, struct mdd_object *pobj,
279                    struct mdd_object *cobj, int check_perm, int check_nlink);
280 int mdd_may_unlink(const struct lu_env *env, struct mdd_object *pobj,
281                    const struct md_attr *ma);
282 int mdd_may_delete(const struct lu_env *env, struct mdd_object *pobj,
283                    struct mdd_object *cobj, struct md_attr *ma,
284                    int check_perm, int check_empty);
285 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
286                             struct mdd_object *cobj, struct md_attr *ma);
287 int mdd_finish_unlink(const struct lu_env *env, struct mdd_object *obj,
288                       struct md_attr *ma, struct thandle *th);
289 int mdd_object_initialize(const struct lu_env *env, const struct lu_fid *pfid,
290                           const struct lu_name *lname, struct mdd_object *child,
291                           struct md_attr *ma, struct thandle *handle,
292                           const struct md_op_spec *spec);
293 int mdd_link_sanity_check(const struct lu_env *env, struct mdd_object *tgt_obj,
294                           const struct lu_name *lname, struct mdd_object *src_obj);
295 int mdd_is_root(struct mdd_device *mdd, const struct lu_fid *fid);
296 int mdd_lookup(const struct lu_env *env,
297                struct md_object *pobj, const struct lu_name *lname,
298                struct lu_fid* fid, struct md_op_spec *spec);
299 struct lu_buf *mdd_links_get(const struct lu_env *env,
300                              struct mdd_object *mdd_obj);
301 void mdd_lee_unpack(const struct link_ea_entry *lee, int *reclen,
302                     struct lu_name *lname, struct lu_fid *pfid);
303
304 /* mdd_lov.c */
305 int mdd_declare_unlink_log(const struct lu_env *env, struct mdd_object *obj,
306                            struct md_attr *ma, struct thandle *handle);
307 int mdd_unlink_log(const struct lu_env *env, struct mdd_device *mdd,
308                    struct mdd_object *mdd_cobj, struct md_attr *ma);
309
310 int mdd_setattr_log(const struct lu_env *env, struct mdd_device *mdd,
311                     const struct md_attr *ma,
312                     struct lov_mds_md *lmm, int lmm_size,
313                     struct llog_cookie *logcookies, int cookies_size);
314
315 int mdd_get_cookie_size(const struct lu_env *env, struct mdd_device *mdd,
316                         struct lov_mds_md *lmm);
317
318 int mdd_lov_setattr_async(const struct lu_env *env, struct mdd_object *obj,
319                           struct lov_mds_md *lmm, int lmm_size,
320                           struct llog_cookie *logcookies);
321 int mdd_lovobj_unlink(const struct lu_env *env, struct mdd_device *mdd,
322                       struct mdd_object *obj, struct lu_attr *la,
323                       struct lov_mds_md *lmm, int lmm_size,
324                       struct llog_cookie *logcookies,
325                       int log_unlink);
326
327 struct mdd_thread_info *mdd_env_info(const struct lu_env *env);
328
329 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len);
330 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
331                                        const void *area, ssize_t len);
332
333 int __mdd_orphan_cleanup(const struct lu_env *env, struct mdd_device *d);
334 int __mdd_orphan_add(const struct lu_env *, struct mdd_object *,
335                      struct thandle *);
336 int __mdd_orphan_del(const struct lu_env *, struct mdd_object *,
337                      struct thandle *);
338 int orph_index_init(const struct lu_env *env, struct mdd_device *mdd);
339 void orph_index_fini(const struct lu_env *env, struct mdd_device *mdd);
340 int orph_declare_index_insert(const struct lu_env *, struct mdd_object *,
341                               struct thandle *);
342 int orph_declare_index_delete(const struct lu_env *, struct mdd_object *,
343                               struct thandle *);
344
345 /* mdd_lproc.c */
346 void lprocfs_mdd_init_vars(struct lprocfs_static_vars *lvars);
347 int mdd_procfs_init(struct mdd_device *mdd, const char *name);
348 int mdd_procfs_fini(struct mdd_device *mdd);
349 void mdd_lprocfs_time_start(const struct lu_env *env);
350 void mdd_lprocfs_time_end(const struct lu_env *env,
351                           struct mdd_device *mdd, int op);
352
353 /* mdd_object.c */
354 int mdd_get_flags(const struct lu_env *env, struct mdd_object *obj);
355 struct lu_buf *mdd_buf_alloc(const struct lu_env *env, ssize_t len);
356 int mdd_buf_grow(const struct lu_env *env, ssize_t len);
357 void mdd_buf_put(struct lu_buf *buf);
358
359 extern const struct md_dir_operations    mdd_dir_ops;
360 extern const struct md_object_operations mdd_obj_ops;
361
362 int accmode(const struct lu_env *env, struct lu_attr *la, int flags);
363 extern struct lu_context_key mdd_thread_key;
364 extern const struct lu_device_operations mdd_lu_ops;
365
366 struct mdd_object *mdd_object_find(const struct lu_env *env,
367                                    struct mdd_device *d,
368                                    const struct lu_fid *f);
369 int mdd_get_default_md(struct mdd_object *mdd_obj, struct lov_mds_md *lmm);
370 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
371                  const struct lu_rdpg *rdpg);
372 int mdd_declare_llog_record(const struct lu_env *env, struct mdd_device *mdd,
373                             int reclen, struct thandle *handle);
374 int mdd_declare_changelog_store(const struct lu_env *env,
375                                 struct mdd_device *mdd,
376                                 const struct lu_name *fname,
377                                 struct thandle *handle);
378 int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
379                   int flags, struct md_object *obj);
380 int mdd_declare_object_create_internal(const struct lu_env *env,
381                                        struct mdd_object *p,
382                                        struct mdd_object *c,
383                                        struct md_attr *ma,
384                                        struct thandle *handle,
385                                        const struct md_op_spec *spec);
386 /* mdd_quota.c*/
387 #ifdef HAVE_QUOTA_SUPPORT
388 int mdd_quota_notify(const struct lu_env *env, struct md_device *m);
389 int mdd_quota_setup(const struct lu_env *env, struct md_device *m,
390                     void *data);
391 int mdd_quota_cleanup(const struct lu_env *env, struct md_device *m);
392 int mdd_quota_recovery(const struct lu_env *env, struct md_device *m);
393 int mdd_quota_check(const struct lu_env *env, struct md_device *m,
394                     __u32 type);
395 int mdd_quota_on(const struct lu_env *env, struct md_device *m,
396                  __u32 type);
397 int mdd_quota_off(const struct lu_env *env, struct md_device *m,
398                   __u32 type);
399 int mdd_quota_setinfo(const struct lu_env *env, struct md_device *m,
400                       __u32 type, __u32 id, struct obd_dqinfo *dqinfo);
401 int mdd_quota_getinfo(const struct lu_env *env, const struct md_device *m,
402                       __u32 type, __u32 id, struct obd_dqinfo *dqinfo);
403 int mdd_quota_setquota(const struct lu_env *env, struct md_device *m,
404                        __u32 type, __u32 id, struct obd_dqblk *dqblk);
405 int mdd_quota_getquota(const struct lu_env *env, const struct md_device *m,
406                        __u32 type, __u32 id, struct obd_dqblk *dqblk);
407 int mdd_quota_getoinfo(const struct lu_env *env, const struct md_device *m,
408                        __u32 type, __u32 id, struct obd_dqinfo *dqinfo);
409 int mdd_quota_getoquota(const struct lu_env *env, const struct md_device *m,
410                         __u32 type, __u32 id, struct obd_dqblk *dqblk);
411 int mdd_quota_invalidate(const struct lu_env *env, struct md_device *m,
412                          __u32 type);
413 int mdd_quota_finvalidate(const struct lu_env *env, struct md_device *m,
414                           __u32 type);
415 #endif
416
417 /* mdd_trans.c */
418 int mdd_lov_destroy(const struct lu_env *env, struct mdd_device *mdd,
419                     struct mdd_object *obj, struct lu_attr *la);
420
421 static inline void mdd_object_put(const struct lu_env *env,
422                                   struct mdd_object *o)
423 {
424         lu_object_put(env, &o->mod_obj.mo_lu);
425 }
426
427 struct thandle *mdd_trans_create(const struct lu_env *env,
428                                  struct mdd_device *mdd);
429 int mdd_trans_start(const struct lu_env *env, struct mdd_device *mdd,
430                     struct thandle *th);
431 void mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
432                     int rc, struct thandle *handle);
433 int mdd_txn_stop_cb(const struct lu_env *env, struct thandle *txn,
434                     void *cookie);
435 int mdd_txn_start_cb(const struct lu_env *env, struct thandle *,
436                      void *cookie);
437
438 /* mdd_device.c */
439 struct lu_object *mdd_object_alloc(const struct lu_env *env,
440                                    const struct lu_object_header *hdr,
441                                    struct lu_device *d);
442 struct llog_changelog_rec;
443 int mdd_changelog_llog_write(struct mdd_device         *mdd,
444                              struct llog_changelog_rec *rec,
445                              struct thandle            *handle);
446 int mdd_changelog_llog_cancel(struct mdd_device *mdd, long long endrec);
447 int mdd_changelog_write_header(struct mdd_device *mdd, int markerflags);
448 int mdd_changelog_on(struct mdd_device *mdd, int on);
449
450 /* mdd_permission.c */
451 #define mdd_cap_t(x) (x)
452
453 #define MDD_CAP_TO_MASK(x) (1 << (x))
454
455 #define mdd_cap_raised(c, flag) (mdd_cap_t(c) & MDD_CAP_TO_MASK(flag))
456
457 /* capable() is copied from linux kernel! */
458 static inline int mdd_capable(struct md_ucred *uc, cfs_cap_t cap)
459 {
460         if (mdd_cap_raised(uc->mu_cap, cap))
461                 return 1;
462         return 0;
463 }
464
465 int mdd_def_acl_get(const struct lu_env *env, struct mdd_object *mdd_obj,
466                     struct md_attr *ma);
467 int mdd_acl_chmod(const struct lu_env *env, struct mdd_object *o, __u32 mode,
468                   struct thandle *handle);
469 int __mdd_declare_acl_init(const struct lu_env *env, struct mdd_object *obj,
470                            int is_dir, struct thandle *handle);
471 int __mdd_acl_init(const struct lu_env *env, struct mdd_object *obj,
472                    struct lu_buf *buf, __u32 *mode, struct thandle *handle);
473 int __mdd_permission_internal(const struct lu_env *env, struct mdd_object *obj,
474                               struct lu_attr *la, int mask, int role);
475 int mdd_permission(const struct lu_env *env,
476                    struct md_object *pobj, struct md_object *cobj,
477                    struct md_attr *ma, int mask);
478 int mdd_capa_get(const struct lu_env *env, struct md_object *obj,
479                  struct lustre_capa *capa, int renewal);
480
481 static inline int lu_device_is_mdd(struct lu_device *d)
482 {
483         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &mdd_lu_ops);
484 }
485
486 static inline struct mdd_device* lu2mdd_dev(struct lu_device *d)
487 {
488         LASSERT(lu_device_is_mdd(d));
489         return container_of0(d, struct mdd_device, mdd_md_dev.md_lu_dev);
490 }
491
492 static inline struct lu_device *mdd2lu_dev(struct mdd_device *d)
493 {
494         return (&d->mdd_md_dev.md_lu_dev);
495 }
496
497 static inline struct mdd_object *lu2mdd_obj(struct lu_object *o)
498 {
499         LASSERT(ergo(o != NULL, lu_device_is_mdd(o->lo_dev)));
500         return container_of0(o, struct mdd_object, mod_obj.mo_lu);
501 }
502
503 static inline struct mdd_device* mdo2mdd(struct md_object *mdo)
504 {
505         return lu2mdd_dev(mdo->mo_lu.lo_dev);
506 }
507
508 static inline struct mdd_object* md2mdd_obj(struct md_object *mdo)
509 {
510         return container_of0(mdo, struct mdd_object, mod_obj);
511 }
512
513 static inline const struct dt_device_operations *
514 mdd_child_ops(struct mdd_device *d)
515 {
516         return d->mdd_child->dd_ops;
517 }
518
519 static inline struct lu_object *mdd2lu_obj(struct mdd_object *obj)
520 {
521         return &obj->mod_obj.mo_lu;
522 }
523
524 static inline struct dt_object* mdd_object_child(struct mdd_object *o)
525 {
526         return container_of0(lu_object_next(mdd2lu_obj(o)),
527                              struct dt_object, do_lu);
528 }
529
530 static inline struct obd_device *mdd2obd_dev(struct mdd_device *mdd)
531 {
532         return mdd->mdd_obd_dev;
533 }
534
535 static inline struct mdd_device *mdd_obj2mdd_dev(struct mdd_object *obj)
536 {
537         return mdo2mdd(&obj->mod_obj);
538 }
539
540 static inline const struct lu_fid *mdo2fid(const struct mdd_object *obj)
541 {
542         return lu_object_fid(&obj->mod_obj.mo_lu);
543 }
544
545 static inline cfs_umode_t mdd_object_type(const struct mdd_object *obj)
546 {
547         return lu_object_attr(&obj->mod_obj.mo_lu);
548 }
549
550 static inline int mdd_lov_mdsize(const struct lu_env *env,
551                                  struct mdd_device *mdd)
552 {
553         struct obd_device *obd = mdd2obd_dev(mdd);
554         return obd->u.mds.mds_max_mdsize;
555 }
556
557 static inline int mdd_lov_cookiesize(const struct lu_env *env,
558                                      struct mdd_device *mdd)
559 {
560         struct obd_device *obd = mdd2obd_dev(mdd);
561         return obd->u.mds.mds_max_cookiesize;
562 }
563
564 static inline int mdd_is_immutable(struct mdd_object *obj)
565 {
566         return obj->mod_flags & IMMUTE_OBJ;
567 }
568
569 static inline int mdd_is_dead_obj(struct mdd_object *obj)
570 {
571         return obj && obj->mod_flags & DEAD_OBJ;
572 }
573
574 static inline int mdd_is_append(struct mdd_object *obj)
575 {
576         return obj->mod_flags & APPEND_OBJ;
577 }
578
579 static inline int mdd_object_exists(struct mdd_object *obj)
580 {
581         return lu_object_exists(mdd2lu_obj(obj));
582 }
583
584 static inline const struct lu_fid *mdd_object_fid(struct mdd_object *obj)
585 {
586         return lu_object_fid(mdd2lu_obj(obj));
587 }
588
589 static inline struct lustre_capa *mdd_object_capa(const struct lu_env *env,
590                                                   const struct mdd_object *obj)
591 {
592         struct md_capainfo *ci = md_capainfo(env);
593         const struct lu_fid *fid = mdo2fid(obj);
594         int i;
595
596         /* NB: in mdt_init0 */
597         if (!ci)
598                 return BYPASS_CAPA;
599         for (i = 0; i < MD_CAPAINFO_MAX; i++)
600                 if (lu_fid_eq(&ci->mc_fid[i], fid))
601                         return ci->mc_capa[i];
602         return NULL;
603 }
604
605 static inline void mdd_set_capainfo(const struct lu_env *env, int offset,
606                                     const struct mdd_object *obj,
607                                     struct lustre_capa *capa)
608 {
609         struct md_capainfo *ci = md_capainfo(env);
610         const struct lu_fid *fid = mdo2fid(obj);
611
612         LASSERT(offset >= 0 && offset <= MD_CAPAINFO_MAX);
613         /* NB: in mdt_init0 */
614         if (!ci)
615                 return;
616         ci->mc_fid[offset]  = *fid;
617         ci->mc_capa[offset] = capa;
618 }
619
620 static inline const char *mdd_obj_dev_name(const struct mdd_object *obj)
621 {
622         return lu_dev_name(obj->mod_obj.mo_lu.lo_dev);
623 }
624
625 #define MAX_ATIME_DIFF 60
626
627 enum {
628         LPROC_MDD_NR
629 };
630
631 static inline int mdd_permission_internal(const struct lu_env *env,
632                                           struct mdd_object *obj,
633                                           struct lu_attr *la, int mask)
634 {
635         return __mdd_permission_internal(env, obj, la, mask, -1);
636 }
637
638 static inline int mdd_permission_internal_locked(const struct lu_env *env,
639                                                  struct mdd_object *obj,
640                                                  struct lu_attr *la, int mask,
641                                                  enum mdd_object_role role)
642 {
643         return __mdd_permission_internal(env, obj, la, mask, role);
644 }
645
646 static inline int mdo_data_get(const struct lu_env *env,
647                                struct mdd_object *obj,
648                                void **data)
649 {
650         struct dt_object *next = mdd_object_child(obj);
651         next->do_ops->do_data_get(env, next, data);
652         return 0;
653 }
654
655 /* mdd inline func for calling osd_dt_object ops */
656 static inline int mdo_attr_get(const struct lu_env *env, struct mdd_object *obj,
657                                struct lu_attr *la, struct lustre_capa *capa)
658 {
659         struct dt_object *next = mdd_object_child(obj);
660         return next->do_ops->do_attr_get(env, next, la, capa);
661 }
662
663 static inline int mdo_declare_attr_set(const struct lu_env *env,
664                                        struct mdd_object *obj,
665                                        const struct lu_attr *la,
666                                        struct thandle *handle)
667 {
668         struct dt_object *next = mdd_object_child(obj);
669         return dt_declare_attr_set(env, next, la, handle);
670 }
671
672 static inline int mdo_attr_set(const struct lu_env *env,
673                                struct mdd_object *obj,
674                                const struct lu_attr *la,
675                                struct thandle *handle,
676                                struct lustre_capa *capa)
677 {
678         struct dt_object *next = mdd_object_child(obj);
679         if (mdd_object_exists(obj) == 0) {
680                 CERROR("%s: object "DFID" not found: rc = -2\n",
681                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
682                 return -ENOENT;
683         }
684         return next->do_ops->do_attr_set(env, next, la, handle, capa);
685 }
686
687 static inline int mdo_xattr_get(const struct lu_env *env,struct mdd_object *obj,
688                                 struct lu_buf *buf, const char *name,
689                                 struct lustre_capa *capa)
690 {
691         struct dt_object *next = mdd_object_child(obj);
692         return next->do_ops->do_xattr_get(env, next, buf, name, capa);
693 }
694
695 static inline int mdo_declare_xattr_set(const struct lu_env *env,
696                                         struct mdd_object *obj,
697                                         const struct lu_buf *buf,
698                                         const char *name,
699                                         int fl, struct thandle *handle)
700 {
701         struct dt_object *next = mdd_object_child(obj);
702         return dt_declare_xattr_set(env, next, buf, name, fl, handle);
703 }
704
705 static inline int mdo_xattr_set(const struct lu_env *env,struct mdd_object *obj,
706                                 const struct lu_buf *buf, const char *name,
707                                 int fl, struct thandle *handle,
708                                 struct lustre_capa *capa)
709 {
710         struct dt_object *next = mdd_object_child(obj);
711         if (mdd_object_exists(obj) == 0) {
712                 CERROR("%s: object "DFID" not found: rc = -2\n",
713                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
714                 return -ENOENT;
715         }
716         return next->do_ops->do_xattr_set(env, next, buf, name, fl, handle,
717                                           capa);
718 }
719
720 static inline int mdo_declare_xattr_del(const struct lu_env *env,
721                                         struct mdd_object *obj,
722                                         const char *name,
723                                         struct thandle *handle)
724 {
725         struct dt_object *next = mdd_object_child(obj);
726         return dt_declare_xattr_del(env, next, name, handle);
727 }
728
729 static inline int mdo_xattr_del(const struct lu_env *env,struct mdd_object *obj,
730                                 const char *name, struct thandle *handle,
731                                 struct lustre_capa *capa)
732 {
733         struct dt_object *next = mdd_object_child(obj);
734         if (mdd_object_exists(obj) == 0) {
735                 CERROR("%s: object "DFID" not found: rc = -2\n",
736                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
737                 return -ENOENT;
738         }
739         return next->do_ops->do_xattr_del(env, next, name, handle, capa);
740 }
741
742 static inline
743 int mdo_xattr_list(const struct lu_env *env, struct mdd_object *obj,
744                    struct lu_buf *buf, struct lustre_capa *capa)
745 {
746         struct dt_object *next = mdd_object_child(obj);
747         if (mdd_object_exists(obj) == 0) {
748                 CERROR("%s: object "DFID" not found: rc = -2\n",
749                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
750                 return -ENOENT;
751         }
752         return next->do_ops->do_xattr_list(env, next, buf, capa);
753 }
754
755 static inline
756 int mdo_index_try(const struct lu_env *env, struct mdd_object *obj,
757                                  const struct dt_index_features *feat)
758 {
759         struct dt_object *next = mdd_object_child(obj);
760         return next->do_ops->do_index_try(env, next, feat);
761 }
762
763 static inline
764 int mdo_declare_index_insert(const struct lu_env *env, struct mdd_object *obj,
765                              const struct lu_fid *fid, const char *name,
766                              struct thandle *handle)
767 {
768         struct dt_object *next = mdd_object_child(obj);
769         int              rc = 0;
770
771         /*
772          * if the object doesn't exist yet, then it's supposed to be created
773          * and declaration of the creation should be enough to insert ./..
774          */
775         if (mdd_object_exists(obj)) {
776                 rc = -ENOTDIR;
777                 if (dt_try_as_dir(env, next))
778                         rc = dt_declare_insert(env, next,
779                                                (struct dt_rec *)fid,
780                                                (const struct dt_key *)name,
781                                                handle);
782         }
783
784         return rc;
785 }
786
787 static inline
788 int mdo_declare_index_delete(const struct lu_env *env, struct mdd_object *obj,
789                              const char *name, struct thandle *handle)
790 {
791         struct dt_object *next = mdd_object_child(obj);
792
793         if (!dt_try_as_dir(env, next))
794                 return -ENOTDIR;
795
796         return dt_declare_delete(env, next, (const struct dt_key *)name,
797                                  handle);
798 }
799
800 static inline int mdo_declare_ref_add(const struct lu_env *env,
801                                       struct mdd_object *obj,
802                                       struct thandle *handle)
803 {
804         struct dt_object *next = mdd_object_child(obj);
805         return dt_declare_ref_add(env, next, handle);
806 }
807
808 static inline int mdo_ref_add(const struct lu_env *env, struct mdd_object *obj,
809                               struct thandle *handle)
810 {
811         struct dt_object *next = mdd_object_child(obj);
812         if (mdd_object_exists(obj) == 0) {
813                 CERROR("%s: object "DFID" not found: rc = -2\n",
814                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
815                 return -ENOENT;
816         }
817         return next->do_ops->do_ref_add(env, next, handle);
818 }
819
820 static inline int mdo_declare_ref_del(const struct lu_env *env,
821                                       struct mdd_object *obj,
822                                       struct thandle *handle)
823 {
824         struct dt_object *next = mdd_object_child(obj);
825         return dt_declare_ref_del(env, next, handle);
826 }
827
828 static inline int mdo_ref_del(const struct lu_env *env, struct mdd_object *obj,
829                               struct thandle *handle)
830 {
831         struct dt_object *next = mdd_object_child(obj);
832         if (mdd_object_exists(obj) == 0) {
833                 CERROR("%s: object "DFID" not found: rc = -2\n",
834                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
835                 return -ENOENT;
836         }
837         return next->do_ops->do_ref_del(env, next, handle);
838 }
839
840 static inline
841 int mdo_declare_create_obj(const struct lu_env *env, struct mdd_object *o,
842                            struct lu_attr *attr,
843                            struct dt_allocation_hint *hint,
844                            struct dt_object_format *dof,
845                            struct thandle *handle)
846 {
847         struct dt_object *next = mdd_object_child(o);
848         return next->do_ops->do_declare_create(env, next, attr, hint,
849                                                dof, handle);
850 }
851
852 static inline
853 int mdo_create_obj(const struct lu_env *env, struct mdd_object *o,
854                    struct lu_attr *attr,
855                    struct dt_allocation_hint *hint,
856                    struct dt_object_format *dof,
857                    struct thandle *handle)
858 {
859         struct dt_object *next = mdd_object_child(o);
860         return next->do_ops->do_create(env, next, attr, hint, dof, handle);
861 }
862
863 static inline
864 int mdo_declare_destroy(const struct lu_env *env, struct mdd_object *o,
865                         struct thandle *handle)
866 {
867         struct dt_object *next = mdd_object_child(o);
868         return dt_declare_destroy(env, next, handle);
869 }
870
871 static inline
872 int mdo_destroy(const struct lu_env *env, struct mdd_object *o,
873                 struct thandle *handle)
874 {
875         struct dt_object *next = mdd_object_child(o);
876         return dt_destroy(env, next, handle);
877 }
878
879 static inline struct obd_capa *mdo_capa_get(const struct lu_env *env,
880                                             struct mdd_object *obj,
881                                             struct lustre_capa *old,
882                                             __u64 opc)
883 {
884         struct dt_object *next = mdd_object_child(obj);
885         if (mdd_object_exists(obj) == 0) {
886                 CERROR("%s: object "DFID" not found: rc = -2\n",
887                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
888                 return ERR_PTR(-ENOENT);
889         }
890         return next->do_ops->do_capa_get(env, next, old, opc);
891 }
892
893 #endif