blob: 528ccc943cee0a5da4bc95e5d200a8591debe836 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sage Weilf24e9982009-10-06 11:31:10 -07002#ifndef _FS_CEPH_OSD_CLIENT_H
3#define _FS_CEPH_OSD_CLIENT_H
4
Ilya Dryomova02a9462017-06-19 12:18:05 +02005#include <linux/bitrev.h>
Sage Weilf24e9982009-10-06 11:31:10 -07006#include <linux/completion.h>
Sage Weil415e49a2009-12-07 13:37:03 -08007#include <linux/kref.h>
Sage Weilf24e9982009-10-06 11:31:10 -07008#include <linux/mempool.h>
9#include <linux/rbtree.h>
Elena Reshetova02113a02017-03-17 14:10:28 +020010#include <linux/refcount.h>
Sage Weilf24e9982009-10-06 11:31:10 -070011
Alex Elder6c4a1912012-05-16 15:16:38 -050012#include <linux/ceph/types.h>
13#include <linux/ceph/osdmap.h>
14#include <linux/ceph/messenger.h>
Ilya Dryomovb2aa5d02016-06-07 21:57:15 +020015#include <linux/ceph/msgpool.h>
Alex Elder6c4a1912012-05-16 15:16:38 -050016#include <linux/ceph/auth.h>
Alex Elderc8858372012-11-13 21:11:15 -060017#include <linux/ceph/pagelist.h>
Sage Weilf24e9982009-10-06 11:31:10 -070018
19struct ceph_msg;
20struct ceph_snap_context;
21struct ceph_osd_request;
22struct ceph_osd_client;
23
24/*
25 * completion callback for async writepages
26 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +020027typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *);
Sage Weilf24e9982009-10-06 11:31:10 -070028
Ilya Dryomov63244fa2016-04-28 16:07:23 +020029#define CEPH_HOMELESS_OSD -1
30
Sage Weilf24e9982009-10-06 11:31:10 -070031/* a given osd we're communicating with */
32struct ceph_osd {
Elena Reshetova02113a02017-03-17 14:10:28 +020033 refcount_t o_ref;
Sage Weilf24e9982009-10-06 11:31:10 -070034 struct ceph_osd_client *o_osdc;
35 int o_osd;
36 int o_incarnation;
37 struct rb_node o_node;
38 struct ceph_connection o_con;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020039 struct rb_root o_requests;
Ilya Dryomov922dab62016-05-26 01:15:02 +020040 struct rb_root o_linger_requests;
Ilya Dryomova02a9462017-06-19 12:18:05 +020041 struct rb_root o_backoff_mappings;
42 struct rb_root o_backoffs_by_id;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080043 struct list_head o_osd_lru;
Alex Elder6c4a1912012-05-16 15:16:38 -050044 struct ceph_auth_handshake o_auth;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080045 unsigned long lru_ttl;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -080046 struct list_head o_keepalive_item;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020047 struct mutex lock;
Sage Weilf24e9982009-10-06 11:31:10 -070048};
49
Ilya Dryomov3f1af422016-02-09 17:50:15 +010050#define CEPH_OSD_SLAB_OPS 2
51#define CEPH_OSD_MAX_OPS 16
Sage Weil1b83bef2013-02-25 16:11:12 -080052
Alex Elder2ac2b7a2013-02-14 12:16:43 -060053enum ceph_osd_data_type {
Alex Elderec9123c2013-04-05 01:27:12 -050054 CEPH_OSD_DATA_TYPE_NONE = 0,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060055 CEPH_OSD_DATA_TYPE_PAGES,
Alex Elder9a5e6d02013-03-08 13:35:36 -060056 CEPH_OSD_DATA_TYPE_PAGELIST,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060057#ifdef CONFIG_BLOCK
58 CEPH_OSD_DATA_TYPE_BIO,
59#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +010060 CEPH_OSD_DATA_TYPE_BVECS,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060061};
62
Alex Elder2794a822013-02-14 12:16:43 -060063struct ceph_osd_data {
Alex Elder2ac2b7a2013-02-14 12:16:43 -060064 enum ceph_osd_data_type type;
65 union {
Alex Elder2794a822013-02-14 12:16:43 -060066 struct {
67 struct page **pages;
Alex Eldere0c59482013-03-07 15:38:25 -060068 u64 length;
Alex Elder2794a822013-02-14 12:16:43 -060069 u32 alignment;
70 bool pages_from_pool;
71 bool own_pages;
72 };
Alex Elder9a5e6d02013-03-08 13:35:36 -060073 struct ceph_pagelist *pagelist;
Alex Elder2794a822013-02-14 12:16:43 -060074#ifdef CONFIG_BLOCK
Alex Elderfdce58c2013-03-14 14:09:06 -050075 struct {
Ilya Dryomov5359a172018-01-20 10:30:10 +010076 struct ceph_bio_iter bio_pos;
77 u32 bio_length;
Alex Elderfdce58c2013-03-14 14:09:06 -050078 };
Alex Elder2794a822013-02-14 12:16:43 -060079#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +010080 struct ceph_bvec_iter bvec_pos;
Alex Elder2794a822013-02-14 12:16:43 -060081 };
82};
83
Alex Elder79528732013-04-03 21:32:51 -050084struct ceph_osd_req_op {
85 u16 op; /* CEPH_OSD_OP_* */
Ilya Dryomov7b25bf52014-02-25 16:22:26 +020086 u32 flags; /* CEPH_OSD_OP_FLAG_* */
Ilya Dryomovde2aa102016-02-08 13:39:46 +010087 u32 indata_len; /* request */
Yan, Zheng7665d852016-01-07 16:48:57 +080088 u32 outdata_len; /* reply */
89 s32 rval;
90
Alex Elder79528732013-04-03 21:32:51 -050091 union {
Alex Elder49719772013-02-11 12:33:24 -060092 struct ceph_osd_data raw_data_in;
Alex Elder79528732013-04-03 21:32:51 -050093 struct {
94 u64 offset, length;
95 u64 truncate_size;
96 u32 truncate_seq;
Alex Elder54764922013-04-05 01:27:12 -050097 struct ceph_osd_data osd_data;
Alex Elder79528732013-04-03 21:32:51 -050098 } extent;
99 struct {
Ilya Dryomovd7d5a002014-12-19 14:00:41 +0300100 u32 name_len;
101 u32 value_len;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800102 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
103 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
104 struct ceph_osd_data osd_data;
105 } xattr;
106 struct {
Alex Elder79528732013-04-03 21:32:51 -0500107 const char *class_name;
108 const char *method_name;
Alex Elder54764922013-04-05 01:27:12 -0500109 struct ceph_osd_data request_info;
Alex Elder04017e22013-04-05 14:46:02 -0500110 struct ceph_osd_data request_data;
Alex Elder54764922013-04-05 01:27:12 -0500111 struct ceph_osd_data response_data;
Alex Elder79528732013-04-03 21:32:51 -0500112 __u8 class_len;
113 __u8 method_len;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200114 u32 indata_len;
Alex Elder79528732013-04-03 21:32:51 -0500115 } cls;
116 struct {
117 u64 cookie;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200118 __u8 op; /* CEPH_OSD_WATCH_OP_ */
119 u32 gen;
Alex Elder79528732013-04-03 21:32:51 -0500120 } watch;
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200121 struct {
Ilya Dryomov922dab62016-05-26 01:15:02 +0200122 struct ceph_osd_data request_data;
123 } notify_ack;
124 struct {
Ilya Dryomov19079202016-04-28 16:07:27 +0200125 u64 cookie;
126 struct ceph_osd_data request_data;
127 struct ceph_osd_data response_data;
128 } notify;
129 struct {
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700130 struct ceph_osd_data response_data;
131 } list_watchers;
132 struct {
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200133 u64 expected_object_size;
134 u64 expected_write_size;
135 } alloc_hint;
Alex Elder79528732013-04-03 21:32:51 -0500136 };
137};
138
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200139struct ceph_osd_request_target {
140 struct ceph_object_id base_oid;
141 struct ceph_object_locator base_oloc;
142 struct ceph_object_id target_oid;
143 struct ceph_object_locator target_oloc;
144
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200145 struct ceph_pg pgid; /* last raw pg we mapped to */
146 struct ceph_spg spgid; /* last actual spg we mapped to */
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200147 u32 pg_num;
148 u32 pg_num_mask;
149 struct ceph_osds acting;
150 struct ceph_osds up;
151 int size;
152 int min_size;
153 bool sort_bitwise;
Ilya Dryomovae78dd82017-07-27 17:59:14 +0200154 bool recovery_deletes;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200155
156 unsigned int flags; /* CEPH_OSD_FLAG_* */
157 bool paused;
158
Ilya Dryomov04c7d782017-06-15 16:30:55 +0200159 u32 epoch;
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +0200160 u32 last_force_resend;
161
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200162 int osd;
163};
164
Sage Weilf24e9982009-10-06 11:31:10 -0700165/* an in-flight request */
166struct ceph_osd_request {
167 u64 r_tid; /* unique for this client */
168 struct rb_node r_node;
Ilya Dryomov46092452016-04-28 16:07:27 +0200169 struct rb_node r_mc_node; /* map check */
Sage Weilf24e9982009-10-06 11:31:10 -0700170 struct ceph_osd *r_osd;
Ilya Dryomova66dd382016-04-28 16:07:23 +0200171
172 struct ceph_osd_request_target r_t;
173#define r_base_oid r_t.base_oid
174#define r_base_oloc r_t.base_oloc
175#define r_flags r_t.flags
Sage Weilf24e9982009-10-06 11:31:10 -0700176
177 struct ceph_msg *r_request, *r_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700178 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil1b83bef2013-02-25 16:11:12 -0800179
Alex Elder79528732013-04-03 21:32:51 -0500180 /* request osd ops array */
181 unsigned int r_num_ops;
Alex Elder79528732013-04-03 21:32:51 -0500182
Sage Weil1b83bef2013-02-25 16:11:12 -0800183 int r_result;
Sage Weilf24e9982009-10-06 11:31:10 -0700184
185 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -0800186 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -0700187 bool r_mempool;
Ilya Dryomovb18b9552017-02-11 18:46:08 +0100188 struct completion r_completion; /* private to osd_client.c */
Alex Elder26be8802013-04-15 11:20:42 -0500189 ceph_osdc_callback_t r_callback;
Sage Weilf24e9982009-10-06 11:31:10 -0700190 struct list_head r_unsafe_item;
191
192 struct inode *r_inode; /* for use by callbacks */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700193 void *r_priv; /* ditto */
Sage Weilf24e9982009-10-06 11:31:10 -0700194
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200195 /* set by submitter */
196 u64 r_snapid; /* for reads, CEPH_NOSNAP o/w */
197 struct ceph_snap_context *r_snapc; /* for writes */
198 struct timespec r_mtime; /* ditto */
199 u64 r_data_offset; /* ditto */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200200 bool r_linger; /* don't resend on failure */
Jeff Laytona1f40202017-04-04 08:39:37 -0400201 bool r_abort_on_full; /* return ENOSPC when full */
Sage Weilf24e9982009-10-06 11:31:10 -0700202
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200203 /* internal */
204 unsigned long r_stamp; /* jiffies, send or check time */
Ilya Dryomov7cc5e382017-02-12 17:11:07 +0100205 unsigned long r_start_stamp; /* jiffies */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200206 int r_attempts;
Ilya Dryomov46092452016-04-28 16:07:27 +0200207 u32 r_map_dne_bound;
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100208
209 struct ceph_osd_req_op r_ops[];
Sage Weilf24e9982009-10-06 11:31:10 -0700210};
211
Ilya Dryomov205ee1182014-01-27 17:40:20 +0200212struct ceph_request_redirect {
213 struct ceph_object_locator oloc;
214};
215
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200216/*
217 * osd request identifier
218 *
219 * caller name + incarnation# + tid to unique identify this request
220 */
221struct ceph_osd_reqid {
222 struct ceph_entity_name name;
223 __le64 tid;
224 __le32 inc;
225} __packed;
226
227struct ceph_blkin_trace_info {
228 __le64 trace_id;
229 __le64 span_id;
230 __le64 parent_span_id;
231} __packed;
232
Ilya Dryomov922dab62016-05-26 01:15:02 +0200233typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
234 u64 notifier_id, void *data, size_t data_len);
235typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700236
Ilya Dryomov922dab62016-05-26 01:15:02 +0200237struct ceph_osd_linger_request {
238 struct ceph_osd_client *osdc;
239 u64 linger_id;
240 bool committed;
Ilya Dryomov19079202016-04-28 16:07:27 +0200241 bool is_watch; /* watch or notify */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200242
243 struct ceph_osd *osd;
244 struct ceph_osd_request *reg_req;
245 struct ceph_osd_request *ping_req;
246 unsigned long ping_sent;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200247 unsigned long watch_valid_thru;
248 struct list_head pending_lworks;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200249
250 struct ceph_osd_request_target t;
Ilya Dryomov46092452016-04-28 16:07:27 +0200251 u32 map_dne_bound;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200252
253 struct timespec mtime;
254
255 struct kref kref;
256 struct mutex lock;
257 struct rb_node node; /* osd */
258 struct rb_node osdc_node; /* osdc */
Ilya Dryomov46092452016-04-28 16:07:27 +0200259 struct rb_node mc_node; /* map check */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200260 struct list_head scan_item;
261
262 struct completion reg_commit_wait;
Ilya Dryomov19079202016-04-28 16:07:27 +0200263 struct completion notify_finish_wait;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200264 int reg_commit_error;
Ilya Dryomov19079202016-04-28 16:07:27 +0200265 int notify_finish_error;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200266 int last_error;
267
268 u32 register_gen;
Ilya Dryomov19079202016-04-28 16:07:27 +0200269 u64 notify_id;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200270
271 rados_watchcb2_t wcb;
272 rados_watcherrcb_t errcb;
273 void *data;
Ilya Dryomov19079202016-04-28 16:07:27 +0200274
275 struct page ***preply_pages;
276 size_t *preply_len;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700277};
278
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700279struct ceph_watch_item {
280 struct ceph_entity_name name;
281 u64 cookie;
282 struct ceph_entity_addr addr;
283};
284
Ilya Dryomova02a9462017-06-19 12:18:05 +0200285struct ceph_spg_mapping {
286 struct rb_node node;
287 struct ceph_spg spgid;
288
289 struct rb_root backoffs;
290};
291
292struct ceph_hobject_id {
293 void *key;
294 size_t key_len;
295 void *oid;
296 size_t oid_len;
297 u64 snapid;
298 u32 hash;
299 u8 is_max;
300 void *nspace;
301 size_t nspace_len;
302 s64 pool;
303
304 /* cache */
305 u32 hash_reverse_bits;
306};
307
308static inline void ceph_hoid_build_hash_cache(struct ceph_hobject_id *hoid)
309{
310 hoid->hash_reverse_bits = bitrev32(hoid->hash);
311}
312
313/*
314 * PG-wide backoff: [begin, end)
315 * per-object backoff: begin == end
316 */
317struct ceph_osd_backoff {
318 struct rb_node spg_node;
319 struct rb_node id_node;
320
321 struct ceph_spg spgid;
322 u64 id;
323 struct ceph_hobject_id *begin;
324 struct ceph_hobject_id *end;
325};
326
Ilya Dryomov264048a2016-11-08 15:15:24 +0100327#define CEPH_LINGER_ID_START 0xffff000000000000ULL
328
Sage Weilf24e9982009-10-06 11:31:10 -0700329struct ceph_osd_client {
330 struct ceph_client *client;
331
332 struct ceph_osdmap *osdmap; /* current map */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200333 struct rw_semaphore lock;
Sage Weilf24e9982009-10-06 11:31:10 -0700334
Sage Weilf24e9982009-10-06 11:31:10 -0700335 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800336 struct list_head osd_lru; /* idle osds */
Ilya Dryomov9dd28452016-04-28 16:07:26 +0200337 spinlock_t osd_lru_lock;
Jeff Layton58eb7932017-04-18 09:21:16 -0400338 u32 epoch_barrier;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200339 struct ceph_osd homeless_osd;
340 atomic64_t last_tid; /* tid of last request */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200341 u64 last_linger_id;
342 struct rb_root linger_requests; /* lingering requests */
Ilya Dryomov46092452016-04-28 16:07:27 +0200343 struct rb_root map_checks;
344 struct rb_root linger_map_checks;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200345 atomic_t num_requests;
346 atomic_t num_homeless;
Sage Weilf24e9982009-10-06 11:31:10 -0700347 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800348 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800349#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700350 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800351#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700352
353 mempool_t *req_mempool;
354
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800355 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800356 struct ceph_msgpool msgpool_op_reply;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700357
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700358 struct workqueue_struct *notify_wq;
Sage Weilf24e9982009-10-06 11:31:10 -0700359};
360
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +0200361static inline bool ceph_osdmap_flag(struct ceph_osd_client *osdc, int flag)
362{
363 return osdc->osdmap->flags & flag;
364}
365
Alex Elder5522ae02013-05-01 12:43:04 -0500366extern int ceph_osdc_setup(void);
367extern void ceph_osdc_cleanup(void);
368
Sage Weilf24e9982009-10-06 11:31:10 -0700369extern int ceph_osdc_init(struct ceph_osd_client *osdc,
370 struct ceph_client *client);
371extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
372
373extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
374 struct ceph_msg *msg);
375extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
376 struct ceph_msg *msg);
Jeff Layton58eb7932017-04-18 09:21:16 -0400377void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb);
Sage Weilf24e9982009-10-06 11:31:10 -0700378
Alex Elder49719772013-02-11 12:33:24 -0600379extern void osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800380 unsigned int which, u16 opcode, u32 flags);
Alex Elder49719772013-02-11 12:33:24 -0600381
382extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
383 unsigned int which,
384 struct page **pages, u64 length,
385 u32 alignment, bool pages_from_pool,
386 bool own_pages);
387
Alex Elderc99d2d42013-04-05 01:27:11 -0500388extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
389 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500390 u64 offset, u64 length,
391 u64 truncate_size, u32 truncate_seq);
Alex Elderc99d2d42013-04-05 01:27:11 -0500392extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
393 unsigned int which, u64 length);
Yan, Zheng2c63f492016-01-07 17:32:54 +0800394extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
395 unsigned int which, u64 offset_inc);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500396
397extern struct ceph_osd_data *osd_req_op_extent_osd_data(
398 struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500399 unsigned int which);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500400
401extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500402 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500403 struct page **pages, u64 length,
404 u32 alignment, bool pages_from_pool,
405 bool own_pages);
406extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500407 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500408 struct ceph_pagelist *pagelist);
409#ifdef CONFIG_BLOCK
Ilya Dryomov5359a172018-01-20 10:30:10 +0100410void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
411 unsigned int which,
412 struct ceph_bio_iter *bio_pos,
413 u32 bio_length);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500414#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100415void osd_req_op_extent_osd_data_bvec_pos(struct ceph_osd_request *osd_req,
416 unsigned int which,
417 struct ceph_bvec_iter *bvec_pos);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500418
Alex Elder04017e22013-04-05 14:46:02 -0500419extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
420 unsigned int which,
421 struct ceph_pagelist *pagelist);
Alex Elder6c57b552013-04-19 15:34:49 -0500422extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
423 unsigned int which,
424 struct page **pages, u64 length,
425 u32 alignment, bool pages_from_pool,
426 bool own_pages);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100427void osd_req_op_cls_request_data_bvecs(struct ceph_osd_request *osd_req,
428 unsigned int which,
429 struct bio_vec *bvecs, u32 bytes);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500430extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
Alex Elderc99d2d42013-04-05 01:27:11 -0500431 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500432 struct page **pages, u64 length,
433 u32 alignment, bool pages_from_pool,
434 bool own_pages);
Alex Elderc99d2d42013-04-05 01:27:11 -0500435extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
436 unsigned int which, u16 opcode,
Alex Elder04017e22013-04-05 14:46:02 -0500437 const char *class, const char *method);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800438extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
439 u16 opcode, const char *name, const void *value,
440 size_t size, u8 cmp_op, u8 cmp_mode);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200441extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
442 unsigned int which,
443 u64 expected_object_size,
444 u64 expected_write_size);
Alex Elder33803f32013-03-13 20:50:00 -0500445
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700446extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700447 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500448 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700449 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600450 gfp_t gfp_flags);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200451int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700452
Sage Weilf24e9982009-10-06 11:31:10 -0700453extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
454 struct ceph_file_layout *layout,
455 struct ceph_vino vino,
Alex Elderacead002013-03-14 14:09:05 -0500456 u64 offset, u64 *len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800457 unsigned int which, int num_ops,
458 int opcode, int flags,
Sage Weilf24e9982009-10-06 11:31:10 -0700459 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500460 u32 truncate_seq, u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -0600461 bool use_mempool);
Sage Weilf24e9982009-10-06 11:31:10 -0700462
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400463extern void ceph_osdc_get_request(struct ceph_osd_request *req);
464extern void ceph_osdc_put_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700465
466extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
467 struct ceph_osd_request *req,
468 bool nofail);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +0400469extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700470extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
471 struct ceph_osd_request *req);
472extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
473
Josh Durgindd935f42013-08-28 21:43:09 -0700474extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
Ilya Dryomov7cca78c2016-04-28 16:07:28 +0200475void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
Josh Durgindd935f42013-08-28 21:43:09 -0700476
Douglas Fuller428a7152015-06-17 14:49:45 -0400477int ceph_osdc_call(struct ceph_osd_client *osdc,
478 struct ceph_object_id *oid,
479 struct ceph_object_locator *oloc,
480 const char *class, const char *method,
481 unsigned int flags,
482 struct page *req_page, size_t req_len,
483 struct page *resp_page, size_t *resp_len);
484
Sage Weilf24e9982009-10-06 11:31:10 -0700485extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
486 struct ceph_vino vino,
487 struct ceph_file_layout *layout,
488 u64 off, u64 *plen,
489 u32 truncate_seq, u64 truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800490 struct page **pages, int nr_pages,
491 int page_align);
Sage Weilf24e9982009-10-06 11:31:10 -0700492
493extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
494 struct ceph_vino vino,
495 struct ceph_file_layout *layout,
496 struct ceph_snap_context *sc,
497 u64 off, u64 len,
498 u32 truncate_seq, u64 truncate_size,
499 struct timespec *mtime,
Alex Elder24808822013-02-15 11:42:29 -0600500 struct page **pages, int nr_pages);
Sage Weilf24e9982009-10-06 11:31:10 -0700501
Ilya Dryomov922dab62016-05-26 01:15:02 +0200502/* watch/notify */
503struct ceph_osd_linger_request *
504ceph_osdc_watch(struct ceph_osd_client *osdc,
505 struct ceph_object_id *oid,
506 struct ceph_object_locator *oloc,
507 rados_watchcb2_t wcb,
508 rados_watcherrcb_t errcb,
509 void *data);
510int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
511 struct ceph_osd_linger_request *lreq);
512
513int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
514 struct ceph_object_id *oid,
515 struct ceph_object_locator *oloc,
516 u64 notify_id,
517 u64 cookie,
518 void *payload,
519 size_t payload_len);
Ilya Dryomov19079202016-04-28 16:07:27 +0200520int ceph_osdc_notify(struct ceph_osd_client *osdc,
521 struct ceph_object_id *oid,
522 struct ceph_object_locator *oloc,
523 void *payload,
524 size_t payload_len,
525 u32 timeout,
526 struct page ***preply_pages,
527 size_t *preply_len);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200528int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
529 struct ceph_osd_linger_request *lreq);
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700530int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
531 struct ceph_object_id *oid,
532 struct ceph_object_locator *oloc,
533 struct ceph_watch_item **watchers,
534 u32 *num_watchers);
Sage Weilf24e9982009-10-06 11:31:10 -0700535#endif
536