blob: d583d1bf6cd9ac74348f4b3977a7e985a7bfdc13 [file] [log] [blame]
Sage Weilf24e9982009-10-06 11:31:10 -07001#ifndef _FS_CEPH_OSD_CLIENT_H
2#define _FS_CEPH_OSD_CLIENT_H
3
4#include <linux/completion.h>
Sage Weil415e49a2009-12-07 13:37:03 -08005#include <linux/kref.h>
Sage Weilf24e9982009-10-06 11:31:10 -07006#include <linux/mempool.h>
7#include <linux/rbtree.h>
8
9#include "types.h"
10#include "osdmap.h"
11#include "messenger.h"
12
13struct ceph_msg;
14struct ceph_snap_context;
15struct ceph_osd_request;
16struct ceph_osd_client;
Sage Weil4e7a5dc2009-11-18 16:19:57 -080017struct ceph_authorizer;
Yehuda Sadeh68b44762010-04-06 15:01:27 -070018struct ceph_pagelist;
Sage Weilf24e9982009-10-06 11:31:10 -070019
20/*
21 * completion callback for async writepages
22 */
23typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *,
24 struct ceph_msg *);
25
26/* a given osd we're communicating with */
27struct ceph_osd {
28 atomic_t o_ref;
29 struct ceph_osd_client *o_osdc;
30 int o_osd;
31 int o_incarnation;
32 struct rb_node o_node;
33 struct ceph_connection o_con;
34 struct list_head o_requests;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080035 struct list_head o_osd_lru;
Sage Weil4e7a5dc2009-11-18 16:19:57 -080036 struct ceph_authorizer *o_authorizer;
37 void *o_authorizer_buf, *o_authorizer_reply_buf;
38 size_t o_authorizer_buf_len, o_authorizer_reply_buf_len;
Yehuda Sadehf5a20412010-02-03 11:00:26 -080039 unsigned long lru_ttl;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -080040 int o_marked_for_keepalive;
41 struct list_head o_keepalive_item;
Sage Weilf24e9982009-10-06 11:31:10 -070042};
43
44/* an in-flight request */
45struct ceph_osd_request {
46 u64 r_tid; /* unique for this client */
47 struct rb_node r_node;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -080048 struct list_head r_req_lru_item;
Sage Weilf24e9982009-10-06 11:31:10 -070049 struct list_head r_osd_item;
50 struct ceph_osd *r_osd;
Sage Weil7740a422010-01-08 15:58:25 -080051 struct ceph_pg r_pgid;
Sage Weild85b7052010-05-10 10:24:48 -070052 int r_pg_osds[CEPH_PG_MAX_SIZE];
53 int r_num_pg_osds;
Sage Weilf24e9982009-10-06 11:31:10 -070054
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -080055 struct ceph_connection *r_con_filling_msg;
Sage Weil350b1c32009-12-22 10:45:45 -080056
Sage Weilf24e9982009-10-06 11:31:10 -070057 struct ceph_msg *r_request, *r_reply;
58 int r_result;
59 int r_flags; /* any additional flags for the osd */
60 u32 r_sent; /* >0 if r_request is sending/sent */
Sage Weil350b1c32009-12-22 10:45:45 -080061 int r_got_reply;
Sage Weilf24e9982009-10-06 11:31:10 -070062
63 struct ceph_osd_client *r_osdc;
Sage Weil415e49a2009-12-07 13:37:03 -080064 struct kref r_kref;
Sage Weilf24e9982009-10-06 11:31:10 -070065 bool r_mempool;
66 struct completion r_completion, r_safe_completion;
67 ceph_osdc_callback_t r_callback, r_safe_callback;
68 struct ceph_eversion r_reassert_version;
69 struct list_head r_unsafe_item;
70
71 struct inode *r_inode; /* for use by callbacks */
Sage Weilf24e9982009-10-06 11:31:10 -070072
73 char r_oid[40]; /* object name */
74 int r_oid_len;
Sage Weil3dd72fc2010-03-22 14:42:30 -070075 unsigned long r_stamp; /* send OR check time */
Sage Weilf24e9982009-10-06 11:31:10 -070076 bool r_resend; /* msg send failed, needs retry */
77
78 struct ceph_file_layout r_file_layout;
79 struct ceph_snap_context *r_snapc; /* snap context for writes */
80 unsigned r_num_pages; /* size of page array (follows) */
81 struct page **r_pages; /* pages for data payload */
82 int r_pages_from_pool;
83 int r_own_pages; /* if true, i own page list */
Yehuda Sadeh68b44762010-04-06 15:01:27 -070084#ifdef CONFIG_BLOCK
85 struct bio *r_bio; /* instead of pages */
86#endif
87
88 struct ceph_pagelist *r_trail; /* trailing part of the data */
Sage Weilf24e9982009-10-06 11:31:10 -070089};
90
91struct ceph_osd_client {
92 struct ceph_client *client;
93
94 struct ceph_osdmap *osdmap; /* current map */
95 struct rw_semaphore map_sem;
96 struct completion map_waiters;
97 u64 last_requested_map;
98
99 struct mutex request_mutex;
100 struct rb_root osds; /* osds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800101 struct list_head osd_lru; /* idle osds */
Sage Weilf24e9982009-10-06 11:31:10 -0700102 u64 timeout_tid; /* tid of timeout triggering rq */
103 u64 last_tid; /* tid of last request */
104 struct rb_root requests; /* pending requests */
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -0800105 struct list_head req_lru; /* pending requests lru */
Sage Weilf24e9982009-10-06 11:31:10 -0700106 int num_requests;
107 struct delayed_work timeout_work;
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800108 struct delayed_work osds_timeout_work;
Sage Weil039934b2009-11-12 15:05:52 -0800109#ifdef CONFIG_DEBUG_FS
Sage Weilf24e9982009-10-06 11:31:10 -0700110 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -0800111#endif
Sage Weilf24e9982009-10-06 11:31:10 -0700112
113 mempool_t *req_mempool;
114
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -0800115 struct ceph_msgpool msgpool_op;
Sage Weilc16e7862010-03-01 13:02:00 -0800116 struct ceph_msgpool msgpool_op_reply;
Sage Weilf24e9982009-10-06 11:31:10 -0700117};
118
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700119struct ceph_osd_req_op {
120 u16 op; /* CEPH_OSD_OP_* */
121 u32 flags; /* CEPH_OSD_FLAG_* */
122 union {
123 struct {
124 u64 offset, length;
125 u64 truncate_size;
126 u32 truncate_seq;
127 } extent;
128 struct {
129 const char *name;
130 u32 name_len;
131 const char *val;
132 u32 value_len;
133 __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */
134 __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */
135 } xattr;
136 struct {
137 __u8 class_len;
138 __u8 method_len;
139 __u8 argc;
140 u32 indata_len;
141 } cls;
142 struct {
143 u64 cookie, count;
144 } pgls;
145 };
146 u32 payload_len;
147};
148
Sage Weilf24e9982009-10-06 11:31:10 -0700149extern int ceph_osdc_init(struct ceph_osd_client *osdc,
150 struct ceph_client *client);
151extern void ceph_osdc_stop(struct ceph_osd_client *osdc);
152
153extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc,
154 struct ceph_msg *msg);
155extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc,
156 struct ceph_msg *msg);
157
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700158extern void ceph_calc_raw_layout(struct ceph_osd_client *osdc,
159 struct ceph_file_layout *layout,
160 u64 snapid,
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700161 u64 off, u64 *plen, u64 *bno,
162 struct ceph_osd_request *req,
163 struct ceph_osd_req_op *op);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700164
165extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
166 int flags,
167 struct ceph_snap_context *snapc,
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700168 struct ceph_osd_req_op *ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700169 bool use_mempool,
170 gfp_t gfp_flags,
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700171 struct page **pages,
172 struct bio *bio);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700173
174extern void ceph_osdc_build_request(struct ceph_osd_request *req,
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700175 u64 off, u64 *plen,
176 struct ceph_osd_req_op *src_ops,
177 struct ceph_snap_context *snapc,
178 struct timespec *mtime,
179 const char *oid,
180 int oid_len);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700181
Sage Weilf24e9982009-10-06 11:31:10 -0700182extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *,
183 struct ceph_file_layout *layout,
184 struct ceph_vino vino,
185 u64 offset, u64 *len, int op, int flags,
186 struct ceph_snap_context *snapc,
187 int do_sync, u32 truncate_seq,
188 u64 truncate_size,
189 struct timespec *mtime,
190 bool use_mempool, int num_reply);
191
192static inline void ceph_osdc_get_request(struct ceph_osd_request *req)
193{
Sage Weil415e49a2009-12-07 13:37:03 -0800194 kref_get(&req->r_kref);
Sage Weilf24e9982009-10-06 11:31:10 -0700195}
Sage Weil415e49a2009-12-07 13:37:03 -0800196extern void ceph_osdc_release_request(struct kref *kref);
197static inline void ceph_osdc_put_request(struct ceph_osd_request *req)
198{
199 kref_put(&req->r_kref, ceph_osdc_release_request);
200}
Sage Weilf24e9982009-10-06 11:31:10 -0700201
202extern int ceph_osdc_start_request(struct ceph_osd_client *osdc,
203 struct ceph_osd_request *req,
204 bool nofail);
205extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
206 struct ceph_osd_request *req);
207extern void ceph_osdc_sync(struct ceph_osd_client *osdc);
208
209extern int ceph_osdc_readpages(struct ceph_osd_client *osdc,
210 struct ceph_vino vino,
211 struct ceph_file_layout *layout,
212 u64 off, u64 *plen,
213 u32 truncate_seq, u64 truncate_size,
214 struct page **pages, int nr_pages);
215
216extern int ceph_osdc_writepages(struct ceph_osd_client *osdc,
217 struct ceph_vino vino,
218 struct ceph_file_layout *layout,
219 struct ceph_snap_context *sc,
220 u64 off, u64 len,
221 u32 truncate_seq, u64 truncate_size,
222 struct timespec *mtime,
223 struct page **pages, int nr_pages,
224 int flags, int do_sync, bool nofail);
225
226#endif
227