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