Whamcloud - gitweb
LU-5 readdir read multiple pages per rpc
[fs/lustre-release.git] / lustre / include / md_object.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 /*
33  * Copyright (c) 2011 Whamcloud, Inc.
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  *
39  * lustre/include/md_object.h
40  *
41  * Extention of lu_object.h for metadata objects
42  */
43
44 #ifndef _LUSTRE_MD_OBJECT_H
45 #define _LUSTRE_MD_OBJECT_H
46
47 /** \defgroup md md
48  * Sub-class of lu_object with methods common for "meta-data" objects in MDT
49  * stack.
50  *
51  * Meta-data objects implement namespace operations: you can link, unlink
52  * them, and treat them as directories.
53  *
54  * Examples: mdt, cmm, and mdt are implementations of md interface.
55  * @{
56  */
57
58
59 /*
60  * super-class definitions.
61  */
62 #include <dt_object.h>
63 #include <lvfs.h>
64
65 struct md_device;
66 struct md_device_operations;
67 struct md_object;
68 struct obd_export;
69
70 enum {
71         UCRED_INVALID   = -1,
72         UCRED_INIT      = 0,
73         UCRED_OLD       = 1,
74         UCRED_NEW       = 2
75 };
76
77 struct md_ucred {
78         __u32               mu_valid;
79         __u32               mu_o_uid;
80         __u32               mu_o_gid;
81         __u32               mu_o_fsuid;
82         __u32               mu_o_fsgid;
83         __u32               mu_uid;
84         __u32               mu_gid;
85         __u32               mu_fsuid;
86         __u32               mu_fsgid;
87         __u32               mu_suppgids[2];
88         cfs_cap_t           mu_cap;
89         __u32               mu_umask;
90         cfs_group_info_t   *mu_ginfo;
91         struct md_identity *mu_identity;
92 };
93
94 enum {
95         MD_CAPAINFO_MAX = 5
96 };
97
98 /** there are at most 5 fids in one operation, see rename, NOTE the last one
99  * is a temporary one used for is_subdir() */
100 struct md_capainfo {
101         __u32                   mc_auth;
102         __u32                   mc_padding;
103         const struct lu_fid    *mc_fid[MD_CAPAINFO_MAX];
104         struct lustre_capa     *mc_capa[MD_CAPAINFO_MAX];
105 };
106
107 struct md_quota {
108         struct obd_export       *mq_exp;
109 };
110
111 /**
112  * Implemented in mdd/mdd_handler.c.
113  *
114  * XXX should be moved into separate .h/.c together with all md security
115  * related definitions.
116  */
117 struct md_ucred *md_ucred(const struct lu_env *env);
118 struct md_capainfo *md_capainfo(const struct lu_env *env);
119 struct md_quota *md_quota(const struct lu_env *env);
120
121 /** metadata attributes */
122 enum ma_valid {
123         MA_INODE     = (1 << 0),
124         MA_LOV       = (1 << 1),
125         MA_COOKIE    = (1 << 2),
126         MA_FLAGS     = (1 << 3),
127         MA_LMV       = (1 << 4),
128         MA_ACL_DEF   = (1 << 5),
129         MA_LOV_DEF   = (1 << 6),
130 /* (Layout lock will used #7 here) */
131         MA_HSM       = (1 << 8),
132         MA_SOM       = (1 << 9),
133         MA_PFID      = (1 << 10)
134 };
135
136 typedef enum {
137         MDL_MINMODE  = 0,
138         MDL_EX       = 1,
139         MDL_PW       = 2,
140         MDL_PR       = 4,
141         MDL_CW       = 8,
142         MDL_CR       = 16,
143         MDL_NL       = 32,
144         MDL_GROUP    = 64,
145         MDL_MAXMODE
146 } mdl_mode_t;
147
148 typedef enum {
149         MDT_NUL_LOCK = 0,
150         MDT_REG_LOCK = (1 << 0),
151         MDT_PDO_LOCK = (1 << 1)
152 } mdl_type_t;
153
154 struct md_hsm {
155         __u32  mh_flags;
156         __u32  mh_archive_number;
157 };
158
159 #define IOEPOCH_INVAL 0
160
161 struct md_som_data {
162         __u64 msd_ioepoch;
163         __u64 msd_size;
164         __u64 msd_blocks;
165         __u64 msd_mountid;
166 };
167
168 struct md_attr {
169         __u64                   ma_valid;
170         __u64                   ma_need;
171         __u64                   ma_attr_flags;
172         struct lu_attr          ma_attr;
173         struct lov_mds_md      *ma_lmm;
174         int                     ma_lmm_size;
175         struct lmv_stripe_md   *ma_lmv;
176         int                     ma_lmv_size;
177         void                   *ma_acl;
178         int                     ma_acl_size;
179         struct llog_cookie     *ma_cookie;
180         int                     ma_cookie_size;
181         struct lustre_capa     *ma_capa;
182         struct md_hsm           ma_hsm;
183         struct md_som_data     *ma_som;
184         struct lu_fid           ma_pfid;
185 };
186
187 /** Additional parameters for create */
188 struct md_op_spec {
189         union {
190                 /** symlink target */
191                 const char               *sp_symname;
192                 /** parent FID for cross-ref mkdir */
193                 const struct lu_fid      *sp_pfid;
194                 /** eadata for regular files */
195                 struct md_spec_reg {
196                         /** lov objs exist already */
197                         const struct lu_fid   *fid;
198                         const void *eadata;
199                         int  eadatalen;
200                 } sp_ea;
201         } u;
202         /** don't create lov objects or llog cookie - this replay */
203         int no_create;
204
205         /** Create flag from client: such as MDS_OPEN_CREAT, and others. */
206         __u64      sp_cr_flags;
207
208         /** Should mdd do lookup sanity check or not. */
209         int        sp_cr_lookup;
210
211         /** Current lock mode for parent dir where create is performing. */
212         mdl_mode_t sp_cr_mode;
213
214         /** Check for split */
215         int        sp_ck_split;
216
217         /** to create directory */
218         const struct dt_index_features *sp_feat;
219 };
220
221 /**
222  * Operations implemented for each md object (both directory and leaf).
223  */
224 struct md_object_operations {
225         int (*moo_permission)(const struct lu_env *env,
226                               struct md_object *pobj, struct md_object *cobj,
227                               struct md_attr *attr, int mask);
228
229         int (*moo_attr_get)(const struct lu_env *env, struct md_object *obj,
230                             struct md_attr *attr);
231
232         int (*moo_attr_set)(const struct lu_env *env, struct md_object *obj,
233                             const struct md_attr *attr);
234
235         int (*moo_xattr_get)(const struct lu_env *env, struct md_object *obj,
236                              struct lu_buf *buf, const char *name);
237
238         int (*moo_xattr_list)(const struct lu_env *env, struct md_object *obj,
239                               struct lu_buf *buf);
240
241         int (*moo_xattr_set)(const struct lu_env *env, struct md_object *obj,
242                              const struct lu_buf *buf, const char *name,
243                              int fl);
244
245         int (*moo_xattr_del)(const struct lu_env *env, struct md_object *obj,
246                              const char *name);
247
248         /** \retval number of bytes actually read upon success */
249         int (*moo_readpage)(const struct lu_env *env, struct md_object *obj,
250                             const struct lu_rdpg *rdpg);
251
252         int (*moo_readlink)(const struct lu_env *env, struct md_object *obj,
253                             struct lu_buf *buf);
254         int (*moo_changelog)(const struct lu_env *env,
255                              enum changelog_rec_type type, int flags,
256                              struct md_object *obj);
257         /** part of cross-ref operation */
258         int (*moo_object_create)(const struct lu_env *env,
259                                  struct md_object *obj,
260                                  const struct md_op_spec *spec,
261                                  struct md_attr *ma);
262
263         int (*moo_ref_add)(const struct lu_env *env,
264                            struct md_object *obj,
265                            const struct md_attr *ma);
266
267         int (*moo_ref_del)(const struct lu_env *env,
268                            struct md_object *obj,
269                            struct md_attr *ma);
270
271         int (*moo_open)(const struct lu_env *env,
272                         struct md_object *obj, int flag);
273
274         int (*moo_close)(const struct lu_env *env, struct md_object *obj,
275                          struct md_attr *ma);
276
277         int (*moo_capa_get)(const struct lu_env *, struct md_object *,
278                             struct lustre_capa *, int renewal);
279
280         int (*moo_object_sync)(const struct lu_env *, struct md_object *);
281         dt_obj_version_t (*moo_version_get)(const struct lu_env *,
282                                             struct md_object *);
283         void (*moo_version_set)(const struct lu_env *, struct md_object *,
284                                 dt_obj_version_t);
285         int (*moo_path)(const struct lu_env *env, struct md_object *obj,
286                         char *path, int pathlen, __u64 *recno, int *linkno);
287         int (*moo_file_lock)(const struct lu_env *env, struct md_object *obj,
288                              struct lov_mds_md *lmm, struct ldlm_extent *extent,
289                              struct lustre_handle *lockh);
290         int (*moo_file_unlock)(const struct lu_env *env, struct md_object *obj,
291                                struct lov_mds_md *lmm,
292                                struct lustre_handle *lockh);
293 };
294
295 /**
296  * Operations implemented for each directory object.
297  */
298 struct md_dir_operations {
299         int (*mdo_is_subdir) (const struct lu_env *env, struct md_object *obj,
300                               const struct lu_fid *fid, struct lu_fid *sfid);
301
302         int (*mdo_lookup)(const struct lu_env *env, struct md_object *obj,
303                           const struct lu_name *lname, struct lu_fid *fid,
304                           struct md_op_spec *spec);
305
306         mdl_mode_t (*mdo_lock_mode)(const struct lu_env *env,
307                                     struct md_object *obj,
308                                     mdl_mode_t mode);
309
310         int (*mdo_create)(const struct lu_env *env, struct md_object *pobj,
311                           const struct lu_name *lname, struct md_object *child,
312                           struct md_op_spec *spec,
313                           struct md_attr *ma);
314
315         /** This method is used for creating data object for this meta object*/
316         int (*mdo_create_data)(const struct lu_env *env, struct md_object *p,
317                                struct md_object *o,
318                                const struct md_op_spec *spec,
319                                struct md_attr *ma);
320
321         int (*mdo_rename)(const struct lu_env *env, struct md_object *spobj,
322                           struct md_object *tpobj, const struct lu_fid *lf,
323                           const struct lu_name *lsname, struct md_object *tobj,
324                           const struct lu_name *ltname, struct md_attr *ma);
325
326         int (*mdo_link)(const struct lu_env *env, struct md_object *tgt_obj,
327                         struct md_object *src_obj, const struct lu_name *lname,
328                         struct md_attr *ma);
329
330         int (*mdo_unlink)(const struct lu_env *env, struct md_object *pobj,
331                           struct md_object *cobj, const struct lu_name *lname,
332                           struct md_attr *ma);
333
334         /** partial ops for cross-ref case */
335         int (*mdo_name_insert)(const struct lu_env *env,
336                                struct md_object *obj,
337                                const struct lu_name *lname,
338                                const struct lu_fid *fid,
339                                const struct md_attr *ma);
340
341         int (*mdo_name_remove)(const struct lu_env *env,
342                                struct md_object *obj,
343                                const struct lu_name *lname,
344                                const struct md_attr *ma);
345
346         int (*mdo_rename_tgt)(const struct lu_env *env, struct md_object *pobj,
347                               struct md_object *tobj, const struct lu_fid *fid,
348                               const struct lu_name *lname, struct md_attr *ma);
349 };
350
351 struct md_device_operations {
352         /** meta-data device related handlers. */
353         int (*mdo_root_get)(const struct lu_env *env, struct md_device *m,
354                             struct lu_fid *f);
355
356         int (*mdo_maxsize_get)(const struct lu_env *env, struct md_device *m,
357                                int *md_size, int *cookie_size);
358
359         int (*mdo_statfs)(const struct lu_env *env, struct md_device *m,
360                           cfs_kstatfs_t *sfs);
361
362         int (*mdo_init_capa_ctxt)(const struct lu_env *env, struct md_device *m,
363                                   int mode, unsigned long timeout, __u32 alg,
364                                   struct lustre_capa_key *keys);
365
366         int (*mdo_update_capa_key)(const struct lu_env *env,
367                                    struct md_device *m,
368                                    struct lustre_capa_key *key);
369
370         int (*mdo_llog_ctxt_get)(const struct lu_env *env,
371                                  struct md_device *m, int idx, void **h);
372
373         int (*mdo_iocontrol)(const struct lu_env *env, struct md_device *m,
374                              unsigned int cmd, int len, void *data);
375
376 #ifdef HAVE_QUOTA_SUPPORT
377         struct md_quota_operations {
378                 int (*mqo_notify)(const struct lu_env *env,
379                                   struct md_device *m);
380
381                 int (*mqo_setup)(const struct lu_env *env,
382                                  struct md_device *m,
383                                  void *data);
384
385                 int (*mqo_cleanup)(const struct lu_env *env,
386                                    struct md_device *m);
387
388                 int (*mqo_recovery)(const struct lu_env *env,
389                                     struct md_device *m);
390
391                 int (*mqo_check)(const struct lu_env *env,
392                                  struct md_device *m,
393                                  __u32 type);
394
395                 int (*mqo_on)(const struct lu_env *env,
396                               struct md_device *m,
397                               __u32 type);
398
399                 int (*mqo_off)(const struct lu_env *env,
400                                struct md_device *m,
401                                __u32 type);
402
403                 int (*mqo_setinfo)(const struct lu_env *env,
404                                    struct md_device *m,
405                                    __u32 type,
406                                    __u32 id,
407                                    struct obd_dqinfo *dqinfo);
408
409                 int (*mqo_getinfo)(const struct lu_env *env,
410                                    const struct md_device *m,
411                                    __u32 type,
412                                    __u32 id,
413                                    struct obd_dqinfo *dqinfo);
414
415                 int (*mqo_setquota)(const struct lu_env *env,
416                                     struct md_device *m,
417                                     __u32 type,
418                                     __u32 id,
419                                     struct obd_dqblk *dqblk);
420
421                 int (*mqo_getquota)(const struct lu_env *env,
422                                     const struct md_device *m,
423                                     __u32 type,
424                                     __u32 id,
425                                     struct obd_dqblk *dqblk);
426
427                 int (*mqo_getoinfo)(const struct lu_env *env,
428                                     const struct md_device *m,
429                                     __u32 type,
430                                     __u32 id,
431                                     struct obd_dqinfo *dqinfo);
432
433                 int (*mqo_getoquota)(const struct lu_env *env,
434                                      const struct md_device *m,
435                                      __u32 type,
436                                      __u32 id,
437                                      struct obd_dqblk *dqblk);
438
439                 int (*mqo_invalidate)(const struct lu_env *env,
440                                       struct md_device *m,
441                                       __u32 type);
442
443                 int (*mqo_finvalidate)(const struct lu_env *env,
444                                        struct md_device *m,
445                                        __u32 type);
446         } mdo_quota;
447 #endif
448 };
449
450 enum md_upcall_event {
451         /** Sync the md layer*/
452         MD_LOV_SYNC = (1 << 0),
453         /** Just for split, no need trans, for replay */
454         MD_NO_TRANS = (1 << 1),
455         MD_LOV_CONFIG = (1 << 2),
456         /** Trigger quota recovery */
457         MD_LOV_QUOTA = (1 << 3)
458 };
459
460 struct md_upcall {
461         /** this lock protects upcall using against its removal
462          * read lock is for usage the upcall, write - for init/fini */
463         cfs_rw_semaphore_t      mu_upcall_sem;
464         /** device to call, upper layer normally */
465         struct md_device       *mu_upcall_dev;
466         /** upcall function */
467         int (*mu_upcall)(const struct lu_env *env, struct md_device *md,
468                          enum md_upcall_event ev, void *data);
469 };
470
471 struct md_device {
472         struct lu_device                   md_lu_dev;
473         const struct md_device_operations *md_ops;
474         struct md_upcall                   md_upcall;
475 };
476
477 static inline void md_upcall_init(struct md_device *m, void *upcl)
478 {
479         cfs_init_rwsem(&m->md_upcall.mu_upcall_sem);
480         m->md_upcall.mu_upcall_dev = NULL;
481         m->md_upcall.mu_upcall = upcl;
482 }
483
484 static inline void md_upcall_dev_set(struct md_device *m, struct md_device *up)
485 {
486         cfs_down_write(&m->md_upcall.mu_upcall_sem);
487         m->md_upcall.mu_upcall_dev = up;
488         cfs_up_write(&m->md_upcall.mu_upcall_sem);
489 }
490
491 static inline void md_upcall_fini(struct md_device *m)
492 {
493         cfs_down_write(&m->md_upcall.mu_upcall_sem);
494         m->md_upcall.mu_upcall_dev = NULL;
495         m->md_upcall.mu_upcall = NULL;
496         cfs_up_write(&m->md_upcall.mu_upcall_sem);
497 }
498
499 static inline int md_do_upcall(const struct lu_env *env, struct md_device *m,
500                                enum md_upcall_event ev, void *data)
501 {
502         int rc = 0;
503         cfs_down_read(&m->md_upcall.mu_upcall_sem);
504         if (m->md_upcall.mu_upcall_dev != NULL &&
505             m->md_upcall.mu_upcall_dev->md_upcall.mu_upcall != NULL) {
506                 rc = m->md_upcall.mu_upcall_dev->md_upcall.mu_upcall(env,
507                                               m->md_upcall.mu_upcall_dev,
508                                               ev, data);
509         }
510         cfs_up_read(&m->md_upcall.mu_upcall_sem);
511         return rc;
512 }
513
514 struct md_object {
515         struct lu_object                   mo_lu;
516         const struct md_object_operations *mo_ops;
517         const struct md_dir_operations    *mo_dir_ops;
518 };
519
520 /**
521  * md-server site.
522  */
523 struct md_site {
524         struct lu_site ms_lu;
525         /**
526          * mds number of this site.
527          */
528         mdsno_t               ms_node_id;
529         /**
530          * Fid location database
531          */
532         struct lu_server_fld *ms_server_fld;
533         struct lu_client_fld *ms_client_fld;
534
535         /**
536          * Server Seq Manager
537          */
538         struct lu_server_seq *ms_server_seq;
539
540         /**
541          * Controller Seq Manager
542          */
543         struct lu_server_seq *ms_control_seq;
544         struct obd_export    *ms_control_exp;
545
546         /**
547          * Client Seq Manager
548          */
549         struct lu_client_seq *ms_client_seq;
550 };
551
552 static inline int lu_device_is_md(const struct lu_device *d)
553 {
554         return ergo(d != NULL, d->ld_type->ldt_tags & LU_DEVICE_MD);
555 }
556
557 static inline struct md_device *lu2md_dev(const struct lu_device *d)
558 {
559         LASSERT(IS_ERR(d) || lu_device_is_md(d));
560         return container_of0(d, struct md_device, md_lu_dev);
561 }
562
563 static inline struct lu_device *md2lu_dev(struct md_device *d)
564 {
565         return &d->md_lu_dev;
566 }
567
568 static inline struct md_object *lu2md(const struct lu_object *o)
569 {
570         LASSERT(o == NULL || IS_ERR(o) || lu_device_is_md(o->lo_dev));
571         return container_of0(o, struct md_object, mo_lu);
572 }
573
574 static inline struct md_object *md_object_next(const struct md_object *obj)
575 {
576         return (obj ? lu2md(lu_object_next(&obj->mo_lu)) : NULL);
577 }
578
579 static inline struct md_device *md_obj2dev(const struct md_object *o)
580 {
581         LASSERT(o == NULL || IS_ERR(o) || lu_device_is_md(o->mo_lu.lo_dev));
582         return container_of0(o->mo_lu.lo_dev, struct md_device, md_lu_dev);
583 }
584
585 static inline struct md_site *lu_site2md(const struct lu_site *s)
586 {
587         return container_of0(s, struct md_site, ms_lu);
588 }
589
590 static inline int md_device_init(struct md_device *md, struct lu_device_type *t)
591 {
592         return lu_device_init(&md->md_lu_dev, t);
593 }
594
595 static inline void md_device_fini(struct md_device *md)
596 {
597         lu_device_fini(&md->md_lu_dev);
598 }
599
600 static inline struct md_object *md_object_find_slice(const struct lu_env *env,
601                                                      struct md_device *md,
602                                                      const struct lu_fid *f)
603 {
604         return lu2md(lu_object_find_slice(env, md2lu_dev(md), f, NULL));
605 }
606
607
608 /** md operations */
609 static inline int mo_permission(const struct lu_env *env,
610                                 struct md_object *p,
611                                 struct md_object *c,
612                                 struct md_attr *at,
613                                 int mask)
614 {
615         LASSERT(c->mo_ops->moo_permission);
616         return c->mo_ops->moo_permission(env, p, c, at, mask);
617 }
618
619 static inline int mo_attr_get(const struct lu_env *env,
620                               struct md_object *m,
621                               struct md_attr *at)
622 {
623         LASSERT(m->mo_ops->moo_attr_get);
624         return m->mo_ops->moo_attr_get(env, m, at);
625 }
626
627 static inline int mo_readlink(const struct lu_env *env,
628                               struct md_object *m,
629                               struct lu_buf *buf)
630 {
631         LASSERT(m->mo_ops->moo_readlink);
632         return m->mo_ops->moo_readlink(env, m, buf);
633 }
634
635 static inline int mo_changelog(const struct lu_env *env,
636                                enum changelog_rec_type type,
637                                int flags, struct md_object *m)
638 {
639         LASSERT(m->mo_ops->moo_changelog);
640         return m->mo_ops->moo_changelog(env, type, flags, m);
641 }
642
643 static inline int mo_attr_set(const struct lu_env *env,
644                               struct md_object *m,
645                               const struct md_attr *at)
646 {
647         LASSERT(m->mo_ops->moo_attr_set);
648         return m->mo_ops->moo_attr_set(env, m, at);
649 }
650
651 static inline int mo_xattr_get(const struct lu_env *env,
652                                struct md_object *m,
653                                struct lu_buf *buf,
654                                const char *name)
655 {
656         LASSERT(m->mo_ops->moo_xattr_get);
657         return m->mo_ops->moo_xattr_get(env, m, buf, name);
658 }
659
660 static inline int mo_xattr_del(const struct lu_env *env,
661                                struct md_object *m,
662                                const char *name)
663 {
664         LASSERT(m->mo_ops->moo_xattr_del);
665         return m->mo_ops->moo_xattr_del(env, m, name);
666 }
667
668 static inline int mo_xattr_set(const struct lu_env *env,
669                                struct md_object *m,
670                                const struct lu_buf *buf,
671                                const char *name,
672                                int flags)
673 {
674         LASSERT(m->mo_ops->moo_xattr_set);
675         return m->mo_ops->moo_xattr_set(env, m, buf, name, flags);
676 }
677
678 static inline int mo_xattr_list(const struct lu_env *env,
679                                 struct md_object *m,
680                                 struct lu_buf *buf)
681 {
682         LASSERT(m->mo_ops->moo_xattr_list);
683         return m->mo_ops->moo_xattr_list(env, m, buf);
684 }
685
686 static inline int mo_open(const struct lu_env *env,
687                           struct md_object *m,
688                           int flags)
689 {
690         LASSERT(m->mo_ops->moo_open);
691         return m->mo_ops->moo_open(env, m, flags);
692 }
693
694 static inline int mo_close(const struct lu_env *env,
695                            struct md_object *m,
696                            struct md_attr *ma)
697 {
698         LASSERT(m->mo_ops->moo_close);
699         return m->mo_ops->moo_close(env, m, ma);
700 }
701
702 static inline int mo_readpage(const struct lu_env *env,
703                               struct md_object *m,
704                               const struct lu_rdpg *rdpg)
705 {
706         LASSERT(m->mo_ops->moo_readpage);
707         return m->mo_ops->moo_readpage(env, m, rdpg);
708 }
709
710 static inline int mo_object_create(const struct lu_env *env,
711                                    struct md_object *m,
712                                    const struct md_op_spec *spc,
713                                    struct md_attr *at)
714 {
715         LASSERT(m->mo_ops->moo_object_create);
716         return m->mo_ops->moo_object_create(env, m, spc, at);
717 }
718
719 static inline int mo_ref_add(const struct lu_env *env,
720                              struct md_object *m,
721                              const struct md_attr *ma)
722 {
723         LASSERT(m->mo_ops->moo_ref_add);
724         return m->mo_ops->moo_ref_add(env, m, ma);
725 }
726
727 static inline int mo_ref_del(const struct lu_env *env,
728                              struct md_object *m,
729                              struct md_attr *ma)
730 {
731         LASSERT(m->mo_ops->moo_ref_del);
732         return m->mo_ops->moo_ref_del(env, m, ma);
733 }
734
735 static inline int mo_capa_get(const struct lu_env *env,
736                               struct md_object *m,
737                               struct lustre_capa *c,
738                               int renewal)
739 {
740         LASSERT(m->mo_ops->moo_capa_get);
741         return m->mo_ops->moo_capa_get(env, m, c, renewal);
742 }
743
744 static inline int mo_path(const struct lu_env *env, struct md_object *m,
745                           char *path, int pathlen, __u64 *recno, int *linkno)
746 {
747         if (m->mo_ops->moo_path == NULL)
748                 return -ENOSYS;
749         return m->mo_ops->moo_path(env, m, path, pathlen, recno, linkno);
750 }
751
752 static inline int mo_object_sync(const struct lu_env *env, struct md_object *m)
753 {
754         LASSERT(m->mo_ops->moo_object_sync);
755         return m->mo_ops->moo_object_sync(env, m);
756 }
757
758 static inline dt_obj_version_t mo_version_get(const struct lu_env *env,
759                                               struct md_object *m)
760 {
761         LASSERT(m->mo_ops->moo_version_get);
762         return m->mo_ops->moo_version_get(env, m);
763 }
764
765 static inline void mo_version_set(const struct lu_env *env,
766                                   struct md_object *m, dt_obj_version_t ver)
767 {
768         LASSERT(m->mo_ops->moo_version_set);
769         return m->mo_ops->moo_version_set(env, m, ver);
770 }
771
772 static inline int mo_file_lock(const struct lu_env *env, struct md_object *m,
773                                struct lov_mds_md *lmm,
774                                struct ldlm_extent *extent,
775                                struct lustre_handle *lockh)
776 {
777         LASSERT(m->mo_ops->moo_file_lock);
778         return m->mo_ops->moo_file_lock(env, m, lmm, extent, lockh);
779 }
780
781 static inline int mo_file_unlock(const struct lu_env *env, struct md_object *m,
782                                  struct lov_mds_md *lmm,
783                                  struct lustre_handle *lockh)
784 {
785         LASSERT(m->mo_ops->moo_file_unlock);
786         return m->mo_ops->moo_file_unlock(env, m, lmm, lockh);
787 }
788
789 static inline int mdo_lookup(const struct lu_env *env,
790                              struct md_object *p,
791                              const struct lu_name *lname,
792                              struct lu_fid *f,
793                              struct md_op_spec *spec)
794 {
795         LASSERT(p->mo_dir_ops->mdo_lookup);
796         return p->mo_dir_ops->mdo_lookup(env, p, lname, f, spec);
797 }
798
799 static inline mdl_mode_t mdo_lock_mode(const struct lu_env *env,
800                                        struct md_object *mo,
801                                        mdl_mode_t lm)
802 {
803         if (mo->mo_dir_ops->mdo_lock_mode == NULL)
804                 return MDL_MINMODE;
805         return mo->mo_dir_ops->mdo_lock_mode(env, mo, lm);
806 }
807
808 static inline int mdo_create(const struct lu_env *env,
809                              struct md_object *p,
810                              const struct lu_name *lchild_name,
811                              struct md_object *c,
812                              struct md_op_spec *spc,
813                              struct md_attr *at)
814 {
815         LASSERT(c->mo_dir_ops->mdo_create);
816         return c->mo_dir_ops->mdo_create(env, p, lchild_name, c, spc, at);
817 }
818
819 static inline int mdo_create_data(const struct lu_env *env,
820                                   struct md_object *p,
821                                   struct md_object *c,
822                                   const struct md_op_spec *spec,
823                                   struct md_attr *ma)
824 {
825         LASSERT(c->mo_dir_ops->mdo_create_data);
826         return c->mo_dir_ops->mdo_create_data(env, p, c, spec, ma);
827 }
828
829 static inline int mdo_rename(const struct lu_env *env,
830                              struct md_object *sp,
831                              struct md_object *tp,
832                              const struct lu_fid *lf,
833                              const struct lu_name *lsname,
834                              struct md_object *t,
835                              const struct lu_name *ltname,
836                              struct md_attr *ma)
837 {
838         LASSERT(tp->mo_dir_ops->mdo_rename);
839         return tp->mo_dir_ops->mdo_rename(env, sp, tp, lf, lsname, t, ltname,
840                                           ma);
841 }
842
843 static inline int mdo_is_subdir(const struct lu_env *env,
844                                 struct md_object *mo,
845                                 const struct lu_fid *fid,
846                                 struct lu_fid *sfid)
847 {
848         LASSERT(mo->mo_dir_ops->mdo_is_subdir);
849         return mo->mo_dir_ops->mdo_is_subdir(env, mo, fid, sfid);
850 }
851
852 static inline int mdo_link(const struct lu_env *env,
853                            struct md_object *p,
854                            struct md_object *s,
855                            const struct lu_name *lname,
856                            struct md_attr *ma)
857 {
858         LASSERT(s->mo_dir_ops->mdo_link);
859         return s->mo_dir_ops->mdo_link(env, p, s, lname, ma);
860 }
861
862 static inline int mdo_unlink(const struct lu_env *env,
863                              struct md_object *p,
864                              struct md_object *c,
865                              const struct lu_name *lname,
866                              struct md_attr *ma)
867 {
868         LASSERT(c->mo_dir_ops->mdo_unlink);
869         return c->mo_dir_ops->mdo_unlink(env, p, c, lname, ma);
870 }
871
872 static inline int mdo_name_insert(const struct lu_env *env,
873                                   struct md_object *p,
874                                   const struct lu_name *lname,
875                                   const struct lu_fid *f,
876                                   const struct md_attr *ma)
877 {
878         LASSERT(p->mo_dir_ops->mdo_name_insert);
879         return p->mo_dir_ops->mdo_name_insert(env, p, lname, f, ma);
880 }
881
882 static inline int mdo_name_remove(const struct lu_env *env,
883                                   struct md_object *p,
884                                   const struct lu_name *lname,
885                                   const struct md_attr *ma)
886 {
887         LASSERT(p->mo_dir_ops->mdo_name_remove);
888         return p->mo_dir_ops->mdo_name_remove(env, p, lname, ma);
889 }
890
891 static inline int mdo_rename_tgt(const struct lu_env *env,
892                                  struct md_object *p,
893                                  struct md_object *t,
894                                  const struct lu_fid *lf,
895                                  const struct lu_name *lname,
896                                  struct md_attr *ma)
897 {
898         if (t) {
899                 LASSERT(t->mo_dir_ops->mdo_rename_tgt);
900                 return t->mo_dir_ops->mdo_rename_tgt(env, p, t, lf, lname, ma);
901         } else {
902                 LASSERT(p->mo_dir_ops->mdo_rename_tgt);
903                 return p->mo_dir_ops->mdo_rename_tgt(env, p, t, lf, lname, ma);
904         }
905 }
906
907 struct dt_device;
908 /**
909  * Structure to hold object information. This is used to create object
910  * \pre llod_dir exist
911  */
912 struct lu_local_obj_desc {
913         const char                      *llod_dir;
914         const char                      *llod_name;
915         __u32                            llod_oid;
916         int                              llod_is_index;
917         const struct dt_index_features  *llod_feat;
918         cfs_list_t                       llod_linkage;
919 };
920
921 struct md_object *llo_store_resolve(const struct lu_env *env,
922                                     struct md_device *md,
923                                     struct dt_device *dt,
924                                     const char *path,
925                                     struct lu_fid *fid);
926
927 struct md_object *llo_store_open(const struct lu_env *env,
928                                  struct md_device *md,
929                                  struct dt_device *dt,
930                                  const char *dirname,
931                                  const char *objname,
932                                  struct lu_fid *fid);
933
934 struct md_object *llo_store_create_index(const struct lu_env *env,
935                                          struct md_device *md,
936                                          struct dt_device *dt,
937                                          const char *dirname,
938                                          const char *objname,
939                                          const struct lu_fid *fid,
940                                          const struct dt_index_features *feat);
941
942 struct md_object *llo_store_create(const struct lu_env *env,
943                                    struct md_device *md,
944                                    struct dt_device *dt,
945                                    const char *dirname,
946                                    const char *objname,
947                                    const struct lu_fid *fid);
948
949 void llo_local_obj_register(struct lu_local_obj_desc *);
950 void llo_local_obj_unregister(struct lu_local_obj_desc *);
951
952 int llo_local_objects_setup(const struct lu_env *env,
953                              struct md_device * md,
954                              struct dt_device * dt);
955
956 /** @} md */
957 #endif /* _LINUX_MD_OBJECT_H */