Whamcloud - gitweb
b=14230
[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 #include <lustre_idmap.h>
59 #include <lustre_eacl.h>
60
61
62 /* Data stored per client in the last_rcvd file.  In le32 order. */
63 struct mdt_client_data {
64         __u8  mcd_uuid[40];     /* client UUID */
65         __u64 mcd_last_transno; /* last completed transaction ID */
66         __u64 mcd_last_xid;     /* xid for the last transaction */
67         __u32 mcd_last_result;  /* result from last RPC */
68         __u32 mcd_last_data;    /* per-op data (disposition for open &c.) */
69         /* for MDS_CLOSE and MDS_DONE_WRITTING requests */
70         __u64 mcd_last_close_transno; /* last completed transaction ID */
71         __u64 mcd_last_close_xid;     /* xid for the last transaction */
72         __u32 mcd_last_close_result;  /* result from last RPC */
73         __u8 mcd_padding[LR_CLIENT_SIZE - 84];
74 };
75
76 static inline __u64 mcd_last_transno(struct mdt_client_data *mcd)
77 {
78         return max(mcd->mcd_last_transno, mcd->mcd_last_close_transno);
79 }
80
81 static inline __u64 mcd_last_xid(struct mdt_client_data *mcd)
82 {
83         return max(mcd->mcd_last_xid, mcd->mcd_last_close_xid);
84 }
85
86 /* check if request's xid is equal to last one or not*/
87 static inline int req_xid_is_last(struct ptlrpc_request *req)
88 {
89         struct mdt_client_data *mcd = req->rq_export->exp_mdt_data.med_mcd;
90         return (req->rq_xid == mcd->mcd_last_xid ||
91                 req->rq_xid == mcd->mcd_last_close_xid);
92 }
93
94 /* copied from lr_server_data.
95  * mds data stored at the head of last_rcvd file. In le32 order. */
96 struct mdt_server_data {
97         __u8  msd_uuid[40];        /* server UUID */
98         __u64 msd_last_transno;    /* last completed transaction ID */
99         __u64 msd_mount_count;     /* incarnation number */
100         __u32 msd_feature_compat;  /* compatible feature flags */
101         __u32 msd_feature_rocompat;/* read-only compatible feature flags */
102         __u32 msd_feature_incompat;/* incompatible feature flags */
103         __u32 msd_server_size;     /* size of server data area */
104         __u32 msd_client_start;    /* start of per-client data area */
105         __u16 msd_client_size;     /* size of per-client data area */
106         //__u16 msd_subdir_count;    /* number of subdirectories for objects */
107         //__u64 msd_catalog_oid;     /* recovery catalog object id */
108         //__u32 msd_catalog_ogen;    /* recovery catalog inode generation */
109         //__u8  msd_peeruuid[40];    /* UUID of MDS associated with this OST */
110         //__u32 msd_ost_index;       /* index number of OST in LOV */
111         //__u32 msd_mdt_index;       /* index number of MDT in LMV */
112         __u8  msd_padding[LR_SERVER_SIZE - 78];
113 };
114
115 struct mdt_object;
116 /* file data for open files on MDS */
117 struct mdt_file_data {
118         struct portals_handle mfd_handle; /* must be first */
119         struct list_head      mfd_list;   /* protected by med_open_lock */
120         __u64                 mfd_xid;    /* xid of the open request */
121         struct lustre_handle  mfd_old_handle; /* old handle in replay case */
122         int                   mfd_mode;   /* open mode provided by client */
123         struct mdt_object    *mfd_object; /* point to opened object */
124 };
125
126 struct mdt_device {
127         /* super-class */
128         struct md_device           mdt_md_dev;
129         struct ptlrpc_service     *mdt_regular_service;
130         struct ptlrpc_service     *mdt_readpage_service;
131         struct ptlrpc_service     *mdt_xmds_service;
132         struct ptlrpc_service     *mdt_setattr_service;
133         struct ptlrpc_service     *mdt_mdsc_service;
134         struct ptlrpc_service     *mdt_mdss_service;
135         struct ptlrpc_service     *mdt_dtss_service;
136         struct ptlrpc_service     *mdt_fld_service;
137         /* DLM name-space for meta-data locks maintained by this server */
138         struct ldlm_namespace     *mdt_namespace;
139         /* ptlrpc handle for MDS->client connections (for lock ASTs). */
140         struct ptlrpc_client      *mdt_ldlm_client;
141         /* underlying device */
142         struct md_device          *mdt_child;
143         struct dt_device          *mdt_bottom;
144         /*
145          * Options bit-fields.
146          */
147         struct {
148                 signed int         mo_user_xattr :1,
149                                    mo_acl        :1,
150                                    mo_compat_resname:1,
151                                    mo_mds_capa   :1,
152                                    mo_oss_capa   :1;
153         } mdt_opts;
154         /* mdt state flags */
155         __u32                      mdt_fl_cfglog:1,
156                                    mdt_fl_synced:1;
157         /* lock to pretect epoch and write count */
158         spinlock_t                 mdt_ioepoch_lock;
159         __u64                      mdt_ioepoch;
160
161         /* Transaction related stuff here */
162         spinlock_t                 mdt_transno_lock;
163         __u64                      mdt_last_transno;
164
165         /* transaction callbacks */
166         struct dt_txn_callback     mdt_txn_cb;
167         /* last_rcvd file */
168         struct dt_object          *mdt_last_rcvd;
169
170         /* these values should be updated from lov if necessary.
171          * or should be placed somewhere else. */
172         int                        mdt_max_mdsize;
173         int                        mdt_max_cookiesize;
174         __u64                      mdt_mount_count;
175
176         /* last_rcvd data */
177         struct mdt_server_data     mdt_msd;
178         spinlock_t                 mdt_client_bitmap_lock;
179         unsigned long              mdt_client_bitmap[(LR_MAX_CLIENTS >> 3) / sizeof(long)];
180
181         struct upcall_cache        *mdt_identity_cache;
182
183         /* sptlrpc rules */
184         rwlock_t                   mdt_sptlrpc_lock;
185         struct sptlrpc_rule_set    mdt_sptlrpc_rset;
186
187         /* capability keys */
188         unsigned long              mdt_capa_timeout;
189         __u32                      mdt_capa_alg;
190         struct dt_object          *mdt_ck_obj;
191         unsigned long              mdt_ck_timeout;
192         unsigned long              mdt_ck_expiry;
193         cfs_timer_t                mdt_ck_timer;
194         struct ptlrpc_thread       mdt_ck_thread;
195         struct lustre_capa_key     mdt_capa_keys[2];
196         unsigned int               mdt_capa_conf:1;
197
198         cfs_proc_dir_entry_t      *mdt_proc_entry;
199         struct lprocfs_stats      *mdt_stats;
200 };
201
202 /*XXX copied from mds_internal.h */
203 #define MDT_SERVICE_WATCHDOG_TIMEOUT (obd_timeout * 1000)
204 #define MDT_ROCOMPAT_SUPP       (OBD_ROCOMPAT_LOVOBJID)
205 #define MDT_INCOMPAT_SUPP       (OBD_INCOMPAT_MDT | OBD_INCOMPAT_COMMON_LR)
206
207 struct mdt_object {
208         struct lu_object_header mot_header;
209         struct md_object        mot_obj;
210         __u64                   mot_ioepoch;
211         __u64                   mot_flags;
212         int                     mot_epochcount;
213         int                     mot_writecount;
214 };
215
216 struct mdt_lock_handle {
217         /* Lock type, reg for cross-ref use or pdo lock. */
218         mdl_type_t              mlh_type;
219
220         /* Regular lock */
221         struct lustre_handle    mlh_reg_lh;
222         ldlm_mode_t             mlh_reg_mode;
223
224         /* Pdirops lock */
225         struct lustre_handle    mlh_pdo_lh;
226         ldlm_mode_t             mlh_pdo_mode;
227         unsigned int            mlh_pdo_hash;
228 };
229
230 enum {
231         MDT_LH_PARENT, /* parent lockh */
232         MDT_LH_CHILD,  /* child lockh */
233         MDT_LH_OLD,    /* old lockh for rename */
234         MDT_LH_NEW,    /* new lockh for rename */
235         MDT_LH_RMT,    /* used for return lh to caller */
236         MDT_LH_NR
237 };
238
239 enum {
240         MDT_LOCAL_LOCK,
241         MDT_CROSS_LOCK
242 };
243
244 struct mdt_reint_record {
245         mdt_reint_t             rr_opcode;
246         const struct lustre_handle *rr_handle;
247         const struct lu_fid    *rr_fid1;
248         const struct lu_fid    *rr_fid2;
249         const char             *rr_name;
250         int                     rr_namelen;
251         const char             *rr_tgt;
252         int                     rr_tgtlen;
253         const void             *rr_eadata;
254         int                     rr_eadatalen;
255         int                     rr_logcookielen;
256         const struct llog_cookie  *rr_logcookies;
257         __u32                   rr_flags;
258 };
259
260 enum mdt_reint_flag {
261         MRF_SETATTR_LOCKED = 1 << 0,
262 };
263
264 /*
265  * Common data shared by mdt-level handlers. This is allocated per-thread to
266  * reduce stack consumption.
267  */
268 struct mdt_thread_info {
269         /*
270          * XXX: Part One:
271          * The following members will be filled explicitly
272          * with specific data in mdt_thread_info_init().
273          */
274         /* TODO: move this into mdt_session_key(with LCT_SESSION), because
275          * request handling may migrate from one server thread to another.
276          */
277         struct req_capsule        *mti_pill;
278
279         /* although we have export in req, there are cases when it is not
280          * available, e.g. closing files upon export destroy */
281         struct obd_export          *mti_exp;
282         /*
283          * A couple of lock handles.
284          */
285         struct mdt_lock_handle     mti_lh[MDT_LH_NR];
286
287         struct mdt_device         *mti_mdt;
288         const struct lu_env       *mti_env;
289
290         /*
291          * Additional fail id that can be set by handler. Passed to
292          * target_send_reply().
293          */
294         int                        mti_fail_id;
295
296         /* transaction number of current request */
297         __u64                      mti_transno;
298
299
300         /*
301          * XXX: Part Two:
302          * The following members will be filled expilictly
303          * with zero in mdt_thread_info_init(). These members may be used
304          * by all requests.
305          */
306
307         /*
308          * Object attributes.
309          */
310         struct md_attr             mti_attr;
311         /*
312          * Body for "habeo corpus" operations.
313          */
314         const struct mdt_body     *mti_body;
315         /*
316          * Host object. This is released at the end of mdt_handler().
317          */
318         struct mdt_object         *mti_object;
319         /*
320          * Lock request for "habeo clavis" operations.
321          */
322         const struct ldlm_request *mti_dlm_req;
323
324         __u32                      mti_has_trans:1, /* has txn already? */
325                                    mti_no_need_trans:1,
326                                    mti_cross_ref:1;
327
328         /* opdata for mdt_reint_open(), has the same as
329          * ldlm_reply:lock_policy_res1.  mdt_update_last_rcvd() stores this
330          * value onto disk for recovery when mdt_trans_stop_cb() is called.
331          */
332         __u64                      mti_opdata;
333
334         /*
335          * XXX: Part Three:
336          * The following members will be filled expilictly
337          * with zero in mdt_reint_unpack(), because they are only used
338          * by reint requests (including mdt_reint_open()).
339          */
340
341         /*
342          * reint record. contains information for reint operations.
343          */
344         struct mdt_reint_record    mti_rr;
345
346         /*
347          * Operation specification (currently create and lookup)
348          */
349         struct md_op_spec          mti_spec;
350
351         /*
352          * XXX: Part Four:
353          * The following members will _NOT_ be initialized at all.
354          * DO NOT expect them to contain any valid value.
355          * They should be initialized explicitly by the user themselves.
356          */
357
358          /* XXX: If something is in a union, make sure they do not conflict */
359
360         struct lu_fid              mti_tmp_fid1;
361         struct lu_fid              mti_tmp_fid2;
362         ldlm_policy_data_t         mti_policy;    /* for mdt_object_lock() and
363                                                    * mdt_rename_lock() */
364         struct ldlm_res_id         mti_res_id;    /* for mdt_object_lock() and
365                                                      mdt_rename_lock()   */
366         union {
367                 struct obd_uuid    uuid[2];       /* for mdt_seq_init_cli()  */
368                 char               ns_name[48];   /* for mdt_init0()         */
369                 struct lustre_cfg_bufs bufs;      /* for mdt_stack_fini()    */
370                 struct kstatfs     ksfs;          /* for mdt_statfs()        */
371                 struct {
372                         /* for mdt_readpage()      */
373                         struct lu_rdpg     mti_rdpg;
374                         /* for mdt_sendpage()      */
375                         struct l_wait_info mti_wait_info;
376                 } rdpg;
377         } mti_u;
378
379         /* IO epoch related stuff. */
380         struct mdt_epoch          *mti_epoch;
381         __u64                      mti_replayepoch;
382
383         /* server and client data buffers */
384         struct mdt_server_data     mti_msd;
385         struct mdt_client_data     mti_mcd;
386         loff_t                     mti_off;
387         struct txn_param           mti_txn_param;
388         struct lu_buf              mti_buf;
389         struct lustre_capa_key     mti_capa_key;
390
391         /* Ops object filename */
392         struct lu_name             mti_name;
393 };
394
395 typedef void (*mdt_cb_t)(const struct mdt_device *mdt, __u64 transno,
396                          void *data, int err);
397 struct mdt_commit_cb {
398         mdt_cb_t  mdt_cb_func;
399         void     *mdt_cb_data;
400 };
401
402 /*
403  * Info allocated per-transaction.
404  */
405 #define MDT_MAX_COMMIT_CB       4
406 struct mdt_txn_info {
407         __u64                 txi_transno;
408         unsigned int          txi_cb_count;
409         struct mdt_commit_cb  txi_cb[MDT_MAX_COMMIT_CB];
410 };
411
412 extern struct lu_context_key mdt_txn_key;
413
414 static inline void mdt_trans_add_cb(const struct thandle *th,
415                                     mdt_cb_t cb_func, void *cb_data) 
416 {
417         struct mdt_txn_info *txi;
418         
419         txi = lu_context_key_get(&th->th_ctx, &mdt_txn_key);
420         LASSERT(txi->txi_cb_count < ARRAY_SIZE(txi->txi_cb));
421
422         /* add new callback */
423         txi->txi_cb[txi->txi_cb_count].mdt_cb_func = cb_func;
424         txi->txi_cb[txi->txi_cb_count].mdt_cb_data = cb_data;
425         txi->txi_cb_count++;
426 }
427
428 static inline struct md_device_operations *mdt_child_ops(struct mdt_device * m)
429 {
430         LASSERT(m->mdt_child);
431         return m->mdt_child->md_ops;
432 }
433
434 static inline struct md_object *mdt_object_child(struct mdt_object *o)
435 {
436         LASSERT(o);
437         return lu2md(lu_object_next(&o->mot_obj.mo_lu));
438 }
439
440 static inline struct ptlrpc_request *mdt_info_req(struct mdt_thread_info *info)
441 {
442          return info->mti_pill ? info->mti_pill->rc_req : NULL;
443 }
444
445 static inline __u64 mdt_conn_flags(struct mdt_thread_info *info)
446 {
447         LASSERT(info->mti_exp);
448         return info->mti_exp->exp_connect_flags;
449 }
450
451 static inline void mdt_object_get(const struct lu_env *env,
452                                   struct mdt_object *o)
453 {
454         ENTRY;
455         lu_object_get(&o->mot_obj.mo_lu);
456         EXIT;
457 }
458
459 static inline void mdt_object_put(const struct lu_env *env,
460                                   struct mdt_object *o)
461 {
462         ENTRY;
463         lu_object_put(env, &o->mot_obj.mo_lu);
464         EXIT;
465 }
466
467 static inline int mdt_object_exists(const struct mdt_object *o)
468 {
469         return lu_object_exists(&o->mot_obj.mo_lu);
470 }
471
472 static inline const struct lu_fid *mdt_object_fid(struct mdt_object *o)
473 {
474         return lu_object_fid(&o->mot_obj.mo_lu);
475 }
476
477 int mdt_get_disposition(struct ldlm_reply *rep, int flag);
478 void mdt_set_disposition(struct mdt_thread_info *info,
479                         struct ldlm_reply *rep, int flag);
480 void mdt_clear_disposition(struct mdt_thread_info *info,
481                         struct ldlm_reply *rep, int flag);
482
483 void mdt_lock_pdo_init(struct mdt_lock_handle *lh,
484                        ldlm_mode_t lm, const char *name,
485                        int namelen);
486
487 void mdt_lock_reg_init(struct mdt_lock_handle *lh,
488                        ldlm_mode_t lm);
489
490 int mdt_lock_setup(struct mdt_thread_info *info,
491                    struct mdt_object *o,
492                    struct mdt_lock_handle *lh);
493
494 int mdt_object_lock(struct mdt_thread_info *,
495                     struct mdt_object *,
496                     struct mdt_lock_handle *,
497                     __u64, int);
498
499 void mdt_object_unlock(struct mdt_thread_info *,
500                        struct mdt_object *,
501                        struct mdt_lock_handle *,
502                        int decref);
503
504 struct mdt_object *mdt_object_find(const struct lu_env *,
505                                    struct mdt_device *,
506                                    const struct lu_fid *);
507 struct mdt_object *mdt_object_find_lock(struct mdt_thread_info *,
508                                         const struct lu_fid *,
509                                         struct mdt_lock_handle *,
510                                         __u64);
511 void mdt_object_unlock_put(struct mdt_thread_info *,
512                            struct mdt_object *,
513                            struct mdt_lock_handle *,
514                            int decref);
515
516 int mdt_close_unpack(struct mdt_thread_info *info);
517 int mdt_reint_unpack(struct mdt_thread_info *info, __u32 op);
518 int mdt_reint_rec(struct mdt_thread_info *, struct mdt_lock_handle *);
519 void mdt_pack_size2body(struct mdt_thread_info *info,
520                         struct mdt_object *o);
521 void mdt_pack_attr2body(struct mdt_thread_info *info, struct mdt_body *b,
522                         const struct lu_attr *attr, const struct lu_fid *fid);
523
524 int mdt_getxattr(struct mdt_thread_info *info);
525 int mdt_reint_setxattr(struct mdt_thread_info *info,
526                        struct mdt_lock_handle *lh);
527
528 void mdt_lock_handle_init(struct mdt_lock_handle *lh);
529 void mdt_lock_handle_fini(struct mdt_lock_handle *lh);
530
531 void mdt_reconstruct(struct mdt_thread_info *, struct mdt_lock_handle *);
532 void mdt_reconstruct_generic(struct mdt_thread_info *mti,
533                              struct mdt_lock_handle *lhc);
534
535 extern void target_recovery_fini(struct obd_device *obd);
536 extern void target_recovery_init(struct obd_device *obd,
537                                  svc_handler_t handler);
538 int mdt_fs_setup(const struct lu_env *, struct mdt_device *,
539                  struct obd_device *);
540 void mdt_fs_cleanup(const struct lu_env *, struct mdt_device *);
541
542 int mdt_client_del(const struct lu_env *env,
543                     struct mdt_device *mdt);
544 int mdt_client_add(const struct lu_env *env,
545                    struct mdt_device *mdt,
546                    int cl_idx);
547 int mdt_client_new(const struct lu_env *env,
548                    struct mdt_device *mdt);
549
550 int mdt_pin(struct mdt_thread_info* info);
551
552 int mdt_lock_new_child(struct mdt_thread_info *info,
553                        struct mdt_object *o,
554                        struct mdt_lock_handle *child_lockh);
555
556 void mdt_mfd_set_mode(struct mdt_file_data *mfd,
557                       int mode);
558
559 int mdt_reint_open(struct mdt_thread_info *info,
560                    struct mdt_lock_handle *lhc);
561
562 struct mdt_file_data *mdt_handle2mfd(struct mdt_thread_info *,
563                                      const struct lustre_handle *);
564 int mdt_epoch_open(struct mdt_thread_info *info, struct mdt_object *o);
565 void mdt_sizeonmds_enable(struct mdt_thread_info *info, struct mdt_object *mo);
566 int mdt_sizeonmds_enabled(struct mdt_object *mo);
567 int mdt_write_get(struct mdt_device *mdt, struct mdt_object *o);
568 int mdt_write_read(struct mdt_device *mdt, struct mdt_object *o);
569 struct mdt_file_data *mdt_mfd_new(void);
570 int mdt_mfd_close(struct mdt_thread_info *info, struct mdt_file_data *mfd);
571 void mdt_mfd_free(struct mdt_file_data *mfd);
572 int mdt_close(struct mdt_thread_info *info);
573 int mdt_attr_set(struct mdt_thread_info *info, struct mdt_object *mo,
574                  int flags);
575 int mdt_done_writing(struct mdt_thread_info *info);
576 void mdt_shrink_reply(struct mdt_thread_info *info);
577 int mdt_handle_last_unlink(struct mdt_thread_info *, struct mdt_object *,
578                            const struct md_attr *);
579 void mdt_reconstruct_open(struct mdt_thread_info *, struct mdt_lock_handle *);
580 struct thandle* mdt_trans_start(const struct lu_env *env,
581                                 struct mdt_device *mdt, int credits);
582 void mdt_trans_stop(const struct lu_env *env,
583                     struct mdt_device *mdt, struct thandle *th);
584 int mdt_record_write(const struct lu_env *env,
585                      struct dt_object *dt, const struct lu_buf *buf,
586                      loff_t *pos, struct thandle *th);
587 int mdt_record_read(const struct lu_env *env,
588                     struct dt_object *dt, struct lu_buf *buf, loff_t *pos);
589
590 struct lu_buf *mdt_buf(const struct lu_env *env, void *area, ssize_t len);
591 const struct lu_buf *mdt_buf_const(const struct lu_env *env,
592                                    const void *area, ssize_t len);
593
594 void mdt_dump_lmm(int level, const struct lov_mds_md *lmm);
595
596 int mdt_check_ucred(struct mdt_thread_info *);
597 int mdt_init_ucred(struct mdt_thread_info *, struct mdt_body *);
598 int mdt_init_ucred_reint(struct mdt_thread_info *);
599 void mdt_exit_ucred(struct mdt_thread_info *);
600
601 /* mdt_idmap.c */
602 int mdt_init_idmap(struct mdt_thread_info *);
603
604 void mdt_cleanup_idmap(struct mdt_export_data *);
605
606 int mdt_handle_idmap(struct mdt_thread_info *);
607
608 int ptlrpc_user_desc_do_idmap(struct ptlrpc_request *,
609                               struct ptlrpc_user_desc *);
610
611 void mdt_body_reverse_idmap(struct mdt_thread_info *,
612                             struct mdt_body *);
613
614 int mdt_remote_perm_reverse_idmap(struct ptlrpc_request *,
615                                   struct mdt_remote_perm *);
616
617 int mdt_fix_attr_ucred(struct mdt_thread_info *, __u32);
618
619 static inline struct mdt_device *mdt_dev(struct lu_device *d)
620 {
621 //        LASSERT(lu_device_is_mdt(d));
622         return container_of0(d, struct mdt_device, mdt_md_dev.md_lu_dev);
623 }
624
625 /* mdt/mdt_identity.c */
626 #define MDT_IDENTITY_UPCALL_PATH        "/usr/sbin/l_getidentity"
627
628 extern struct upcall_cache_ops mdt_identity_upcall_cache_ops;
629
630 struct md_identity *mdt_identity_get(struct upcall_cache *, __u32);
631
632 void mdt_identity_put(struct upcall_cache *, struct md_identity *);
633
634 void mdt_flush_identity(struct upcall_cache *, int);
635
636 __u32 mdt_identity_get_perm(struct md_identity *, __u32, lnet_nid_t);
637
638 int mdt_pack_remote_perm(struct mdt_thread_info *, struct mdt_object *, void *);
639
640 extern struct lu_context_key       mdt_thread_key;
641 /* debug issues helper starts here*/
642 static inline void mdt_fail_write(const struct lu_env *env,
643                                   struct dt_device *dd, int id)
644 {
645         if (OBD_FAIL_CHECK_ORSET(id, OBD_FAIL_ONCE)) {
646                 CERROR(LUSTRE_MDT_NAME": obd_fail_loc=%x, fail write ops\n",
647                        id);
648                 dd->dd_ops->dt_ro(env, dd);
649                 /* We set FAIL_ONCE because we never "un-fail" a device */
650         }
651 }
652
653 static inline struct mdt_export_data *mdt_req2med(struct ptlrpc_request *req)
654 {
655         return &req->rq_export->exp_mdt_data;
656 }
657
658 typedef void (*mdt_reconstruct_t)(struct mdt_thread_info *mti,
659                                   struct mdt_lock_handle *lhc);
660 static inline int mdt_check_resent(struct mdt_thread_info *info,
661                                    mdt_reconstruct_t reconstruct,
662                                    struct mdt_lock_handle *lhc)
663 {
664         struct ptlrpc_request *req = mdt_info_req(info);
665         ENTRY;
666
667         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {
668                 if (req_xid_is_last(req)) {
669                         reconstruct(info, lhc);
670                         RETURN(1);
671                 }
672                 DEBUG_REQ(D_HA, req, "no reply for RESENT req (have "LPD64")",
673                           req->rq_export->exp_mdt_data.med_mcd->mcd_last_xid);
674         }
675         RETURN(0);
676 }
677
678 struct md_ucred *mdt_ucred(const struct mdt_thread_info *info);
679
680 static inline int is_identity_get_disabled(struct upcall_cache *cache)
681 {
682         return cache ? (strcmp(cache->uc_upcall, "NONE") == 0) : 1;
683 }
684
685 /* Issues dlm lock on passed @ns, @f stores it lock handle into @lh. */
686 static inline int mdt_fid_lock(struct ldlm_namespace *ns,
687                                struct lustre_handle *lh,
688                                ldlm_mode_t mode,
689                                ldlm_policy_data_t *policy,
690                                const struct ldlm_res_id *res_id,
691                                int flags)
692 {
693         int rc;
694
695         LASSERT(ns != NULL);
696         LASSERT(lh != NULL);
697
698         rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS, policy,
699                                     mode, &flags, ldlm_blocking_ast,
700                                     ldlm_completion_ast, NULL, NULL,
701                                     0, NULL, lh);
702         return rc == ELDLM_OK ? 0 : -EIO;
703 }
704
705 static inline void mdt_fid_unlock(struct lustre_handle *lh,
706                                   ldlm_mode_t mode)
707 {
708         ldlm_lock_decref(lh, mode);
709 }
710
711 extern mdl_mode_t mdt_mdl_lock_modes[];
712 extern ldlm_mode_t mdt_dlm_lock_modes[];
713
714 static inline mdl_mode_t mdt_dlm_mode2mdl_mode(ldlm_mode_t mode)
715 {
716         LASSERT(IS_PO2(mode));
717         return mdt_mdl_lock_modes[mode];
718 }
719
720 static inline ldlm_mode_t mdt_mdl_mode2dlm_mode(mdl_mode_t mode)
721 {
722         LASSERT(IS_PO2(mode));
723         return mdt_dlm_lock_modes[mode];
724 }
725
726 static inline struct lu_name *mdt_name(const struct lu_env *env,
727                                        char *name, int namelen)
728 {
729         struct lu_name *lname;
730         struct mdt_thread_info *mti;
731
732         LASSERT(namelen > 0);
733         /* trailing '\0' in buffer */
734         LASSERT(name[namelen] == '\0');
735
736         mti = lu_context_key_get(&env->le_ctx, &mdt_thread_key);
737         lname = &mti->mti_name;
738         lname->ln_name = name;
739         lname->ln_namelen = namelen;
740         return lname;
741 }
742
743 static inline struct lu_name *mdt_name_copy(struct lu_name *tlname,
744                                             struct lu_name *slname)
745 {
746         LASSERT(tlname);
747         LASSERT(slname);
748
749         tlname->ln_name = slname->ln_name;
750         tlname->ln_namelen = slname->ln_namelen;
751         return tlname;
752 }
753
754 /* lprocfs stuff */
755 void lprocfs_mdt_init_vars(struct lprocfs_static_vars *lvars);
756 int mdt_procfs_init(struct mdt_device *mdt, const char *name);
757 int mdt_procfs_fini(struct mdt_device *mdt);
758
759 void mdt_time_start(const struct mdt_thread_info *info);
760 void mdt_time_end(const struct mdt_thread_info *info, int idx);
761
762 enum {
763         LPROC_MDT_NR
764 };
765
766 /* Capability */
767 int mdt_ck_thread_start(struct mdt_device *mdt);
768 void mdt_ck_thread_stop(struct mdt_device *mdt);
769 void mdt_ck_timer_callback(unsigned long castmeharder);
770 int mdt_capa_keys_init(const struct lu_env *env, struct mdt_device *mdt);
771
772 static inline void mdt_set_capainfo(struct mdt_thread_info *info, int offset,
773                                     const struct lu_fid *fid,
774                                     struct lustre_capa *capa)
775 {
776         struct mdt_device *dev = info->mti_mdt;
777         struct md_capainfo *ci;
778
779         LASSERT(offset >= 0 && offset <= MD_CAPAINFO_MAX);
780         if (!dev->mdt_opts.mo_mds_capa)
781                 return;
782
783         ci = md_capainfo(info->mti_env);
784         LASSERT(ci);
785         ci->mc_fid[offset]  = fid;
786         ci->mc_capa[offset] = capa;
787 }
788
789 static inline void mdt_dump_capainfo(struct mdt_thread_info *info)
790 {
791         struct md_capainfo *ci = md_capainfo(info->mti_env);
792         int i;
793
794         if (!ci)
795                 return;
796         for (i = 0; i < MD_CAPAINFO_MAX; i++) {
797                 if (!ci->mc_fid[i])
798                         continue;
799                 if (!ci->mc_capa[i]) {
800                         CERROR("no capa for index %d "DFID"\n",
801                                i, PFID(ci->mc_fid[i]));
802                         continue;
803                 }
804                 if (ci->mc_capa[i] == BYPASS_CAPA) {
805                         CERROR("bypass for index %d "DFID"\n",
806                                i, PFID(ci->mc_fid[i]));
807                         continue;
808                 }
809                 DEBUG_CAPA(D_ERROR, ci->mc_capa[i], "index %d", i);
810         }
811 }
812
813 #endif /* __KERNEL__ */
814 #endif /* _MDT_H */