blob: 34ca5c686b46251eb03e3f64c567cd6d8d10680e [file] [log] [blame]
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001/*
2 rbd.c -- Export ceph rados objects as a Linux block device
3
4
5 based on drivers/block/osdblk.c:
6
7 Copyright 2009 Red Hat, Inc.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; see the file COPYING. If not, write to
20 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21
22
23
Yehuda Sadehdfc56062010-11-19 14:51:04 -080024 For usage instructions, please refer to:
Yehuda Sadeh602adf42010-08-12 16:11:25 -070025
Yehuda Sadehdfc56062010-11-19 14:51:04 -080026 Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -070027
28 */
29
30#include <linux/ceph/libceph.h>
31#include <linux/ceph/osd_client.h>
32#include <linux/ceph/mon_client.h>
33#include <linux/ceph/decode.h>
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070034#include <linux/parser.h>
Yehuda Sadeh602adf42010-08-12 16:11:25 -070035
36#include <linux/kernel.h>
37#include <linux/device.h>
38#include <linux/module.h>
39#include <linux/fs.h>
40#include <linux/blkdev.h>
41
42#include "rbd_types.h"
43
Alex Elder593a9e72012-02-07 12:03:37 -060044/*
45 * The basic unit of block I/O is a sector. It is interpreted in a
46 * number of contexts in Linux (blk, bio, genhd), but the default is
47 * universally 512 bytes. These symbols are just slightly more
48 * meaningful than the bare numbers they represent.
49 */
50#define SECTOR_SHIFT 9
51#define SECTOR_SIZE (1ULL << SECTOR_SHIFT)
52
Alex Elderf0f8cef2012-01-29 13:57:44 -060053#define RBD_DRV_NAME "rbd"
54#define RBD_DRV_NAME_LONG "rbd (rados block device)"
Yehuda Sadeh602adf42010-08-12 16:11:25 -070055
56#define RBD_MINORS_PER_MAJOR 256 /* max minors per blkdev */
57
Yehuda Sadeh602adf42010-08-12 16:11:25 -070058#define RBD_MAX_SNAP_NAME_LEN 32
59#define RBD_MAX_OPT_LEN 1024
60
61#define RBD_SNAP_HEAD_NAME "-"
62
Alex Elder81a89792012-02-02 08:13:30 -060063/*
64 * An RBD device name will be "rbd#", where the "rbd" comes from
65 * RBD_DRV_NAME above, and # is a unique integer identifier.
66 * MAX_INT_FORMAT_WIDTH is used in ensuring DEV_NAME_LEN is big
67 * enough to hold all possible device names.
68 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -070069#define DEV_NAME_LEN 32
Alex Elder81a89792012-02-02 08:13:30 -060070#define MAX_INT_FORMAT_WIDTH ((5 * sizeof (int)) / 2 + 1)
Yehuda Sadeh602adf42010-08-12 16:11:25 -070071
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070072#define RBD_NOTIFY_TIMEOUT_DEFAULT 10
73
Yehuda Sadeh602adf42010-08-12 16:11:25 -070074/*
75 * block device image metadata (in-memory version)
76 */
77struct rbd_image_header {
78 u64 image_size;
Alex Elder849b4262012-07-09 21:04:24 -050079 char *object_prefix;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070080 __u8 obj_order;
81 __u8 crypt_type;
82 __u8 comp_type;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070083 struct ceph_snap_context *snapc;
84 size_t snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070085 u32 total_snaps;
86
87 char *snap_names;
88 u64 *snap_sizes;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070089
90 u64 obj_version;
91};
92
93struct rbd_options {
94 int notify_timeout;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070095};
96
97/*
Alex Elderf0f8cef2012-01-29 13:57:44 -060098 * an instance of the client. multiple devices may share an rbd client.
Yehuda Sadeh602adf42010-08-12 16:11:25 -070099 */
100struct rbd_client {
101 struct ceph_client *client;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700102 struct rbd_options *rbd_opts;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700103 struct kref kref;
104 struct list_head node;
105};
106
107/*
Alex Elderf0f8cef2012-01-29 13:57:44 -0600108 * a request completion status
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700109 */
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700110struct rbd_req_status {
111 int done;
112 int rc;
113 u64 bytes;
114};
115
116/*
117 * a collection of requests
118 */
119struct rbd_req_coll {
120 int total;
121 int num_done;
122 struct kref kref;
123 struct rbd_req_status status[0];
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700124};
125
Alex Elderf0f8cef2012-01-29 13:57:44 -0600126/*
127 * a single io request
128 */
129struct rbd_request {
130 struct request *rq; /* blk layer request */
131 struct bio *bio; /* cloned bio */
132 struct page **pages; /* list of used pages */
133 u64 len;
134 int coll_index;
135 struct rbd_req_coll *coll;
136};
137
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800138struct rbd_snap {
139 struct device dev;
140 const char *name;
Josh Durgin35915382011-12-05 18:25:13 -0800141 u64 size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800142 struct list_head node;
143 u64 id;
144};
145
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700146/*
147 * a single device
148 */
149struct rbd_device {
Alex Elderde71a292012-07-03 16:01:19 -0500150 int dev_id; /* blkdev unique id */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700151
152 int major; /* blkdev assigned major */
153 struct gendisk *disk; /* blkdev's gendisk and rq */
154 struct request_queue *q;
155
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700156 struct rbd_client *rbd_client;
157
158 char name[DEV_NAME_LEN]; /* blkdev name, e.g. rbd3 */
159
160 spinlock_t lock; /* queue lock */
161
162 struct rbd_image_header header;
Alex Elder0bed54d2012-07-03 16:01:18 -0500163 char *image_name;
164 size_t image_name_len;
165 char *header_name;
Alex Elderd22f76e2012-07-12 10:46:35 -0500166 char *pool_name;
Alex Elder9bb2f332012-07-12 10:46:35 -0500167 int pool_id;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700168
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700169 struct ceph_osd_event *watch_event;
170 struct ceph_osd_request *watch_request;
171
Josh Durginc6666012011-11-21 17:11:12 -0800172 /* protects updating the header */
173 struct rw_semaphore header_rwsem;
Josh Durgine88a36e2011-11-21 18:14:25 -0800174 /* name of the snapshot this device reads from */
Alex Elder820a5f32012-07-09 21:04:24 -0500175 char *snap_name;
Josh Durgine88a36e2011-11-21 18:14:25 -0800176 /* id of the snapshot this device reads from */
Josh Durgin77dfe992011-11-21 13:04:42 -0800177 u64 snap_id; /* current snapshot id */
Josh Durgine88a36e2011-11-21 18:14:25 -0800178 /* whether the snap_id this device reads from still exists */
179 bool snap_exists;
180 int read_only;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700181
182 struct list_head node;
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800183
184 /* list of snapshots */
185 struct list_head snaps;
186
187 /* sysfs related */
188 struct device dev;
189};
190
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700191static DEFINE_MUTEX(ctl_mutex); /* Serialize open/close/setup/teardown */
Alex Eldere124a822012-01-29 13:57:44 -0600192
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700193static LIST_HEAD(rbd_dev_list); /* devices */
Alex Eldere124a822012-01-29 13:57:44 -0600194static DEFINE_SPINLOCK(rbd_dev_list_lock);
195
Alex Elder432b8582012-01-29 13:57:44 -0600196static LIST_HEAD(rbd_client_list); /* clients */
197static DEFINE_SPINLOCK(rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700198
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800199static int __rbd_init_snaps_header(struct rbd_device *rbd_dev);
200static void rbd_dev_release(struct device *dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800201static ssize_t rbd_snap_add(struct device *dev,
202 struct device_attribute *attr,
203 const char *buf,
204 size_t count);
205static void __rbd_remove_snap_dev(struct rbd_device *rbd_dev,
Justin P. Mattock69932482011-07-26 23:06:29 -0700206 struct rbd_snap *snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800207
Alex Elderf0f8cef2012-01-29 13:57:44 -0600208static ssize_t rbd_add(struct bus_type *bus, const char *buf,
209 size_t count);
210static ssize_t rbd_remove(struct bus_type *bus, const char *buf,
211 size_t count);
212
213static struct bus_attribute rbd_bus_attrs[] = {
214 __ATTR(add, S_IWUSR, NULL, rbd_add),
215 __ATTR(remove, S_IWUSR, NULL, rbd_remove),
216 __ATTR_NULL
217};
218
219static struct bus_type rbd_bus_type = {
220 .name = "rbd",
221 .bus_attrs = rbd_bus_attrs,
222};
223
224static void rbd_root_dev_release(struct device *dev)
225{
226}
227
228static struct device rbd_root_dev = {
229 .init_name = "rbd",
230 .release = rbd_root_dev_release,
231};
232
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800233
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800234static struct device *rbd_get_dev(struct rbd_device *rbd_dev)
235{
236 return get_device(&rbd_dev->dev);
237}
238
239static void rbd_put_dev(struct rbd_device *rbd_dev)
240{
241 put_device(&rbd_dev->dev);
242}
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700243
Josh Durgin263c6ca2011-12-05 10:43:42 -0800244static int __rbd_refresh_header(struct rbd_device *rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700245
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700246static int rbd_open(struct block_device *bdev, fmode_t mode)
247{
Alex Elderf0f8cef2012-01-29 13:57:44 -0600248 struct rbd_device *rbd_dev = bdev->bd_disk->private_data;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700249
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800250 rbd_get_dev(rbd_dev);
251
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700252 set_device_ro(bdev, rbd_dev->read_only);
253
254 if ((mode & FMODE_WRITE) && rbd_dev->read_only)
255 return -EROFS;
256
257 return 0;
258}
259
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800260static int rbd_release(struct gendisk *disk, fmode_t mode)
261{
262 struct rbd_device *rbd_dev = disk->private_data;
263
264 rbd_put_dev(rbd_dev);
265
266 return 0;
267}
268
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700269static const struct block_device_operations rbd_bd_ops = {
270 .owner = THIS_MODULE,
271 .open = rbd_open,
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800272 .release = rbd_release,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700273};
274
275/*
276 * Initialize an rbd client instance.
Alex Elder43ae4702012-07-03 16:01:18 -0500277 * We own *ceph_opts.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700278 */
Alex Elder43ae4702012-07-03 16:01:18 -0500279static struct rbd_client *rbd_client_create(struct ceph_options *ceph_opts,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700280 struct rbd_options *rbd_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700281{
282 struct rbd_client *rbdc;
283 int ret = -ENOMEM;
284
285 dout("rbd_client_create\n");
286 rbdc = kmalloc(sizeof(struct rbd_client), GFP_KERNEL);
287 if (!rbdc)
288 goto out_opt;
289
290 kref_init(&rbdc->kref);
291 INIT_LIST_HEAD(&rbdc->node);
292
Alex Elderbc534d862012-01-29 13:57:44 -0600293 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
294
Alex Elder43ae4702012-07-03 16:01:18 -0500295 rbdc->client = ceph_create_client(ceph_opts, rbdc, 0, 0);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700296 if (IS_ERR(rbdc->client))
Alex Elderbc534d862012-01-29 13:57:44 -0600297 goto out_mutex;
Alex Elder43ae4702012-07-03 16:01:18 -0500298 ceph_opts = NULL; /* Now rbdc->client is responsible for ceph_opts */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700299
300 ret = ceph_open_session(rbdc->client);
301 if (ret < 0)
302 goto out_err;
303
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700304 rbdc->rbd_opts = rbd_opts;
305
Alex Elder432b8582012-01-29 13:57:44 -0600306 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700307 list_add_tail(&rbdc->node, &rbd_client_list);
Alex Elder432b8582012-01-29 13:57:44 -0600308 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700309
Alex Elderbc534d862012-01-29 13:57:44 -0600310 mutex_unlock(&ctl_mutex);
311
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700312 dout("rbd_client_create created %p\n", rbdc);
313 return rbdc;
314
315out_err:
316 ceph_destroy_client(rbdc->client);
Alex Elderbc534d862012-01-29 13:57:44 -0600317out_mutex:
318 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700319 kfree(rbdc);
320out_opt:
Alex Elder43ae4702012-07-03 16:01:18 -0500321 if (ceph_opts)
322 ceph_destroy_options(ceph_opts);
Vasiliy Kulikov28f259b2010-09-26 12:59:37 +0400323 return ERR_PTR(ret);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700324}
325
326/*
327 * Find a ceph client with specific addr and configuration.
328 */
Alex Elder43ae4702012-07-03 16:01:18 -0500329static struct rbd_client *__rbd_client_find(struct ceph_options *ceph_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700330{
331 struct rbd_client *client_node;
332
Alex Elder43ae4702012-07-03 16:01:18 -0500333 if (ceph_opts->flags & CEPH_OPT_NOSHARE)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700334 return NULL;
335
336 list_for_each_entry(client_node, &rbd_client_list, node)
Alex Elder43ae4702012-07-03 16:01:18 -0500337 if (!ceph_compare_options(ceph_opts, client_node->client))
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700338 return client_node;
339 return NULL;
340}
341
342/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700343 * mount options
344 */
345enum {
346 Opt_notify_timeout,
347 Opt_last_int,
348 /* int args above */
349 Opt_last_string,
350 /* string args above */
351};
352
Alex Elder43ae4702012-07-03 16:01:18 -0500353static match_table_t rbd_opts_tokens = {
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700354 {Opt_notify_timeout, "notify_timeout=%d"},
355 /* int args above */
356 /* string args above */
357 {-1, NULL}
358};
359
360static int parse_rbd_opts_token(char *c, void *private)
361{
Alex Elder43ae4702012-07-03 16:01:18 -0500362 struct rbd_options *rbd_opts = private;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700363 substring_t argstr[MAX_OPT_ARGS];
364 int token, intval, ret;
365
Alex Elder43ae4702012-07-03 16:01:18 -0500366 token = match_token(c, rbd_opts_tokens, argstr);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700367 if (token < 0)
368 return -EINVAL;
369
370 if (token < Opt_last_int) {
371 ret = match_int(&argstr[0], &intval);
372 if (ret < 0) {
373 pr_err("bad mount option arg (not int) "
374 "at '%s'\n", c);
375 return ret;
376 }
377 dout("got int token %d val %d\n", token, intval);
378 } else if (token > Opt_last_int && token < Opt_last_string) {
379 dout("got string token %d val %s\n", token,
380 argstr[0].from);
381 } else {
382 dout("got token %d\n", token);
383 }
384
385 switch (token) {
386 case Opt_notify_timeout:
Alex Elder43ae4702012-07-03 16:01:18 -0500387 rbd_opts->notify_timeout = intval;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700388 break;
389 default:
390 BUG_ON(token);
391 }
392 return 0;
393}
394
395/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700396 * Get a ceph client with specific addr and configuration, if one does
397 * not exist create it.
398 */
Alex Elder5214ecc2012-02-02 08:13:30 -0600399static struct rbd_client *rbd_get_client(const char *mon_addr,
400 size_t mon_addr_len,
401 char *options)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700402{
403 struct rbd_client *rbdc;
Alex Elder43ae4702012-07-03 16:01:18 -0500404 struct ceph_options *ceph_opts;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700405 struct rbd_options *rbd_opts;
406
407 rbd_opts = kzalloc(sizeof(*rbd_opts), GFP_KERNEL);
408 if (!rbd_opts)
Alex Elderd720bcb2012-02-02 08:13:30 -0600409 return ERR_PTR(-ENOMEM);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700410
411 rbd_opts->notify_timeout = RBD_NOTIFY_TIMEOUT_DEFAULT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700412
Alex Elder43ae4702012-07-03 16:01:18 -0500413 ceph_opts = ceph_parse_options(options, mon_addr,
414 mon_addr + mon_addr_len,
415 parse_rbd_opts_token, rbd_opts);
416 if (IS_ERR(ceph_opts)) {
Alex Elderd720bcb2012-02-02 08:13:30 -0600417 kfree(rbd_opts);
Alex Elder43ae4702012-07-03 16:01:18 -0500418 return ERR_CAST(ceph_opts);
Alex Elderee577412012-01-24 10:08:36 -0600419 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700420
Alex Elder432b8582012-01-29 13:57:44 -0600421 spin_lock(&rbd_client_list_lock);
Alex Elder43ae4702012-07-03 16:01:18 -0500422 rbdc = __rbd_client_find(ceph_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700423 if (rbdc) {
Alex Eldere6994d32012-01-29 13:57:44 -0600424 /* using an existing client */
425 kref_get(&rbdc->kref);
Alex Elder432b8582012-01-29 13:57:44 -0600426 spin_unlock(&rbd_client_list_lock);
Alex Eldere6994d32012-01-29 13:57:44 -0600427
Alex Elder43ae4702012-07-03 16:01:18 -0500428 ceph_destroy_options(ceph_opts);
Alex Elder97bb59a2012-01-24 10:08:36 -0600429 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700430
Alex Elderd720bcb2012-02-02 08:13:30 -0600431 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700432 }
Alex Elder432b8582012-01-29 13:57:44 -0600433 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700434
Alex Elder43ae4702012-07-03 16:01:18 -0500435 rbdc = rbd_client_create(ceph_opts, rbd_opts);
Alex Elderd97081b2012-01-29 13:57:44 -0600436
Alex Elderd720bcb2012-02-02 08:13:30 -0600437 if (IS_ERR(rbdc))
438 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700439
Alex Elderd720bcb2012-02-02 08:13:30 -0600440 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700441}
442
443/*
444 * Destroy ceph client
Alex Elderd23a4b32012-01-29 13:57:43 -0600445 *
Alex Elder432b8582012-01-29 13:57:44 -0600446 * Caller must hold rbd_client_list_lock.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700447 */
448static void rbd_client_release(struct kref *kref)
449{
450 struct rbd_client *rbdc = container_of(kref, struct rbd_client, kref);
451
452 dout("rbd_release_client %p\n", rbdc);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500453 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700454 list_del(&rbdc->node);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500455 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700456
457 ceph_destroy_client(rbdc->client);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700458 kfree(rbdc->rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700459 kfree(rbdc);
460}
461
462/*
463 * Drop reference to ceph client node. If it's not referenced anymore, release
464 * it.
465 */
466static void rbd_put_client(struct rbd_device *rbd_dev)
467{
468 kref_put(&rbd_dev->rbd_client->kref, rbd_client_release);
469 rbd_dev->rbd_client = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700470}
471
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700472/*
473 * Destroy requests collection
474 */
475static void rbd_coll_release(struct kref *kref)
476{
477 struct rbd_req_coll *coll =
478 container_of(kref, struct rbd_req_coll, kref);
479
480 dout("rbd_coll_release %p\n", coll);
481 kfree(coll);
482}
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700483
Alex Elder8e94af82012-07-25 09:32:40 -0500484static bool rbd_dev_ondisk_valid(struct rbd_image_header_ondisk *ondisk)
485{
486 return !memcmp(&ondisk->text,
487 RBD_HEADER_TEXT, sizeof (RBD_HEADER_TEXT));
488}
489
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700490/*
491 * Create a new header structure, translate header format from the on-disk
492 * header.
493 */
494static int rbd_header_from_disk(struct rbd_image_header *header,
495 struct rbd_image_header_ondisk *ondisk,
Alex Eldered63f4f2012-07-19 09:09:27 -0500496 u32 allocated_snaps)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700497{
Xi Wang50f7c4c2012-04-20 15:49:44 -0500498 u32 i, snap_count;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700499
Alex Elder8e94af82012-07-25 09:32:40 -0500500 if (!rbd_dev_ondisk_valid(ondisk))
Josh Durgin81e759f2011-11-15 14:49:53 -0800501 return -ENXIO;
Josh Durgin81e759f2011-11-15 14:49:53 -0800502
Alex Elder00f1f362012-02-07 12:03:36 -0600503 snap_count = le32_to_cpu(ondisk->snap_count);
Xi Wang50f7c4c2012-04-20 15:49:44 -0500504 if (snap_count > (UINT_MAX - sizeof(struct ceph_snap_context))
505 / sizeof (*ondisk))
506 return -EINVAL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700507 header->snapc = kmalloc(sizeof(struct ceph_snap_context) +
Yan, Zhengf9f9a192012-06-06 09:15:33 -0500508 snap_count * sizeof(u64),
Alex Eldered63f4f2012-07-19 09:09:27 -0500509 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700510 if (!header->snapc)
511 return -ENOMEM;
Alex Elder00f1f362012-02-07 12:03:36 -0600512
Alex Elder00f1f362012-02-07 12:03:36 -0600513 header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700514 if (snap_count) {
515 header->snap_names = kmalloc(header->snap_names_len,
Alex Eldered63f4f2012-07-19 09:09:27 -0500516 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700517 if (!header->snap_names)
518 goto err_snapc;
519 header->snap_sizes = kmalloc(snap_count * sizeof(u64),
Alex Eldered63f4f2012-07-19 09:09:27 -0500520 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700521 if (!header->snap_sizes)
522 goto err_names;
523 } else {
524 header->snap_names = NULL;
525 header->snap_sizes = NULL;
526 }
Alex Elder849b4262012-07-09 21:04:24 -0500527
528 header->object_prefix = kmalloc(sizeof (ondisk->block_name) + 1,
Alex Eldered63f4f2012-07-19 09:09:27 -0500529 GFP_KERNEL);
Alex Elder849b4262012-07-09 21:04:24 -0500530 if (!header->object_prefix)
531 goto err_sizes;
532
Alex Elderca1e49a2012-07-10 20:30:09 -0500533 memcpy(header->object_prefix, ondisk->block_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700534 sizeof(ondisk->block_name));
Alex Elder849b4262012-07-09 21:04:24 -0500535 header->object_prefix[sizeof (ondisk->block_name)] = '\0';
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700536
537 header->image_size = le64_to_cpu(ondisk->image_size);
538 header->obj_order = ondisk->options.order;
539 header->crypt_type = ondisk->options.crypt_type;
540 header->comp_type = ondisk->options.comp_type;
541
542 atomic_set(&header->snapc->nref, 1);
Alex Elder505cbb92012-07-19 08:49:18 -0500543 header->snapc->seq = le64_to_cpu(ondisk->snap_seq);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700544 header->snapc->num_snaps = snap_count;
545 header->total_snaps = snap_count;
546
Alex Elder21079782012-01-24 10:08:36 -0600547 if (snap_count && allocated_snaps == snap_count) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700548 for (i = 0; i < snap_count; i++) {
549 header->snapc->snaps[i] =
550 le64_to_cpu(ondisk->snaps[i].id);
551 header->snap_sizes[i] =
552 le64_to_cpu(ondisk->snaps[i].image_size);
553 }
554
555 /* copy snapshot names */
556 memcpy(header->snap_names, &ondisk->snaps[i],
557 header->snap_names_len);
558 }
559
560 return 0;
561
Alex Elder849b4262012-07-09 21:04:24 -0500562err_sizes:
563 kfree(header->snap_sizes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700564err_names:
565 kfree(header->snap_names);
566err_snapc:
567 kfree(header->snapc);
Alex Elder00f1f362012-02-07 12:03:36 -0600568 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700569}
570
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700571static int snap_by_name(struct rbd_image_header *header, const char *snap_name,
572 u64 *seq, u64 *size)
573{
574 int i;
575 char *p = header->snap_names;
576
Alex Elder00f1f362012-02-07 12:03:36 -0600577 for (i = 0; i < header->total_snaps; i++) {
578 if (!strcmp(snap_name, p)) {
579
580 /* Found it. Pass back its id and/or size */
581
582 if (seq)
583 *seq = header->snapc->snaps[i];
584 if (size)
585 *size = header->snap_sizes[i];
586 return i;
587 }
588 p += strlen(p) + 1; /* Skip ahead to the next name */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700589 }
Alex Elder00f1f362012-02-07 12:03:36 -0600590 return -ENOENT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700591}
592
Alex Elder0ce1a792012-07-03 16:01:18 -0500593static int rbd_header_set_snap(struct rbd_device *rbd_dev, u64 *size)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700594{
Alex Elder78dc4472012-07-19 08:49:18 -0500595 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700596
Alex Elder0ce1a792012-07-03 16:01:18 -0500597 down_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700598
Alex Elder0ce1a792012-07-03 16:01:18 -0500599 if (!memcmp(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
Josh Durgincc9d7342011-11-21 18:19:13 -0800600 sizeof (RBD_SNAP_HEAD_NAME))) {
Alex Elder0ce1a792012-07-03 16:01:18 -0500601 rbd_dev->snap_id = CEPH_NOSNAP;
Josh Durgine88a36e2011-11-21 18:14:25 -0800602 rbd_dev->snap_exists = false;
Alex Elder0ce1a792012-07-03 16:01:18 -0500603 rbd_dev->read_only = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700604 if (size)
Alex Elder78dc4472012-07-19 08:49:18 -0500605 *size = rbd_dev->header.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700606 } else {
Alex Elder78dc4472012-07-19 08:49:18 -0500607 u64 snap_id = 0;
608
609 ret = snap_by_name(&rbd_dev->header, rbd_dev->snap_name,
610 &snap_id, size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700611 if (ret < 0)
612 goto done;
Alex Elder78dc4472012-07-19 08:49:18 -0500613 rbd_dev->snap_id = snap_id;
Josh Durgine88a36e2011-11-21 18:14:25 -0800614 rbd_dev->snap_exists = true;
Alex Elder0ce1a792012-07-03 16:01:18 -0500615 rbd_dev->read_only = 1;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700616 }
617
618 ret = 0;
619done:
Alex Elder0ce1a792012-07-03 16:01:18 -0500620 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700621 return ret;
622}
623
624static void rbd_header_free(struct rbd_image_header *header)
625{
Alex Elder849b4262012-07-09 21:04:24 -0500626 kfree(header->object_prefix);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700627 kfree(header->snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -0500628 kfree(header->snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -0800629 ceph_put_snap_context(header->snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700630}
631
632/*
633 * get the actual striped segment name, offset and length
634 */
635static u64 rbd_get_segment(struct rbd_image_header *header,
Alex Elderca1e49a2012-07-10 20:30:09 -0500636 const char *object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700637 u64 ofs, u64 len,
638 char *seg_name, u64 *segofs)
639{
640 u64 seg = ofs >> header->obj_order;
641
642 if (seg_name)
643 snprintf(seg_name, RBD_MAX_SEG_NAME_LEN,
Alex Elderca1e49a2012-07-10 20:30:09 -0500644 "%s.%012llx", object_prefix, seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700645
646 ofs = ofs & ((1 << header->obj_order) - 1);
647 len = min_t(u64, len, (1 << header->obj_order) - ofs);
648
649 if (segofs)
650 *segofs = ofs;
651
652 return len;
653}
654
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700655static int rbd_get_num_segments(struct rbd_image_header *header,
656 u64 ofs, u64 len)
657{
658 u64 start_seg = ofs >> header->obj_order;
659 u64 end_seg = (ofs + len - 1) >> header->obj_order;
660 return end_seg - start_seg + 1;
661}
662
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700663/*
Josh Durgin029bcbd2011-07-22 11:35:23 -0700664 * returns the size of an object in the image
665 */
666static u64 rbd_obj_bytes(struct rbd_image_header *header)
667{
668 return 1 << header->obj_order;
669}
670
671/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700672 * bio helpers
673 */
674
675static void bio_chain_put(struct bio *chain)
676{
677 struct bio *tmp;
678
679 while (chain) {
680 tmp = chain;
681 chain = chain->bi_next;
682 bio_put(tmp);
683 }
684}
685
686/*
687 * zeros a bio chain, starting at specific offset
688 */
689static void zero_bio_chain(struct bio *chain, int start_ofs)
690{
691 struct bio_vec *bv;
692 unsigned long flags;
693 void *buf;
694 int i;
695 int pos = 0;
696
697 while (chain) {
698 bio_for_each_segment(bv, chain, i) {
699 if (pos + bv->bv_len > start_ofs) {
700 int remainder = max(start_ofs - pos, 0);
701 buf = bvec_kmap_irq(bv, &flags);
702 memset(buf + remainder, 0,
703 bv->bv_len - remainder);
Dan Carpenter85b5aaa2010-10-11 21:15:11 +0200704 bvec_kunmap_irq(buf, &flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700705 }
706 pos += bv->bv_len;
707 }
708
709 chain = chain->bi_next;
710 }
711}
712
713/*
714 * bio_chain_clone - clone a chain of bios up to a certain length.
715 * might return a bio_pair that will need to be released.
716 */
717static struct bio *bio_chain_clone(struct bio **old, struct bio **next,
718 struct bio_pair **bp,
719 int len, gfp_t gfpmask)
720{
721 struct bio *tmp, *old_chain = *old, *new_chain = NULL, *tail = NULL;
722 int total = 0;
723
724 if (*bp) {
725 bio_pair_release(*bp);
726 *bp = NULL;
727 }
728
729 while (old_chain && (total < len)) {
730 tmp = bio_kmalloc(gfpmask, old_chain->bi_max_vecs);
731 if (!tmp)
732 goto err_out;
733
734 if (total + old_chain->bi_size > len) {
735 struct bio_pair *bp;
736
737 /*
738 * this split can only happen with a single paged bio,
739 * split_bio will BUG_ON if this is not the case
740 */
741 dout("bio_chain_clone split! total=%d remaining=%d"
Alex Elderbd919d42012-07-13 20:35:11 -0500742 "bi_size=%u\n",
743 total, len - total, old_chain->bi_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700744
745 /* split the bio. We'll release it either in the next
746 call, or it will have to be released outside */
Alex Elder593a9e72012-02-07 12:03:37 -0600747 bp = bio_split(old_chain, (len - total) / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700748 if (!bp)
749 goto err_out;
750
751 __bio_clone(tmp, &bp->bio1);
752
753 *next = &bp->bio2;
754 } else {
755 __bio_clone(tmp, old_chain);
756 *next = old_chain->bi_next;
757 }
758
759 tmp->bi_bdev = NULL;
760 gfpmask &= ~__GFP_WAIT;
761 tmp->bi_next = NULL;
762
763 if (!new_chain) {
764 new_chain = tail = tmp;
765 } else {
766 tail->bi_next = tmp;
767 tail = tmp;
768 }
769 old_chain = old_chain->bi_next;
770
771 total += tmp->bi_size;
772 }
773
774 BUG_ON(total < len);
775
776 if (tail)
777 tail->bi_next = NULL;
778
779 *old = old_chain;
780
781 return new_chain;
782
783err_out:
784 dout("bio_chain_clone with err\n");
785 bio_chain_put(new_chain);
786 return NULL;
787}
788
789/*
790 * helpers for osd request op vectors.
791 */
792static int rbd_create_rw_ops(struct ceph_osd_req_op **ops,
793 int num_ops,
794 int opcode,
795 u32 payload_len)
796{
797 *ops = kzalloc(sizeof(struct ceph_osd_req_op) * (num_ops + 1),
798 GFP_NOIO);
799 if (!*ops)
800 return -ENOMEM;
801 (*ops)[0].op = opcode;
802 /*
803 * op extent offset and length will be set later on
804 * in calc_raw_layout()
805 */
806 (*ops)[0].payload_len = payload_len;
807 return 0;
808}
809
810static void rbd_destroy_ops(struct ceph_osd_req_op *ops)
811{
812 kfree(ops);
813}
814
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700815static void rbd_coll_end_req_index(struct request *rq,
816 struct rbd_req_coll *coll,
817 int index,
818 int ret, u64 len)
819{
820 struct request_queue *q;
821 int min, max, i;
822
Alex Elderbd919d42012-07-13 20:35:11 -0500823 dout("rbd_coll_end_req_index %p index %d ret %d len %llu\n",
824 coll, index, ret, (unsigned long long) len);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700825
826 if (!rq)
827 return;
828
829 if (!coll) {
830 blk_end_request(rq, ret, len);
831 return;
832 }
833
834 q = rq->q;
835
836 spin_lock_irq(q->queue_lock);
837 coll->status[index].done = 1;
838 coll->status[index].rc = ret;
839 coll->status[index].bytes = len;
840 max = min = coll->num_done;
841 while (max < coll->total && coll->status[max].done)
842 max++;
843
844 for (i = min; i<max; i++) {
845 __blk_end_request(rq, coll->status[i].rc,
846 coll->status[i].bytes);
847 coll->num_done++;
848 kref_put(&coll->kref, rbd_coll_release);
849 }
850 spin_unlock_irq(q->queue_lock);
851}
852
853static void rbd_coll_end_req(struct rbd_request *req,
854 int ret, u64 len)
855{
856 rbd_coll_end_req_index(req->rq, req->coll, req->coll_index, ret, len);
857}
858
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700859/*
860 * Send ceph osd request
861 */
862static int rbd_do_request(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -0500863 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700864 struct ceph_snap_context *snapc,
865 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -0500866 const char *object_name, u64 ofs, u64 len,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700867 struct bio *bio,
868 struct page **pages,
869 int num_pages,
870 int flags,
871 struct ceph_osd_req_op *ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700872 struct rbd_req_coll *coll,
873 int coll_index,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700874 void (*rbd_cb)(struct ceph_osd_request *req,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700875 struct ceph_msg *msg),
876 struct ceph_osd_request **linger_req,
877 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700878{
879 struct ceph_osd_request *req;
880 struct ceph_file_layout *layout;
881 int ret;
882 u64 bno;
883 struct timespec mtime = CURRENT_TIME;
884 struct rbd_request *req_data;
885 struct ceph_osd_request_head *reqhead;
Alex Elder1dbb4392012-01-24 10:08:37 -0600886 struct ceph_osd_client *osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700887
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700888 req_data = kzalloc(sizeof(*req_data), GFP_NOIO);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700889 if (!req_data) {
890 if (coll)
891 rbd_coll_end_req_index(rq, coll, coll_index,
892 -ENOMEM, len);
893 return -ENOMEM;
894 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700895
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700896 if (coll) {
897 req_data->coll = coll;
898 req_data->coll_index = coll_index;
899 }
900
Alex Elderbd919d42012-07-13 20:35:11 -0500901 dout("rbd_do_request object_name=%s ofs=%llu len=%llu\n", object_name,
902 (unsigned long long) ofs, (unsigned long long) len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700903
Alex Elder0ce1a792012-07-03 16:01:18 -0500904 osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder1dbb4392012-01-24 10:08:37 -0600905 req = ceph_osdc_alloc_request(osdc, flags, snapc, ops,
906 false, GFP_NOIO, pages, bio);
Sage Weil4ad12622011-05-03 09:23:36 -0700907 if (!req) {
Sage Weil4ad12622011-05-03 09:23:36 -0700908 ret = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700909 goto done_pages;
910 }
911
912 req->r_callback = rbd_cb;
913
914 req_data->rq = rq;
915 req_data->bio = bio;
916 req_data->pages = pages;
917 req_data->len = len;
918
919 req->r_priv = req_data;
920
921 reqhead = req->r_request->front.iov_base;
922 reqhead->snapid = cpu_to_le64(CEPH_NOSNAP);
923
Alex Elderaded07e2012-07-03 16:01:18 -0500924 strncpy(req->r_oid, object_name, sizeof(req->r_oid));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700925 req->r_oid_len = strlen(req->r_oid);
926
927 layout = &req->r_file_layout;
928 memset(layout, 0, sizeof(*layout));
929 layout->fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
930 layout->fl_stripe_count = cpu_to_le32(1);
931 layout->fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
Alex Elder0ce1a792012-07-03 16:01:18 -0500932 layout->fl_pg_pool = cpu_to_le32(rbd_dev->pool_id);
Alex Elder1dbb4392012-01-24 10:08:37 -0600933 ceph_calc_raw_layout(osdc, layout, snapid, ofs, &len, &bno,
934 req, ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700935
936 ceph_osdc_build_request(req, ofs, &len,
937 ops,
938 snapc,
939 &mtime,
940 req->r_oid, req->r_oid_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700941
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700942 if (linger_req) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600943 ceph_osdc_set_request_linger(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700944 *linger_req = req;
945 }
946
Alex Elder1dbb4392012-01-24 10:08:37 -0600947 ret = ceph_osdc_start_request(osdc, req, false);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700948 if (ret < 0)
949 goto done_err;
950
951 if (!rbd_cb) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600952 ret = ceph_osdc_wait_request(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700953 if (ver)
954 *ver = le64_to_cpu(req->r_reassert_version.version);
Alex Elderbd919d42012-07-13 20:35:11 -0500955 dout("reassert_ver=%llu\n",
956 (unsigned long long)
957 le64_to_cpu(req->r_reassert_version.version));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700958 ceph_osdc_put_request(req);
959 }
960 return ret;
961
962done_err:
963 bio_chain_put(req_data->bio);
964 ceph_osdc_put_request(req);
965done_pages:
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700966 rbd_coll_end_req(req_data, ret, len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700967 kfree(req_data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700968 return ret;
969}
970
971/*
972 * Ceph osd op callback
973 */
974static void rbd_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
975{
976 struct rbd_request *req_data = req->r_priv;
977 struct ceph_osd_reply_head *replyhead;
978 struct ceph_osd_op *op;
979 __s32 rc;
980 u64 bytes;
981 int read_op;
982
983 /* parse reply */
984 replyhead = msg->front.iov_base;
985 WARN_ON(le32_to_cpu(replyhead->num_ops) == 0);
986 op = (void *)(replyhead + 1);
987 rc = le32_to_cpu(replyhead->result);
988 bytes = le64_to_cpu(op->extent.length);
Dan Carpenter895cfcc2012-06-06 09:15:33 -0500989 read_op = (le16_to_cpu(op->op) == CEPH_OSD_OP_READ);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700990
Alex Elderbd919d42012-07-13 20:35:11 -0500991 dout("rbd_req_cb bytes=%llu readop=%d rc=%d\n",
992 (unsigned long long) bytes, read_op, (int) rc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700993
994 if (rc == -ENOENT && read_op) {
995 zero_bio_chain(req_data->bio, 0);
996 rc = 0;
997 } else if (rc == 0 && read_op && bytes < req_data->len) {
998 zero_bio_chain(req_data->bio, bytes);
999 bytes = req_data->len;
1000 }
1001
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001002 rbd_coll_end_req(req_data, rc, bytes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001003
1004 if (req_data->bio)
1005 bio_chain_put(req_data->bio);
1006
1007 ceph_osdc_put_request(req);
1008 kfree(req_data);
1009}
1010
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001011static void rbd_simple_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1012{
1013 ceph_osdc_put_request(req);
1014}
1015
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001016/*
1017 * Do a synchronous ceph osd operation
1018 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001019static int rbd_req_sync_op(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001020 struct ceph_snap_context *snapc,
1021 u64 snapid,
1022 int opcode,
1023 int flags,
1024 struct ceph_osd_req_op *orig_ops,
Alex Elderaded07e2012-07-03 16:01:18 -05001025 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001026 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001027 char *buf,
1028 struct ceph_osd_request **linger_req,
1029 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001030{
1031 int ret;
1032 struct page **pages;
1033 int num_pages;
1034 struct ceph_osd_req_op *ops = orig_ops;
1035 u32 payload_len;
1036
1037 num_pages = calc_pages_for(ofs , len);
1038 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Dan Carpenterb8d06382010-10-11 21:14:23 +02001039 if (IS_ERR(pages))
1040 return PTR_ERR(pages);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001041
1042 if (!orig_ops) {
1043 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? len : 0);
1044 ret = rbd_create_rw_ops(&ops, 1, opcode, payload_len);
1045 if (ret < 0)
1046 goto done;
1047
1048 if ((flags & CEPH_OSD_FLAG_WRITE) && buf) {
1049 ret = ceph_copy_to_page_vector(pages, buf, ofs, len);
1050 if (ret < 0)
1051 goto done_ops;
1052 }
1053 }
1054
Alex Elder0ce1a792012-07-03 16:01:18 -05001055 ret = rbd_do_request(NULL, rbd_dev, snapc, snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001056 object_name, ofs, len, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001057 pages, num_pages,
1058 flags,
1059 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001060 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001061 NULL,
1062 linger_req, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001063 if (ret < 0)
1064 goto done_ops;
1065
1066 if ((flags & CEPH_OSD_FLAG_READ) && buf)
1067 ret = ceph_copy_from_page_vector(pages, buf, ofs, ret);
1068
1069done_ops:
1070 if (!orig_ops)
1071 rbd_destroy_ops(ops);
1072done:
1073 ceph_release_page_vector(pages, num_pages);
1074 return ret;
1075}
1076
1077/*
1078 * Do an asynchronous ceph osd operation
1079 */
1080static int rbd_do_op(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -05001081 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001082 struct ceph_snap_context *snapc,
1083 u64 snapid,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001084 int opcode, int flags,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001085 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001086 struct bio *bio,
1087 struct rbd_req_coll *coll,
1088 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001089{
1090 char *seg_name;
1091 u64 seg_ofs;
1092 u64 seg_len;
1093 int ret;
1094 struct ceph_osd_req_op *ops;
1095 u32 payload_len;
1096
1097 seg_name = kmalloc(RBD_MAX_SEG_NAME_LEN + 1, GFP_NOIO);
1098 if (!seg_name)
1099 return -ENOMEM;
1100
1101 seg_len = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001102 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001103 ofs, len,
1104 seg_name, &seg_ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001105
1106 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
1107
1108 ret = rbd_create_rw_ops(&ops, 1, opcode, payload_len);
1109 if (ret < 0)
1110 goto done;
1111
1112 /* we've taken care of segment sizes earlier when we
1113 cloned the bios. We should never have a segment
1114 truncated at this point */
1115 BUG_ON(seg_len < len);
1116
1117 ret = rbd_do_request(rq, rbd_dev, snapc, snapid,
1118 seg_name, seg_ofs, seg_len,
1119 bio,
1120 NULL, 0,
1121 flags,
1122 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001123 coll, coll_index,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001124 rbd_req_cb, 0, NULL);
Sage Weil11f77002011-05-12 16:13:54 -07001125
1126 rbd_destroy_ops(ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001127done:
1128 kfree(seg_name);
1129 return ret;
1130}
1131
1132/*
1133 * Request async osd write
1134 */
1135static int rbd_req_write(struct request *rq,
1136 struct rbd_device *rbd_dev,
1137 struct ceph_snap_context *snapc,
1138 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001139 struct bio *bio,
1140 struct rbd_req_coll *coll,
1141 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001142{
1143 return rbd_do_op(rq, rbd_dev, snapc, CEPH_NOSNAP,
1144 CEPH_OSD_OP_WRITE,
1145 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001146 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001147}
1148
1149/*
1150 * Request async osd read
1151 */
1152static int rbd_req_read(struct request *rq,
1153 struct rbd_device *rbd_dev,
1154 u64 snapid,
1155 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001156 struct bio *bio,
1157 struct rbd_req_coll *coll,
1158 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001159{
1160 return rbd_do_op(rq, rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001161 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001162 CEPH_OSD_OP_READ,
1163 CEPH_OSD_FLAG_READ,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001164 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001165}
1166
1167/*
1168 * Request sync osd read
1169 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001170static int rbd_req_sync_read(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001171 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001172 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001173 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001174 char *buf,
1175 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001176{
Alex Elder0ce1a792012-07-03 16:01:18 -05001177 return rbd_req_sync_op(rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001178 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001179 CEPH_OSD_OP_READ,
1180 CEPH_OSD_FLAG_READ,
1181 NULL,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001182 object_name, ofs, len, buf, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001183}
1184
1185/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001186 * Request sync osd watch
1187 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001188static int rbd_req_sync_notify_ack(struct rbd_device *rbd_dev,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001189 u64 ver,
1190 u64 notify_id,
Alex Elderaded07e2012-07-03 16:01:18 -05001191 const char *object_name)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001192{
1193 struct ceph_osd_req_op *ops;
Sage Weil11f77002011-05-12 16:13:54 -07001194 int ret;
1195
1196 ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY_ACK, 0);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001197 if (ret < 0)
1198 return ret;
1199
Josh Durgina71b8912011-12-05 18:10:44 -08001200 ops[0].watch.ver = cpu_to_le64(ver);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001201 ops[0].watch.cookie = notify_id;
1202 ops[0].watch.flag = 0;
1203
Alex Elder0ce1a792012-07-03 16:01:18 -05001204 ret = rbd_do_request(NULL, rbd_dev, NULL, CEPH_NOSNAP,
Alex Elderaded07e2012-07-03 16:01:18 -05001205 object_name, 0, 0, NULL,
Alex Elderad4f2322012-07-03 16:01:19 -05001206 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001207 CEPH_OSD_FLAG_READ,
1208 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001209 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001210 rbd_simple_req_cb, 0, NULL);
1211
1212 rbd_destroy_ops(ops);
1213 return ret;
1214}
1215
1216static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1217{
Alex Elder0ce1a792012-07-03 16:01:18 -05001218 struct rbd_device *rbd_dev = (struct rbd_device *)data;
Josh Durgina71b8912011-12-05 18:10:44 -08001219 u64 hver;
Sage Weil13143d22011-05-12 16:08:30 -07001220 int rc;
1221
Alex Elder0ce1a792012-07-03 16:01:18 -05001222 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001223 return;
1224
Alex Elderbd919d42012-07-13 20:35:11 -05001225 dout("rbd_watch_cb %s notify_id=%llu opcode=%u\n",
1226 rbd_dev->header_name, (unsigned long long) notify_id,
1227 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001228 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Alex Elder0ce1a792012-07-03 16:01:18 -05001229 rc = __rbd_refresh_header(rbd_dev);
Josh Durgina71b8912011-12-05 18:10:44 -08001230 hver = rbd_dev->header.obj_version;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001231 mutex_unlock(&ctl_mutex);
Sage Weil13143d22011-05-12 16:08:30 -07001232 if (rc)
Alex Elderf0f8cef2012-01-29 13:57:44 -06001233 pr_warning(RBD_DRV_NAME "%d got notification but failed to "
Alex Elder0ce1a792012-07-03 16:01:18 -05001234 " update snaps: %d\n", rbd_dev->major, rc);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001235
Josh Durgina71b8912011-12-05 18:10:44 -08001236 rbd_req_sync_notify_ack(rbd_dev, hver, notify_id, rbd_dev->header_name);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001237}
1238
1239/*
1240 * Request sync osd watch
1241 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001242static int rbd_req_sync_watch(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001243 const char *object_name,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001244 u64 ver)
1245{
1246 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001247 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001248
1249 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_WATCH, 0);
1250 if (ret < 0)
1251 return ret;
1252
1253 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, 0,
Alex Elder0ce1a792012-07-03 16:01:18 -05001254 (void *)rbd_dev, &rbd_dev->watch_event);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001255 if (ret < 0)
1256 goto fail;
1257
1258 ops[0].watch.ver = cpu_to_le64(ver);
Alex Elder0ce1a792012-07-03 16:01:18 -05001259 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001260 ops[0].watch.flag = 1;
1261
Alex Elder0ce1a792012-07-03 16:01:18 -05001262 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001263 CEPH_NOSNAP,
1264 0,
1265 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1266 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001267 object_name, 0, 0, NULL,
Alex Elder0ce1a792012-07-03 16:01:18 -05001268 &rbd_dev->watch_request, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001269
1270 if (ret < 0)
1271 goto fail_event;
1272
1273 rbd_destroy_ops(ops);
1274 return 0;
1275
1276fail_event:
Alex Elder0ce1a792012-07-03 16:01:18 -05001277 ceph_osdc_cancel_event(rbd_dev->watch_event);
1278 rbd_dev->watch_event = NULL;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001279fail:
1280 rbd_destroy_ops(ops);
1281 return ret;
1282}
1283
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001284/*
1285 * Request sync osd unwatch
1286 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001287static int rbd_req_sync_unwatch(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001288 const char *object_name)
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001289{
1290 struct ceph_osd_req_op *ops;
1291
1292 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_WATCH, 0);
1293 if (ret < 0)
1294 return ret;
1295
1296 ops[0].watch.ver = 0;
Alex Elder0ce1a792012-07-03 16:01:18 -05001297 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001298 ops[0].watch.flag = 0;
1299
Alex Elder0ce1a792012-07-03 16:01:18 -05001300 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001301 CEPH_NOSNAP,
1302 0,
1303 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1304 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001305 object_name, 0, 0, NULL, NULL, NULL);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001306
1307 rbd_destroy_ops(ops);
Alex Elder0ce1a792012-07-03 16:01:18 -05001308 ceph_osdc_cancel_event(rbd_dev->watch_event);
1309 rbd_dev->watch_event = NULL;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001310 return ret;
1311}
1312
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001313struct rbd_notify_info {
Alex Elder0ce1a792012-07-03 16:01:18 -05001314 struct rbd_device *rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001315};
1316
1317static void rbd_notify_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1318{
Alex Elder0ce1a792012-07-03 16:01:18 -05001319 struct rbd_device *rbd_dev = (struct rbd_device *)data;
1320 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001321 return;
1322
Alex Elderbd919d42012-07-13 20:35:11 -05001323 dout("rbd_notify_cb %s notify_id=%llu opcode=%u\n",
1324 rbd_dev->header_name, (unsigned long long) notify_id,
1325 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001326}
1327
1328/*
1329 * Request sync osd notify
1330 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001331static int rbd_req_sync_notify(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001332 const char *object_name)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001333{
1334 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001335 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001336 struct ceph_osd_event *event;
1337 struct rbd_notify_info info;
1338 int payload_len = sizeof(u32) + sizeof(u32);
1339 int ret;
1340
1341 ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY, payload_len);
1342 if (ret < 0)
1343 return ret;
1344
Alex Elder0ce1a792012-07-03 16:01:18 -05001345 info.rbd_dev = rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001346
1347 ret = ceph_osdc_create_event(osdc, rbd_notify_cb, 1,
1348 (void *)&info, &event);
1349 if (ret < 0)
1350 goto fail;
1351
1352 ops[0].watch.ver = 1;
1353 ops[0].watch.flag = 1;
1354 ops[0].watch.cookie = event->cookie;
1355 ops[0].watch.prot_ver = RADOS_NOTIFY_VER;
1356 ops[0].watch.timeout = 12;
1357
Alex Elder0ce1a792012-07-03 16:01:18 -05001358 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001359 CEPH_NOSNAP,
1360 0,
1361 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1362 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001363 object_name, 0, 0, NULL, NULL, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001364 if (ret < 0)
1365 goto fail_event;
1366
1367 ret = ceph_osdc_wait_event(event, CEPH_OSD_TIMEOUT_DEFAULT);
1368 dout("ceph_osdc_wait_event returned %d\n", ret);
1369 rbd_destroy_ops(ops);
1370 return 0;
1371
1372fail_event:
1373 ceph_osdc_cancel_event(event);
1374fail:
1375 rbd_destroy_ops(ops);
1376 return ret;
1377}
1378
1379/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001380 * Request sync osd read
1381 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001382static int rbd_req_sync_exec(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001383 const char *object_name,
1384 const char *class_name,
1385 const char *method_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001386 const char *data,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001387 int len,
1388 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001389{
1390 struct ceph_osd_req_op *ops;
Alex Elderaded07e2012-07-03 16:01:18 -05001391 int class_name_len = strlen(class_name);
1392 int method_name_len = strlen(method_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001393 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_CALL,
Alex Elderaded07e2012-07-03 16:01:18 -05001394 class_name_len + method_name_len + len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001395 if (ret < 0)
1396 return ret;
1397
Alex Elderaded07e2012-07-03 16:01:18 -05001398 ops[0].cls.class_name = class_name;
1399 ops[0].cls.class_len = (__u8) class_name_len;
1400 ops[0].cls.method_name = method_name;
1401 ops[0].cls.method_len = (__u8) method_name_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001402 ops[0].cls.argc = 0;
1403 ops[0].cls.indata = data;
1404 ops[0].cls.indata_len = len;
1405
Alex Elder0ce1a792012-07-03 16:01:18 -05001406 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001407 CEPH_NOSNAP,
1408 0,
1409 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1410 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001411 object_name, 0, 0, NULL, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001412
1413 rbd_destroy_ops(ops);
1414
1415 dout("cls_exec returned %d\n", ret);
1416 return ret;
1417}
1418
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001419static struct rbd_req_coll *rbd_alloc_coll(int num_reqs)
1420{
1421 struct rbd_req_coll *coll =
1422 kzalloc(sizeof(struct rbd_req_coll) +
1423 sizeof(struct rbd_req_status) * num_reqs,
1424 GFP_ATOMIC);
1425
1426 if (!coll)
1427 return NULL;
1428 coll->total = num_reqs;
1429 kref_init(&coll->kref);
1430 return coll;
1431}
1432
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001433/*
1434 * block device queue callback
1435 */
1436static void rbd_rq_fn(struct request_queue *q)
1437{
1438 struct rbd_device *rbd_dev = q->queuedata;
1439 struct request *rq;
1440 struct bio_pair *bp = NULL;
1441
Alex Elder00f1f362012-02-07 12:03:36 -06001442 while ((rq = blk_fetch_request(q))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001443 struct bio *bio;
1444 struct bio *rq_bio, *next_bio = NULL;
1445 bool do_write;
Alex Elderbd919d42012-07-13 20:35:11 -05001446 unsigned int size;
1447 u64 op_size = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001448 u64 ofs;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001449 int num_segs, cur_seg = 0;
1450 struct rbd_req_coll *coll;
Josh Durgind1d25642011-12-05 14:03:05 -08001451 struct ceph_snap_context *snapc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001452
1453 /* peek at request from block layer */
1454 if (!rq)
1455 break;
1456
1457 dout("fetched request\n");
1458
1459 /* filter out block requests we don't understand */
1460 if ((rq->cmd_type != REQ_TYPE_FS)) {
1461 __blk_end_request_all(rq, 0);
Alex Elder00f1f362012-02-07 12:03:36 -06001462 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001463 }
1464
1465 /* deduce our operation (read, write) */
1466 do_write = (rq_data_dir(rq) == WRITE);
1467
1468 size = blk_rq_bytes(rq);
Alex Elder593a9e72012-02-07 12:03:37 -06001469 ofs = blk_rq_pos(rq) * SECTOR_SIZE;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001470 rq_bio = rq->bio;
1471 if (do_write && rbd_dev->read_only) {
1472 __blk_end_request_all(rq, -EROFS);
Alex Elder00f1f362012-02-07 12:03:36 -06001473 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001474 }
1475
1476 spin_unlock_irq(q->queue_lock);
1477
Josh Durgind1d25642011-12-05 14:03:05 -08001478 down_read(&rbd_dev->header_rwsem);
Josh Durgine88a36e2011-11-21 18:14:25 -08001479
Josh Durgind1d25642011-12-05 14:03:05 -08001480 if (rbd_dev->snap_id != CEPH_NOSNAP && !rbd_dev->snap_exists) {
Josh Durgine88a36e2011-11-21 18:14:25 -08001481 up_read(&rbd_dev->header_rwsem);
Josh Durgind1d25642011-12-05 14:03:05 -08001482 dout("request for non-existent snapshot");
1483 spin_lock_irq(q->queue_lock);
1484 __blk_end_request_all(rq, -ENXIO);
1485 continue;
Josh Durgine88a36e2011-11-21 18:14:25 -08001486 }
1487
Josh Durgind1d25642011-12-05 14:03:05 -08001488 snapc = ceph_get_snap_context(rbd_dev->header.snapc);
1489
1490 up_read(&rbd_dev->header_rwsem);
1491
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001492 dout("%s 0x%x bytes at 0x%llx\n",
1493 do_write ? "write" : "read",
Alex Elderbd919d42012-07-13 20:35:11 -05001494 size, (unsigned long long) blk_rq_pos(rq) * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001495
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001496 num_segs = rbd_get_num_segments(&rbd_dev->header, ofs, size);
1497 coll = rbd_alloc_coll(num_segs);
1498 if (!coll) {
1499 spin_lock_irq(q->queue_lock);
1500 __blk_end_request_all(rq, -ENOMEM);
Josh Durgind1d25642011-12-05 14:03:05 -08001501 ceph_put_snap_context(snapc);
Alex Elder00f1f362012-02-07 12:03:36 -06001502 continue;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001503 }
1504
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001505 do {
1506 /* a bio clone to be passed down to OSD req */
Alex Elderbd919d42012-07-13 20:35:11 -05001507 dout("rq->bio->bi_vcnt=%hu\n", rq->bio->bi_vcnt);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001508 op_size = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001509 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001510 ofs, size,
1511 NULL, NULL);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001512 kref_get(&coll->kref);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001513 bio = bio_chain_clone(&rq_bio, &next_bio, &bp,
1514 op_size, GFP_ATOMIC);
1515 if (!bio) {
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001516 rbd_coll_end_req_index(rq, coll, cur_seg,
1517 -ENOMEM, op_size);
1518 goto next_seg;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001519 }
1520
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001521
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001522 /* init OSD command: write or read */
1523 if (do_write)
1524 rbd_req_write(rq, rbd_dev,
Josh Durgind1d25642011-12-05 14:03:05 -08001525 snapc,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001526 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001527 op_size, bio,
1528 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001529 else
1530 rbd_req_read(rq, rbd_dev,
Josh Durgin77dfe992011-11-21 13:04:42 -08001531 rbd_dev->snap_id,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001532 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001533 op_size, bio,
1534 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001535
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001536next_seg:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001537 size -= op_size;
1538 ofs += op_size;
1539
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001540 cur_seg++;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001541 rq_bio = next_bio;
1542 } while (size > 0);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001543 kref_put(&coll->kref, rbd_coll_release);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001544
1545 if (bp)
1546 bio_pair_release(bp);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001547 spin_lock_irq(q->queue_lock);
Josh Durgind1d25642011-12-05 14:03:05 -08001548
1549 ceph_put_snap_context(snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001550 }
1551}
1552
1553/*
1554 * a queue callback. Makes sure that we don't create a bio that spans across
1555 * multiple osd objects. One exception would be with a single page bios,
1556 * which we handle later at bio_chain_clone
1557 */
1558static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
1559 struct bio_vec *bvec)
1560{
1561 struct rbd_device *rbd_dev = q->queuedata;
Alex Elder593a9e72012-02-07 12:03:37 -06001562 unsigned int chunk_sectors;
1563 sector_t sector;
1564 unsigned int bio_sectors;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001565 int max;
1566
Alex Elder593a9e72012-02-07 12:03:37 -06001567 chunk_sectors = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
1568 sector = bmd->bi_sector + get_start_sect(bmd->bi_bdev);
1569 bio_sectors = bmd->bi_size >> SECTOR_SHIFT;
1570
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001571 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
Alex Elder593a9e72012-02-07 12:03:37 -06001572 + bio_sectors)) << SECTOR_SHIFT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001573 if (max < 0)
1574 max = 0; /* bio_add cannot handle a negative return */
1575 if (max <= bvec->bv_len && bio_sectors == 0)
1576 return bvec->bv_len;
1577 return max;
1578}
1579
1580static void rbd_free_disk(struct rbd_device *rbd_dev)
1581{
1582 struct gendisk *disk = rbd_dev->disk;
1583
1584 if (!disk)
1585 return;
1586
1587 rbd_header_free(&rbd_dev->header);
1588
1589 if (disk->flags & GENHD_FL_UP)
1590 del_gendisk(disk);
1591 if (disk->queue)
1592 blk_cleanup_queue(disk->queue);
1593 put_disk(disk);
1594}
1595
1596/*
1597 * reload the ondisk the header
1598 */
1599static int rbd_read_header(struct rbd_device *rbd_dev,
1600 struct rbd_image_header *header)
1601{
1602 ssize_t rc;
1603 struct rbd_image_header_ondisk *dh;
Xi Wang50f7c4c2012-04-20 15:49:44 -05001604 u32 snap_count = 0;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001605 u64 ver;
Alex Elder00f1f362012-02-07 12:03:36 -06001606 size_t len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001607
Alex Elder00f1f362012-02-07 12:03:36 -06001608 /*
1609 * First reads the fixed-size header to determine the number
1610 * of snapshots, then re-reads it, along with all snapshot
1611 * records as well as their stored names.
1612 */
1613 len = sizeof (*dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001614 while (1) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001615 dh = kmalloc(len, GFP_KERNEL);
1616 if (!dh)
1617 return -ENOMEM;
1618
1619 rc = rbd_req_sync_read(rbd_dev,
Alex Elder9a5d6902012-07-19 09:09:27 -05001620 CEPH_NOSNAP,
Alex Elder0bed54d2012-07-03 16:01:18 -05001621 rbd_dev->header_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001622 0, len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001623 (char *)dh, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001624 if (rc < 0)
1625 goto out_dh;
1626
Alex Eldered63f4f2012-07-19 09:09:27 -05001627 rc = rbd_header_from_disk(header, dh, snap_count);
Josh Durgin81e759f2011-11-15 14:49:53 -08001628 if (rc < 0) {
Alex Elder00f1f362012-02-07 12:03:36 -06001629 if (rc == -ENXIO)
Josh Durgin81e759f2011-11-15 14:49:53 -08001630 pr_warning("unrecognized header format"
Alex Elder0bed54d2012-07-03 16:01:18 -05001631 " for image %s\n",
1632 rbd_dev->image_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001633 goto out_dh;
Josh Durgin81e759f2011-11-15 14:49:53 -08001634 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001635
Alex Elder00f1f362012-02-07 12:03:36 -06001636 if (snap_count == header->total_snaps)
1637 break;
1638
1639 snap_count = header->total_snaps;
1640 len = sizeof (*dh) +
1641 snap_count * sizeof(struct rbd_image_snap_ondisk) +
1642 header->snap_names_len;
1643
1644 rbd_header_free(header);
1645 kfree(dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001646 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001647 header->obj_version = ver;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001648
1649out_dh:
1650 kfree(dh);
1651 return rc;
1652}
1653
1654/*
1655 * create a snapshot
1656 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001657static int rbd_header_add_snap(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001658 const char *snap_name,
1659 gfp_t gfp_flags)
1660{
1661 int name_len = strlen(snap_name);
1662 u64 new_snapid;
1663 int ret;
Sage Weil916d4d62011-05-12 16:10:50 -07001664 void *data, *p, *e;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001665 u64 ver;
Alex Elder1dbb4392012-01-24 10:08:37 -06001666 struct ceph_mon_client *monc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001667
1668 /* we should create a snapshot only if we're pointing at the head */
Alex Elder0ce1a792012-07-03 16:01:18 -05001669 if (rbd_dev->snap_id != CEPH_NOSNAP)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001670 return -EINVAL;
1671
Alex Elder0ce1a792012-07-03 16:01:18 -05001672 monc = &rbd_dev->rbd_client->client->monc;
1673 ret = ceph_monc_create_snapid(monc, rbd_dev->pool_id, &new_snapid);
Alex Elderbd919d42012-07-13 20:35:11 -05001674 dout("created snapid=%llu\n", (unsigned long long) new_snapid);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001675 if (ret < 0)
1676 return ret;
1677
1678 data = kmalloc(name_len + 16, gfp_flags);
1679 if (!data)
1680 return -ENOMEM;
1681
Sage Weil916d4d62011-05-12 16:10:50 -07001682 p = data;
1683 e = data + name_len + 16;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001684
Sage Weil916d4d62011-05-12 16:10:50 -07001685 ceph_encode_string_safe(&p, e, snap_name, name_len, bad);
1686 ceph_encode_64_safe(&p, e, new_snapid, bad);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001687
Alex Elder0bed54d2012-07-03 16:01:18 -05001688 ret = rbd_req_sync_exec(rbd_dev, rbd_dev->header_name,
Alex Elder0ce1a792012-07-03 16:01:18 -05001689 "rbd", "snap_add",
Sage Weil916d4d62011-05-12 16:10:50 -07001690 data, p - data, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001691
Sage Weil916d4d62011-05-12 16:10:50 -07001692 kfree(data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001693
Alex Elder505cbb92012-07-19 08:49:18 -05001694 return ret < 0 ? ret : 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001695bad:
1696 return -ERANGE;
1697}
1698
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001699static void __rbd_remove_all_snaps(struct rbd_device *rbd_dev)
1700{
1701 struct rbd_snap *snap;
Alex Eldera0593292012-07-19 09:09:27 -05001702 struct rbd_snap *next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001703
Alex Eldera0593292012-07-19 09:09:27 -05001704 list_for_each_entry_safe(snap, next, &rbd_dev->snaps, node)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001705 __rbd_remove_snap_dev(rbd_dev, snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001706}
1707
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001708/*
1709 * only read the first part of the ondisk header, without the snaps info
1710 */
Josh Durgin263c6ca2011-12-05 10:43:42 -08001711static int __rbd_refresh_header(struct rbd_device *rbd_dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001712{
1713 int ret;
1714 struct rbd_image_header h;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001715
1716 ret = rbd_read_header(rbd_dev, &h);
1717 if (ret < 0)
1718 return ret;
1719
Josh Durgina51aa0c2011-12-05 10:35:04 -08001720 down_write(&rbd_dev->header_rwsem);
1721
Sage Weil9db4b3e2011-04-19 22:49:06 -07001722 /* resized? */
Josh Durgin474ef7c2011-11-21 17:13:54 -08001723 if (rbd_dev->snap_id == CEPH_NOSNAP) {
1724 sector_t size = (sector_t) h.image_size / SECTOR_SIZE;
1725
1726 dout("setting size to %llu sectors", (unsigned long long) size);
1727 set_capacity(rbd_dev->disk, size);
1728 }
Sage Weil9db4b3e2011-04-19 22:49:06 -07001729
Alex Elder849b4262012-07-09 21:04:24 -05001730 /* rbd_dev->header.object_prefix shouldn't change */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001731 kfree(rbd_dev->header.snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -05001732 kfree(rbd_dev->header.snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -08001733 /* osd requests may still refer to snapc */
1734 ceph_put_snap_context(rbd_dev->header.snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001735
Josh Durgina71b8912011-12-05 18:10:44 -08001736 rbd_dev->header.obj_version = h.obj_version;
Josh Durgin93a24e02011-12-05 10:41:28 -08001737 rbd_dev->header.image_size = h.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001738 rbd_dev->header.total_snaps = h.total_snaps;
1739 rbd_dev->header.snapc = h.snapc;
1740 rbd_dev->header.snap_names = h.snap_names;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001741 rbd_dev->header.snap_names_len = h.snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001742 rbd_dev->header.snap_sizes = h.snap_sizes;
Alex Elder849b4262012-07-09 21:04:24 -05001743 /* Free the extra copy of the object prefix */
1744 WARN_ON(strcmp(rbd_dev->header.object_prefix, h.object_prefix));
1745 kfree(h.object_prefix);
1746
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001747 ret = __rbd_init_snaps_header(rbd_dev);
1748
Josh Durginc6666012011-11-21 17:11:12 -08001749 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001750
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001751 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001752}
1753
1754static int rbd_init_disk(struct rbd_device *rbd_dev)
1755{
1756 struct gendisk *disk;
1757 struct request_queue *q;
1758 int rc;
Alex Elder593a9e72012-02-07 12:03:37 -06001759 u64 segment_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001760 u64 total_size = 0;
1761
1762 /* contact OSD, request size info about the object being mapped */
1763 rc = rbd_read_header(rbd_dev, &rbd_dev->header);
1764 if (rc)
1765 return rc;
1766
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001767 /* no need to lock here, as rbd_dev is not registered yet */
1768 rc = __rbd_init_snaps_header(rbd_dev);
1769 if (rc)
1770 return rc;
1771
Josh Durgincc9d7342011-11-21 18:19:13 -08001772 rc = rbd_header_set_snap(rbd_dev, &total_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001773 if (rc)
1774 return rc;
1775
1776 /* create gendisk info */
1777 rc = -ENOMEM;
1778 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
1779 if (!disk)
1780 goto out;
1781
Alex Elderf0f8cef2012-01-29 13:57:44 -06001782 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
Alex Elderde71a292012-07-03 16:01:19 -05001783 rbd_dev->dev_id);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001784 disk->major = rbd_dev->major;
1785 disk->first_minor = 0;
1786 disk->fops = &rbd_bd_ops;
1787 disk->private_data = rbd_dev;
1788
1789 /* init rq */
1790 rc = -ENOMEM;
1791 q = blk_init_queue(rbd_rq_fn, &rbd_dev->lock);
1792 if (!q)
1793 goto out_disk;
Josh Durgin029bcbd2011-07-22 11:35:23 -07001794
Alex Elder593a9e72012-02-07 12:03:37 -06001795 /* We use the default size, but let's be explicit about it. */
1796 blk_queue_physical_block_size(q, SECTOR_SIZE);
1797
Josh Durgin029bcbd2011-07-22 11:35:23 -07001798 /* set io sizes to object size */
Alex Elder593a9e72012-02-07 12:03:37 -06001799 segment_size = rbd_obj_bytes(&rbd_dev->header);
1800 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
1801 blk_queue_max_segment_size(q, segment_size);
1802 blk_queue_io_min(q, segment_size);
1803 blk_queue_io_opt(q, segment_size);
Josh Durgin029bcbd2011-07-22 11:35:23 -07001804
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001805 blk_queue_merge_bvec(q, rbd_merge_bvec);
1806 disk->queue = q;
1807
1808 q->queuedata = rbd_dev;
1809
1810 rbd_dev->disk = disk;
1811 rbd_dev->q = q;
1812
1813 /* finally, announce the disk to the world */
Alex Elder593a9e72012-02-07 12:03:37 -06001814 set_capacity(disk, total_size / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001815 add_disk(disk);
1816
1817 pr_info("%s: added with size 0x%llx\n",
1818 disk->disk_name, (unsigned long long)total_size);
1819 return 0;
1820
1821out_disk:
1822 put_disk(disk);
1823out:
1824 return rc;
1825}
1826
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001827/*
1828 sysfs
1829*/
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001830
Alex Elder593a9e72012-02-07 12:03:37 -06001831static struct rbd_device *dev_to_rbd_dev(struct device *dev)
1832{
1833 return container_of(dev, struct rbd_device, dev);
1834}
1835
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001836static ssize_t rbd_size_show(struct device *dev,
1837 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001838{
Alex Elder593a9e72012-02-07 12:03:37 -06001839 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Josh Durgina51aa0c2011-12-05 10:35:04 -08001840 sector_t size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001841
Josh Durgina51aa0c2011-12-05 10:35:04 -08001842 down_read(&rbd_dev->header_rwsem);
1843 size = get_capacity(rbd_dev->disk);
1844 up_read(&rbd_dev->header_rwsem);
1845
1846 return sprintf(buf, "%llu\n", (unsigned long long) size * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001847}
1848
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001849static ssize_t rbd_major_show(struct device *dev,
1850 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001851{
Alex Elder593a9e72012-02-07 12:03:37 -06001852 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001853
1854 return sprintf(buf, "%d\n", rbd_dev->major);
1855}
1856
1857static ssize_t rbd_client_id_show(struct device *dev,
1858 struct device_attribute *attr, char *buf)
1859{
Alex Elder593a9e72012-02-07 12:03:37 -06001860 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001861
Alex Elder1dbb4392012-01-24 10:08:37 -06001862 return sprintf(buf, "client%lld\n",
1863 ceph_client_id(rbd_dev->rbd_client->client));
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001864}
1865
1866static ssize_t rbd_pool_show(struct device *dev,
1867 struct device_attribute *attr, char *buf)
1868{
Alex Elder593a9e72012-02-07 12:03:37 -06001869 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001870
1871 return sprintf(buf, "%s\n", rbd_dev->pool_name);
1872}
1873
Alex Elder9bb2f332012-07-12 10:46:35 -05001874static ssize_t rbd_pool_id_show(struct device *dev,
1875 struct device_attribute *attr, char *buf)
1876{
1877 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
1878
1879 return sprintf(buf, "%d\n", rbd_dev->pool_id);
1880}
1881
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001882static ssize_t rbd_name_show(struct device *dev,
1883 struct device_attribute *attr, char *buf)
1884{
Alex Elder593a9e72012-02-07 12:03:37 -06001885 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001886
Alex Elder0bed54d2012-07-03 16:01:18 -05001887 return sprintf(buf, "%s\n", rbd_dev->image_name);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001888}
1889
1890static ssize_t rbd_snap_show(struct device *dev,
1891 struct device_attribute *attr,
1892 char *buf)
1893{
Alex Elder593a9e72012-02-07 12:03:37 -06001894 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001895
1896 return sprintf(buf, "%s\n", rbd_dev->snap_name);
1897}
1898
1899static ssize_t rbd_image_refresh(struct device *dev,
1900 struct device_attribute *attr,
1901 const char *buf,
1902 size_t size)
1903{
Alex Elder593a9e72012-02-07 12:03:37 -06001904 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001905 int rc;
1906 int ret = size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001907
1908 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
1909
Josh Durgin263c6ca2011-12-05 10:43:42 -08001910 rc = __rbd_refresh_header(rbd_dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001911 if (rc < 0)
1912 ret = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001913
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001914 mutex_unlock(&ctl_mutex);
1915 return ret;
1916}
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001917
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001918static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
1919static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
1920static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
1921static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
Alex Elder9bb2f332012-07-12 10:46:35 -05001922static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001923static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
1924static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
1925static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
1926static DEVICE_ATTR(create_snap, S_IWUSR, NULL, rbd_snap_add);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001927
1928static struct attribute *rbd_attrs[] = {
1929 &dev_attr_size.attr,
1930 &dev_attr_major.attr,
1931 &dev_attr_client_id.attr,
1932 &dev_attr_pool.attr,
Alex Elder9bb2f332012-07-12 10:46:35 -05001933 &dev_attr_pool_id.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001934 &dev_attr_name.attr,
1935 &dev_attr_current_snap.attr,
1936 &dev_attr_refresh.attr,
1937 &dev_attr_create_snap.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001938 NULL
1939};
1940
1941static struct attribute_group rbd_attr_group = {
1942 .attrs = rbd_attrs,
1943};
1944
1945static const struct attribute_group *rbd_attr_groups[] = {
1946 &rbd_attr_group,
1947 NULL
1948};
1949
1950static void rbd_sysfs_dev_release(struct device *dev)
1951{
1952}
1953
1954static struct device_type rbd_device_type = {
1955 .name = "rbd",
1956 .groups = rbd_attr_groups,
1957 .release = rbd_sysfs_dev_release,
1958};
1959
1960
1961/*
1962 sysfs - snapshots
1963*/
1964
1965static ssize_t rbd_snap_size_show(struct device *dev,
1966 struct device_attribute *attr,
1967 char *buf)
1968{
1969 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1970
Josh Durgin35915382011-12-05 18:25:13 -08001971 return sprintf(buf, "%llu\n", (unsigned long long)snap->size);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001972}
1973
1974static ssize_t rbd_snap_id_show(struct device *dev,
1975 struct device_attribute *attr,
1976 char *buf)
1977{
1978 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1979
Josh Durgin35915382011-12-05 18:25:13 -08001980 return sprintf(buf, "%llu\n", (unsigned long long)snap->id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001981}
1982
1983static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
1984static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
1985
1986static struct attribute *rbd_snap_attrs[] = {
1987 &dev_attr_snap_size.attr,
1988 &dev_attr_snap_id.attr,
1989 NULL,
1990};
1991
1992static struct attribute_group rbd_snap_attr_group = {
1993 .attrs = rbd_snap_attrs,
1994};
1995
1996static void rbd_snap_dev_release(struct device *dev)
1997{
1998 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1999 kfree(snap->name);
2000 kfree(snap);
2001}
2002
2003static const struct attribute_group *rbd_snap_attr_groups[] = {
2004 &rbd_snap_attr_group,
2005 NULL
2006};
2007
2008static struct device_type rbd_snap_device_type = {
2009 .groups = rbd_snap_attr_groups,
2010 .release = rbd_snap_dev_release,
2011};
2012
2013static void __rbd_remove_snap_dev(struct rbd_device *rbd_dev,
2014 struct rbd_snap *snap)
2015{
2016 list_del(&snap->node);
2017 device_unregister(&snap->dev);
2018}
2019
2020static int rbd_register_snap_dev(struct rbd_device *rbd_dev,
2021 struct rbd_snap *snap,
2022 struct device *parent)
2023{
2024 struct device *dev = &snap->dev;
2025 int ret;
2026
2027 dev->type = &rbd_snap_device_type;
2028 dev->parent = parent;
2029 dev->release = rbd_snap_dev_release;
2030 dev_set_name(dev, "snap_%s", snap->name);
2031 ret = device_register(dev);
2032
2033 return ret;
2034}
2035
2036static int __rbd_add_snap_dev(struct rbd_device *rbd_dev,
2037 int i, const char *name,
2038 struct rbd_snap **snapp)
2039{
2040 int ret;
2041 struct rbd_snap *snap = kzalloc(sizeof(*snap), GFP_KERNEL);
2042 if (!snap)
2043 return -ENOMEM;
2044 snap->name = kstrdup(name, GFP_KERNEL);
2045 snap->size = rbd_dev->header.snap_sizes[i];
2046 snap->id = rbd_dev->header.snapc->snaps[i];
2047 if (device_is_registered(&rbd_dev->dev)) {
2048 ret = rbd_register_snap_dev(rbd_dev, snap,
2049 &rbd_dev->dev);
2050 if (ret < 0)
2051 goto err;
2052 }
2053 *snapp = snap;
2054 return 0;
2055err:
2056 kfree(snap->name);
2057 kfree(snap);
2058 return ret;
2059}
2060
2061/*
2062 * search for the previous snap in a null delimited string list
2063 */
2064const char *rbd_prev_snap_name(const char *name, const char *start)
2065{
2066 if (name < start + 2)
2067 return NULL;
2068
2069 name -= 2;
2070 while (*name) {
2071 if (name == start)
2072 return start;
2073 name--;
2074 }
2075 return name + 1;
2076}
2077
2078/*
2079 * compare the old list of snapshots that we have to what's in the header
2080 * and update it accordingly. Note that the header holds the snapshots
2081 * in a reverse order (from newest to oldest) and we need to go from
2082 * older to new so that we don't get a duplicate snap name when
2083 * doing the process (e.g., removed snapshot and recreated a new
2084 * one with the same name.
2085 */
2086static int __rbd_init_snaps_header(struct rbd_device *rbd_dev)
2087{
2088 const char *name, *first_name;
2089 int i = rbd_dev->header.total_snaps;
2090 struct rbd_snap *snap, *old_snap = NULL;
2091 int ret;
2092 struct list_head *p, *n;
2093
2094 first_name = rbd_dev->header.snap_names;
2095 name = first_name + rbd_dev->header.snap_names_len;
2096
2097 list_for_each_prev_safe(p, n, &rbd_dev->snaps) {
2098 u64 cur_id;
2099
2100 old_snap = list_entry(p, struct rbd_snap, node);
2101
2102 if (i)
2103 cur_id = rbd_dev->header.snapc->snaps[i - 1];
2104
2105 if (!i || old_snap->id < cur_id) {
Josh Durgine88a36e2011-11-21 18:14:25 -08002106 /*
2107 * old_snap->id was skipped, thus was
2108 * removed. If this rbd_dev is mapped to
2109 * the removed snapshot, record that it no
2110 * longer exists, to prevent further I/O.
2111 */
2112 if (rbd_dev->snap_id == old_snap->id)
2113 rbd_dev->snap_exists = false;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002114 __rbd_remove_snap_dev(rbd_dev, old_snap);
2115 continue;
2116 }
2117 if (old_snap->id == cur_id) {
2118 /* we have this snapshot already */
2119 i--;
2120 name = rbd_prev_snap_name(name, first_name);
2121 continue;
2122 }
2123 for (; i > 0;
2124 i--, name = rbd_prev_snap_name(name, first_name)) {
2125 if (!name) {
2126 WARN_ON(1);
2127 return -EINVAL;
2128 }
2129 cur_id = rbd_dev->header.snapc->snaps[i];
2130 /* snapshot removal? handle it above */
2131 if (cur_id >= old_snap->id)
2132 break;
2133 /* a new snapshot */
2134 ret = __rbd_add_snap_dev(rbd_dev, i - 1, name, &snap);
2135 if (ret < 0)
2136 return ret;
2137
2138 /* note that we add it backward so using n and not p */
2139 list_add(&snap->node, n);
2140 p = &snap->node;
2141 }
2142 }
2143 /* we're done going over the old snap list, just add what's left */
2144 for (; i > 0; i--) {
2145 name = rbd_prev_snap_name(name, first_name);
2146 if (!name) {
2147 WARN_ON(1);
2148 return -EINVAL;
2149 }
2150 ret = __rbd_add_snap_dev(rbd_dev, i - 1, name, &snap);
2151 if (ret < 0)
2152 return ret;
2153 list_add(&snap->node, &rbd_dev->snaps);
2154 }
2155
2156 return 0;
2157}
2158
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002159static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
2160{
Alex Elderf0f8cef2012-01-29 13:57:44 -06002161 int ret;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002162 struct device *dev;
2163 struct rbd_snap *snap;
2164
2165 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2166 dev = &rbd_dev->dev;
2167
2168 dev->bus = &rbd_bus_type;
2169 dev->type = &rbd_device_type;
2170 dev->parent = &rbd_root_dev;
2171 dev->release = rbd_dev_release;
Alex Elderde71a292012-07-03 16:01:19 -05002172 dev_set_name(dev, "%d", rbd_dev->dev_id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002173 ret = device_register(dev);
2174 if (ret < 0)
Alex Elderf0f8cef2012-01-29 13:57:44 -06002175 goto out;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002176
2177 list_for_each_entry(snap, &rbd_dev->snaps, node) {
2178 ret = rbd_register_snap_dev(rbd_dev, snap,
2179 &rbd_dev->dev);
2180 if (ret < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002181 break;
2182 }
Alex Elderf0f8cef2012-01-29 13:57:44 -06002183out:
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002184 mutex_unlock(&ctl_mutex);
2185 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002186}
2187
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002188static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
2189{
2190 device_unregister(&rbd_dev->dev);
2191}
2192
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002193static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
2194{
2195 int ret, rc;
2196
2197 do {
Alex Elder0bed54d2012-07-03 16:01:18 -05002198 ret = rbd_req_sync_watch(rbd_dev, rbd_dev->header_name,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002199 rbd_dev->header.obj_version);
2200 if (ret == -ERANGE) {
2201 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Josh Durgin263c6ca2011-12-05 10:43:42 -08002202 rc = __rbd_refresh_header(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002203 mutex_unlock(&ctl_mutex);
2204 if (rc < 0)
2205 return rc;
2206 }
2207 } while (ret == -ERANGE);
2208
2209 return ret;
2210}
2211
Alex Elder1ddbe942012-01-29 13:57:44 -06002212static atomic64_t rbd_id_max = ATOMIC64_INIT(0);
2213
2214/*
Alex Elder499afd52012-02-02 08:13:29 -06002215 * Get a unique rbd identifier for the given new rbd_dev, and add
2216 * the rbd_dev to the global list. The minimum rbd id is 1.
Alex Elder1ddbe942012-01-29 13:57:44 -06002217 */
Alex Elder499afd52012-02-02 08:13:29 -06002218static void rbd_id_get(struct rbd_device *rbd_dev)
Alex Elderb7f23c32012-01-29 13:57:43 -06002219{
Alex Elderde71a292012-07-03 16:01:19 -05002220 rbd_dev->dev_id = atomic64_inc_return(&rbd_id_max);
Alex Elder499afd52012-02-02 08:13:29 -06002221
2222 spin_lock(&rbd_dev_list_lock);
2223 list_add_tail(&rbd_dev->node, &rbd_dev_list);
2224 spin_unlock(&rbd_dev_list_lock);
Alex Elder1ddbe942012-01-29 13:57:44 -06002225}
Alex Elderb7f23c32012-01-29 13:57:43 -06002226
Alex Elder1ddbe942012-01-29 13:57:44 -06002227/*
Alex Elder499afd52012-02-02 08:13:29 -06002228 * Remove an rbd_dev from the global list, and record that its
2229 * identifier is no longer in use.
Alex Elder1ddbe942012-01-29 13:57:44 -06002230 */
Alex Elder499afd52012-02-02 08:13:29 -06002231static void rbd_id_put(struct rbd_device *rbd_dev)
Alex Elder1ddbe942012-01-29 13:57:44 -06002232{
Alex Elderd184f6b2012-01-29 13:57:44 -06002233 struct list_head *tmp;
Alex Elderde71a292012-07-03 16:01:19 -05002234 int rbd_id = rbd_dev->dev_id;
Alex Elderd184f6b2012-01-29 13:57:44 -06002235 int max_id;
2236
2237 BUG_ON(rbd_id < 1);
Alex Elder499afd52012-02-02 08:13:29 -06002238
2239 spin_lock(&rbd_dev_list_lock);
2240 list_del_init(&rbd_dev->node);
Alex Elderd184f6b2012-01-29 13:57:44 -06002241
2242 /*
2243 * If the id being "put" is not the current maximum, there
2244 * is nothing special we need to do.
2245 */
2246 if (rbd_id != atomic64_read(&rbd_id_max)) {
2247 spin_unlock(&rbd_dev_list_lock);
2248 return;
2249 }
2250
2251 /*
2252 * We need to update the current maximum id. Search the
2253 * list to find out what it is. We're more likely to find
2254 * the maximum at the end, so search the list backward.
2255 */
2256 max_id = 0;
2257 list_for_each_prev(tmp, &rbd_dev_list) {
2258 struct rbd_device *rbd_dev;
2259
2260 rbd_dev = list_entry(tmp, struct rbd_device, node);
2261 if (rbd_id > max_id)
2262 max_id = rbd_id;
2263 }
Alex Elder499afd52012-02-02 08:13:29 -06002264 spin_unlock(&rbd_dev_list_lock);
Alex Elderb7f23c32012-01-29 13:57:43 -06002265
Alex Elder1ddbe942012-01-29 13:57:44 -06002266 /*
Alex Elderd184f6b2012-01-29 13:57:44 -06002267 * The max id could have been updated by rbd_id_get(), in
2268 * which case it now accurately reflects the new maximum.
2269 * Be careful not to overwrite the maximum value in that
2270 * case.
Alex Elder1ddbe942012-01-29 13:57:44 -06002271 */
Alex Elderd184f6b2012-01-29 13:57:44 -06002272 atomic64_cmpxchg(&rbd_id_max, rbd_id, max_id);
Alex Elderb7f23c32012-01-29 13:57:43 -06002273}
2274
Alex Eldera725f65e2012-02-02 08:13:30 -06002275/*
Alex Eldere28fff262012-02-02 08:13:30 -06002276 * Skips over white space at *buf, and updates *buf to point to the
2277 * first found non-space character (if any). Returns the length of
Alex Elder593a9e72012-02-07 12:03:37 -06002278 * the token (string of non-white space characters) found. Note
2279 * that *buf must be terminated with '\0'.
Alex Eldere28fff262012-02-02 08:13:30 -06002280 */
2281static inline size_t next_token(const char **buf)
2282{
2283 /*
2284 * These are the characters that produce nonzero for
2285 * isspace() in the "C" and "POSIX" locales.
2286 */
2287 const char *spaces = " \f\n\r\t\v";
2288
2289 *buf += strspn(*buf, spaces); /* Find start of token */
2290
2291 return strcspn(*buf, spaces); /* Return token length */
2292}
2293
2294/*
2295 * Finds the next token in *buf, and if the provided token buffer is
2296 * big enough, copies the found token into it. The result, if
Alex Elder593a9e72012-02-07 12:03:37 -06002297 * copied, is guaranteed to be terminated with '\0'. Note that *buf
2298 * must be terminated with '\0' on entry.
Alex Eldere28fff262012-02-02 08:13:30 -06002299 *
2300 * Returns the length of the token found (not including the '\0').
2301 * Return value will be 0 if no token is found, and it will be >=
2302 * token_size if the token would not fit.
2303 *
Alex Elder593a9e72012-02-07 12:03:37 -06002304 * The *buf pointer will be updated to point beyond the end of the
Alex Eldere28fff262012-02-02 08:13:30 -06002305 * found token. Note that this occurs even if the token buffer is
2306 * too small to hold it.
2307 */
2308static inline size_t copy_token(const char **buf,
2309 char *token,
2310 size_t token_size)
2311{
2312 size_t len;
2313
2314 len = next_token(buf);
2315 if (len < token_size) {
2316 memcpy(token, *buf, len);
2317 *(token + len) = '\0';
2318 }
2319 *buf += len;
2320
2321 return len;
2322}
2323
2324/*
Alex Elderea3352f2012-07-09 21:04:23 -05002325 * Finds the next token in *buf, dynamically allocates a buffer big
2326 * enough to hold a copy of it, and copies the token into the new
2327 * buffer. The copy is guaranteed to be terminated with '\0'. Note
2328 * that a duplicate buffer is created even for a zero-length token.
2329 *
2330 * Returns a pointer to the newly-allocated duplicate, or a null
2331 * pointer if memory for the duplicate was not available. If
2332 * the lenp argument is a non-null pointer, the length of the token
2333 * (not including the '\0') is returned in *lenp.
2334 *
2335 * If successful, the *buf pointer will be updated to point beyond
2336 * the end of the found token.
2337 *
2338 * Note: uses GFP_KERNEL for allocation.
2339 */
2340static inline char *dup_token(const char **buf, size_t *lenp)
2341{
2342 char *dup;
2343 size_t len;
2344
2345 len = next_token(buf);
2346 dup = kmalloc(len + 1, GFP_KERNEL);
2347 if (!dup)
2348 return NULL;
2349
2350 memcpy(dup, *buf, len);
2351 *(dup + len) = '\0';
2352 *buf += len;
2353
2354 if (lenp)
2355 *lenp = len;
2356
2357 return dup;
2358}
2359
2360/*
Alex Elder0bed54d2012-07-03 16:01:18 -05002361 * This fills in the pool_name, image_name, image_name_len, snap_name,
Alex Eldera725f65e2012-02-02 08:13:30 -06002362 * rbd_dev, rbd_md_name, and name fields of the given rbd_dev, based
2363 * on the list of monitor addresses and other options provided via
2364 * /sys/bus/rbd/add.
Alex Elderd22f76e2012-07-12 10:46:35 -05002365 *
2366 * Note: rbd_dev is assumed to have been initially zero-filled.
Alex Eldera725f65e2012-02-02 08:13:30 -06002367 */
2368static int rbd_add_parse_args(struct rbd_device *rbd_dev,
2369 const char *buf,
Alex Elder7ef32142012-02-02 08:13:30 -06002370 const char **mon_addrs,
Alex Elder5214ecc2012-02-02 08:13:30 -06002371 size_t *mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002372 char *options,
Alex Elder0bed54d2012-07-03 16:01:18 -05002373 size_t options_size)
Alex Eldera725f65e2012-02-02 08:13:30 -06002374{
Alex Elderd22f76e2012-07-12 10:46:35 -05002375 size_t len;
2376 int ret;
Alex Eldere28fff262012-02-02 08:13:30 -06002377
2378 /* The first four tokens are required */
2379
Alex Elder7ef32142012-02-02 08:13:30 -06002380 len = next_token(&buf);
2381 if (!len)
Alex Eldera725f65e2012-02-02 08:13:30 -06002382 return -EINVAL;
Alex Elder5214ecc2012-02-02 08:13:30 -06002383 *mon_addrs_size = len + 1;
Alex Elder7ef32142012-02-02 08:13:30 -06002384 *mon_addrs = buf;
2385
2386 buf += len;
Alex Eldera725f65e2012-02-02 08:13:30 -06002387
Alex Eldere28fff262012-02-02 08:13:30 -06002388 len = copy_token(&buf, options, options_size);
2389 if (!len || len >= options_size)
2390 return -EINVAL;
Alex Eldera725f65e2012-02-02 08:13:30 -06002391
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002392 ret = -ENOMEM;
Alex Elderd22f76e2012-07-12 10:46:35 -05002393 rbd_dev->pool_name = dup_token(&buf, NULL);
2394 if (!rbd_dev->pool_name)
Alex Elderd22f76e2012-07-12 10:46:35 -05002395 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002396
Alex Elder0bed54d2012-07-03 16:01:18 -05002397 rbd_dev->image_name = dup_token(&buf, &rbd_dev->image_name_len);
2398 if (!rbd_dev->image_name)
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002399 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002400
Alex Eldercb8627c2012-07-09 21:04:23 -05002401 /* Create the name of the header object */
2402
Alex Elder0bed54d2012-07-03 16:01:18 -05002403 rbd_dev->header_name = kmalloc(rbd_dev->image_name_len
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002404 + sizeof (RBD_SUFFIX),
2405 GFP_KERNEL);
Alex Elder0bed54d2012-07-03 16:01:18 -05002406 if (!rbd_dev->header_name)
Alex Eldercb8627c2012-07-09 21:04:23 -05002407 goto out_err;
Alex Elder0bed54d2012-07-03 16:01:18 -05002408 sprintf(rbd_dev->header_name, "%s%s", rbd_dev->image_name, RBD_SUFFIX);
Alex Eldera725f65e2012-02-02 08:13:30 -06002409
Alex Eldere28fff262012-02-02 08:13:30 -06002410 /*
Alex Elder820a5f32012-07-09 21:04:24 -05002411 * The snapshot name is optional. If none is is supplied,
2412 * we use the default value.
Alex Eldere28fff262012-02-02 08:13:30 -06002413 */
Alex Elder820a5f32012-07-09 21:04:24 -05002414 rbd_dev->snap_name = dup_token(&buf, &len);
2415 if (!rbd_dev->snap_name)
2416 goto out_err;
2417 if (!len) {
2418 /* Replace the empty name with the default */
2419 kfree(rbd_dev->snap_name);
2420 rbd_dev->snap_name
2421 = kmalloc(sizeof (RBD_SNAP_HEAD_NAME), GFP_KERNEL);
2422 if (!rbd_dev->snap_name)
2423 goto out_err;
2424
Alex Eldere28fff262012-02-02 08:13:30 -06002425 memcpy(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
2426 sizeof (RBD_SNAP_HEAD_NAME));
Alex Elder849b4262012-07-09 21:04:24 -05002427 }
Alex Eldere28fff262012-02-02 08:13:30 -06002428
Alex Eldera725f65e2012-02-02 08:13:30 -06002429 return 0;
Alex Elderd22f76e2012-07-12 10:46:35 -05002430
2431out_err:
Alex Elder0bed54d2012-07-03 16:01:18 -05002432 kfree(rbd_dev->header_name);
2433 kfree(rbd_dev->image_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002434 kfree(rbd_dev->pool_name);
2435 rbd_dev->pool_name = NULL;
2436
2437 return ret;
Alex Eldera725f65e2012-02-02 08:13:30 -06002438}
2439
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002440static ssize_t rbd_add(struct bus_type *bus,
2441 const char *buf,
2442 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002443{
Alex Eldercb8627c2012-07-09 21:04:23 -05002444 char *options;
2445 struct rbd_device *rbd_dev = NULL;
Alex Elder7ef32142012-02-02 08:13:30 -06002446 const char *mon_addrs = NULL;
2447 size_t mon_addrs_size = 0;
Alex Elder27cc2592012-02-02 08:13:30 -06002448 struct ceph_osd_client *osdc;
2449 int rc = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002450
2451 if (!try_module_get(THIS_MODULE))
2452 return -ENODEV;
2453
Alex Elder27cc2592012-02-02 08:13:30 -06002454 options = kmalloc(count, GFP_KERNEL);
2455 if (!options)
2456 goto err_nomem;
Alex Eldercb8627c2012-07-09 21:04:23 -05002457 rbd_dev = kzalloc(sizeof(*rbd_dev), GFP_KERNEL);
2458 if (!rbd_dev)
2459 goto err_nomem;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002460
2461 /* static rbd_device initialization */
2462 spin_lock_init(&rbd_dev->lock);
2463 INIT_LIST_HEAD(&rbd_dev->node);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002464 INIT_LIST_HEAD(&rbd_dev->snaps);
Josh Durginc6666012011-11-21 17:11:12 -08002465 init_rwsem(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002466
Alex Elderd184f6b2012-01-29 13:57:44 -06002467 /* generate unique id: find highest unique id, add one */
Alex Elder499afd52012-02-02 08:13:29 -06002468 rbd_id_get(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002469
Alex Eldera725f65e2012-02-02 08:13:30 -06002470 /* Fill in the device name, now that we have its id. */
Alex Elder81a89792012-02-02 08:13:30 -06002471 BUILD_BUG_ON(DEV_NAME_LEN
2472 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
Alex Elderde71a292012-07-03 16:01:19 -05002473 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
Alex Eldere124a822012-01-29 13:57:44 -06002474
Alex Eldera725f65e2012-02-02 08:13:30 -06002475 /* parse add command */
Alex Elder7ef32142012-02-02 08:13:30 -06002476 rc = rbd_add_parse_args(rbd_dev, buf, &mon_addrs, &mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002477 options, count);
Alex Eldera725f65e2012-02-02 08:13:30 -06002478 if (rc)
2479 goto err_put_id;
2480
Alex Elder5214ecc2012-02-02 08:13:30 -06002481 rbd_dev->rbd_client = rbd_get_client(mon_addrs, mon_addrs_size - 1,
2482 options);
Alex Elderd720bcb2012-02-02 08:13:30 -06002483 if (IS_ERR(rbd_dev->rbd_client)) {
2484 rc = PTR_ERR(rbd_dev->rbd_client);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002485 goto err_put_id;
Alex Elderd720bcb2012-02-02 08:13:30 -06002486 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002487
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002488 /* pick the pool */
Alex Elder1dbb4392012-01-24 10:08:37 -06002489 osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002490 rc = ceph_pg_poolid_by_name(osdc->osdmap, rbd_dev->pool_name);
2491 if (rc < 0)
2492 goto err_out_client;
Alex Elder9bb2f332012-07-12 10:46:35 -05002493 rbd_dev->pool_id = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002494
2495 /* register our block device */
Alex Elder27cc2592012-02-02 08:13:30 -06002496 rc = register_blkdev(0, rbd_dev->name);
2497 if (rc < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002498 goto err_out_client;
Alex Elder27cc2592012-02-02 08:13:30 -06002499 rbd_dev->major = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002500
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002501 rc = rbd_bus_add_dev(rbd_dev);
2502 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002503 goto err_out_blkdev;
2504
Alex Elder32eec682012-02-08 16:11:14 -06002505 /*
2506 * At this point cleanup in the event of an error is the job
2507 * of the sysfs code (initiated by rbd_bus_del_dev()).
2508 *
2509 * Set up and announce blkdev mapping.
2510 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002511 rc = rbd_init_disk(rbd_dev);
2512 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002513 goto err_out_bus;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002514
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002515 rc = rbd_init_watch_dev(rbd_dev);
2516 if (rc)
2517 goto err_out_bus;
2518
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002519 return count;
2520
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002521err_out_bus:
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002522 /* this will also clean up rest of rbd_dev stuff */
2523
2524 rbd_bus_del_dev(rbd_dev);
2525 kfree(options);
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002526 return rc;
2527
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002528err_out_blkdev:
2529 unregister_blkdev(rbd_dev->major, rbd_dev->name);
2530err_out_client:
2531 rbd_put_client(rbd_dev);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002532err_put_id:
Alex Eldercb8627c2012-07-09 21:04:23 -05002533 if (rbd_dev->pool_name) {
Alex Elder820a5f32012-07-09 21:04:24 -05002534 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002535 kfree(rbd_dev->header_name);
2536 kfree(rbd_dev->image_name);
Alex Eldercb8627c2012-07-09 21:04:23 -05002537 kfree(rbd_dev->pool_name);
2538 }
Alex Elder499afd52012-02-02 08:13:29 -06002539 rbd_id_put(rbd_dev);
Alex Elder27cc2592012-02-02 08:13:30 -06002540err_nomem:
Alex Elder27cc2592012-02-02 08:13:30 -06002541 kfree(rbd_dev);
Alex Eldercb8627c2012-07-09 21:04:23 -05002542 kfree(options);
Alex Elder27cc2592012-02-02 08:13:30 -06002543
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002544 dout("Error adding device %s\n", buf);
2545 module_put(THIS_MODULE);
Alex Elder27cc2592012-02-02 08:13:30 -06002546
2547 return (ssize_t) rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002548}
2549
Alex Elderde71a292012-07-03 16:01:19 -05002550static struct rbd_device *__rbd_get_dev(unsigned long dev_id)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002551{
2552 struct list_head *tmp;
2553 struct rbd_device *rbd_dev;
2554
Alex Eldere124a822012-01-29 13:57:44 -06002555 spin_lock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002556 list_for_each(tmp, &rbd_dev_list) {
2557 rbd_dev = list_entry(tmp, struct rbd_device, node);
Alex Elderde71a292012-07-03 16:01:19 -05002558 if (rbd_dev->dev_id == dev_id) {
Alex Eldere124a822012-01-29 13:57:44 -06002559 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002560 return rbd_dev;
Alex Eldere124a822012-01-29 13:57:44 -06002561 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002562 }
Alex Eldere124a822012-01-29 13:57:44 -06002563 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002564 return NULL;
2565}
2566
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002567static void rbd_dev_release(struct device *dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002568{
Alex Elder593a9e72012-02-07 12:03:37 -06002569 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002570
Alex Elder1dbb4392012-01-24 10:08:37 -06002571 if (rbd_dev->watch_request) {
2572 struct ceph_client *client = rbd_dev->rbd_client->client;
2573
2574 ceph_osdc_unregister_linger_request(&client->osdc,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002575 rbd_dev->watch_request);
Alex Elder1dbb4392012-01-24 10:08:37 -06002576 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002577 if (rbd_dev->watch_event)
Alex Elder0bed54d2012-07-03 16:01:18 -05002578 rbd_req_sync_unwatch(rbd_dev, rbd_dev->header_name);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002579
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002580 rbd_put_client(rbd_dev);
2581
2582 /* clean up and free blkdev */
2583 rbd_free_disk(rbd_dev);
2584 unregister_blkdev(rbd_dev->major, rbd_dev->name);
Alex Elder32eec682012-02-08 16:11:14 -06002585
2586 /* done with the id, and with the rbd_dev */
Alex Elder820a5f32012-07-09 21:04:24 -05002587 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002588 kfree(rbd_dev->header_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002589 kfree(rbd_dev->pool_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002590 kfree(rbd_dev->image_name);
Alex Elder32eec682012-02-08 16:11:14 -06002591 rbd_id_put(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002592 kfree(rbd_dev);
2593
2594 /* release module ref */
2595 module_put(THIS_MODULE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002596}
2597
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002598static ssize_t rbd_remove(struct bus_type *bus,
2599 const char *buf,
2600 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002601{
2602 struct rbd_device *rbd_dev = NULL;
2603 int target_id, rc;
2604 unsigned long ul;
2605 int ret = count;
2606
2607 rc = strict_strtoul(buf, 10, &ul);
2608 if (rc)
2609 return rc;
2610
2611 /* convert to int; abort if we lost anything in the conversion */
2612 target_id = (int) ul;
2613 if (target_id != ul)
2614 return -EINVAL;
2615
2616 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2617
2618 rbd_dev = __rbd_get_dev(target_id);
2619 if (!rbd_dev) {
2620 ret = -ENOENT;
2621 goto done;
2622 }
2623
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002624 __rbd_remove_all_snaps(rbd_dev);
2625 rbd_bus_del_dev(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002626
2627done:
2628 mutex_unlock(&ctl_mutex);
2629 return ret;
2630}
2631
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002632static ssize_t rbd_snap_add(struct device *dev,
2633 struct device_attribute *attr,
2634 const char *buf,
2635 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002636{
Alex Elder593a9e72012-02-07 12:03:37 -06002637 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002638 int ret;
2639 char *name = kmalloc(count + 1, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002640 if (!name)
2641 return -ENOMEM;
2642
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002643 snprintf(name, count, "%s", buf);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002644
2645 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2646
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002647 ret = rbd_header_add_snap(rbd_dev,
2648 name, GFP_KERNEL);
2649 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002650 goto err_unlock;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002651
Josh Durgin263c6ca2011-12-05 10:43:42 -08002652 ret = __rbd_refresh_header(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002653 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002654 goto err_unlock;
2655
2656 /* shouldn't hold ctl_mutex when notifying.. notify might
2657 trigger a watch callback that would need to get that mutex */
2658 mutex_unlock(&ctl_mutex);
2659
2660 /* make a best effort, don't error if failed */
Alex Elder0bed54d2012-07-03 16:01:18 -05002661 rbd_req_sync_notify(rbd_dev, rbd_dev->header_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002662
2663 ret = count;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002664 kfree(name);
2665 return ret;
2666
2667err_unlock:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002668 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002669 kfree(name);
2670 return ret;
2671}
2672
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002673/*
2674 * create control files in sysfs
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002675 * /sys/bus/rbd/...
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002676 */
2677static int rbd_sysfs_init(void)
2678{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002679 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002680
Alex Elderfed4c142012-02-07 12:03:36 -06002681 ret = device_register(&rbd_root_dev);
Alex Elder21079782012-01-24 10:08:36 -06002682 if (ret < 0)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002683 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002684
Alex Elderfed4c142012-02-07 12:03:36 -06002685 ret = bus_register(&rbd_bus_type);
2686 if (ret < 0)
2687 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002688
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002689 return ret;
2690}
2691
2692static void rbd_sysfs_cleanup(void)
2693{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002694 bus_unregister(&rbd_bus_type);
Alex Elderfed4c142012-02-07 12:03:36 -06002695 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002696}
2697
2698int __init rbd_init(void)
2699{
2700 int rc;
2701
2702 rc = rbd_sysfs_init();
2703 if (rc)
2704 return rc;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002705 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002706 return 0;
2707}
2708
2709void __exit rbd_exit(void)
2710{
2711 rbd_sysfs_cleanup();
2712}
2713
2714module_init(rbd_init);
2715module_exit(rbd_exit);
2716
2717MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
2718MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
2719MODULE_DESCRIPTION("rados block device");
2720
2721/* following authorship retained from original osdblk.c */
2722MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
2723
2724MODULE_LICENSE("GPL");