blob: 6114f7b02135301345c5e2f0f8b631490e09d5c7 [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>
Elena Reshetova02113a02017-03-17 14:10:28 +02008#include <linux/refcount.h>
Sage Weilf24e9982009-10-06 11:31:10 -07009
Alex Elder6c4a1912012-05-16 15:16:38 -050010#include <linux/ceph/types.h>
11#include <linux/ceph/osdmap.h>
12#include <linux/ceph/messenger.h>
Ilya Dryomovb2aa5d02016-06-07 21:57:15 +020013#include <linux/ceph/msgpool.h>
Alex Elder6c4a1912012-05-16 15:16:38 -050014#include <linux/ceph/auth.h>
Alex Elderc8858372012-11-13 21:11:15 -060015#include <linux/ceph/pagelist.h>
Sage Weilf24e9982009-10-06 11:31:10 -070016
17struct ceph_msg;
18struct ceph_snap_context;
19struct ceph_osd_request;
20struct ceph_osd_client;
21
22/*
23 * completion callback for async writepages
24 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +020025typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *);
Sage Weilf24e9982009-10-06 11:31:10 -070026
Ilya Dryomov63244fa2016-04-28 16:07:23 +020027#define CEPH_HOMELESS_OSD -1
28
Sage Weilf24e9982009-10-06 11:31:10 -070029/* a given osd we're communicating with */
30struct ceph_osd {
Elena Reshetova02113a02017-03-17 14:10:28 +020031 refcount_t o_ref;
Sage Weilf24e9982009-10-06 11:31:10 -070032 struct ceph_osd_client *o_osdc;
33 int o_osd;
34 int o_incarnation;
35 struct rb_node o_node;
36 struct ceph_connection o_con;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020037 struct rb_root o_requests;
Ilya Dryomov922dab62016-05-26 01:15:02 +020038 struct rb_root o_linger_requests;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080039 struct list_head o_osd_lru;
Alex Elder6c4a1912012-05-16 15:16:38 -050040 struct ceph_auth_handshake o_auth;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080041 unsigned long lru_ttl;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -080042 struct list_head o_keepalive_item;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020043 struct mutex lock;
Sage Weilf24e9982009-10-06 11:31:10 -070044};
45
Ilya Dryomov3f1af422016-02-09 17:50:15 +010046#define CEPH_OSD_SLAB_OPS 2
47#define CEPH_OSD_MAX_OPS 16
Sage Weil1b83bef2013-02-25 16:11:12 -080048
Alex Elder2ac2b7a2013-02-14 12:16:43 -060049enum ceph_osd_data_type {
Alex Elderec9123c2013-04-05 01:27:12 -050050 CEPH_OSD_DATA_TYPE_NONE = 0,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060051 CEPH_OSD_DATA_TYPE_PAGES,
Alex Elder9a5e6d02013-03-08 13:35:36 -060052 CEPH_OSD_DATA_TYPE_PAGELIST,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060053#ifdef CONFIG_BLOCK
54 CEPH_OSD_DATA_TYPE_BIO,
55#endif /* CONFIG_BLOCK */
56};
57
Alex Elder2794a822013-02-14 12:16:43 -060058struct ceph_osd_data {
Alex Elder2ac2b7a2013-02-14 12:16:43 -060059 enum ceph_osd_data_type type;
60 union {
Alex Elder2794a822013-02-14 12:16:43 -060061 struct {
62 struct page **pages;
Alex Eldere0c59482013-03-07 15:38:25 -060063 u64 length;
Alex Elder2794a822013-02-14 12:16:43 -060064 u32 alignment;
65 bool pages_from_pool;
66 bool own_pages;
67 };
Alex Elder9a5e6d02013-03-08 13:35:36 -060068 struct ceph_pagelist *pagelist;
Alex Elder2794a822013-02-14 12:16:43 -060069#ifdef CONFIG_BLOCK
Alex Elderfdce58c2013-03-14 14:09:06 -050070 struct {
71 struct bio *bio; /* list of bios */
72 size_t bio_length; /* total in list */
73 };
Alex Elder2794a822013-02-14 12:16:43 -060074#endif /* CONFIG_BLOCK */
75 };
76};
77
Alex Elder79528732013-04-03 21:32:51 -050078struct ceph_osd_req_op {
79 u16 op; /* CEPH_OSD_OP_* */
Ilya Dryomov7b25bf52014-02-25 16:22:26 +020080 u32 flags; /* CEPH_OSD_OP_FLAG_* */
Ilya Dryomovde2aa102016-02-08 13:39:46 +010081 u32 indata_len; /* request */
Yan, Zheng7665d852016-01-07 16:48:57 +080082 u32 outdata_len; /* reply */
83 s32 rval;
84
Alex Elder79528732013-04-03 21:32:51 -050085 union {
Alex Elder49719772013-02-11 12:33:24 -060086 struct ceph_osd_data raw_data_in;
Alex Elder79528732013-04-03 21:32:51 -050087 struct {
88 u64 offset, length;
89 u64 truncate_size;
90 u32 truncate_seq;
Alex Elder54764922013-04-05 01:27:12 -050091 struct ceph_osd_data osd_data;
Alex Elder79528732013-04-03 21:32:51 -050092 } extent;
93 struct {
Ilya Dryomovd7d5a002014-12-19 14:00:41 +030094 u32 name_len;
95 u32 value_len;
Yan, Zhengd74b50b2014-11-12 14:00:43 +080096 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
97 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
98 struct ceph_osd_data osd_data;
99 } xattr;
100 struct {
Alex Elder79528732013-04-03 21:32:51 -0500101 const char *class_name;
102 const char *method_name;
Alex Elder54764922013-04-05 01:27:12 -0500103 struct ceph_osd_data request_info;
Alex Elder04017e22013-04-05 14:46:02 -0500104 struct ceph_osd_data request_data;
Alex Elder54764922013-04-05 01:27:12 -0500105 struct ceph_osd_data response_data;
Alex Elder79528732013-04-03 21:32:51 -0500106 __u8 class_len;
107 __u8 method_len;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200108 u32 indata_len;
Alex Elder79528732013-04-03 21:32:51 -0500109 } cls;
110 struct {
111 u64 cookie;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200112 __u8 op; /* CEPH_OSD_WATCH_OP_ */
113 u32 gen;
Alex Elder79528732013-04-03 21:32:51 -0500114 } watch;
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200115 struct {
Ilya Dryomov922dab62016-05-26 01:15:02 +0200116 struct ceph_osd_data request_data;
117 } notify_ack;
118 struct {
Ilya Dryomov19079202016-04-28 16:07:27 +0200119 u64 cookie;
120 struct ceph_osd_data request_data;
121 struct ceph_osd_data response_data;
122 } notify;
123 struct {
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700124 struct ceph_osd_data response_data;
125 } list_watchers;
126 struct {
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200127 u64 expected_object_size;
128 u64 expected_write_size;
129 } alloc_hint;
Alex Elder79528732013-04-03 21:32:51 -0500130 };
131};
132
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200133struct ceph_osd_request_target {
134 struct ceph_object_id base_oid;
135 struct ceph_object_locator base_oloc;
136 struct ceph_object_id target_oid;
137 struct ceph_object_locator target_oloc;
138
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200139 struct ceph_pg pgid; /* last raw pg we mapped to */
140 struct ceph_spg spgid; /* last actual spg we mapped to */
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200141 u32 pg_num;
142 u32 pg_num_mask;
143 struct ceph_osds acting;
144 struct ceph_osds up;
145 int size;
146 int min_size;
147 bool sort_bitwise;
148
149 unsigned int flags; /* CEPH_OSD_FLAG_* */
150 bool paused;
151
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +0200152 u32 last_force_resend;
153
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200154 int osd;
155};
156
Sage Weilf24e9982009-10-06 11:31:10 -0700157/* an in-flight request */
158struct ceph_osd_request {
159 u64 r_tid; /* unique for this client */
160 struct rb_node r_node;
Ilya Dryomov46092452016-04-28 16:07:27 +0200161 struct rb_node r_mc_node; /* map check */
Sage Weilf24e9982009-10-06 11:31:10 -0700162 struct ceph_osd *r_osd;
Ilya Dryomova66dd382016-04-28 16:07:23 +0200163
164 struct ceph_osd_request_target r_t;
165#define r_base_oid r_t.base_oid
166#define r_base_oloc r_t.base_oloc
167#define r_flags r_t.flags
Sage Weilf24e9982009-10-06 11:31:10 -0700168
169 struct ceph_msg *r_request, *r_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700170 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil1b83bef2013-02-25 16:11:12 -0800171
Alex Elder79528732013-04-03 21:32:51 -0500172 /* request osd ops array */
173 unsigned int r_num_ops;
Alex Elder79528732013-04-03 21:32:51 -0500174
Sage Weil1b83bef2013-02-25 16:11:12 -0800175 int r_result;
Sage Weilf24e9982009-10-06 11:31:10 -0700176
177 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -0800178 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -0700179 bool r_mempool;
Ilya Dryomovb18b9552017-02-11 18:46:08 +0100180 struct completion r_completion; /* private to osd_client.c */
Alex Elder26be8802013-04-15 11:20:42 -0500181 ceph_osdc_callback_t r_callback;
Sage Weilf24e9982009-10-06 11:31:10 -0700182 struct list_head r_unsafe_item;
183
184 struct inode *r_inode; /* for use by callbacks */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700185 void *r_priv; /* ditto */
Sage Weilf24e9982009-10-06 11:31:10 -0700186
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200187 /* set by submitter */
188 u64 r_snapid; /* for reads, CEPH_NOSNAP o/w */
189 struct ceph_snap_context *r_snapc; /* for writes */
190 struct timespec r_mtime; /* ditto */
191 u64 r_data_offset; /* ditto */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200192 bool r_linger; /* don't resend on failure */
Jeff Laytona1f40202017-04-04 08:39:37 -0400193 bool r_abort_on_full; /* return ENOSPC when full */
Sage Weilf24e9982009-10-06 11:31:10 -0700194
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200195 /* internal */
196 unsigned long r_stamp; /* jiffies, send or check time */
Ilya Dryomov7cc5e382017-02-12 17:11:07 +0100197 unsigned long r_start_stamp; /* jiffies */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200198 int r_attempts;
Ilya Dryomov46092452016-04-28 16:07:27 +0200199 u32 r_map_dne_bound;
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100200
201 struct ceph_osd_req_op r_ops[];
Sage Weilf24e9982009-10-06 11:31:10 -0700202};
203
Ilya Dryomov205ee1182014-01-27 17:40:20 +0200204struct ceph_request_redirect {
205 struct ceph_object_locator oloc;
206};
207
Ilya Dryomov922dab62016-05-26 01:15:02 +0200208typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
209 u64 notifier_id, void *data, size_t data_len);
210typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700211
Ilya Dryomov922dab62016-05-26 01:15:02 +0200212struct ceph_osd_linger_request {
213 struct ceph_osd_client *osdc;
214 u64 linger_id;
215 bool committed;
Ilya Dryomov19079202016-04-28 16:07:27 +0200216 bool is_watch; /* watch or notify */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200217
218 struct ceph_osd *osd;
219 struct ceph_osd_request *reg_req;
220 struct ceph_osd_request *ping_req;
221 unsigned long ping_sent;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200222 unsigned long watch_valid_thru;
223 struct list_head pending_lworks;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200224
225 struct ceph_osd_request_target t;
Ilya Dryomov46092452016-04-28 16:07:27 +0200226 u32 map_dne_bound;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200227
228 struct timespec mtime;
229
230 struct kref kref;
231 struct mutex lock;
232 struct rb_node node; /* osd */
233 struct rb_node osdc_node; /* osdc */
Ilya Dryomov46092452016-04-28 16:07:27 +0200234 struct rb_node mc_node; /* map check */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200235 struct list_head scan_item;
236
237 struct completion reg_commit_wait;
Ilya Dryomov19079202016-04-28 16:07:27 +0200238 struct completion notify_finish_wait;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200239 int reg_commit_error;
Ilya Dryomov19079202016-04-28 16:07:27 +0200240 int notify_finish_error;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200241 int last_error;
242
243 u32 register_gen;
Ilya Dryomov19079202016-04-28 16:07:27 +0200244 u64 notify_id;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200245
246 rados_watchcb2_t wcb;
247 rados_watcherrcb_t errcb;
248 void *data;
Ilya Dryomov19079202016-04-28 16:07:27 +0200249
250 struct page ***preply_pages;
251 size_t *preply_len;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700252};
253
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700254struct ceph_watch_item {
255 struct ceph_entity_name name;
256 u64 cookie;
257 struct ceph_entity_addr addr;
258};
259
Ilya Dryomov264048a2016-11-08 15:15:24 +0100260#define CEPH_LINGER_ID_START 0xffff000000000000ULL
261
Sage Weilf24e9982009-10-06 11:31:10 -0700262struct ceph_osd_client {
263 struct ceph_client *client;
264
265 struct ceph_osdmap *osdmap; /* current map */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200266 struct rw_semaphore lock;
Sage Weilf24e9982009-10-06 11:31:10 -0700267
Sage Weilf24e9982009-10-06 11:31:10 -0700268 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800269 struct list_head osd_lru; /* idle osds */
Ilya Dryomov9dd28452016-04-28 16:07:26 +0200270 spinlock_t osd_lru_lock;
Jeff Layton58eb7932017-04-18 09:21:16 -0400271 u32 epoch_barrier;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200272 struct ceph_osd homeless_osd;
273 atomic64_t last_tid; /* tid of last request */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200274 u64 last_linger_id;
275 struct rb_root linger_requests; /* lingering requests */
Ilya Dryomov46092452016-04-28 16:07:27 +0200276 struct rb_root map_checks;
277 struct rb_root linger_map_checks;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200278 atomic_t num_requests;
279 atomic_t num_homeless;
Sage Weilf24e9982009-10-06 11:31:10 -0700280 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800281 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800282#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700283 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800284#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700285
286 mempool_t *req_mempool;
287
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800288 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800289 struct ceph_msgpool msgpool_op_reply;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700290
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700291 struct workqueue_struct *notify_wq;
Sage Weilf24e9982009-10-06 11:31:10 -0700292};
293
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +0200294static inline bool ceph_osdmap_flag(struct ceph_osd_client *osdc, int flag)
295{
296 return osdc->osdmap->flags & flag;
297}
298
Alex Elder5522ae02013-05-01 12:43:04 -0500299extern int ceph_osdc_setup(void);
300extern void ceph_osdc_cleanup(void);
301
Sage Weilf24e9982009-10-06 11:31:10 -0700302extern int ceph_osdc_init(struct ceph_osd_client *osdc,
303 struct ceph_client *client);
304extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
305
306extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
307 struct ceph_msg *msg);
308extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
309 struct ceph_msg *msg);
Jeff Layton58eb7932017-04-18 09:21:16 -0400310void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb);
Sage Weilf24e9982009-10-06 11:31:10 -0700311
Alex Elder49719772013-02-11 12:33:24 -0600312extern void osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800313 unsigned int which, u16 opcode, u32 flags);
Alex Elder49719772013-02-11 12:33:24 -0600314
315extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
316 unsigned int which,
317 struct page **pages, u64 length,
318 u32 alignment, bool pages_from_pool,
319 bool own_pages);
320
Alex Elderc99d2d42013-04-05 01:27:11 -0500321extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
322 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500323 u64 offset, u64 length,
324 u64 truncate_size, u32 truncate_seq);
Alex Elderc99d2d42013-04-05 01:27:11 -0500325extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
326 unsigned int which, u64 length);
Yan, Zheng2c63f492016-01-07 17:32:54 +0800327extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
328 unsigned int which, u64 offset_inc);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500329
330extern struct ceph_osd_data *osd_req_op_extent_osd_data(
331 struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500332 unsigned int which);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500333
334extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500335 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500336 struct page **pages, u64 length,
337 u32 alignment, bool pages_from_pool,
338 bool own_pages);
339extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500340 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500341 struct ceph_pagelist *pagelist);
342#ifdef CONFIG_BLOCK
343extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500344 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500345 struct bio *bio, size_t bio_length);
346#endif /* CONFIG_BLOCK */
347
Alex Elder04017e22013-04-05 14:46:02 -0500348extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
349 unsigned int which,
350 struct ceph_pagelist *pagelist);
Alex Elder6c57b552013-04-19 15:34:49 -0500351extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
352 unsigned int which,
353 struct page **pages, u64 length,
354 u32 alignment, bool pages_from_pool,
355 bool own_pages);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500356extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
Alex Elderc99d2d42013-04-05 01:27:11 -0500357 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500358 struct page **pages, u64 length,
359 u32 alignment, bool pages_from_pool,
360 bool own_pages);
Alex Elderc99d2d42013-04-05 01:27:11 -0500361extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
362 unsigned int which, u16 opcode,
Alex Elder04017e22013-04-05 14:46:02 -0500363 const char *class, const char *method);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800364extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
365 u16 opcode, const char *name, const void *value,
366 size_t size, u8 cmp_op, u8 cmp_mode);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200367extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
368 unsigned int which,
369 u64 expected_object_size,
370 u64 expected_write_size);
Alex Elder33803f32013-03-13 20:50:00 -0500371
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700372extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700373 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500374 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700375 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600376 gfp_t gfp_flags);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200377int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700378
Sage Weilf24e9982009-10-06 11:31:10 -0700379extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
380 struct ceph_file_layout *layout,
381 struct ceph_vino vino,
Alex Elderacead002013-03-14 14:09:05 -0500382 u64 offset, u64 *len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800383 unsigned int which, int num_ops,
384 int opcode, int flags,
Sage Weilf24e9982009-10-06 11:31:10 -0700385 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500386 u32 truncate_seq, u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -0600387 bool use_mempool);
Sage Weilf24e9982009-10-06 11:31:10 -0700388
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400389extern void ceph_osdc_get_request(struct ceph_osd_request *req);
390extern void ceph_osdc_put_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700391
392extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
393 struct ceph_osd_request *req,
394 bool nofail);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +0400395extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700396extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
397 struct ceph_osd_request *req);
398extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
399
Josh Durgindd935f42013-08-28 21:43:09 -0700400extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
Ilya Dryomov7cca78c2016-04-28 16:07:28 +0200401void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
Josh Durgindd935f42013-08-28 21:43:09 -0700402
Douglas Fuller428a7152015-06-17 14:49:45 -0400403int ceph_osdc_call(struct ceph_osd_client *osdc,
404 struct ceph_object_id *oid,
405 struct ceph_object_locator *oloc,
406 const char *class, const char *method,
407 unsigned int flags,
408 struct page *req_page, size_t req_len,
409 struct page *resp_page, size_t *resp_len);
410
Sage Weilf24e9982009-10-06 11:31:10 -0700411extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
412 struct ceph_vino vino,
413 struct ceph_file_layout *layout,
414 u64 off, u64 *plen,
415 u32 truncate_seq, u64 truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800416 struct page **pages, int nr_pages,
417 int page_align);
Sage Weilf24e9982009-10-06 11:31:10 -0700418
419extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
420 struct ceph_vino vino,
421 struct ceph_file_layout *layout,
422 struct ceph_snap_context *sc,
423 u64 off, u64 len,
424 u32 truncate_seq, u64 truncate_size,
425 struct timespec *mtime,
Alex Elder24808822013-02-15 11:42:29 -0600426 struct page **pages, int nr_pages);
Sage Weilf24e9982009-10-06 11:31:10 -0700427
Ilya Dryomov922dab62016-05-26 01:15:02 +0200428/* watch/notify */
429struct ceph_osd_linger_request *
430ceph_osdc_watch(struct ceph_osd_client *osdc,
431 struct ceph_object_id *oid,
432 struct ceph_object_locator *oloc,
433 rados_watchcb2_t wcb,
434 rados_watcherrcb_t errcb,
435 void *data);
436int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
437 struct ceph_osd_linger_request *lreq);
438
439int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
440 struct ceph_object_id *oid,
441 struct ceph_object_locator *oloc,
442 u64 notify_id,
443 u64 cookie,
444 void *payload,
445 size_t payload_len);
Ilya Dryomov19079202016-04-28 16:07:27 +0200446int ceph_osdc_notify(struct ceph_osd_client *osdc,
447 struct ceph_object_id *oid,
448 struct ceph_object_locator *oloc,
449 void *payload,
450 size_t payload_len,
451 u32 timeout,
452 struct page ***preply_pages,
453 size_t *preply_len);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200454int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
455 struct ceph_osd_linger_request *lreq);
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700456int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
457 struct ceph_object_id *oid,
458 struct ceph_object_locator *oloc,
459 struct ceph_watch_item **watchers,
460 u32 *num_watchers);
Sage Weilf24e9982009-10-06 11:31:10 -0700461#endif
462