Whamcloud - gitweb
733b7df4cf908f942247275801775061463c54e3
[fs/lustre-release.git] / lustre / mdt / mdt_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/mdt/mdt_internal.h
5  *  Lustre Metadata Target (mdt) request handler
6  *
7  *  Copyright (c) 2006 Cluster File Systems, Inc.
8  *   Author: Peter Braam <braam@clusterfs.com>
9  *   Author: Andreas Dilger <adilger@clusterfs.com>
10  *   Author: Phil Schwan <phil@clusterfs.com>
11  *   Author: Mike Shaver <shaver@clusterfs.com>
12  *   Author: Nikita Danilov <nikita@clusterfs.com>
13  *   Author: Huang Hua <huanghua@clusterfs.com>
14  *
15  *   This file is part of the Lustre file system, http://www.lustre.org
16  *   Lustre is a trademark of Cluster File Systems, Inc.
17  *
18  *   You may have signed or agreed to another license before downloading
19  *   this software.  If so, you are bound by the terms and conditions
20  *   of that agreement, and the following does not apply to you.  See the
21  *   LICENSE file included with this distribution for more information.
22  *
23  *   If you did not agree to a different license, then this copy of Lustre
24  *   is open source software; you can redistribute it and/or modify it
25  *   under the terms of version 2 of the GNU General Public License as
26  *   published by the Free Software Foundation.
27  *
28  *   In either case, Lustre is distributed in the hope that it will be
29  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
30  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31  *   license text for more details.
32  */
33
34 #ifndef _MDT_INTERNAL_H
35 #define _MDT_INTERNAL_H
36
37 #if defined(__KERNEL__)
38
39 /*
40  * struct ptlrpc_client
41  */
42 #include <lustre_net.h>
43 #include <obd.h>
44 /*
45  * struct obd_connect_data
46  * struct lustre_handle
47  */
48 #include <lustre/lustre_idl.h>
49 #include <md_object.h>
50 #include <dt_object.h>
51 #include <lustre_fid.h>
52 #include <lustre_fld.h>
53 #include <lustre_req_layout.h>
54 /* LR_CLIENT_SIZE, etc. */
55 #include <lustre_disk.h>
56 #include <lustre_sec.h>
57 #include <lvfs.h>
58
59
60 /* Data stored per client in the last_rcvd file.  In le32 order. */
61 struct mdt_client_data {
62         __u8  mcd_uuid[40];     /* client UUID */
63         __u64 mcd_last_transno; /* last completed transaction ID */
64         __u64 mcd_last_xid;     /* xid for the last transaction */
65         __u32 mcd_last_result;  /* result from last RPC */
66         __u32 mcd_last_data;    /* per-op data (disposition for open &c.) */
67         /* for MDS_CLOSE requests */
68         __u64 mcd_last_close_transno; /* last completed transaction ID */
69         __u64 mcd_last_close_xid;     /* xid for the last transaction */
70         __u32 mcd_last_close_result;  /* result from last RPC */
71         __u8 mcd_padding[LR_CLIENT_SIZE - 84];
72 };
73
74 static inline __u64 mcd_last_transno(struct mdt_client_data *mcd)
75 {
76         return max(mcd->mcd_last_transno, mcd->mcd_last_close_transno);
77 }
78
79 static inline __u64 mcd_last_xid(struct mdt_client_data *mcd)
80 {
81         return max(mcd->mcd_last_xid, mcd->mcd_last_close_xid);
82 }
83
84 /* check if request's xid is equal to last one or not*/
85 static inline int req_xid_is_last(struct ptlrpc_request *req)
86 {
87         struct mdt_client_data *mcd = req->rq_export->exp_mdt_data.med_mcd;
88         return (req->rq_xid == mcd->mcd_last_xid ||
89                 req->rq_xid == mcd->mcd_last_close_xid);
90 }
91
92 /* copied from lr_server_data.
93  * mds data stored at the head of last_rcvd file. In le32 order. */
94 struct mdt_server_data {
95         __u8  msd_uuid[40];        /* server UUID */
96         __u64 msd_last_transno;    /* last completed transaction ID */
97         __u64 msd_mount_count;     /* incarnation number */
98         __u32 msd_feature_compat;  /* compatible feature flags */
99         __u32 msd_feature_rocompat;/* read-only compatible feature flags */
100         __u32 msd_feature_incompat;/* incompatible feature flags */
101         __u32 msd_server_size;     /* size of server data area */
102         __u32 msd_client_start;    /* start of per-client data area */
103         __u16 msd_client_size;     /* size of per-client data area */
104         //__u16 msd_subdir_count;    /* number of subdirectories for objects */
105         //__u64 msd_catalog_oid;     /* recovery catalog object id */
106         //__u32 msd_catalog_ogen;    /* recovery catalog inode generation */
107         //__u8  msd_peeruuid[40];    /* UUID of MDS associated with this OST */
108         //__u32 msd_ost_index;       /* index number of OST in LOV */
109         //__u32 msd_mdt_index;       /* index number of MDT in LMV */
110         __u8  msd_padding[LR_SERVER_SIZE - 78];
111 };
112
113 struct mdt_object;
114 /* file data for open files on MDS */
115 struct mdt_file_data {
116         struct portals_handle mfd_handle; /* must be first */
117         struct list_head      mfd_list;   /* protected by med_open_lock */
118         __u64                 mfd_xid;    /* xid of the open request */
119         int                   mfd_mode;   /* open mode provided by client */
120         struct mdt_object    *mfd_object; /* point to opened object */
121 };
122
123 struct mdt_device {
124         /* super-class */
125         struct md_device           mdt_md_dev;
126         struct ptlrpc_service     *mdt_regular_service;
127         struct ptlrpc_service     *mdt_readpage_service;
128         struct ptlrpc_service     *mdt_setattr_service;
129         struct ptlrpc_service     *mdt_mdsc_service;
130         struct ptlrpc_service     *mdt_mdss_service;
131         struct ptlrpc_service     *mdt_dtss_service;
132         struct ptlrpc_service     *mdt_fld_service;
133         /* DLM name-space for meta-data locks maintained by this server */
134         struct ldlm_namespace     *mdt_namespace;
135         /* ptlrpc handle for MDS->client connections (for lock ASTs). */
136         struct ptlrpc_client      *mdt_ldlm_client;
137         /* underlying device */
138         struct md_device          *mdt_child;
139         struct dt_device          *mdt_bottom;
140         /*
141          * Options bit-fields.
142          */
143         struct {
144                 signed int         mo_user_xattr :1,
145                                    mo_acl        :1,
146                                    mo_compat_resname:1,
147                                    mo_mds_capa   :1,
148                                    mo_oss_capa   :1;
149         } mdt_opts;
150
151         /* lock to pretect epoch and write count */
152         spinlock_t                 mdt_ioepoch_lock;
153         __u64                      mdt_ioepoch;
154
155         /* Transaction related stuff here */
156         spinlock_t                 mdt_transno_lock;
157         __u64                      mdt_last_transno;
158
159         /* transaction callbacks */
160         struct dt_txn_callback     mdt_txn_cb;
161         /* last_rcvd file */
162         struct dt_object          *mdt_last_rcvd;
163
164         /* these values should be updated from lov if necessary.
165          * or should be placed somewhere else. */
166         int                        mdt_max_mdsize;
167         int                        mdt_max_cookiesize;
168         __u64                      mdt_mount_count;
169
170         /* last_rcvd data */
171         struct mdt_server_data     mdt_msd;
172         spinlock_t                 mdt_client_bitmap_lock;
173         unsigned long              mdt_client_bitmap[(LR_MAX_CLIENTS >> 3) / sizeof(long)];
174
175         struct upcall_cache        *mdt_identity_cache;
176         struct upcall_cache        *mdt_rmtacl_cache;
177
178         /* root squash */
179         struct rootsquash_info     *mdt_rootsquash_info;
180
181         /* capability keys */
182         unsigned long              mdt_capa_timeout;
183         __u32                      mdt_capa_alg;
184         struct dt_object          *mdt_ck_obj;
185         unsigned long              mdt_ck_timeout;
186         unsigned long              mdt_ck_expiry;
187         struct timer_list          mdt_ck_timer;
188         struct ptlrpc_thread       mdt_ck_thread;
189         struct lustre_capa_key     mdt_capa_keys[2];
190         unsigned int               mdt_capa_conf:1;
191
192         cfs_proc_dir_entry_t      *mdt_proc_entry;
193         struct lprocfs_stats      *mdt_stats;
194 };
195
196 /*XXX copied from mds_internal.h */
197 #define MDT_SERVICE_WATCHDOG_TIMEOUT (obd_timeout * 1000)
198 #define MDT_ROCOMPAT_SUPP       (OBD_ROCOMPAT_LOVOBJID)
199 #define MDT_INCOMPAT_SUPP       (OBD_INCOMPAT_MDT | OBD_INCOMPAT_COMMON_LR)
200
201 struct mdt_object {
202         struct lu_object_header mot_header;
203         struct md_object        mot_obj;
204         __u64                   mot_ioepoch;
205         __u64                   mot_flags;
206         int                     mot_epochcount;
207         int                     mot_writecount;
208 };
209
210 struct mdt_lock_handle {
211         /* Lock type, reg for cross-ref use or pdo lock. */
212         mdl_type_t              mlh_type;
213
214         /* Regular lock */
215         struct lustre_handle    mlh_reg_lh;
216         ldlm_mode_t             mlh_reg_mode;
217
218         /* Pdirops lock */
219         struct lustre_handle    mlh_pdo_lh;
220         ldlm_mode_t             mlh_pdo_mode;
221         unsigned int            mlh_pdo_hash;
222 };
223
224 enum {
225         MDT_LH_PARENT, /* parent lockh */
226         MDT_LH_CHILD,  /* child lockh */
227         MDT_LH_OLD,    /* old lockh for rename */
228         MDT_LH_NEW,    /* new lockh for rename */
229         MDT_LH_RMT,    /* used for return lh to caller */
230         MDT_LH_NR
231 };
232
233 enum {
234         MDT_LOCAL_LOCK,
235         MDT_CROSS_LOCK
236 };
237
238 struct mdt_reint_record {
239         mdt_reint_t             rr_opcode;
240         const struct lu_fid    *rr_fid1;
241         const struct lu_fid    *rr_fid2;
242         const char             *rr_name;
243         int                     rr_namelen;
244         const char             *rr_tgt;
245         int                     rr_tgtlen;
246         const void             *rr_eadata;
247         int                     rr_eadatalen;
248         int                     rr_logcookielen;
249         const struct llog_cookie  *rr_logcookies;
250         __u32                   rr_flags;
251 };
252
253 enum mdt_reint_flag {
254         MRF_SETATTR_LOCKED = 1 << 0,
255 };
256
257 enum {
258         MDT_NONEED_TRANSNO = (1 << 0) /*Do not need transno for this req*/
259 };
260
261 /*
262  * Common data shared by mdt-level handlers. This is allocated per-thread to
263  * reduce stack consumption.
264  */
265 struct mdt_thread_info {
266         /*
267          * XXX: Part One:
268          * The following members will be filled expilictly
269          * with specific data in mdt_thread_info_init().
270          */
271
272         /*
273          * for req-layout interface. This field should be first to be compatible
274          * with "struct com_thread_info" in seq and fld.
275          */
276         struct req_capsule         mti_pill;
277         /*
278          * number of buffers in reply message.
279          */
280         int                        mti_rep_buf_nr;
281         /*
282          * sizes of reply buffers.
283          */
284         int                        mti_rep_buf_size[REQ_MAX_FIELD_NR];
285         /*
286          * A couple of lock handles.
287          */
288         struct mdt_lock_handle     mti_lh[MDT_LH_NR];
289
290         struct mdt_device         *mti_mdt;
291         const struct lu_env       *mti_env;
292
293         /*
294          * Additional fail id that can be set by handler. Passed to
295          * target_send_reply().
296          */
297         int                        mti_fail_id;
298
299         /* transaction number of current request */
300         __u64                      mti_transno;
301
302
303         /*
304          * XXX: Part Two:
305          * The following members will be filled expilictly
306          * with zero in mdt_thread_info_init(). These members may be used
307          * by all requests.
308          */
309
310         /*
311          * Object attributes.
312          */
313         struct md_attr             mti_attr;
314         /*
315          * Body for "habeo corpus" operations.
316          */
317         const struct mdt_body     *mti_body;
318         /*
319          * Host object. This is released at the end of mdt_handler().
320          */
321         struct mdt_object         *mti_object;
322         /*
323          * Lock request for "habeo clavis" operations.
324          */
325         const struct ldlm_request *mti_dlm_req;
326
327         __u32                      mti_has_trans:1, /* has txn already? */
328                                    mti_no_need_trans:1,
329                                    mti_cross_ref:1;
330
331         /* opdata for mdt_reint_open(), has the same as
332          * ldlm_reply:lock_policy_res1.  mdt_update_last_rcvd() stores this
333          * value onto disk for recovery when mdt_trans_stop_cb() is called.
334          */
335         __u64                      mti_opdata;
336
337         /*
338          * XXX: Part Three:
339          * The following members will be filled expilictly
340          * with zero in mdt_reint_unpack(), because they are only used
341          * by reint requests (including mdt_reint_open()).
342          */
343
344         /*
345          * reint record. contains information for reint operations.
346          */
347         struct mdt_reint_record    mti_rr;
348         
349         /*
350          * Operation specification (currently create and lookup)
351          */
352         struct md_op_spec          mti_spec;
353
354         /*
355          * XXX: Part Four:
356          * The following members will _NOT_ be initialized at all.
357          * DO NOT expect them to contain any valid value.
358          * They should be initialized explicitly by the user themselves.
359          */
360
361          /* XXX: If something is in a union, make sure they do not conflict */
362
363         struct lu_fid              mti_tmp_fid1;
364         struct lu_fid              mti_tmp_fid2;
365         ldlm_policy_data_t         mti_policy;    /* for mdt_object_lock() and
366                                                    * mdt_rename_lock() */
367         struct ldlm_res_id         mti_res_id;    /* for mdt_object_lock() and
368                                                      mdt_rename_lock()   */
369         union {
370                 struct obd_uuid    uuid[2];       /* for mdt_seq_init_cli()  */
371                 char               ns_name[48];   /* for mdt_init0()         */
372                 struct lustre_cfg_bufs bufs;      /* for mdt_stack_fini()    */
373                 struct kstatfs     ksfs;          /* for mdt_statfs()        */
374                 struct {
375                         /* for mdt_readpage()      */
376                         struct lu_rdpg     mti_rdpg;
377                         /* for mdt_sendpage()      */
378                         struct l_wait_info mti_wait_info;
379                 } rdpg;
380         } mti_u;
381
382         /* IO epoch related stuff. */
383         struct mdt_epoch          *mti_epoch;
384         __u64                      mti_replayepoch;
385
386         /* server and client data buffers */
387         struct mdt_server_data     mti_msd;
388         struct mdt_client_data     mti_mcd;
389         loff_t                     mti_off;
390         struct txn_param           mti_txn_param;
391         struct lu_buf              mti_buf;
392         struct lustre_capa_key     mti_capa_key;
393
394         /* Time for stats */
395         struct timeval             mti_time;
396
397         /* Ops object filename */
398         struct lu_name             mti_name;
399 };
400 /*
401  * Info allocated per-transaction.
402  */
403 struct mdt_txn_info {
404         __u64  txi_transno;
405 };
406
407 static inline struct md_device_operations *mdt_child_ops(struct mdt_device * m)
408 {
409         LASSERT(m->mdt_child);
410         return m->mdt_child->md_ops;
411 }
412
413 static inline struct md_object *mdt_object_child(struct mdt_object *o)
414 {
415         return lu2md(lu_object_next(&o->mot_obj.mo_lu));
416 }
417
418 static inline struct ptlrpc_request *mdt_info_req(struct mdt_thread_info *info)
419 {
420          return info->mti_pill.rc_req;
421 }
422
423 static inline void mdt_object_get(const struct lu_env *env,
424                                   struct mdt_object *o)
425 {
426         ENTRY;
427         lu_object_get(&o->mot_obj.mo_lu);
428         EXIT;
429 }
430
431 static inline void mdt_object_put(const struct lu_env *env,
432                                   struct mdt_object *o)
433 {
434         ENTRY;
435         lu_object_put(env, &o->mot_obj.mo_lu);
436         EXIT;
437 }
438
439 static inline int mdt_object_exists(const struct mdt_object *o)
440 {
441         return lu_object_exists(&o->mot_obj.mo_lu);
442 }
443
444 static inline const struct lu_fid *mdt_object_fid(struct mdt_object *o)
445 {
446         return lu_object_fid(&o->mot_obj.mo_lu);
447 }
448
449 int mdt_get_disposition(struct ldlm_reply *rep, int flag);
450 void mdt_set_disposition(struct mdt_thread_info *info,
451                         struct ldlm_reply *rep, int flag);
452 void mdt_clear_disposition(struct mdt_thread_info *info,
453                         struct ldlm_reply *rep, int flag);
454
455 void mdt_lock_pdo_init(struct mdt_lock_handle *lh,
456                        ldlm_mode_t lm, const char *name,
457                        int namelen);
458
459 void mdt_lock_reg_init(struct mdt_lock_handle *lh,
460                        ldlm_mode_t lm);
461
462 int mdt_lock_setup(struct mdt_thread_info *info,
463                    struct mdt_object *o,
464                    struct mdt_lock_handle *lh);
465
466 int mdt_object_lock(struct mdt_thread_info *,
467                     struct mdt_object *,
468                     struct mdt_lock_handle *,
469                     __u64, int);
470
471 void mdt_object_unlock(struct mdt_thread_info *,
472                        struct mdt_object *,
473                        struct mdt_lock_handle *,
474                        int decref);
475
476 struct mdt_object *mdt_object_find(const struct lu_env *,
477                                    struct mdt_device *,
478                                    const struct lu_fid *);
479 struct mdt_object *mdt_object_find_lock(struct mdt_thread_info *,
480                                         const struct lu_fid *,
481                                         struct mdt_lock_handle *,
482                                         __u64);
483 void mdt_object_unlock_put(struct mdt_thread_info *,
484                            struct mdt_object *,
485                            struct mdt_lock_handle *,
486                            int decref);
487
488 int mdt_close_unpack(struct mdt_thread_info *info);
489 int mdt_reint_unpack(struct mdt_thread_info *info, __u32 op);
490 int mdt_reint_rec(struct mdt_thread_info *, struct mdt_lock_handle *);
491 void mdt_pack_size2body(struct mdt_body *b, const struct lu_attr *attr,
492                         struct mdt_object *o);
493 void mdt_pack_attr2body(struct mdt_thread_info *info, struct mdt_body *b,
494                         const struct lu_attr *attr, const struct lu_fid *fid);
495
496 int mdt_getxattr(struct mdt_thread_info *info);
497 int mdt_setxattr(struct mdt_thread_info *info);
498
499 void mdt_lock_handle_init(struct mdt_lock_handle *lh);
500 void mdt_lock_handle_fini(struct mdt_lock_handle *lh);
501
502 void mdt_reconstruct(struct mdt_thread_info *, struct mdt_lock_handle *);
503
504 int mdt_fs_setup(const struct lu_env *, struct mdt_device *,
505                  struct obd_device *);
506 void mdt_fs_cleanup(const struct lu_env *, struct mdt_device *);
507
508 int mdt_client_del(const struct lu_env *env,
509                     struct mdt_device *mdt,
510                     struct mdt_export_data *med);
511 int mdt_client_add(const struct lu_env *env,
512                    struct mdt_device *mdt,
513                    struct mdt_export_data *med,
514                    int cl_idx);
515 int mdt_client_new(const struct lu_env *env,
516                    struct mdt_device *mdt,
517                    struct mdt_export_data *med);
518
519 int mdt_recovery_handle(struct ptlrpc_request *);
520
521 int mdt_pin(struct mdt_thread_info* info);
522
523 int mdt_lock_new_child(struct mdt_thread_info *info,
524                        struct mdt_object *o,
525                        struct mdt_lock_handle *child_lockh);
526
527 int mdt_reint_open(struct mdt_thread_info *info,
528                    struct mdt_lock_handle *lhc);
529
530 struct mdt_file_data *mdt_handle2mfd(const struct lustre_handle *handle);
531 int mdt_epoch_open(struct mdt_thread_info *info, struct mdt_object *o);
532 void mdt_sizeonmds_enable(struct mdt_thread_info *info, struct mdt_object *mo);
533 int mdt_sizeonmds_enabled(struct mdt_object *mo);
534 int mdt_write_get(struct mdt_device *mdt, struct mdt_object *o);
535 struct mdt_file_data *mdt_mfd_new(void);
536 int mdt_mfd_close(struct mdt_thread_info *info, struct mdt_file_data *mfd);
537 void mdt_mfd_free(struct mdt_file_data *mfd);
538 int mdt_close(struct mdt_thread_info *info);
539 int mdt_attr_set(struct mdt_thread_info *info, struct mdt_object *mo,
540                  int flags);
541 int mdt_done_writing(struct mdt_thread_info *info);
542 void mdt_shrink_reply(struct mdt_thread_info *info, int offset,
543                       int mdscapa, int osscapa);
544 int mdt_handle_last_unlink(struct mdt_thread_info *, struct mdt_object *,
545                            const struct md_attr *);
546 void mdt_reconstruct_open(struct mdt_thread_info *, struct mdt_lock_handle *);
547 struct thandle* mdt_trans_start(const struct lu_env *env,
548                                 struct mdt_device *mdt, int credits);
549 void mdt_trans_stop(const struct lu_env *env,
550                     struct mdt_device *mdt, struct thandle *th);
551 int mdt_record_write(const struct lu_env *env,
552                      struct dt_object *dt, const struct lu_buf *buf,
553                      loff_t *pos, struct thandle *th);
554 int mdt_record_read(const struct lu_env *env,
555                     struct dt_object *dt, struct lu_buf *buf, loff_t *pos);
556
557 struct lu_buf *mdt_buf(const struct lu_env *env, void *area, ssize_t len);
558 const struct lu_buf *mdt_buf_const(const struct lu_env *env,
559                                    const void *area, ssize_t len);
560
561 void mdt_dump_lmm(int level, const struct lov_mds_md *lmm);
562
563 int mdt_check_ucred(struct mdt_thread_info *);
564
565 int mdt_init_ucred(struct mdt_thread_info *, struct mdt_body *);
566
567 int mdt_init_ucred_reint(struct mdt_thread_info *);
568
569 void mdt_exit_ucred(struct mdt_thread_info *);
570
571 int groups_from_list(struct group_info *, gid_t *);
572
573 void groups_sort(struct group_info *);
574
575 /* mdt_idmap.c */
576 int mdt_init_idmap(struct mdt_thread_info *);
577
578 void mdt_cleanup_idmap(struct mdt_export_data *);
579
580 int mdt_handle_idmap(struct mdt_thread_info *);
581
582 int ptlrpc_user_desc_do_idmap(struct ptlrpc_request *,
583                               struct ptlrpc_user_desc *);
584
585 void mdt_body_reverse_idmap(struct mdt_thread_info *,
586                             struct mdt_body *);
587
588 int mdt_remote_perm_reverse_idmap(struct ptlrpc_request *,
589                                   struct mdt_remote_perm *);
590
591 int mdt_fix_attr_ucred(struct mdt_thread_info *, __u32);
592
593 static inline struct mdt_device *mdt_dev(struct lu_device *d)
594 {
595 //        LASSERT(lu_device_is_mdt(d));
596         return container_of0(d, struct mdt_device, mdt_md_dev.md_lu_dev);
597 }
598
599 /* mdt/mdt_identity.c */
600 #define MDT_IDENTITY_UPCALL_PATH        "/usr/sbin/l_getidentity"
601
602 extern struct upcall_cache_ops mdt_identity_upcall_cache_ops;
603
604 struct mdt_identity *mdt_identity_get(struct upcall_cache *, __u32);
605
606 void mdt_identity_put(struct upcall_cache *, struct mdt_identity *);
607
608 void mdt_flush_identity(struct upcall_cache *, int);
609
610 __u32 mdt_identity_get_setxid_perm(struct mdt_identity *, __u32, lnet_nid_t);
611
612 int mdt_pack_remote_perm(struct mdt_thread_info *, struct mdt_object *, void *);
613
614 /* mdt/mdt_rmtacl.c */
615 #define MDT_RMTACL_UPCALL_PATH          "/usr/sbin/l_facl"
616
617 extern struct upcall_cache_ops mdt_rmtacl_upcall_cache_ops;
618
619 int mdt_rmtacl_upcall(struct mdt_thread_info *, char *, struct lu_buf *);
620
621 extern struct lu_context_key       mdt_thread_key;
622 /* debug issues helper starts here*/
623 static inline void mdt_fail_write(const struct lu_env *env,
624                                   struct dt_device *dd, int id)
625 {
626         if (OBD_FAIL_CHECK(id)) {
627                 CERROR(LUSTRE_MDT_NAME": obd_fail_loc=%x, fail write ops\n",
628                        id);
629                 dd->dd_ops->dt_ro(env, dd);
630                 /* We set FAIL_ONCE because we never "un-fail" a device */
631                 obd_fail_loc |= OBD_FAILED | OBD_FAIL_ONCE;
632         }
633 }
634
635 static inline struct mdt_export_data *mdt_req2med(struct ptlrpc_request *req)
636 {
637         return &req->rq_export->exp_mdt_data;
638 }
639
640 #define MDT_FAIL_CHECK(id)                                              \
641 ({                                                                      \
642         if (OBD_FAIL_CHECK(id))                                         \
643                 CERROR(LUSTRE_MDT_NAME": " #id " test failed\n");      \
644         OBD_FAIL_CHECK(id);                                             \
645 })
646
647 #define MDT_FAIL_CHECK_ONCE(id)                                              \
648 ({      int _ret_ = 0;                                                       \
649         if (OBD_FAIL_CHECK(id)) {                                            \
650                 CERROR(LUSTRE_MDT_NAME": *** obd_fail_loc=%x ***\n", id);   \
651                 obd_fail_loc |= OBD_FAILED;                                  \
652                 if ((id) & OBD_FAIL_ONCE)                                    \
653                         obd_fail_loc |= OBD_FAIL_ONCE;                       \
654                 _ret_ = 1;                                                   \
655         }                                                                    \
656         _ret_;                                                               \
657 })
658
659 #define MDT_FAIL_RETURN(id, ret)                                             \
660 do {                                                                         \
661         if (MDT_FAIL_CHECK_ONCE(id)) {                                       \
662                 RETURN(ret);                                                 \
663         }                                                                    \
664 } while(0)
665
666 struct md_ucred *mdt_ucred(const struct mdt_thread_info *info);
667
668 static inline int is_identity_get_disabled(struct upcall_cache *cache)
669 {
670         return cache ? (strcmp(cache->uc_upcall, "NONE") == 0) : 1;
671 }
672
673 /* Issues dlm lock on passed @ns, @f stores it lock handle into @lh. */
674 static inline int mdt_fid_lock(struct ldlm_namespace *ns,
675                                struct lustre_handle *lh,
676                                ldlm_mode_t mode,
677                                ldlm_policy_data_t *policy,
678                                const struct ldlm_res_id *res_id,
679                                int flags)
680 {
681         int rc;
682
683         LASSERT(ns != NULL);
684         LASSERT(lh != NULL);
685
686         rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS, policy,
687                                     mode, &flags, ldlm_blocking_ast,
688                                     ldlm_completion_ast, NULL, NULL,
689                                     0, NULL, lh);
690         return rc == ELDLM_OK ? 0 : -EIO;
691 }
692
693 static inline void mdt_fid_unlock(struct lustre_handle *lh,
694                                   ldlm_mode_t mode)
695 {
696         ldlm_lock_decref(lh, mode);
697 }
698
699 extern mdl_mode_t mdt_mdl_lock_modes[];
700 extern ldlm_mode_t mdt_dlm_lock_modes[];
701
702 static inline mdl_mode_t mdt_dlm_mode2mdl_mode(ldlm_mode_t mode)
703 {
704         LASSERT(IS_PO2(mode));
705         return mdt_mdl_lock_modes[mode];
706 }
707
708 static inline ldlm_mode_t mdt_mdl_mode2dlm_mode(mdl_mode_t mode)
709 {
710         LASSERT(IS_PO2(mode));
711         return mdt_dlm_lock_modes[mode];
712 }
713
714 static inline struct lu_name *mdt_name(const struct lu_env *env,
715                                        char *name, int namelen)
716 {
717         struct lu_name *lname;
718         struct mdt_thread_info *mti;
719
720         mti = lu_context_key_get(&env->le_ctx, &mdt_thread_key);
721         lname = &mti->mti_name;
722         lname->ln_name = name;
723         lname->ln_namelen = namelen;
724         return lname;
725 }
726
727 /* lprocfs stuff */
728 int mdt_procfs_init(struct mdt_device *mdt, const char *name);
729 int mdt_procfs_fini(struct mdt_device *mdt);
730
731 void mdt_lprocfs_time_start(struct mdt_device *mdt,
732                             struct timeval *start, int op);
733
734 void mdt_lprocfs_time_end(struct mdt_device *mdt,
735                           struct timeval *start, int op);
736
737 enum {
738         LPROC_MDT_REINT_CREATE = 0,
739         LPROC_MDT_REINT_OPEN,
740         LPROC_MDT_REINT_LINK,
741         LPROC_MDT_REINT_UNLINK,
742         LPROC_MDT_REINT_RENAME,
743         LPROC_MDT_REINT_SETATTR,
744         LPROC_MDT_GETATTR,
745         LPROC_MDT_GETATTR_NAME,
746         LPROC_MDT_INTENT_GETATTR,
747         LPROC_MDT_INTENT_REINT,
748         LPROC_MDT_LAST
749 };
750
751 /* Capability */
752 int mdt_ck_thread_start(struct mdt_device *mdt);
753 void mdt_ck_thread_stop(struct mdt_device *mdt);
754 void mdt_ck_timer_callback(unsigned long castmeharder);
755 int mdt_capa_keys_init(const struct lu_env *env, struct mdt_device *mdt);
756
757 static inline void mdt_set_capainfo(struct mdt_thread_info *info, int offset,
758                                     const struct lu_fid *fid,
759                                     struct lustre_capa *capa)
760 {
761         struct mdt_device *dev = info->mti_mdt;
762         struct md_capainfo *ci;
763
764         if (!dev->mdt_opts.mo_mds_capa)
765                 return;
766
767         ci = md_capainfo(info->mti_env);
768         LASSERT(ci);
769         ci->mc_fid[offset]  = fid;
770         ci->mc_capa[offset] = capa;
771 }
772
773 #endif /* __KERNEL__ */
774 #endif /* _MDT_H */