Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef _FS_CEPH_OSD_CLIENT_H
2#define _FS_CEPH_OSD_CLIENT_H
3
4#include <linux/completion.h>
5#include <linux/kref.h>
6#include <linux/mempool.h>
7#include <linux/rbtree.h>
8
9#include <linux/ceph/types.h>
10#include <linux/ceph/osdmap.h>
11#include <linux/ceph/messenger.h>
12#include <linux/ceph/auth.h>
13#include <linux/ceph/pagelist.h>
14
15/*
16 * Maximum object name size
17 * (must be at least as big as RBD_MAX_MD_NAME_LEN -- currently 100)
18 */
19#define MAX_OBJ_NAME_SIZE 100
20
21struct ceph_msg;
22struct ceph_snap_context;
23struct ceph_osd_request;
24struct ceph_osd_client;
25struct ceph_authorizer;
26
27/*
28 * completion callback for async writepages
29 */
30typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *,
31 struct ceph_msg *);
32typedef void (*ceph_osdc_unsafe_callback_t)(struct ceph_osd_request *, bool);
33
34/* a given osd we're communicating with */
35struct ceph_osd {
36 atomic_t o_ref;
37 struct ceph_osd_client *o_osdc;
38 int o_osd;
39 int o_incarnation;
40 struct rb_node o_node;
41 struct ceph_connection o_con;
42 struct list_head o_requests;
43 struct list_head o_linger_requests;
44 struct list_head o_osd_lru;
45 struct ceph_auth_handshake o_auth;
46 unsigned long lru_ttl;
47 int o_marked_for_keepalive;
48 struct list_head o_keepalive_item;
49};
50
51
52#define CEPH_OSD_MAX_OP 2
53
54enum ceph_osd_data_type {
55 CEPH_OSD_DATA_TYPE_NONE = 0,
56 CEPH_OSD_DATA_TYPE_PAGES,
57 CEPH_OSD_DATA_TYPE_PAGELIST,
58#ifdef CONFIG_BLOCK
59 CEPH_OSD_DATA_TYPE_BIO,
60#endif /* CONFIG_BLOCK */
61};
62
63struct ceph_osd_data {
64 enum ceph_osd_data_type type;
65 union {
66 struct {
67 struct page **pages;
68 u64 length;
69 u32 alignment;
70 bool pages_from_pool;
71 bool own_pages;
72 };
73 struct ceph_pagelist *pagelist;
74#ifdef CONFIG_BLOCK
75 struct {
76 struct bio *bio; /* list of bios */
77 size_t bio_length; /* total in list */
78 };
79#endif /* CONFIG_BLOCK */
80 };
81};
82
83struct ceph_osd_req_op {
84 u16 op; /* CEPH_OSD_OP_* */
85 u32 payload_len;
86 union {
87 struct ceph_osd_data raw_data_in;
88 struct {
89 u64 offset, length;
90 u64 truncate_size;
91 u32 truncate_seq;
92 struct ceph_osd_data osd_data;
93 } extent;
94 struct {
95 const char *class_name;
96 const char *method_name;
97 struct ceph_osd_data request_info;
98 struct ceph_osd_data request_data;
99 struct ceph_osd_data response_data;
100 __u8 class_len;
101 __u8 method_len;
102 __u8 argc;
103 } cls;
104 struct {
105 u64 cookie;
106 u64 ver;
107 u32 prot_ver;
108 u32 timeout;
109 __u8 flag;
110 } watch;
111 };
112};
113
114/* an in-flight request */
115struct ceph_osd_request {
116 u64 r_tid; /* unique for this client */
117 struct rb_node r_node;
118 struct list_head r_req_lru_item;
119 struct list_head r_osd_item;
120 struct list_head r_linger_item;
121 struct list_head r_linger_osd;
122 struct ceph_osd *r_osd;
123 struct ceph_pg r_pgid;
124 int r_pg_osds[CEPH_PG_MAX_SIZE];
125 int r_num_pg_osds;
126
127 struct ceph_msg *r_request, *r_reply;
128 int r_flags; /* any additional flags for the osd */
129 u32 r_sent; /* >0 if r_request is sending/sent */
130
131 /* request osd ops array */
132 unsigned int r_num_ops;
133 struct ceph_osd_req_op r_ops[CEPH_OSD_MAX_OP];
134
135 /* these are updated on each send */
136 __le32 *r_request_osdmap_epoch;
137 __le32 *r_request_flags;
138 __le64 *r_request_pool;
139 void *r_request_pgid;
140 __le32 *r_request_attempts;
141 struct ceph_eversion *r_request_reassert_version;
142
143 int r_result;
144 int r_reply_op_len[CEPH_OSD_MAX_OP];
145 s32 r_reply_op_result[CEPH_OSD_MAX_OP];
146 int r_got_reply;
147 int r_linger;
148 int r_completed;
149
150 struct ceph_osd_client *r_osdc;
151 struct kref r_kref;
152 bool r_mempool;
153 struct completion r_completion, r_safe_completion;
154 ceph_osdc_callback_t r_callback;
155 ceph_osdc_unsafe_callback_t r_unsafe_callback;
156 struct ceph_eversion r_reassert_version;
157 struct list_head r_unsafe_item;
158
159 struct inode *r_inode; /* for use by callbacks */
160 void *r_priv; /* ditto */
161
162 char r_oid[MAX_OBJ_NAME_SIZE]; /* object name */
163 int r_oid_len;
164 u64 r_snapid;
165 unsigned long r_stamp; /* send OR check time */
166
167 struct ceph_file_layout r_file_layout;
168 struct ceph_snap_context *r_snapc; /* snap context for writes */
169};
170
171struct ceph_osd_event {
172 u64 cookie;
173 int one_shot;
174 struct ceph_osd_client *osdc;
175 void (*cb)(u64, u64, u8, void *);
176 void *data;
177 struct rb_node node;
178 struct list_head osd_node;
179 struct kref kref;
180};
181
182struct ceph_osd_event_work {
183 struct work_struct work;
184 struct ceph_osd_event *event;
185 u64 ver;
186 u64 notify_id;
187 u8 opcode;
188};
189
190struct ceph_osd_client {
191 struct ceph_client *client;
192
193 struct ceph_osdmap *osdmap; /* current map */
194 struct rw_semaphore map_sem;
195 struct completion map_waiters;
196 u64 last_requested_map;
197
198 struct mutex request_mutex;
199 struct rb_root osds; /* osds */
200 struct list_head osd_lru; /* idle osds */
201 u64 timeout_tid; /* tid of timeout triggering rq */
202 u64 last_tid; /* tid of last request */
203 struct rb_root requests; /* pending requests */
204 struct list_head req_lru; /* in-flight lru */
205 struct list_head req_unsent; /* unsent/need-resend queue */
206 struct list_head req_notarget; /* map to no osd */
207 struct list_head req_linger; /* lingering requests */
208 int num_requests;
209 struct delayed_work timeout_work;
210 struct delayed_work osds_timeout_work;
211#ifdef CONFIG_DEBUG_FS
212 struct dentry *debugfs_file;
213#endif
214
215 mempool_t *req_mempool;
216
217 struct ceph_msgpool msgpool_op;
218 struct ceph_msgpool msgpool_op_reply;
219
220 spinlock_t event_lock;
221 struct rb_root event_tree;
222 u64 event_count;
223
224 struct workqueue_struct *notify_wq;
225};
226
227extern int ceph_osdc_setup(void);
228extern void ceph_osdc_cleanup(void);
229
230extern int ceph_osdc_init(struct ceph_osd_client *osdc,
231 struct ceph_client *client);
232extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
233
234extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
235 struct ceph_msg *msg);
236extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
237 struct ceph_msg *msg);
238
239extern void osd_req_op_init(struct ceph_osd_request *osd_req,
240 unsigned int which, u16 opcode);
241
242extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
243 unsigned int which,
244 struct page **pages, u64 length,
245 u32 alignment, bool pages_from_pool,
246 bool own_pages);
247
248extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
249 unsigned int which, u16 opcode,
250 u64 offset, u64 length,
251 u64 truncate_size, u32 truncate_seq);
252extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
253 unsigned int which, u64 length);
254
255extern struct ceph_osd_data *osd_req_op_extent_osd_data(
256 struct ceph_osd_request *osd_req,
257 unsigned int which);
258extern struct ceph_osd_data *osd_req_op_cls_response_data(
259 struct ceph_osd_request *osd_req,
260 unsigned int which);
261
262extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
263 unsigned int which,
264 struct page **pages, u64 length,
265 u32 alignment, bool pages_from_pool,
266 bool own_pages);
267extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
268 unsigned int which,
269 struct ceph_pagelist *pagelist);
270#ifdef CONFIG_BLOCK
271extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
272 unsigned int which,
273 struct bio *bio, size_t bio_length);
274#endif /* CONFIG_BLOCK */
275
276extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
277 unsigned int which,
278 struct ceph_pagelist *pagelist);
279extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
280 unsigned int which,
281 struct page **pages, u64 length,
282 u32 alignment, bool pages_from_pool,
283 bool own_pages);
284extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
285 unsigned int which,
286 struct page **pages, u64 length,
287 u32 alignment, bool pages_from_pool,
288 bool own_pages);
289
290extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
291 unsigned int which, u16 opcode,
292 const char *class, const char *method);
293extern void osd_req_op_watch_init(struct ceph_osd_request *osd_req,
294 unsigned int which, u16 opcode,
295 u64 cookie, u64 version, int flag);
296
297extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
298 struct ceph_snap_context *snapc,
299 unsigned int num_ops,
300 bool use_mempool,
301 gfp_t gfp_flags);
302
303extern void ceph_osdc_build_request(struct ceph_osd_request *req, u64 off,
304 struct ceph_snap_context *snapc,
305 u64 snap_id,
306 struct timespec *mtime);
307
308extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
309 struct ceph_file_layout *layout,
310 struct ceph_vino vino,
311 u64 offset, u64 *len,
312 int num_ops, int opcode, int flags,
313 struct ceph_snap_context *snapc,
314 u32 truncate_seq, u64 truncate_size,
315 bool use_mempool);
316
317extern void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
318 struct ceph_osd_request *req);
319extern void ceph_osdc_unregister_linger_request(struct ceph_osd_client *osdc,
320 struct ceph_osd_request *req);
321
322static inline void ceph_osdc_get_request(struct ceph_osd_request *req)
323{
324 kref_get(&req->r_kref);
325}
326extern void ceph_osdc_release_request(struct kref *kref);
327static inline void ceph_osdc_put_request(struct ceph_osd_request *req)
328{
329 kref_put(&req->r_kref, ceph_osdc_release_request);
330}
331
332extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
333 struct ceph_osd_request *req,
334 bool nofail);
335extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
336 struct ceph_osd_request *req);
337extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
338
339extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
340 struct ceph_vino vino,
341 struct ceph_file_layout *layout,
342 u64 off, u64 *plen,
343 u32 truncate_seq, u64 truncate_size,
344 struct page **pages, int nr_pages,
345 int page_align);
346
347extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
348 struct ceph_vino vino,
349 struct ceph_file_layout *layout,
350 struct ceph_snap_context *sc,
351 u64 off, u64 len,
352 u32 truncate_seq, u64 truncate_size,
353 struct timespec *mtime,
354 struct page **pages, int nr_pages);
355
356/* watch/notify events */
357extern int ceph_osdc_create_event(struct ceph_osd_client *osdc,
358 void (*event_cb)(u64, u64, u8, void *),
359 void *data, struct ceph_osd_event **pevent);
360extern void ceph_osdc_cancel_event(struct ceph_osd_event *event);
361extern void ceph_osdc_put_event(struct ceph_osd_event *event);
362#endif
363