blob: 5a62dbd3f4c26ce84b44f78810d82e8abbea276c [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 Dryomov0010f702018-05-04 16:57:30 +020080 struct {
81 struct ceph_bvec_iter bvec_pos;
82 u32 num_bvecs;
83 };
Alex Elder2794a822013-02-14 12:16:43 -060084 };
85};
86
Alex Elder79528732013-04-03 21:32:51 -050087struct ceph_osd_req_op {
88 u16 op; /* CEPH_OSD_OP_* */
Ilya Dryomov7b25bf52014-02-25 16:22:26 +020089 u32 flags; /* CEPH_OSD_OP_FLAG_* */
Ilya Dryomovde2aa102016-02-08 13:39:46 +010090 u32 indata_len; /* request */
Yan, Zheng7665d852016-01-07 16:48:57 +080091 u32 outdata_len; /* reply */
92 s32 rval;
93
Alex Elder79528732013-04-03 21:32:51 -050094 union {
Alex Elder49719772013-02-11 12:33:24 -060095 struct ceph_osd_data raw_data_in;
Alex Elder79528732013-04-03 21:32:51 -050096 struct {
97 u64 offset, length;
98 u64 truncate_size;
99 u32 truncate_seq;
Alex Elder54764922013-04-05 01:27:12 -0500100 struct ceph_osd_data osd_data;
Alex Elder79528732013-04-03 21:32:51 -0500101 } extent;
102 struct {
Ilya Dryomovd7d5a002014-12-19 14:00:41 +0300103 u32 name_len;
104 u32 value_len;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800105 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
106 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
107 struct ceph_osd_data osd_data;
108 } xattr;
109 struct {
Alex Elder79528732013-04-03 21:32:51 -0500110 const char *class_name;
111 const char *method_name;
Alex Elder54764922013-04-05 01:27:12 -0500112 struct ceph_osd_data request_info;
Alex Elder04017e22013-04-05 14:46:02 -0500113 struct ceph_osd_data request_data;
Alex Elder54764922013-04-05 01:27:12 -0500114 struct ceph_osd_data response_data;
Alex Elder79528732013-04-03 21:32:51 -0500115 __u8 class_len;
116 __u8 method_len;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200117 u32 indata_len;
Alex Elder79528732013-04-03 21:32:51 -0500118 } cls;
119 struct {
120 u64 cookie;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200121 __u8 op; /* CEPH_OSD_WATCH_OP_ */
122 u32 gen;
Alex Elder79528732013-04-03 21:32:51 -0500123 } watch;
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200124 struct {
Ilya Dryomov922dab62016-05-26 01:15:02 +0200125 struct ceph_osd_data request_data;
126 } notify_ack;
127 struct {
Ilya Dryomov19079202016-04-28 16:07:27 +0200128 u64 cookie;
129 struct ceph_osd_data request_data;
130 struct ceph_osd_data response_data;
131 } notify;
132 struct {
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700133 struct ceph_osd_data response_data;
134 } list_watchers;
135 struct {
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200136 u64 expected_object_size;
137 u64 expected_write_size;
138 } alloc_hint;
Luis Henriques23ddf9b2018-10-15 16:45:58 +0100139 struct {
140 u64 snapid;
141 u64 src_version;
142 u8 flags;
143 u32 src_fadvise_flags;
144 struct ceph_osd_data osd_data;
145 } copy_from;
Alex Elder79528732013-04-03 21:32:51 -0500146 };
147};
148
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200149struct ceph_osd_request_target {
150 struct ceph_object_id base_oid;
151 struct ceph_object_locator base_oloc;
152 struct ceph_object_id target_oid;
153 struct ceph_object_locator target_oloc;
154
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200155 struct ceph_pg pgid; /* last raw pg we mapped to */
156 struct ceph_spg spgid; /* last actual spg we mapped to */
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200157 u32 pg_num;
158 u32 pg_num_mask;
159 struct ceph_osds acting;
160 struct ceph_osds up;
161 int size;
162 int min_size;
163 bool sort_bitwise;
Ilya Dryomovae78dd82017-07-27 17:59:14 +0200164 bool recovery_deletes;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200165
166 unsigned int flags; /* CEPH_OSD_FLAG_* */
167 bool paused;
168
Ilya Dryomov04c7d782017-06-15 16:30:55 +0200169 u32 epoch;
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +0200170 u32 last_force_resend;
171
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200172 int osd;
173};
174
Sage Weilf24e9982009-10-06 11:31:10 -0700175/* an in-flight request */
176struct ceph_osd_request {
177 u64 r_tid; /* unique for this client */
178 struct rb_node r_node;
Ilya Dryomov46092452016-04-28 16:07:27 +0200179 struct rb_node r_mc_node; /* map check */
Ilya Dryomov88bc1922018-05-21 16:00:29 +0200180 struct work_struct r_complete_work;
Sage Weilf24e9982009-10-06 11:31:10 -0700181 struct ceph_osd *r_osd;
Ilya Dryomova66dd382016-04-28 16:07:23 +0200182
183 struct ceph_osd_request_target r_t;
184#define r_base_oid r_t.base_oid
185#define r_base_oloc r_t.base_oloc
186#define r_flags r_t.flags
Sage Weilf24e9982009-10-06 11:31:10 -0700187
188 struct ceph_msg *r_request, *r_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700189 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil1b83bef2013-02-25 16:11:12 -0800190
Alex Elder79528732013-04-03 21:32:51 -0500191 /* request osd ops array */
192 unsigned int r_num_ops;
Alex Elder79528732013-04-03 21:32:51 -0500193
Sage Weil1b83bef2013-02-25 16:11:12 -0800194 int r_result;
Sage Weilf24e9982009-10-06 11:31:10 -0700195
196 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -0800197 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -0700198 bool r_mempool;
Ilya Dryomovb18b9552017-02-11 18:46:08 +0100199 struct completion r_completion; /* private to osd_client.c */
Alex Elder26be8802013-04-15 11:20:42 -0500200 ceph_osdc_callback_t r_callback;
Sage Weilf24e9982009-10-06 11:31:10 -0700201
202 struct inode *r_inode; /* for use by callbacks */
Ilya Dryomov94e85772019-07-08 12:50:09 +0200203 struct list_head r_private_item; /* ditto */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700204 void *r_priv; /* ditto */
Sage Weilf24e9982009-10-06 11:31:10 -0700205
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200206 /* set by submitter */
207 u64 r_snapid; /* for reads, CEPH_NOSNAP o/w */
208 struct ceph_snap_context *r_snapc; /* for writes */
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200209 struct timespec64 r_mtime; /* ditto */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200210 u64 r_data_offset; /* ditto */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200211 bool r_linger; /* don't resend on failure */
Sage Weilf24e9982009-10-06 11:31:10 -0700212
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200213 /* internal */
214 unsigned long r_stamp; /* jiffies, send or check time */
Ilya Dryomov7cc5e382017-02-12 17:11:07 +0100215 unsigned long r_start_stamp; /* jiffies */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200216 int r_attempts;
Ilya Dryomov46092452016-04-28 16:07:27 +0200217 u32 r_map_dne_bound;
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100218
219 struct ceph_osd_req_op r_ops[];
Sage Weilf24e9982009-10-06 11:31:10 -0700220};
221
Ilya Dryomov205ee1182014-01-27 17:40:20 +0200222struct ceph_request_redirect {
223 struct ceph_object_locator oloc;
224};
225
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200226/*
227 * osd request identifier
228 *
229 * caller name + incarnation# + tid to unique identify this request
230 */
231struct ceph_osd_reqid {
232 struct ceph_entity_name name;
233 __le64 tid;
234 __le32 inc;
235} __packed;
236
237struct ceph_blkin_trace_info {
238 __le64 trace_id;
239 __le64 span_id;
240 __le64 parent_span_id;
241} __packed;
242
Ilya Dryomov922dab62016-05-26 01:15:02 +0200243typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
244 u64 notifier_id, void *data, size_t data_len);
245typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700246
Ilya Dryomov922dab62016-05-26 01:15:02 +0200247struct ceph_osd_linger_request {
248 struct ceph_osd_client *osdc;
249 u64 linger_id;
250 bool committed;
Ilya Dryomov19079202016-04-28 16:07:27 +0200251 bool is_watch; /* watch or notify */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200252
253 struct ceph_osd *osd;
254 struct ceph_osd_request *reg_req;
255 struct ceph_osd_request *ping_req;
256 unsigned long ping_sent;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200257 unsigned long watch_valid_thru;
258 struct list_head pending_lworks;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200259
260 struct ceph_osd_request_target t;
Ilya Dryomov46092452016-04-28 16:07:27 +0200261 u32 map_dne_bound;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200262
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200263 struct timespec64 mtime;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200264
265 struct kref kref;
266 struct mutex lock;
267 struct rb_node node; /* osd */
268 struct rb_node osdc_node; /* osdc */
Ilya Dryomov46092452016-04-28 16:07:27 +0200269 struct rb_node mc_node; /* map check */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200270 struct list_head scan_item;
271
272 struct completion reg_commit_wait;
Ilya Dryomov19079202016-04-28 16:07:27 +0200273 struct completion notify_finish_wait;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200274 int reg_commit_error;
Ilya Dryomov19079202016-04-28 16:07:27 +0200275 int notify_finish_error;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200276 int last_error;
277
278 u32 register_gen;
Ilya Dryomov19079202016-04-28 16:07:27 +0200279 u64 notify_id;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200280
281 rados_watchcb2_t wcb;
282 rados_watcherrcb_t errcb;
283 void *data;
Ilya Dryomov19079202016-04-28 16:07:27 +0200284
285 struct page ***preply_pages;
286 size_t *preply_len;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700287};
288
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700289struct ceph_watch_item {
290 struct ceph_entity_name name;
291 u64 cookie;
292 struct ceph_entity_addr addr;
293};
294
Ilya Dryomova02a9462017-06-19 12:18:05 +0200295struct ceph_spg_mapping {
296 struct rb_node node;
297 struct ceph_spg spgid;
298
299 struct rb_root backoffs;
300};
301
302struct ceph_hobject_id {
303 void *key;
304 size_t key_len;
305 void *oid;
306 size_t oid_len;
307 u64 snapid;
308 u32 hash;
309 u8 is_max;
310 void *nspace;
311 size_t nspace_len;
312 s64 pool;
313
314 /* cache */
315 u32 hash_reverse_bits;
316};
317
318static inline void ceph_hoid_build_hash_cache(struct ceph_hobject_id *hoid)
319{
320 hoid->hash_reverse_bits = bitrev32(hoid->hash);
321}
322
323/*
324 * PG-wide backoff: [begin, end)
325 * per-object backoff: begin == end
326 */
327struct ceph_osd_backoff {
328 struct rb_node spg_node;
329 struct rb_node id_node;
330
331 struct ceph_spg spgid;
332 u64 id;
333 struct ceph_hobject_id *begin;
334 struct ceph_hobject_id *end;
335};
336
Ilya Dryomov264048a2016-11-08 15:15:24 +0100337#define CEPH_LINGER_ID_START 0xffff000000000000ULL
338
Sage Weilf24e9982009-10-06 11:31:10 -0700339struct ceph_osd_client {
340 struct ceph_client *client;
341
342 struct ceph_osdmap *osdmap; /* current map */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200343 struct rw_semaphore lock;
Sage Weilf24e9982009-10-06 11:31:10 -0700344
Sage Weilf24e9982009-10-06 11:31:10 -0700345 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800346 struct list_head osd_lru; /* idle osds */
Ilya Dryomov9dd28452016-04-28 16:07:26 +0200347 spinlock_t osd_lru_lock;
Jeff Layton58eb7932017-04-18 09:21:16 -0400348 u32 epoch_barrier;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200349 struct ceph_osd homeless_osd;
350 atomic64_t last_tid; /* tid of last request */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200351 u64 last_linger_id;
352 struct rb_root linger_requests; /* lingering requests */
Ilya Dryomov46092452016-04-28 16:07:27 +0200353 struct rb_root map_checks;
354 struct rb_root linger_map_checks;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200355 atomic_t num_requests;
356 atomic_t num_homeless;
Ilya Dryomov66850df2018-05-15 15:47:58 +0200357 int abort_err;
Sage Weilf24e9982009-10-06 11:31:10 -0700358 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800359 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800360#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700361 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800362#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700363
364 mempool_t *req_mempool;
365
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800366 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800367 struct ceph_msgpool msgpool_op_reply;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700368
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700369 struct workqueue_struct *notify_wq;
Ilya Dryomov88bc1922018-05-21 16:00:29 +0200370 struct workqueue_struct *completion_wq;
Sage Weilf24e9982009-10-06 11:31:10 -0700371};
372
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +0200373static inline bool ceph_osdmap_flag(struct ceph_osd_client *osdc, int flag)
374{
375 return osdc->osdmap->flags & flag;
376}
377
Alex Elder5522ae02013-05-01 12:43:04 -0500378extern int ceph_osdc_setup(void);
379extern void ceph_osdc_cleanup(void);
380
Sage Weilf24e9982009-10-06 11:31:10 -0700381extern int ceph_osdc_init(struct ceph_osd_client *osdc,
382 struct ceph_client *client);
383extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
Yan, Zheng120a75e2019-07-25 20:16:39 +0800384extern void ceph_osdc_reopen_osds(struct ceph_osd_client *osdc);
Sage Weilf24e9982009-10-06 11:31:10 -0700385
386extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
387 struct ceph_msg *msg);
388extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
389 struct ceph_msg *msg);
Jeff Layton58eb7932017-04-18 09:21:16 -0400390void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb);
Ilya Dryomov66850df2018-05-15 15:47:58 +0200391void ceph_osdc_abort_requests(struct ceph_osd_client *osdc, int err);
Yan, Zheng2cef0ba2019-07-25 20:16:40 +0800392void ceph_osdc_clear_abort_err(struct ceph_osd_client *osdc);
Sage Weilf24e9982009-10-06 11:31:10 -0700393
Ilya Dryomov4cf3e6d2019-06-14 18:00:19 +0200394#define osd_req_op_data(oreq, whch, typ, fld) \
395({ \
396 struct ceph_osd_request *__oreq = (oreq); \
397 unsigned int __whch = (whch); \
398 BUG_ON(__whch >= __oreq->r_num_ops); \
399 &__oreq->r_ops[__whch].typ.fld; \
400})
401
Alex Elder49719772013-02-11 12:33:24 -0600402extern void osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800403 unsigned int which, u16 opcode, u32 flags);
Alex Elder49719772013-02-11 12:33:24 -0600404
405extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
406 unsigned int which,
407 struct page **pages, u64 length,
408 u32 alignment, bool pages_from_pool,
409 bool own_pages);
410
Alex Elderc99d2d42013-04-05 01:27:11 -0500411extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
412 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500413 u64 offset, u64 length,
414 u64 truncate_size, u32 truncate_seq);
Alex Elderc99d2d42013-04-05 01:27:11 -0500415extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
416 unsigned int which, u64 length);
Yan, Zheng2c63f492016-01-07 17:32:54 +0800417extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
418 unsigned int which, u64 offset_inc);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500419
420extern struct ceph_osd_data *osd_req_op_extent_osd_data(
421 struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500422 unsigned int which);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500423
424extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500425 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500426 struct page **pages, u64 length,
427 u32 alignment, bool pages_from_pool,
428 bool own_pages);
429extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500430 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500431 struct ceph_pagelist *pagelist);
432#ifdef CONFIG_BLOCK
Ilya Dryomov5359a172018-01-20 10:30:10 +0100433void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
434 unsigned int which,
435 struct ceph_bio_iter *bio_pos,
436 u32 bio_length);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500437#endif /* CONFIG_BLOCK */
Ilya Dryomov0010f702018-05-04 16:57:30 +0200438void osd_req_op_extent_osd_data_bvecs(struct ceph_osd_request *osd_req,
439 unsigned int which,
440 struct bio_vec *bvecs, u32 num_bvecs,
441 u32 bytes);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100442void osd_req_op_extent_osd_data_bvec_pos(struct ceph_osd_request *osd_req,
443 unsigned int which,
444 struct ceph_bvec_iter *bvec_pos);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500445
Alex Elder04017e22013-04-05 14:46:02 -0500446extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
447 unsigned int which,
448 struct ceph_pagelist *pagelist);
Alex Elder6c57b552013-04-19 15:34:49 -0500449extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
450 unsigned int which,
451 struct page **pages, u64 length,
452 u32 alignment, bool pages_from_pool,
453 bool own_pages);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100454void osd_req_op_cls_request_data_bvecs(struct ceph_osd_request *osd_req,
455 unsigned int which,
Ilya Dryomov0010f702018-05-04 16:57:30 +0200456 struct bio_vec *bvecs, u32 num_bvecs,
457 u32 bytes);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500458extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
Alex Elderc99d2d42013-04-05 01:27:11 -0500459 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500460 struct page **pages, u64 length,
461 u32 alignment, bool pages_from_pool,
462 bool own_pages);
Ilya Dryomov24639ce562018-09-26 19:12:07 +0200463int osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
464 const char *class, const char *method);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800465extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
466 u16 opcode, const char *name, const void *value,
467 size_t size, u8 cmp_op, u8 cmp_mode);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200468extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
469 unsigned int which,
470 u64 expected_object_size,
471 u64 expected_write_size);
Alex Elder33803f32013-03-13 20:50:00 -0500472
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700473extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700474 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500475 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700476 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600477 gfp_t gfp_flags);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200478int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700479
Sage Weilf24e9982009-10-06 11:31:10 -0700480extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
481 struct ceph_file_layout *layout,
482 struct ceph_vino vino,
Alex Elderacead002013-03-14 14:09:05 -0500483 u64 offset, u64 *len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800484 unsigned int which, int num_ops,
485 int opcode, int flags,
Sage Weilf24e9982009-10-06 11:31:10 -0700486 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500487 u32 truncate_seq, u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -0600488 bool use_mempool);
Sage Weilf24e9982009-10-06 11:31:10 -0700489
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400490extern void ceph_osdc_get_request(struct ceph_osd_request *req);
491extern void ceph_osdc_put_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700492
493extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
494 struct ceph_osd_request *req,
495 bool nofail);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +0400496extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700497extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
498 struct ceph_osd_request *req);
499extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
500
Josh Durgindd935f42013-08-28 21:43:09 -0700501extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
Ilya Dryomov7cca78c2016-04-28 16:07:28 +0200502void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
Josh Durgindd935f42013-08-28 21:43:09 -0700503
Douglas Fuller428a7152015-06-17 14:49:45 -0400504int ceph_osdc_call(struct ceph_osd_client *osdc,
505 struct ceph_object_id *oid,
506 struct ceph_object_locator *oloc,
507 const char *class, const char *method,
508 unsigned int flags,
509 struct page *req_page, size_t req_len,
Ilya Dryomov68ada912019-06-14 18:16:51 +0200510 struct page **resp_pages, size_t *resp_len);
Douglas Fuller428a7152015-06-17 14:49:45 -0400511
Sage Weilf24e9982009-10-06 11:31:10 -0700512extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
513 struct ceph_vino vino,
514 struct ceph_file_layout *layout,
515 u64 off, u64 *plen,
516 u32 truncate_seq, u64 truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800517 struct page **pages, int nr_pages,
518 int page_align);
Sage Weilf24e9982009-10-06 11:31:10 -0700519
520extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
521 struct ceph_vino vino,
522 struct ceph_file_layout *layout,
523 struct ceph_snap_context *sc,
524 u64 off, u64 len,
525 u32 truncate_seq, u64 truncate_size,
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200526 struct timespec64 *mtime,
Alex Elder24808822013-02-15 11:42:29 -0600527 struct page **pages, int nr_pages);
Sage Weilf24e9982009-10-06 11:31:10 -0700528
Luis Henriques23ddf9b2018-10-15 16:45:58 +0100529int ceph_osdc_copy_from(struct ceph_osd_client *osdc,
530 u64 src_snapid, u64 src_version,
531 struct ceph_object_id *src_oid,
532 struct ceph_object_locator *src_oloc,
533 u32 src_fadvise_flags,
534 struct ceph_object_id *dst_oid,
535 struct ceph_object_locator *dst_oloc,
536 u32 dst_fadvise_flags,
Luis Henriques78beb0f2020-01-08 10:03:53 +0000537 u32 truncate_seq, u64 truncate_size,
Luis Henriques23ddf9b2018-10-15 16:45:58 +0100538 u8 copy_from_flags);
539
Ilya Dryomov922dab62016-05-26 01:15:02 +0200540/* watch/notify */
541struct ceph_osd_linger_request *
542ceph_osdc_watch(struct ceph_osd_client *osdc,
543 struct ceph_object_id *oid,
544 struct ceph_object_locator *oloc,
545 rados_watchcb2_t wcb,
546 rados_watcherrcb_t errcb,
547 void *data);
548int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
549 struct ceph_osd_linger_request *lreq);
550
551int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
552 struct ceph_object_id *oid,
553 struct ceph_object_locator *oloc,
554 u64 notify_id,
555 u64 cookie,
556 void *payload,
Ilya Dryomov6d542282018-06-25 17:26:55 +0200557 u32 payload_len);
Ilya Dryomov19079202016-04-28 16:07:27 +0200558int ceph_osdc_notify(struct ceph_osd_client *osdc,
559 struct ceph_object_id *oid,
560 struct ceph_object_locator *oloc,
561 void *payload,
Ilya Dryomov6d542282018-06-25 17:26:55 +0200562 u32 payload_len,
Ilya Dryomov19079202016-04-28 16:07:27 +0200563 u32 timeout,
564 struct page ***preply_pages,
565 size_t *preply_len);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200566int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
567 struct ceph_osd_linger_request *lreq);
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700568int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
569 struct ceph_object_id *oid,
570 struct ceph_object_locator *oloc,
571 struct ceph_watch_item **watchers,
572 u32 *num_watchers);
Sage Weilf24e9982009-10-06 11:31:10 -0700573#endif
574