osd_client.h 12.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

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

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

26 27
#define CEPH_HOMELESS_OSD	-1

S
Sage Weil 已提交
28 29 30 31 32 33 34 35
/* 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;
36
	struct rb_root o_requests;
37
	struct rb_root o_linger_requests;
38
	struct list_head o_osd_lru;
39
	struct ceph_auth_handshake o_auth;
40
	unsigned long lru_ttl;
41
	struct list_head o_keepalive_item;
42
	struct mutex lock;
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
			__u8 class_len;
			__u8 method_len;
107
			u32 indata_len;
108 109 110
		} cls;
		struct {
			u64 cookie;
111 112
			__u8 op;           /* CEPH_OSD_WATCH_OP_ */
			u32 gen;
113
		} watch;
114 115 116
		struct {
			struct ceph_osd_data request_data;
		} notify_ack;
117 118 119 120 121
		struct {
			u64 cookie;
			struct ceph_osd_data request_data;
			struct ceph_osd_data response_data;
		} notify;
122 123 124 125
		struct {
			u64 expected_object_size;
			u64 expected_write_size;
		} alloc_hint;
126 127 128
	};
};

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
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 已提交
150 151 152 153
/* an in-flight request */
struct ceph_osd_request {
	u64             r_tid;              /* unique for this client */
	struct rb_node  r_node;
I
Ilya Dryomov 已提交
154
	struct rb_node  r_mc_node;          /* map check */
S
Sage Weil 已提交
155
	struct ceph_osd *r_osd;
156 157 158 159 160

	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 已提交
161 162 163

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

165 166 167
	/* request osd ops array  */
	unsigned int		r_num_ops;

168
	int               r_result;
169
	bool              r_got_reply;
S
Sage Weil 已提交
170 171

	struct ceph_osd_client *r_osdc;
S
Sage Weil 已提交
172
	struct kref       r_kref;
S
Sage Weil 已提交
173
	bool              r_mempool;
174 175
	struct completion r_completion;
	struct completion r_safe_completion;  /* fsync waiter */
176 177
	ceph_osdc_callback_t r_callback;
	ceph_osdc_unsafe_callback_t r_unsafe_callback;
S
Sage Weil 已提交
178 179 180
	struct list_head  r_unsafe_item;

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

183 184 185 186 187
	/* 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 */
188
	bool r_linger;                        /* don't resend on failure */
S
Sage Weil 已提交
189

190 191 192 193 194
	/* internal */
	unsigned long r_stamp;                /* jiffies, send or check time */
	int r_attempts;
	struct ceph_eversion r_replay_version; /* aka reassert_version */
	u32 r_last_force_resend;
I
Ilya Dryomov 已提交
195
	u32 r_map_dne_bound;
196 197

	struct ceph_osd_req_op r_ops[];
S
Sage Weil 已提交
198 199
};

200 201 202 203
struct ceph_request_redirect {
	struct ceph_object_locator oloc;
};

204 205 206 207 208
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 {
209
	struct ceph_osd_client *osdc;
210 211
	u64 linger_id;
	bool committed;
212
	bool is_watch;                  /* watch or notify */
213 214 215 216 217

	struct ceph_osd *osd;
	struct ceph_osd_request *reg_req;
	struct ceph_osd_request *ping_req;
	unsigned long ping_sent;
218 219
	unsigned long watch_valid_thru;
	struct list_head pending_lworks;
220 221 222

	struct ceph_osd_request_target t;
	u32 last_force_resend;
I
Ilya Dryomov 已提交
223
	u32 map_dne_bound;
224 225 226

	struct timespec mtime;

227
	struct kref kref;
228 229 230
	struct mutex lock;
	struct rb_node node;            /* osd */
	struct rb_node osdc_node;       /* osdc */
I
Ilya Dryomov 已提交
231
	struct rb_node mc_node;         /* map check */
232 233 234
	struct list_head scan_item;

	struct completion reg_commit_wait;
235
	struct completion notify_finish_wait;
236
	int reg_commit_error;
237
	int notify_finish_error;
238 239 240
	int last_error;

	u32 register_gen;
241
	u64 notify_id;
242

243 244 245
	rados_watchcb2_t wcb;
	rados_watcherrcb_t errcb;
	void *data;
246 247 248

	struct page ***preply_pages;
	size_t *preply_len;
249 250
};

S
Sage Weil 已提交
251 252 253 254
struct ceph_osd_client {
	struct ceph_client     *client;

	struct ceph_osdmap     *osdmap;       /* current map */
255
	struct rw_semaphore    lock;
S
Sage Weil 已提交
256 257

	struct rb_root         osds;          /* osds */
258
	struct list_head       osd_lru;       /* idle osds */
259
	spinlock_t             osd_lru_lock;
260 261
	struct ceph_osd        homeless_osd;
	atomic64_t             last_tid;      /* tid of last request */
262 263
	u64                    last_linger_id;
	struct rb_root         linger_requests; /* lingering requests */
I
Ilya Dryomov 已提交
264 265
	struct rb_root         map_checks;
	struct rb_root         linger_map_checks;
266 267
	atomic_t               num_requests;
	atomic_t               num_homeless;
S
Sage Weil 已提交
268
	struct delayed_work    timeout_work;
269
	struct delayed_work    osds_timeout_work;
270
#ifdef CONFIG_DEBUG_FS
S
Sage Weil 已提交
271
	struct dentry 	       *debugfs_file;
272
#endif
S
Sage Weil 已提交
273 274 275

	mempool_t              *req_mempool;

276
	struct ceph_msgpool	msgpool_op;
S
Sage Weil 已提交
277
	struct ceph_msgpool	msgpool_op_reply;
278 279

	struct workqueue_struct	*notify_wq;
S
Sage Weil 已提交
280 281
};

282 283 284
extern int ceph_osdc_setup(void);
extern void ceph_osdc_cleanup(void);

S
Sage Weil 已提交
285 286 287 288 289 290 291 292 293
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 已提交
294
extern void osd_req_op_init(struct ceph_osd_request *osd_req,
295
			    unsigned int which, u16 opcode, u32 flags);
A
Alex Elder 已提交
296 297 298 299 300 301 302

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

303 304
extern void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
					unsigned int which, u16 opcode,
305 306
					u64 offset, u64 length,
					u64 truncate_size, u32 truncate_seq);
307 308
extern void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
					unsigned int which, u64 length);
309 310
extern void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
				       unsigned int which, u64 offset_inc);
311 312 313

extern struct ceph_osd_data *osd_req_op_extent_osd_data(
					struct ceph_osd_request *osd_req,
314
					unsigned int which);
315 316

extern void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *,
317
					unsigned int which,
318 319 320 321
					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 *,
322
					unsigned int which,
323 324 325
					struct ceph_pagelist *pagelist);
#ifdef CONFIG_BLOCK
extern void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *,
326
					unsigned int which,
327 328 329
					struct bio *bio, size_t bio_length);
#endif /* CONFIG_BLOCK */

330 331 332
extern void osd_req_op_cls_request_data_pagelist(struct ceph_osd_request *,
					unsigned int which,
					struct ceph_pagelist *pagelist);
333 334 335 336 337
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);
338
extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *,
339
					unsigned int which,
340 341 342 343
					struct page **pages, u64 length,
					u32 alignment, bool pages_from_pool,
					bool own_pages);

344 345
extern void osd_req_op_cls_init(struct ceph_osd_request *osd_req,
					unsigned int which, u16 opcode,
346
					const char *class, const char *method);
347 348 349
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);
350 351 352 353
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);
354

355 356
extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
					       struct ceph_snap_context *snapc,
357
					       unsigned int num_ops,
358
					       bool use_mempool,
359
					       gfp_t gfp_flags);
360
int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp);
361

S
Sage Weil 已提交
362 363 364
extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
				      struct ceph_file_layout *layout,
				      struct ceph_vino vino,
365
				      u64 offset, u64 *len,
366 367
				      unsigned int which, int num_ops,
				      int opcode, int flags,
S
Sage Weil 已提交
368
				      struct ceph_snap_context *snapc,
369
				      u32 truncate_seq, u64 truncate_size,
370
				      bool use_mempool);
S
Sage Weil 已提交
371

372 373
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 已提交
374 375 376 377

extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
				   struct ceph_osd_request *req,
				   bool nofail);
378
extern void ceph_osdc_cancel_request(struct ceph_osd_request *req);
S
Sage Weil 已提交
379 380 381 382
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);

383
extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc);
384
void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc);
385

S
Sage Weil 已提交
386 387 388 389 390
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,
391 392
			       struct page **pages, int nr_pages,
			       int page_align);
S
Sage Weil 已提交
393 394 395 396 397 398 399 400

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

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
/* 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);
421 422 423 424 425 426 427 428
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);
429 430
int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
			  struct ceph_osd_linger_request *lreq);
S
Sage Weil 已提交
431 432
#endif