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