osd_client.h 13.5 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
#include <linux/mempool.h>
#include <linux/rbtree.h>
8
#include <linux/refcount.h>
S
Sage Weil 已提交
9

10 11 12
#include <linux/ceph/types.h>
#include <linux/ceph/osdmap.h>
#include <linux/ceph/messenger.h>
13
#include <linux/ceph/msgpool.h>
14
#include <linux/ceph/auth.h>
15
#include <linux/ceph/pagelist.h>
S
Sage Weil 已提交
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
 */
25
typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *);
S
Sage Weil 已提交
26

27 28
#define CEPH_HOMELESS_OSD	-1

S
Sage Weil 已提交
29 30
/* a given osd we're communicating with */
struct ceph_osd {
31
	refcount_t o_ref;
S
Sage Weil 已提交
32 33 34 35 36
	struct ceph_osd_client *o_osdc;
	int o_osd;
	int o_incarnation;
	struct rb_node o_node;
	struct ceph_connection o_con;
37
	struct rb_root o_requests;
38
	struct rb_root 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;
43
	struct mutex lock;
S
Sage Weil 已提交
44 45
};

46 47
#define CEPH_OSD_SLAB_OPS	2
#define CEPH_OSD_MAX_OPS	16
48

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

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

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

85
	union {
A
Alex Elder 已提交
86
		struct ceph_osd_data raw_data_in;
87 88 89 90
		struct {
			u64 offset, length;
			u64 truncate_size;
			u32 truncate_seq;
91
			struct ceph_osd_data osd_data;
92
		} extent;
93
		struct {
94 95
			u32 name_len;
			u32 value_len;
96 97 98 99
			__u8 cmp_op;       /* CEPH_OSD_CMPXATTR_OP_* */
			__u8 cmp_mode;     /* CEPH_OSD_CMPXATTR_MODE_* */
			struct ceph_osd_data osd_data;
		} xattr;
100 101 102
		struct {
			const char *class_name;
			const char *method_name;
103
			struct ceph_osd_data request_info;
104
			struct ceph_osd_data request_data;
105
			struct ceph_osd_data response_data;
106 107
			__u8 class_len;
			__u8 method_len;
108
			u32 indata_len;
109 110 111
		} cls;
		struct {
			u64 cookie;
112 113
			__u8 op;           /* CEPH_OSD_WATCH_OP_ */
			u32 gen;
114
		} watch;
115 116 117
		struct {
			struct ceph_osd_data request_data;
		} notify_ack;
118 119 120 121 122
		struct {
			u64 cookie;
			struct ceph_osd_data request_data;
			struct ceph_osd_data response_data;
		} notify;
123 124 125
		struct {
			struct ceph_osd_data response_data;
		} list_watchers;
126 127 128 129
		struct {
			u64 expected_object_size;
			u64 expected_write_size;
		} alloc_hint;
130 131 132
	};
};

133 134 135 136 137 138
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;

139 140
	struct ceph_pg pgid;               /* last raw pg we mapped to */
	struct ceph_spg spgid;             /* last actual spg we mapped to */
141 142 143 144 145 146 147 148 149 150 151
	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;

152 153
	u32 last_force_resend;

154 155 156
	int osd;
};

S
Sage Weil 已提交
157 158 159 160
/* an in-flight request */
struct ceph_osd_request {
	u64             r_tid;              /* unique for this client */
	struct rb_node  r_node;
I
Ilya Dryomov 已提交
161
	struct rb_node  r_mc_node;          /* map check */
S
Sage Weil 已提交
162
	struct ceph_osd *r_osd;
163 164 165 166 167

	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 已提交
168 169 170

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

172 173 174
	/* request osd ops array  */
	unsigned int		r_num_ops;

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

	struct ceph_osd_client *r_osdc;
S
Sage Weil 已提交
178
	struct kref       r_kref;
S
Sage Weil 已提交
179
	bool              r_mempool;
I
Ilya Dryomov 已提交
180
	struct completion r_completion;       /* private to osd_client.c */
181
	ceph_osdc_callback_t r_callback;
S
Sage Weil 已提交
182 183 184
	struct list_head  r_unsafe_item;

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

187 188 189 190 191
	/* set by submitter */
	u64 r_snapid;                         /* for reads, CEPH_NOSNAP o/w */
	struct ceph_snap_context *r_snapc;    /* for writes */
	struct timespec r_mtime;              /* ditto */
	u64 r_data_offset;                    /* ditto */
192
	bool r_linger;                        /* don't resend on failure */
193
	bool r_abort_on_full;		      /* return ENOSPC when full */
S
Sage Weil 已提交
194

195 196
	/* internal */
	unsigned long r_stamp;                /* jiffies, send or check time */
197
	unsigned long r_start_stamp;          /* jiffies */
198
	int r_attempts;
I
Ilya Dryomov 已提交
199
	u32 r_map_dne_bound;
200 201

	struct ceph_osd_req_op r_ops[];
S
Sage Weil 已提交
202 203
};

204 205 206 207
struct ceph_request_redirect {
	struct ceph_object_locator oloc;
};

208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
/*
 * osd request identifier
 *
 * caller name + incarnation# + tid to unique identify this request
 */
struct ceph_osd_reqid {
	struct ceph_entity_name name;
	__le64 tid;
	__le32 inc;
} __packed;

struct ceph_blkin_trace_info {
	__le64 trace_id;
	__le64 span_id;
	__le64 parent_span_id;
} __packed;

225 226 227 228 229
typedef void (*rados_watchcb2_t)(void *arg, u64 notify_id, u64 cookie,
				 u64 notifier_id, void *data, size_t data_len);
typedef void (*rados_watcherrcb_t)(void *arg, u64 cookie, int err);

struct ceph_osd_linger_request {
230
	struct ceph_osd_client *osdc;
231 232
	u64 linger_id;
	bool committed;
233
	bool is_watch;                  /* watch or notify */
234 235 236 237 238

	struct ceph_osd *osd;
	struct ceph_osd_request *reg_req;
	struct ceph_osd_request *ping_req;
	unsigned long ping_sent;
239 240
	unsigned long watch_valid_thru;
	struct list_head pending_lworks;
241 242

	struct ceph_osd_request_target t;
I
Ilya Dryomov 已提交
243
	u32 map_dne_bound;
244 245 246

	struct timespec mtime;

247
	struct kref kref;
248 249 250
	struct mutex lock;
	struct rb_node node;            /* osd */
	struct rb_node osdc_node;       /* osdc */
I
Ilya Dryomov 已提交
251
	struct rb_node mc_node;         /* map check */
252 253 254
	struct list_head scan_item;

	struct completion reg_commit_wait;
255
	struct completion notify_finish_wait;
256
	int reg_commit_error;
257
	int notify_finish_error;
258 259 260
	int last_error;

	u32 register_gen;
261
	u64 notify_id;
262

263 264 265
	rados_watchcb2_t wcb;
	rados_watcherrcb_t errcb;
	void *data;
266 267 268

	struct page ***preply_pages;
	size_t *preply_len;
269 270
};

271 272 273 274 275 276
struct ceph_watch_item {
	struct ceph_entity_name name;
	u64 cookie;
	struct ceph_entity_addr addr;
};

277 278
#define CEPH_LINGER_ID_START	0xffff000000000000ULL

S
Sage Weil 已提交
279 280 281 282
struct ceph_osd_client {
	struct ceph_client     *client;

	struct ceph_osdmap     *osdmap;       /* current map */
283
	struct rw_semaphore    lock;
S
Sage Weil 已提交
284 285

	struct rb_root         osds;          /* osds */
286
	struct list_head       osd_lru;       /* idle osds */
287
	spinlock_t             osd_lru_lock;
288
	u32		       epoch_barrier;
289 290
	struct ceph_osd        homeless_osd;
	atomic64_t             last_tid;      /* tid of last request */
291 292
	u64                    last_linger_id;
	struct rb_root         linger_requests; /* lingering requests */
I
Ilya Dryomov 已提交
293 294
	struct rb_root         map_checks;
	struct rb_root         linger_map_checks;
295 296
	atomic_t               num_requests;
	atomic_t               num_homeless;
S
Sage Weil 已提交
297
	struct delayed_work    timeout_work;
298
	struct delayed_work    osds_timeout_work;
299
#ifdef CONFIG_DEBUG_FS
S
Sage Weil 已提交
300
	struct dentry 	       *debugfs_file;
301
#endif
S
Sage Weil 已提交
302 303 304

	mempool_t              *req_mempool;

305
	struct ceph_msgpool	msgpool_op;
S
Sage Weil 已提交
306
	struct ceph_msgpool	msgpool_op_reply;
307 308

	struct workqueue_struct	*notify_wq;
S
Sage Weil 已提交
309 310
};

311 312 313 314 315
static inline bool ceph_osdmap_flag(struct ceph_osd_client *osdc, int flag)
{
	return osdc->osdmap->flags & flag;
}

316 317 318
extern int ceph_osdc_setup(void);
extern void ceph_osdc_cleanup(void);

S
Sage Weil 已提交
319 320 321 322 323 324 325 326
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);
327
void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb);
S
Sage Weil 已提交
328

A
Alex Elder 已提交
329
extern void osd_req_op_init(struct ceph_osd_request *osd_req,
330
			    unsigned int which, u16 opcode, u32 flags);
A
Alex Elder 已提交
331 332 333 334 335 336 337

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);

338 339
extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
					unsigned int which, u16 opcode,
340 341
					u64 offset, u64 length,
					u64 truncate_size, u32 truncate_seq);
342 343
extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
					unsigned int which, u64 length);
344 345
extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
				       unsigned int which, u64 offset_inc);
346 347 348

extern struct ceph_osd_data *osd_req_op_extent_osd_data(
					struct ceph_osd_request *osd_req,
349
					unsigned int which);
350 351

extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
352
					unsigned int which,
353 354 355 356
					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 *,
357
					unsigned int which,
358 359 360
					struct ceph_pagelist *pagelist);
#ifdef CONFIG_BLOCK
extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
361
					unsigned int which,
362 363 364
					struct bio *bio, size_t bio_length);
#endif /* CONFIG_BLOCK */

365 366 367
extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
					unsigned int which,
					struct ceph_pagelist *pagelist);
368 369 370 371 372
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);
373
extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
374
					unsigned int which,
375 376 377
					struct page **pages, u64 length,
					u32 alignment, bool pages_from_pool,
					bool own_pages);
378 379
extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
					unsigned int which, u16 opcode,
380
					const char *class, const char *method);
381 382 383
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);
384 385 386 387
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);
388

389 390
extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
					       struct ceph_snap_context *snapc,
391
					       unsigned int num_ops,
392
					       bool use_mempool,
393
					       gfp_t gfp_flags);
394
int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
395

S
Sage Weil 已提交
396 397 398
extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
				      struct ceph_file_layout *layout,
				      struct ceph_vino vino,
399
				      u64 offset, u64 *len,
400 401
				      unsigned int which, int num_ops,
				      int opcode, int flags,
S
Sage Weil 已提交
402
				      struct ceph_snap_context *snapc,
403
				      u32 truncate_seq, u64 truncate_size,
404
				      bool use_mempool);
S
Sage Weil 已提交
405

406 407
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 已提交
408 409 410 411

extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
				   struct ceph_osd_request *req,
				   bool nofail);
412
extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
S
Sage Weil 已提交
413 414 415 416
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);

417
extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
418
void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
419

420 421 422 423 424 425 426 427
int ceph_osdc_call(struct ceph_osd_client *osdc,
		   struct ceph_object_id *oid,
		   struct ceph_object_locator *oloc,
		   const char *class, const char *method,
		   unsigned int flags,
		   struct page *req_page, size_t req_len,
		   struct page *resp_page, size_t *resp_len);

S
Sage Weil 已提交
428 429 430 431 432
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,
433 434
			       struct page **pages, int nr_pages,
			       int page_align);
S
Sage Weil 已提交
435 436 437 438 439 440 441 442

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,
443
				struct page **pages, int nr_pages);
S
Sage Weil 已提交
444

445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
/* watch/notify */
struct ceph_osd_linger_request *
ceph_osdc_watch(struct ceph_osd_client *osdc,
		struct ceph_object_id *oid,
		struct ceph_object_locator *oloc,
		rados_watchcb2_t wcb,
		rados_watcherrcb_t errcb,
		void *data);
int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
		      struct ceph_osd_linger_request *lreq);

int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
			 struct ceph_object_id *oid,
			 struct ceph_object_locator *oloc,
			 u64 notify_id,
			 u64 cookie,
			 void *payload,
			 size_t payload_len);
463 464 465 466 467 468 469 470
int ceph_osdc_notify(struct ceph_osd_client *osdc,
		     struct ceph_object_id *oid,
		     struct ceph_object_locator *oloc,
		     void *payload,
		     size_t payload_len,
		     u32 timeout,
		     struct page ***preply_pages,
		     size_t *preply_len);
471 472
int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
			  struct ceph_osd_linger_request *lreq);
473 474 475 476 477
int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
			    struct ceph_object_id *oid,
			    struct ceph_object_locator *oloc,
			    struct ceph_watch_item **watchers,
			    u32 *num_watchers);
S
Sage Weil 已提交
478 479
#endif