1 #ifndef _FS_CEPH_OSD_CLIENT_H
2 #define _FS_CEPH_OSD_CLIENT_H
4 #include <linux/completion.h>
5 #include <linux/kref.h>
6 #include <linux/mempool.h>
7 #include <linux/rbtree.h>
9 #include <linux/ceph/types.h>
10 #include <linux/ceph/osdmap.h>
11 #include <linux/ceph/messenger.h>
12 #include <linux/ceph/auth.h>
13 #include <linux/ceph/pagelist.h>
16 struct ceph_snap_context;
17 struct ceph_osd_request;
18 struct ceph_osd_client;
21 * completion callback for async writepages
23 typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *);
24 typedef void (*ceph_osdc_unsafe_callback_t)(struct ceph_osd_request *, bool);
26 #define CEPH_HOMELESS_OSD -1
28 /* a given osd we're communicating with */
31 struct ceph_osd_client *o_osdc;
34 struct rb_node o_node;
35 struct ceph_connection o_con;
36 struct rb_root o_requests;
37 struct rb_root o_linger_requests;
38 struct list_head o_osd_lru;
39 struct ceph_auth_handshake o_auth;
40 unsigned long lru_ttl;
41 struct list_head o_keepalive_item;
45 #define CEPH_OSD_SLAB_OPS 2
46 #define CEPH_OSD_MAX_OPS 16
48 enum ceph_osd_data_type {
49 CEPH_OSD_DATA_TYPE_NONE = 0,
50 CEPH_OSD_DATA_TYPE_PAGES,
51 CEPH_OSD_DATA_TYPE_PAGELIST,
53 CEPH_OSD_DATA_TYPE_BIO,
54 #endif /* CONFIG_BLOCK */
57 struct ceph_osd_data {
58 enum ceph_osd_data_type type;
67 struct ceph_pagelist *pagelist;
70 struct bio *bio; /* list of bios */
71 size_t bio_length; /* total in list */
73 #endif /* CONFIG_BLOCK */
77 struct ceph_osd_req_op {
78 u16 op; /* CEPH_OSD_OP_* */
79 u32 flags; /* CEPH_OSD_OP_FLAG_* */
80 u32 indata_len; /* request */
81 u32 outdata_len; /* reply */
85 struct ceph_osd_data raw_data_in;
90 struct ceph_osd_data osd_data;
95 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
96 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
97 struct ceph_osd_data osd_data;
100 const char *class_name;
101 const char *method_name;
102 struct ceph_osd_data request_info;
103 struct ceph_osd_data request_data;
104 struct ceph_osd_data response_data;
111 __u8 op; /* CEPH_OSD_WATCH_OP_ */
115 struct ceph_osd_data request_data;
119 struct ceph_osd_data request_data;
120 struct ceph_osd_data response_data;
123 u64 expected_object_size;
124 u64 expected_write_size;
129 struct ceph_osd_request_target {
130 struct ceph_object_id base_oid;
131 struct ceph_object_locator base_oloc;
132 struct ceph_object_id target_oid;
133 struct ceph_object_locator target_oloc;
138 struct ceph_osds acting;
144 unsigned int flags; /* CEPH_OSD_FLAG_* */
150 /* an in-flight request */
151 struct ceph_osd_request {
152 u64 r_tid; /* unique for this client */
153 struct rb_node r_node;
154 struct rb_node r_mc_node; /* map check */
155 struct ceph_osd *r_osd;
157 struct ceph_osd_request_target r_t;
158 #define r_base_oid r_t.base_oid
159 #define r_base_oloc r_t.base_oloc
160 #define r_flags r_t.flags
162 struct ceph_msg *r_request, *r_reply;
163 u32 r_sent; /* >0 if r_request is sending/sent */
165 /* request osd ops array */
166 unsigned int r_num_ops;
171 struct ceph_osd_client *r_osdc;
174 struct completion r_completion;
175 struct completion r_safe_completion; /* fsync waiter */
176 ceph_osdc_callback_t r_callback;
177 ceph_osdc_unsafe_callback_t r_unsafe_callback;
178 struct list_head r_unsafe_item;
180 struct inode *r_inode; /* for use by callbacks */
181 void *r_priv; /* ditto */
183 /* set by submitter */
184 u64 r_snapid; /* for reads, CEPH_NOSNAP o/w */
185 struct ceph_snap_context *r_snapc; /* for writes */
186 struct timespec r_mtime; /* ditto */
187 u64 r_data_offset; /* ditto */
188 bool r_linger; /* don't resend on failure */
191 unsigned long r_stamp; /* jiffies, send or check time */
193 struct ceph_eversion r_replay_version; /* aka reassert_version */
194 u32 r_last_force_resend;
197 struct ceph_osd_req_op r_ops[];
200 struct ceph_request_redirect {
201 struct ceph_object_locator oloc;
204 typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
205 u64 notifier_id, void *data, size_t data_len);
206 typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
208 struct ceph_osd_linger_request {
209 struct ceph_osd_client *osdc;
212 bool is_watch; /* watch or notify */
214 struct ceph_osd *osd;
215 struct ceph_osd_request *reg_req;
216 struct ceph_osd_request *ping_req;
217 unsigned long ping_sent;
218 unsigned long watch_valid_thru;
219 struct list_head pending_lworks;
221 struct ceph_osd_request_target t;
222 u32 last_force_resend;
225 struct timespec mtime;
229 struct rb_node node; /* osd */
230 struct rb_node osdc_node; /* osdc */
231 struct rb_node mc_node; /* map check */
232 struct list_head scan_item;
234 struct completion reg_commit_wait;
235 struct completion notify_finish_wait;
236 int reg_commit_error;
237 int notify_finish_error;
243 rados_watchcb2_t wcb;
244 rados_watcherrcb_t errcb;
247 struct page ***preply_pages;
251 struct ceph_osd_client {
252 struct ceph_client *client;
254 struct ceph_osdmap *osdmap; /* current map */
255 struct rw_semaphore lock;
257 struct rb_root osds; /* osds */
258 struct list_head osd_lru; /* idle osds */
259 spinlock_t osd_lru_lock;
260 struct ceph_osd homeless_osd;
261 atomic64_t last_tid; /* tid of last request */
263 struct rb_root linger_requests; /* lingering requests */
264 struct rb_root map_checks;
265 struct rb_root linger_map_checks;
266 atomic_t num_requests;
267 atomic_t num_homeless;
268 struct delayed_work timeout_work;
269 struct delayed_work osds_timeout_work;
270 #ifdef CONFIG_DEBUG_FS
271 struct dentry *debugfs_file;
274 mempool_t *req_mempool;
276 struct ceph_msgpool msgpool_op;
277 struct ceph_msgpool msgpool_op_reply;
279 struct workqueue_struct *notify_wq;
282 extern int ceph_osdc_setup(void);
283 extern void ceph_osdc_cleanup(void);
285 extern int ceph_osdc_init(struct ceph_osd_client *osdc,
286 struct ceph_client *client);
287 extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
289 extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
290 struct ceph_msg *msg);
291 extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
292 struct ceph_msg *msg);
294 extern void osd_req_op_init(struct ceph_osd_request *osd_req,
295 unsigned int which, u16 opcode, u32 flags);
297 extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
299 struct page **pages, u64 length,
300 u32 alignment, bool pages_from_pool,
303 extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
304 unsigned int which, u16 opcode,
305 u64 offset, u64 length,
306 u64 truncate_size, u32 truncate_seq);
307 extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
308 unsigned int which, u64 length);
309 extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
310 unsigned int which, u64 offset_inc);
312 extern struct ceph_osd_data *osd_req_op_extent_osd_data(
313 struct ceph_osd_request *osd_req,
316 extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
318 struct page **pages, u64 length,
319 u32 alignment, bool pages_from_pool,
321 extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
323 struct ceph_pagelist *pagelist);
325 extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
327 struct bio *bio, size_t bio_length);
328 #endif /* CONFIG_BLOCK */
330 extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
332 struct ceph_pagelist *pagelist);
333 extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
335 struct page **pages, u64 length,
336 u32 alignment, bool pages_from_pool,
338 extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
340 struct page **pages, u64 length,
341 u32 alignment, bool pages_from_pool,
344 extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
345 unsigned int which, u16 opcode,
346 const char *class, const char *method);
347 extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
348 u16 opcode, const char *name, const void *value,
349 size_t size, u8 cmp_op, u8 cmp_mode);
350 extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
352 u64 expected_object_size,
353 u64 expected_write_size);
355 extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
356 struct ceph_snap_context *snapc,
357 unsigned int num_ops,
360 int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
362 extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
363 struct ceph_file_layout *layout,
364 struct ceph_vino vino,
365 u64 offset, u64 *len,
366 unsigned int which, int num_ops,
367 int opcode, int flags,
368 struct ceph_snap_context *snapc,
369 u32 truncate_seq, u64 truncate_size,
372 extern void ceph_osdc_get_request(struct ceph_osd_request *req);
373 extern void ceph_osdc_put_request(struct ceph_osd_request *req);
375 extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
376 struct ceph_osd_request *req,
378 extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
379 extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
380 struct ceph_osd_request *req);
381 extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
383 extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
384 void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
386 extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
387 struct ceph_vino vino,
388 struct ceph_file_layout *layout,
390 u32 truncate_seq, u64 truncate_size,
391 struct page **pages, int nr_pages,
394 extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
395 struct ceph_vino vino,
396 struct ceph_file_layout *layout,
397 struct ceph_snap_context *sc,
399 u32 truncate_seq, u64 truncate_size,
400 struct timespec *mtime,
401 struct page **pages, int nr_pages);
404 struct ceph_osd_linger_request *
405 ceph_osdc_watch(struct ceph_osd_client *osdc,
406 struct ceph_object_id *oid,
407 struct ceph_object_locator *oloc,
408 rados_watchcb2_t wcb,
409 rados_watcherrcb_t errcb,
411 int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
412 struct ceph_osd_linger_request *lreq);
414 int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
415 struct ceph_object_id *oid,
416 struct ceph_object_locator *oloc,
421 int ceph_osdc_notify(struct ceph_osd_client *osdc,
422 struct ceph_object_id *oid,
423 struct ceph_object_locator *oloc,
427 struct page ***preply_pages,
429 int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
430 struct ceph_osd_linger_request *lreq);