blob: 83fa08a0650710880a86cd3bf10fd53da2e7f1c2 [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>
Xiubo Li97e27aa2020-03-19 23:45:01 -040011#include <linux/ktime.h>
Sage Weilf24e9982009-10-06 11:31:10 -070012
Alex Elder6c4a1912012-05-16 15:16:38 -050013#include <linux/ceph/types.h>
14#include <linux/ceph/osdmap.h>
15#include <linux/ceph/messenger.h>
Ilya Dryomovb2aa5d02016-06-07 21:57:15 +020016#include <linux/ceph/msgpool.h>
Alex Elder6c4a1912012-05-16 15:16:38 -050017#include <linux/ceph/auth.h>
Alex Elderc8858372012-11-13 21:11:15 -060018#include <linux/ceph/pagelist.h>
Sage Weilf24e9982009-10-06 11:31:10 -070019
20struct ceph_msg;
21struct ceph_snap_context;
22struct ceph_osd_request;
23struct ceph_osd_client;
24
25/*
26 * completion callback for async writepages
27 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +020028typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *);
Sage Weilf24e9982009-10-06 11:31:10 -070029
Ilya Dryomov63244fa2016-04-28 16:07:23 +020030#define CEPH_HOMELESS_OSD -1
31
Sage Weilf24e9982009-10-06 11:31:10 -070032/* a given osd we're communicating with */
33struct ceph_osd {
Elena Reshetova02113a02017-03-17 14:10:28 +020034 refcount_t o_ref;
Sage Weilf24e9982009-10-06 11:31:10 -070035 struct ceph_osd_client *o_osdc;
36 int o_osd;
37 int o_incarnation;
38 struct rb_node o_node;
39 struct ceph_connection o_con;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020040 struct rb_root o_requests;
Ilya Dryomov922dab62016-05-26 01:15:02 +020041 struct rb_root o_linger_requests;
Ilya Dryomova02a9462017-06-19 12:18:05 +020042 struct rb_root o_backoff_mappings;
43 struct rb_root o_backoffs_by_id;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080044 struct list_head o_osd_lru;
Alex Elder6c4a1912012-05-16 15:16:38 -050045 struct ceph_auth_handshake o_auth;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080046 unsigned long lru_ttl;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -080047 struct list_head o_keepalive_item;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020048 struct mutex lock;
Sage Weilf24e9982009-10-06 11:31:10 -070049};
50
Ilya Dryomov3f1af422016-02-09 17:50:15 +010051#define CEPH_OSD_SLAB_OPS 2
52#define CEPH_OSD_MAX_OPS 16
Sage Weil1b83bef2013-02-25 16:11:12 -080053
Alex Elder2ac2b7a2013-02-14 12:16:43 -060054enum ceph_osd_data_type {
Alex Elderec9123c2013-04-05 01:27:12 -050055 CEPH_OSD_DATA_TYPE_NONE = 0,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060056 CEPH_OSD_DATA_TYPE_PAGES,
Alex Elder9a5e6d02013-03-08 13:35:36 -060057 CEPH_OSD_DATA_TYPE_PAGELIST,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060058#ifdef CONFIG_BLOCK
59 CEPH_OSD_DATA_TYPE_BIO,
60#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +010061 CEPH_OSD_DATA_TYPE_BVECS,
Alex Elder2ac2b7a2013-02-14 12:16:43 -060062};
63
Alex Elder2794a822013-02-14 12:16:43 -060064struct ceph_osd_data {
Alex Elder2ac2b7a2013-02-14 12:16:43 -060065 enum ceph_osd_data_type type;
66 union {
Alex Elder2794a822013-02-14 12:16:43 -060067 struct {
68 struct page **pages;
Alex Eldere0c59482013-03-07 15:38:25 -060069 u64 length;
Alex Elder2794a822013-02-14 12:16:43 -060070 u32 alignment;
71 bool pages_from_pool;
72 bool own_pages;
73 };
Alex Elder9a5e6d02013-03-08 13:35:36 -060074 struct ceph_pagelist *pagelist;
Alex Elder2794a822013-02-14 12:16:43 -060075#ifdef CONFIG_BLOCK
Alex Elderfdce58c2013-03-14 14:09:06 -050076 struct {
Ilya Dryomov5359a172018-01-20 10:30:10 +010077 struct ceph_bio_iter bio_pos;
78 u32 bio_length;
Alex Elderfdce58c2013-03-14 14:09:06 -050079 };
Alex Elder2794a822013-02-14 12:16:43 -060080#endif /* CONFIG_BLOCK */
Ilya Dryomov0010f702018-05-04 16:57:30 +020081 struct {
82 struct ceph_bvec_iter bvec_pos;
83 u32 num_bvecs;
84 };
Alex Elder2794a822013-02-14 12:16:43 -060085 };
86};
87
Alex Elder79528732013-04-03 21:32:51 -050088struct ceph_osd_req_op {
89 u16 op; /* CEPH_OSD_OP_* */
Ilya Dryomov7b25bf52014-02-25 16:22:26 +020090 u32 flags; /* CEPH_OSD_OP_FLAG_* */
Ilya Dryomovde2aa102016-02-08 13:39:46 +010091 u32 indata_len; /* request */
Yan, Zheng7665d852016-01-07 16:48:57 +080092 u32 outdata_len; /* reply */
93 s32 rval;
94
Alex Elder79528732013-04-03 21:32:51 -050095 union {
Alex Elder49719772013-02-11 12:33:24 -060096 struct ceph_osd_data raw_data_in;
Alex Elder79528732013-04-03 21:32:51 -050097 struct {
98 u64 offset, length;
99 u64 truncate_size;
100 u32 truncate_seq;
Alex Elder54764922013-04-05 01:27:12 -0500101 struct ceph_osd_data osd_data;
Alex Elder79528732013-04-03 21:32:51 -0500102 } extent;
103 struct {
Ilya Dryomovd7d5a002014-12-19 14:00:41 +0300104 u32 name_len;
105 u32 value_len;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800106 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
107 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
108 struct ceph_osd_data osd_data;
109 } xattr;
110 struct {
Alex Elder79528732013-04-03 21:32:51 -0500111 const char *class_name;
112 const char *method_name;
Alex Elder54764922013-04-05 01:27:12 -0500113 struct ceph_osd_data request_info;
Alex Elder04017e22013-04-05 14:46:02 -0500114 struct ceph_osd_data request_data;
Alex Elder54764922013-04-05 01:27:12 -0500115 struct ceph_osd_data response_data;
Alex Elder79528732013-04-03 21:32:51 -0500116 __u8 class_len;
117 __u8 method_len;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200118 u32 indata_len;
Alex Elder79528732013-04-03 21:32:51 -0500119 } cls;
120 struct {
121 u64 cookie;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200122 __u8 op; /* CEPH_OSD_WATCH_OP_ */
123 u32 gen;
Alex Elder79528732013-04-03 21:32:51 -0500124 } watch;
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200125 struct {
Ilya Dryomov922dab62016-05-26 01:15:02 +0200126 struct ceph_osd_data request_data;
127 } notify_ack;
128 struct {
Ilya Dryomov19079202016-04-28 16:07:27 +0200129 u64 cookie;
130 struct ceph_osd_data request_data;
131 struct ceph_osd_data response_data;
132 } notify;
133 struct {
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700134 struct ceph_osd_data response_data;
135 } list_watchers;
136 struct {
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200137 u64 expected_object_size;
138 u64 expected_write_size;
Ilya Dryomovd3798ac2020-05-29 20:31:37 +0200139 u32 flags; /* CEPH_OSD_OP_ALLOC_HINT_FLAG_* */
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200140 } alloc_hint;
Luis Henriques23ddf9b2018-10-15 16:45:58 +0100141 struct {
142 u64 snapid;
143 u64 src_version;
144 u8 flags;
145 u32 src_fadvise_flags;
146 struct ceph_osd_data osd_data;
147 } copy_from;
Alex Elder79528732013-04-03 21:32:51 -0500148 };
149};
150
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200151struct ceph_osd_request_target {
152 struct ceph_object_id base_oid;
153 struct ceph_object_locator base_oloc;
154 struct ceph_object_id target_oid;
155 struct ceph_object_locator target_oloc;
156
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200157 struct ceph_pg pgid; /* last raw pg we mapped to */
158 struct ceph_spg spgid; /* last actual spg we mapped to */
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200159 u32 pg_num;
160 u32 pg_num_mask;
161 struct ceph_osds acting;
162 struct ceph_osds up;
163 int size;
164 int min_size;
165 bool sort_bitwise;
Ilya Dryomovae78dd82017-07-27 17:59:14 +0200166 bool recovery_deletes;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200167
168 unsigned int flags; /* CEPH_OSD_FLAG_* */
Ilya Dryomov117d96a2020-05-23 11:45:48 +0200169 bool used_replica;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200170 bool paused;
171
Ilya Dryomov04c7d782017-06-15 16:30:55 +0200172 u32 epoch;
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +0200173 u32 last_force_resend;
174
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200175 int osd;
176};
177
Sage Weilf24e9982009-10-06 11:31:10 -0700178/* an in-flight request */
179struct ceph_osd_request {
180 u64 r_tid; /* unique for this client */
181 struct rb_node r_node;
Ilya Dryomov46092452016-04-28 16:07:27 +0200182 struct rb_node r_mc_node; /* map check */
Ilya Dryomov88bc1922018-05-21 16:00:29 +0200183 struct work_struct r_complete_work;
Sage Weilf24e9982009-10-06 11:31:10 -0700184 struct ceph_osd *r_osd;
Ilya Dryomova66dd382016-04-28 16:07:23 +0200185
186 struct ceph_osd_request_target r_t;
187#define r_base_oid r_t.base_oid
188#define r_base_oloc r_t.base_oloc
189#define r_flags r_t.flags
Sage Weilf24e9982009-10-06 11:31:10 -0700190
191 struct ceph_msg *r_request, *r_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700192 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil1b83bef2013-02-25 16:11:12 -0800193
Alex Elder79528732013-04-03 21:32:51 -0500194 /* request osd ops array */
195 unsigned int r_num_ops;
Alex Elder79528732013-04-03 21:32:51 -0500196
Sage Weil1b83bef2013-02-25 16:11:12 -0800197 int r_result;
Sage Weilf24e9982009-10-06 11:31:10 -0700198
199 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -0800200 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -0700201 bool r_mempool;
Ilya Dryomovb18b9552017-02-11 18:46:08 +0100202 struct completion r_completion; /* private to osd_client.c */
Alex Elder26be8802013-04-15 11:20:42 -0500203 ceph_osdc_callback_t r_callback;
Sage Weilf24e9982009-10-06 11:31:10 -0700204
205 struct inode *r_inode; /* for use by callbacks */
Ilya Dryomov94e85772019-07-08 12:50:09 +0200206 struct list_head r_private_item; /* ditto */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700207 void *r_priv; /* ditto */
Sage Weilf24e9982009-10-06 11:31:10 -0700208
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200209 /* set by submitter */
210 u64 r_snapid; /* for reads, CEPH_NOSNAP o/w */
211 struct ceph_snap_context *r_snapc; /* for writes */
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200212 struct timespec64 r_mtime; /* ditto */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200213 u64 r_data_offset; /* ditto */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200214 bool r_linger; /* don't resend on failure */
Sage Weilf24e9982009-10-06 11:31:10 -0700215
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200216 /* internal */
217 unsigned long r_stamp; /* jiffies, send or check time */
Ilya Dryomov7cc5e382017-02-12 17:11:07 +0100218 unsigned long r_start_stamp; /* jiffies */
Xiubo Li97e27aa2020-03-19 23:45:01 -0400219 ktime_t r_start_latency; /* ktime_t */
220 ktime_t r_end_latency; /* ktime_t */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200221 int r_attempts;
Ilya Dryomov46092452016-04-28 16:07:27 +0200222 u32 r_map_dne_bound;
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100223
224 struct ceph_osd_req_op r_ops[];
Sage Weilf24e9982009-10-06 11:31:10 -0700225};
226
Ilya Dryomov205ee1182014-01-27 17:40:20 +0200227struct ceph_request_redirect {
228 struct ceph_object_locator oloc;
229};
230
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200231/*
232 * osd request identifier
233 *
234 * caller name + incarnation# + tid to unique identify this request
235 */
236struct ceph_osd_reqid {
237 struct ceph_entity_name name;
238 __le64 tid;
239 __le32 inc;
240} __packed;
241
242struct ceph_blkin_trace_info {
243 __le64 trace_id;
244 __le64 span_id;
245 __le64 parent_span_id;
246} __packed;
247
Ilya Dryomov922dab62016-05-26 01:15:02 +0200248typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
249 u64 notifier_id, void *data, size_t data_len);
250typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700251
Ilya Dryomov922dab62016-05-26 01:15:02 +0200252struct ceph_osd_linger_request {
253 struct ceph_osd_client *osdc;
254 u64 linger_id;
255 bool committed;
Ilya Dryomov19079202016-04-28 16:07:27 +0200256 bool is_watch; /* watch or notify */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200257
258 struct ceph_osd *osd;
259 struct ceph_osd_request *reg_req;
260 struct ceph_osd_request *ping_req;
261 unsigned long ping_sent;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200262 unsigned long watch_valid_thru;
263 struct list_head pending_lworks;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200264
265 struct ceph_osd_request_target t;
Ilya Dryomov46092452016-04-28 16:07:27 +0200266 u32 map_dne_bound;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200267
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200268 struct timespec64 mtime;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200269
270 struct kref kref;
271 struct mutex lock;
272 struct rb_node node; /* osd */
273 struct rb_node osdc_node; /* osdc */
Ilya Dryomov46092452016-04-28 16:07:27 +0200274 struct rb_node mc_node; /* map check */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200275 struct list_head scan_item;
276
277 struct completion reg_commit_wait;
Ilya Dryomov19079202016-04-28 16:07:27 +0200278 struct completion notify_finish_wait;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200279 int reg_commit_error;
Ilya Dryomov19079202016-04-28 16:07:27 +0200280 int notify_finish_error;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200281 int last_error;
282
283 u32 register_gen;
Ilya Dryomov19079202016-04-28 16:07:27 +0200284 u64 notify_id;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200285
286 rados_watchcb2_t wcb;
287 rados_watcherrcb_t errcb;
288 void *data;
Ilya Dryomov19079202016-04-28 16:07:27 +0200289
290 struct page ***preply_pages;
291 size_t *preply_len;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700292};
293
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700294struct ceph_watch_item {
295 struct ceph_entity_name name;
296 u64 cookie;
297 struct ceph_entity_addr addr;
298};
299
Ilya Dryomova02a9462017-06-19 12:18:05 +0200300struct ceph_spg_mapping {
301 struct rb_node node;
302 struct ceph_spg spgid;
303
304 struct rb_root backoffs;
305};
306
307struct ceph_hobject_id {
308 void *key;
309 size_t key_len;
310 void *oid;
311 size_t oid_len;
312 u64 snapid;
313 u32 hash;
314 u8 is_max;
315 void *nspace;
316 size_t nspace_len;
317 s64 pool;
318
319 /* cache */
320 u32 hash_reverse_bits;
321};
322
323static inline void ceph_hoid_build_hash_cache(struct ceph_hobject_id *hoid)
324{
325 hoid->hash_reverse_bits = bitrev32(hoid->hash);
326}
327
328/*
329 * PG-wide backoff: [begin, end)
330 * per-object backoff: begin == end
331 */
332struct ceph_osd_backoff {
333 struct rb_node spg_node;
334 struct rb_node id_node;
335
336 struct ceph_spg spgid;
337 u64 id;
338 struct ceph_hobject_id *begin;
339 struct ceph_hobject_id *end;
340};
341
Ilya Dryomov264048a2016-11-08 15:15:24 +0100342#define CEPH_LINGER_ID_START 0xffff000000000000ULL
343
Sage Weilf24e9982009-10-06 11:31:10 -0700344struct ceph_osd_client {
345 struct ceph_client *client;
346
347 struct ceph_osdmap *osdmap; /* current map */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200348 struct rw_semaphore lock;
Sage Weilf24e9982009-10-06 11:31:10 -0700349
Sage Weilf24e9982009-10-06 11:31:10 -0700350 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800351 struct list_head osd_lru; /* idle osds */
Ilya Dryomov9dd28452016-04-28 16:07:26 +0200352 spinlock_t osd_lru_lock;
Jeff Layton58eb7932017-04-18 09:21:16 -0400353 u32 epoch_barrier;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200354 struct ceph_osd homeless_osd;
355 atomic64_t last_tid; /* tid of last request */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200356 u64 last_linger_id;
357 struct rb_root linger_requests; /* lingering requests */
Ilya Dryomov46092452016-04-28 16:07:27 +0200358 struct rb_root map_checks;
359 struct rb_root linger_map_checks;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200360 atomic_t num_requests;
361 atomic_t num_homeless;
Ilya Dryomov66850df2018-05-15 15:47:58 +0200362 int abort_err;
Sage Weilf24e9982009-10-06 11:31:10 -0700363 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800364 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800365#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700366 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800367#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700368
369 mempool_t *req_mempool;
370
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800371 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800372 struct ceph_msgpool msgpool_op_reply;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700373
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700374 struct workqueue_struct *notify_wq;
Ilya Dryomov88bc1922018-05-21 16:00:29 +0200375 struct workqueue_struct *completion_wq;
Sage Weilf24e9982009-10-06 11:31:10 -0700376};
377
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +0200378static inline bool ceph_osdmap_flag(struct ceph_osd_client *osdc, int flag)
379{
380 return osdc->osdmap->flags & flag;
381}
382
Alex Elder5522ae02013-05-01 12:43:04 -0500383extern int ceph_osdc_setup(void);
384extern void ceph_osdc_cleanup(void);
385
Sage Weilf24e9982009-10-06 11:31:10 -0700386extern int ceph_osdc_init(struct ceph_osd_client *osdc,
387 struct ceph_client *client);
388extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
Yan, Zheng120a75e2019-07-25 20:16:39 +0800389extern void ceph_osdc_reopen_osds(struct ceph_osd_client *osdc);
Sage Weilf24e9982009-10-06 11:31:10 -0700390
391extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
392 struct ceph_msg *msg);
393extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
394 struct ceph_msg *msg);
Jeff Layton58eb7932017-04-18 09:21:16 -0400395void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb);
Ilya Dryomov66850df2018-05-15 15:47:58 +0200396void ceph_osdc_abort_requests(struct ceph_osd_client *osdc, int err);
Yan, Zheng2cef0ba2019-07-25 20:16:40 +0800397void ceph_osdc_clear_abort_err(struct ceph_osd_client *osdc);
Sage Weilf24e9982009-10-06 11:31:10 -0700398
Ilya Dryomov4cf3e6d2019-06-14 18:00:19 +0200399#define osd_req_op_data(oreq, whch, typ, fld) \
400({ \
401 struct ceph_osd_request *__oreq = (oreq); \
402 unsigned int __whch = (whch); \
403 BUG_ON(__whch >= __oreq->r_num_ops); \
404 &__oreq->r_ops[__whch].typ.fld; \
405})
406
Jeff Layton042f6492020-07-01 11:54:43 -0400407struct ceph_osd_req_op *osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800408 unsigned int which, u16 opcode, u32 flags);
Alex Elder49719772013-02-11 12:33:24 -0600409
410extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
411 unsigned int which,
412 struct page **pages, u64 length,
413 u32 alignment, bool pages_from_pool,
414 bool own_pages);
415
Alex Elderc99d2d42013-04-05 01:27:11 -0500416extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
417 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500418 u64 offset, u64 length,
419 u64 truncate_size, u32 truncate_seq);
Alex Elderc99d2d42013-04-05 01:27:11 -0500420extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
421 unsigned int which, u64 length);
Yan, Zheng2c63f492016-01-07 17:32:54 +0800422extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
423 unsigned int which, u64 offset_inc);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500424
425extern struct ceph_osd_data *osd_req_op_extent_osd_data(
426 struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500427 unsigned int which);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500428
429extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500430 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500431 struct page **pages, u64 length,
432 u32 alignment, bool pages_from_pool,
433 bool own_pages);
434extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500435 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500436 struct ceph_pagelist *pagelist);
437#ifdef CONFIG_BLOCK
Ilya Dryomov5359a172018-01-20 10:30:10 +0100438void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
439 unsigned int which,
440 struct ceph_bio_iter *bio_pos,
441 u32 bio_length);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500442#endif /* CONFIG_BLOCK */
Ilya Dryomov0010f702018-05-04 16:57:30 +0200443void osd_req_op_extent_osd_data_bvecs(struct ceph_osd_request *osd_req,
444 unsigned int which,
445 struct bio_vec *bvecs, u32 num_bvecs,
446 u32 bytes);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100447void osd_req_op_extent_osd_data_bvec_pos(struct ceph_osd_request *osd_req,
448 unsigned int which,
449 struct ceph_bvec_iter *bvec_pos);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500450
Alex Elder04017e22013-04-05 14:46:02 -0500451extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
452 unsigned int which,
453 struct ceph_pagelist *pagelist);
Alex Elder6c57b552013-04-19 15:34:49 -0500454extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
455 unsigned int which,
456 struct page **pages, u64 length,
457 u32 alignment, bool pages_from_pool,
458 bool own_pages);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100459void osd_req_op_cls_request_data_bvecs(struct ceph_osd_request *osd_req,
460 unsigned int which,
Ilya Dryomov0010f702018-05-04 16:57:30 +0200461 struct bio_vec *bvecs, u32 num_bvecs,
462 u32 bytes);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500463extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
Alex Elderc99d2d42013-04-05 01:27:11 -0500464 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500465 struct page **pages, u64 length,
466 u32 alignment, bool pages_from_pool,
467 bool own_pages);
Ilya Dryomov24639ce562018-09-26 19:12:07 +0200468int osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
469 const char *class, const char *method);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800470extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
471 u16 opcode, const char *name, const void *value,
472 size_t size, u8 cmp_op, u8 cmp_mode);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200473extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
474 unsigned int which,
475 u64 expected_object_size,
Ilya Dryomovd3798ac2020-05-29 20:31:37 +0200476 u64 expected_write_size,
477 u32 flags);
Alex Elder33803f32013-03-13 20:50:00 -0500478
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700479extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700480 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500481 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700482 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600483 gfp_t gfp_flags);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200484int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700485
Sage Weilf24e9982009-10-06 11:31:10 -0700486extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
487 struct ceph_file_layout *layout,
488 struct ceph_vino vino,
Alex Elderacead002013-03-14 14:09:05 -0500489 u64 offset, u64 *len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800490 unsigned int which, int num_ops,
491 int opcode, int flags,
Sage Weilf24e9982009-10-06 11:31:10 -0700492 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500493 u32 truncate_seq, u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -0600494 bool use_mempool);
Sage Weilf24e9982009-10-06 11:31:10 -0700495
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400496extern void ceph_osdc_get_request(struct ceph_osd_request *req);
497extern void ceph_osdc_put_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700498
499extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
500 struct ceph_osd_request *req,
501 bool nofail);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +0400502extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700503extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
504 struct ceph_osd_request *req);
505extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
506
Josh Durgindd935f42013-08-28 21:43:09 -0700507extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
Ilya Dryomov7cca78c2016-04-28 16:07:28 +0200508void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
Josh Durgindd935f42013-08-28 21:43:09 -0700509
Douglas Fuller428a7152015-06-17 14:49:45 -0400510int ceph_osdc_call(struct ceph_osd_client *osdc,
511 struct ceph_object_id *oid,
512 struct ceph_object_locator *oloc,
513 const char *class, const char *method,
514 unsigned int flags,
515 struct page *req_page, size_t req_len,
Ilya Dryomov68ada912019-06-14 18:16:51 +0200516 struct page **resp_pages, size_t *resp_len);
Douglas Fuller428a7152015-06-17 14:49:45 -0400517
Luis Henriques23ddf9b2018-10-15 16:45:58 +0100518int ceph_osdc_copy_from(struct ceph_osd_client *osdc,
519 u64 src_snapid, u64 src_version,
520 struct ceph_object_id *src_oid,
521 struct ceph_object_locator *src_oloc,
522 u32 src_fadvise_flags,
523 struct ceph_object_id *dst_oid,
524 struct ceph_object_locator *dst_oloc,
525 u32 dst_fadvise_flags,
Luis Henriques78beb0f2020-01-08 10:03:53 +0000526 u32 truncate_seq, u64 truncate_size,
Luis Henriques23ddf9b2018-10-15 16:45:58 +0100527 u8 copy_from_flags);
528
Ilya Dryomov922dab62016-05-26 01:15:02 +0200529/* watch/notify */
530struct ceph_osd_linger_request *
531ceph_osdc_watch(struct ceph_osd_client *osdc,
532 struct ceph_object_id *oid,
533 struct ceph_object_locator *oloc,
534 rados_watchcb2_t wcb,
535 rados_watcherrcb_t errcb,
536 void *data);
537int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
538 struct ceph_osd_linger_request *lreq);
539
540int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
541 struct ceph_object_id *oid,
542 struct ceph_object_locator *oloc,
543 u64 notify_id,
544 u64 cookie,
545 void *payload,
Ilya Dryomov6d542282018-06-25 17:26:55 +0200546 u32 payload_len);
Ilya Dryomov19079202016-04-28 16:07:27 +0200547int ceph_osdc_notify(struct ceph_osd_client *osdc,
548 struct ceph_object_id *oid,
549 struct ceph_object_locator *oloc,
550 void *payload,
Ilya Dryomov6d542282018-06-25 17:26:55 +0200551 u32 payload_len,
Ilya Dryomov19079202016-04-28 16:07:27 +0200552 u32 timeout,
553 struct page ***preply_pages,
554 size_t *preply_len);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200555int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
556 struct ceph_osd_linger_request *lreq);
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700557int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
558 struct ceph_object_id *oid,
559 struct ceph_object_locator *oloc,
560 struct ceph_watch_item **watchers,
561 u32 *num_watchers);
Sage Weilf24e9982009-10-06 11:31:10 -0700562#endif
563