osd_client.h 8.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 8 9 10 11 12 13 14 15 16
#include <linux/mempool.h>
#include <linux/rbtree.h>

#include "types.h"
#include "osdmap.h"
#include "messenger.h"

struct ceph_msg;
struct ceph_snap_context;
struct ceph_osd_request;
struct ceph_osd_client;
17
struct ceph_authorizer;
18
struct ceph_pagelist;
S
Sage Weil 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

/*
 * 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;
35
	struct list_head o_linger_requests;
36
	struct list_head o_osd_lru;
37 38 39
	struct ceph_authorizer *o_authorizer;
	void *o_authorizer_buf, *o_authorizer_reply_buf;
	size_t o_authorizer_buf_len, o_authorizer_reply_buf_len;
40
	unsigned long lru_ttl;
41 42
	int o_marked_for_keepalive;
	struct list_head o_keepalive_item;
S
Sage Weil 已提交
43 44 45 46 47 48
};

/* an in-flight request */
struct ceph_osd_request {
	u64             r_tid;              /* unique for this client */
	struct rb_node  r_node;
49
	struct list_head r_req_lru_item;
S
Sage Weil 已提交
50
	struct list_head r_osd_item;
51 52
	struct list_head r_linger_item;
	struct list_head r_linger_osd;
S
Sage Weil 已提交
53
	struct ceph_osd *r_osd;
54
	struct ceph_pg   r_pgid;
55 56
	int              r_pg_osds[CEPH_PG_MAX_SIZE];
	int              r_num_pg_osds;
S
Sage Weil 已提交
57

58
	struct ceph_connection *r_con_filling_msg;
59

S
Sage Weil 已提交
60 61 62 63
	struct ceph_msg  *r_request, *r_reply;
	int               r_result;
	int               r_flags;     /* any additional flags for the osd */
	u32               r_sent;      /* >0 if r_request is sending/sent */
64
	int               r_got_reply;
65
	int		  r_linger;
S
Sage Weil 已提交
66 67

	struct ceph_osd_client *r_osdc;
S
Sage Weil 已提交
68
	struct kref       r_kref;
S
Sage Weil 已提交
69 70 71 72 73 74 75
	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 */
76
	void *r_priv;			      /* ditto */
S
Sage Weil 已提交
77 78 79

	char              r_oid[40];          /* object name */
	int               r_oid_len;
S
Sage Weil 已提交
80
	unsigned long     r_stamp;            /* send OR check time */
S
Sage Weil 已提交
81 82 83 84

	struct ceph_file_layout r_file_layout;
	struct ceph_snap_context *r_snapc;    /* snap context for writes */
	unsigned          r_num_pages;        /* size of page array (follows) */
85
	unsigned          r_page_alignment;   /* io offset in first page */
S
Sage Weil 已提交
86 87 88
	struct page     **r_pages;            /* pages for data payload */
	int               r_pages_from_pool;
	int               r_own_pages;        /* if true, i own page list */
89 90 91 92 93
#ifdef CONFIG_BLOCK
	struct bio       *r_bio;	      /* instead of pages */
#endif

	struct ceph_pagelist *r_trail;	      /* trailing part of the data */
S
Sage Weil 已提交
94 95
};

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
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 completion completion;
};

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

S
Sage Weil 已提交
116 117 118 119 120 121 122 123 124 125
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 */
126
	struct list_head       osd_lru;       /* idle osds */
S
Sage Weil 已提交
127 128 129
	u64                    timeout_tid;   /* tid of timeout triggering rq */
	u64                    last_tid;      /* tid of last request */
	struct rb_root         requests;      /* pending requests */
130 131 132
	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 */
133
	struct list_head       req_linger;    /* lingering requests */
S
Sage Weil 已提交
134 135
	int                    num_requests;
	struct delayed_work    timeout_work;
136
	struct delayed_work    osds_timeout_work;
137
#ifdef CONFIG_DEBUG_FS
S
Sage Weil 已提交
138
	struct dentry 	       *debugfs_file;
139
#endif
S
Sage Weil 已提交
140 141 142

	mempool_t              *req_mempool;

143
	struct ceph_msgpool	msgpool_op;
S
Sage Weil 已提交
144
	struct ceph_msgpool	msgpool_op_reply;
145 146 147 148 149 150

	spinlock_t		event_lock;
	struct rb_root		event_tree;
	u64			event_count;

	struct workqueue_struct	*notify_wq;
S
Sage Weil 已提交
151 152
};

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
struct ceph_osd_req_op {
	u16 op;           /* CEPH_OSD_OP_* */
	u32 flags;        /* CEPH_OSD_FLAG_* */
	union {
		struct {
			u64 offset, length;
			u64 truncate_size;
			u32 truncate_seq;
		} extent;
		struct {
			const char *name;
			u32 name_len;
			const char  *val;
			u32 value_len;
			__u8 cmp_op;       /* CEPH_OSD_CMPXATTR_OP_* */
			__u8 cmp_mode;     /* CEPH_OSD_CMPXATTR_MODE_* */
		} xattr;
		struct {
171
			const char *class_name;
172
			__u8 class_len;
173
			const char *method_name;
174 175
			__u8 method_len;
			__u8 argc;
176
			const char *indata;
177 178 179 180 181
			u32 indata_len;
		} cls;
		struct {
			u64 cookie, count;
		} pgls;
182 183 184
	        struct {
		        u64 snapid;
	        } snap;
185 186 187 188 189 190 191
		struct {
			u64 cookie;
			u64 ver;
			__u8 flag;
			u32 prot_ver;
			u32 timeout;
		} watch;
192 193 194 195
	};
	u32 payload_len;
};

S
Sage Weil 已提交
196 197 198 199 200 201 202 203 204
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);

205 206 207
extern void ceph_calc_raw_layout(struct ceph_osd_client *osdc,
			struct ceph_file_layout *layout,
			u64 snapid,
208 209 210
			u64 off, u64 *plen, u64 *bno,
			struct ceph_osd_request *req,
			struct ceph_osd_req_op *op);
211 212 213 214

extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
					       int flags,
					       struct ceph_snap_context *snapc,
215
					       struct ceph_osd_req_op *ops,
216 217
					       bool use_mempool,
					       gfp_t gfp_flags,
218 219
					       struct page **pages,
					       struct bio *bio);
220 221

extern void ceph_osdc_build_request(struct ceph_osd_request *req,
222 223 224 225 226 227
				    u64 off, u64 *plen,
				    struct ceph_osd_req_op *src_ops,
				    struct ceph_snap_context *snapc,
				    struct timespec *mtime,
				    const char *oid,
				    int oid_len);
228

S
Sage Weil 已提交
229 230 231 232 233 234 235 236
extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
				      struct ceph_file_layout *layout,
				      struct ceph_vino vino,
				      u64 offset, u64 *len, int op, int flags,
				      struct ceph_snap_context *snapc,
				      int do_sync, u32 truncate_seq,
				      u64 truncate_size,
				      struct timespec *mtime,
237 238
				      bool use_mempool, int num_reply,
				      int page_align);
S
Sage Weil 已提交
239

240 241 242 243 244
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 已提交
245 246
static inline void ceph_osdc_get_request(struct ceph_osd_request *req)
{
S
Sage Weil 已提交
247 248 249 250 251 252
	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 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266
}

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,
267 268
			       struct page **pages, int nr_pages,
			       int page_align);
S
Sage Weil 已提交
269 270 271 272 273 274 275 276 277 278 279

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,
				struct page **pages, int nr_pages,
				int flags, int do_sync, bool nofail);

280 281 282 283 284 285 286 287 288
/* watch/notify events */
extern int ceph_osdc_create_event(struct ceph_osd_client *osdc,
				  void (*event_cb)(u64, u64, u8, void *),
				  int one_shot, void *data,
				  struct ceph_osd_event **pevent);
extern void ceph_osdc_cancel_event(struct ceph_osd_event *event);
extern int ceph_osdc_wait_event(struct ceph_osd_event *event,
				unsigned long timeout);
extern void ceph_osdc_put_event(struct ceph_osd_event *event);
S
Sage Weil 已提交
289 290
#endif