blob: 1222d583ac2cbbe511bdc14415891e2fa78c9d7e [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);
Alex Elder14e70852012-07-19 09:09:27 -0500205static void __rbd_remove_snap_dev(struct rbd_snap *snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800206
Alex Elderf0f8cef2012-01-29 13:57:44 -0600207static ssize_t rbd_add(struct bus_type *bus, const char *buf,
208 size_t count);
209static ssize_t rbd_remove(struct bus_type *bus, const char *buf,
210 size_t count);
211
212static struct bus_attribute rbd_bus_attrs[] = {
213 __ATTR(add, S_IWUSR, NULL, rbd_add),
214 __ATTR(remove, S_IWUSR, NULL, rbd_remove),
215 __ATTR_NULL
216};
217
218static struct bus_type rbd_bus_type = {
219 .name = "rbd",
220 .bus_attrs = rbd_bus_attrs,
221};
222
223static void rbd_root_dev_release(struct device *dev)
224{
225}
226
227static struct device rbd_root_dev = {
228 .init_name = "rbd",
229 .release = rbd_root_dev_release,
230};
231
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800232
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800233static struct device *rbd_get_dev(struct rbd_device *rbd_dev)
234{
235 return get_device(&rbd_dev->dev);
236}
237
238static void rbd_put_dev(struct rbd_device *rbd_dev)
239{
240 put_device(&rbd_dev->dev);
241}
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700242
Josh Durgin263c6ca2011-12-05 10:43:42 -0800243static int __rbd_refresh_header(struct rbd_device *rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700244
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700245static int rbd_open(struct block_device *bdev, fmode_t mode)
246{
Alex Elderf0f8cef2012-01-29 13:57:44 -0600247 struct rbd_device *rbd_dev = bdev->bd_disk->private_data;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700248
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800249 rbd_get_dev(rbd_dev);
250
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700251 set_device_ro(bdev, rbd_dev->read_only);
252
253 if ((mode & FMODE_WRITE) && rbd_dev->read_only)
254 return -EROFS;
255
256 return 0;
257}
258
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800259static int rbd_release(struct gendisk *disk, fmode_t mode)
260{
261 struct rbd_device *rbd_dev = disk->private_data;
262
263 rbd_put_dev(rbd_dev);
264
265 return 0;
266}
267
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700268static const struct block_device_operations rbd_bd_ops = {
269 .owner = THIS_MODULE,
270 .open = rbd_open,
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800271 .release = rbd_release,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700272};
273
274/*
275 * Initialize an rbd client instance.
Alex Elder43ae4702012-07-03 16:01:18 -0500276 * We own *ceph_opts.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700277 */
Alex Elder43ae4702012-07-03 16:01:18 -0500278static struct rbd_client *rbd_client_create(struct ceph_options *ceph_opts,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700279 struct rbd_options *rbd_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700280{
281 struct rbd_client *rbdc;
282 int ret = -ENOMEM;
283
284 dout("rbd_client_create\n");
285 rbdc = kmalloc(sizeof(struct rbd_client), GFP_KERNEL);
286 if (!rbdc)
287 goto out_opt;
288
289 kref_init(&rbdc->kref);
290 INIT_LIST_HEAD(&rbdc->node);
291
Alex Elderbc534d82012-01-29 13:57:44 -0600292 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
293
Alex Elder43ae4702012-07-03 16:01:18 -0500294 rbdc->client = ceph_create_client(ceph_opts, rbdc, 0, 0);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700295 if (IS_ERR(rbdc->client))
Alex Elderbc534d82012-01-29 13:57:44 -0600296 goto out_mutex;
Alex Elder43ae4702012-07-03 16:01:18 -0500297 ceph_opts = NULL; /* Now rbdc->client is responsible for ceph_opts */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700298
299 ret = ceph_open_session(rbdc->client);
300 if (ret < 0)
301 goto out_err;
302
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700303 rbdc->rbd_opts = rbd_opts;
304
Alex Elder432b8582012-01-29 13:57:44 -0600305 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700306 list_add_tail(&rbdc->node, &rbd_client_list);
Alex Elder432b8582012-01-29 13:57:44 -0600307 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700308
Alex Elderbc534d82012-01-29 13:57:44 -0600309 mutex_unlock(&ctl_mutex);
310
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700311 dout("rbd_client_create created %p\n", rbdc);
312 return rbdc;
313
314out_err:
315 ceph_destroy_client(rbdc->client);
Alex Elderbc534d82012-01-29 13:57:44 -0600316out_mutex:
317 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700318 kfree(rbdc);
319out_opt:
Alex Elder43ae4702012-07-03 16:01:18 -0500320 if (ceph_opts)
321 ceph_destroy_options(ceph_opts);
Vasiliy Kulikov28f259b2010-09-26 12:59:37 +0400322 return ERR_PTR(ret);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700323}
324
325/*
326 * Find a ceph client with specific addr and configuration.
327 */
Alex Elder43ae4702012-07-03 16:01:18 -0500328static struct rbd_client *__rbd_client_find(struct ceph_options *ceph_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700329{
330 struct rbd_client *client_node;
331
Alex Elder43ae4702012-07-03 16:01:18 -0500332 if (ceph_opts->flags & CEPH_OPT_NOSHARE)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700333 return NULL;
334
335 list_for_each_entry(client_node, &rbd_client_list, node)
Alex Elder43ae4702012-07-03 16:01:18 -0500336 if (!ceph_compare_options(ceph_opts, client_node->client))
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700337 return client_node;
338 return NULL;
339}
340
341/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700342 * mount options
343 */
344enum {
345 Opt_notify_timeout,
346 Opt_last_int,
347 /* int args above */
348 Opt_last_string,
349 /* string args above */
350};
351
Alex Elder43ae4702012-07-03 16:01:18 -0500352static match_table_t rbd_opts_tokens = {
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700353 {Opt_notify_timeout, "notify_timeout=%d"},
354 /* int args above */
355 /* string args above */
356 {-1, NULL}
357};
358
359static int parse_rbd_opts_token(char *c, void *private)
360{
Alex Elder43ae4702012-07-03 16:01:18 -0500361 struct rbd_options *rbd_opts = private;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700362 substring_t argstr[MAX_OPT_ARGS];
363 int token, intval, ret;
364
Alex Elder43ae4702012-07-03 16:01:18 -0500365 token = match_token(c, rbd_opts_tokens, argstr);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700366 if (token < 0)
367 return -EINVAL;
368
369 if (token < Opt_last_int) {
370 ret = match_int(&argstr[0], &intval);
371 if (ret < 0) {
372 pr_err("bad mount option arg (not int) "
373 "at '%s'\n", c);
374 return ret;
375 }
376 dout("got int token %d val %d\n", token, intval);
377 } else if (token > Opt_last_int && token < Opt_last_string) {
378 dout("got string token %d val %s\n", token,
379 argstr[0].from);
380 } else {
381 dout("got token %d\n", token);
382 }
383
384 switch (token) {
385 case Opt_notify_timeout:
Alex Elder43ae4702012-07-03 16:01:18 -0500386 rbd_opts->notify_timeout = intval;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700387 break;
388 default:
389 BUG_ON(token);
390 }
391 return 0;
392}
393
394/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700395 * Get a ceph client with specific addr and configuration, if one does
396 * not exist create it.
397 */
Alex Elder5214ecc2012-02-02 08:13:30 -0600398static struct rbd_client *rbd_get_client(const char *mon_addr,
399 size_t mon_addr_len,
400 char *options)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700401{
402 struct rbd_client *rbdc;
Alex Elder43ae4702012-07-03 16:01:18 -0500403 struct ceph_options *ceph_opts;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700404 struct rbd_options *rbd_opts;
405
406 rbd_opts = kzalloc(sizeof(*rbd_opts), GFP_KERNEL);
407 if (!rbd_opts)
Alex Elderd720bcb2012-02-02 08:13:30 -0600408 return ERR_PTR(-ENOMEM);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700409
410 rbd_opts->notify_timeout = RBD_NOTIFY_TIMEOUT_DEFAULT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700411
Alex Elder43ae4702012-07-03 16:01:18 -0500412 ceph_opts = ceph_parse_options(options, mon_addr,
413 mon_addr + mon_addr_len,
414 parse_rbd_opts_token, rbd_opts);
415 if (IS_ERR(ceph_opts)) {
Alex Elderd720bcb2012-02-02 08:13:30 -0600416 kfree(rbd_opts);
Alex Elder43ae4702012-07-03 16:01:18 -0500417 return ERR_CAST(ceph_opts);
Alex Elderee577412012-01-24 10:08:36 -0600418 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700419
Alex Elder432b8582012-01-29 13:57:44 -0600420 spin_lock(&rbd_client_list_lock);
Alex Elder43ae4702012-07-03 16:01:18 -0500421 rbdc = __rbd_client_find(ceph_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700422 if (rbdc) {
Alex Eldere6994d32012-01-29 13:57:44 -0600423 /* using an existing client */
424 kref_get(&rbdc->kref);
Alex Elder432b8582012-01-29 13:57:44 -0600425 spin_unlock(&rbd_client_list_lock);
Alex Eldere6994d32012-01-29 13:57:44 -0600426
Alex Elder43ae4702012-07-03 16:01:18 -0500427 ceph_destroy_options(ceph_opts);
Alex Elder97bb59a2012-01-24 10:08:36 -0600428 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700429
Alex Elderd720bcb2012-02-02 08:13:30 -0600430 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700431 }
Alex Elder432b8582012-01-29 13:57:44 -0600432 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700433
Alex Elder43ae4702012-07-03 16:01:18 -0500434 rbdc = rbd_client_create(ceph_opts, rbd_opts);
Alex Elderd97081b2012-01-29 13:57:44 -0600435
Alex Elderd720bcb2012-02-02 08:13:30 -0600436 if (IS_ERR(rbdc))
437 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700438
Alex Elderd720bcb2012-02-02 08:13:30 -0600439 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700440}
441
442/*
443 * Destroy ceph client
Alex Elderd23a4b32012-01-29 13:57:43 -0600444 *
Alex Elder432b8582012-01-29 13:57:44 -0600445 * Caller must hold rbd_client_list_lock.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700446 */
447static void rbd_client_release(struct kref *kref)
448{
449 struct rbd_client *rbdc = container_of(kref, struct rbd_client, kref);
450
451 dout("rbd_release_client %p\n", rbdc);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500452 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700453 list_del(&rbdc->node);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500454 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700455
456 ceph_destroy_client(rbdc->client);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700457 kfree(rbdc->rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700458 kfree(rbdc);
459}
460
461/*
462 * Drop reference to ceph client node. If it's not referenced anymore, release
463 * it.
464 */
465static void rbd_put_client(struct rbd_device *rbd_dev)
466{
467 kref_put(&rbd_dev->rbd_client->kref, rbd_client_release);
468 rbd_dev->rbd_client = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700469}
470
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700471/*
472 * Destroy requests collection
473 */
474static void rbd_coll_release(struct kref *kref)
475{
476 struct rbd_req_coll *coll =
477 container_of(kref, struct rbd_req_coll, kref);
478
479 dout("rbd_coll_release %p\n", coll);
480 kfree(coll);
481}
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700482
Alex Elder8e94af82012-07-25 09:32:40 -0500483static bool rbd_dev_ondisk_valid(struct rbd_image_header_ondisk *ondisk)
484{
485 return !memcmp(&ondisk->text,
486 RBD_HEADER_TEXT, sizeof (RBD_HEADER_TEXT));
487}
488
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700489/*
490 * Create a new header structure, translate header format from the on-disk
491 * header.
492 */
493static int rbd_header_from_disk(struct rbd_image_header *header,
494 struct rbd_image_header_ondisk *ondisk,
Alex Eldered63f4f2012-07-19 09:09:27 -0500495 u32 allocated_snaps)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700496{
Xi Wang50f7c4c2012-04-20 15:49:44 -0500497 u32 i, snap_count;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700498
Alex Elder8e94af82012-07-25 09:32:40 -0500499 if (!rbd_dev_ondisk_valid(ondisk))
Josh Durgin81e759f2011-11-15 14:49:53 -0800500 return -ENXIO;
Josh Durgin81e759f2011-11-15 14:49:53 -0800501
Alex Elder00f1f362012-02-07 12:03:36 -0600502 snap_count = le32_to_cpu(ondisk->snap_count);
Xi Wang50f7c4c2012-04-20 15:49:44 -0500503 if (snap_count > (UINT_MAX - sizeof(struct ceph_snap_context))
504 / sizeof (*ondisk))
505 return -EINVAL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700506 header->snapc = kmalloc(sizeof(struct ceph_snap_context) +
Yan, Zhengf9f9a192012-06-06 09:15:33 -0500507 snap_count * sizeof(u64),
Alex Eldered63f4f2012-07-19 09:09:27 -0500508 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700509 if (!header->snapc)
510 return -ENOMEM;
Alex Elder00f1f362012-02-07 12:03:36 -0600511
Alex Elder00f1f362012-02-07 12:03:36 -0600512 header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700513 if (snap_count) {
514 header->snap_names = kmalloc(header->snap_names_len,
Alex Eldered63f4f2012-07-19 09:09:27 -0500515 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700516 if (!header->snap_names)
517 goto err_snapc;
518 header->snap_sizes = kmalloc(snap_count * sizeof(u64),
Alex Eldered63f4f2012-07-19 09:09:27 -0500519 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700520 if (!header->snap_sizes)
521 goto err_names;
522 } else {
523 header->snap_names = NULL;
524 header->snap_sizes = NULL;
525 }
Alex Elder849b4262012-07-09 21:04:24 -0500526
527 header->object_prefix = kmalloc(sizeof (ondisk->block_name) + 1,
Alex Eldered63f4f2012-07-19 09:09:27 -0500528 GFP_KERNEL);
Alex Elder849b4262012-07-09 21:04:24 -0500529 if (!header->object_prefix)
530 goto err_sizes;
531
Alex Elderca1e49a2012-07-10 20:30:09 -0500532 memcpy(header->object_prefix, ondisk->block_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700533 sizeof(ondisk->block_name));
Alex Elder849b4262012-07-09 21:04:24 -0500534 header->object_prefix[sizeof (ondisk->block_name)] = '\0';
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700535
536 header->image_size = le64_to_cpu(ondisk->image_size);
537 header->obj_order = ondisk->options.order;
538 header->crypt_type = ondisk->options.crypt_type;
539 header->comp_type = ondisk->options.comp_type;
540
541 atomic_set(&header->snapc->nref, 1);
Alex Elder505cbb92012-07-19 08:49:18 -0500542 header->snapc->seq = le64_to_cpu(ondisk->snap_seq);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700543 header->snapc->num_snaps = snap_count;
544 header->total_snaps = snap_count;
545
Alex Elder21079782012-01-24 10:08:36 -0600546 if (snap_count && allocated_snaps == snap_count) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700547 for (i = 0; i < snap_count; i++) {
548 header->snapc->snaps[i] =
549 le64_to_cpu(ondisk->snaps[i].id);
550 header->snap_sizes[i] =
551 le64_to_cpu(ondisk->snaps[i].image_size);
552 }
553
554 /* copy snapshot names */
555 memcpy(header->snap_names, &ondisk->snaps[i],
556 header->snap_names_len);
557 }
558
559 return 0;
560
Alex Elder849b4262012-07-09 21:04:24 -0500561err_sizes:
562 kfree(header->snap_sizes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700563err_names:
564 kfree(header->snap_names);
565err_snapc:
566 kfree(header->snapc);
Alex Elder00f1f362012-02-07 12:03:36 -0600567 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700568}
569
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700570static int snap_by_name(struct rbd_image_header *header, const char *snap_name,
571 u64 *seq, u64 *size)
572{
573 int i;
574 char *p = header->snap_names;
575
Alex Elder00f1f362012-02-07 12:03:36 -0600576 for (i = 0; i < header->total_snaps; i++) {
577 if (!strcmp(snap_name, p)) {
578
579 /* Found it. Pass back its id and/or size */
580
581 if (seq)
582 *seq = header->snapc->snaps[i];
583 if (size)
584 *size = header->snap_sizes[i];
585 return i;
586 }
587 p += strlen(p) + 1; /* Skip ahead to the next name */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700588 }
Alex Elder00f1f362012-02-07 12:03:36 -0600589 return -ENOENT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700590}
591
Alex Elder0ce1a792012-07-03 16:01:18 -0500592static int rbd_header_set_snap(struct rbd_device *rbd_dev, u64 *size)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700593{
Alex Elder78dc4472012-07-19 08:49:18 -0500594 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700595
Alex Elder0ce1a792012-07-03 16:01:18 -0500596 down_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700597
Alex Elder0ce1a792012-07-03 16:01:18 -0500598 if (!memcmp(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
Josh Durgincc9d7342011-11-21 18:19:13 -0800599 sizeof (RBD_SNAP_HEAD_NAME))) {
Alex Elder0ce1a792012-07-03 16:01:18 -0500600 rbd_dev->snap_id = CEPH_NOSNAP;
Josh Durgine88a36e2011-11-21 18:14:25 -0800601 rbd_dev->snap_exists = false;
Alex Elder0ce1a792012-07-03 16:01:18 -0500602 rbd_dev->read_only = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700603 if (size)
Alex Elder78dc4472012-07-19 08:49:18 -0500604 *size = rbd_dev->header.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700605 } else {
Alex Elder78dc4472012-07-19 08:49:18 -0500606 u64 snap_id = 0;
607
608 ret = snap_by_name(&rbd_dev->header, rbd_dev->snap_name,
609 &snap_id, size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700610 if (ret < 0)
611 goto done;
Alex Elder78dc4472012-07-19 08:49:18 -0500612 rbd_dev->snap_id = snap_id;
Josh Durgine88a36e2011-11-21 18:14:25 -0800613 rbd_dev->snap_exists = true;
Alex Elder0ce1a792012-07-03 16:01:18 -0500614 rbd_dev->read_only = 1;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700615 }
616
617 ret = 0;
618done:
Alex Elder0ce1a792012-07-03 16:01:18 -0500619 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700620 return ret;
621}
622
623static void rbd_header_free(struct rbd_image_header *header)
624{
Alex Elder849b4262012-07-09 21:04:24 -0500625 kfree(header->object_prefix);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700626 kfree(header->snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -0500627 kfree(header->snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -0800628 ceph_put_snap_context(header->snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700629}
630
631/*
632 * get the actual striped segment name, offset and length
633 */
634static u64 rbd_get_segment(struct rbd_image_header *header,
Alex Elderca1e49a2012-07-10 20:30:09 -0500635 const char *object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700636 u64 ofs, u64 len,
637 char *seg_name, u64 *segofs)
638{
639 u64 seg = ofs >> header->obj_order;
640
641 if (seg_name)
642 snprintf(seg_name, RBD_MAX_SEG_NAME_LEN,
Alex Elderca1e49a2012-07-10 20:30:09 -0500643 "%s.%012llx", object_prefix, seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700644
645 ofs = ofs & ((1 << header->obj_order) - 1);
646 len = min_t(u64, len, (1 << header->obj_order) - ofs);
647
648 if (segofs)
649 *segofs = ofs;
650
651 return len;
652}
653
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700654static int rbd_get_num_segments(struct rbd_image_header *header,
655 u64 ofs, u64 len)
656{
657 u64 start_seg = ofs >> header->obj_order;
658 u64 end_seg = (ofs + len - 1) >> header->obj_order;
659 return end_seg - start_seg + 1;
660}
661
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700662/*
Josh Durgin029bcbd2011-07-22 11:35:23 -0700663 * returns the size of an object in the image
664 */
665static u64 rbd_obj_bytes(struct rbd_image_header *header)
666{
667 return 1 << header->obj_order;
668}
669
670/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700671 * bio helpers
672 */
673
674static void bio_chain_put(struct bio *chain)
675{
676 struct bio *tmp;
677
678 while (chain) {
679 tmp = chain;
680 chain = chain->bi_next;
681 bio_put(tmp);
682 }
683}
684
685/*
686 * zeros a bio chain, starting at specific offset
687 */
688static void zero_bio_chain(struct bio *chain, int start_ofs)
689{
690 struct bio_vec *bv;
691 unsigned long flags;
692 void *buf;
693 int i;
694 int pos = 0;
695
696 while (chain) {
697 bio_for_each_segment(bv, chain, i) {
698 if (pos + bv->bv_len > start_ofs) {
699 int remainder = max(start_ofs - pos, 0);
700 buf = bvec_kmap_irq(bv, &flags);
701 memset(buf + remainder, 0,
702 bv->bv_len - remainder);
Dan Carpenter85b5aaa2010-10-11 21:15:11 +0200703 bvec_kunmap_irq(buf, &flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700704 }
705 pos += bv->bv_len;
706 }
707
708 chain = chain->bi_next;
709 }
710}
711
712/*
713 * bio_chain_clone - clone a chain of bios up to a certain length.
714 * might return a bio_pair that will need to be released.
715 */
716static struct bio *bio_chain_clone(struct bio **old, struct bio **next,
717 struct bio_pair **bp,
718 int len, gfp_t gfpmask)
719{
720 struct bio *tmp, *old_chain = *old, *new_chain = NULL, *tail = NULL;
721 int total = 0;
722
723 if (*bp) {
724 bio_pair_release(*bp);
725 *bp = NULL;
726 }
727
728 while (old_chain && (total < len)) {
729 tmp = bio_kmalloc(gfpmask, old_chain->bi_max_vecs);
730 if (!tmp)
731 goto err_out;
732
733 if (total + old_chain->bi_size > len) {
734 struct bio_pair *bp;
735
736 /*
737 * this split can only happen with a single paged bio,
738 * split_bio will BUG_ON if this is not the case
739 */
740 dout("bio_chain_clone split! total=%d remaining=%d"
Alex Elderbd919d42012-07-13 20:35:11 -0500741 "bi_size=%u\n",
742 total, len - total, old_chain->bi_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700743
744 /* split the bio. We'll release it either in the next
745 call, or it will have to be released outside */
Alex Elder593a9e72012-02-07 12:03:37 -0600746 bp = bio_split(old_chain, (len - total) / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700747 if (!bp)
748 goto err_out;
749
750 __bio_clone(tmp, &bp->bio1);
751
752 *next = &bp->bio2;
753 } else {
754 __bio_clone(tmp, old_chain);
755 *next = old_chain->bi_next;
756 }
757
758 tmp->bi_bdev = NULL;
759 gfpmask &= ~__GFP_WAIT;
760 tmp->bi_next = NULL;
761
762 if (!new_chain) {
763 new_chain = tail = tmp;
764 } else {
765 tail->bi_next = tmp;
766 tail = tmp;
767 }
768 old_chain = old_chain->bi_next;
769
770 total += tmp->bi_size;
771 }
772
773 BUG_ON(total < len);
774
775 if (tail)
776 tail->bi_next = NULL;
777
778 *old = old_chain;
779
780 return new_chain;
781
782err_out:
783 dout("bio_chain_clone with err\n");
784 bio_chain_put(new_chain);
785 return NULL;
786}
787
788/*
789 * helpers for osd request op vectors.
790 */
Alex Elder57cfc102012-06-26 12:57:03 -0700791static struct ceph_osd_req_op *rbd_create_rw_ops(int num_ops,
792 int opcode, u32 payload_len)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700793{
Alex Elder57cfc102012-06-26 12:57:03 -0700794 struct ceph_osd_req_op *ops;
795
796 ops = kzalloc(sizeof (*ops) * (num_ops + 1), GFP_NOIO);
797 if (!ops)
798 return NULL;
799
800 ops[0].op = opcode;
801
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700802 /*
803 * op extent offset and length will be set later on
804 * in calc_raw_layout()
805 */
Alex Elder57cfc102012-06-26 12:57:03 -0700806 ops[0].payload_len = payload_len;
807
808 return ops;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700809}
810
811static void rbd_destroy_ops(struct ceph_osd_req_op *ops)
812{
813 kfree(ops);
814}
815
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700816static void rbd_coll_end_req_index(struct request *rq,
817 struct rbd_req_coll *coll,
818 int index,
819 int ret, u64 len)
820{
821 struct request_queue *q;
822 int min, max, i;
823
Alex Elderbd919d42012-07-13 20:35:11 -0500824 dout("rbd_coll_end_req_index %p index %d ret %d len %llu\n",
825 coll, index, ret, (unsigned long long) len);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700826
827 if (!rq)
828 return;
829
830 if (!coll) {
831 blk_end_request(rq, ret, len);
832 return;
833 }
834
835 q = rq->q;
836
837 spin_lock_irq(q->queue_lock);
838 coll->status[index].done = 1;
839 coll->status[index].rc = ret;
840 coll->status[index].bytes = len;
841 max = min = coll->num_done;
842 while (max < coll->total && coll->status[max].done)
843 max++;
844
845 for (i = min; i<max; i++) {
846 __blk_end_request(rq, coll->status[i].rc,
847 coll->status[i].bytes);
848 coll->num_done++;
849 kref_put(&coll->kref, rbd_coll_release);
850 }
851 spin_unlock_irq(q->queue_lock);
852}
853
854static void rbd_coll_end_req(struct rbd_request *req,
855 int ret, u64 len)
856{
857 rbd_coll_end_req_index(req->rq, req->coll, req->coll_index, ret, len);
858}
859
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700860/*
861 * Send ceph osd request
862 */
863static int rbd_do_request(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -0500864 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700865 struct ceph_snap_context *snapc,
866 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -0500867 const char *object_name, u64 ofs, u64 len,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700868 struct bio *bio,
869 struct page **pages,
870 int num_pages,
871 int flags,
872 struct ceph_osd_req_op *ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700873 struct rbd_req_coll *coll,
874 int coll_index,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700875 void (*rbd_cb)(struct ceph_osd_request *req,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700876 struct ceph_msg *msg),
877 struct ceph_osd_request **linger_req,
878 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700879{
880 struct ceph_osd_request *req;
881 struct ceph_file_layout *layout;
882 int ret;
883 u64 bno;
884 struct timespec mtime = CURRENT_TIME;
885 struct rbd_request *req_data;
886 struct ceph_osd_request_head *reqhead;
Alex Elder1dbb4392012-01-24 10:08:37 -0600887 struct ceph_osd_client *osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700888
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700889 req_data = kzalloc(sizeof(*req_data), GFP_NOIO);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700890 if (!req_data) {
891 if (coll)
892 rbd_coll_end_req_index(rq, coll, coll_index,
893 -ENOMEM, len);
894 return -ENOMEM;
895 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700896
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700897 if (coll) {
898 req_data->coll = coll;
899 req_data->coll_index = coll_index;
900 }
901
Alex Elderbd919d42012-07-13 20:35:11 -0500902 dout("rbd_do_request object_name=%s ofs=%llu len=%llu\n", object_name,
903 (unsigned long long) ofs, (unsigned long long) len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700904
Alex Elder0ce1a792012-07-03 16:01:18 -0500905 osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder1dbb4392012-01-24 10:08:37 -0600906 req = ceph_osdc_alloc_request(osdc, flags, snapc, ops,
907 false, GFP_NOIO, pages, bio);
Sage Weil4ad12622011-05-03 09:23:36 -0700908 if (!req) {
Sage Weil4ad12622011-05-03 09:23:36 -0700909 ret = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700910 goto done_pages;
911 }
912
913 req->r_callback = rbd_cb;
914
915 req_data->rq = rq;
916 req_data->bio = bio;
917 req_data->pages = pages;
918 req_data->len = len;
919
920 req->r_priv = req_data;
921
922 reqhead = req->r_request->front.iov_base;
923 reqhead->snapid = cpu_to_le64(CEPH_NOSNAP);
924
Alex Elderaded07e2012-07-03 16:01:18 -0500925 strncpy(req->r_oid, object_name, sizeof(req->r_oid));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700926 req->r_oid_len = strlen(req->r_oid);
927
928 layout = &req->r_file_layout;
929 memset(layout, 0, sizeof(*layout));
930 layout->fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
931 layout->fl_stripe_count = cpu_to_le32(1);
932 layout->fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
Alex Elder0ce1a792012-07-03 16:01:18 -0500933 layout->fl_pg_pool = cpu_to_le32(rbd_dev->pool_id);
Alex Elder1dbb4392012-01-24 10:08:37 -0600934 ceph_calc_raw_layout(osdc, layout, snapid, ofs, &len, &bno,
935 req, ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700936
937 ceph_osdc_build_request(req, ofs, &len,
938 ops,
939 snapc,
940 &mtime,
941 req->r_oid, req->r_oid_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700942
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700943 if (linger_req) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600944 ceph_osdc_set_request_linger(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700945 *linger_req = req;
946 }
947
Alex Elder1dbb4392012-01-24 10:08:37 -0600948 ret = ceph_osdc_start_request(osdc, req, false);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700949 if (ret < 0)
950 goto done_err;
951
952 if (!rbd_cb) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600953 ret = ceph_osdc_wait_request(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700954 if (ver)
955 *ver = le64_to_cpu(req->r_reassert_version.version);
Alex Elderbd919d42012-07-13 20:35:11 -0500956 dout("reassert_ver=%llu\n",
957 (unsigned long long)
958 le64_to_cpu(req->r_reassert_version.version));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700959 ceph_osdc_put_request(req);
960 }
961 return ret;
962
963done_err:
964 bio_chain_put(req_data->bio);
965 ceph_osdc_put_request(req);
966done_pages:
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700967 rbd_coll_end_req(req_data, ret, len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700968 kfree(req_data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700969 return ret;
970}
971
972/*
973 * Ceph osd op callback
974 */
975static void rbd_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
976{
977 struct rbd_request *req_data = req->r_priv;
978 struct ceph_osd_reply_head *replyhead;
979 struct ceph_osd_op *op;
980 __s32 rc;
981 u64 bytes;
982 int read_op;
983
984 /* parse reply */
985 replyhead = msg->front.iov_base;
986 WARN_ON(le32_to_cpu(replyhead->num_ops) == 0);
987 op = (void *)(replyhead + 1);
988 rc = le32_to_cpu(replyhead->result);
989 bytes = le64_to_cpu(op->extent.length);
Dan Carpenter895cfcc2012-06-06 09:15:33 -0500990 read_op = (le16_to_cpu(op->op) == CEPH_OSD_OP_READ);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700991
Alex Elderbd919d42012-07-13 20:35:11 -0500992 dout("rbd_req_cb bytes=%llu readop=%d rc=%d\n",
993 (unsigned long long) bytes, read_op, (int) rc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700994
995 if (rc == -ENOENT && read_op) {
996 zero_bio_chain(req_data->bio, 0);
997 rc = 0;
998 } else if (rc == 0 && read_op && bytes < req_data->len) {
999 zero_bio_chain(req_data->bio, bytes);
1000 bytes = req_data->len;
1001 }
1002
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001003 rbd_coll_end_req(req_data, rc, bytes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001004
1005 if (req_data->bio)
1006 bio_chain_put(req_data->bio);
1007
1008 ceph_osdc_put_request(req);
1009 kfree(req_data);
1010}
1011
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001012static void rbd_simple_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1013{
1014 ceph_osdc_put_request(req);
1015}
1016
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001017/*
1018 * Do a synchronous ceph osd operation
1019 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001020static int rbd_req_sync_op(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001021 struct ceph_snap_context *snapc,
1022 u64 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001023 int flags,
Alex Elder913d2fd2012-06-26 12:57:03 -07001024 struct ceph_osd_req_op *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;
Alex Elder913d2fd2012-06-26 12:57:03 -07001034
1035 BUG_ON(ops == NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001036
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
Alex Elder0ce1a792012-07-03 16:01:18 -05001042 ret = rbd_do_request(NULL, rbd_dev, snapc, snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001043 object_name, ofs, len, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001044 pages, num_pages,
1045 flags,
1046 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001047 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001048 NULL,
1049 linger_req, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001050 if (ret < 0)
Alex Elder913d2fd2012-06-26 12:57:03 -07001051 goto done;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001052
1053 if ((flags & CEPH_OSD_FLAG_READ) && buf)
1054 ret = ceph_copy_from_page_vector(pages, buf, ofs, ret);
1055
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001056done:
1057 ceph_release_page_vector(pages, num_pages);
1058 return ret;
1059}
1060
1061/*
1062 * Do an asynchronous ceph osd operation
1063 */
1064static int rbd_do_op(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -05001065 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001066 struct ceph_snap_context *snapc,
1067 u64 snapid,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001068 int opcode, int flags,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001069 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001070 struct bio *bio,
1071 struct rbd_req_coll *coll,
1072 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001073{
1074 char *seg_name;
1075 u64 seg_ofs;
1076 u64 seg_len;
1077 int ret;
1078 struct ceph_osd_req_op *ops;
1079 u32 payload_len;
1080
1081 seg_name = kmalloc(RBD_MAX_SEG_NAME_LEN + 1, GFP_NOIO);
1082 if (!seg_name)
1083 return -ENOMEM;
1084
1085 seg_len = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001086 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001087 ofs, len,
1088 seg_name, &seg_ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001089
1090 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
1091
Alex Elder57cfc102012-06-26 12:57:03 -07001092 ret = -ENOMEM;
1093 ops = rbd_create_rw_ops(1, opcode, payload_len);
1094 if (!ops)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001095 goto done;
1096
1097 /* we've taken care of segment sizes earlier when we
1098 cloned the bios. We should never have a segment
1099 truncated at this point */
1100 BUG_ON(seg_len < len);
1101
1102 ret = rbd_do_request(rq, rbd_dev, snapc, snapid,
1103 seg_name, seg_ofs, seg_len,
1104 bio,
1105 NULL, 0,
1106 flags,
1107 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001108 coll, coll_index,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001109 rbd_req_cb, 0, NULL);
Sage Weil11f77002011-05-12 16:13:54 -07001110
1111 rbd_destroy_ops(ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001112done:
1113 kfree(seg_name);
1114 return ret;
1115}
1116
1117/*
1118 * Request async osd write
1119 */
1120static int rbd_req_write(struct request *rq,
1121 struct rbd_device *rbd_dev,
1122 struct ceph_snap_context *snapc,
1123 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001124 struct bio *bio,
1125 struct rbd_req_coll *coll,
1126 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001127{
1128 return rbd_do_op(rq, rbd_dev, snapc, CEPH_NOSNAP,
1129 CEPH_OSD_OP_WRITE,
1130 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001131 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001132}
1133
1134/*
1135 * Request async osd read
1136 */
1137static int rbd_req_read(struct request *rq,
1138 struct rbd_device *rbd_dev,
1139 u64 snapid,
1140 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001141 struct bio *bio,
1142 struct rbd_req_coll *coll,
1143 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001144{
1145 return rbd_do_op(rq, rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001146 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001147 CEPH_OSD_OP_READ,
1148 CEPH_OSD_FLAG_READ,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001149 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001150}
1151
1152/*
1153 * Request sync osd read
1154 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001155static int rbd_req_sync_read(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001156 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001157 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001158 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001159 char *buf,
1160 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001161{
Alex Elder913d2fd2012-06-26 12:57:03 -07001162 struct ceph_osd_req_op *ops;
1163 int ret;
1164
1165 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_READ, 0);
1166 if (!ops)
1167 return -ENOMEM;
1168
1169 ret = rbd_req_sync_op(rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001170 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001171 CEPH_OSD_FLAG_READ,
Alex Elder913d2fd2012-06-26 12:57:03 -07001172 ops, object_name, ofs, len, buf, NULL, ver);
1173 rbd_destroy_ops(ops);
1174
1175 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001176}
1177
1178/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001179 * Request sync osd watch
1180 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001181static int rbd_req_sync_notify_ack(struct rbd_device *rbd_dev,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001182 u64 ver,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001183 u64 notify_id)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001184{
1185 struct ceph_osd_req_op *ops;
Sage Weil11f77002011-05-12 16:13:54 -07001186 int ret;
1187
Alex Elder57cfc102012-06-26 12:57:03 -07001188 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY_ACK, 0);
1189 if (!ops)
1190 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001191
Josh Durgina71b8912011-12-05 18:10:44 -08001192 ops[0].watch.ver = cpu_to_le64(ver);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001193 ops[0].watch.cookie = notify_id;
1194 ops[0].watch.flag = 0;
1195
Alex Elder0ce1a792012-07-03 16:01:18 -05001196 ret = rbd_do_request(NULL, rbd_dev, NULL, CEPH_NOSNAP,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001197 rbd_dev->header_name, 0, 0, NULL,
Alex Elderad4f2322012-07-03 16:01:19 -05001198 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001199 CEPH_OSD_FLAG_READ,
1200 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001201 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001202 rbd_simple_req_cb, 0, NULL);
1203
1204 rbd_destroy_ops(ops);
1205 return ret;
1206}
1207
1208static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1209{
Alex Elder0ce1a792012-07-03 16:01:18 -05001210 struct rbd_device *rbd_dev = (struct rbd_device *)data;
Josh Durgina71b8912011-12-05 18:10:44 -08001211 u64 hver;
Sage Weil13143d22011-05-12 16:08:30 -07001212 int rc;
1213
Alex Elder0ce1a792012-07-03 16:01:18 -05001214 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001215 return;
1216
Alex Elderbd919d42012-07-13 20:35:11 -05001217 dout("rbd_watch_cb %s notify_id=%llu opcode=%u\n",
1218 rbd_dev->header_name, (unsigned long long) notify_id,
1219 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001220 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Alex Elder0ce1a792012-07-03 16:01:18 -05001221 rc = __rbd_refresh_header(rbd_dev);
Josh Durgina71b8912011-12-05 18:10:44 -08001222 hver = rbd_dev->header.obj_version;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001223 mutex_unlock(&ctl_mutex);
Sage Weil13143d22011-05-12 16:08:30 -07001224 if (rc)
Alex Elderf0f8cef2012-01-29 13:57:44 -06001225 pr_warning(RBD_DRV_NAME "%d got notification but failed to "
Alex Elder0ce1a792012-07-03 16:01:18 -05001226 " update snaps: %d\n", rbd_dev->major, rc);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001227
Alex Elder7f0a24d2012-07-25 09:32:40 -05001228 rbd_req_sync_notify_ack(rbd_dev, hver, notify_id);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001229}
1230
1231/*
1232 * Request sync osd watch
1233 */
Alex Elder0e6f3222012-07-25 09:32:40 -05001234static int rbd_req_sync_watch(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001235{
1236 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001237 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder57cfc102012-06-26 12:57:03 -07001238 int ret;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001239
Alex Elder57cfc102012-06-26 12:57:03 -07001240 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1241 if (!ops)
1242 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001243
1244 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, 0,
Alex Elder0ce1a792012-07-03 16:01:18 -05001245 (void *)rbd_dev, &rbd_dev->watch_event);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001246 if (ret < 0)
1247 goto fail;
1248
Alex Elder0e6f3222012-07-25 09:32:40 -05001249 ops[0].watch.ver = cpu_to_le64(rbd_dev->header.obj_version);
Alex Elder0ce1a792012-07-03 16:01:18 -05001250 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001251 ops[0].watch.flag = 1;
1252
Alex Elder0ce1a792012-07-03 16:01:18 -05001253 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001254 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001255 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1256 ops,
Alex Elder0e6f3222012-07-25 09:32:40 -05001257 rbd_dev->header_name,
1258 0, 0, NULL,
Alex Elder0ce1a792012-07-03 16:01:18 -05001259 &rbd_dev->watch_request, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001260
1261 if (ret < 0)
1262 goto fail_event;
1263
1264 rbd_destroy_ops(ops);
1265 return 0;
1266
1267fail_event:
Alex Elder0ce1a792012-07-03 16:01:18 -05001268 ceph_osdc_cancel_event(rbd_dev->watch_event);
1269 rbd_dev->watch_event = NULL;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001270fail:
1271 rbd_destroy_ops(ops);
1272 return ret;
1273}
1274
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001275/*
1276 * Request sync osd unwatch
1277 */
Alex Elder070c6332012-07-25 09:32:41 -05001278static int rbd_req_sync_unwatch(struct rbd_device *rbd_dev)
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001279{
1280 struct ceph_osd_req_op *ops;
Alex Elder57cfc102012-06-26 12:57:03 -07001281 int ret;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001282
Alex Elder57cfc102012-06-26 12:57:03 -07001283 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1284 if (!ops)
1285 return -ENOMEM;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001286
1287 ops[0].watch.ver = 0;
Alex Elder0ce1a792012-07-03 16:01:18 -05001288 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001289 ops[0].watch.flag = 0;
1290
Alex Elder0ce1a792012-07-03 16:01:18 -05001291 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001292 CEPH_NOSNAP,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001293 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1294 ops,
Alex Elder070c6332012-07-25 09:32:41 -05001295 rbd_dev->header_name,
1296 0, 0, NULL, NULL, NULL);
1297
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001298
1299 rbd_destroy_ops(ops);
Alex Elder0ce1a792012-07-03 16:01:18 -05001300 ceph_osdc_cancel_event(rbd_dev->watch_event);
1301 rbd_dev->watch_event = NULL;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001302 return ret;
1303}
1304
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001305struct rbd_notify_info {
Alex Elder0ce1a792012-07-03 16:01:18 -05001306 struct rbd_device *rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001307};
1308
1309static void rbd_notify_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1310{
Alex Elder0ce1a792012-07-03 16:01:18 -05001311 struct rbd_device *rbd_dev = (struct rbd_device *)data;
1312 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001313 return;
1314
Alex Elderbd919d42012-07-13 20:35:11 -05001315 dout("rbd_notify_cb %s notify_id=%llu opcode=%u\n",
1316 rbd_dev->header_name, (unsigned long long) notify_id,
1317 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001318}
1319
1320/*
1321 * Request sync osd notify
1322 */
Alex Elder4cb16252012-07-25 09:32:40 -05001323static int rbd_req_sync_notify(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001324{
1325 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001326 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001327 struct ceph_osd_event *event;
1328 struct rbd_notify_info info;
1329 int payload_len = sizeof(u32) + sizeof(u32);
1330 int ret;
1331
Alex Elder57cfc102012-06-26 12:57:03 -07001332 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY, payload_len);
1333 if (!ops)
1334 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001335
Alex Elder0ce1a792012-07-03 16:01:18 -05001336 info.rbd_dev = rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001337
1338 ret = ceph_osdc_create_event(osdc, rbd_notify_cb, 1,
1339 (void *)&info, &event);
1340 if (ret < 0)
1341 goto fail;
1342
1343 ops[0].watch.ver = 1;
1344 ops[0].watch.flag = 1;
1345 ops[0].watch.cookie = event->cookie;
1346 ops[0].watch.prot_ver = RADOS_NOTIFY_VER;
1347 ops[0].watch.timeout = 12;
1348
Alex Elder0ce1a792012-07-03 16:01:18 -05001349 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001350 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001351 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1352 ops,
Alex Elder4cb16252012-07-25 09:32:40 -05001353 rbd_dev->header_name,
1354 0, 0, NULL, NULL, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001355 if (ret < 0)
1356 goto fail_event;
1357
1358 ret = ceph_osdc_wait_event(event, CEPH_OSD_TIMEOUT_DEFAULT);
1359 dout("ceph_osdc_wait_event returned %d\n", ret);
1360 rbd_destroy_ops(ops);
1361 return 0;
1362
1363fail_event:
1364 ceph_osdc_cancel_event(event);
1365fail:
1366 rbd_destroy_ops(ops);
1367 return ret;
1368}
1369
1370/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001371 * Request sync osd read
1372 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001373static int rbd_req_sync_exec(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001374 const char *object_name,
1375 const char *class_name,
1376 const char *method_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001377 const char *data,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001378 int len,
1379 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001380{
1381 struct ceph_osd_req_op *ops;
Alex Elderaded07e2012-07-03 16:01:18 -05001382 int class_name_len = strlen(class_name);
1383 int method_name_len = strlen(method_name);
Alex Elder57cfc102012-06-26 12:57:03 -07001384 int ret;
1385
1386 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_CALL,
Alex Elderaded07e2012-07-03 16:01:18 -05001387 class_name_len + method_name_len + len);
Alex Elder57cfc102012-06-26 12:57:03 -07001388 if (!ops)
1389 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001390
Alex Elderaded07e2012-07-03 16:01:18 -05001391 ops[0].cls.class_name = class_name;
1392 ops[0].cls.class_len = (__u8) class_name_len;
1393 ops[0].cls.method_name = method_name;
1394 ops[0].cls.method_len = (__u8) method_name_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001395 ops[0].cls.argc = 0;
1396 ops[0].cls.indata = data;
1397 ops[0].cls.indata_len = len;
1398
Alex Elder0ce1a792012-07-03 16:01:18 -05001399 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001400 CEPH_NOSNAP,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001401 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1402 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001403 object_name, 0, 0, NULL, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001404
1405 rbd_destroy_ops(ops);
1406
1407 dout("cls_exec returned %d\n", ret);
1408 return ret;
1409}
1410
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001411static struct rbd_req_coll *rbd_alloc_coll(int num_reqs)
1412{
1413 struct rbd_req_coll *coll =
1414 kzalloc(sizeof(struct rbd_req_coll) +
1415 sizeof(struct rbd_req_status) * num_reqs,
1416 GFP_ATOMIC);
1417
1418 if (!coll)
1419 return NULL;
1420 coll->total = num_reqs;
1421 kref_init(&coll->kref);
1422 return coll;
1423}
1424
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001425/*
1426 * block device queue callback
1427 */
1428static void rbd_rq_fn(struct request_queue *q)
1429{
1430 struct rbd_device *rbd_dev = q->queuedata;
1431 struct request *rq;
1432 struct bio_pair *bp = NULL;
1433
Alex Elder00f1f362012-02-07 12:03:36 -06001434 while ((rq = blk_fetch_request(q))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001435 struct bio *bio;
1436 struct bio *rq_bio, *next_bio = NULL;
1437 bool do_write;
Alex Elderbd919d42012-07-13 20:35:11 -05001438 unsigned int size;
1439 u64 op_size = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001440 u64 ofs;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001441 int num_segs, cur_seg = 0;
1442 struct rbd_req_coll *coll;
Josh Durgind1d25642011-12-05 14:03:05 -08001443 struct ceph_snap_context *snapc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001444
1445 /* peek at request from block layer */
1446 if (!rq)
1447 break;
1448
1449 dout("fetched request\n");
1450
1451 /* filter out block requests we don't understand */
1452 if ((rq->cmd_type != REQ_TYPE_FS)) {
1453 __blk_end_request_all(rq, 0);
Alex Elder00f1f362012-02-07 12:03:36 -06001454 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001455 }
1456
1457 /* deduce our operation (read, write) */
1458 do_write = (rq_data_dir(rq) == WRITE);
1459
1460 size = blk_rq_bytes(rq);
Alex Elder593a9e72012-02-07 12:03:37 -06001461 ofs = blk_rq_pos(rq) * SECTOR_SIZE;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001462 rq_bio = rq->bio;
1463 if (do_write && rbd_dev->read_only) {
1464 __blk_end_request_all(rq, -EROFS);
Alex Elder00f1f362012-02-07 12:03:36 -06001465 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001466 }
1467
1468 spin_unlock_irq(q->queue_lock);
1469
Josh Durgind1d25642011-12-05 14:03:05 -08001470 down_read(&rbd_dev->header_rwsem);
Josh Durgine88a36e2011-11-21 18:14:25 -08001471
Josh Durgind1d25642011-12-05 14:03:05 -08001472 if (rbd_dev->snap_id != CEPH_NOSNAP && !rbd_dev->snap_exists) {
Josh Durgine88a36e2011-11-21 18:14:25 -08001473 up_read(&rbd_dev->header_rwsem);
Josh Durgind1d25642011-12-05 14:03:05 -08001474 dout("request for non-existent snapshot");
1475 spin_lock_irq(q->queue_lock);
1476 __blk_end_request_all(rq, -ENXIO);
1477 continue;
Josh Durgine88a36e2011-11-21 18:14:25 -08001478 }
1479
Josh Durgind1d25642011-12-05 14:03:05 -08001480 snapc = ceph_get_snap_context(rbd_dev->header.snapc);
1481
1482 up_read(&rbd_dev->header_rwsem);
1483
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001484 dout("%s 0x%x bytes at 0x%llx\n",
1485 do_write ? "write" : "read",
Alex Elderbd919d42012-07-13 20:35:11 -05001486 size, (unsigned long long) blk_rq_pos(rq) * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001487
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001488 num_segs = rbd_get_num_segments(&rbd_dev->header, ofs, size);
1489 coll = rbd_alloc_coll(num_segs);
1490 if (!coll) {
1491 spin_lock_irq(q->queue_lock);
1492 __blk_end_request_all(rq, -ENOMEM);
Josh Durgind1d25642011-12-05 14:03:05 -08001493 ceph_put_snap_context(snapc);
Alex Elder00f1f362012-02-07 12:03:36 -06001494 continue;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001495 }
1496
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001497 do {
1498 /* a bio clone to be passed down to OSD req */
Alex Elderbd919d42012-07-13 20:35:11 -05001499 dout("rq->bio->bi_vcnt=%hu\n", rq->bio->bi_vcnt);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001500 op_size = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001501 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001502 ofs, size,
1503 NULL, NULL);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001504 kref_get(&coll->kref);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001505 bio = bio_chain_clone(&rq_bio, &next_bio, &bp,
1506 op_size, GFP_ATOMIC);
1507 if (!bio) {
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001508 rbd_coll_end_req_index(rq, coll, cur_seg,
1509 -ENOMEM, op_size);
1510 goto next_seg;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001511 }
1512
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001513
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001514 /* init OSD command: write or read */
1515 if (do_write)
1516 rbd_req_write(rq, rbd_dev,
Josh Durgind1d25642011-12-05 14:03:05 -08001517 snapc,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001518 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001519 op_size, bio,
1520 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001521 else
1522 rbd_req_read(rq, rbd_dev,
Josh Durgin77dfe992011-11-21 13:04:42 -08001523 rbd_dev->snap_id,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001524 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001525 op_size, bio,
1526 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001527
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001528next_seg:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001529 size -= op_size;
1530 ofs += op_size;
1531
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001532 cur_seg++;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001533 rq_bio = next_bio;
1534 } while (size > 0);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001535 kref_put(&coll->kref, rbd_coll_release);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001536
1537 if (bp)
1538 bio_pair_release(bp);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001539 spin_lock_irq(q->queue_lock);
Josh Durgind1d25642011-12-05 14:03:05 -08001540
1541 ceph_put_snap_context(snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001542 }
1543}
1544
1545/*
1546 * a queue callback. Makes sure that we don't create a bio that spans across
1547 * multiple osd objects. One exception would be with a single page bios,
1548 * which we handle later at bio_chain_clone
1549 */
1550static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
1551 struct bio_vec *bvec)
1552{
1553 struct rbd_device *rbd_dev = q->queuedata;
Alex Elder593a9e72012-02-07 12:03:37 -06001554 unsigned int chunk_sectors;
1555 sector_t sector;
1556 unsigned int bio_sectors;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001557 int max;
1558
Alex Elder593a9e72012-02-07 12:03:37 -06001559 chunk_sectors = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
1560 sector = bmd->bi_sector + get_start_sect(bmd->bi_bdev);
1561 bio_sectors = bmd->bi_size >> SECTOR_SHIFT;
1562
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001563 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
Alex Elder593a9e72012-02-07 12:03:37 -06001564 + bio_sectors)) << SECTOR_SHIFT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001565 if (max < 0)
1566 max = 0; /* bio_add cannot handle a negative return */
1567 if (max <= bvec->bv_len && bio_sectors == 0)
1568 return bvec->bv_len;
1569 return max;
1570}
1571
1572static void rbd_free_disk(struct rbd_device *rbd_dev)
1573{
1574 struct gendisk *disk = rbd_dev->disk;
1575
1576 if (!disk)
1577 return;
1578
1579 rbd_header_free(&rbd_dev->header);
1580
1581 if (disk->flags & GENHD_FL_UP)
1582 del_gendisk(disk);
1583 if (disk->queue)
1584 blk_cleanup_queue(disk->queue);
1585 put_disk(disk);
1586}
1587
1588/*
1589 * reload the ondisk the header
1590 */
1591static int rbd_read_header(struct rbd_device *rbd_dev,
1592 struct rbd_image_header *header)
1593{
1594 ssize_t rc;
1595 struct rbd_image_header_ondisk *dh;
Xi Wang50f7c4c2012-04-20 15:49:44 -05001596 u32 snap_count = 0;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001597 u64 ver;
Alex Elder00f1f362012-02-07 12:03:36 -06001598 size_t len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001599
Alex Elder00f1f362012-02-07 12:03:36 -06001600 /*
1601 * First reads the fixed-size header to determine the number
1602 * of snapshots, then re-reads it, along with all snapshot
1603 * records as well as their stored names.
1604 */
1605 len = sizeof (*dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001606 while (1) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001607 dh = kmalloc(len, GFP_KERNEL);
1608 if (!dh)
1609 return -ENOMEM;
1610
1611 rc = rbd_req_sync_read(rbd_dev,
Alex Elder9a5d6902012-07-19 09:09:27 -05001612 CEPH_NOSNAP,
Alex Elder0bed54d2012-07-03 16:01:18 -05001613 rbd_dev->header_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001614 0, len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001615 (char *)dh, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001616 if (rc < 0)
1617 goto out_dh;
1618
Alex Eldered63f4f2012-07-19 09:09:27 -05001619 rc = rbd_header_from_disk(header, dh, snap_count);
Josh Durgin81e759f2011-11-15 14:49:53 -08001620 if (rc < 0) {
Alex Elder00f1f362012-02-07 12:03:36 -06001621 if (rc == -ENXIO)
Josh Durgin81e759f2011-11-15 14:49:53 -08001622 pr_warning("unrecognized header format"
Alex Elder0bed54d2012-07-03 16:01:18 -05001623 " for image %s\n",
1624 rbd_dev->image_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001625 goto out_dh;
Josh Durgin81e759f2011-11-15 14:49:53 -08001626 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001627
Alex Elder00f1f362012-02-07 12:03:36 -06001628 if (snap_count == header->total_snaps)
1629 break;
1630
1631 snap_count = header->total_snaps;
1632 len = sizeof (*dh) +
1633 snap_count * sizeof(struct rbd_image_snap_ondisk) +
1634 header->snap_names_len;
1635
1636 rbd_header_free(header);
1637 kfree(dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001638 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001639 header->obj_version = ver;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001640
1641out_dh:
1642 kfree(dh);
1643 return rc;
1644}
1645
1646/*
1647 * create a snapshot
1648 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001649static int rbd_header_add_snap(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001650 const char *snap_name,
1651 gfp_t gfp_flags)
1652{
1653 int name_len = strlen(snap_name);
1654 u64 new_snapid;
1655 int ret;
Sage Weil916d4d62011-05-12 16:10:50 -07001656 void *data, *p, *e;
Alex Elder1dbb4392012-01-24 10:08:37 -06001657 struct ceph_mon_client *monc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001658
1659 /* we should create a snapshot only if we're pointing at the head */
Alex Elder0ce1a792012-07-03 16:01:18 -05001660 if (rbd_dev->snap_id != CEPH_NOSNAP)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001661 return -EINVAL;
1662
Alex Elder0ce1a792012-07-03 16:01:18 -05001663 monc = &rbd_dev->rbd_client->client->monc;
1664 ret = ceph_monc_create_snapid(monc, rbd_dev->pool_id, &new_snapid);
Alex Elderbd919d42012-07-13 20:35:11 -05001665 dout("created snapid=%llu\n", (unsigned long long) new_snapid);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001666 if (ret < 0)
1667 return ret;
1668
1669 data = kmalloc(name_len + 16, gfp_flags);
1670 if (!data)
1671 return -ENOMEM;
1672
Sage Weil916d4d62011-05-12 16:10:50 -07001673 p = data;
1674 e = data + name_len + 16;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001675
Sage Weil916d4d62011-05-12 16:10:50 -07001676 ceph_encode_string_safe(&p, e, snap_name, name_len, bad);
1677 ceph_encode_64_safe(&p, e, new_snapid, bad);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001678
Alex Elder0bed54d2012-07-03 16:01:18 -05001679 ret = rbd_req_sync_exec(rbd_dev, rbd_dev->header_name,
Alex Elder0ce1a792012-07-03 16:01:18 -05001680 "rbd", "snap_add",
Alex Elderd67d4be2012-07-13 20:35:11 -05001681 data, p - data, NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001682
Sage Weil916d4d62011-05-12 16:10:50 -07001683 kfree(data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001684
Alex Elder505cbb92012-07-19 08:49:18 -05001685 return ret < 0 ? ret : 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001686bad:
1687 return -ERANGE;
1688}
1689
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001690static void __rbd_remove_all_snaps(struct rbd_device *rbd_dev)
1691{
1692 struct rbd_snap *snap;
Alex Eldera0593292012-07-19 09:09:27 -05001693 struct rbd_snap *next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001694
Alex Eldera0593292012-07-19 09:09:27 -05001695 list_for_each_entry_safe(snap, next, &rbd_dev->snaps, node)
Alex Elder14e70852012-07-19 09:09:27 -05001696 __rbd_remove_snap_dev(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001697}
1698
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001699/*
1700 * only read the first part of the ondisk header, without the snaps info
1701 */
Josh Durgin263c6ca2011-12-05 10:43:42 -08001702static int __rbd_refresh_header(struct rbd_device *rbd_dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001703{
1704 int ret;
1705 struct rbd_image_header h;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001706
1707 ret = rbd_read_header(rbd_dev, &h);
1708 if (ret < 0)
1709 return ret;
1710
Josh Durgina51aa0c2011-12-05 10:35:04 -08001711 down_write(&rbd_dev->header_rwsem);
1712
Sage Weil9db4b3e2011-04-19 22:49:06 -07001713 /* resized? */
Josh Durgin474ef7c2011-11-21 17:13:54 -08001714 if (rbd_dev->snap_id == CEPH_NOSNAP) {
1715 sector_t size = (sector_t) h.image_size / SECTOR_SIZE;
1716
1717 dout("setting size to %llu sectors", (unsigned long long) size);
1718 set_capacity(rbd_dev->disk, size);
1719 }
Sage Weil9db4b3e2011-04-19 22:49:06 -07001720
Alex Elder849b4262012-07-09 21:04:24 -05001721 /* rbd_dev->header.object_prefix shouldn't change */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001722 kfree(rbd_dev->header.snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -05001723 kfree(rbd_dev->header.snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -08001724 /* osd requests may still refer to snapc */
1725 ceph_put_snap_context(rbd_dev->header.snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001726
Josh Durgina71b8912011-12-05 18:10:44 -08001727 rbd_dev->header.obj_version = h.obj_version;
Josh Durgin93a24e02011-12-05 10:41:28 -08001728 rbd_dev->header.image_size = h.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001729 rbd_dev->header.total_snaps = h.total_snaps;
1730 rbd_dev->header.snapc = h.snapc;
1731 rbd_dev->header.snap_names = h.snap_names;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001732 rbd_dev->header.snap_names_len = h.snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001733 rbd_dev->header.snap_sizes = h.snap_sizes;
Alex Elder849b4262012-07-09 21:04:24 -05001734 /* Free the extra copy of the object prefix */
1735 WARN_ON(strcmp(rbd_dev->header.object_prefix, h.object_prefix));
1736 kfree(h.object_prefix);
1737
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001738 ret = __rbd_init_snaps_header(rbd_dev);
1739
Josh Durginc6666012011-11-21 17:11:12 -08001740 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001741
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001742 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001743}
1744
1745static int rbd_init_disk(struct rbd_device *rbd_dev)
1746{
1747 struct gendisk *disk;
1748 struct request_queue *q;
1749 int rc;
Alex Elder593a9e72012-02-07 12:03:37 -06001750 u64 segment_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001751 u64 total_size = 0;
1752
1753 /* contact OSD, request size info about the object being mapped */
1754 rc = rbd_read_header(rbd_dev, &rbd_dev->header);
1755 if (rc)
1756 return rc;
1757
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001758 /* no need to lock here, as rbd_dev is not registered yet */
1759 rc = __rbd_init_snaps_header(rbd_dev);
1760 if (rc)
1761 return rc;
1762
Josh Durgincc9d7342011-11-21 18:19:13 -08001763 rc = rbd_header_set_snap(rbd_dev, &total_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001764 if (rc)
1765 return rc;
1766
1767 /* create gendisk info */
1768 rc = -ENOMEM;
1769 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
1770 if (!disk)
1771 goto out;
1772
Alex Elderf0f8cef2012-01-29 13:57:44 -06001773 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
Alex Elderde71a292012-07-03 16:01:19 -05001774 rbd_dev->dev_id);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001775 disk->major = rbd_dev->major;
1776 disk->first_minor = 0;
1777 disk->fops = &rbd_bd_ops;
1778 disk->private_data = rbd_dev;
1779
1780 /* init rq */
1781 rc = -ENOMEM;
1782 q = blk_init_queue(rbd_rq_fn, &rbd_dev->lock);
1783 if (!q)
1784 goto out_disk;
Josh Durgin029bcbd2011-07-22 11:35:23 -07001785
Alex Elder593a9e72012-02-07 12:03:37 -06001786 /* We use the default size, but let's be explicit about it. */
1787 blk_queue_physical_block_size(q, SECTOR_SIZE);
1788
Josh Durgin029bcbd2011-07-22 11:35:23 -07001789 /* set io sizes to object size */
Alex Elder593a9e72012-02-07 12:03:37 -06001790 segment_size = rbd_obj_bytes(&rbd_dev->header);
1791 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
1792 blk_queue_max_segment_size(q, segment_size);
1793 blk_queue_io_min(q, segment_size);
1794 blk_queue_io_opt(q, segment_size);
Josh Durgin029bcbd2011-07-22 11:35:23 -07001795
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001796 blk_queue_merge_bvec(q, rbd_merge_bvec);
1797 disk->queue = q;
1798
1799 q->queuedata = rbd_dev;
1800
1801 rbd_dev->disk = disk;
1802 rbd_dev->q = q;
1803
1804 /* finally, announce the disk to the world */
Alex Elder593a9e72012-02-07 12:03:37 -06001805 set_capacity(disk, total_size / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001806 add_disk(disk);
1807
1808 pr_info("%s: added with size 0x%llx\n",
1809 disk->disk_name, (unsigned long long)total_size);
1810 return 0;
1811
1812out_disk:
1813 put_disk(disk);
1814out:
1815 return rc;
1816}
1817
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001818/*
1819 sysfs
1820*/
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001821
Alex Elder593a9e72012-02-07 12:03:37 -06001822static struct rbd_device *dev_to_rbd_dev(struct device *dev)
1823{
1824 return container_of(dev, struct rbd_device, dev);
1825}
1826
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001827static ssize_t rbd_size_show(struct device *dev,
1828 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001829{
Alex Elder593a9e72012-02-07 12:03:37 -06001830 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Josh Durgina51aa0c2011-12-05 10:35:04 -08001831 sector_t size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001832
Josh Durgina51aa0c2011-12-05 10:35:04 -08001833 down_read(&rbd_dev->header_rwsem);
1834 size = get_capacity(rbd_dev->disk);
1835 up_read(&rbd_dev->header_rwsem);
1836
1837 return sprintf(buf, "%llu\n", (unsigned long long) size * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001838}
1839
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001840static ssize_t rbd_major_show(struct device *dev,
1841 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001842{
Alex Elder593a9e72012-02-07 12:03:37 -06001843 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001844
1845 return sprintf(buf, "%d\n", rbd_dev->major);
1846}
1847
1848static ssize_t rbd_client_id_show(struct device *dev,
1849 struct device_attribute *attr, char *buf)
1850{
Alex Elder593a9e72012-02-07 12:03:37 -06001851 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001852
Alex Elder1dbb4392012-01-24 10:08:37 -06001853 return sprintf(buf, "client%lld\n",
1854 ceph_client_id(rbd_dev->rbd_client->client));
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001855}
1856
1857static ssize_t rbd_pool_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
1862 return sprintf(buf, "%s\n", rbd_dev->pool_name);
1863}
1864
Alex Elder9bb2f332012-07-12 10:46:35 -05001865static ssize_t rbd_pool_id_show(struct device *dev,
1866 struct device_attribute *attr, char *buf)
1867{
1868 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
1869
1870 return sprintf(buf, "%d\n", rbd_dev->pool_id);
1871}
1872
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001873static ssize_t rbd_name_show(struct device *dev,
1874 struct device_attribute *attr, char *buf)
1875{
Alex Elder593a9e72012-02-07 12:03:37 -06001876 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001877
Alex Elder0bed54d2012-07-03 16:01:18 -05001878 return sprintf(buf, "%s\n", rbd_dev->image_name);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001879}
1880
1881static ssize_t rbd_snap_show(struct device *dev,
1882 struct device_attribute *attr,
1883 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
1887 return sprintf(buf, "%s\n", rbd_dev->snap_name);
1888}
1889
1890static ssize_t rbd_image_refresh(struct device *dev,
1891 struct device_attribute *attr,
1892 const char *buf,
1893 size_t size)
1894{
Alex Elder593a9e72012-02-07 12:03:37 -06001895 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001896 int rc;
1897 int ret = size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001898
1899 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
1900
Josh Durgin263c6ca2011-12-05 10:43:42 -08001901 rc = __rbd_refresh_header(rbd_dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001902 if (rc < 0)
1903 ret = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001904
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001905 mutex_unlock(&ctl_mutex);
1906 return ret;
1907}
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001908
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001909static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
1910static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
1911static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
1912static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
Alex Elder9bb2f332012-07-12 10:46:35 -05001913static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001914static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
1915static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
1916static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
1917static DEVICE_ATTR(create_snap, S_IWUSR, NULL, rbd_snap_add);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001918
1919static struct attribute *rbd_attrs[] = {
1920 &dev_attr_size.attr,
1921 &dev_attr_major.attr,
1922 &dev_attr_client_id.attr,
1923 &dev_attr_pool.attr,
Alex Elder9bb2f332012-07-12 10:46:35 -05001924 &dev_attr_pool_id.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001925 &dev_attr_name.attr,
1926 &dev_attr_current_snap.attr,
1927 &dev_attr_refresh.attr,
1928 &dev_attr_create_snap.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001929 NULL
1930};
1931
1932static struct attribute_group rbd_attr_group = {
1933 .attrs = rbd_attrs,
1934};
1935
1936static const struct attribute_group *rbd_attr_groups[] = {
1937 &rbd_attr_group,
1938 NULL
1939};
1940
1941static void rbd_sysfs_dev_release(struct device *dev)
1942{
1943}
1944
1945static struct device_type rbd_device_type = {
1946 .name = "rbd",
1947 .groups = rbd_attr_groups,
1948 .release = rbd_sysfs_dev_release,
1949};
1950
1951
1952/*
1953 sysfs - snapshots
1954*/
1955
1956static ssize_t rbd_snap_size_show(struct device *dev,
1957 struct device_attribute *attr,
1958 char *buf)
1959{
1960 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1961
Josh Durgin35915382011-12-05 18:25:13 -08001962 return sprintf(buf, "%llu\n", (unsigned long long)snap->size);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001963}
1964
1965static ssize_t rbd_snap_id_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->id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001972}
1973
1974static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
1975static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
1976
1977static struct attribute *rbd_snap_attrs[] = {
1978 &dev_attr_snap_size.attr,
1979 &dev_attr_snap_id.attr,
1980 NULL,
1981};
1982
1983static struct attribute_group rbd_snap_attr_group = {
1984 .attrs = rbd_snap_attrs,
1985};
1986
1987static void rbd_snap_dev_release(struct device *dev)
1988{
1989 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1990 kfree(snap->name);
1991 kfree(snap);
1992}
1993
1994static const struct attribute_group *rbd_snap_attr_groups[] = {
1995 &rbd_snap_attr_group,
1996 NULL
1997};
1998
1999static struct device_type rbd_snap_device_type = {
2000 .groups = rbd_snap_attr_groups,
2001 .release = rbd_snap_dev_release,
2002};
2003
Alex Elder14e70852012-07-19 09:09:27 -05002004static void __rbd_remove_snap_dev(struct rbd_snap *snap)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002005{
2006 list_del(&snap->node);
2007 device_unregister(&snap->dev);
2008}
2009
Alex Elder14e70852012-07-19 09:09:27 -05002010static int rbd_register_snap_dev(struct rbd_snap *snap,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002011 struct device *parent)
2012{
2013 struct device *dev = &snap->dev;
2014 int ret;
2015
2016 dev->type = &rbd_snap_device_type;
2017 dev->parent = parent;
2018 dev->release = rbd_snap_dev_release;
2019 dev_set_name(dev, "snap_%s", snap->name);
2020 ret = device_register(dev);
2021
2022 return ret;
2023}
2024
Alex Elder4e891e02012-07-10 20:30:10 -05002025static struct rbd_snap *__rbd_add_snap_dev(struct rbd_device *rbd_dev,
2026 int i, const char *name)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002027{
Alex Elder4e891e02012-07-10 20:30:10 -05002028 struct rbd_snap *snap;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002029 int ret;
Alex Elder4e891e02012-07-10 20:30:10 -05002030
2031 snap = kzalloc(sizeof (*snap), GFP_KERNEL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002032 if (!snap)
Alex Elder4e891e02012-07-10 20:30:10 -05002033 return ERR_PTR(-ENOMEM);
2034
2035 ret = -ENOMEM;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002036 snap->name = kstrdup(name, GFP_KERNEL);
Alex Elder4e891e02012-07-10 20:30:10 -05002037 if (!snap->name)
2038 goto err;
2039
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002040 snap->size = rbd_dev->header.snap_sizes[i];
2041 snap->id = rbd_dev->header.snapc->snaps[i];
2042 if (device_is_registered(&rbd_dev->dev)) {
Alex Elder14e70852012-07-19 09:09:27 -05002043 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002044 if (ret < 0)
2045 goto err;
2046 }
Alex Elder4e891e02012-07-10 20:30:10 -05002047
2048 return snap;
2049
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002050err:
2051 kfree(snap->name);
2052 kfree(snap);
Alex Elder4e891e02012-07-10 20:30:10 -05002053
2054 return ERR_PTR(ret);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002055}
2056
2057/*
2058 * search for the previous snap in a null delimited string list
2059 */
2060const char *rbd_prev_snap_name(const char *name, const char *start)
2061{
2062 if (name < start + 2)
2063 return NULL;
2064
2065 name -= 2;
2066 while (*name) {
2067 if (name == start)
2068 return start;
2069 name--;
2070 }
2071 return name + 1;
2072}
2073
2074/*
2075 * compare the old list of snapshots that we have to what's in the header
2076 * and update it accordingly. Note that the header holds the snapshots
2077 * in a reverse order (from newest to oldest) and we need to go from
2078 * older to new so that we don't get a duplicate snap name when
2079 * doing the process (e.g., removed snapshot and recreated a new
2080 * one with the same name.
2081 */
2082static int __rbd_init_snaps_header(struct rbd_device *rbd_dev)
2083{
2084 const char *name, *first_name;
2085 int i = rbd_dev->header.total_snaps;
2086 struct rbd_snap *snap, *old_snap = NULL;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002087 struct list_head *p, *n;
2088
2089 first_name = rbd_dev->header.snap_names;
2090 name = first_name + rbd_dev->header.snap_names_len;
2091
2092 list_for_each_prev_safe(p, n, &rbd_dev->snaps) {
2093 u64 cur_id;
2094
2095 old_snap = list_entry(p, struct rbd_snap, node);
2096
2097 if (i)
2098 cur_id = rbd_dev->header.snapc->snaps[i - 1];
2099
2100 if (!i || old_snap->id < cur_id) {
Josh Durgine88a36e2011-11-21 18:14:25 -08002101 /*
2102 * old_snap->id was skipped, thus was
2103 * removed. If this rbd_dev is mapped to
2104 * the removed snapshot, record that it no
2105 * longer exists, to prevent further I/O.
2106 */
2107 if (rbd_dev->snap_id == old_snap->id)
2108 rbd_dev->snap_exists = false;
Alex Elder14e70852012-07-19 09:09:27 -05002109 __rbd_remove_snap_dev(old_snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002110 continue;
2111 }
2112 if (old_snap->id == cur_id) {
2113 /* we have this snapshot already */
2114 i--;
2115 name = rbd_prev_snap_name(name, first_name);
2116 continue;
2117 }
2118 for (; i > 0;
2119 i--, name = rbd_prev_snap_name(name, first_name)) {
2120 if (!name) {
2121 WARN_ON(1);
2122 return -EINVAL;
2123 }
2124 cur_id = rbd_dev->header.snapc->snaps[i];
2125 /* snapshot removal? handle it above */
2126 if (cur_id >= old_snap->id)
2127 break;
2128 /* a new snapshot */
Alex Elder4e891e02012-07-10 20:30:10 -05002129 snap = __rbd_add_snap_dev(rbd_dev, i - 1, name);
2130 if (IS_ERR(snap))
2131 return PTR_ERR(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002132
2133 /* note that we add it backward so using n and not p */
2134 list_add(&snap->node, n);
2135 p = &snap->node;
2136 }
2137 }
2138 /* we're done going over the old snap list, just add what's left */
2139 for (; i > 0; i--) {
2140 name = rbd_prev_snap_name(name, first_name);
2141 if (!name) {
2142 WARN_ON(1);
2143 return -EINVAL;
2144 }
Alex Elder4e891e02012-07-10 20:30:10 -05002145 snap = __rbd_add_snap_dev(rbd_dev, i - 1, name);
2146 if (IS_ERR(snap))
2147 return PTR_ERR(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002148 list_add(&snap->node, &rbd_dev->snaps);
2149 }
2150
2151 return 0;
2152}
2153
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002154static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
2155{
Alex Elderf0f8cef2012-01-29 13:57:44 -06002156 int ret;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002157 struct device *dev;
2158 struct rbd_snap *snap;
2159
2160 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2161 dev = &rbd_dev->dev;
2162
2163 dev->bus = &rbd_bus_type;
2164 dev->type = &rbd_device_type;
2165 dev->parent = &rbd_root_dev;
2166 dev->release = rbd_dev_release;
Alex Elderde71a292012-07-03 16:01:19 -05002167 dev_set_name(dev, "%d", rbd_dev->dev_id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002168 ret = device_register(dev);
2169 if (ret < 0)
Alex Elderf0f8cef2012-01-29 13:57:44 -06002170 goto out;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002171
2172 list_for_each_entry(snap, &rbd_dev->snaps, node) {
Alex Elder14e70852012-07-19 09:09:27 -05002173 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002174 if (ret < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002175 break;
2176 }
Alex Elderf0f8cef2012-01-29 13:57:44 -06002177out:
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002178 mutex_unlock(&ctl_mutex);
2179 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002180}
2181
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002182static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
2183{
2184 device_unregister(&rbd_dev->dev);
2185}
2186
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002187static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
2188{
2189 int ret, rc;
2190
2191 do {
Alex Elder0e6f3222012-07-25 09:32:40 -05002192 ret = rbd_req_sync_watch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002193 if (ret == -ERANGE) {
2194 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Josh Durgin263c6ca2011-12-05 10:43:42 -08002195 rc = __rbd_refresh_header(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002196 mutex_unlock(&ctl_mutex);
2197 if (rc < 0)
2198 return rc;
2199 }
2200 } while (ret == -ERANGE);
2201
2202 return ret;
2203}
2204
Alex Elder1ddbe942012-01-29 13:57:44 -06002205static atomic64_t rbd_id_max = ATOMIC64_INIT(0);
2206
2207/*
Alex Elder499afd52012-02-02 08:13:29 -06002208 * Get a unique rbd identifier for the given new rbd_dev, and add
2209 * the rbd_dev to the global list. The minimum rbd id is 1.
Alex Elder1ddbe942012-01-29 13:57:44 -06002210 */
Alex Elder499afd52012-02-02 08:13:29 -06002211static void rbd_id_get(struct rbd_device *rbd_dev)
Alex Elderb7f23c32012-01-29 13:57:43 -06002212{
Alex Elderde71a292012-07-03 16:01:19 -05002213 rbd_dev->dev_id = atomic64_inc_return(&rbd_id_max);
Alex Elder499afd52012-02-02 08:13:29 -06002214
2215 spin_lock(&rbd_dev_list_lock);
2216 list_add_tail(&rbd_dev->node, &rbd_dev_list);
2217 spin_unlock(&rbd_dev_list_lock);
Alex Elder1ddbe942012-01-29 13:57:44 -06002218}
Alex Elderb7f23c32012-01-29 13:57:43 -06002219
Alex Elder1ddbe942012-01-29 13:57:44 -06002220/*
Alex Elder499afd52012-02-02 08:13:29 -06002221 * Remove an rbd_dev from the global list, and record that its
2222 * identifier is no longer in use.
Alex Elder1ddbe942012-01-29 13:57:44 -06002223 */
Alex Elder499afd52012-02-02 08:13:29 -06002224static void rbd_id_put(struct rbd_device *rbd_dev)
Alex Elder1ddbe942012-01-29 13:57:44 -06002225{
Alex Elderd184f6b2012-01-29 13:57:44 -06002226 struct list_head *tmp;
Alex Elderde71a292012-07-03 16:01:19 -05002227 int rbd_id = rbd_dev->dev_id;
Alex Elderd184f6b2012-01-29 13:57:44 -06002228 int max_id;
2229
2230 BUG_ON(rbd_id < 1);
Alex Elder499afd52012-02-02 08:13:29 -06002231
2232 spin_lock(&rbd_dev_list_lock);
2233 list_del_init(&rbd_dev->node);
Alex Elderd184f6b2012-01-29 13:57:44 -06002234
2235 /*
2236 * If the id being "put" is not the current maximum, there
2237 * is nothing special we need to do.
2238 */
2239 if (rbd_id != atomic64_read(&rbd_id_max)) {
2240 spin_unlock(&rbd_dev_list_lock);
2241 return;
2242 }
2243
2244 /*
2245 * We need to update the current maximum id. Search the
2246 * list to find out what it is. We're more likely to find
2247 * the maximum at the end, so search the list backward.
2248 */
2249 max_id = 0;
2250 list_for_each_prev(tmp, &rbd_dev_list) {
2251 struct rbd_device *rbd_dev;
2252
2253 rbd_dev = list_entry(tmp, struct rbd_device, node);
2254 if (rbd_id > max_id)
2255 max_id = rbd_id;
2256 }
Alex Elder499afd52012-02-02 08:13:29 -06002257 spin_unlock(&rbd_dev_list_lock);
Alex Elderb7f23c32012-01-29 13:57:43 -06002258
Alex Elder1ddbe942012-01-29 13:57:44 -06002259 /*
Alex Elderd184f6b2012-01-29 13:57:44 -06002260 * The max id could have been updated by rbd_id_get(), in
2261 * which case it now accurately reflects the new maximum.
2262 * Be careful not to overwrite the maximum value in that
2263 * case.
Alex Elder1ddbe942012-01-29 13:57:44 -06002264 */
Alex Elderd184f6b2012-01-29 13:57:44 -06002265 atomic64_cmpxchg(&rbd_id_max, rbd_id, max_id);
Alex Elderb7f23c32012-01-29 13:57:43 -06002266}
2267
Alex Eldera725f65e2012-02-02 08:13:30 -06002268/*
Alex Eldere28fff262012-02-02 08:13:30 -06002269 * Skips over white space at *buf, and updates *buf to point to the
2270 * first found non-space character (if any). Returns the length of
Alex Elder593a9e72012-02-07 12:03:37 -06002271 * the token (string of non-white space characters) found. Note
2272 * that *buf must be terminated with '\0'.
Alex Eldere28fff262012-02-02 08:13:30 -06002273 */
2274static inline size_t next_token(const char **buf)
2275{
2276 /*
2277 * These are the characters that produce nonzero for
2278 * isspace() in the "C" and "POSIX" locales.
2279 */
2280 const char *spaces = " \f\n\r\t\v";
2281
2282 *buf += strspn(*buf, spaces); /* Find start of token */
2283
2284 return strcspn(*buf, spaces); /* Return token length */
2285}
2286
2287/*
2288 * Finds the next token in *buf, and if the provided token buffer is
2289 * big enough, copies the found token into it. The result, if
Alex Elder593a9e72012-02-07 12:03:37 -06002290 * copied, is guaranteed to be terminated with '\0'. Note that *buf
2291 * must be terminated with '\0' on entry.
Alex Eldere28fff262012-02-02 08:13:30 -06002292 *
2293 * Returns the length of the token found (not including the '\0').
2294 * Return value will be 0 if no token is found, and it will be >=
2295 * token_size if the token would not fit.
2296 *
Alex Elder593a9e72012-02-07 12:03:37 -06002297 * The *buf pointer will be updated to point beyond the end of the
Alex Eldere28fff262012-02-02 08:13:30 -06002298 * found token. Note that this occurs even if the token buffer is
2299 * too small to hold it.
2300 */
2301static inline size_t copy_token(const char **buf,
2302 char *token,
2303 size_t token_size)
2304{
2305 size_t len;
2306
2307 len = next_token(buf);
2308 if (len < token_size) {
2309 memcpy(token, *buf, len);
2310 *(token + len) = '\0';
2311 }
2312 *buf += len;
2313
2314 return len;
2315}
2316
2317/*
Alex Elderea3352f2012-07-09 21:04:23 -05002318 * Finds the next token in *buf, dynamically allocates a buffer big
2319 * enough to hold a copy of it, and copies the token into the new
2320 * buffer. The copy is guaranteed to be terminated with '\0'. Note
2321 * that a duplicate buffer is created even for a zero-length token.
2322 *
2323 * Returns a pointer to the newly-allocated duplicate, or a null
2324 * pointer if memory for the duplicate was not available. If
2325 * the lenp argument is a non-null pointer, the length of the token
2326 * (not including the '\0') is returned in *lenp.
2327 *
2328 * If successful, the *buf pointer will be updated to point beyond
2329 * the end of the found token.
2330 *
2331 * Note: uses GFP_KERNEL for allocation.
2332 */
2333static inline char *dup_token(const char **buf, size_t *lenp)
2334{
2335 char *dup;
2336 size_t len;
2337
2338 len = next_token(buf);
2339 dup = kmalloc(len + 1, GFP_KERNEL);
2340 if (!dup)
2341 return NULL;
2342
2343 memcpy(dup, *buf, len);
2344 *(dup + len) = '\0';
2345 *buf += len;
2346
2347 if (lenp)
2348 *lenp = len;
2349
2350 return dup;
2351}
2352
2353/*
Alex Elder0bed54d2012-07-03 16:01:18 -05002354 * This fills in the pool_name, image_name, image_name_len, snap_name,
Alex Eldera725f65e2012-02-02 08:13:30 -06002355 * rbd_dev, rbd_md_name, and name fields of the given rbd_dev, based
2356 * on the list of monitor addresses and other options provided via
2357 * /sys/bus/rbd/add.
Alex Elderd22f76e2012-07-12 10:46:35 -05002358 *
2359 * Note: rbd_dev is assumed to have been initially zero-filled.
Alex Eldera725f65e2012-02-02 08:13:30 -06002360 */
2361static int rbd_add_parse_args(struct rbd_device *rbd_dev,
2362 const char *buf,
Alex Elder7ef32142012-02-02 08:13:30 -06002363 const char **mon_addrs,
Alex Elder5214ecc2012-02-02 08:13:30 -06002364 size_t *mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002365 char *options,
Alex Elder0bed54d2012-07-03 16:01:18 -05002366 size_t options_size)
Alex Eldera725f65e2012-02-02 08:13:30 -06002367{
Alex Elderd22f76e2012-07-12 10:46:35 -05002368 size_t len;
2369 int ret;
Alex Eldere28fff262012-02-02 08:13:30 -06002370
2371 /* The first four tokens are required */
2372
Alex Elder7ef32142012-02-02 08:13:30 -06002373 len = next_token(&buf);
2374 if (!len)
Alex Eldera725f65e2012-02-02 08:13:30 -06002375 return -EINVAL;
Alex Elder5214ecc2012-02-02 08:13:30 -06002376 *mon_addrs_size = len + 1;
Alex Elder7ef32142012-02-02 08:13:30 -06002377 *mon_addrs = buf;
2378
2379 buf += len;
Alex Eldera725f65e2012-02-02 08:13:30 -06002380
Alex Eldere28fff262012-02-02 08:13:30 -06002381 len = copy_token(&buf, options, options_size);
2382 if (!len || len >= options_size)
2383 return -EINVAL;
Alex Eldera725f65e2012-02-02 08:13:30 -06002384
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002385 ret = -ENOMEM;
Alex Elderd22f76e2012-07-12 10:46:35 -05002386 rbd_dev->pool_name = dup_token(&buf, NULL);
2387 if (!rbd_dev->pool_name)
Alex Elderd22f76e2012-07-12 10:46:35 -05002388 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002389
Alex Elder0bed54d2012-07-03 16:01:18 -05002390 rbd_dev->image_name = dup_token(&buf, &rbd_dev->image_name_len);
2391 if (!rbd_dev->image_name)
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002392 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002393
Alex Eldercb8627c2012-07-09 21:04:23 -05002394 /* Create the name of the header object */
2395
Alex Elder0bed54d2012-07-03 16:01:18 -05002396 rbd_dev->header_name = kmalloc(rbd_dev->image_name_len
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002397 + sizeof (RBD_SUFFIX),
2398 GFP_KERNEL);
Alex Elder0bed54d2012-07-03 16:01:18 -05002399 if (!rbd_dev->header_name)
Alex Eldercb8627c2012-07-09 21:04:23 -05002400 goto out_err;
Alex Elder0bed54d2012-07-03 16:01:18 -05002401 sprintf(rbd_dev->header_name, "%s%s", rbd_dev->image_name, RBD_SUFFIX);
Alex Eldera725f65e2012-02-02 08:13:30 -06002402
Alex Eldere28fff262012-02-02 08:13:30 -06002403 /*
Alex Elder820a5f32012-07-09 21:04:24 -05002404 * The snapshot name is optional. If none is is supplied,
2405 * we use the default value.
Alex Eldere28fff262012-02-02 08:13:30 -06002406 */
Alex Elder820a5f32012-07-09 21:04:24 -05002407 rbd_dev->snap_name = dup_token(&buf, &len);
2408 if (!rbd_dev->snap_name)
2409 goto out_err;
2410 if (!len) {
2411 /* Replace the empty name with the default */
2412 kfree(rbd_dev->snap_name);
2413 rbd_dev->snap_name
2414 = kmalloc(sizeof (RBD_SNAP_HEAD_NAME), GFP_KERNEL);
2415 if (!rbd_dev->snap_name)
2416 goto out_err;
2417
Alex Eldere28fff262012-02-02 08:13:30 -06002418 memcpy(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
2419 sizeof (RBD_SNAP_HEAD_NAME));
Alex Elder849b4262012-07-09 21:04:24 -05002420 }
Alex Eldere28fff262012-02-02 08:13:30 -06002421
Alex Eldera725f65e2012-02-02 08:13:30 -06002422 return 0;
Alex Elderd22f76e2012-07-12 10:46:35 -05002423
2424out_err:
Alex Elder0bed54d2012-07-03 16:01:18 -05002425 kfree(rbd_dev->header_name);
2426 kfree(rbd_dev->image_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002427 kfree(rbd_dev->pool_name);
2428 rbd_dev->pool_name = NULL;
2429
2430 return ret;
Alex Eldera725f65e2012-02-02 08:13:30 -06002431}
2432
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002433static ssize_t rbd_add(struct bus_type *bus,
2434 const char *buf,
2435 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002436{
Alex Eldercb8627c2012-07-09 21:04:23 -05002437 char *options;
2438 struct rbd_device *rbd_dev = NULL;
Alex Elder7ef32142012-02-02 08:13:30 -06002439 const char *mon_addrs = NULL;
2440 size_t mon_addrs_size = 0;
Alex Elder27cc2592012-02-02 08:13:30 -06002441 struct ceph_osd_client *osdc;
2442 int rc = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002443
2444 if (!try_module_get(THIS_MODULE))
2445 return -ENODEV;
2446
Alex Elder27cc2592012-02-02 08:13:30 -06002447 options = kmalloc(count, GFP_KERNEL);
2448 if (!options)
2449 goto err_nomem;
Alex Eldercb8627c2012-07-09 21:04:23 -05002450 rbd_dev = kzalloc(sizeof(*rbd_dev), GFP_KERNEL);
2451 if (!rbd_dev)
2452 goto err_nomem;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002453
2454 /* static rbd_device initialization */
2455 spin_lock_init(&rbd_dev->lock);
2456 INIT_LIST_HEAD(&rbd_dev->node);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002457 INIT_LIST_HEAD(&rbd_dev->snaps);
Josh Durginc6666012011-11-21 17:11:12 -08002458 init_rwsem(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002459
Alex Elderd184f6b2012-01-29 13:57:44 -06002460 /* generate unique id: find highest unique id, add one */
Alex Elder499afd52012-02-02 08:13:29 -06002461 rbd_id_get(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002462
Alex Eldera725f65e2012-02-02 08:13:30 -06002463 /* Fill in the device name, now that we have its id. */
Alex Elder81a89792012-02-02 08:13:30 -06002464 BUILD_BUG_ON(DEV_NAME_LEN
2465 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
Alex Elderde71a292012-07-03 16:01:19 -05002466 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
Alex Eldere124a822012-01-29 13:57:44 -06002467
Alex Eldera725f65e2012-02-02 08:13:30 -06002468 /* parse add command */
Alex Elder7ef32142012-02-02 08:13:30 -06002469 rc = rbd_add_parse_args(rbd_dev, buf, &mon_addrs, &mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002470 options, count);
Alex Eldera725f65e2012-02-02 08:13:30 -06002471 if (rc)
2472 goto err_put_id;
2473
Alex Elder5214ecc2012-02-02 08:13:30 -06002474 rbd_dev->rbd_client = rbd_get_client(mon_addrs, mon_addrs_size - 1,
2475 options);
Alex Elderd720bcb2012-02-02 08:13:30 -06002476 if (IS_ERR(rbd_dev->rbd_client)) {
2477 rc = PTR_ERR(rbd_dev->rbd_client);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002478 goto err_put_id;
Alex Elderd720bcb2012-02-02 08:13:30 -06002479 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002480
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002481 /* pick the pool */
Alex Elder1dbb4392012-01-24 10:08:37 -06002482 osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002483 rc = ceph_pg_poolid_by_name(osdc->osdmap, rbd_dev->pool_name);
2484 if (rc < 0)
2485 goto err_out_client;
Alex Elder9bb2f332012-07-12 10:46:35 -05002486 rbd_dev->pool_id = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002487
2488 /* register our block device */
Alex Elder27cc2592012-02-02 08:13:30 -06002489 rc = register_blkdev(0, rbd_dev->name);
2490 if (rc < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002491 goto err_out_client;
Alex Elder27cc2592012-02-02 08:13:30 -06002492 rbd_dev->major = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002493
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002494 rc = rbd_bus_add_dev(rbd_dev);
2495 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002496 goto err_out_blkdev;
2497
Alex Elder32eec682012-02-08 16:11:14 -06002498 /*
2499 * At this point cleanup in the event of an error is the job
2500 * of the sysfs code (initiated by rbd_bus_del_dev()).
2501 *
2502 * Set up and announce blkdev mapping.
2503 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002504 rc = rbd_init_disk(rbd_dev);
2505 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002506 goto err_out_bus;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002507
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002508 rc = rbd_init_watch_dev(rbd_dev);
2509 if (rc)
2510 goto err_out_bus;
2511
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002512 return count;
2513
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002514err_out_bus:
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002515 /* this will also clean up rest of rbd_dev stuff */
2516
2517 rbd_bus_del_dev(rbd_dev);
2518 kfree(options);
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002519 return rc;
2520
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002521err_out_blkdev:
2522 unregister_blkdev(rbd_dev->major, rbd_dev->name);
2523err_out_client:
2524 rbd_put_client(rbd_dev);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002525err_put_id:
Alex Eldercb8627c2012-07-09 21:04:23 -05002526 if (rbd_dev->pool_name) {
Alex Elder820a5f32012-07-09 21:04:24 -05002527 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002528 kfree(rbd_dev->header_name);
2529 kfree(rbd_dev->image_name);
Alex Eldercb8627c2012-07-09 21:04:23 -05002530 kfree(rbd_dev->pool_name);
2531 }
Alex Elder499afd52012-02-02 08:13:29 -06002532 rbd_id_put(rbd_dev);
Alex Elder27cc2592012-02-02 08:13:30 -06002533err_nomem:
Alex Elder27cc2592012-02-02 08:13:30 -06002534 kfree(rbd_dev);
Alex Eldercb8627c2012-07-09 21:04:23 -05002535 kfree(options);
Alex Elder27cc2592012-02-02 08:13:30 -06002536
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002537 dout("Error adding device %s\n", buf);
2538 module_put(THIS_MODULE);
Alex Elder27cc2592012-02-02 08:13:30 -06002539
2540 return (ssize_t) rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002541}
2542
Alex Elderde71a292012-07-03 16:01:19 -05002543static struct rbd_device *__rbd_get_dev(unsigned long dev_id)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002544{
2545 struct list_head *tmp;
2546 struct rbd_device *rbd_dev;
2547
Alex Eldere124a822012-01-29 13:57:44 -06002548 spin_lock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002549 list_for_each(tmp, &rbd_dev_list) {
2550 rbd_dev = list_entry(tmp, struct rbd_device, node);
Alex Elderde71a292012-07-03 16:01:19 -05002551 if (rbd_dev->dev_id == dev_id) {
Alex Eldere124a822012-01-29 13:57:44 -06002552 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002553 return rbd_dev;
Alex Eldere124a822012-01-29 13:57:44 -06002554 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002555 }
Alex Eldere124a822012-01-29 13:57:44 -06002556 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002557 return NULL;
2558}
2559
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002560static void rbd_dev_release(struct device *dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002561{
Alex Elder593a9e72012-02-07 12:03:37 -06002562 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002563
Alex Elder1dbb4392012-01-24 10:08:37 -06002564 if (rbd_dev->watch_request) {
2565 struct ceph_client *client = rbd_dev->rbd_client->client;
2566
2567 ceph_osdc_unregister_linger_request(&client->osdc,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002568 rbd_dev->watch_request);
Alex Elder1dbb4392012-01-24 10:08:37 -06002569 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002570 if (rbd_dev->watch_event)
Alex Elder070c6332012-07-25 09:32:41 -05002571 rbd_req_sync_unwatch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002572
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002573 rbd_put_client(rbd_dev);
2574
2575 /* clean up and free blkdev */
2576 rbd_free_disk(rbd_dev);
2577 unregister_blkdev(rbd_dev->major, rbd_dev->name);
Alex Elder32eec682012-02-08 16:11:14 -06002578
2579 /* done with the id, and with the rbd_dev */
Alex Elder820a5f32012-07-09 21:04:24 -05002580 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002581 kfree(rbd_dev->header_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002582 kfree(rbd_dev->pool_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002583 kfree(rbd_dev->image_name);
Alex Elder32eec682012-02-08 16:11:14 -06002584 rbd_id_put(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002585 kfree(rbd_dev);
2586
2587 /* release module ref */
2588 module_put(THIS_MODULE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002589}
2590
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002591static ssize_t rbd_remove(struct bus_type *bus,
2592 const char *buf,
2593 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002594{
2595 struct rbd_device *rbd_dev = NULL;
2596 int target_id, rc;
2597 unsigned long ul;
2598 int ret = count;
2599
2600 rc = strict_strtoul(buf, 10, &ul);
2601 if (rc)
2602 return rc;
2603
2604 /* convert to int; abort if we lost anything in the conversion */
2605 target_id = (int) ul;
2606 if (target_id != ul)
2607 return -EINVAL;
2608
2609 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2610
2611 rbd_dev = __rbd_get_dev(target_id);
2612 if (!rbd_dev) {
2613 ret = -ENOENT;
2614 goto done;
2615 }
2616
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002617 __rbd_remove_all_snaps(rbd_dev);
2618 rbd_bus_del_dev(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002619
2620done:
2621 mutex_unlock(&ctl_mutex);
2622 return ret;
2623}
2624
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002625static ssize_t rbd_snap_add(struct device *dev,
2626 struct device_attribute *attr,
2627 const char *buf,
2628 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002629{
Alex Elder593a9e72012-02-07 12:03:37 -06002630 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002631 int ret;
2632 char *name = kmalloc(count + 1, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002633 if (!name)
2634 return -ENOMEM;
2635
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002636 snprintf(name, count, "%s", buf);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002637
2638 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2639
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002640 ret = rbd_header_add_snap(rbd_dev,
2641 name, GFP_KERNEL);
2642 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002643 goto err_unlock;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002644
Josh Durgin263c6ca2011-12-05 10:43:42 -08002645 ret = __rbd_refresh_header(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002646 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002647 goto err_unlock;
2648
2649 /* shouldn't hold ctl_mutex when notifying.. notify might
2650 trigger a watch callback that would need to get that mutex */
2651 mutex_unlock(&ctl_mutex);
2652
2653 /* make a best effort, don't error if failed */
Alex Elder4cb16252012-07-25 09:32:40 -05002654 rbd_req_sync_notify(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002655
2656 ret = count;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002657 kfree(name);
2658 return ret;
2659
2660err_unlock:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002661 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002662 kfree(name);
2663 return ret;
2664}
2665
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002666/*
2667 * create control files in sysfs
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002668 * /sys/bus/rbd/...
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002669 */
2670static int rbd_sysfs_init(void)
2671{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002672 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002673
Alex Elderfed4c142012-02-07 12:03:36 -06002674 ret = device_register(&rbd_root_dev);
Alex Elder21079782012-01-24 10:08:36 -06002675 if (ret < 0)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002676 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002677
Alex Elderfed4c142012-02-07 12:03:36 -06002678 ret = bus_register(&rbd_bus_type);
2679 if (ret < 0)
2680 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002681
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002682 return ret;
2683}
2684
2685static void rbd_sysfs_cleanup(void)
2686{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002687 bus_unregister(&rbd_bus_type);
Alex Elderfed4c142012-02-07 12:03:36 -06002688 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002689}
2690
2691int __init rbd_init(void)
2692{
2693 int rc;
2694
2695 rc = rbd_sysfs_init();
2696 if (rc)
2697 return rc;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002698 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002699 return 0;
2700}
2701
2702void __exit rbd_exit(void)
2703{
2704 rbd_sysfs_cleanup();
2705}
2706
2707module_init(rbd_init);
2708module_exit(rbd_exit);
2709
2710MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
2711MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
2712MODULE_DESCRIPTION("rados block device");
2713
2714/* following authorship retained from original osdblk.c */
2715MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
2716
2717MODULE_LICENSE("GPL");