Whamcloud - gitweb
land b_hd_sec onto HEAD:
[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 <linux/lustre_mds.h>
9
10 #define MDS_SERVICE_WATCHDOG_TIMEOUT 30000
11
12 #define MAX_ATIME_DIFF 60
13
14 struct mds_filter_data {
15         __u64 io_epoch;
16 };
17
18 #define MDS_FILTERDATA(inode) ((struct mds_filter_data *)(inode)->i_filterdata)
19 #define DENTRY_VALID(dentry)    \
20         ((dentry)->d_inode || ((dentry)->d_flags & DCACHE_CROSS_REF))
21
22 #define MDS_NO_SPLIT_EXPECTED   0
23 #define MDS_EXPECT_SPLIT        1
24 #define MDS_NO_SPLITTABLE       2
25
26 static inline struct mds_obd *mds_req2mds(struct ptlrpc_request *req)
27 {
28         return &req->rq_export->exp_obd->u.mds;
29 }
30 static inline struct obd_device *req2obd(struct ptlrpc_request *req)
31 {
32         return req->rq_export->exp_obd;
33 }
34
35 #ifdef __KERNEL__
36 /* Open counts for files.  No longer atomic, must hold inode->i_sem */
37 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
38 # define mds_inode_oatomic(inode)    ((inode)->i_cindex)
39 #else
40 # define mds_inode_oatomic(inode)    ((inode)->i_attr_flags)
41 #endif
42
43 static inline int mds_orphan_open_count(struct inode *inode)
44 {
45         LASSERT_MDS_ORPHAN_READ_LOCKED(inode);
46         return mds_inode_oatomic(inode);
47 }
48
49 static inline int mds_orphan_open_inc(struct inode *inode)
50 {
51         LASSERT_MDS_ORPHAN_WRITE_LOCKED(inode);
52         return ++mds_inode_oatomic(inode);
53 }
54
55 static inline int mds_orphan_open_dec_test(struct inode *inode)
56 {
57         LASSERT_MDS_ORPHAN_WRITE_LOCKED(inode);
58         return --mds_inode_oatomic(inode) == 0;
59 }
60
61 #define mds_inode_is_orphan(inode)  ((inode)->i_flags & 0x4000000)
62 #define mds_inode_set_orphan(inode)                                     \
63 do {                                                                    \
64         (inode)->i_flags |= 0x4000000;                                  \
65         CDEBUG(D_VFSTRACE, "setting orphan flag on inode %p\n", inode); \
66 } while (0)
67 #define mds_inode_unset_orphan(inode)                                      \
68 do {                                                                       \
69         (inode)->i_flags &= ~(0x4000000);                                  \
70         CDEBUG(D_VFSTRACE, "removing orphan flag from inode %p\n", inode); \
71 } while (0)
72 #endif /* __KERNEL__ */
73
74 /* mds/mds_reint.c */
75 int enqueue_ordered_locks(struct obd_device *obd, struct ldlm_res_id *p1_res_id,
76                           struct lustre_handle *p1_lockh, int p1_lock_mode,
77                           ldlm_policy_data_t *p1_policy,
78                           struct ldlm_res_id *p2_res_id,
79                           struct lustre_handle *p2_lockh, int p2_lock_mode,
80                           ldlm_policy_data_t *p2_policy);
81
82 int mds_finish_transno(struct mds_obd *mds, struct inode *inode, void *handle,
83                        struct ptlrpc_request *req, int rc, __u32 op_data);
84 void mds_reconstruct_generic(struct ptlrpc_request *req);
85 void mds_req_from_mcd(struct ptlrpc_request *req, struct mds_client_data *mcd);
86 int mds_get_parent_child_locked(struct obd_device *obd, struct mds_obd *mds,
87                                 struct lustre_id *id,
88                                 struct lustre_handle *parent_lockh,
89                                 struct dentry **dparentp, int parent_mode,
90                                 __u64 parent_lockpart, int *update_mode,
91                                 char *name, int namelen,
92                                 struct lustre_handle *child_lockh,
93                                 struct dentry **dchildp, int child_mode,
94                                 __u64 child_lockpart);
95 int mds_lock_new_child(struct obd_device *obd, struct inode *inode,
96                        struct lustre_handle *child_lockh);
97
98 /* mds/mds_lib.c */
99 void groups_from_buffer(struct group_info *ginfo, __u32 *gids);
100 int mds_update_unpack(struct ptlrpc_request *, int offset,
101                       struct mds_update_record *);
102 int mds_idmap_add(struct mds_idmap_table *tbl,
103                   uid_t rmt_uid, uid_t lcl_uid,
104                   gid_t rmt_gid, gid_t lcl_gid);
105 int mds_idmap_del(struct mds_idmap_table *tbl,
106                   uid_t rmt_uid, uid_t lcl_uid,
107                   gid_t rmt_gid, gid_t lcl_gid);
108 int mds_idmap_lookup_uid(struct mds_idmap_table *tbl, int reverse, uid_t uid);
109 int mds_idmap_lookup_gid(struct mds_idmap_table *tbl, int reverse, gid_t gid);
110 struct mds_idmap_table *mds_idmap_alloc(void);
111 void mds_idmap_free(struct mds_idmap_table *tbl);
112 void mds_body_do_reverse_map(struct mds_export_data *med,
113                              struct mds_body *body);
114 int mds_init_ucred(struct lvfs_ucred *ucred, struct ptlrpc_request *req,
115                    struct mds_req_sec_desc *rsd);
116 void mds_exit_ucred(struct lvfs_ucred *ucred);
117
118 /* mds/mds_unlink_open.c */
119 int mds_cleanup_orphans(struct obd_device *obd);
120
121
122 /* mds/mds_log.c */
123 int mds_log_op_unlink(struct obd_device *obd, struct inode *inode,
124                       struct lov_mds_md *lmm, int lmm_size,
125                       struct llog_cookie *logcookies, int cookies_size,
126                       struct llog_create_locks **res);
127 int mds_llog_init(struct obd_device *obd, struct obd_llogs *,
128                   struct obd_device *tgt, int count, struct llog_catid *logid);
129 int mds_llog_finish(struct obd_device *obd, struct obd_llogs *, int count);
130
131 /* mds/mds_lov.c */
132 int mds_dt_connect(struct obd_device *obd, char * lov_name);
133 int mds_dt_disconnect(struct obd_device *obd, int flags);
134 int mds_dt_set_info(struct obd_export *exp, obd_count keylen,
135                      void *key, obd_count vallen, void *val);
136 int mds_get_lovtgts(struct obd_device *, int tgt_count, struct obd_uuid *);
137 int mds_dt_write_objids(struct obd_device *obd);
138 void mds_dt_update_objids(struct obd_device *obd, obd_id *ids);
139 int mds_dt_set_growth(struct mds_obd *mds, int count);
140 int mds_dt_set_nextid(struct obd_device *obd);
141 int mds_dt_clearorphans(struct mds_obd *mds, struct obd_uuid *ost_uuid);
142 int mds_post_mds_lovconf(struct obd_device *obd);
143 int mds_notify(struct obd_device *obd, struct obd_device *watched,
144                int active, void *data);
145 int mds_dt_update_config(struct obd_device *obd, int transno);
146 int mds_convert_lov_ea(struct obd_device *obd, struct inode *inode,
147                        struct lov_mds_md *lmm, int lmm_size);
148 int mds_revalidate_lov_ea(struct obd_device *obd, struct inode *inode,
149                           struct lustre_msg *msg, int offset);
150
151 /* mds/mds_open.c */
152 int mds_query_write_access(struct inode *inode);
153 int mds_open(struct mds_update_record *rec, int offset,
154              struct ptlrpc_request *req, struct lustre_handle *);
155 int mds_pin(struct ptlrpc_request *req, int offset);
156 int mds_mfd_close(struct ptlrpc_request *req, int offset,
157                   struct obd_device *obd, struct mds_file_data *mfd,
158                   int unlink_orphan);
159 int mds_close(struct ptlrpc_request *req, int offset);
160 int mds_done_writing(struct ptlrpc_request *req, int offset);
161
162
163 /* mds/mds_fs.c */
164 int mds_client_add(struct obd_device *obd, struct mds_obd *mds,
165                    struct mds_export_data *med, int cl_off);
166 int mds_client_free(struct obd_export *exp, int clear_client);
167 int mds_obd_create(struct obd_export *exp, struct obdo *oa,
168                       struct lov_stripe_md **ea, struct obd_trans_info *oti);
169 int mds_obd_destroy(struct obd_export *exp, struct obdo *oa,
170                     struct lov_stripe_md *ea, struct obd_trans_info *oti);
171
172 /* mds/handler.c */
173 int mds_squash_root(struct mds_obd *mds, struct mds_req_sec_desc *rsd,
174                     ptl_nid_t *peernid);
175 int mds_handle(struct ptlrpc_request *req);
176 extern struct lvfs_callback_ops mds_lvfs_ops;
177 int mds_dt_clean(struct obd_device *obd);
178 int mds_postrecov(struct obd_device *obd);
179 extern struct lvfs_callback_ops mds_lvfs_ops;
180
181 extern int mds_iocontrol(unsigned int cmd,
182                          struct obd_export *exp,
183                          int len, void *karg,
184                          void *uarg);
185
186 extern int mds_lock_mode_for_dir(struct obd_device *,
187                                  struct dentry *, int);
188
189 int mds_fs_setup_rootid(struct obd_device *obd);
190 int mds_fs_setup_virtid(struct obd_device *obd);
191
192 __u64 mds_alloc_fid(struct obd_device *obd);
193
194 int mds_alloc_inode_sid(struct obd_device *, struct inode *,
195                         void *, struct lustre_id *);
196
197 int mds_update_inode_sid(struct obd_device *, struct inode *,
198                          void *, struct lustre_id *);
199
200 int mds_read_inode_sid(struct obd_device *, struct inode *,
201                        struct lustre_id *);
202
203 int mds_update_inode_mid(struct obd_device *, struct inode *,
204                          void *, struct lustre_id *);
205
206 int mds_read_inode_mid(struct obd_device *, struct inode *,
207                        struct lustre_id *);
208
209 void mds_commit_last_fid_cb(struct obd_device *, __u64 fid,
210                             void *data, int error);
211
212 void mds_commit_last_transno_cb(struct obd_device *, __u64 transno,
213                                 void *data, int error);
214
215 void mds_set_last_fid(struct obd_device *obd, __u64 fid);
216
217 #ifdef __KERNEL__
218 int mds_get_md(struct obd_device *, struct inode *, void *md,
219                int *size, int lock, int mea);
220
221 int mds_pack_md(struct obd_device *, struct lustre_msg *, int offset,
222                 struct mds_body *, struct inode *, int lock, int mea);
223 int mds_pack_link(struct dentry *dentry, struct ptlrpc_request *req,
224                   struct mds_body *repbody, int reply_off);
225 int mds_pack_ea(struct dentry *dentry, struct ptlrpc_request *req,
226                 struct mds_body *repbody, int req_off, int reply_off);
227 int mds_pack_ealist(struct dentry *dentry, struct ptlrpc_request *req,
228                     struct mds_body *repbody, int reply_off);
229 int mds_pack_acl(struct obd_device *, struct lustre_msg *, int offset,
230                  struct mds_body *, struct inode *);
231 int mds_pack_inode2id(struct obd_device *, struct lustre_id *,
232                       struct inode *, int);
233
234 void mds_pack_inode2body(struct obd_device *, struct mds_body *,
235                          struct inode *, int);
236
237 void mds_pack_dentry2id(struct obd_device *, struct lustre_id *,
238                         struct dentry *, int);
239
240 void mds_pack_dentry2body(struct obd_device *, struct mds_body *b,
241                           struct dentry *, int);
242 #endif
243
244 /* mds/mds_lmv.c */
245 int mds_md_postsetup(struct obd_device *obd);
246 int mds_md_connect(struct obd_device *obd, char * lov_name);
247 int mds_md_disconnect(struct obd_device *obd, int flags);
248 int mds_try_to_split_dir(struct obd_device *, struct dentry *, struct mea **,
249                          int, int);
250 int mds_md_get_attr(struct obd_device *, struct inode *, struct mea **, int *);
251 int mds_choose_mdsnum(struct obd_device *, const char *, int, int);
252 int mds_md_postsetup(struct obd_device *);
253 int mds_splitting_expected(struct obd_device *, struct dentry *);
254 int mds_lock_slave_objs(struct obd_device *, struct dentry *,
255                         struct lustre_handle **);
256 int mds_unlink_slave_objs(struct obd_device *, struct dentry *);
257 void mds_unlock_slave_objs(struct obd_device *, struct dentry *,
258                            struct lustre_handle *);
259 int mds_lock_and_check_slave(int, struct ptlrpc_request *, struct lustre_handle *);
260 int mds_convert_mea_ea(struct obd_device *, struct inode *, struct lov_mds_md *, int);
261 int mds_is_dir_empty(struct obd_device *, struct dentry *);
262
263 /* mds_lsd.c */
264 struct upcall_cache *__mds_get_global_lsd_cache(void);
265 int mds_init_lsd_cache(void);
266 void mds_cleanup_lsd_cache(void);
267 struct lustre_sec_desc * mds_get_lsd(__u32 uid);
268 void mds_put_lsd(struct lustre_sec_desc *lsd);
269 void mds_flush_lsd(__u32 id);
270
271 #endif /* _MDS_INTERNAL_H */