blob: d4191bde95a4452307a2bbb23288dcec33d3a18c [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;
Alex Elder79528732013-04-03 21:32:51 -0500139 };
140};
141
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200142struct ceph_osd_request_target {
143 struct ceph_object_id base_oid;
144 struct ceph_object_locator base_oloc;
145 struct ceph_object_id target_oid;
146 struct ceph_object_locator target_oloc;
147
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200148 struct ceph_pg pgid; /* last raw pg we mapped to */
149 struct ceph_spg spgid; /* last actual spg we mapped to */
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200150 u32 pg_num;
151 u32 pg_num_mask;
152 struct ceph_osds acting;
153 struct ceph_osds up;
154 int size;
155 int min_size;
156 bool sort_bitwise;
Ilya Dryomovae78dd82017-07-27 17:59:14 +0200157 bool recovery_deletes;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200158
159 unsigned int flags; /* CEPH_OSD_FLAG_* */
160 bool paused;
161
Ilya Dryomov04c7d782017-06-15 16:30:55 +0200162 u32 epoch;
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +0200163 u32 last_force_resend;
164
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200165 int osd;
166};
167
Sage Weilf24e9982009-10-06 11:31:10 -0700168/* an in-flight request */
169struct ceph_osd_request {
170 u64 r_tid; /* unique for this client */
171 struct rb_node r_node;
Ilya Dryomov46092452016-04-28 16:07:27 +0200172 struct rb_node r_mc_node; /* map check */
Ilya Dryomov88bc1922018-05-21 16:00:29 +0200173 struct work_struct r_complete_work;
Sage Weilf24e9982009-10-06 11:31:10 -0700174 struct ceph_osd *r_osd;
Ilya Dryomova66dd382016-04-28 16:07:23 +0200175
176 struct ceph_osd_request_target r_t;
177#define r_base_oid r_t.base_oid
178#define r_base_oloc r_t.base_oloc
179#define r_flags r_t.flags
Sage Weilf24e9982009-10-06 11:31:10 -0700180
181 struct ceph_msg *r_request, *r_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700182 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil1b83bef2013-02-25 16:11:12 -0800183
Alex Elder79528732013-04-03 21:32:51 -0500184 /* request osd ops array */
185 unsigned int r_num_ops;
Alex Elder79528732013-04-03 21:32:51 -0500186
Sage Weil1b83bef2013-02-25 16:11:12 -0800187 int r_result;
Sage Weilf24e9982009-10-06 11:31:10 -0700188
189 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -0800190 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -0700191 bool r_mempool;
Ilya Dryomovb18b9552017-02-11 18:46:08 +0100192 struct completion r_completion; /* private to osd_client.c */
Alex Elder26be8802013-04-15 11:20:42 -0500193 ceph_osdc_callback_t r_callback;
Sage Weilf24e9982009-10-06 11:31:10 -0700194 struct list_head r_unsafe_item;
195
196 struct inode *r_inode; /* for use by callbacks */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700197 void *r_priv; /* ditto */
Sage Weilf24e9982009-10-06 11:31:10 -0700198
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200199 /* set by submitter */
200 u64 r_snapid; /* for reads, CEPH_NOSNAP o/w */
201 struct ceph_snap_context *r_snapc; /* for writes */
202 struct timespec r_mtime; /* ditto */
203 u64 r_data_offset; /* ditto */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200204 bool r_linger; /* don't resend on failure */
Jeff Laytona1f40202017-04-04 08:39:37 -0400205 bool r_abort_on_full; /* return ENOSPC when full */
Sage Weilf24e9982009-10-06 11:31:10 -0700206
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200207 /* internal */
208 unsigned long r_stamp; /* jiffies, send or check time */
Ilya Dryomov7cc5e382017-02-12 17:11:07 +0100209 unsigned long r_start_stamp; /* jiffies */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200210 int r_attempts;
Ilya Dryomov46092452016-04-28 16:07:27 +0200211 u32 r_map_dne_bound;
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100212
213 struct ceph_osd_req_op r_ops[];
Sage Weilf24e9982009-10-06 11:31:10 -0700214};
215
Ilya Dryomov205ee1182014-01-27 17:40:20 +0200216struct ceph_request_redirect {
217 struct ceph_object_locator oloc;
218};
219
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200220/*
221 * osd request identifier
222 *
223 * caller name + incarnation# + tid to unique identify this request
224 */
225struct ceph_osd_reqid {
226 struct ceph_entity_name name;
227 __le64 tid;
228 __le32 inc;
229} __packed;
230
231struct ceph_blkin_trace_info {
232 __le64 trace_id;
233 __le64 span_id;
234 __le64 parent_span_id;
235} __packed;
236
Ilya Dryomov922dab62016-05-26 01:15:02 +0200237typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
238 u64 notifier_id, void *data, size_t data_len);
239typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700240
Ilya Dryomov922dab62016-05-26 01:15:02 +0200241struct ceph_osd_linger_request {
242 struct ceph_osd_client *osdc;
243 u64 linger_id;
244 bool committed;
Ilya Dryomov19079202016-04-28 16:07:27 +0200245 bool is_watch; /* watch or notify */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200246
247 struct ceph_osd *osd;
248 struct ceph_osd_request *reg_req;
249 struct ceph_osd_request *ping_req;
250 unsigned long ping_sent;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200251 unsigned long watch_valid_thru;
252 struct list_head pending_lworks;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200253
254 struct ceph_osd_request_target t;
Ilya Dryomov46092452016-04-28 16:07:27 +0200255 u32 map_dne_bound;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200256
257 struct timespec mtime;
258
259 struct kref kref;
260 struct mutex lock;
261 struct rb_node node; /* osd */
262 struct rb_node osdc_node; /* osdc */
Ilya Dryomov46092452016-04-28 16:07:27 +0200263 struct rb_node mc_node; /* map check */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200264 struct list_head scan_item;
265
266 struct completion reg_commit_wait;
Ilya Dryomov19079202016-04-28 16:07:27 +0200267 struct completion notify_finish_wait;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200268 int reg_commit_error;
Ilya Dryomov19079202016-04-28 16:07:27 +0200269 int notify_finish_error;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200270 int last_error;
271
272 u32 register_gen;
Ilya Dryomov19079202016-04-28 16:07:27 +0200273 u64 notify_id;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200274
275 rados_watchcb2_t wcb;
276 rados_watcherrcb_t errcb;
277 void *data;
Ilya Dryomov19079202016-04-28 16:07:27 +0200278
279 struct page ***preply_pages;
280 size_t *preply_len;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700281};
282
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700283struct ceph_watch_item {
284 struct ceph_entity_name name;
285 u64 cookie;
286 struct ceph_entity_addr addr;
287};
288
Ilya Dryomova02a9462017-06-19 12:18:05 +0200289struct ceph_spg_mapping {
290 struct rb_node node;
291 struct ceph_spg spgid;
292
293 struct rb_root backoffs;
294};
295
296struct ceph_hobject_id {
297 void *key;
298 size_t key_len;
299 void *oid;
300 size_t oid_len;
301 u64 snapid;
302 u32 hash;
303 u8 is_max;
304 void *nspace;
305 size_t nspace_len;
306 s64 pool;
307
308 /* cache */
309 u32 hash_reverse_bits;
310};
311
312static inline void ceph_hoid_build_hash_cache(struct ceph_hobject_id *hoid)
313{
314 hoid->hash_reverse_bits = bitrev32(hoid->hash);
315}
316
317/*
318 * PG-wide backoff: [begin, end)
319 * per-object backoff: begin == end
320 */
321struct ceph_osd_backoff {
322 struct rb_node spg_node;
323 struct rb_node id_node;
324
325 struct ceph_spg spgid;
326 u64 id;
327 struct ceph_hobject_id *begin;
328 struct ceph_hobject_id *end;
329};
330
Ilya Dryomov264048a2016-11-08 15:15:24 +0100331#define CEPH_LINGER_ID_START 0xffff000000000000ULL
332
Sage Weilf24e9982009-10-06 11:31:10 -0700333struct ceph_osd_client {
334 struct ceph_client *client;
335
336 struct ceph_osdmap *osdmap; /* current map */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200337 struct rw_semaphore lock;
Sage Weilf24e9982009-10-06 11:31:10 -0700338
Sage Weilf24e9982009-10-06 11:31:10 -0700339 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800340 struct list_head osd_lru; /* idle osds */
Ilya Dryomov9dd28452016-04-28 16:07:26 +0200341 spinlock_t osd_lru_lock;
Jeff Layton58eb7932017-04-18 09:21:16 -0400342 u32 epoch_barrier;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200343 struct ceph_osd homeless_osd;
344 atomic64_t last_tid; /* tid of last request */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200345 u64 last_linger_id;
346 struct rb_root linger_requests; /* lingering requests */
Ilya Dryomov46092452016-04-28 16:07:27 +0200347 struct rb_root map_checks;
348 struct rb_root linger_map_checks;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200349 atomic_t num_requests;
350 atomic_t num_homeless;
Ilya Dryomov66850df2018-05-15 15:47:58 +0200351 int abort_err;
Sage Weilf24e9982009-10-06 11:31:10 -0700352 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800353 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800354#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700355 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800356#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700357
358 mempool_t *req_mempool;
359
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800360 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800361 struct ceph_msgpool msgpool_op_reply;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700362
Yehuda Sadeha40c4f12011-03-21 15:07:16 -0700363 struct workqueue_struct *notify_wq;
Ilya Dryomov88bc1922018-05-21 16:00:29 +0200364 struct workqueue_struct *completion_wq;
Sage Weilf24e9982009-10-06 11:31:10 -0700365};
366
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +0200367static inline bool ceph_osdmap_flag(struct ceph_osd_client *osdc, int flag)
368{
369 return osdc->osdmap->flags & flag;
370}
371
Alex Elder5522ae02013-05-01 12:43:04 -0500372extern int ceph_osdc_setup(void);
373extern void ceph_osdc_cleanup(void);
374
Sage Weilf24e9982009-10-06 11:31:10 -0700375extern int ceph_osdc_init(struct ceph_osd_client *osdc,
376 struct ceph_client *client);
377extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
378
379extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
380 struct ceph_msg *msg);
381extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
382 struct ceph_msg *msg);
Jeff Layton58eb7932017-04-18 09:21:16 -0400383void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb);
Ilya Dryomov66850df2018-05-15 15:47:58 +0200384void ceph_osdc_abort_requests(struct ceph_osd_client *osdc, int err);
Sage Weilf24e9982009-10-06 11:31:10 -0700385
Alex Elder49719772013-02-11 12:33:24 -0600386extern void osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800387 unsigned int which, u16 opcode, u32 flags);
Alex Elder49719772013-02-11 12:33:24 -0600388
389extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
390 unsigned int which,
391 struct page **pages, u64 length,
392 u32 alignment, bool pages_from_pool,
393 bool own_pages);
394
Alex Elderc99d2d42013-04-05 01:27:11 -0500395extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
396 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500397 u64 offset, u64 length,
398 u64 truncate_size, u32 truncate_seq);
Alex Elderc99d2d42013-04-05 01:27:11 -0500399extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
400 unsigned int which, u64 length);
Yan, Zheng2c63f492016-01-07 17:32:54 +0800401extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
402 unsigned int which, u64 offset_inc);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500403
404extern struct ceph_osd_data *osd_req_op_extent_osd_data(
405 struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500406 unsigned int which);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500407
408extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500409 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500410 struct page **pages, u64 length,
411 u32 alignment, bool pages_from_pool,
412 bool own_pages);
413extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
Alex Elder406e2c92013-04-15 14:50:36 -0500414 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500415 struct ceph_pagelist *pagelist);
416#ifdef CONFIG_BLOCK
Ilya Dryomov5359a172018-01-20 10:30:10 +0100417void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
418 unsigned int which,
419 struct ceph_bio_iter *bio_pos,
420 u32 bio_length);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500421#endif /* CONFIG_BLOCK */
Ilya Dryomov0010f702018-05-04 16:57:30 +0200422void osd_req_op_extent_osd_data_bvecs(struct ceph_osd_request *osd_req,
423 unsigned int which,
424 struct bio_vec *bvecs, u32 num_bvecs,
425 u32 bytes);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100426void osd_req_op_extent_osd_data_bvec_pos(struct ceph_osd_request *osd_req,
427 unsigned int which,
428 struct ceph_bvec_iter *bvec_pos);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500429
Alex Elder04017e22013-04-05 14:46:02 -0500430extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
431 unsigned int which,
432 struct ceph_pagelist *pagelist);
Alex Elder6c57b552013-04-19 15:34:49 -0500433extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
434 unsigned int which,
435 struct page **pages, u64 length,
436 u32 alignment, bool pages_from_pool,
437 bool own_pages);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100438void osd_req_op_cls_request_data_bvecs(struct ceph_osd_request *osd_req,
439 unsigned int which,
Ilya Dryomov0010f702018-05-04 16:57:30 +0200440 struct bio_vec *bvecs, u32 num_bvecs,
441 u32 bytes);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500442extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
Alex Elderc99d2d42013-04-05 01:27:11 -0500443 unsigned int which,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500444 struct page **pages, u64 length,
445 u32 alignment, bool pages_from_pool,
446 bool own_pages);
Chengguang Xufe943d52018-04-12 12:04:55 +0800447extern int osd_req_op_cls_init(struct ceph_osd_request *osd_req,
Alex Elderc99d2d42013-04-05 01:27:11 -0500448 unsigned int which, u16 opcode,
Alex Elder04017e22013-04-05 14:46:02 -0500449 const char *class, const char *method);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800450extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
451 u16 opcode, const char *name, const void *value,
452 size_t size, u8 cmp_op, u8 cmp_mode);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200453extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
454 unsigned int which,
455 u64 expected_object_size,
456 u64 expected_write_size);
Alex Elder33803f32013-03-13 20:50:00 -0500457
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700458extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700459 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500460 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700461 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600462 gfp_t gfp_flags);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200463int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700464
Sage Weilf24e9982009-10-06 11:31:10 -0700465extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
466 struct ceph_file_layout *layout,
467 struct ceph_vino vino,
Alex Elderacead002013-03-14 14:09:05 -0500468 u64 offset, u64 *len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800469 unsigned int which, int num_ops,
470 int opcode, int flags,
Sage Weilf24e9982009-10-06 11:31:10 -0700471 struct ceph_snap_context *snapc,
Alex Elderacead002013-03-14 14:09:05 -0500472 u32 truncate_seq, u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -0600473 bool use_mempool);
Sage Weilf24e9982009-10-06 11:31:10 -0700474
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400475extern void ceph_osdc_get_request(struct ceph_osd_request *req);
476extern void ceph_osdc_put_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700477
478extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
479 struct ceph_osd_request *req,
480 bool nofail);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +0400481extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
Sage Weilf24e9982009-10-06 11:31:10 -0700482extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
483 struct ceph_osd_request *req);
484extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
485
Josh Durgindd935f42013-08-28 21:43:09 -0700486extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
Ilya Dryomov7cca78c2016-04-28 16:07:28 +0200487void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
Josh Durgindd935f42013-08-28 21:43:09 -0700488
Douglas Fuller428a7152015-06-17 14:49:45 -0400489int ceph_osdc_call(struct ceph_osd_client *osdc,
490 struct ceph_object_id *oid,
491 struct ceph_object_locator *oloc,
492 const char *class, const char *method,
493 unsigned int flags,
494 struct page *req_page, size_t req_len,
495 struct page *resp_page, size_t *resp_len);
496
Sage Weilf24e9982009-10-06 11:31:10 -0700497extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
498 struct ceph_vino vino,
499 struct ceph_file_layout *layout,
500 u64 off, u64 *plen,
501 u32 truncate_seq, u64 truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800502 struct page **pages, int nr_pages,
503 int page_align);
Sage Weilf24e9982009-10-06 11:31:10 -0700504
505extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
506 struct ceph_vino vino,
507 struct ceph_file_layout *layout,
508 struct ceph_snap_context *sc,
509 u64 off, u64 len,
510 u32 truncate_seq, u64 truncate_size,
511 struct timespec *mtime,
Alex Elder24808822013-02-15 11:42:29 -0600512 struct page **pages, int nr_pages);
Sage Weilf24e9982009-10-06 11:31:10 -0700513
Ilya Dryomov922dab62016-05-26 01:15:02 +0200514/* watch/notify */
515struct ceph_osd_linger_request *
516ceph_osdc_watch(struct ceph_osd_client *osdc,
517 struct ceph_object_id *oid,
518 struct ceph_object_locator *oloc,
519 rados_watchcb2_t wcb,
520 rados_watcherrcb_t errcb,
521 void *data);
522int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
523 struct ceph_osd_linger_request *lreq);
524
525int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
526 struct ceph_object_id *oid,
527 struct ceph_object_locator *oloc,
528 u64 notify_id,
529 u64 cookie,
530 void *payload,
531 size_t payload_len);
Ilya Dryomov19079202016-04-28 16:07:27 +0200532int ceph_osdc_notify(struct ceph_osd_client *osdc,
533 struct ceph_object_id *oid,
534 struct ceph_object_locator *oloc,
535 void *payload,
536 size_t payload_len,
537 u32 timeout,
538 struct page ***preply_pages,
539 size_t *preply_len);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +0200540int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
541 struct ceph_osd_linger_request *lreq);
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700542int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
543 struct ceph_object_id *oid,
544 struct ceph_object_locator *oloc,
545 struct ceph_watch_item **watchers,
546 u32 *num_watchers);
Sage Weilf24e9982009-10-06 11:31:10 -0700547#endif
548