osd_client.h 9.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
/* 
 * Maximum object name size 
 * (must be at least as big as RBD_MAX_MD_NAME_LEN -- currently 100) 
 */
#define MAX_OBJ_NAME_SIZE 100

S
Sage Weil 已提交
21 22 23 24
struct ceph_msg;
struct ceph_snap_context;
struct ceph_osd_request;
struct ceph_osd_client;
25
struct ceph_authorizer;
S
Sage Weil 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

/*
 * completion callback for async writepages
 */
typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *,
				     struct ceph_msg *);

/* 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;
42
	struct list_head o_linger_requests;
43
	struct list_head o_osd_lru;
44
	struct ceph_auth_handshake o_auth;
45
	unsigned long lru_ttl;
46 47
	int o_marked_for_keepalive;
	struct list_head o_keepalive_item;
S
Sage Weil 已提交
48 49
};

50

51
#define CEPH_OSD_MAX_OP	2
52

53 54 55
enum ceph_osd_data_type {
	CEPH_OSD_DATA_TYPE_NONE,
	CEPH_OSD_DATA_TYPE_PAGES,
56
	CEPH_OSD_DATA_TYPE_PAGELIST,
57 58 59 60 61
#ifdef CONFIG_BLOCK
	CEPH_OSD_DATA_TYPE_BIO,
#endif /* CONFIG_BLOCK */
};

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

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
struct ceph_osd_req_op {
	u16 op;           /* CEPH_OSD_OP_* */
	u32 payload_len;
	union {
		struct {
			u64 offset, length;
			u64 truncate_size;
			u32 truncate_seq;
		} extent;
		struct {
			const char *class_name;
			const char *method_name;
			const void *indata;
			u32 indata_len;
			__u8 class_len;
			__u8 method_len;
			__u8 argc;
		} cls;
		struct {
			u64 cookie;
			u64 ver;
			u32 prot_ver;
			u32 timeout;
			__u8 flag;
		} watch;
	};
};

S
Sage Weil 已提交
110 111 112 113
/* an in-flight request */
struct ceph_osd_request {
	u64             r_tid;              /* unique for this client */
	struct rb_node  r_node;
114
	struct list_head r_req_lru_item;
S
Sage Weil 已提交
115
	struct list_head r_osd_item;
116 117
	struct list_head r_linger_item;
	struct list_head r_linger_osd;
S
Sage Weil 已提交
118
	struct ceph_osd *r_osd;
119
	struct ceph_pg   r_pgid;
120 121
	int              r_pg_osds[CEPH_PG_MAX_SIZE];
	int              r_num_pg_osds;
S
Sage Weil 已提交
122 123 124 125

	struct ceph_msg  *r_request, *r_reply;
	int               r_flags;     /* any additional flags for the osd */
	u32               r_sent;      /* >0 if r_request is sending/sent */
126

127 128 129 130
	/* request osd ops array  */
	unsigned int		r_num_ops;
	struct ceph_osd_req_op	r_ops[CEPH_OSD_MAX_OP];

131 132 133 134 135 136 137 138 139 140 141
	/* 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;
	int               r_reply_op_len[CEPH_OSD_MAX_OP];
	s32               r_reply_op_result[CEPH_OSD_MAX_OP];
142
	int               r_got_reply;
143
	int		  r_linger;
144
	int		  r_completed;
S
Sage Weil 已提交
145 146

	struct ceph_osd_client *r_osdc;
S
Sage Weil 已提交
147
	struct kref       r_kref;
S
Sage Weil 已提交
148 149 150 151 152 153 154
	bool              r_mempool;
	struct completion r_completion, r_safe_completion;
	ceph_osdc_callback_t r_callback, r_safe_callback;
	struct ceph_eversion r_reassert_version;
	struct list_head  r_unsafe_item;

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

157
	char              r_oid[MAX_OBJ_NAME_SIZE];          /* object name */
S
Sage Weil 已提交
158
	int               r_oid_len;
159
	u64               r_snapid;
S
Sage Weil 已提交
160
	unsigned long     r_stamp;            /* send OR check time */
S
Sage Weil 已提交
161 162 163

	struct ceph_file_layout r_file_layout;
	struct ceph_snap_context *r_snapc;    /* snap context for writes */
164

165 166
	struct ceph_osd_data r_data_in;
	struct ceph_osd_data r_data_out;
S
Sage Weil 已提交
167 168
};

169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
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 已提交
188 189 190 191 192 193 194 195 196 197
struct ceph_osd_client {
	struct ceph_client     *client;

	struct ceph_osdmap     *osdmap;       /* current map */
	struct rw_semaphore    map_sem;
	struct completion      map_waiters;
	u64                    last_requested_map;

	struct mutex           request_mutex;
	struct rb_root         osds;          /* osds */
198
	struct list_head       osd_lru;       /* idle osds */
S
Sage Weil 已提交
199 200 201
	u64                    timeout_tid;   /* tid of timeout triggering rq */
	u64                    last_tid;      /* tid of last request */
	struct rb_root         requests;      /* pending requests */
202 203 204
	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 */
205
	struct list_head       req_linger;    /* lingering requests */
S
Sage Weil 已提交
206 207
	int                    num_requests;
	struct delayed_work    timeout_work;
208
	struct delayed_work    osds_timeout_work;
209
#ifdef CONFIG_DEBUG_FS
S
Sage Weil 已提交
210
	struct dentry 	       *debugfs_file;
211
#endif
S
Sage Weil 已提交
212 213 214

	mempool_t              *req_mempool;

215
	struct ceph_msgpool	msgpool_op;
S
Sage Weil 已提交
216
	struct ceph_msgpool	msgpool_op_reply;
217 218 219 220 221 222

	spinlock_t		event_lock;
	struct rb_root		event_tree;
	u64			event_count;

	struct workqueue_struct	*notify_wq;
S
Sage Weil 已提交
223 224 225 226 227 228 229 230 231 232 233
};

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

234 235 236 237
extern void osd_req_op_init(struct ceph_osd_req_op *op, u16 opcode);
extern void osd_req_op_extent_init(struct ceph_osd_req_op *op, u16 opcode,
					u64 offset, u64 length,
					u64 truncate_size, u32 truncate_seq);
238
extern void osd_req_op_extent_update(struct ceph_osd_req_op *op, u64 length);
239 240 241 242 243 244 245
extern void osd_req_op_cls_init(struct ceph_osd_req_op *op, u16 opcode,
					const char *class, const char *method,
					const void *request_data,
					size_t request_data_size);
extern void osd_req_op_watch_init(struct ceph_osd_req_op *op, u16 opcode,
					u64 cookie, u64 version, int flag);

246 247
extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
					       struct ceph_snap_context *snapc,
248
					       unsigned int num_ops,
249
					       bool use_mempool,
250
					       gfp_t gfp_flags);
251

252
extern void ceph_osdc_build_request(struct ceph_osd_request *req, u64 off,
253
				    struct ceph_snap_context *snapc,
254
				    u64 snap_id,
255
				    struct timespec *mtime);
256

S
Sage Weil 已提交
257 258 259
extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
				      struct ceph_file_layout *layout,
				      struct ceph_vino vino,
260
				      u64 offset, u64 *len,
261
				      int num_ops, int opcode, int flags,
S
Sage Weil 已提交
262
				      struct ceph_snap_context *snapc,
263
				      u32 truncate_seq, u64 truncate_size,
264
				      bool use_mempool);
S
Sage Weil 已提交
265

266 267 268 269 270
extern void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
					 struct ceph_osd_request *req);
extern void ceph_osdc_unregister_linger_request(struct ceph_osd_client *osdc,
						struct ceph_osd_request *req);

S
Sage Weil 已提交
271 272
static inline void ceph_osdc_get_request(struct ceph_osd_request *req)
{
S
Sage Weil 已提交
273 274 275 276 277 278
	kref_get(&req->r_kref);
}
extern void ceph_osdc_release_request(struct kref *kref);
static inline void ceph_osdc_put_request(struct ceph_osd_request *req)
{
	kref_put(&req->r_kref, ceph_osdc_release_request);
S
Sage Weil 已提交
279 280
}

281 282 283 284 285 286 287 288 289 290 291
extern void ceph_osd_data_pages_init(struct ceph_osd_data *osd_data,
				     struct page **pages, u64 length,
				     u32 alignment, bool pages_from_pool,
				     bool own_pages);
extern void ceph_osd_data_pagelist_init(struct ceph_osd_data *osd_data,
					struct ceph_pagelist *pagelist);
#ifdef CONFIG_BLOCK
extern void ceph_osd_data_bio_init(struct ceph_osd_data *osd_data,
				   struct bio *bio, size_t bio_length);
#endif /* CONFIG_BLOCK */

S
Sage Weil 已提交
292 293 294 295 296 297 298 299 300 301 302 303
extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
				   struct ceph_osd_request *req,
				   bool nofail);
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);

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,
304 305
			       struct page **pages, int nr_pages,
			       int page_align);
S
Sage Weil 已提交
306 307 308 309 310 311 312 313

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

316 317 318
/* watch/notify events */
extern int ceph_osdc_create_event(struct ceph_osd_client *osdc,
				  void (*event_cb)(u64, u64, u8, void *),
319
				  void *data, struct ceph_osd_event **pevent);
320 321
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 已提交
322 323
#endif