libceph: add CREATE osd operation support
[linux-2.6-block.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;
4e7a5dcd 19struct ceph_authorizer;
f24e9980
SW
20
21/*
22 * completion callback for async writepages
23 */
24typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *,
25 struct ceph_msg *);
26be8808 26typedef void (*ceph_osdc_unsafe_callback_t)(struct ceph_osd_request *, bool);
f24e9980
SW
27
28/* a given osd we're communicating with */
29struct ceph_osd {
30 atomic_t o_ref;
31 struct ceph_osd_client *o_osdc;
32 int o_osd;
33 int o_incarnation;
34 struct rb_node o_node;
35 struct ceph_connection o_con;
36 struct list_head o_requests;
a40c4f10 37 struct list_head o_linger_requests;
f5a2041b 38 struct list_head o_osd_lru;
6c4a1915 39 struct ceph_auth_handshake o_auth;
f5a2041b 40 unsigned long lru_ttl;
422d2cb8
YS
41 int o_marked_for_keepalive;
42 struct list_head o_keepalive_item;
f24e9980
SW
43};
44
1b83bef2 45
7cc69d42 46#define CEPH_OSD_MAX_OP 3
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_* */
79528734
AE
80 u32 payload_len;
81 union {
49719778 82 struct ceph_osd_data raw_data_in;
79528734
AE
83 struct {
84 u64 offset, length;
85 u64 truncate_size;
86 u32 truncate_seq;
5476492f 87 struct ceph_osd_data osd_data;
79528734 88 } extent;
d74b50be
YZ
89 struct {
90 __le32 name_len;
91 __le32 value_len;
92 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
93 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
94 struct ceph_osd_data osd_data;
95 } xattr;
79528734
AE
96 struct {
97 const char *class_name;
98 const char *method_name;
5476492f 99 struct ceph_osd_data request_info;
04017e29 100 struct ceph_osd_data request_data;
5476492f 101 struct ceph_osd_data response_data;
79528734
AE
102 __u8 class_len;
103 __u8 method_len;
104 __u8 argc;
105 } cls;
106 struct {
107 u64 cookie;
108 u64 ver;
109 u32 prot_ver;
110 u32 timeout;
111 __u8 flag;
112 } watch;
c647b8a8
ID
113 struct {
114 u64 expected_object_size;
115 u64 expected_write_size;
116 } alloc_hint;
79528734
AE
117 };
118};
119
f24e9980
SW
120/* an in-flight request */
121struct ceph_osd_request {
122 u64 r_tid; /* unique for this client */
123 struct rb_node r_node;
422d2cb8 124 struct list_head r_req_lru_item;
f24e9980 125 struct list_head r_osd_item;
a40c4f10 126 struct list_head r_linger_item;
1d0326b1 127 struct list_head r_linger_osd_item;
f24e9980 128 struct ceph_osd *r_osd;
5b191d99 129 struct ceph_pg r_pgid;
d85b7056
SW
130 int r_pg_osds[CEPH_PG_MAX_SIZE];
131 int r_num_pg_osds;
f24e9980
SW
132
133 struct ceph_msg *r_request, *r_reply;
f24e9980
SW
134 int r_flags; /* any additional flags for the osd */
135 u32 r_sent; /* >0 if r_request is sending/sent */
1b83bef2 136
79528734
AE
137 /* request osd ops array */
138 unsigned int r_num_ops;
139 struct ceph_osd_req_op r_ops[CEPH_OSD_MAX_OP];
140
1b83bef2
SW
141 /* these are updated on each send */
142 __le32 *r_request_osdmap_epoch;
143 __le32 *r_request_flags;
144 __le64 *r_request_pool;
145 void *r_request_pgid;
146 __le32 *r_request_attempts;
d29adb34 147 bool r_paused;
1b83bef2
SW
148 struct ceph_eversion *r_request_reassert_version;
149
150 int r_result;
151 int r_reply_op_len[CEPH_OSD_MAX_OP];
152 s32 r_reply_op_result[CEPH_OSD_MAX_OP];
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 */
f24e9980
SW
177};
178
205ee118
ID
179struct ceph_request_redirect {
180 struct ceph_object_locator oloc;
181};
182
a40c4f10
YS
183struct ceph_osd_event {
184 u64 cookie;
185 int one_shot;
186 struct ceph_osd_client *osdc;
187 void (*cb)(u64, u64, u8, void *);
188 void *data;
189 struct rb_node node;
190 struct list_head osd_node;
191 struct kref kref;
a40c4f10
YS
192};
193
194struct ceph_osd_event_work {
195 struct work_struct work;
196 struct ceph_osd_event *event;
197 u64 ver;
198 u64 notify_id;
199 u8 opcode;
200};
201
f24e9980
SW
202struct ceph_osd_client {
203 struct ceph_client *client;
204
205 struct ceph_osdmap *osdmap; /* current map */
206 struct rw_semaphore map_sem;
207 struct completion map_waiters;
208 u64 last_requested_map;
209
210 struct mutex request_mutex;
211 struct rb_root osds; /* osds */
f5a2041b 212 struct list_head osd_lru; /* idle osds */
f24e9980
SW
213 u64 timeout_tid; /* tid of timeout triggering rq */
214 u64 last_tid; /* tid of last request */
215 struct rb_root requests; /* pending requests */
6f6c7006
SW
216 struct list_head req_lru; /* in-flight lru */
217 struct list_head req_unsent; /* unsent/need-resend queue */
218 struct list_head req_notarget; /* map to no osd */
a40c4f10 219 struct list_head req_linger; /* lingering requests */
f24e9980
SW
220 int num_requests;
221 struct delayed_work timeout_work;
f5a2041b 222 struct delayed_work osds_timeout_work;
039934b8 223#ifdef CONFIG_DEBUG_FS
f24e9980 224 struct dentry *debugfs_file;
039934b8 225#endif
f24e9980
SW
226
227 mempool_t *req_mempool;
228
0d59ab81 229 struct ceph_msgpool msgpool_op;
c16e7869 230 struct ceph_msgpool msgpool_op_reply;
a40c4f10
YS
231
232 spinlock_t event_lock;
233 struct rb_root event_tree;
234 u64 event_count;
235
236 struct workqueue_struct *notify_wq;
f24e9980
SW
237};
238
5522ae0b
AE
239extern int ceph_osdc_setup(void);
240extern void ceph_osdc_cleanup(void);
241
f24e9980
SW
242extern int ceph_osdc_init(struct ceph_osd_client *osdc,
243 struct ceph_client *client);
244extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
245
246extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
247 struct ceph_msg *msg);
248extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
249 struct ceph_msg *msg);
250
49719778
AE
251extern void osd_req_op_init(struct ceph_osd_request *osd_req,
252 unsigned int which, u16 opcode);
253
254extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
255 unsigned int which,
256 struct page **pages, u64 length,
257 u32 alignment, bool pages_from_pool,
258 bool own_pages);
259
c99d2d4a
AE
260extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
261 unsigned int which, u16 opcode,
33803f33
AE
262 u64 offset, u64 length,
263 u64 truncate_size, u32 truncate_seq);
c99d2d4a
AE
264extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
265 unsigned int which, u64 length);
a4ce40a9
AE
266
267extern struct ceph_osd_data *osd_req_op_extent_osd_data(
268 struct ceph_osd_request *osd_req,
406e2c9f 269 unsigned int which);
a4ce40a9
AE
270extern struct ceph_osd_data *osd_req_op_cls_response_data(
271 struct ceph_osd_request *osd_req,
272 unsigned int which);
273
274extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
406e2c9f 275 unsigned int which,
a4ce40a9
AE
276 struct page **pages, u64 length,
277 u32 alignment, bool pages_from_pool,
278 bool own_pages);
279extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
406e2c9f 280 unsigned int which,
a4ce40a9
AE
281 struct ceph_pagelist *pagelist);
282#ifdef CONFIG_BLOCK
283extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
406e2c9f 284 unsigned int which,
a4ce40a9
AE
285 struct bio *bio, size_t bio_length);
286#endif /* CONFIG_BLOCK */
287
04017e29
AE
288extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
289 unsigned int which,
290 struct ceph_pagelist *pagelist);
6c57b554
AE
291extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
292 unsigned int which,
293 struct page **pages, u64 length,
294 u32 alignment, bool pages_from_pool,
295 bool own_pages);
a4ce40a9 296extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
c99d2d4a 297 unsigned int which,
a4ce40a9
AE
298 struct page **pages, u64 length,
299 u32 alignment, bool pages_from_pool,
300 bool own_pages);
301
c99d2d4a
AE
302extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
303 unsigned int which, u16 opcode,
04017e29 304 const char *class, const char *method);
d74b50be
YZ
305extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
306 u16 opcode, const char *name, const void *value,
307 size_t size, u8 cmp_op, u8 cmp_mode);
c99d2d4a
AE
308extern void osd_req_op_watch_init(struct ceph_osd_request *osd_req,
309 unsigned int which, u16 opcode,
33803f33 310 u64 cookie, u64 version, int flag);
c647b8a8
ID
311extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
312 unsigned int which,
313 u64 expected_object_size,
314 u64 expected_write_size);
33803f33 315
3499e8a5 316extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
3499e8a5 317 struct ceph_snap_context *snapc,
acead002 318 unsigned int num_ops,
3499e8a5 319 bool use_mempool,
54a54007 320 gfp_t gfp_flags);
3499e8a5 321
175face2 322extern void ceph_osdc_build_request(struct ceph_osd_request *req, u64 off,
68b4476b 323 struct ceph_snap_context *snapc,
4d6b250b 324 u64 snap_id,
af77f26c 325 struct timespec *mtime);
3499e8a5 326
f24e9980
SW
327extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
328 struct ceph_file_layout *layout,
329 struct ceph_vino vino,
acead002 330 u64 offset, u64 *len,
79528734 331 int num_ops, int opcode, int flags,
f24e9980 332 struct ceph_snap_context *snapc,
acead002 333 u32 truncate_seq, u64 truncate_size,
153e5167 334 bool use_mempool);
f24e9980 335
a40c4f10
YS
336extern void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
337 struct ceph_osd_request *req);
a40c4f10 338
9e94af20
ID
339extern void ceph_osdc_get_request(struct ceph_osd_request *req);
340extern void ceph_osdc_put_request(struct ceph_osd_request *req);
f24e9980
SW
341
342extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
343 struct ceph_osd_request *req,
344 bool nofail);
c9f9b93d 345extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
f24e9980
SW
346extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
347 struct ceph_osd_request *req);
348extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
349
dd935f44
JD
350extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
351
f24e9980
SW
352extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
353 struct ceph_vino vino,
354 struct ceph_file_layout *layout,
355 u64 off, u64 *plen,
356 u32 truncate_seq, u64 truncate_size,
b7495fc2
SW
357 struct page **pages, int nr_pages,
358 int page_align);
f24e9980
SW
359
360extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
361 struct ceph_vino vino,
362 struct ceph_file_layout *layout,
363 struct ceph_snap_context *sc,
364 u64 off, u64 len,
365 u32 truncate_seq, u64 truncate_size,
366 struct timespec *mtime,
24808826 367 struct page **pages, int nr_pages);
f24e9980 368
a40c4f10
YS
369/* watch/notify events */
370extern int ceph_osdc_create_event(struct ceph_osd_client *osdc,
371 void (*event_cb)(u64, u64, u8, void *),
3c663bbd 372 void *data, struct ceph_osd_event **pevent);
a40c4f10 373extern void ceph_osdc_cancel_event(struct ceph_osd_event *event);
a40c4f10 374extern void ceph_osdc_put_event(struct ceph_osd_event *event);
f24e9980
SW
375#endif
376