Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 1 | #ifndef _FS_CEPH_OSD_CLIENT_H |
| 2 | #define _FS_CEPH_OSD_CLIENT_H |
| 3 | |
| 4 | #include <linux/completion.h> |
Sage Weil | 415e49a | 2009-12-07 13:37:03 -0800 | [diff] [blame] | 5 | #include <linux/kref.h> |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 6 | #include <linux/mempool.h> |
| 7 | #include <linux/rbtree.h> |
| 8 | |
| 9 | #include "types.h" |
| 10 | #include "osdmap.h" |
| 11 | #include "messenger.h" |
| 12 | |
| 13 | struct ceph_msg; |
| 14 | struct ceph_snap_context; |
| 15 | struct ceph_osd_request; |
| 16 | struct ceph_osd_client; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 17 | struct ceph_authorizer; |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 18 | struct ceph_pagelist; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * completion callback for async writepages |
| 22 | */ |
| 23 | typedef void (*ceph_osdc_callback_t)(struct ceph_osd_request *, |
| 24 | struct ceph_msg *); |
| 25 | |
| 26 | /* a given osd we're communicating with */ |
| 27 | struct 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 Sadeh | f5a2041 | 2010-02-03 11:00:26 -0800 | [diff] [blame] | 35 | struct list_head o_osd_lru; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 36 | 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 Sadeh | f5a2041 | 2010-02-03 11:00:26 -0800 | [diff] [blame] | 39 | unsigned long lru_ttl; |
Yehuda Sadeh | 422d2cb | 2010-02-26 15:32:31 -0800 | [diff] [blame] | 40 | int o_marked_for_keepalive; |
| 41 | struct list_head o_keepalive_item; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | /* an in-flight request */ |
| 45 | struct ceph_osd_request { |
| 46 | u64 r_tid; /* unique for this client */ |
| 47 | struct rb_node r_node; |
Yehuda Sadeh | 422d2cb | 2010-02-26 15:32:31 -0800 | [diff] [blame] | 48 | struct list_head r_req_lru_item; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 49 | struct list_head r_osd_item; |
| 50 | struct ceph_osd *r_osd; |
Sage Weil | 7740a42 | 2010-01-08 15:58:25 -0800 | [diff] [blame] | 51 | struct ceph_pg r_pgid; |
Sage Weil | d85b705 | 2010-05-10 10:24:48 -0700 | [diff] [blame] | 52 | int r_pg_osds[CEPH_PG_MAX_SIZE]; |
| 53 | int r_num_pg_osds; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 54 | |
Yehuda Sadeh | 0d59ab8 | 2010-01-13 17:03:23 -0800 | [diff] [blame] | 55 | struct ceph_connection *r_con_filling_msg; |
Sage Weil | 350b1c3 | 2009-12-22 10:45:45 -0800 | [diff] [blame] | 56 | |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 57 | 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 Weil | 350b1c3 | 2009-12-22 10:45:45 -0800 | [diff] [blame] | 61 | int r_got_reply; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 62 | |
| 63 | struct ceph_osd_client *r_osdc; |
Sage Weil | 415e49a | 2009-12-07 13:37:03 -0800 | [diff] [blame] | 64 | struct kref r_kref; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 65 | 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 */ |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 72 | void *r_priv; /* ditto */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 73 | |
| 74 | char r_oid[40]; /* object name */ |
| 75 | int r_oid_len; |
Sage Weil | 3dd72fc | 2010-03-22 14:42:30 -0700 | [diff] [blame] | 76 | unsigned long r_stamp; /* send OR check time */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 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) */ |
Sage Weil | b7495fc | 2010-11-09 12:43:12 -0800 | [diff] [blame] | 81 | unsigned r_page_alignment; /* io offset in first page */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 82 | struct page **r_pages; /* pages for data payload */ |
| 83 | int r_pages_from_pool; |
| 84 | int r_own_pages; /* if true, i own page list */ |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 85 | #ifdef CONFIG_BLOCK |
| 86 | struct bio *r_bio; /* instead of pages */ |
| 87 | #endif |
| 88 | |
| 89 | struct ceph_pagelist *r_trail; /* trailing part of the data */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | struct ceph_osd_client { |
| 93 | struct ceph_client *client; |
| 94 | |
| 95 | struct ceph_osdmap *osdmap; /* current map */ |
| 96 | struct rw_semaphore map_sem; |
| 97 | struct completion map_waiters; |
| 98 | u64 last_requested_map; |
| 99 | |
| 100 | struct mutex request_mutex; |
| 101 | struct rb_root osds; /* osds */ |
Yehuda Sadeh | f5a2041 | 2010-02-03 11:00:26 -0800 | [diff] [blame] | 102 | struct list_head osd_lru; /* idle osds */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 103 | u64 timeout_tid; /* tid of timeout triggering rq */ |
| 104 | u64 last_tid; /* tid of last request */ |
| 105 | struct rb_root requests; /* pending requests */ |
Sage Weil | 6f6c700 | 2011-01-17 20:34:08 -0800 | [diff] [blame] | 106 | struct list_head req_lru; /* in-flight lru */ |
| 107 | struct list_head req_unsent; /* unsent/need-resend queue */ |
| 108 | struct list_head req_notarget; /* map to no osd */ |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 109 | int num_requests; |
| 110 | struct delayed_work timeout_work; |
Yehuda Sadeh | f5a2041 | 2010-02-03 11:00:26 -0800 | [diff] [blame] | 111 | struct delayed_work osds_timeout_work; |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 112 | #ifdef CONFIG_DEBUG_FS |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 113 | struct dentry *debugfs_file; |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 114 | #endif |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 115 | |
| 116 | mempool_t *req_mempool; |
| 117 | |
Yehuda Sadeh | 0d59ab8 | 2010-01-13 17:03:23 -0800 | [diff] [blame] | 118 | struct ceph_msgpool msgpool_op; |
Sage Weil | c16e786 | 2010-03-01 13:02:00 -0800 | [diff] [blame] | 119 | struct ceph_msgpool msgpool_op_reply; |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 122 | struct ceph_osd_req_op { |
| 123 | u16 op; /* CEPH_OSD_OP_* */ |
| 124 | u32 flags; /* CEPH_OSD_FLAG_* */ |
| 125 | union { |
| 126 | struct { |
| 127 | u64 offset, length; |
| 128 | u64 truncate_size; |
| 129 | u32 truncate_seq; |
| 130 | } extent; |
| 131 | struct { |
| 132 | const char *name; |
| 133 | u32 name_len; |
| 134 | const char *val; |
| 135 | u32 value_len; |
| 136 | __u8 cmp_op; /* CEPH_OSD_CMPXATTR_OP_* */ |
| 137 | __u8 cmp_mode; /* CEPH_OSD_CMPXATTR_MODE_* */ |
| 138 | } xattr; |
| 139 | struct { |
Yehuda Sadeh | ae1533b | 2010-05-18 16:38:08 -0700 | [diff] [blame] | 140 | const char *class_name; |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 141 | __u8 class_len; |
Yehuda Sadeh | ae1533b | 2010-05-18 16:38:08 -0700 | [diff] [blame] | 142 | const char *method_name; |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 143 | __u8 method_len; |
| 144 | __u8 argc; |
Yehuda Sadeh | ae1533b | 2010-05-18 16:38:08 -0700 | [diff] [blame] | 145 | const char *indata; |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 146 | u32 indata_len; |
| 147 | } cls; |
| 148 | struct { |
| 149 | u64 cookie, count; |
| 150 | } pgls; |
Yehuda Sadeh | ae1533b | 2010-05-18 16:38:08 -0700 | [diff] [blame] | 151 | struct { |
| 152 | u64 snapid; |
| 153 | } snap; |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 154 | }; |
| 155 | u32 payload_len; |
| 156 | }; |
| 157 | |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 158 | extern int ceph_osdc_init(struct ceph_osd_client *osdc, |
| 159 | struct ceph_client *client); |
| 160 | extern void ceph_osdc_stop(struct ceph_osd_client *osdc); |
| 161 | |
| 162 | extern void ceph_osdc_handle_reply(struct ceph_osd_client *osdc, |
| 163 | struct ceph_msg *msg); |
| 164 | extern void ceph_osdc_handle_map(struct ceph_osd_client *osdc, |
| 165 | struct ceph_msg *msg); |
| 166 | |
Yehuda Sadeh | 3499e8a | 2010-04-06 14:51:47 -0700 | [diff] [blame] | 167 | extern void ceph_calc_raw_layout(struct ceph_osd_client *osdc, |
| 168 | struct ceph_file_layout *layout, |
| 169 | u64 snapid, |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 170 | u64 off, u64 *plen, u64 *bno, |
| 171 | struct ceph_osd_request *req, |
| 172 | struct ceph_osd_req_op *op); |
Yehuda Sadeh | 3499e8a | 2010-04-06 14:51:47 -0700 | [diff] [blame] | 173 | |
| 174 | extern struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc, |
| 175 | int flags, |
| 176 | struct ceph_snap_context *snapc, |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 177 | struct ceph_osd_req_op *ops, |
Yehuda Sadeh | 3499e8a | 2010-04-06 14:51:47 -0700 | [diff] [blame] | 178 | bool use_mempool, |
| 179 | gfp_t gfp_flags, |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 180 | struct page **pages, |
| 181 | struct bio *bio); |
Yehuda Sadeh | 3499e8a | 2010-04-06 14:51:47 -0700 | [diff] [blame] | 182 | |
| 183 | extern void ceph_osdc_build_request(struct ceph_osd_request *req, |
Yehuda Sadeh | 68b4476 | 2010-04-06 15:01:27 -0700 | [diff] [blame] | 184 | u64 off, u64 *plen, |
| 185 | struct ceph_osd_req_op *src_ops, |
| 186 | struct ceph_snap_context *snapc, |
| 187 | struct timespec *mtime, |
| 188 | const char *oid, |
| 189 | int oid_len); |
Yehuda Sadeh | 3499e8a | 2010-04-06 14:51:47 -0700 | [diff] [blame] | 190 | |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 191 | extern struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *, |
| 192 | struct ceph_file_layout *layout, |
| 193 | struct ceph_vino vino, |
| 194 | u64 offset, u64 *len, int op, int flags, |
| 195 | struct ceph_snap_context *snapc, |
| 196 | int do_sync, u32 truncate_seq, |
| 197 | u64 truncate_size, |
| 198 | struct timespec *mtime, |
Sage Weil | b7495fc | 2010-11-09 12:43:12 -0800 | [diff] [blame] | 199 | bool use_mempool, int num_reply, |
| 200 | int page_align); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 201 | |
| 202 | static inline void ceph_osdc_get_request(struct ceph_osd_request *req) |
| 203 | { |
Sage Weil | 415e49a | 2009-12-07 13:37:03 -0800 | [diff] [blame] | 204 | kref_get(&req->r_kref); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 205 | } |
Sage Weil | 415e49a | 2009-12-07 13:37:03 -0800 | [diff] [blame] | 206 | extern void ceph_osdc_release_request(struct kref *kref); |
| 207 | static inline void ceph_osdc_put_request(struct ceph_osd_request *req) |
| 208 | { |
| 209 | kref_put(&req->r_kref, ceph_osdc_release_request); |
| 210 | } |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 211 | |
| 212 | extern int ceph_osdc_start_request(struct ceph_osd_client *osdc, |
| 213 | struct ceph_osd_request *req, |
| 214 | bool nofail); |
| 215 | extern int ceph_osdc_wait_request(struct ceph_osd_client *osdc, |
| 216 | struct ceph_osd_request *req); |
| 217 | extern void ceph_osdc_sync(struct ceph_osd_client *osdc); |
| 218 | |
| 219 | extern int ceph_osdc_readpages(struct ceph_osd_client *osdc, |
| 220 | struct ceph_vino vino, |
| 221 | struct ceph_file_layout *layout, |
| 222 | u64 off, u64 *plen, |
| 223 | u32 truncate_seq, u64 truncate_size, |
Sage Weil | b7495fc | 2010-11-09 12:43:12 -0800 | [diff] [blame] | 224 | struct page **pages, int nr_pages, |
| 225 | int page_align); |
Sage Weil | f24e998 | 2009-10-06 11:31:10 -0700 | [diff] [blame] | 226 | |
| 227 | extern int ceph_osdc_writepages(struct ceph_osd_client *osdc, |
| 228 | struct ceph_vino vino, |
| 229 | struct ceph_file_layout *layout, |
| 230 | struct ceph_snap_context *sc, |
| 231 | u64 off, u64 len, |
| 232 | u32 truncate_seq, u64 truncate_size, |
| 233 | struct timespec *mtime, |
| 234 | struct page **pages, int nr_pages, |
| 235 | int flags, int do_sync, bool nofail); |
| 236 | |
| 237 | #endif |
| 238 | |