Merge branch 'for-4.6-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[deliverable/linux.git] / include / linux / ceph / osd_client.h
CommitLineData
f24e9980
SW
1#ifndef _FS_CEPH_OSD_CLIENT_H
2#define _FS_CEPH_OSD_CLIENT_H
3
4#include <linux/completion.h>
415e49a9 5#include <linux/kref.h>
f24e9980
SW
6#include <linux/mempool.h>
7#include <linux/rbtree.h>
8
6c4a1915
AE
9#include <linux/ceph/types.h>
10#include <linux/ceph/osdmap.h>
11#include <linux/ceph/messenger.h>
12#include <linux/ceph/auth.h>
c885837f 13#include <linux/ceph/pagelist.h>
f24e9980
SW
14
15struct ceph_msg;
16struct ceph_snap_context;
17struct ceph_osd_request;
18struct ceph_osd_client;
19
20/*
21 * completion callback for async writepages
22 */
23typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *,
24 struct ceph_msg *);
26be8808 25typedef void (*ceph_osdc_unsafe_callback_t)(struct ceph_osd_request *, bool);
f24e9980
SW
26
27/* a given osd we're communicating with */
28struct ceph_osd {
29 atomic_t o_ref;
30 struct ceph_osd_client *o_osdc;
31 int o_osd;
32 int o_incarnation;
33 struct rb_node o_node;
34 struct ceph_connection o_con;
35 struct list_head o_requests;
a40c4f10 36 struct list_head o_linger_requests;
f5a2041b 37 struct list_head o_osd_lru;
6c4a1915 38 struct ceph_auth_handshake o_auth;
f5a2041b 39 unsigned long lru_ttl;
422d2cb8
YS
40 int o_marked_for_keepalive;
41 struct list_head o_keepalive_item;
f24e9980
SW
42};
43
1b83bef2 44
3f1af42a
ID
45#define CEPH_OSD_SLAB_OPS 2
46#define CEPH_OSD_MAX_OPS 16
1b83bef2 47
2ac2b7a6 48enum ceph_osd_data_type {
ec9123c5 49 CEPH_OSD_DATA_TYPE_NONE = 0,
2ac2b7a6 50 CEPH_OSD_DATA_TYPE_PAGES,
9a5e6d09 51 CEPH_OSD_DATA_TYPE_PAGELIST,
2ac2b7a6
AE
52#ifdef CONFIG_BLOCK
53 CEPH_OSD_DATA_TYPE_BIO,
54#endif /* CONFIG_BLOCK */
55};
56
2794a82a 57struct ceph_osd_data {
2ac2b7a6
AE
58 enum ceph_osd_data_type type;
59 union {
2794a82a
AE
60 struct {
61 struct page **pages;
e0c59487 62 u64 length;
2794a82a
AE
63 u32 alignment;
64 bool pages_from_pool;
65 bool own_pages;
66 };
9a5e6d09 67 struct ceph_pagelist *pagelist;
2794a82a 68#ifdef CONFIG_BLOCK
fdce58cc
AE
69 struct {
70 struct bio *bio; /* list of bios */
71 size_t bio_length; /* total in list */
72 };
2794a82a
AE
73#endif /* CONFIG_BLOCK */
74 };
75};
76
79528734
AE
77struct ceph_osd_req_op {
78 u16 op; /* CEPH_OSD_OP_* */
7b25bf5f 79 u32 flags; /* CEPH_OSD_OP_FLAG_* */
de2aa102 80 u32 indata_len; /* request */
7665d85b
YZ
81 u32 outdata_len; /* reply */
82 s32 rval;
83
79528734 84 union {
49719778 85 struct ceph_osd_data raw_data_in;
79528734
AE
86 struct {
87 u64 offset, length;
88 u64 truncate_size;
89 u32 truncate_seq;
5476492f 90 struct ceph_osd_data osd_data;
79528734 91 } extent;
d74b50be 92 struct {
d7d5a007
ID
93 u32 name_len;
94 u32 value_len;
d74b50be
YZ
95 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
96 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
97 struct ceph_osd_data osd_data;
98 } xattr;
79528734
AE
99 struct {
100 const char *class_name;
101 const char *method_name;
5476492f 102 struct ceph_osd_data request_info;
04017e29 103 struct ceph_osd_data request_data;
5476492f 104 struct ceph_osd_data response_data;
79528734
AE
105 __u8 class_len;
106 __u8 method_len;
107 __u8 argc;
108 } cls;
109 struct {
110 u64 cookie;
111 u64 ver;
112 u32 prot_ver;
113 u32 timeout;
114 __u8 flag;
115 } watch;
c647b8a8
ID
116 struct {
117 u64 expected_object_size;
118 u64 expected_write_size;
119 } alloc_hint;
79528734
AE
120 };
121};
122
f24e9980
SW
123/* an in-flight request */
124struct ceph_osd_request {
125 u64 r_tid; /* unique for this client */
126 struct rb_node r_node;
422d2cb8 127 struct list_head r_req_lru_item;
f24e9980 128 struct list_head r_osd_item;
a40c4f10 129 struct list_head r_linger_item;
1d0326b1 130 struct list_head r_linger_osd_item;
f24e9980 131 struct ceph_osd *r_osd;
5b191d99 132 struct ceph_pg r_pgid;
d85b7056
SW
133 int r_pg_osds[CEPH_PG_MAX_SIZE];
134 int r_num_pg_osds;
f24e9980
SW
135
136 struct ceph_msg *r_request, *r_reply;
f24e9980
SW
137 int r_flags; /* any additional flags for the osd */
138 u32 r_sent; /* >0 if r_request is sending/sent */
1b83bef2 139
79528734
AE
140 /* request osd ops array */
141 unsigned int r_num_ops;
79528734 142
1b83bef2
SW
143 /* these are updated on each send */
144 __le32 *r_request_osdmap_epoch;
145 __le32 *r_request_flags;
146 __le64 *r_request_pool;
147 void *r_request_pgid;
148 __le32 *r_request_attempts;
d29adb34 149 bool r_paused;
1b83bef2
SW
150 struct ceph_eversion *r_request_reassert_version;
151
152 int r_result;
350b1c32 153 int r_got_reply;
a40c4f10 154 int r_linger;
f24e9980
SW
155
156 struct ceph_osd_client *r_osdc;
415e49a9 157 struct kref r_kref;
f24e9980
SW
158 bool r_mempool;
159 struct completion r_completion, r_safe_completion;
26be8808
AE
160 ceph_osdc_callback_t r_callback;
161 ceph_osdc_unsafe_callback_t r_unsafe_callback;
f24e9980
SW
162 struct ceph_eversion r_reassert_version;
163 struct list_head r_unsafe_item;
164
165 struct inode *r_inode; /* for use by callbacks */
3d14c5d2 166 void *r_priv; /* ditto */
f24e9980 167
3c972c95
ID
168 struct ceph_object_locator r_base_oloc;
169 struct ceph_object_id r_base_oid;
205ee118
ID
170 struct ceph_object_locator r_target_oloc;
171 struct ceph_object_id r_target_oid;
22116525 172
2169aea6 173 u64 r_snapid;
3dd72fc0 174 unsigned long r_stamp; /* send OR check time */
f24e9980 175
f24e9980 176 struct ceph_snap_context *r_snapc; /* snap context for writes */
3f1af42a
ID
177
178 struct ceph_osd_req_op r_ops[];
f24e9980
SW
179};
180
205ee118
ID
181struct ceph_request_redirect {
182 struct ceph_object_locator oloc;
183};
184
a40c4f10
YS
185struct ceph_osd_event {
186 u64 cookie;
187 int one_shot;
188 struct ceph_osd_client *osdc;
189 void (*cb)(u64, u64, u8, void *);
190 void *data;
191 struct rb_node node;
192 struct list_head osd_node;
193 struct kref kref;
a40c4f10
YS
194};
195
196struct ceph_osd_event_work {
197 struct work_struct work;
198 struct ceph_osd_event *event;
199 u64 ver;
200 u64 notify_id;
201 u8 opcode;
202};
203
f24e9980
SW
204struct ceph_osd_client {
205 struct ceph_client *client;
206
207 struct ceph_osdmap *osdmap; /* current map */
208 struct rw_semaphore map_sem;
209 struct completion map_waiters;
210 u64 last_requested_map;
211
212 struct mutex request_mutex;
213 struct rb_root osds; /* osds */
f5a2041b 214 struct list_head osd_lru; /* idle osds */
f24e9980
SW
215 u64 timeout_tid; /* tid of timeout triggering rq */
216 u64 last_tid; /* tid of last request */
217 struct rb_root requests; /* pending requests */
6f6c7006
SW
218 struct list_head req_lru; /* in-flight lru */
219 struct list_head req_unsent; /* unsent/need-resend queue */
220 struct list_head req_notarget; /* map to no osd */
a40c4f10 221 struct list_head req_linger; /* lingering requests */
f24e9980
SW
222 int num_requests;
223 struct delayed_work timeout_work;
f5a2041b 224 struct delayed_work osds_timeout_work;
039934b8 225#ifdef CONFIG_DEBUG_FS
f24e9980 226 struct dentry *debugfs_file;
039934b8 227#endif
f24e9980
SW
228
229 mempool_t *req_mempool;
230
0d59ab81 231 struct ceph_msgpool msgpool_op;
c16e7869 232 struct ceph_msgpool msgpool_op_reply;
a40c4f10
YS
233
234 spinlock_t event_lock;
235 struct rb_root event_tree;
236 u64 event_count;
237
238 struct workqueue_struct *notify_wq;
f24e9980
SW
239};
240
5522ae0b
AE
241extern int ceph_osdc_setup(void);
242extern void ceph_osdc_cleanup(void);
243
f24e9980
SW
244extern int ceph_osdc_init(struct ceph_osd_client *osdc,
245 struct ceph_client *client);
246extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
247
248extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
249 struct ceph_msg *msg);
250extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
251 struct ceph_msg *msg);
252
49719778 253extern void osd_req_op_init(struct ceph_osd_request *osd_req,
144cba14 254 unsigned int which, u16 opcode, u32 flags);
49719778
AE
255
256extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
257 unsigned int which,
258 struct page **pages, u64 length,
259 u32 alignment, bool pages_from_pool,
260 bool own_pages);
261
c99d2d4a
AE
262extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
263 unsigned int which, u16 opcode,
33803f33
AE
264 u64 offset, u64 length,
265 u64 truncate_size, u32 truncate_seq);
c99d2d4a
AE
266extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
267 unsigned int which, u64 length);
2c63f49a
YZ
268extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
269 unsigned int which, u64 offset_inc);
a4ce40a9
AE
270
271extern struct ceph_osd_data *osd_req_op_extent_osd_data(
272 struct ceph_osd_request *osd_req,
406e2c9f 273 unsigned int which);
a4ce40a9
AE
274extern struct ceph_osd_data *osd_req_op_cls_response_data(
275 struct ceph_osd_request *osd_req,
276 unsigned int which);
277
278extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
406e2c9f 279 unsigned int which,
a4ce40a9
AE
280 struct page **pages, u64 length,
281 u32 alignment, bool pages_from_pool,
282 bool own_pages);
283extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
406e2c9f 284 unsigned int which,
a4ce40a9
AE
285 struct ceph_pagelist *pagelist);
286#ifdef CONFIG_BLOCK
287extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
406e2c9f 288 unsigned int which,
a4ce40a9
AE
289 struct bio *bio, size_t bio_length);
290#endif /* CONFIG_BLOCK */
291
04017e29
AE
292extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
293 unsigned int which,
294 struct ceph_pagelist *pagelist);
6c57b554
AE
295extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
296 unsigned int which,
297 struct page **pages, u64 length,
298 u32 alignment, bool pages_from_pool,
299 bool own_pages);
a4ce40a9 300extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
c99d2d4a 301 unsigned int which,
a4ce40a9
AE
302 struct page **pages, u64 length,
303 u32 alignment, bool pages_from_pool,
304 bool own_pages);
305
c99d2d4a
AE
306extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
307 unsigned int which, u16 opcode,
04017e29 308 const char *class, const char *method);
d74b50be
YZ
309extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
310 u16 opcode, const char *name, const void *value,
311 size_t size, u8 cmp_op, u8 cmp_mode);
c99d2d4a
AE
312extern void osd_req_op_watch_init(struct ceph_osd_request *osd_req,
313 unsigned int which, u16 opcode,
33803f33 314 u64 cookie, u64 version, int flag);
c647b8a8
ID
315extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
316 unsigned int which,
317 u64 expected_object_size,
318 u64 expected_write_size);
33803f33 319
3499e8a5 320extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
3499e8a5 321 struct ceph_snap_context *snapc,
acead002 322 unsigned int num_ops,
3499e8a5 323 bool use_mempool,
54a54007 324 gfp_t gfp_flags);
3499e8a5 325
175face2 326extern void ceph_osdc_build_request(struct ceph_osd_request *req, u64 off,
68b4476b 327 struct ceph_snap_context *snapc,
4d6b250b 328 u64 snap_id,
af77f26c 329 struct timespec *mtime);
3499e8a5 330
f24e9980
SW
331extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
332 struct ceph_file_layout *layout,
333 struct ceph_vino vino,
acead002 334 u64 offset, u64 *len,
715e4cd4
YZ
335 unsigned int which, int num_ops,
336 int opcode, int flags,
f24e9980 337 struct ceph_snap_context *snapc,
acead002 338 u32 truncate_seq, u64 truncate_size,
153e5167 339 bool use_mempool);
f24e9980 340
a40c4f10
YS
341extern void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
342 struct ceph_osd_request *req);
a40c4f10 343
9e94af20
ID
344extern void ceph_osdc_get_request(struct ceph_osd_request *req);
345extern void ceph_osdc_put_request(struct ceph_osd_request *req);
f24e9980
SW
346
347extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
348 struct ceph_osd_request *req,
349 bool nofail);
c9f9b93d 350extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
f24e9980
SW
351extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
352 struct ceph_osd_request *req);
353extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
354
dd935f44
JD
355extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
356
f24e9980
SW
357extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
358 struct ceph_vino vino,
359 struct ceph_file_layout *layout,
360 u64 off, u64 *plen,
361 u32 truncate_seq, u64 truncate_size,
b7495fc2
SW
362 struct page **pages, int nr_pages,
363 int page_align);
f24e9980
SW
364
365extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
366 struct ceph_vino vino,
367 struct ceph_file_layout *layout,
368 struct ceph_snap_context *sc,
369 u64 off, u64 len,
370 u32 truncate_seq, u64 truncate_size,
371 struct timespec *mtime,
24808826 372 struct page **pages, int nr_pages);
f24e9980 373
a40c4f10
YS
374/* watch/notify events */
375extern int ceph_osdc_create_event(struct ceph_osd_client *osdc,
376 void (*event_cb)(u64, u64, u8, void *),
3c663bbd 377 void *data, struct ceph_osd_event **pevent);
a40c4f10 378extern void ceph_osdc_cancel_event(struct ceph_osd_event *event);
a40c4f10 379extern void ceph_osdc_put_event(struct ceph_osd_event *event);
f24e9980
SW
380#endif
381
This page took 0.342046 seconds and 5 git commands to generate.