blob: c125b5d9e13ceddacd921286f19133607835dee1 [file] [log] [blame]
Sage Weilf24e9982009-10-06 11:31:10 -07001#ifndef _FS_CEPH_OSD_CLIENT_H
2#define _FS_CEPH_OSD_CLIENT_H
3
4#include <linux/completion.h>
Sage Weil415e49a2009-12-07 13:37:03 -08005#include <linux/kref.h>
Sage Weilf24e9982009-10-06 11:31:10 -07006#include <linux/mempool.h>
7#include <linux/rbtree.h>
8
Alex Elder6c4a1912012-05-16 15:16:38 -05009#include <linux/ceph/types.h>
10#include <linux/ceph/osdmap.h>
11#include <linux/ceph/messenger.h>
Ilya Dryomovb2aa5d02016-06-07 21:57:15 +020012#include <linux/ceph/msgpool.h>
Alex Elder6c4a1912012-05-16 15:16:38 -050013#include <linux/ceph/auth.h>
Alex Elderc8858372012-11-13 21:11:15 -060014#include <linux/ceph/pagelist.h>
Sage Weilf24e9982009-10-06 11:31:10 -070015
16struct ceph_msg;
17struct ceph_snap_context;
18struct ceph_osd_request;
19struct ceph_osd_client;
20
21/*
22 * completion callback for async writepages
23 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +020024typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *);
Sage Weilf24e9982009-10-06 11:31:10 -070025
Ilya Dryomov63244fa2016-04-28 16:07:23 +020026#define CEPH_HOMELESS_OSD -1
27
Sage Weilf24e9982009-10-06 11:31:10 -070028/* a given osd we're communicating with */
29struct ceph_osd {
30 atomic_t o_ref;
31 struct ceph_osd_client *o_osdc;
32 int o_osd;
33 int o_incarnation;
34 struct rb_node o_node;
35 struct ceph_connection o_con;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020036 struct rb_root o_requests;
Ilya Dryomov922dab62016-05-26 01:15:02 +020037 struct rb_root o_linger_requests;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080038 struct list_head o_osd_lru;
Alex Elder6c4a1912012-05-16 15:16:38 -050039 struct ceph_auth_handshake o_auth;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080040 unsigned long lru_ttl;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -080041 struct list_head o_keepalive_item;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020042 struct mutex lock;
Sage Weilf24e9982009-10-06 11:31:10 -070043};
44
Ilya Dryomov3f1af422016-02-09 17:50:15 +010045#define CEPH_OSD_SLAB_OPS 2
46#define CEPH_OSD_MAX_OPS 16
Sage Weil1b83bef2013-02-25 16:11:12 -080047
Alex Elder2ac2b7a2013-02-14 12:16:43 -060048enum ceph_osd_data_type {
Alex Elderec9123c2013-04-05 01:27:12 -050049 CEPH_OSD_DATA_TYPE_NONE = 0,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060050 CEPH_OSD_DATA_TYPE_PAGES,
Alex Elder9a5e6d02013-03-08 13:35:36 -060051 CEPH_OSD_DATA_TYPE_PAGELIST,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060052#ifdef CONFIG_BLOCK
53 CEPH_OSD_DATA_TYPE_BIO,
54#endif /* CONFIG_BLOCK */
55};
56
Alex Elder2794a822013-02-14 12:16:43 -060057struct ceph_osd_data {
Alex Elder2ac2b7a2013-02-14 12:16:43 -060058 enum ceph_osd_data_type type;
59 union {
Alex Elder2794a822013-02-14 12:16:43 -060060 struct {
61 struct page **pages;
Alex Eldere0c59482013-03-07 15:38:25 -060062 u64 length;
Alex Elder2794a822013-02-14 12:16:43 -060063 u32 alignment;
64 bool pages_from_pool;
65 bool own_pages;
66 };
Alex Elder9a5e6d02013-03-08 13:35:36 -060067 struct ceph_pagelist *pagelist;
Alex Elder2794a822013-02-14 12:16:43 -060068#ifdef CONFIG_BLOCK
Alex Elderfdce58c2013-03-14 14:09:06 -050069 struct {
70 struct bio *bio; /* list of bios */
71 size_t bio_length; /* total in list */
72 };
Alex Elder2794a822013-02-14 12:16:43 -060073#endif /* CONFIG_BLOCK */
74 };
75};
76
Alex Elder79528732013-04-03 21:32:51 -050077struct ceph_osd_req_op {
78 u16 op; /* CEPH_OSD_OP_* */
Ilya Dryomov7b25bf52014-02-25 16:22:26 +020079 u32 flags; /* CEPH_OSD_OP_FLAG_* */
Ilya Dryomovde2aa102016-02-08 13:39:46 +010080 u32 indata_len; /* request */
Yan, Zheng7665d852016-01-07 16:48:57 +080081 u32 outdata_len; /* reply */
82 s32 rval;
83
Alex Elder79528732013-04-03 21:32:51 -050084 union {
Alex Elder49719772013-02-11 12:33:24 -060085 struct ceph_osd_data raw_data_in;
Alex Elder79528732013-04-03 21:32:51 -050086 struct {
87 u64 offset, length;
88 u64 truncate_size;
89 u32 truncate_seq;
Alex Elder54764922013-04-05 01:27:12 -050090 struct ceph_osd_data osd_data;
Alex Elder79528732013-04-03 21:32:51 -050091 } extent;
92 struct {
Ilya Dryomovd7d5a002014-12-19 14:00:41 +030093 u32 name_len;
94 u32 value_len;
Yan, Zhengd74b50b2014-11-12 14:00:43 +080095 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
96 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
97 struct ceph_osd_data osd_data;
98 } xattr;
99 struct {
Alex Elder79528732013-04-03 21:32:51 -0500100 const char *class_name;
101 const char *method_name;
Alex Elder54764922013-04-05 01:27:12 -0500102 struct ceph_osd_data request_info;
Alex Elder04017e22013-04-05 14:46:02 -0500103 struct ceph_osd_data request_data;
Alex Elder54764922013-04-05 01:27:12 -0500104 struct ceph_osd_data response_data;
Alex Elder79528732013-04-03 21:32:51 -0500105 __u8 class_len;
106 __u8 method_len;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200107 u32 indata_len;
Alex Elder79528732013-04-03 21:32:51 -0500108 } cls;
109 struct {
110 u64 cookie;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200111 __u8 op; /* CEPH_OSD_WATCH_OP_ */
112 u32 gen;
Alex Elder79528732013-04-03 21:32:51 -0500113 } watch;
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200114 struct {
Ilya Dryomov922dab62016-05-26 01:15:02 +0200115 struct ceph_osd_data request_data;
116 } notify_ack;
117 struct {
Ilya Dryomov19079202016-04-28 16:07:27 +0200118 u64 cookie;
119 struct ceph_osd_data request_data;
120 struct ceph_osd_data response_data;
121 } notify;
122 struct {
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700123 struct ceph_osd_data response_data;
124 } list_watchers;
125 struct {
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200126 u64 expected_object_size;
127 u64 expected_write_size;
128 } alloc_hint;
Alex Elder79528732013-04-03 21:32:51 -0500129 };
130};
131
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200132struct ceph_osd_request_target {
133 struct ceph_object_id base_oid;
134 struct ceph_object_locator base_oloc;
135 struct ceph_object_id target_oid;
136 struct ceph_object_locator target_oloc;
137
138 struct ceph_pg pgid;
139 u32 pg_num;
140 u32 pg_num_mask;
141 struct ceph_osds acting;
142 struct ceph_osds up;
143 int size;
144 int min_size;
145 bool sort_bitwise;
146
147 unsigned int flags; /* CEPH_OSD_FLAG_* */
148 bool paused;
149
150 int osd;
151};
152
Sage Weilf24e9982009-10-06 11:31:10 -0700153/* an in-flight request */
154struct ceph_osd_request {
155 u64 r_tid; /* unique for this client */
156 struct rb_node r_node;
Ilya Dryomov46092452016-04-28 16:07:27 +0200157 struct rb_node r_mc_node; /* map check */
Sage Weilf24e9982009-10-06 11:31:10 -0700158 struct ceph_osd *r_osd;
Ilya Dryomova66dd382016-04-28 16:07:23 +0200159
160 struct ceph_osd_request_target r_t;
161#define r_base_oid r_t.base_oid
162#define r_base_oloc r_t.base_oloc
163#define r_flags r_t.flags
Sage Weilf24e9982009-10-06 11:31:10 -0700164
165 struct ceph_msg *r_request, *r_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700166 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil1b83bef2013-02-25 16:11:12 -0800167
Alex Elder79528732013-04-03 21:32:51 -0500168 /* request osd ops array */
169 unsigned int r_num_ops;
Alex Elder79528732013-04-03 21:32:51 -0500170
Sage Weil1b83bef2013-02-25 16:11:12 -0800171 int r_result;
Sage Weilf24e9982009-10-06 11:31:10 -0700172
173 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -0800174 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -0700175 bool r_mempool;
Ilya Dryomovb18b9552017-02-11 18:46:08 +0100176 struct completion r_completion; /* private to osd_client.c */
Alex Elder26be8802013-04-15 11:20:42 -0500177 ceph_osdc_callback_t r_callback;
Sage Weilf24e9982009-10-06 11:31:10 -0700178 struct list_head r_unsafe_item;
179
180 struct inode *r_inode; /* for use by callbacks */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700181 void *r_priv; /* ditto */
Sage Weilf24e9982009-10-06 11:31:10 -0700182
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200183 /* 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 */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200188 bool r_linger; /* don't resend on failure */
Sage Weilf24e9982009-10-06 11:31:10 -0700189
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200190 /* internal */
191 unsigned long r_stamp; /* jiffies, send or check time */
Ilya Dryomov7cc5e382017-02-12 17:11:07 +0100192 unsigned long r_start_stamp; /* jiffies */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200193 int r_attempts;
194 struct ceph_eversion r_replay_version; /* aka reassert_version */
195 u32 r_last_force_resend;
Ilya Dryomov46092452016-04-28 16:07:27 +0200196 u32 r_map_dne_bound;
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100197
198 struct ceph_osd_req_op r_ops[];
Sage Weilf24e9982009-10-06 11:31:10 -0700199};
200
Ilya Dryomov205ee1182014-01-27 17:40:20 +0200201struct ceph_request_redirect {
202 struct ceph_object_locator oloc;
203};
204
Ilya Dryomov922dab62016-05-26 01:15:02 +0200205typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
206 u64 notifier_id, void *data, size_t data_len);
207typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700208
Ilya Dryomov922dab62016-05-26 01:15:02 +0200209struct ceph_osd_linger_request {
210 struct ceph_osd_client *osdc;
211 u64 linger_id;
212 bool committed;
Ilya Dryomov19079202016-04-28 16:07:27 +0200213 bool is_watch; /* watch or notify */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200214
215 struct ceph_osd *osd;
216 struct ceph_osd_request *reg_req;
217 struct ceph_osd_request *ping_req;
218 unsigned long ping_sent;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200219 unsigned long watch_valid_thru;
220 struct list_head pending_lworks;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200221
222 struct ceph_osd_request_target t;
223 u32 last_force_resend;
Ilya Dryomov46092452016-04-28 16:07:27 +0200224 u32 map_dne_bound;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200225
226 struct timespec mtime;
227
228 struct kref kref;
229 struct mutex lock;
230 struct rb_node node; /* osd */
231 struct rb_node osdc_node; /* osdc */
Ilya Dryomov46092452016-04-28 16:07:27 +0200232 struct rb_node mc_node; /* map check */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200233 struct list_head scan_item;
234
235 struct completion reg_commit_wait;
Ilya Dryomov19079202016-04-28 16:07:27 +0200236 struct completion notify_finish_wait;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200237 int reg_commit_error;
Ilya Dryomov19079202016-04-28 16:07:27 +0200238 int notify_finish_error;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200239 int last_error;
240
241 u32 register_gen;
Ilya Dryomov19079202016-04-28 16:07:27 +0200242 u64 notify_id;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200243
244 rados_watchcb2_t wcb;
245 rados_watcherrcb_t errcb;
246 void *data;
Ilya Dryomov19079202016-04-28 16:07:27 +0200247
248 struct page ***preply_pages;
249 size_t *preply_len;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700250};
251
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700252struct ceph_watch_item {
253 struct ceph_entity_name name;
254 u64 cookie;
255 struct ceph_entity_addr addr;
256};
257
Ilya Dryomov264048a2016-11-08 15:15:24 +0100258#define CEPH_LINGER_ID_START 0xffff000000000000ULL
259
Sage Weilf24e9982009-10-06 11:31:10 -0700260struct ceph_osd_client {
261 struct ceph_client *client;
262
263 struct ceph_osdmap *osdmap; /* current map */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200264 struct rw_semaphore lock;
Sage Weilf24e9982009-10-06 11:31:10 -0700265
Sage Weilf24e9982009-10-06 11:31:10 -0700266 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800267 struct list_head osd_lru; /* idle osds */
Ilya Dryomov9dd28452016-04-28 16:07:26 +0200268 spinlock_t osd_lru_lock;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200269 struct ceph_osd homeless_osd;
270 atomic64_t last_tid; /* tid of last request */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200271 u64 last_linger_id;
272 struct rb_root linger_requests; /* lingering requests */
Ilya Dryomov46092452016-04-28 16:07:27 +0200273 struct rb_root map_checks;
274 struct rb_root linger_map_checks;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200275 atomic_t num_requests;
276 atomic_t num_homeless;
Sage Weilf24e9982009-10-06 11:31:10 -0700277 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800278 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800279#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700280 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800281#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700282
283 mempool_t *req_mempool;
284
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800285 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800286 struct ceph_msgpool msgpool_op_reply;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700287
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700288 struct workqueue_struct *notify_wq;
Sage Weilf24e9982009-10-06 11:31:10 -0700289};
290
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +0200291static inline bool ceph_osdmap_flag(struct ceph_osd_client *osdc, int flag)
292{
293 return osdc->osdmap->flags & flag;
294}
295
Alex Elder5522ae02013-05-01 12:43:04 -0500296extern int ceph_osdc_setup(void);
297extern void ceph_osdc_cleanup(void);
298
Sage Weilf24e9982009-10-06 11:31:10 -0700299extern int ceph_osdc_init(struct ceph_osd_client *osdc,
300 struct ceph_client *client);
301extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
302
303extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
304 struct ceph_msg *msg);
305extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
306 struct ceph_msg *msg);
307
Alex Elder49719772013-02-11 12:33:24 -0600308extern void osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800309 unsigned int which, u16 opcode, u32 flags);
Alex Elder49719772013-02-11 12:33:24 -0600310
311extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
312 unsigned int which,
313 struct page **pages, u64 length,
314 u32 alignment, bool pages_from_pool,
315 bool own_pages);
316
Alex Elderc99d2d42013-04-05 01:27:11 -0500317extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
318 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500319 u64 offset, u64 length,
320 u64 truncate_size, u32 truncate_seq);
Alex Elderc99d2d42013-04-05 01:27:11 -0500321extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
322 unsigned int which, u64 length);
Yan, Zheng2c63f492016-01-07 17:32:54 +0800323extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
324 unsigned int which, u64 offset_inc);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500325
326extern struct ceph_osd_data *osd_req_op_extent_osd_data(
327 struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500328 unsigned int which);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500329
330extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500331 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500332 struct page **pages, u64 length,
333 u32 alignment, bool pages_from_pool,
334 bool own_pages);
335extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500336 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500337 struct ceph_pagelist *pagelist);
338#ifdef CONFIG_BLOCK
339extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500340 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500341 struct bio *bio, size_t bio_length);
342#endif /* CONFIG_BLOCK */
343
Alex Elder04017e22013-04-05 14:46:02 -0500344extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
345 unsigned int which,
346 struct ceph_pagelist *pagelist);
Alex Elder6c57b552013-04-19 15:34:49 -0500347extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
348 unsigned int which,
349 struct page **pages, u64 length,
350 u32 alignment, bool pages_from_pool,
351 bool own_pages);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500352extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
Alex Elderc99d2d42013-04-05 01:27:11 -0500353 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500354 struct page **pages, u64 length,
355 u32 alignment, bool pages_from_pool,
356 bool own_pages);
Alex Elderc99d2d42013-04-05 01:27:11 -0500357extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
358 unsigned int which, u16 opcode,
Alex Elder04017e22013-04-05 14:46:02 -0500359 const char *class, const char *method);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800360extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
361 u16 opcode, const char *name, const void *value,
362 size_t size, u8 cmp_op, u8 cmp_mode);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200363extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
364 unsigned int which,
365 u64 expected_object_size,
366 u64 expected_write_size);
Alex Elder33803f32013-03-13 20:50:00 -0500367
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700368extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700369 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500370 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700371 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600372 gfp_t gfp_flags);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200373int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700374
Sage Weilf24e9982009-10-06 11:31:10 -0700375extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
376 struct ceph_file_layout *layout,
377 struct ceph_vino vino,
Alex Elderacead002013-03-14 14:09:05 -0500378 u64 offset, u64 *len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800379 unsigned int which, int num_ops,
380 int opcode, int flags,
Sage Weilf24e9982009-10-06 11:31:10 -0700381 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500382 u32 truncate_seq, u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -0600383 bool use_mempool);
Sage Weilf24e9982009-10-06 11:31:10 -0700384
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400385extern void ceph_osdc_get_request(struct ceph_osd_request *req);
386extern void ceph_osdc_put_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700387
388extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
389 struct ceph_osd_request *req,
390 bool nofail);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +0400391extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700392extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
393 struct ceph_osd_request *req);
394extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
395
Josh Durgindd935f42013-08-28 21:43:09 -0700396extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
Ilya Dryomov7cca78c2016-04-28 16:07:28 +0200397void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
Josh Durgindd935f42013-08-28 21:43:09 -0700398
Douglas Fuller428a7152015-06-17 14:49:45 -0400399int ceph_osdc_call(struct ceph_osd_client *osdc,
400 struct ceph_object_id *oid,
401 struct ceph_object_locator *oloc,
402 const char *class, const char *method,
403 unsigned int flags,
404 struct page *req_page, size_t req_len,
405 struct page *resp_page, size_t *resp_len);
406
Sage Weilf24e9982009-10-06 11:31:10 -0700407extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
408 struct ceph_vino vino,
409 struct ceph_file_layout *layout,
410 u64 off, u64 *plen,
411 u32 truncate_seq, u64 truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800412 struct page **pages, int nr_pages,
413 int page_align);
Sage Weilf24e9982009-10-06 11:31:10 -0700414
415extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
416 struct ceph_vino vino,
417 struct ceph_file_layout *layout,
418 struct ceph_snap_context *sc,
419 u64 off, u64 len,
420 u32 truncate_seq, u64 truncate_size,
421 struct timespec *mtime,
Alex Elder24808822013-02-15 11:42:29 -0600422 struct page **pages, int nr_pages);
Sage Weilf24e9982009-10-06 11:31:10 -0700423
Ilya Dryomov922dab62016-05-26 01:15:02 +0200424/* watch/notify */
425struct ceph_osd_linger_request *
426ceph_osdc_watch(struct ceph_osd_client *osdc,
427 struct ceph_object_id *oid,
428 struct ceph_object_locator *oloc,
429 rados_watchcb2_t wcb,
430 rados_watcherrcb_t errcb,
431 void *data);
432int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
433 struct ceph_osd_linger_request *lreq);
434
435int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
436 struct ceph_object_id *oid,
437 struct ceph_object_locator *oloc,
438 u64 notify_id,
439 u64 cookie,
440 void *payload,
441 size_t payload_len);
Ilya Dryomov19079202016-04-28 16:07:27 +0200442int ceph_osdc_notify(struct ceph_osd_client *osdc,
443 struct ceph_object_id *oid,
444 struct ceph_object_locator *oloc,
445 void *payload,
446 size_t payload_len,
447 u32 timeout,
448 struct page ***preply_pages,
449 size_t *preply_len);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200450int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
451 struct ceph_osd_linger_request *lreq);
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700452int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
453 struct ceph_object_id *oid,
454 struct ceph_object_locator *oloc,
455 struct ceph_watch_item **watchers,
456 u32 *num_watchers);
Sage Weilf24e9982009-10-06 11:31:10 -0700457#endif
458