osd_client.h 11.3 KB
Newer Older
S
Sage Weil 已提交
1 2 3 4
#ifndef _FS_CEPH_OSD_CLIENT_H
#define _FS_CEPH_OSD_CLIENT_H

#include <linux/completion.h>
S
Sage Weil 已提交
5
#include <linux/kref.h>
S
Sage Weil 已提交
6 7 8
#include <linux/mempool.h>
#include <linux/rbtree.h>

9 10 11 12
#include <linux/ceph/types.h>
#include <linux/ceph/osdmap.h>
#include <linux/ceph/messenger.h>
#include <linux/ceph/auth.h>
13
#include <linux/ceph/pagelist.h>
S
Sage Weil 已提交
14 15 16 17 18 19 20 21 22 23 24

struct ceph_msg;
struct ceph_snap_context;
struct ceph_osd_request;
struct ceph_osd_client;

/*
 * completion callback for async writepages
 */
typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *,
				     struct ceph_msg *);
25
typedef void (*ceph_osdc_unsafe_callback_t)(struct ceph_osd_request *, bool);
S
Sage Weil 已提交
26

27 28
#define CEPH_HOMELESS_OSD	-1

S
Sage Weil 已提交
29 30 31 32 33 34 35 36 37
/* a given osd we're communicating with */
struct ceph_osd {
	atomic_t o_ref;
	struct ceph_osd_client *o_osdc;
	int o_osd;
	int o_incarnation;
	struct rb_node o_node;
	struct ceph_connection o_con;
	struct list_head o_requests;
38
	struct list_head o_linger_requests;
39
	struct list_head o_osd_lru;
40
	struct ceph_auth_handshake o_auth;
41
	unsigned long lru_ttl;
42
	struct list_head o_keepalive_item;
S
Sage Weil 已提交
43 44
};

45 46
#define CEPH_OSD_SLAB_OPS	2
#define CEPH_OSD_MAX_OPS	16
47

48
enum ceph_osd_data_type {
49
	CEPH_OSD_DATA_TYPE_NONE = 0,
50
	CEPH_OSD_DATA_TYPE_PAGES,
51
	CEPH_OSD_DATA_TYPE_PAGELIST,
52 53 54 55 56
#ifdef CONFIG_BLOCK
	CEPH_OSD_DATA_TYPE_BIO,
#endif /* CONFIG_BLOCK */
};

57
struct ceph_osd_data {
58 59
	enum ceph_osd_data_type	type;
	union {
60 61
		struct {
			struct page	**pages;
62
			u64		length;
63 64 65 66
			u32		alignment;
			bool		pages_from_pool;
			bool		own_pages;
		};
67
		struct ceph_pagelist	*pagelist;
68
#ifdef CONFIG_BLOCK
69 70 71 72
		struct {
			struct bio	*bio;		/* list of bios */
			size_t		bio_length;	/* total in list */
		};
73 74 75 76
#endif /* CONFIG_BLOCK */
	};
};

77 78
struct ceph_osd_req_op {
	u16 op;           /* CEPH_OSD_OP_* */
79
	u32 flags;        /* CEPH_OSD_OP_FLAG_* */
80
	u32 indata_len;   /* request */
81 82 83
	u32 outdata_len;  /* reply */
	s32 rval;

84
	union {
A
Alex Elder 已提交
85
		struct ceph_osd_data raw_data_in;
86 87 88 89
		struct {
			u64 offset, length;
			u64 truncate_size;
			u32 truncate_seq;
90
			struct ceph_osd_data osd_data;
91
		} extent;
92
		struct {
93 94
			u32 name_len;
			u32 value_len;
95 96 97 98
			__u8 cmp_op;       /* CEPH_OSD_CMPXATTR_OP_* */
			__u8 cmp_mode;     /* CEPH_OSD_CMPXATTR_MODE_* */
			struct ceph_osd_data osd_data;
		} xattr;
99 100 101
		struct {
			const char *class_name;
			const char *method_name;
102
			struct ceph_osd_data request_info;
103
			struct ceph_osd_data request_data;
104
			struct ceph_osd_data response_data;
105 106 107 108 109 110 111 112 113 114 115
			__u8 class_len;
			__u8 method_len;
			__u8 argc;
		} cls;
		struct {
			u64 cookie;
			u64 ver;
			u32 prot_ver;
			u32 timeout;
			__u8 flag;
		} watch;
116 117 118 119
		struct {
			u64 expected_object_size;
			u64 expected_write_size;
		} alloc_hint;
120 121 122
	};
};

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
struct ceph_osd_request_target {
	struct ceph_object_id base_oid;
	struct ceph_object_locator base_oloc;
	struct ceph_object_id target_oid;
	struct ceph_object_locator target_oloc;

	struct ceph_pg pgid;
	u32 pg_num;
	u32 pg_num_mask;
	struct ceph_osds acting;
	struct ceph_osds up;
	int size;
	int min_size;
	bool sort_bitwise;

	unsigned int flags;                /* CEPH_OSD_FLAG_* */
	bool paused;

	int osd;
};

S
Sage Weil 已提交
144 145 146 147
/* an in-flight request */
struct ceph_osd_request {
	u64             r_tid;              /* unique for this client */
	struct rb_node  r_node;
148
	struct list_head r_req_lru_item;
S
Sage Weil 已提交
149
	struct list_head r_osd_item;
150
	struct list_head r_linger_item;
151
	struct list_head r_linger_osd_item;
S
Sage Weil 已提交
152
	struct ceph_osd *r_osd;
153 154 155 156 157

	struct ceph_osd_request_target r_t;
#define r_base_oid	r_t.base_oid
#define r_base_oloc	r_t.base_oloc
#define r_flags		r_t.flags
S
Sage Weil 已提交
158 159 160

	struct ceph_msg  *r_request, *r_reply;
	u32               r_sent;      /* >0 if r_request is sending/sent */
161

162 163 164
	/* request osd ops array  */
	unsigned int		r_num_ops;

165 166 167 168 169 170 171 172 173
	/* these are updated on each send */
	__le32           *r_request_osdmap_epoch;
	__le32           *r_request_flags;
	__le64           *r_request_pool;
	void             *r_request_pgid;
	__le32           *r_request_attempts;
	struct ceph_eversion *r_request_reassert_version;

	int               r_result;
174
	int               r_got_reply;
175
	int		  r_linger;
S
Sage Weil 已提交
176 177

	struct ceph_osd_client *r_osdc;
S
Sage Weil 已提交
178
	struct kref       r_kref;
S
Sage Weil 已提交
179 180
	bool              r_mempool;
	struct completion r_completion, r_safe_completion;
181 182
	ceph_osdc_callback_t r_callback;
	ceph_osdc_unsafe_callback_t r_unsafe_callback;
S
Sage Weil 已提交
183 184 185 186
	struct ceph_eversion r_reassert_version;
	struct list_head  r_unsafe_item;

	struct inode *r_inode;         	      /* for use by callbacks */
187
	void *r_priv;			      /* ditto */
S
Sage Weil 已提交
188

189
	u64               r_snapid;
S
Sage Weil 已提交
190
	unsigned long     r_stamp;            /* send OR check time */
S
Sage Weil 已提交
191 192

	struct ceph_snap_context *r_snapc;    /* snap context for writes */
193 194

	struct ceph_osd_req_op r_ops[];
S
Sage Weil 已提交
195 196
};

197 198 199 200
struct ceph_request_redirect {
	struct ceph_object_locator oloc;
};

201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
struct ceph_osd_event {
	u64 cookie;
	int one_shot;
	struct ceph_osd_client *osdc;
	void (*cb)(u64, u64, u8, void *);
	void *data;
	struct rb_node node;
	struct list_head osd_node;
	struct kref kref;
};

struct ceph_osd_event_work {
	struct work_struct work;
	struct ceph_osd_event *event;
        u64 ver;
        u64 notify_id;
        u8 opcode;
};

S
Sage Weil 已提交
220 221 222 223 224 225 226 227
struct ceph_osd_client {
	struct ceph_client     *client;

	struct ceph_osdmap     *osdmap;       /* current map */
	struct rw_semaphore    map_sem;

	struct mutex           request_mutex;
	struct rb_root         osds;          /* osds */
228
	struct list_head       osd_lru;       /* idle osds */
S
Sage Weil 已提交
229 230
	u64                    last_tid;      /* tid of last request */
	struct rb_root         requests;      /* pending requests */
231 232 233
	struct list_head       req_lru;	      /* in-flight lru */
	struct list_head       req_unsent;    /* unsent/need-resend queue */
	struct list_head       req_notarget;  /* map to no osd */
234
	struct list_head       req_linger;    /* lingering requests */
S
Sage Weil 已提交
235 236
	int                    num_requests;
	struct delayed_work    timeout_work;
237
	struct delayed_work    osds_timeout_work;
238
#ifdef CONFIG_DEBUG_FS
S
Sage Weil 已提交
239
	struct dentry 	       *debugfs_file;
240
#endif
S
Sage Weil 已提交
241 242 243

	mempool_t              *req_mempool;

244
	struct ceph_msgpool	msgpool_op;
S
Sage Weil 已提交
245
	struct ceph_msgpool	msgpool_op_reply;
246 247 248 249 250 251

	spinlock_t		event_lock;
	struct rb_root		event_tree;
	u64			event_count;

	struct workqueue_struct	*notify_wq;
S
Sage Weil 已提交
252 253
};

254 255 256
extern int ceph_osdc_setup(void);
extern void ceph_osdc_cleanup(void);

S
Sage Weil 已提交
257 258 259 260 261 262 263 264 265
extern int ceph_osdc_init(struct ceph_osd_client *osdc,
			  struct ceph_client *client);
extern void ceph_osdc_stop(struct ceph_osd_client *osdc);

extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
				   struct ceph_msg *msg);
extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
				 struct ceph_msg *msg);

A
Alex Elder 已提交
266
extern void osd_req_op_init(struct ceph_osd_request *osd_req,
267
			    unsigned int which, u16 opcode, u32 flags);
A
Alex Elder 已提交
268 269 270 271 272 273 274

extern void osd_req_op_raw_data_in_pages(struct ceph_osd_request *,
					unsigned int which,
					struct page **pages, u64 length,
					u32 alignment, bool pages_from_pool,
					bool own_pages);

275 276
extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
					unsigned int which, u16 opcode,
277 278
					u64 offset, u64 length,
					u64 truncate_size, u32 truncate_seq);
279 280
extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
					unsigned int which, u64 length);
281 282
extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
				       unsigned int which, u64 offset_inc);
283 284 285

extern struct ceph_osd_data *osd_req_op_extent_osd_data(
					struct ceph_osd_request *osd_req,
286
					unsigned int which);
287 288

extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
289
					unsigned int which,
290 291 292 293
					struct page **pages, u64 length,
					u32 alignment, bool pages_from_pool,
					bool own_pages);
extern void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *,
294
					unsigned int which,
295 296 297
					struct ceph_pagelist *pagelist);
#ifdef CONFIG_BLOCK
extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
298
					unsigned int which,
299 300 301
					struct bio *bio, size_t bio_length);
#endif /* CONFIG_BLOCK */

302 303 304
extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
					unsigned int which,
					struct ceph_pagelist *pagelist);
305 306 307 308 309
extern void osd_req_op_cls_request_data_pages(struct ceph_osd_request *,
					unsigned int which,
					struct page **pages, u64 length,
					u32 alignment, bool pages_from_pool,
					bool own_pages);
310
extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
311
					unsigned int which,
312 313 314 315
					struct page **pages, u64 length,
					u32 alignment, bool pages_from_pool,
					bool own_pages);

316 317
extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
					unsigned int which, u16 opcode,
318
					const char *class, const char *method);
319 320 321
extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
				 u16 opcode, const char *name, const void *value,
				 size_t size, u8 cmp_op, u8 cmp_mode);
322 323
extern void osd_req_op_watch_init(struct ceph_osd_request *osd_req,
					unsigned int which, u16 opcode,
324
					u64 cookie, u64 version, int flag);
325 326 327 328
extern void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
				       unsigned int which,
				       u64 expected_object_size,
				       u64 expected_write_size);
329

330 331
extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
					       struct ceph_snap_context *snapc,
332
					       unsigned int num_ops,
333
					       bool use_mempool,
334
					       gfp_t gfp_flags);
335
int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
336

337
extern void ceph_osdc_build_request(struct ceph_osd_request *req, u64 off,
338
				    struct ceph_snap_context *snapc,
339
				    u64 snap_id,
340
				    struct timespec *mtime);
341

S
Sage Weil 已提交
342 343 344
extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
				      struct ceph_file_layout *layout,
				      struct ceph_vino vino,
345
				      u64 offset, u64 *len,
346 347
				      unsigned int which, int num_ops,
				      int opcode, int flags,
S
Sage Weil 已提交
348
				      struct ceph_snap_context *snapc,
349
				      u32 truncate_seq, u64 truncate_size,
350
				      bool use_mempool);
S
Sage Weil 已提交
351

352 353 354
extern void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
					 struct ceph_osd_request *req);

355 356
extern void ceph_osdc_get_request(struct ceph_osd_request *req);
extern void ceph_osdc_put_request(struct ceph_osd_request *req);
S
Sage Weil 已提交
357 358 359 360

extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
				   struct ceph_osd_request *req,
				   bool nofail);
361
extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
S
Sage Weil 已提交
362 363 364 365
extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
				  struct ceph_osd_request *req);
extern void ceph_osdc_sync(struct ceph_osd_client *osdc);

366 367
extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);

S
Sage Weil 已提交
368 369 370 371 372
extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
			       struct ceph_vino vino,
			       struct ceph_file_layout *layout,
			       u64 off, u64 *plen,
			       u32 truncate_seq, u64 truncate_size,
373 374
			       struct page **pages, int nr_pages,
			       int page_align);
S
Sage Weil 已提交
375 376 377 378 379 380 381 382

extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
				struct ceph_vino vino,
				struct ceph_file_layout *layout,
				struct ceph_snap_context *sc,
				u64 off, u64 len,
				u32 truncate_seq, u64 truncate_size,
				struct timespec *mtime,
383
				struct page **pages, int nr_pages);
S
Sage Weil 已提交
384

385 386 387
/* watch/notify events */
extern int ceph_osdc_create_event(struct ceph_osd_client *osdc,
				  void (*event_cb)(u64, u64, u8, void *),
388
				  void *data, struct ceph_osd_event **pevent);
389 390
extern void ceph_osdc_cancel_event(struct ceph_osd_event *event);
extern void ceph_osdc_put_event(struct ceph_osd_event *event);
S
Sage Weil 已提交
391 392
#endif