Whamcloud - gitweb
- make HEAD from b_post_cmd3
[fs/lustre-release.git] / lustre / mds / mds_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4
5 #ifndef _MDS_INTERNAL_H
6 #define _MDS_INTERNAL_H
7
8 #include <lustre_disk.h>
9 #include <lustre_mds.h>
10
11 #define MDT_ROCOMPAT_SUPP       (OBD_ROCOMPAT_LOVOBJID)
12 #define MDT_INCOMPAT_SUPP       (OBD_INCOMPAT_MDT | OBD_INCOMPAT_COMMON_LR)
13
14 /* Data stored per client in the last_rcvd file.  In le32 order. */
15 struct mds_client_data {
16         __u8 mcd_uuid[40];      /* client UUID */
17         __u64 mcd_last_transno; /* last completed transaction ID */
18         __u64 mcd_last_xid;     /* xid for the last transaction */
19         __u32 mcd_last_result;  /* result from last RPC */
20         __u32 mcd_last_data;    /* per-op data (disposition for open &c.) */
21         /* for MDS_CLOSE requests */
22         __u64 mcd_last_close_transno; /* last completed transaction ID */
23         __u64 mcd_last_close_xid;     /* xid for the last transaction */
24         __u32 mcd_last_close_result;  /* result from last RPC */
25         __u32 mcd_last_close_data;  /* per-op data (disposition for open &c.) */
26         __u8 mcd_padding[LR_CLIENT_SIZE - 88];
27 };
28
29 #define MDS_SERVICE_WATCHDOG_TIMEOUT (obd_timeout * 1000)
30
31 #define MAX_ATIME_DIFF 60
32
33 struct mds_filter_data {
34         __u64 io_epoch;
35 };
36
37 #define MDS_FILTERDATA(inode) ((struct mds_filter_data *)(inode)->i_filterdata)
38
39 static inline struct mds_obd *mds_req2mds(struct ptlrpc_request *req)
40 {
41         return &req->rq_export->exp_obd->u.mds;
42 }
43
44 #ifdef __KERNEL__
45 /* Open counts for files.  No longer atomic, must hold inode->i_sem */
46 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
47 # define mds_inode_oatomic(inode)    ((inode)->i_cindex)
48 #else
49 # define mds_inode_oatomic(inode)    ((inode)->i_attr_flags)
50 #endif
51
52 #ifdef HAVE_I_ALLOC_SEM
53 #define MDS_UP_READ_ORPHAN_SEM(i)          UP_READ_I_ALLOC_SEM(i)
54 #define MDS_DOWN_READ_ORPHAN_SEM(i)        DOWN_READ_I_ALLOC_SEM(i)
55 #define LASSERT_MDS_ORPHAN_READ_LOCKED(i)  LASSERT_I_ALLOC_SEM_READ_LOCKED(i)
56
57 #define MDS_UP_WRITE_ORPHAN_SEM(i)         UP_WRITE_I_ALLOC_SEM(i)
58 #define MDS_DOWN_WRITE_ORPHAN_SEM(i)       DOWN_WRITE_I_ALLOC_SEM(i)
59 #define LASSERT_MDS_ORPHAN_WRITE_LOCKED(i) LASSERT_I_ALLOC_SEM_WRITE_LOCKED(i)
60 #define MDS_PACK_MD_LOCK 1
61 #else
62 #define MDS_UP_READ_ORPHAN_SEM(i)          do { up(&(i)->i_sem); } while (0)
63 #define MDS_DOWN_READ_ORPHAN_SEM(i)        do { down(&(i)->i_sem); } while (0)
64 #define LASSERT_MDS_ORPHAN_READ_LOCKED(i)  LASSERT(down_trylock(&(i)->i_sem)!=0)
65
66 #define MDS_UP_WRITE_ORPHAN_SEM(i)         do { up(&(i)->i_sem); } while (0)
67 #define MDS_DOWN_WRITE_ORPHAN_SEM(i)       do { down(&(i)->i_sem); } while (0)
68 #define LASSERT_MDS_ORPHAN_WRITE_LOCKED(i) LASSERT(down_trylock(&(i)->i_sem)!=0)
69 #define MDS_PACK_MD_LOCK 0
70 #endif
71
72 static inline int mds_orphan_open_count(struct inode *inode)
73 {
74         LASSERT_MDS_ORPHAN_READ_LOCKED(inode);
75         return mds_inode_oatomic(inode);
76 }
77
78 static inline int mds_orphan_open_inc(struct inode *inode)
79 {
80         LASSERT_MDS_ORPHAN_WRITE_LOCKED(inode);
81         return ++mds_inode_oatomic(inode);
82 }
83
84 static inline int mds_orphan_open_dec_test(struct inode *inode)
85 {
86         LASSERT_MDS_ORPHAN_WRITE_LOCKED(inode);
87         return --mds_inode_oatomic(inode) == 0;
88 }
89
90 #define mds_inode_is_orphan(inode)  ((inode)->i_flags & 0x4000000)
91
92 static inline void mds_inode_set_orphan(struct inode *inode)
93 {
94         inode->i_flags |= 0x4000000;
95         CDEBUG(D_VFSTRACE, "setting orphan flag on inode %p\n", inode);
96 }
97
98 static inline void mds_inode_unset_orphan(struct inode *inode)
99 {
100         inode->i_flags &= ~(0x4000000);
101         CDEBUG(D_VFSTRACE, "removing orphan flag from inode %p\n", inode);
102 }
103
104 #endif /* __KERNEL__ */
105
106 #define MDS_CHECK_RESENT(req, reconstruct)                                    \
107 {                                                                             \
108         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {              \
109                 struct mds_client_data *mcd =                                 \
110                         req->rq_export->exp_mds_data.med_mcd;                 \
111                 if (le64_to_cpu(mcd->mcd_last_xid) == req->rq_xid) {          \
112                         reconstruct;                                          \
113                         RETURN(le32_to_cpu(mcd->mcd_last_result));            \
114                 }                                                             \
115                 if (le64_to_cpu(mcd->mcd_last_close_xid) == req->rq_xid) {    \
116                         reconstruct;                                          \
117                         RETURN(le32_to_cpu(mcd->mcd_last_close_result));      \
118                 }                                                             \
119                 DEBUG_REQ(D_HA, req, "no reply for RESENT req (have "LPD64")",\
120                           mcd->mcd_last_xid);                                 \
121         }                                                                     \
122 }
123
124 /* mds/mds_reint.c */
125 int res_gt(const struct ldlm_res_id *res1, const struct ldlm_res_id *res2,
126            ldlm_policy_data_t *p1, ldlm_policy_data_t *p2);
127 int enqueue_ordered_locks(struct obd_device *obd,
128                           const struct ldlm_res_id *p1_res_id,
129                           struct lustre_handle *p1_lockh, int p1_lock_mode,
130                           ldlm_policy_data_t *p1_policy,
131                           const struct ldlm_res_id *p2_res_id,
132                           struct lustre_handle *p2_lockh, int p2_lock_mode,
133                           ldlm_policy_data_t *p2_policy);
134 void mds_commit_cb(struct obd_device *, __u64 last_rcvd, void *data, int error);
135 int mds_finish_transno(struct mds_obd *mds, struct inode *inode, void *handle,
136                        struct ptlrpc_request *req, int rc, __u32 op_data,
137                        int force_sync);
138 void mds_reconstruct_generic(struct ptlrpc_request *req);
139 void mds_req_from_mcd(struct ptlrpc_request *req, struct mds_client_data *mcd);
140 int mds_get_parent_child_locked(struct obd_device *obd, struct mds_obd *mds,
141                                 struct ll_fid *fid,
142                                 struct lustre_handle *parent_lockh,
143                                 struct dentry **dparentp, int parent_mode,
144                                 __u64 parent_lockpart,
145                                 char *name, int namelen,
146                                 struct lustre_handle *child_lockh,
147                                 struct dentry **dchildp, int child_mode,
148                                 __u64 child_lockpart);
149 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
150                        struct lustre_handle *child_lockh);
151
152 int mds_get_parents_children_locked(struct obd_device *obd,
153                                     struct mds_obd *mds,
154                                     struct ll_fid *p1_fid,
155                                     struct dentry **de_srcdirp,
156                                     struct ll_fid *p2_fid,
157                                     struct dentry **de_tgtdirp,
158                                     int parent_mode,
159                                     const char *old_name, int old_len,
160                                     struct dentry **de_oldp,
161                                     const char *new_name, int new_len,
162                                     struct dentry **de_newp,
163                                     struct lustre_handle *dlm_handles,
164                                     int child_mode);
165
166 void mds_shrink_reply(struct obd_device *obd, struct ptlrpc_request *req,
167                       struct mds_body *body, int md_off);
168 int mds_get_cookie_size(struct obd_device *obd, struct lov_mds_md *lmm);
169 /* mds/mds_lib.c */
170 int mds_update_unpack(struct ptlrpc_request *, int offset,
171                       struct mds_update_record *);
172 int mds_init_ucred(struct lvfs_ucred *ucred, struct ptlrpc_request *req,
173                    int offset);
174 void mds_exit_ucred(struct lvfs_ucred *ucred, struct mds_obd *obd);
175
176 /* mds/mds_unlink_open.c */
177 int mds_osc_destroy_orphan(struct obd_device *obd, umode_t mode,
178                            struct lov_mds_md *lmm, int lmm_size,
179                            struct llog_cookie *logcookies, int log_unlink);
180 int mds_cleanup_pending(struct obd_device *obd);
181
182
183 /* mds/mds_log.c */
184 int mds_llog_init(struct obd_device *obd, struct obd_llogs *llogs,
185                   struct obd_device *tgt, int count,
186                   struct llog_catid *logid, struct obd_uuid *uuid);
187 int mds_llog_finish(struct obd_device *obd, int count);
188
189 /* mds/mds_lov.c */
190 int mds_lov_connect(struct obd_device *obd, char * lov_name);
191 int mds_lov_disconnect(struct obd_device *obd);
192 int mds_lov_write_objids(struct obd_device *obd);
193 int mds_lov_clear_orphans(struct mds_obd *mds, struct obd_uuid *ost_uuid);
194 void mds_lov_update_objids(struct obd_device *obd, obd_id *ids);
195 int mds_lov_set_nextid(struct obd_device *obd);
196 int mds_lov_start_synchronize(struct obd_device *obd,
197                               struct obd_device *watched,
198                               void *data, int nonblock);
199 int mds_post_mds_lovconf(struct obd_device *obd);
200 int mds_notify(struct obd_device *obd, struct obd_device *watched,
201                enum obd_notify_event ev, void *data);
202 int mds_convert_lov_ea(struct obd_device *obd, struct inode *inode,
203                        struct lov_mds_md *lmm, int lmm_size);
204 void mds_objids_from_lmm(obd_id *ids, struct lov_mds_md *lmm,
205                          struct lov_desc *desc);
206 int mds_init_lov_desc(struct obd_device *obd, struct obd_export *osc_exp);
207
208 /* mds/mds_open.c */
209 int mds_query_write_access(struct inode *inode);
210 int mds_open(struct mds_update_record *rec, int offset,
211              struct ptlrpc_request *req, struct lustre_handle *);
212 int mds_pin(struct ptlrpc_request *req, int offset);
213 void mds_mfd_unlink(struct mds_file_data *mfd, int decref);
214 int mds_mfd_close(struct ptlrpc_request *req, int offset,struct obd_device *obd,
215                   struct mds_file_data *mfd, int unlink_orphan,
216                   struct lov_mds_md *lmm, int lmm_size,
217                   struct llog_cookie *logcookies, int cookies_size,
218                   __u64 *valid);
219 int mds_close(struct ptlrpc_request *req, int offset);
220 int mds_done_writing(struct ptlrpc_request *req, int offset);
221
222 /*mds/mds_join.c*/
223 int mds_join_file(struct mds_update_record *rec, struct ptlrpc_request *req,
224                   struct dentry *dchild, struct lustre_handle *lockh);
225
226 /* mds/mds_fs.c */
227 int mds_client_add(struct obd_device *obd, struct obd_export *exp, int cl_off);
228 int mds_client_free(struct obd_export *exp);
229 int mds_obd_create(struct obd_export *exp, struct obdo *oa,
230                    struct lov_stripe_md **ea, struct obd_trans_info *oti);
231 int mds_obd_destroy(struct obd_export *exp, struct obdo *oa,
232                     struct lov_stripe_md *ea, struct obd_trans_info *oti,
233                     struct obd_export *md_exp);
234 void mds_init_ctxt(struct obd_device *obd, struct vfsmount *mnt);
235
236 /* mds/handler.c */
237 extern struct lvfs_callback_ops mds_lvfs_ops;
238 extern int mds_iocontrol(unsigned int cmd, struct obd_export *exp,
239                          int len, void *karg, void *uarg);
240 int mds_postrecov(struct obd_device *obd);
241 int mds_init_export(struct obd_export *exp);
242 #ifdef __KERNEL__
243 int mds_get_md(struct obd_device *, struct inode *, void *md, int *size,
244                int lock);
245 int mds_pack_md(struct obd_device *, struct lustre_msg *, int offset,
246                 struct mds_body *, struct inode *, int lock);
247 void mds_pack_inode2fid(struct ll_fid *fid, struct inode *inode);
248 void mds_pack_inode2body(struct mds_body *body, struct inode *inode);
249 #endif
250 int mds_pack_acl(struct mds_export_data *med, struct inode *inode,
251                  struct lustre_msg *repmsg, struct mds_body *repbody,
252                  int repoff);
253
254 /* quota stuff */
255 extern quota_interface_t *mds_quota_interface_ref;
256
257 /* mds/mds_xattr.c */
258 int mds_setxattr(struct ptlrpc_request *req);
259 int mds_getxattr(struct ptlrpc_request *req);
260
261 /* mds/lproc_mds.c */
262 enum {
263         LPROC_MDS_OPEN = 0,
264         LPROC_MDS_CLOSE,
265         LPROC_MDS_MKNOD,
266         LPROC_MDS_LINK,
267         LPROC_MDS_UNLINK,
268         LPROC_MDS_MKDIR,
269         LPROC_MDS_RMDIR,
270         LPROC_MDS_RENAME,
271         LPROC_MDS_GETXATTR,
272         LPROC_MDS_SETXATTR,
273         LPROC_MDS_LAST,
274 };
275 void mds_counter_incr(struct obd_export *exp, int opcode);
276 void mds_stats_counter_init(struct lprocfs_stats *stats);
277
278 #endif /* _MDS_INTERNAL_H */