Whamcloud - gitweb
LU-1518 mdd: Fixup mdd_{obf,dot_lustre}_obj_ops.
[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_get(const struct lu_env *env, struct md_object *obj,
252                  struct md_attr *ma);
253 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
254                  const struct md_attr *ma);
255 int mdd_attr_set_internal(const struct lu_env *env,
256                           struct mdd_object *obj,
257                           struct lu_attr *attr,
258                           struct thandle *handle,
259                           int needacl);
260 int mdd_attr_check_set_internal(const struct lu_env *env,
261                                 struct mdd_object *obj,
262                                 struct lu_attr *attr,
263                                 struct thandle *handle,
264                                 int needacl);
265 int mdd_declare_object_kill(const struct lu_env *env, struct mdd_object *obj,
266                             struct md_attr *ma, struct thandle *handle);
267 int mdd_object_kill(const struct lu_env *env, struct mdd_object *obj,
268                     struct md_attr *ma, struct thandle *handle);
269 int mdd_iattr_get(const struct lu_env *env, struct mdd_object *mdd_obj,
270                   struct md_attr *ma);
271 int mdd_attr_get_internal(const struct lu_env *env, struct mdd_object *mdd_obj,
272                           struct md_attr *ma);
273 int mdd_attr_get_internal_locked(const struct lu_env *env,
274                                  struct mdd_object *mdd_obj,
275                                  struct md_attr *ma);
276 int mdd_object_create_internal(const struct lu_env *env, struct mdd_object *p,
277                                struct mdd_object *c, struct md_attr *ma,
278                                struct thandle *handle,
279                                const struct md_op_spec *spec);
280 int mdd_attr_check_set_internal_locked(const struct lu_env *env,
281                                        struct mdd_object *obj,
282                                        struct lu_attr *attr,
283                                        struct thandle *handle,
284                                        int needacl);
285 int mdd_lmm_get_locked(const struct lu_env *env, struct mdd_object *mdd_obj,
286                        struct md_attr *ma);
287
288 /* mdd_lock.c */
289 void mdd_write_lock(const struct lu_env *env, struct mdd_object *obj,
290                     enum mdd_object_role role);
291 void mdd_read_lock(const struct lu_env *env, struct mdd_object *obj,
292                    enum mdd_object_role role);
293 void mdd_write_unlock(const struct lu_env *env, struct mdd_object *obj);
294 void mdd_read_unlock(const struct lu_env *env, struct mdd_object *obj);
295 int mdd_write_locked(const struct lu_env *env, struct mdd_object *obj);
296
297 void mdd_pdlock_init(struct mdd_object *obj);
298 unsigned long mdd_name2hash(const char *name);
299 void *mdd_pdo_write_lock(const struct lu_env *env, struct mdd_object *obj,
300                          const char *name, enum mdd_object_role role);
301 void *mdd_pdo_read_lock(const struct lu_env *env, struct mdd_object *obj,
302                         const char *name, enum mdd_object_role role);
303 void mdd_pdo_write_unlock(const struct lu_env *env, struct mdd_object *obj,
304                           void *dlh);
305 void mdd_pdo_read_unlock(const struct lu_env *env, struct mdd_object *obj,
306                          void *dlh);
307 /* mdd_dir.c */
308 int mdd_is_subdir(const struct lu_env *env, struct md_object *mo,
309                   const struct lu_fid *fid, struct lu_fid *sfid);
310 int mdd_may_create(const struct lu_env *env, struct mdd_object *pobj,
311                    struct mdd_object *cobj, int check_perm, int check_nlink);
312 int mdd_may_unlink(const struct lu_env *env, struct mdd_object *pobj,
313                    const struct md_attr *ma);
314 int mdd_may_delete(const struct lu_env *env, struct mdd_object *pobj,
315                    struct mdd_object *cobj, struct md_attr *ma,
316                    int check_perm, int check_empty);
317 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
318                             struct mdd_object *cobj, struct md_attr *ma);
319 int mdd_finish_unlink(const struct lu_env *env, struct mdd_object *obj,
320                       struct md_attr *ma, struct thandle *th);
321 int mdd_object_initialize(const struct lu_env *env, const struct lu_fid *pfid,
322                           const struct lu_name *lname, struct mdd_object *child,
323                           struct md_attr *ma, struct thandle *handle,
324                           const struct md_op_spec *spec);
325 int mdd_link_sanity_check(const struct lu_env *env, struct mdd_object *tgt_obj,
326                           const struct lu_name *lname, struct mdd_object *src_obj);
327 int mdd_is_root(struct mdd_device *mdd, const struct lu_fid *fid);
328 int mdd_lookup(const struct lu_env *env,
329                struct md_object *pobj, const struct lu_name *lname,
330                struct lu_fid* fid, struct md_op_spec *spec);
331 struct lu_buf *mdd_links_get(const struct lu_env *env,
332                              struct mdd_object *mdd_obj);
333 void mdd_lee_unpack(const struct link_ea_entry *lee, int *reclen,
334                     struct lu_name *lname, struct lu_fid *pfid);
335
336 /* mdd_lov.c */
337 int mdd_declare_unlink_log(const struct lu_env *env, struct mdd_object *obj,
338                            struct md_attr *ma, struct thandle *handle);
339 int mdd_unlink_log(const struct lu_env *env, struct mdd_device *mdd,
340                    struct mdd_object *mdd_cobj, struct md_attr *ma);
341
342 int mdd_setattr_log(const struct lu_env *env, struct mdd_device *mdd,
343                     const struct md_attr *ma,
344                     struct lov_mds_md *lmm, int lmm_size,
345                     struct llog_cookie *logcookies, int cookies_size);
346
347 int mdd_get_cookie_size(const struct lu_env *env, struct mdd_device *mdd,
348                         struct lov_mds_md *lmm);
349
350 int mdd_lov_setattr_async(const struct lu_env *env, struct mdd_object *obj,
351                           struct lov_mds_md *lmm, int lmm_size,
352                           struct llog_cookie *logcookies);
353
354 int mdd_lovobj_unlink(const struct lu_env *env, struct mdd_device *mdd,
355                       struct mdd_object *obj, struct lu_attr *la,
356                       struct md_attr *ma, int log_unlink);
357
358 struct mdd_thread_info *mdd_env_info(const struct lu_env *env);
359
360 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len);
361 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
362                                        const void *area, ssize_t len);
363
364 int __mdd_orphan_cleanup(const struct lu_env *env, struct mdd_device *d);
365 int __mdd_orphan_add(const struct lu_env *, struct mdd_object *,
366                      struct thandle *);
367 int __mdd_orphan_del(const struct lu_env *, struct mdd_object *,
368                      struct thandle *);
369 int orph_index_init(const struct lu_env *env, struct mdd_device *mdd);
370 void orph_index_fini(const struct lu_env *env, struct mdd_device *mdd);
371 int orph_declare_index_insert(const struct lu_env *, struct mdd_object *,
372                               struct thandle *);
373 int orph_declare_index_delete(const struct lu_env *, struct mdd_object *,
374                               struct thandle *);
375
376 /* mdd_lproc.c */
377 void lprocfs_mdd_init_vars(struct lprocfs_static_vars *lvars);
378 int mdd_procfs_init(struct mdd_device *mdd, const char *name);
379 int mdd_procfs_fini(struct mdd_device *mdd);
380 void mdd_lprocfs_time_start(const struct lu_env *env);
381 void mdd_lprocfs_time_end(const struct lu_env *env,
382                           struct mdd_device *mdd, int op);
383
384 /* mdd_object.c */
385 int mdd_get_flags(const struct lu_env *env, struct mdd_object *obj);
386 struct lu_buf *mdd_buf_alloc(const struct lu_env *env, ssize_t len);
387 int mdd_buf_grow(const struct lu_env *env, ssize_t len);
388 void mdd_buf_put(struct lu_buf *buf);
389
390 extern const struct md_dir_operations    mdd_dir_ops;
391 extern const struct md_object_operations mdd_obj_ops;
392
393 int accmode(const struct lu_env *env, struct lu_attr *la, int flags);
394 extern struct lu_context_key mdd_thread_key;
395 extern const struct lu_device_operations mdd_lu_ops;
396
397 struct mdd_object *mdd_object_find(const struct lu_env *env,
398                                    struct mdd_device *d,
399                                    const struct lu_fid *f);
400 int mdd_get_default_md(struct mdd_object *mdd_obj, struct lov_mds_md *lmm);
401 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
402                  const struct lu_rdpg *rdpg);
403 int mdd_declare_llog_record(const struct lu_env *env, struct mdd_device *mdd,
404                             int reclen, struct thandle *handle);
405 int mdd_declare_changelog_store(const struct lu_env *env,
406                                 struct mdd_device *mdd,
407                                 const struct lu_name *fname,
408                                 struct thandle *handle);
409 int mdd_changelog(const struct lu_env *env, enum changelog_rec_type type,
410                   int flags, struct md_object *obj);
411 int mdd_declare_object_create_internal(const struct lu_env *env,
412                                        struct mdd_object *p,
413                                        struct mdd_object *c,
414                                        struct md_attr *ma,
415                                        struct thandle *handle,
416                                        const struct md_op_spec *spec);
417 /* mdd_quota.c*/
418 #ifdef HAVE_QUOTA_SUPPORT
419 int mdd_quota_notify(const struct lu_env *env, struct md_device *m);
420 int mdd_quota_setup(const struct lu_env *env, struct md_device *m,
421                     void *data);
422 int mdd_quota_cleanup(const struct lu_env *env, struct md_device *m);
423 int mdd_quota_recovery(const struct lu_env *env, struct md_device *m);
424 int mdd_quota_check(const struct lu_env *env, struct md_device *m,
425                     __u32 type);
426 int mdd_quota_on(const struct lu_env *env, struct md_device *m,
427                  __u32 type);
428 int mdd_quota_off(const struct lu_env *env, struct md_device *m,
429                   __u32 type);
430 int mdd_quota_setinfo(const struct lu_env *env, struct md_device *m,
431                       __u32 type, __u32 id, struct obd_dqinfo *dqinfo);
432 int mdd_quota_getinfo(const struct lu_env *env, const struct md_device *m,
433                       __u32 type, __u32 id, struct obd_dqinfo *dqinfo);
434 int mdd_quota_setquota(const struct lu_env *env, struct md_device *m,
435                        __u32 type, __u32 id, struct obd_dqblk *dqblk);
436 int mdd_quota_getquota(const struct lu_env *env, const struct md_device *m,
437                        __u32 type, __u32 id, struct obd_dqblk *dqblk);
438 int mdd_quota_getoinfo(const struct lu_env *env, const struct md_device *m,
439                        __u32 type, __u32 id, struct obd_dqinfo *dqinfo);
440 int mdd_quota_getoquota(const struct lu_env *env, const struct md_device *m,
441                         __u32 type, __u32 id, struct obd_dqblk *dqblk);
442 int mdd_quota_invalidate(const struct lu_env *env, struct md_device *m,
443                          __u32 type);
444 int mdd_quota_finvalidate(const struct lu_env *env, struct md_device *m,
445                           __u32 type);
446 #endif
447
448 /* mdd_trans.c */
449 int mdd_lov_destroy(const struct lu_env *env, struct mdd_device *mdd,
450                     struct mdd_object *obj, struct lu_attr *la);
451
452 static inline void mdd_object_put(const struct lu_env *env,
453                                   struct mdd_object *o)
454 {
455         lu_object_put(env, &o->mod_obj.mo_lu);
456 }
457
458 struct thandle *mdd_trans_create(const struct lu_env *env,
459                                  struct mdd_device *mdd);
460 int mdd_trans_start(const struct lu_env *env, struct mdd_device *mdd,
461                     struct thandle *th);
462 void mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
463                     int rc, struct thandle *handle);
464 int mdd_txn_stop_cb(const struct lu_env *env, struct thandle *txn,
465                     void *cookie);
466 int mdd_txn_start_cb(const struct lu_env *env, struct thandle *,
467                      void *cookie);
468
469 /* mdd_lfsck.c */
470 void mdd_lfsck_set_speed(struct md_lfsck *lfsck, __u32 limit);
471 int mdd_lfsck_start(const struct lu_env *env, struct md_lfsck *lfsck,
472                     struct lfsck_start *start);
473 int mdd_lfsck_stop(const struct lu_env *env, struct md_lfsck *lfsck);
474 int mdd_lfsck_setup(const struct lu_env *env, struct mdd_device *mdd);
475 void mdd_lfsck_cleanup(const struct lu_env *env, struct mdd_device *mdd);
476
477 /* mdd_device.c */
478 struct lu_object *mdd_object_alloc(const struct lu_env *env,
479                                    const struct lu_object_header *hdr,
480                                    struct lu_device *d);
481 struct llog_changelog_rec;
482 int mdd_changelog_llog_write(struct mdd_device         *mdd,
483                              struct llog_changelog_rec *rec,
484                              struct thandle            *handle);
485 int mdd_changelog_ext_llog_write(struct mdd_device *mdd,
486                                  struct llog_changelog_ext_rec *rec,
487                                  struct thandle *handle);
488 int mdd_changelog_llog_cancel(struct mdd_device *mdd, long long endrec);
489 int mdd_changelog_write_header(struct mdd_device *mdd, int markerflags);
490 int mdd_changelog_on(struct mdd_device *mdd, int on);
491
492 /* mdd_permission.c */
493 #define mdd_cap_t(x) (x)
494
495 #define MDD_CAP_TO_MASK(x) (1 << (x))
496
497 #define mdd_cap_raised(c, flag) (mdd_cap_t(c) & MDD_CAP_TO_MASK(flag))
498
499 /* capable() is copied from linux kernel! */
500 static inline int mdd_capable(struct md_ucred *uc, cfs_cap_t cap)
501 {
502         if (mdd_cap_raised(uc->mu_cap, cap))
503                 return 1;
504         return 0;
505 }
506
507 int mdd_def_acl_get(const struct lu_env *env, struct mdd_object *mdd_obj,
508                     struct md_attr *ma);
509 int mdd_acl_chmod(const struct lu_env *env, struct mdd_object *o, __u32 mode,
510                   struct thandle *handle);
511 int __mdd_declare_acl_init(const struct lu_env *env, struct mdd_object *obj,
512                            int is_dir, struct thandle *handle);
513 int __mdd_acl_init(const struct lu_env *env, struct mdd_object *obj,
514                    struct lu_buf *buf, __u32 *mode, struct thandle *handle);
515 int __mdd_permission_internal(const struct lu_env *env, struct mdd_object *obj,
516                               struct lu_attr *la, int mask, int role);
517 int mdd_permission(const struct lu_env *env,
518                    struct md_object *pobj, struct md_object *cobj,
519                    struct md_attr *ma, int mask);
520 int mdd_capa_get(const struct lu_env *env, struct md_object *obj,
521                  struct lustre_capa *capa, int renewal);
522
523 static inline int lu_device_is_mdd(struct lu_device *d)
524 {
525         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &mdd_lu_ops);
526 }
527
528 static inline struct mdd_device* lu2mdd_dev(struct lu_device *d)
529 {
530         LASSERT(lu_device_is_mdd(d));
531         return container_of0(d, struct mdd_device, mdd_md_dev.md_lu_dev);
532 }
533
534 static inline struct lu_device *mdd2lu_dev(struct mdd_device *d)
535 {
536         return (&d->mdd_md_dev.md_lu_dev);
537 }
538
539 static inline struct mdd_object *lu2mdd_obj(struct lu_object *o)
540 {
541         LASSERT(ergo(o != NULL, lu_device_is_mdd(o->lo_dev)));
542         return container_of0(o, struct mdd_object, mod_obj.mo_lu);
543 }
544
545 static inline struct mdd_device* mdo2mdd(struct md_object *mdo)
546 {
547         return lu2mdd_dev(mdo->mo_lu.lo_dev);
548 }
549
550 static inline struct mdd_object* md2mdd_obj(struct md_object *mdo)
551 {
552         return container_of0(mdo, struct mdd_object, mod_obj);
553 }
554
555 static inline const struct dt_device_operations *
556 mdd_child_ops(struct mdd_device *d)
557 {
558         return d->mdd_child->dd_ops;
559 }
560
561 static inline struct lu_object *mdd2lu_obj(struct mdd_object *obj)
562 {
563         return &obj->mod_obj.mo_lu;
564 }
565
566 static inline struct dt_object* mdd_object_child(struct mdd_object *o)
567 {
568         return container_of0(lu_object_next(mdd2lu_obj(o)),
569                              struct dt_object, do_lu);
570 }
571
572 static inline struct obd_device *mdd2obd_dev(struct mdd_device *mdd)
573 {
574         return mdd->mdd_obd_dev;
575 }
576
577 static inline struct mdd_device *mdd_obj2mdd_dev(struct mdd_object *obj)
578 {
579         return mdo2mdd(&obj->mod_obj);
580 }
581
582 static inline const struct lu_fid *mdo2fid(const struct mdd_object *obj)
583 {
584         return lu_object_fid(&obj->mod_obj.mo_lu);
585 }
586
587 static inline cfs_umode_t mdd_object_type(const struct mdd_object *obj)
588 {
589         return lu_object_attr(&obj->mod_obj.mo_lu);
590 }
591
592 static inline int mdd_lov_mdsize(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_mdsize;
597 }
598
599 static inline int mdd_lov_cookiesize(const struct lu_env *env,
600                                      struct mdd_device *mdd)
601 {
602         struct obd_device *obd = mdd2obd_dev(mdd);
603         return obd->u.mds.mds_max_cookiesize;
604 }
605
606 static inline int mdd_is_immutable(struct mdd_object *obj)
607 {
608         return obj->mod_flags & IMMUTE_OBJ;
609 }
610
611 static inline int mdd_is_dead_obj(struct mdd_object *obj)
612 {
613         return obj && obj->mod_flags & DEAD_OBJ;
614 }
615
616 static inline int mdd_is_append(struct mdd_object *obj)
617 {
618         return obj->mod_flags & APPEND_OBJ;
619 }
620
621 static inline int mdd_object_exists(struct mdd_object *obj)
622 {
623         return lu_object_exists(mdd2lu_obj(obj));
624 }
625
626 static inline const struct lu_fid *mdd_object_fid(struct mdd_object *obj)
627 {
628         return lu_object_fid(mdd2lu_obj(obj));
629 }
630
631 static inline struct lustre_capa *mdd_object_capa(const struct lu_env *env,
632                                                   const struct mdd_object *obj)
633 {
634         struct md_capainfo *ci = md_capainfo(env);
635         const struct lu_fid *fid = mdo2fid(obj);
636         int i;
637
638         /* NB: in mdt_init0 */
639         if (!ci)
640                 return BYPASS_CAPA;
641         for (i = 0; i < MD_CAPAINFO_MAX; i++)
642                 if (lu_fid_eq(&ci->mc_fid[i], fid))
643                         return ci->mc_capa[i];
644         return NULL;
645 }
646
647 static inline void mdd_set_capainfo(const struct lu_env *env, int offset,
648                                     const struct mdd_object *obj,
649                                     struct lustre_capa *capa)
650 {
651         struct md_capainfo *ci = md_capainfo(env);
652         const struct lu_fid *fid = mdo2fid(obj);
653
654         LASSERT(offset >= 0 && offset <= MD_CAPAINFO_MAX);
655         /* NB: in mdt_init0 */
656         if (!ci)
657                 return;
658         ci->mc_fid[offset]  = *fid;
659         ci->mc_capa[offset] = capa;
660 }
661
662 static inline const char *mdd_obj_dev_name(const struct mdd_object *obj)
663 {
664         return lu_dev_name(obj->mod_obj.mo_lu.lo_dev);
665 }
666
667 #define MAX_ATIME_DIFF 60
668
669 enum {
670         LPROC_MDD_NR
671 };
672
673 static inline int mdd_permission_internal(const struct lu_env *env,
674                                           struct mdd_object *obj,
675                                           struct lu_attr *la, int mask)
676 {
677         return __mdd_permission_internal(env, obj, la, mask, -1);
678 }
679
680 static inline int mdd_permission_internal_locked(const struct lu_env *env,
681                                                  struct mdd_object *obj,
682                                                  struct lu_attr *la, int mask,
683                                                  enum mdd_object_role role)
684 {
685         return __mdd_permission_internal(env, obj, la, mask, role);
686 }
687
688 static inline int mdo_data_get(const struct lu_env *env,
689                                struct mdd_object *obj,
690                                void **data)
691 {
692         struct dt_object *next = mdd_object_child(obj);
693         next->do_ops->do_data_get(env, next, data);
694         return 0;
695 }
696
697 /* mdd inline func for calling osd_dt_object ops */
698 static inline int mdo_attr_get(const struct lu_env *env, struct mdd_object *obj,
699                                struct lu_attr *la, struct lustre_capa *capa)
700 {
701         struct dt_object *next = mdd_object_child(obj);
702         return next->do_ops->do_attr_get(env, next, la, capa);
703 }
704
705 static inline int mdo_declare_attr_set(const struct lu_env *env,
706                                        struct mdd_object *obj,
707                                        const struct lu_attr *la,
708                                        struct thandle *handle)
709 {
710         struct dt_object *next = mdd_object_child(obj);
711         return dt_declare_attr_set(env, next, la, handle);
712 }
713
714 static inline int mdo_attr_set(const struct lu_env *env,
715                                struct mdd_object *obj,
716                                const struct lu_attr *la,
717                                struct thandle *handle,
718                                struct lustre_capa *capa)
719 {
720         struct dt_object *next = mdd_object_child(obj);
721         if (mdd_object_exists(obj) == 0) {
722                 CERROR("%s: object "DFID" not found: rc = -2\n",
723                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
724                 return -ENOENT;
725         }
726         return next->do_ops->do_attr_set(env, next, la, handle, capa);
727 }
728
729 static inline int mdo_xattr_get(const struct lu_env *env,struct mdd_object *obj,
730                                 struct lu_buf *buf, const char *name,
731                                 struct lustre_capa *capa)
732 {
733         struct dt_object *next = mdd_object_child(obj);
734         return next->do_ops->do_xattr_get(env, next, buf, name, capa);
735 }
736
737 static inline int mdo_declare_xattr_set(const struct lu_env *env,
738                                         struct mdd_object *obj,
739                                         const struct lu_buf *buf,
740                                         const char *name,
741                                         int fl, struct thandle *handle)
742 {
743         struct dt_object *next = mdd_object_child(obj);
744         return dt_declare_xattr_set(env, next, buf, name, fl, handle);
745 }
746
747 static inline int mdo_xattr_set(const struct lu_env *env,struct mdd_object *obj,
748                                 const struct lu_buf *buf, const char *name,
749                                 int fl, struct thandle *handle,
750                                 struct lustre_capa *capa)
751 {
752         struct dt_object *next = mdd_object_child(obj);
753         if (mdd_object_exists(obj) == 0) {
754                 CERROR("%s: object "DFID" not found: rc = -2\n",
755                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
756                 return -ENOENT;
757         }
758         return next->do_ops->do_xattr_set(env, next, buf, name, fl, handle,
759                                           capa);
760 }
761
762 static inline int mdo_declare_xattr_del(const struct lu_env *env,
763                                         struct mdd_object *obj,
764                                         const char *name,
765                                         struct thandle *handle)
766 {
767         struct dt_object *next = mdd_object_child(obj);
768         return dt_declare_xattr_del(env, next, name, handle);
769 }
770
771 static inline int mdo_xattr_del(const struct lu_env *env,struct mdd_object *obj,
772                                 const char *name, struct thandle *handle,
773                                 struct lustre_capa *capa)
774 {
775         struct dt_object *next = mdd_object_child(obj);
776         if (mdd_object_exists(obj) == 0) {
777                 CERROR("%s: object "DFID" not found: rc = -2\n",
778                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
779                 return -ENOENT;
780         }
781         return next->do_ops->do_xattr_del(env, next, name, handle, capa);
782 }
783
784 static inline
785 int mdo_xattr_list(const struct lu_env *env, struct mdd_object *obj,
786                    struct lu_buf *buf, struct lustre_capa *capa)
787 {
788         struct dt_object *next = mdd_object_child(obj);
789         if (mdd_object_exists(obj) == 0) {
790                 CERROR("%s: object "DFID" not found: rc = -2\n",
791                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
792                 return -ENOENT;
793         }
794         return next->do_ops->do_xattr_list(env, next, buf, capa);
795 }
796
797 static inline
798 int mdo_index_try(const struct lu_env *env, struct mdd_object *obj,
799                                  const struct dt_index_features *feat)
800 {
801         struct dt_object *next = mdd_object_child(obj);
802         return next->do_ops->do_index_try(env, next, feat);
803 }
804
805 static inline
806 int mdo_declare_index_insert(const struct lu_env *env, struct mdd_object *obj,
807                              const struct lu_fid *fid, const char *name,
808                              struct thandle *handle)
809 {
810         struct dt_object *next = mdd_object_child(obj);
811         int              rc = 0;
812
813         /*
814          * if the object doesn't exist yet, then it's supposed to be created
815          * and declaration of the creation should be enough to insert ./..
816          */
817         if (mdd_object_exists(obj)) {
818                 rc = -ENOTDIR;
819                 if (dt_try_as_dir(env, next))
820                         rc = dt_declare_insert(env, next,
821                                                (struct dt_rec *)fid,
822                                                (const struct dt_key *)name,
823                                                handle);
824         }
825
826         return rc;
827 }
828
829 static inline
830 int mdo_declare_index_delete(const struct lu_env *env, struct mdd_object *obj,
831                              const char *name, struct thandle *handle)
832 {
833         struct dt_object *next = mdd_object_child(obj);
834
835         if (!dt_try_as_dir(env, next))
836                 return -ENOTDIR;
837
838         return dt_declare_delete(env, next, (const struct dt_key *)name,
839                                  handle);
840 }
841
842 static inline int mdo_declare_ref_add(const struct lu_env *env,
843                                       struct mdd_object *obj,
844                                       struct thandle *handle)
845 {
846         struct dt_object *next = mdd_object_child(obj);
847         return dt_declare_ref_add(env, next, handle);
848 }
849
850 static inline int mdo_ref_add(const struct lu_env *env, struct mdd_object *obj,
851                               struct thandle *handle)
852 {
853         struct dt_object *next = mdd_object_child(obj);
854         if (mdd_object_exists(obj) == 0) {
855                 CERROR("%s: object "DFID" not found: rc = -2\n",
856                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
857                 return -ENOENT;
858         }
859         return next->do_ops->do_ref_add(env, next, handle);
860 }
861
862 static inline int mdo_declare_ref_del(const struct lu_env *env,
863                                       struct mdd_object *obj,
864                                       struct thandle *handle)
865 {
866         struct dt_object *next = mdd_object_child(obj);
867         return dt_declare_ref_del(env, next, handle);
868 }
869
870 static inline int mdo_ref_del(const struct lu_env *env, struct mdd_object *obj,
871                               struct thandle *handle)
872 {
873         struct dt_object *next = mdd_object_child(obj);
874         if (mdd_object_exists(obj) == 0) {
875                 CERROR("%s: object "DFID" not found: rc = -2\n",
876                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
877                 return -ENOENT;
878         }
879         return next->do_ops->do_ref_del(env, next, handle);
880 }
881
882 static inline
883 int mdo_declare_create_obj(const struct lu_env *env, struct mdd_object *o,
884                            struct lu_attr *attr,
885                            struct dt_allocation_hint *hint,
886                            struct dt_object_format *dof,
887                            struct thandle *handle)
888 {
889         struct dt_object *next = mdd_object_child(o);
890         return next->do_ops->do_declare_create(env, next, attr, hint,
891                                                dof, handle);
892 }
893
894 static inline
895 int mdo_create_obj(const struct lu_env *env, struct mdd_object *o,
896                    struct lu_attr *attr,
897                    struct dt_allocation_hint *hint,
898                    struct dt_object_format *dof,
899                    struct thandle *handle)
900 {
901         struct dt_object *next = mdd_object_child(o);
902         return next->do_ops->do_create(env, next, attr, hint, dof, handle);
903 }
904
905 static inline
906 int mdo_declare_destroy(const struct lu_env *env, struct mdd_object *o,
907                         struct thandle *handle)
908 {
909         struct dt_object *next = mdd_object_child(o);
910         return dt_declare_destroy(env, next, handle);
911 }
912
913 static inline
914 int mdo_destroy(const struct lu_env *env, struct mdd_object *o,
915                 struct thandle *handle)
916 {
917         struct dt_object *next = mdd_object_child(o);
918         return dt_destroy(env, next, handle);
919 }
920
921 static inline struct obd_capa *mdo_capa_get(const struct lu_env *env,
922                                             struct mdd_object *obj,
923                                             struct lustre_capa *old,
924                                             __u64 opc)
925 {
926         struct dt_object *next = mdd_object_child(obj);
927         if (mdd_object_exists(obj) == 0) {
928                 CERROR("%s: object "DFID" not found: rc = -2\n",
929                        mdd_obj_dev_name(obj), PFID(mdd_object_fid(obj)));
930                 return ERR_PTR(-ENOENT);
931         }
932         return next->do_ops->do_capa_get(env, next, old, opc);
933 }
934
935 #endif