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