blob: 6bbd5af1f029bd809efaf042e18d26d5fcd5a21b [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
Alex Elder21079782012-01-24 10:08:36 -060058#define RBD_MAX_MD_NAME_LEN (RBD_MAX_OBJ_NAME_LEN + sizeof(RBD_SUFFIX))
Yehuda Sadeh602adf42010-08-12 16:11:25 -070059#define RBD_MAX_POOL_NAME_LEN 64
60#define RBD_MAX_SNAP_NAME_LEN 32
61#define RBD_MAX_OPT_LEN 1024
62
63#define RBD_SNAP_HEAD_NAME "-"
64
Alex Elder81a89792012-02-02 08:13:30 -060065/*
66 * An RBD device name will be "rbd#", where the "rbd" comes from
67 * RBD_DRV_NAME above, and # is a unique integer identifier.
68 * MAX_INT_FORMAT_WIDTH is used in ensuring DEV_NAME_LEN is big
69 * enough to hold all possible device names.
70 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -070071#define DEV_NAME_LEN 32
Alex Elder81a89792012-02-02 08:13:30 -060072#define MAX_INT_FORMAT_WIDTH ((5 * sizeof (int)) / 2 + 1)
Yehuda Sadeh602adf42010-08-12 16:11:25 -070073
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070074#define RBD_NOTIFY_TIMEOUT_DEFAULT 10
75
Yehuda Sadeh602adf42010-08-12 16:11:25 -070076/*
77 * block device image metadata (in-memory version)
78 */
79struct rbd_image_header {
80 u64 image_size;
81 char block_name[32];
82 __u8 obj_order;
83 __u8 crypt_type;
84 __u8 comp_type;
85 struct rw_semaphore snap_rwsem;
86 struct ceph_snap_context *snapc;
87 size_t snap_names_len;
88 u64 snap_seq;
89 u32 total_snaps;
90
91 char *snap_names;
92 u64 *snap_sizes;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070093
94 u64 obj_version;
95};
96
97struct rbd_options {
98 int notify_timeout;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070099};
100
101/*
Alex Elderf0f8cef2012-01-29 13:57:44 -0600102 * an instance of the client. multiple devices may share an rbd client.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700103 */
104struct rbd_client {
105 struct ceph_client *client;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700106 struct rbd_options *rbd_opts;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700107 struct kref kref;
108 struct list_head node;
109};
110
111/*
Alex Elderf0f8cef2012-01-29 13:57:44 -0600112 * a request completion status
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700113 */
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700114struct rbd_req_status {
115 int done;
116 int rc;
117 u64 bytes;
118};
119
120/*
121 * a collection of requests
122 */
123struct rbd_req_coll {
124 int total;
125 int num_done;
126 struct kref kref;
127 struct rbd_req_status status[0];
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700128};
129
Alex Elderf0f8cef2012-01-29 13:57:44 -0600130/*
131 * a single io request
132 */
133struct rbd_request {
134 struct request *rq; /* blk layer request */
135 struct bio *bio; /* cloned bio */
136 struct page **pages; /* list of used pages */
137 u64 len;
138 int coll_index;
139 struct rbd_req_coll *coll;
140};
141
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800142struct rbd_snap {
143 struct device dev;
144 const char *name;
145 size_t size;
146 struct list_head node;
147 u64 id;
148};
149
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700150/*
151 * a single device
152 */
153struct rbd_device {
154 int id; /* blkdev unique id */
155
156 int major; /* blkdev assigned major */
157 struct gendisk *disk; /* blkdev's gendisk and rq */
158 struct request_queue *q;
159
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700160 struct rbd_client *rbd_client;
161
162 char name[DEV_NAME_LEN]; /* blkdev name, e.g. rbd3 */
163
164 spinlock_t lock; /* queue lock */
165
166 struct rbd_image_header header;
167 char obj[RBD_MAX_OBJ_NAME_LEN]; /* rbd image name */
168 int obj_len;
169 char obj_md_name[RBD_MAX_MD_NAME_LEN]; /* hdr nm. */
170 char pool_name[RBD_MAX_POOL_NAME_LEN];
171 int poolid;
172
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700173 struct ceph_osd_event *watch_event;
174 struct ceph_osd_request *watch_request;
175
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700176 char snap_name[RBD_MAX_SNAP_NAME_LEN];
177 u32 cur_snap; /* index+1 of current snapshot within snap context
178 0 - for the head */
179 int read_only;
180
181 struct list_head node;
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800182
183 /* list of snapshots */
184 struct list_head snaps;
185
186 /* sysfs related */
187 struct device dev;
188};
189
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700190static DEFINE_MUTEX(ctl_mutex); /* Serialize open/close/setup/teardown */
Alex Eldere124a822012-01-29 13:57:44 -0600191
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700192static LIST_HEAD(rbd_dev_list); /* devices */
Alex Eldere124a822012-01-29 13:57:44 -0600193static DEFINE_SPINLOCK(rbd_dev_list_lock);
194
Alex Elder432b8582012-01-29 13:57:44 -0600195static LIST_HEAD(rbd_client_list); /* clients */
196static DEFINE_SPINLOCK(rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700197
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800198static int __rbd_init_snaps_header(struct rbd_device *rbd_dev);
199static void rbd_dev_release(struct device *dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800200static ssize_t rbd_snap_add(struct device *dev,
201 struct device_attribute *attr,
202 const char *buf,
203 size_t count);
204static void __rbd_remove_snap_dev(struct rbd_device *rbd_dev,
Justin P. Mattock69932482011-07-26 23:06:29 -0700205 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
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700243static int __rbd_update_snaps(struct rbd_device *rbd_dev);
244
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.
276 * We own *opt.
277 */
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700278static struct rbd_client *rbd_client_create(struct ceph_options *opt,
279 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
Sage Weil6ab00d42011-08-09 09:41:59 -0700294 rbdc->client = ceph_create_client(opt, 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;
Vasiliy Kulikov28f259b2010-09-26 12:59:37 +0400297 opt = NULL; /* Now rbdc->client is responsible for opt */
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:
Vasiliy Kulikov28f259b2010-09-26 12:59:37 +0400320 if (opt)
321 ceph_destroy_options(opt);
322 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 */
328static struct rbd_client *__rbd_client_find(struct ceph_options *opt)
329{
330 struct rbd_client *client_node;
331
332 if (opt->flags & CEPH_OPT_NOSHARE)
333 return NULL;
334
335 list_for_each_entry(client_node, &rbd_client_list, node)
336 if (ceph_compare_options(opt, client_node->client) == 0)
337 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
352static match_table_t rbdopt_tokens = {
353 {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{
361 struct rbd_options *rbdopt = private;
362 substring_t argstr[MAX_OPT_ARGS];
363 int token, intval, ret;
364
Alex Elder21079782012-01-24 10:08:36 -0600365 token = match_token(c, rbdopt_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:
386 rbdopt->notify_timeout = intval;
387 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;
403 struct ceph_options *opt;
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 Elderee577412012-01-24 10:08:36 -0600412 opt = ceph_parse_options(options, mon_addr,
Alex Elder5214ecc2012-02-02 08:13:30 -0600413 mon_addr + mon_addr_len,
Alex Elder21079782012-01-24 10:08:36 -0600414 parse_rbd_opts_token, rbd_opts);
Alex Elderee577412012-01-24 10:08:36 -0600415 if (IS_ERR(opt)) {
Alex Elderd720bcb2012-02-02 08:13:30 -0600416 kfree(rbd_opts);
417 return ERR_CAST(opt);
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);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700421 rbdc = __rbd_client_find(opt);
422 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
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700427 ceph_destroy_options(opt);
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
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700434 rbdc = rbd_client_create(opt, 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);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700452 list_del(&rbdc->node);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700453
454 ceph_destroy_client(rbdc->client);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700455 kfree(rbdc->rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700456 kfree(rbdc);
457}
458
459/*
460 * Drop reference to ceph client node. If it's not referenced anymore, release
461 * it.
462 */
463static void rbd_put_client(struct rbd_device *rbd_dev)
464{
Alex Elder432b8582012-01-29 13:57:44 -0600465 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700466 kref_put(&rbd_dev->rbd_client->kref, rbd_client_release);
Alex Elder432b8582012-01-29 13:57:44 -0600467 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700468 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
483/*
484 * Create a new header structure, translate header format from the on-disk
485 * header.
486 */
487static int rbd_header_from_disk(struct rbd_image_header *header,
488 struct rbd_image_header_ondisk *ondisk,
489 int allocated_snaps,
490 gfp_t gfp_flags)
491{
492 int i;
Alex Elder00f1f362012-02-07 12:03:36 -0600493 u32 snap_count;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700494
Alex Elder21079782012-01-24 10:08:36 -0600495 if (memcmp(ondisk, RBD_HEADER_TEXT, sizeof(RBD_HEADER_TEXT)))
Josh Durgin81e759f2011-11-15 14:49:53 -0800496 return -ENXIO;
Josh Durgin81e759f2011-11-15 14:49:53 -0800497
Alex Elder00f1f362012-02-07 12:03:36 -0600498 snap_count = le32_to_cpu(ondisk->snap_count);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700499 header->snapc = kmalloc(sizeof(struct ceph_snap_context) +
Alex Elder21079782012-01-24 10:08:36 -0600500 snap_count * sizeof (*ondisk),
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700501 gfp_flags);
502 if (!header->snapc)
503 return -ENOMEM;
Alex Elder00f1f362012-02-07 12:03:36 -0600504
505 init_rwsem(&header->snap_rwsem);
506 header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700507 if (snap_count) {
508 header->snap_names = kmalloc(header->snap_names_len,
509 GFP_KERNEL);
510 if (!header->snap_names)
511 goto err_snapc;
512 header->snap_sizes = kmalloc(snap_count * sizeof(u64),
513 GFP_KERNEL);
514 if (!header->snap_sizes)
515 goto err_names;
516 } else {
517 header->snap_names = NULL;
518 header->snap_sizes = NULL;
519 }
520 memcpy(header->block_name, ondisk->block_name,
521 sizeof(ondisk->block_name));
522
523 header->image_size = le64_to_cpu(ondisk->image_size);
524 header->obj_order = ondisk->options.order;
525 header->crypt_type = ondisk->options.crypt_type;
526 header->comp_type = ondisk->options.comp_type;
527
528 atomic_set(&header->snapc->nref, 1);
529 header->snap_seq = le64_to_cpu(ondisk->snap_seq);
530 header->snapc->num_snaps = snap_count;
531 header->total_snaps = snap_count;
532
Alex Elder21079782012-01-24 10:08:36 -0600533 if (snap_count && allocated_snaps == snap_count) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700534 for (i = 0; i < snap_count; i++) {
535 header->snapc->snaps[i] =
536 le64_to_cpu(ondisk->snaps[i].id);
537 header->snap_sizes[i] =
538 le64_to_cpu(ondisk->snaps[i].image_size);
539 }
540
541 /* copy snapshot names */
542 memcpy(header->snap_names, &ondisk->snaps[i],
543 header->snap_names_len);
544 }
545
546 return 0;
547
548err_names:
549 kfree(header->snap_names);
550err_snapc:
551 kfree(header->snapc);
Alex Elder00f1f362012-02-07 12:03:36 -0600552 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700553}
554
555static int snap_index(struct rbd_image_header *header, int snap_num)
556{
557 return header->total_snaps - snap_num;
558}
559
560static u64 cur_snap_id(struct rbd_device *rbd_dev)
561{
562 struct rbd_image_header *header = &rbd_dev->header;
563
564 if (!rbd_dev->cur_snap)
565 return 0;
566
567 return header->snapc->snaps[snap_index(header, rbd_dev->cur_snap)];
568}
569
570static 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
Josh Durgincc9d7342011-11-21 18:19:13 -0800592static int rbd_header_set_snap(struct rbd_device *dev, u64 *size)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700593{
594 struct rbd_image_header *header = &dev->header;
595 struct ceph_snap_context *snapc = header->snapc;
596 int ret = -ENOENT;
597
Josh Durgincc9d7342011-11-21 18:19:13 -0800598 BUILD_BUG_ON(sizeof (dev->snap_name) < sizeof (RBD_SNAP_HEAD_NAME));
599
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700600 down_write(&header->snap_rwsem);
601
Josh Durgincc9d7342011-11-21 18:19:13 -0800602 if (!memcmp(dev->snap_name, RBD_SNAP_HEAD_NAME,
603 sizeof (RBD_SNAP_HEAD_NAME))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700604 if (header->total_snaps)
605 snapc->seq = header->snap_seq;
606 else
607 snapc->seq = 0;
608 dev->cur_snap = 0;
609 dev->read_only = 0;
610 if (size)
611 *size = header->image_size;
612 } else {
Josh Durgincc9d7342011-11-21 18:19:13 -0800613 ret = snap_by_name(header, dev->snap_name, &snapc->seq, size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700614 if (ret < 0)
615 goto done;
616
617 dev->cur_snap = header->total_snaps - ret;
618 dev->read_only = 1;
619 }
620
621 ret = 0;
622done:
623 up_write(&header->snap_rwsem);
624 return ret;
625}
626
627static void rbd_header_free(struct rbd_image_header *header)
628{
629 kfree(header->snapc);
630 kfree(header->snap_names);
631 kfree(header->snap_sizes);
632}
633
634/*
635 * get the actual striped segment name, offset and length
636 */
637static u64 rbd_get_segment(struct rbd_image_header *header,
638 const char *block_name,
639 u64 ofs, u64 len,
640 char *seg_name, u64 *segofs)
641{
642 u64 seg = ofs >> header->obj_order;
643
644 if (seg_name)
645 snprintf(seg_name, RBD_MAX_SEG_NAME_LEN,
646 "%s.%012llx", block_name, seg);
647
648 ofs = ofs & ((1 << header->obj_order) - 1);
649 len = min_t(u64, len, (1 << header->obj_order) - ofs);
650
651 if (segofs)
652 *segofs = ofs;
653
654 return len;
655}
656
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700657static int rbd_get_num_segments(struct rbd_image_header *header,
658 u64 ofs, u64 len)
659{
660 u64 start_seg = ofs >> header->obj_order;
661 u64 end_seg = (ofs + len - 1) >> header->obj_order;
662 return end_seg - start_seg + 1;
663}
664
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700665/*
Josh Durgin029bcbd2011-07-22 11:35:23 -0700666 * returns the size of an object in the image
667 */
668static u64 rbd_obj_bytes(struct rbd_image_header *header)
669{
670 return 1 << header->obj_order;
671}
672
673/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700674 * bio helpers
675 */
676
677static void bio_chain_put(struct bio *chain)
678{
679 struct bio *tmp;
680
681 while (chain) {
682 tmp = chain;
683 chain = chain->bi_next;
684 bio_put(tmp);
685 }
686}
687
688/*
689 * zeros a bio chain, starting at specific offset
690 */
691static void zero_bio_chain(struct bio *chain, int start_ofs)
692{
693 struct bio_vec *bv;
694 unsigned long flags;
695 void *buf;
696 int i;
697 int pos = 0;
698
699 while (chain) {
700 bio_for_each_segment(bv, chain, i) {
701 if (pos + bv->bv_len > start_ofs) {
702 int remainder = max(start_ofs - pos, 0);
703 buf = bvec_kmap_irq(bv, &flags);
704 memset(buf + remainder, 0,
705 bv->bv_len - remainder);
Dan Carpenter85b5aaa2010-10-11 21:15:11 +0200706 bvec_kunmap_irq(buf, &flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700707 }
708 pos += bv->bv_len;
709 }
710
711 chain = chain->bi_next;
712 }
713}
714
715/*
716 * bio_chain_clone - clone a chain of bios up to a certain length.
717 * might return a bio_pair that will need to be released.
718 */
719static struct bio *bio_chain_clone(struct bio **old, struct bio **next,
720 struct bio_pair **bp,
721 int len, gfp_t gfpmask)
722{
723 struct bio *tmp, *old_chain = *old, *new_chain = NULL, *tail = NULL;
724 int total = 0;
725
726 if (*bp) {
727 bio_pair_release(*bp);
728 *bp = NULL;
729 }
730
731 while (old_chain && (total < len)) {
732 tmp = bio_kmalloc(gfpmask, old_chain->bi_max_vecs);
733 if (!tmp)
734 goto err_out;
735
736 if (total + old_chain->bi_size > len) {
737 struct bio_pair *bp;
738
739 /*
740 * this split can only happen with a single paged bio,
741 * split_bio will BUG_ON if this is not the case
742 */
743 dout("bio_chain_clone split! total=%d remaining=%d"
744 "bi_size=%d\n",
745 (int)total, (int)len-total,
746 (int)old_chain->bi_size);
747
748 /* split the bio. We'll release it either in the next
749 call, or it will have to be released outside */
Alex Elder593a9e72012-02-07 12:03:37 -0600750 bp = bio_split(old_chain, (len - total) / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700751 if (!bp)
752 goto err_out;
753
754 __bio_clone(tmp, &bp->bio1);
755
756 *next = &bp->bio2;
757 } else {
758 __bio_clone(tmp, old_chain);
759 *next = old_chain->bi_next;
760 }
761
762 tmp->bi_bdev = NULL;
763 gfpmask &= ~__GFP_WAIT;
764 tmp->bi_next = NULL;
765
766 if (!new_chain) {
767 new_chain = tail = tmp;
768 } else {
769 tail->bi_next = tmp;
770 tail = tmp;
771 }
772 old_chain = old_chain->bi_next;
773
774 total += tmp->bi_size;
775 }
776
777 BUG_ON(total < len);
778
779 if (tail)
780 tail->bi_next = NULL;
781
782 *old = old_chain;
783
784 return new_chain;
785
786err_out:
787 dout("bio_chain_clone with err\n");
788 bio_chain_put(new_chain);
789 return NULL;
790}
791
792/*
793 * helpers for osd request op vectors.
794 */
795static int rbd_create_rw_ops(struct ceph_osd_req_op **ops,
796 int num_ops,
797 int opcode,
798 u32 payload_len)
799{
800 *ops = kzalloc(sizeof(struct ceph_osd_req_op) * (num_ops + 1),
801 GFP_NOIO);
802 if (!*ops)
803 return -ENOMEM;
804 (*ops)[0].op = opcode;
805 /*
806 * op extent offset and length will be set later on
807 * in calc_raw_layout()
808 */
809 (*ops)[0].payload_len = payload_len;
810 return 0;
811}
812
813static void rbd_destroy_ops(struct ceph_osd_req_op *ops)
814{
815 kfree(ops);
816}
817
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700818static void rbd_coll_end_req_index(struct request *rq,
819 struct rbd_req_coll *coll,
820 int index,
821 int ret, u64 len)
822{
823 struct request_queue *q;
824 int min, max, i;
825
826 dout("rbd_coll_end_req_index %p index %d ret %d len %lld\n",
827 coll, index, ret, len);
828
829 if (!rq)
830 return;
831
832 if (!coll) {
833 blk_end_request(rq, ret, len);
834 return;
835 }
836
837 q = rq->q;
838
839 spin_lock_irq(q->queue_lock);
840 coll->status[index].done = 1;
841 coll->status[index].rc = ret;
842 coll->status[index].bytes = len;
843 max = min = coll->num_done;
844 while (max < coll->total && coll->status[max].done)
845 max++;
846
847 for (i = min; i<max; i++) {
848 __blk_end_request(rq, coll->status[i].rc,
849 coll->status[i].bytes);
850 coll->num_done++;
851 kref_put(&coll->kref, rbd_coll_release);
852 }
853 spin_unlock_irq(q->queue_lock);
854}
855
856static void rbd_coll_end_req(struct rbd_request *req,
857 int ret, u64 len)
858{
859 rbd_coll_end_req_index(req->rq, req->coll, req->coll_index, ret, len);
860}
861
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700862/*
863 * Send ceph osd request
864 */
865static int rbd_do_request(struct request *rq,
866 struct rbd_device *dev,
867 struct ceph_snap_context *snapc,
868 u64 snapid,
869 const char *obj, u64 ofs, u64 len,
870 struct bio *bio,
871 struct page **pages,
872 int num_pages,
873 int flags,
874 struct ceph_osd_req_op *ops,
875 int num_reply,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700876 struct rbd_req_coll *coll,
877 int coll_index,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700878 void (*rbd_cb)(struct ceph_osd_request *req,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700879 struct ceph_msg *msg),
880 struct ceph_osd_request **linger_req,
881 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700882{
883 struct ceph_osd_request *req;
884 struct ceph_file_layout *layout;
885 int ret;
886 u64 bno;
887 struct timespec mtime = CURRENT_TIME;
888 struct rbd_request *req_data;
889 struct ceph_osd_request_head *reqhead;
890 struct rbd_image_header *header = &dev->header;
Alex Elder1dbb4392012-01-24 10:08:37 -0600891 struct ceph_osd_client *osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700892
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700893 req_data = kzalloc(sizeof(*req_data), GFP_NOIO);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700894 if (!req_data) {
895 if (coll)
896 rbd_coll_end_req_index(rq, coll, coll_index,
897 -ENOMEM, len);
898 return -ENOMEM;
899 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700900
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700901 if (coll) {
902 req_data->coll = coll;
903 req_data->coll_index = coll_index;
904 }
905
906 dout("rbd_do_request obj=%s ofs=%lld len=%lld\n", obj, len, ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700907
908 down_read(&header->snap_rwsem);
909
Alex Elder1dbb4392012-01-24 10:08:37 -0600910 osdc = &dev->rbd_client->client->osdc;
911 req = ceph_osdc_alloc_request(osdc, flags, snapc, ops,
912 false, GFP_NOIO, pages, bio);
Sage Weil4ad12622011-05-03 09:23:36 -0700913 if (!req) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700914 up_read(&header->snap_rwsem);
Sage Weil4ad12622011-05-03 09:23:36 -0700915 ret = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700916 goto done_pages;
917 }
918
919 req->r_callback = rbd_cb;
920
921 req_data->rq = rq;
922 req_data->bio = bio;
923 req_data->pages = pages;
924 req_data->len = len;
925
926 req->r_priv = req_data;
927
928 reqhead = req->r_request->front.iov_base;
929 reqhead->snapid = cpu_to_le64(CEPH_NOSNAP);
930
931 strncpy(req->r_oid, obj, sizeof(req->r_oid));
932 req->r_oid_len = strlen(req->r_oid);
933
934 layout = &req->r_file_layout;
935 memset(layout, 0, sizeof(*layout));
936 layout->fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
937 layout->fl_stripe_count = cpu_to_le32(1);
938 layout->fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
939 layout->fl_pg_preferred = cpu_to_le32(-1);
940 layout->fl_pg_pool = cpu_to_le32(dev->poolid);
Alex Elder1dbb4392012-01-24 10:08:37 -0600941 ceph_calc_raw_layout(osdc, layout, snapid, ofs, &len, &bno,
942 req, ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700943
944 ceph_osdc_build_request(req, ofs, &len,
945 ops,
946 snapc,
947 &mtime,
948 req->r_oid, req->r_oid_len);
949 up_read(&header->snap_rwsem);
950
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700951 if (linger_req) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600952 ceph_osdc_set_request_linger(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700953 *linger_req = req;
954 }
955
Alex Elder1dbb4392012-01-24 10:08:37 -0600956 ret = ceph_osdc_start_request(osdc, req, false);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700957 if (ret < 0)
958 goto done_err;
959
960 if (!rbd_cb) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600961 ret = ceph_osdc_wait_request(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700962 if (ver)
963 *ver = le64_to_cpu(req->r_reassert_version.version);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700964 dout("reassert_ver=%lld\n",
965 le64_to_cpu(req->r_reassert_version.version));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700966 ceph_osdc_put_request(req);
967 }
968 return ret;
969
970done_err:
971 bio_chain_put(req_data->bio);
972 ceph_osdc_put_request(req);
973done_pages:
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700974 rbd_coll_end_req(req_data, ret, len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700975 kfree(req_data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700976 return ret;
977}
978
979/*
980 * Ceph osd op callback
981 */
982static void rbd_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
983{
984 struct rbd_request *req_data = req->r_priv;
985 struct ceph_osd_reply_head *replyhead;
986 struct ceph_osd_op *op;
987 __s32 rc;
988 u64 bytes;
989 int read_op;
990
991 /* parse reply */
992 replyhead = msg->front.iov_base;
993 WARN_ON(le32_to_cpu(replyhead->num_ops) == 0);
994 op = (void *)(replyhead + 1);
995 rc = le32_to_cpu(replyhead->result);
996 bytes = le64_to_cpu(op->extent.length);
997 read_op = (le32_to_cpu(op->op) == CEPH_OSD_OP_READ);
998
999 dout("rbd_req_cb bytes=%lld readop=%d rc=%d\n", bytes, read_op, rc);
1000
1001 if (rc == -ENOENT && read_op) {
1002 zero_bio_chain(req_data->bio, 0);
1003 rc = 0;
1004 } else if (rc == 0 && read_op && bytes < req_data->len) {
1005 zero_bio_chain(req_data->bio, bytes);
1006 bytes = req_data->len;
1007 }
1008
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001009 rbd_coll_end_req(req_data, rc, bytes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001010
1011 if (req_data->bio)
1012 bio_chain_put(req_data->bio);
1013
1014 ceph_osdc_put_request(req);
1015 kfree(req_data);
1016}
1017
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001018static void rbd_simple_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1019{
1020 ceph_osdc_put_request(req);
1021}
1022
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001023/*
1024 * Do a synchronous ceph osd operation
1025 */
1026static int rbd_req_sync_op(struct rbd_device *dev,
1027 struct ceph_snap_context *snapc,
1028 u64 snapid,
1029 int opcode,
1030 int flags,
1031 struct ceph_osd_req_op *orig_ops,
1032 int num_reply,
1033 const char *obj,
1034 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001035 char *buf,
1036 struct ceph_osd_request **linger_req,
1037 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001038{
1039 int ret;
1040 struct page **pages;
1041 int num_pages;
1042 struct ceph_osd_req_op *ops = orig_ops;
1043 u32 payload_len;
1044
1045 num_pages = calc_pages_for(ofs , len);
1046 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Dan Carpenterb8d06382010-10-11 21:14:23 +02001047 if (IS_ERR(pages))
1048 return PTR_ERR(pages);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001049
1050 if (!orig_ops) {
1051 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? len : 0);
1052 ret = rbd_create_rw_ops(&ops, 1, opcode, payload_len);
1053 if (ret < 0)
1054 goto done;
1055
1056 if ((flags & CEPH_OSD_FLAG_WRITE) && buf) {
1057 ret = ceph_copy_to_page_vector(pages, buf, ofs, len);
1058 if (ret < 0)
1059 goto done_ops;
1060 }
1061 }
1062
1063 ret = rbd_do_request(NULL, dev, snapc, snapid,
1064 obj, ofs, len, NULL,
1065 pages, num_pages,
1066 flags,
1067 ops,
1068 2,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001069 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001070 NULL,
1071 linger_req, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001072 if (ret < 0)
1073 goto done_ops;
1074
1075 if ((flags & CEPH_OSD_FLAG_READ) && buf)
1076 ret = ceph_copy_from_page_vector(pages, buf, ofs, ret);
1077
1078done_ops:
1079 if (!orig_ops)
1080 rbd_destroy_ops(ops);
1081done:
1082 ceph_release_page_vector(pages, num_pages);
1083 return ret;
1084}
1085
1086/*
1087 * Do an asynchronous ceph osd operation
1088 */
1089static int rbd_do_op(struct request *rq,
1090 struct rbd_device *rbd_dev ,
1091 struct ceph_snap_context *snapc,
1092 u64 snapid,
1093 int opcode, int flags, int num_reply,
1094 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001095 struct bio *bio,
1096 struct rbd_req_coll *coll,
1097 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001098{
1099 char *seg_name;
1100 u64 seg_ofs;
1101 u64 seg_len;
1102 int ret;
1103 struct ceph_osd_req_op *ops;
1104 u32 payload_len;
1105
1106 seg_name = kmalloc(RBD_MAX_SEG_NAME_LEN + 1, GFP_NOIO);
1107 if (!seg_name)
1108 return -ENOMEM;
1109
1110 seg_len = rbd_get_segment(&rbd_dev->header,
1111 rbd_dev->header.block_name,
1112 ofs, len,
1113 seg_name, &seg_ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001114
1115 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
1116
1117 ret = rbd_create_rw_ops(&ops, 1, opcode, payload_len);
1118 if (ret < 0)
1119 goto done;
1120
1121 /* we've taken care of segment sizes earlier when we
1122 cloned the bios. We should never have a segment
1123 truncated at this point */
1124 BUG_ON(seg_len < len);
1125
1126 ret = rbd_do_request(rq, rbd_dev, snapc, snapid,
1127 seg_name, seg_ofs, seg_len,
1128 bio,
1129 NULL, 0,
1130 flags,
1131 ops,
1132 num_reply,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001133 coll, coll_index,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001134 rbd_req_cb, 0, NULL);
Sage Weil11f77002011-05-12 16:13:54 -07001135
1136 rbd_destroy_ops(ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001137done:
1138 kfree(seg_name);
1139 return ret;
1140}
1141
1142/*
1143 * Request async osd write
1144 */
1145static int rbd_req_write(struct request *rq,
1146 struct rbd_device *rbd_dev,
1147 struct ceph_snap_context *snapc,
1148 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001149 struct bio *bio,
1150 struct rbd_req_coll *coll,
1151 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001152{
1153 return rbd_do_op(rq, rbd_dev, snapc, CEPH_NOSNAP,
1154 CEPH_OSD_OP_WRITE,
1155 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1156 2,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001157 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001158}
1159
1160/*
1161 * Request async osd read
1162 */
1163static int rbd_req_read(struct request *rq,
1164 struct rbd_device *rbd_dev,
1165 u64 snapid,
1166 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001167 struct bio *bio,
1168 struct rbd_req_coll *coll,
1169 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001170{
1171 return rbd_do_op(rq, rbd_dev, NULL,
1172 (snapid ? snapid : CEPH_NOSNAP),
1173 CEPH_OSD_OP_READ,
1174 CEPH_OSD_FLAG_READ,
1175 2,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001176 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001177}
1178
1179/*
1180 * Request sync osd read
1181 */
1182static int rbd_req_sync_read(struct rbd_device *dev,
1183 struct ceph_snap_context *snapc,
1184 u64 snapid,
1185 const char *obj,
1186 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001187 char *buf,
1188 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001189{
1190 return rbd_req_sync_op(dev, NULL,
1191 (snapid ? snapid : CEPH_NOSNAP),
1192 CEPH_OSD_OP_READ,
1193 CEPH_OSD_FLAG_READ,
1194 NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001195 1, obj, ofs, len, buf, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001196}
1197
1198/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001199 * Request sync osd watch
1200 */
1201static int rbd_req_sync_notify_ack(struct rbd_device *dev,
1202 u64 ver,
1203 u64 notify_id,
1204 const char *obj)
1205{
1206 struct ceph_osd_req_op *ops;
1207 struct page **pages = NULL;
Sage Weil11f77002011-05-12 16:13:54 -07001208 int ret;
1209
1210 ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY_ACK, 0);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001211 if (ret < 0)
1212 return ret;
1213
1214 ops[0].watch.ver = cpu_to_le64(dev->header.obj_version);
1215 ops[0].watch.cookie = notify_id;
1216 ops[0].watch.flag = 0;
1217
1218 ret = rbd_do_request(NULL, dev, NULL, CEPH_NOSNAP,
1219 obj, 0, 0, NULL,
1220 pages, 0,
1221 CEPH_OSD_FLAG_READ,
1222 ops,
1223 1,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001224 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001225 rbd_simple_req_cb, 0, NULL);
1226
1227 rbd_destroy_ops(ops);
1228 return ret;
1229}
1230
1231static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1232{
1233 struct rbd_device *dev = (struct rbd_device *)data;
Sage Weil13143d22011-05-12 16:08:30 -07001234 int rc;
1235
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001236 if (!dev)
1237 return;
1238
1239 dout("rbd_watch_cb %s notify_id=%lld opcode=%d\n", dev->obj_md_name,
1240 notify_id, (int)opcode);
1241 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Sage Weil13143d22011-05-12 16:08:30 -07001242 rc = __rbd_update_snaps(dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001243 mutex_unlock(&ctl_mutex);
Sage Weil13143d22011-05-12 16:08:30 -07001244 if (rc)
Alex Elderf0f8cef2012-01-29 13:57:44 -06001245 pr_warning(RBD_DRV_NAME "%d got notification but failed to "
1246 " update snaps: %d\n", dev->major, rc);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001247
1248 rbd_req_sync_notify_ack(dev, ver, notify_id, dev->obj_md_name);
1249}
1250
1251/*
1252 * Request sync osd watch
1253 */
1254static int rbd_req_sync_watch(struct rbd_device *dev,
1255 const char *obj,
1256 u64 ver)
1257{
1258 struct ceph_osd_req_op *ops;
Alex Elder1dbb4392012-01-24 10:08:37 -06001259 struct ceph_osd_client *osdc = &dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001260
1261 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_WATCH, 0);
1262 if (ret < 0)
1263 return ret;
1264
1265 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, 0,
1266 (void *)dev, &dev->watch_event);
1267 if (ret < 0)
1268 goto fail;
1269
1270 ops[0].watch.ver = cpu_to_le64(ver);
1271 ops[0].watch.cookie = cpu_to_le64(dev->watch_event->cookie);
1272 ops[0].watch.flag = 1;
1273
1274 ret = rbd_req_sync_op(dev, NULL,
1275 CEPH_NOSNAP,
1276 0,
1277 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1278 ops,
1279 1, obj, 0, 0, NULL,
1280 &dev->watch_request, NULL);
1281
1282 if (ret < 0)
1283 goto fail_event;
1284
1285 rbd_destroy_ops(ops);
1286 return 0;
1287
1288fail_event:
1289 ceph_osdc_cancel_event(dev->watch_event);
1290 dev->watch_event = NULL;
1291fail:
1292 rbd_destroy_ops(ops);
1293 return ret;
1294}
1295
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001296/*
1297 * Request sync osd unwatch
1298 */
1299static int rbd_req_sync_unwatch(struct rbd_device *dev,
1300 const char *obj)
1301{
1302 struct ceph_osd_req_op *ops;
1303
1304 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_WATCH, 0);
1305 if (ret < 0)
1306 return ret;
1307
1308 ops[0].watch.ver = 0;
1309 ops[0].watch.cookie = cpu_to_le64(dev->watch_event->cookie);
1310 ops[0].watch.flag = 0;
1311
1312 ret = rbd_req_sync_op(dev, NULL,
1313 CEPH_NOSNAP,
1314 0,
1315 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1316 ops,
1317 1, obj, 0, 0, NULL, NULL, NULL);
1318
1319 rbd_destroy_ops(ops);
1320 ceph_osdc_cancel_event(dev->watch_event);
1321 dev->watch_event = NULL;
1322 return ret;
1323}
1324
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001325struct rbd_notify_info {
1326 struct rbd_device *dev;
1327};
1328
1329static void rbd_notify_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1330{
1331 struct rbd_device *dev = (struct rbd_device *)data;
1332 if (!dev)
1333 return;
1334
1335 dout("rbd_notify_cb %s notify_id=%lld opcode=%d\n", dev->obj_md_name,
1336 notify_id, (int)opcode);
1337}
1338
1339/*
1340 * Request sync osd notify
1341 */
1342static int rbd_req_sync_notify(struct rbd_device *dev,
1343 const char *obj)
1344{
1345 struct ceph_osd_req_op *ops;
Alex Elder1dbb4392012-01-24 10:08:37 -06001346 struct ceph_osd_client *osdc = &dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001347 struct ceph_osd_event *event;
1348 struct rbd_notify_info info;
1349 int payload_len = sizeof(u32) + sizeof(u32);
1350 int ret;
1351
1352 ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY, payload_len);
1353 if (ret < 0)
1354 return ret;
1355
1356 info.dev = dev;
1357
1358 ret = ceph_osdc_create_event(osdc, rbd_notify_cb, 1,
1359 (void *)&info, &event);
1360 if (ret < 0)
1361 goto fail;
1362
1363 ops[0].watch.ver = 1;
1364 ops[0].watch.flag = 1;
1365 ops[0].watch.cookie = event->cookie;
1366 ops[0].watch.prot_ver = RADOS_NOTIFY_VER;
1367 ops[0].watch.timeout = 12;
1368
1369 ret = rbd_req_sync_op(dev, NULL,
1370 CEPH_NOSNAP,
1371 0,
1372 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1373 ops,
1374 1, obj, 0, 0, NULL, NULL, NULL);
1375 if (ret < 0)
1376 goto fail_event;
1377
1378 ret = ceph_osdc_wait_event(event, CEPH_OSD_TIMEOUT_DEFAULT);
1379 dout("ceph_osdc_wait_event returned %d\n", ret);
1380 rbd_destroy_ops(ops);
1381 return 0;
1382
1383fail_event:
1384 ceph_osdc_cancel_event(event);
1385fail:
1386 rbd_destroy_ops(ops);
1387 return ret;
1388}
1389
1390/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001391 * Request sync osd read
1392 */
1393static int rbd_req_sync_exec(struct rbd_device *dev,
1394 const char *obj,
1395 const char *cls,
1396 const char *method,
1397 const char *data,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001398 int len,
1399 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001400{
1401 struct ceph_osd_req_op *ops;
1402 int cls_len = strlen(cls);
1403 int method_len = strlen(method);
1404 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_CALL,
1405 cls_len + method_len + len);
1406 if (ret < 0)
1407 return ret;
1408
1409 ops[0].cls.class_name = cls;
1410 ops[0].cls.class_len = (__u8)cls_len;
1411 ops[0].cls.method_name = method;
1412 ops[0].cls.method_len = (__u8)method_len;
1413 ops[0].cls.argc = 0;
1414 ops[0].cls.indata = data;
1415 ops[0].cls.indata_len = len;
1416
1417 ret = rbd_req_sync_op(dev, NULL,
1418 CEPH_NOSNAP,
1419 0,
1420 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1421 ops,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001422 1, obj, 0, 0, NULL, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001423
1424 rbd_destroy_ops(ops);
1425
1426 dout("cls_exec returned %d\n", ret);
1427 return ret;
1428}
1429
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001430static struct rbd_req_coll *rbd_alloc_coll(int num_reqs)
1431{
1432 struct rbd_req_coll *coll =
1433 kzalloc(sizeof(struct rbd_req_coll) +
1434 sizeof(struct rbd_req_status) * num_reqs,
1435 GFP_ATOMIC);
1436
1437 if (!coll)
1438 return NULL;
1439 coll->total = num_reqs;
1440 kref_init(&coll->kref);
1441 return coll;
1442}
1443
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001444/*
1445 * block device queue callback
1446 */
1447static void rbd_rq_fn(struct request_queue *q)
1448{
1449 struct rbd_device *rbd_dev = q->queuedata;
1450 struct request *rq;
1451 struct bio_pair *bp = NULL;
1452
Alex Elder00f1f362012-02-07 12:03:36 -06001453 while ((rq = blk_fetch_request(q))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001454 struct bio *bio;
1455 struct bio *rq_bio, *next_bio = NULL;
1456 bool do_write;
1457 int size, op_size = 0;
1458 u64 ofs;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001459 int num_segs, cur_seg = 0;
1460 struct rbd_req_coll *coll;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001461
1462 /* peek at request from block layer */
1463 if (!rq)
1464 break;
1465
1466 dout("fetched request\n");
1467
1468 /* filter out block requests we don't understand */
1469 if ((rq->cmd_type != REQ_TYPE_FS)) {
1470 __blk_end_request_all(rq, 0);
Alex Elder00f1f362012-02-07 12:03:36 -06001471 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001472 }
1473
1474 /* deduce our operation (read, write) */
1475 do_write = (rq_data_dir(rq) == WRITE);
1476
1477 size = blk_rq_bytes(rq);
Alex Elder593a9e72012-02-07 12:03:37 -06001478 ofs = blk_rq_pos(rq) * SECTOR_SIZE;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001479 rq_bio = rq->bio;
1480 if (do_write && rbd_dev->read_only) {
1481 __blk_end_request_all(rq, -EROFS);
Alex Elder00f1f362012-02-07 12:03:36 -06001482 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001483 }
1484
1485 spin_unlock_irq(q->queue_lock);
1486
1487 dout("%s 0x%x bytes at 0x%llx\n",
1488 do_write ? "write" : "read",
Alex Elder593a9e72012-02-07 12:03:37 -06001489 size, blk_rq_pos(rq) * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001490
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001491 num_segs = rbd_get_num_segments(&rbd_dev->header, ofs, size);
1492 coll = rbd_alloc_coll(num_segs);
1493 if (!coll) {
1494 spin_lock_irq(q->queue_lock);
1495 __blk_end_request_all(rq, -ENOMEM);
Alex Elder00f1f362012-02-07 12:03:36 -06001496 continue;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001497 }
1498
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001499 do {
1500 /* a bio clone to be passed down to OSD req */
1501 dout("rq->bio->bi_vcnt=%d\n", rq->bio->bi_vcnt);
1502 op_size = rbd_get_segment(&rbd_dev->header,
1503 rbd_dev->header.block_name,
1504 ofs, size,
1505 NULL, NULL);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001506 kref_get(&coll->kref);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001507 bio = bio_chain_clone(&rq_bio, &next_bio, &bp,
1508 op_size, GFP_ATOMIC);
1509 if (!bio) {
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001510 rbd_coll_end_req_index(rq, coll, cur_seg,
1511 -ENOMEM, op_size);
1512 goto next_seg;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001513 }
1514
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001515
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001516 /* init OSD command: write or read */
1517 if (do_write)
1518 rbd_req_write(rq, rbd_dev,
1519 rbd_dev->header.snapc,
1520 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001521 op_size, bio,
1522 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001523 else
1524 rbd_req_read(rq, rbd_dev,
1525 cur_snap_id(rbd_dev),
1526 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001527 op_size, bio,
1528 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001529
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001530next_seg:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001531 size -= op_size;
1532 ofs += op_size;
1533
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001534 cur_seg++;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001535 rq_bio = next_bio;
1536 } while (size > 0);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001537 kref_put(&coll->kref, rbd_coll_release);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001538
1539 if (bp)
1540 bio_pair_release(bp);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001541 spin_lock_irq(q->queue_lock);
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;
1596 int 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,
1612 NULL, CEPH_NOSNAP,
1613 rbd_dev->obj_md_name,
1614 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
1619 rc = rbd_header_from_disk(header, dh, snap_count, GFP_KERNEL);
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"
1623 " for image %s", rbd_dev->obj);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001624 goto out_dh;
Josh Durgin81e759f2011-11-15 14:49:53 -08001625 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001626
Alex Elder00f1f362012-02-07 12:03:36 -06001627 if (snap_count == header->total_snaps)
1628 break;
1629
1630 snap_count = header->total_snaps;
1631 len = sizeof (*dh) +
1632 snap_count * sizeof(struct rbd_image_snap_ondisk) +
1633 header->snap_names_len;
1634
1635 rbd_header_free(header);
1636 kfree(dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001637 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001638 header->obj_version = ver;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001639
1640out_dh:
1641 kfree(dh);
1642 return rc;
1643}
1644
1645/*
1646 * create a snapshot
1647 */
1648static int rbd_header_add_snap(struct rbd_device *dev,
1649 const char *snap_name,
1650 gfp_t gfp_flags)
1651{
1652 int name_len = strlen(snap_name);
1653 u64 new_snapid;
1654 int ret;
Sage Weil916d4d62011-05-12 16:10:50 -07001655 void *data, *p, *e;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001656 u64 ver;
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 */
1660 if (dev->cur_snap)
1661 return -EINVAL;
1662
Alex Elder1dbb4392012-01-24 10:08:37 -06001663 monc = &dev->rbd_client->client->monc;
1664 ret = ceph_monc_create_snapid(monc, dev->poolid, &new_snapid);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001665 dout("created snapid=%lld\n", new_snapid);
1666 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
1679 ret = rbd_req_sync_exec(dev, dev->obj_md_name, "rbd", "snap_add",
Sage Weil916d4d62011-05-12 16:10:50 -07001680 data, p - data, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001681
Sage Weil916d4d62011-05-12 16:10:50 -07001682 kfree(data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001683
1684 if (ret < 0)
1685 return ret;
1686
1687 dev->header.snapc->seq = new_snapid;
1688
1689 return 0;
1690bad:
1691 return -ERANGE;
1692}
1693
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001694static void __rbd_remove_all_snaps(struct rbd_device *rbd_dev)
1695{
1696 struct rbd_snap *snap;
1697
1698 while (!list_empty(&rbd_dev->snaps)) {
1699 snap = list_first_entry(&rbd_dev->snaps, struct rbd_snap, node);
1700 __rbd_remove_snap_dev(rbd_dev, snap);
1701 }
1702}
1703
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001704/*
1705 * only read the first part of the ondisk header, without the snaps info
1706 */
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001707static int __rbd_update_snaps(struct rbd_device *rbd_dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001708{
1709 int ret;
1710 struct rbd_image_header h;
1711 u64 snap_seq;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001712 int follow_seq = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001713
1714 ret = rbd_read_header(rbd_dev, &h);
1715 if (ret < 0)
1716 return ret;
1717
Sage Weil9db4b3e2011-04-19 22:49:06 -07001718 /* resized? */
Alex Elder593a9e72012-02-07 12:03:37 -06001719 set_capacity(rbd_dev->disk, h.image_size / SECTOR_SIZE);
Sage Weil9db4b3e2011-04-19 22:49:06 -07001720
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001721 down_write(&rbd_dev->header.snap_rwsem);
1722
1723 snap_seq = rbd_dev->header.snapc->seq;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001724 if (rbd_dev->header.total_snaps &&
1725 rbd_dev->header.snapc->snaps[0] == snap_seq)
1726 /* pointing at the head, will need to follow that
1727 if head moves */
1728 follow_seq = 1;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001729
1730 kfree(rbd_dev->header.snapc);
1731 kfree(rbd_dev->header.snap_names);
1732 kfree(rbd_dev->header.snap_sizes);
1733
1734 rbd_dev->header.total_snaps = h.total_snaps;
1735 rbd_dev->header.snapc = h.snapc;
1736 rbd_dev->header.snap_names = h.snap_names;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001737 rbd_dev->header.snap_names_len = h.snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001738 rbd_dev->header.snap_sizes = h.snap_sizes;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001739 if (follow_seq)
1740 rbd_dev->header.snapc->seq = rbd_dev->header.snapc->snaps[0];
1741 else
1742 rbd_dev->header.snapc->seq = snap_seq;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001743
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001744 ret = __rbd_init_snaps_header(rbd_dev);
1745
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001746 up_write(&rbd_dev->header.snap_rwsem);
1747
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001748 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001749}
1750
1751static int rbd_init_disk(struct rbd_device *rbd_dev)
1752{
1753 struct gendisk *disk;
1754 struct request_queue *q;
1755 int rc;
Alex Elder593a9e72012-02-07 12:03:37 -06001756 u64 segment_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001757 u64 total_size = 0;
1758
1759 /* contact OSD, request size info about the object being mapped */
1760 rc = rbd_read_header(rbd_dev, &rbd_dev->header);
1761 if (rc)
1762 return rc;
1763
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001764 /* no need to lock here, as rbd_dev is not registered yet */
1765 rc = __rbd_init_snaps_header(rbd_dev);
1766 if (rc)
1767 return rc;
1768
Josh Durgincc9d7342011-11-21 18:19:13 -08001769 rc = rbd_header_set_snap(rbd_dev, &total_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001770 if (rc)
1771 return rc;
1772
1773 /* create gendisk info */
1774 rc = -ENOMEM;
1775 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
1776 if (!disk)
1777 goto out;
1778
Alex Elderf0f8cef2012-01-29 13:57:44 -06001779 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
Sage Weilaedfec52011-05-12 20:57:03 -07001780 rbd_dev->id);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001781 disk->major = rbd_dev->major;
1782 disk->first_minor = 0;
1783 disk->fops = &rbd_bd_ops;
1784 disk->private_data = rbd_dev;
1785
1786 /* init rq */
1787 rc = -ENOMEM;
1788 q = blk_init_queue(rbd_rq_fn, &rbd_dev->lock);
1789 if (!q)
1790 goto out_disk;
Josh Durgin029bcbd2011-07-22 11:35:23 -07001791
Alex Elder593a9e72012-02-07 12:03:37 -06001792 /* We use the default size, but let's be explicit about it. */
1793 blk_queue_physical_block_size(q, SECTOR_SIZE);
1794
Josh Durgin029bcbd2011-07-22 11:35:23 -07001795 /* set io sizes to object size */
Alex Elder593a9e72012-02-07 12:03:37 -06001796 segment_size = rbd_obj_bytes(&rbd_dev->header);
1797 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
1798 blk_queue_max_segment_size(q, segment_size);
1799 blk_queue_io_min(q, segment_size);
1800 blk_queue_io_opt(q, segment_size);
Josh Durgin029bcbd2011-07-22 11:35:23 -07001801
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001802 blk_queue_merge_bvec(q, rbd_merge_bvec);
1803 disk->queue = q;
1804
1805 q->queuedata = rbd_dev;
1806
1807 rbd_dev->disk = disk;
1808 rbd_dev->q = q;
1809
1810 /* finally, announce the disk to the world */
Alex Elder593a9e72012-02-07 12:03:37 -06001811 set_capacity(disk, total_size / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001812 add_disk(disk);
1813
1814 pr_info("%s: added with size 0x%llx\n",
1815 disk->disk_name, (unsigned long long)total_size);
1816 return 0;
1817
1818out_disk:
1819 put_disk(disk);
1820out:
1821 return rc;
1822}
1823
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001824/*
1825 sysfs
1826*/
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001827
Alex Elder593a9e72012-02-07 12:03:37 -06001828static struct rbd_device *dev_to_rbd_dev(struct device *dev)
1829{
1830 return container_of(dev, struct rbd_device, dev);
1831}
1832
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001833static ssize_t rbd_size_show(struct device *dev,
1834 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001835{
Alex Elder593a9e72012-02-07 12:03:37 -06001836 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001837
1838 return sprintf(buf, "%llu\n", (unsigned long long)rbd_dev->header.image_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001839}
1840
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001841static ssize_t rbd_major_show(struct device *dev,
1842 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001843{
Alex Elder593a9e72012-02-07 12:03:37 -06001844 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001845
1846 return sprintf(buf, "%d\n", rbd_dev->major);
1847}
1848
1849static ssize_t rbd_client_id_show(struct device *dev,
1850 struct device_attribute *attr, char *buf)
1851{
Alex Elder593a9e72012-02-07 12:03:37 -06001852 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001853
Alex Elder1dbb4392012-01-24 10:08:37 -06001854 return sprintf(buf, "client%lld\n",
1855 ceph_client_id(rbd_dev->rbd_client->client));
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001856}
1857
1858static ssize_t rbd_pool_show(struct device *dev,
1859 struct device_attribute *attr, char *buf)
1860{
Alex Elder593a9e72012-02-07 12:03:37 -06001861 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001862
1863 return sprintf(buf, "%s\n", rbd_dev->pool_name);
1864}
1865
1866static ssize_t rbd_name_show(struct device *dev,
1867 struct device_attribute *attr, char *buf)
1868{
Alex Elder593a9e72012-02-07 12:03:37 -06001869 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001870
1871 return sprintf(buf, "%s\n", rbd_dev->obj);
1872}
1873
1874static ssize_t rbd_snap_show(struct device *dev,
1875 struct device_attribute *attr,
1876 char *buf)
1877{
Alex Elder593a9e72012-02-07 12:03:37 -06001878 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001879
1880 return sprintf(buf, "%s\n", rbd_dev->snap_name);
1881}
1882
1883static ssize_t rbd_image_refresh(struct device *dev,
1884 struct device_attribute *attr,
1885 const char *buf,
1886 size_t size)
1887{
Alex Elder593a9e72012-02-07 12:03:37 -06001888 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001889 int rc;
1890 int ret = size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001891
1892 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
1893
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001894 rc = __rbd_update_snaps(rbd_dev);
1895 if (rc < 0)
1896 ret = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001897
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001898 mutex_unlock(&ctl_mutex);
1899 return ret;
1900}
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001901
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001902static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
1903static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
1904static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
1905static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
1906static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
1907static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
1908static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
1909static DEVICE_ATTR(create_snap, S_IWUSR, NULL, rbd_snap_add);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001910
1911static struct attribute *rbd_attrs[] = {
1912 &dev_attr_size.attr,
1913 &dev_attr_major.attr,
1914 &dev_attr_client_id.attr,
1915 &dev_attr_pool.attr,
1916 &dev_attr_name.attr,
1917 &dev_attr_current_snap.attr,
1918 &dev_attr_refresh.attr,
1919 &dev_attr_create_snap.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001920 NULL
1921};
1922
1923static struct attribute_group rbd_attr_group = {
1924 .attrs = rbd_attrs,
1925};
1926
1927static const struct attribute_group *rbd_attr_groups[] = {
1928 &rbd_attr_group,
1929 NULL
1930};
1931
1932static void rbd_sysfs_dev_release(struct device *dev)
1933{
1934}
1935
1936static struct device_type rbd_device_type = {
1937 .name = "rbd",
1938 .groups = rbd_attr_groups,
1939 .release = rbd_sysfs_dev_release,
1940};
1941
1942
1943/*
1944 sysfs - snapshots
1945*/
1946
1947static ssize_t rbd_snap_size_show(struct device *dev,
1948 struct device_attribute *attr,
1949 char *buf)
1950{
1951 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1952
Alex Elder593a9e72012-02-07 12:03:37 -06001953 return sprintf(buf, "%zd\n", snap->size);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001954}
1955
1956static ssize_t rbd_snap_id_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
Alex Elder593a9e72012-02-07 12:03:37 -06001962 return sprintf(buf, "%llu\n", (unsigned long long) snap->id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001963}
1964
1965static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
1966static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
1967
1968static struct attribute *rbd_snap_attrs[] = {
1969 &dev_attr_snap_size.attr,
1970 &dev_attr_snap_id.attr,
1971 NULL,
1972};
1973
1974static struct attribute_group rbd_snap_attr_group = {
1975 .attrs = rbd_snap_attrs,
1976};
1977
1978static void rbd_snap_dev_release(struct device *dev)
1979{
1980 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1981 kfree(snap->name);
1982 kfree(snap);
1983}
1984
1985static const struct attribute_group *rbd_snap_attr_groups[] = {
1986 &rbd_snap_attr_group,
1987 NULL
1988};
1989
1990static struct device_type rbd_snap_device_type = {
1991 .groups = rbd_snap_attr_groups,
1992 .release = rbd_snap_dev_release,
1993};
1994
1995static void __rbd_remove_snap_dev(struct rbd_device *rbd_dev,
1996 struct rbd_snap *snap)
1997{
1998 list_del(&snap->node);
1999 device_unregister(&snap->dev);
2000}
2001
2002static int rbd_register_snap_dev(struct rbd_device *rbd_dev,
2003 struct rbd_snap *snap,
2004 struct device *parent)
2005{
2006 struct device *dev = &snap->dev;
2007 int ret;
2008
2009 dev->type = &rbd_snap_device_type;
2010 dev->parent = parent;
2011 dev->release = rbd_snap_dev_release;
2012 dev_set_name(dev, "snap_%s", snap->name);
2013 ret = device_register(dev);
2014
2015 return ret;
2016}
2017
2018static int __rbd_add_snap_dev(struct rbd_device *rbd_dev,
2019 int i, const char *name,
2020 struct rbd_snap **snapp)
2021{
2022 int ret;
2023 struct rbd_snap *snap = kzalloc(sizeof(*snap), GFP_KERNEL);
2024 if (!snap)
2025 return -ENOMEM;
2026 snap->name = kstrdup(name, GFP_KERNEL);
2027 snap->size = rbd_dev->header.snap_sizes[i];
2028 snap->id = rbd_dev->header.snapc->snaps[i];
2029 if (device_is_registered(&rbd_dev->dev)) {
2030 ret = rbd_register_snap_dev(rbd_dev, snap,
2031 &rbd_dev->dev);
2032 if (ret < 0)
2033 goto err;
2034 }
2035 *snapp = snap;
2036 return 0;
2037err:
2038 kfree(snap->name);
2039 kfree(snap);
2040 return ret;
2041}
2042
2043/*
2044 * search for the previous snap in a null delimited string list
2045 */
2046const char *rbd_prev_snap_name(const char *name, const char *start)
2047{
2048 if (name < start + 2)
2049 return NULL;
2050
2051 name -= 2;
2052 while (*name) {
2053 if (name == start)
2054 return start;
2055 name--;
2056 }
2057 return name + 1;
2058}
2059
2060/*
2061 * compare the old list of snapshots that we have to what's in the header
2062 * and update it accordingly. Note that the header holds the snapshots
2063 * in a reverse order (from newest to oldest) and we need to go from
2064 * older to new so that we don't get a duplicate snap name when
2065 * doing the process (e.g., removed snapshot and recreated a new
2066 * one with the same name.
2067 */
2068static int __rbd_init_snaps_header(struct rbd_device *rbd_dev)
2069{
2070 const char *name, *first_name;
2071 int i = rbd_dev->header.total_snaps;
2072 struct rbd_snap *snap, *old_snap = NULL;
2073 int ret;
2074 struct list_head *p, *n;
2075
2076 first_name = rbd_dev->header.snap_names;
2077 name = first_name + rbd_dev->header.snap_names_len;
2078
2079 list_for_each_prev_safe(p, n, &rbd_dev->snaps) {
2080 u64 cur_id;
2081
2082 old_snap = list_entry(p, struct rbd_snap, node);
2083
2084 if (i)
2085 cur_id = rbd_dev->header.snapc->snaps[i - 1];
2086
2087 if (!i || old_snap->id < cur_id) {
2088 /* old_snap->id was skipped, thus was removed */
2089 __rbd_remove_snap_dev(rbd_dev, old_snap);
2090 continue;
2091 }
2092 if (old_snap->id == cur_id) {
2093 /* we have this snapshot already */
2094 i--;
2095 name = rbd_prev_snap_name(name, first_name);
2096 continue;
2097 }
2098 for (; i > 0;
2099 i--, name = rbd_prev_snap_name(name, first_name)) {
2100 if (!name) {
2101 WARN_ON(1);
2102 return -EINVAL;
2103 }
2104 cur_id = rbd_dev->header.snapc->snaps[i];
2105 /* snapshot removal? handle it above */
2106 if (cur_id >= old_snap->id)
2107 break;
2108 /* a new snapshot */
2109 ret = __rbd_add_snap_dev(rbd_dev, i - 1, name, &snap);
2110 if (ret < 0)
2111 return ret;
2112
2113 /* note that we add it backward so using n and not p */
2114 list_add(&snap->node, n);
2115 p = &snap->node;
2116 }
2117 }
2118 /* we're done going over the old snap list, just add what's left */
2119 for (; i > 0; i--) {
2120 name = rbd_prev_snap_name(name, first_name);
2121 if (!name) {
2122 WARN_ON(1);
2123 return -EINVAL;
2124 }
2125 ret = __rbd_add_snap_dev(rbd_dev, i - 1, name, &snap);
2126 if (ret < 0)
2127 return ret;
2128 list_add(&snap->node, &rbd_dev->snaps);
2129 }
2130
2131 return 0;
2132}
2133
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002134static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
2135{
Alex Elderf0f8cef2012-01-29 13:57:44 -06002136 int ret;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002137 struct device *dev;
2138 struct rbd_snap *snap;
2139
2140 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2141 dev = &rbd_dev->dev;
2142
2143 dev->bus = &rbd_bus_type;
2144 dev->type = &rbd_device_type;
2145 dev->parent = &rbd_root_dev;
2146 dev->release = rbd_dev_release;
2147 dev_set_name(dev, "%d", rbd_dev->id);
2148 ret = device_register(dev);
2149 if (ret < 0)
Alex Elderf0f8cef2012-01-29 13:57:44 -06002150 goto out;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002151
2152 list_for_each_entry(snap, &rbd_dev->snaps, node) {
2153 ret = rbd_register_snap_dev(rbd_dev, snap,
2154 &rbd_dev->dev);
2155 if (ret < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002156 break;
2157 }
Alex Elderf0f8cef2012-01-29 13:57:44 -06002158out:
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002159 mutex_unlock(&ctl_mutex);
2160 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002161}
2162
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002163static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
2164{
2165 device_unregister(&rbd_dev->dev);
2166}
2167
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002168static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
2169{
2170 int ret, rc;
2171
2172 do {
2173 ret = rbd_req_sync_watch(rbd_dev, rbd_dev->obj_md_name,
2174 rbd_dev->header.obj_version);
2175 if (ret == -ERANGE) {
2176 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2177 rc = __rbd_update_snaps(rbd_dev);
2178 mutex_unlock(&ctl_mutex);
2179 if (rc < 0)
2180 return rc;
2181 }
2182 } while (ret == -ERANGE);
2183
2184 return ret;
2185}
2186
Alex Elder1ddbe942012-01-29 13:57:44 -06002187static atomic64_t rbd_id_max = ATOMIC64_INIT(0);
2188
2189/*
Alex Elder499afd52012-02-02 08:13:29 -06002190 * Get a unique rbd identifier for the given new rbd_dev, and add
2191 * the rbd_dev to the global list. The minimum rbd id is 1.
Alex Elder1ddbe942012-01-29 13:57:44 -06002192 */
Alex Elder499afd52012-02-02 08:13:29 -06002193static void rbd_id_get(struct rbd_device *rbd_dev)
Alex Elderb7f23c32012-01-29 13:57:43 -06002194{
Alex Elder499afd52012-02-02 08:13:29 -06002195 rbd_dev->id = atomic64_inc_return(&rbd_id_max);
2196
2197 spin_lock(&rbd_dev_list_lock);
2198 list_add_tail(&rbd_dev->node, &rbd_dev_list);
2199 spin_unlock(&rbd_dev_list_lock);
Alex Elder1ddbe942012-01-29 13:57:44 -06002200}
Alex Elderb7f23c32012-01-29 13:57:43 -06002201
Alex Elder1ddbe942012-01-29 13:57:44 -06002202/*
Alex Elder499afd52012-02-02 08:13:29 -06002203 * Remove an rbd_dev from the global list, and record that its
2204 * identifier is no longer in use.
Alex Elder1ddbe942012-01-29 13:57:44 -06002205 */
Alex Elder499afd52012-02-02 08:13:29 -06002206static void rbd_id_put(struct rbd_device *rbd_dev)
Alex Elder1ddbe942012-01-29 13:57:44 -06002207{
Alex Elderd184f6b2012-01-29 13:57:44 -06002208 struct list_head *tmp;
2209 int rbd_id = rbd_dev->id;
2210 int max_id;
2211
2212 BUG_ON(rbd_id < 1);
Alex Elder499afd52012-02-02 08:13:29 -06002213
2214 spin_lock(&rbd_dev_list_lock);
2215 list_del_init(&rbd_dev->node);
Alex Elderd184f6b2012-01-29 13:57:44 -06002216
2217 /*
2218 * If the id being "put" is not the current maximum, there
2219 * is nothing special we need to do.
2220 */
2221 if (rbd_id != atomic64_read(&rbd_id_max)) {
2222 spin_unlock(&rbd_dev_list_lock);
2223 return;
2224 }
2225
2226 /*
2227 * We need to update the current maximum id. Search the
2228 * list to find out what it is. We're more likely to find
2229 * the maximum at the end, so search the list backward.
2230 */
2231 max_id = 0;
2232 list_for_each_prev(tmp, &rbd_dev_list) {
2233 struct rbd_device *rbd_dev;
2234
2235 rbd_dev = list_entry(tmp, struct rbd_device, node);
2236 if (rbd_id > max_id)
2237 max_id = rbd_id;
2238 }
Alex Elder499afd52012-02-02 08:13:29 -06002239 spin_unlock(&rbd_dev_list_lock);
Alex Elderb7f23c32012-01-29 13:57:43 -06002240
Alex Elder1ddbe942012-01-29 13:57:44 -06002241 /*
Alex Elderd184f6b2012-01-29 13:57:44 -06002242 * The max id could have been updated by rbd_id_get(), in
2243 * which case it now accurately reflects the new maximum.
2244 * Be careful not to overwrite the maximum value in that
2245 * case.
Alex Elder1ddbe942012-01-29 13:57:44 -06002246 */
Alex Elderd184f6b2012-01-29 13:57:44 -06002247 atomic64_cmpxchg(&rbd_id_max, rbd_id, max_id);
Alex Elderb7f23c32012-01-29 13:57:43 -06002248}
2249
Alex Eldera725f65e2012-02-02 08:13:30 -06002250/*
Alex Eldere28fff262012-02-02 08:13:30 -06002251 * Skips over white space at *buf, and updates *buf to point to the
2252 * first found non-space character (if any). Returns the length of
Alex Elder593a9e72012-02-07 12:03:37 -06002253 * the token (string of non-white space characters) found. Note
2254 * that *buf must be terminated with '\0'.
Alex Eldere28fff262012-02-02 08:13:30 -06002255 */
2256static inline size_t next_token(const char **buf)
2257{
2258 /*
2259 * These are the characters that produce nonzero for
2260 * isspace() in the "C" and "POSIX" locales.
2261 */
2262 const char *spaces = " \f\n\r\t\v";
2263
2264 *buf += strspn(*buf, spaces); /* Find start of token */
2265
2266 return strcspn(*buf, spaces); /* Return token length */
2267}
2268
2269/*
2270 * Finds the next token in *buf, and if the provided token buffer is
2271 * big enough, copies the found token into it. The result, if
Alex Elder593a9e72012-02-07 12:03:37 -06002272 * copied, is guaranteed to be terminated with '\0'. Note that *buf
2273 * must be terminated with '\0' on entry.
Alex Eldere28fff262012-02-02 08:13:30 -06002274 *
2275 * Returns the length of the token found (not including the '\0').
2276 * Return value will be 0 if no token is found, and it will be >=
2277 * token_size if the token would not fit.
2278 *
Alex Elder593a9e72012-02-07 12:03:37 -06002279 * The *buf pointer will be updated to point beyond the end of the
Alex Eldere28fff262012-02-02 08:13:30 -06002280 * found token. Note that this occurs even if the token buffer is
2281 * too small to hold it.
2282 */
2283static inline size_t copy_token(const char **buf,
2284 char *token,
2285 size_t token_size)
2286{
2287 size_t len;
2288
2289 len = next_token(buf);
2290 if (len < token_size) {
2291 memcpy(token, *buf, len);
2292 *(token + len) = '\0';
2293 }
2294 *buf += len;
2295
2296 return len;
2297}
2298
2299/*
Alex Eldera725f65e2012-02-02 08:13:30 -06002300 * This fills in the pool_name, obj, obj_len, snap_name, obj_len,
2301 * rbd_dev, rbd_md_name, and name fields of the given rbd_dev, based
2302 * on the list of monitor addresses and other options provided via
2303 * /sys/bus/rbd/add.
2304 */
2305static int rbd_add_parse_args(struct rbd_device *rbd_dev,
2306 const char *buf,
Alex Elder7ef32142012-02-02 08:13:30 -06002307 const char **mon_addrs,
Alex Elder5214ecc2012-02-02 08:13:30 -06002308 size_t *mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002309 char *options,
2310 size_t options_size)
Alex Eldera725f65e2012-02-02 08:13:30 -06002311{
Alex Eldere28fff262012-02-02 08:13:30 -06002312 size_t len;
2313
2314 /* The first four tokens are required */
2315
Alex Elder7ef32142012-02-02 08:13:30 -06002316 len = next_token(&buf);
2317 if (!len)
Alex Eldera725f65e2012-02-02 08:13:30 -06002318 return -EINVAL;
Alex Elder5214ecc2012-02-02 08:13:30 -06002319 *mon_addrs_size = len + 1;
Alex Elder7ef32142012-02-02 08:13:30 -06002320 *mon_addrs = buf;
2321
2322 buf += len;
Alex Eldera725f65e2012-02-02 08:13:30 -06002323
Alex Eldere28fff262012-02-02 08:13:30 -06002324 len = copy_token(&buf, options, options_size);
2325 if (!len || len >= options_size)
2326 return -EINVAL;
Alex Eldera725f65e2012-02-02 08:13:30 -06002327
Alex Eldere28fff262012-02-02 08:13:30 -06002328 len = copy_token(&buf, rbd_dev->pool_name, sizeof (rbd_dev->pool_name));
2329 if (!len || len >= sizeof (rbd_dev->pool_name))
2330 return -EINVAL;
2331
2332 len = copy_token(&buf, rbd_dev->obj, sizeof (rbd_dev->obj));
2333 if (!len || len >= sizeof (rbd_dev->obj))
2334 return -EINVAL;
2335
2336 /* We have the object length in hand, save it. */
2337
2338 rbd_dev->obj_len = len;
2339
Alex Elder81a89792012-02-02 08:13:30 -06002340 BUILD_BUG_ON(RBD_MAX_MD_NAME_LEN
2341 < RBD_MAX_OBJ_NAME_LEN + sizeof (RBD_SUFFIX));
2342 sprintf(rbd_dev->obj_md_name, "%s%s", rbd_dev->obj, RBD_SUFFIX);
Alex Eldera725f65e2012-02-02 08:13:30 -06002343
Alex Eldere28fff262012-02-02 08:13:30 -06002344 /*
2345 * The snapshot name is optional, but it's an error if it's
2346 * too long. If no snapshot is supplied, fill in the default.
2347 */
2348 len = copy_token(&buf, rbd_dev->snap_name, sizeof (rbd_dev->snap_name));
2349 if (!len)
2350 memcpy(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
2351 sizeof (RBD_SNAP_HEAD_NAME));
2352 else if (len >= sizeof (rbd_dev->snap_name))
2353 return -EINVAL;
2354
Alex Eldera725f65e2012-02-02 08:13:30 -06002355 return 0;
2356}
2357
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002358static ssize_t rbd_add(struct bus_type *bus,
2359 const char *buf,
2360 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002361{
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002362 struct rbd_device *rbd_dev;
Alex Elder7ef32142012-02-02 08:13:30 -06002363 const char *mon_addrs = NULL;
2364 size_t mon_addrs_size = 0;
Alex Elder27cc2592012-02-02 08:13:30 -06002365 char *options = NULL;
2366 struct ceph_osd_client *osdc;
2367 int rc = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002368
2369 if (!try_module_get(THIS_MODULE))
2370 return -ENODEV;
2371
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002372 rbd_dev = kzalloc(sizeof(*rbd_dev), GFP_KERNEL);
2373 if (!rbd_dev)
Alex Elder27cc2592012-02-02 08:13:30 -06002374 goto err_nomem;
Alex Elder27cc2592012-02-02 08:13:30 -06002375 options = kmalloc(count, GFP_KERNEL);
2376 if (!options)
2377 goto err_nomem;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002378
2379 /* static rbd_device initialization */
2380 spin_lock_init(&rbd_dev->lock);
2381 INIT_LIST_HEAD(&rbd_dev->node);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002382 INIT_LIST_HEAD(&rbd_dev->snaps);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002383
Alex Elder0e805a12012-01-11 19:42:15 -08002384 init_rwsem(&rbd_dev->header.snap_rwsem);
2385
Alex Elderd184f6b2012-01-29 13:57:44 -06002386 /* generate unique id: find highest unique id, add one */
Alex Elder499afd52012-02-02 08:13:29 -06002387 rbd_id_get(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002388
Alex Eldera725f65e2012-02-02 08:13:30 -06002389 /* Fill in the device name, now that we have its id. */
Alex Elder81a89792012-02-02 08:13:30 -06002390 BUILD_BUG_ON(DEV_NAME_LEN
2391 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
2392 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->id);
Alex Eldere124a822012-01-29 13:57:44 -06002393
Alex Eldera725f65e2012-02-02 08:13:30 -06002394 /* parse add command */
Alex Elder7ef32142012-02-02 08:13:30 -06002395 rc = rbd_add_parse_args(rbd_dev, buf, &mon_addrs, &mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002396 options, count);
Alex Eldera725f65e2012-02-02 08:13:30 -06002397 if (rc)
2398 goto err_put_id;
2399
Alex Elder5214ecc2012-02-02 08:13:30 -06002400 rbd_dev->rbd_client = rbd_get_client(mon_addrs, mon_addrs_size - 1,
2401 options);
Alex Elderd720bcb2012-02-02 08:13:30 -06002402 if (IS_ERR(rbd_dev->rbd_client)) {
2403 rc = PTR_ERR(rbd_dev->rbd_client);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002404 goto err_put_id;
Alex Elderd720bcb2012-02-02 08:13:30 -06002405 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002406
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002407 /* pick the pool */
Alex Elder1dbb4392012-01-24 10:08:37 -06002408 osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002409 rc = ceph_pg_poolid_by_name(osdc->osdmap, rbd_dev->pool_name);
2410 if (rc < 0)
2411 goto err_out_client;
2412 rbd_dev->poolid = rc;
2413
2414 /* register our block device */
Alex Elder27cc2592012-02-02 08:13:30 -06002415 rc = register_blkdev(0, rbd_dev->name);
2416 if (rc < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002417 goto err_out_client;
Alex Elder27cc2592012-02-02 08:13:30 -06002418 rbd_dev->major = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002419
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002420 rc = rbd_bus_add_dev(rbd_dev);
2421 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002422 goto err_out_blkdev;
2423
Alex Elder32eec682012-02-08 16:11:14 -06002424 /*
2425 * At this point cleanup in the event of an error is the job
2426 * of the sysfs code (initiated by rbd_bus_del_dev()).
2427 *
2428 * Set up and announce blkdev mapping.
2429 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002430 rc = rbd_init_disk(rbd_dev);
2431 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002432 goto err_out_bus;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002433
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002434 rc = rbd_init_watch_dev(rbd_dev);
2435 if (rc)
2436 goto err_out_bus;
2437
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002438 return count;
2439
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002440err_out_bus:
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002441 /* this will also clean up rest of rbd_dev stuff */
2442
2443 rbd_bus_del_dev(rbd_dev);
2444 kfree(options);
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002445 return rc;
2446
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002447err_out_blkdev:
2448 unregister_blkdev(rbd_dev->major, rbd_dev->name);
2449err_out_client:
2450 rbd_put_client(rbd_dev);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002451err_put_id:
Alex Elder499afd52012-02-02 08:13:29 -06002452 rbd_id_put(rbd_dev);
Alex Elder27cc2592012-02-02 08:13:30 -06002453err_nomem:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002454 kfree(options);
Alex Elder27cc2592012-02-02 08:13:30 -06002455 kfree(rbd_dev);
2456
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002457 dout("Error adding device %s\n", buf);
2458 module_put(THIS_MODULE);
Alex Elder27cc2592012-02-02 08:13:30 -06002459
2460 return (ssize_t) rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002461}
2462
2463static struct rbd_device *__rbd_get_dev(unsigned long id)
2464{
2465 struct list_head *tmp;
2466 struct rbd_device *rbd_dev;
2467
Alex Eldere124a822012-01-29 13:57:44 -06002468 spin_lock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002469 list_for_each(tmp, &rbd_dev_list) {
2470 rbd_dev = list_entry(tmp, struct rbd_device, node);
Alex Eldere124a822012-01-29 13:57:44 -06002471 if (rbd_dev->id == id) {
2472 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002473 return rbd_dev;
Alex Eldere124a822012-01-29 13:57:44 -06002474 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002475 }
Alex Eldere124a822012-01-29 13:57:44 -06002476 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002477 return NULL;
2478}
2479
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002480static void rbd_dev_release(struct device *dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002481{
Alex Elder593a9e72012-02-07 12:03:37 -06002482 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002483
Alex Elder1dbb4392012-01-24 10:08:37 -06002484 if (rbd_dev->watch_request) {
2485 struct ceph_client *client = rbd_dev->rbd_client->client;
2486
2487 ceph_osdc_unregister_linger_request(&client->osdc,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002488 rbd_dev->watch_request);
Alex Elder1dbb4392012-01-24 10:08:37 -06002489 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002490 if (rbd_dev->watch_event)
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07002491 rbd_req_sync_unwatch(rbd_dev, rbd_dev->obj_md_name);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002492
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002493 rbd_put_client(rbd_dev);
2494
2495 /* clean up and free blkdev */
2496 rbd_free_disk(rbd_dev);
2497 unregister_blkdev(rbd_dev->major, rbd_dev->name);
Alex Elder32eec682012-02-08 16:11:14 -06002498
2499 /* done with the id, and with the rbd_dev */
2500 rbd_id_put(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002501 kfree(rbd_dev);
2502
2503 /* release module ref */
2504 module_put(THIS_MODULE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002505}
2506
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002507static ssize_t rbd_remove(struct bus_type *bus,
2508 const char *buf,
2509 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002510{
2511 struct rbd_device *rbd_dev = NULL;
2512 int target_id, rc;
2513 unsigned long ul;
2514 int ret = count;
2515
2516 rc = strict_strtoul(buf, 10, &ul);
2517 if (rc)
2518 return rc;
2519
2520 /* convert to int; abort if we lost anything in the conversion */
2521 target_id = (int) ul;
2522 if (target_id != ul)
2523 return -EINVAL;
2524
2525 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2526
2527 rbd_dev = __rbd_get_dev(target_id);
2528 if (!rbd_dev) {
2529 ret = -ENOENT;
2530 goto done;
2531 }
2532
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002533 __rbd_remove_all_snaps(rbd_dev);
2534 rbd_bus_del_dev(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002535
2536done:
2537 mutex_unlock(&ctl_mutex);
2538 return ret;
2539}
2540
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002541static ssize_t rbd_snap_add(struct device *dev,
2542 struct device_attribute *attr,
2543 const char *buf,
2544 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002545{
Alex Elder593a9e72012-02-07 12:03:37 -06002546 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002547 int ret;
2548 char *name = kmalloc(count + 1, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002549 if (!name)
2550 return -ENOMEM;
2551
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002552 snprintf(name, count, "%s", buf);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002553
2554 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2555
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002556 ret = rbd_header_add_snap(rbd_dev,
2557 name, GFP_KERNEL);
2558 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002559 goto err_unlock;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002560
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002561 ret = __rbd_update_snaps(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002562 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002563 goto err_unlock;
2564
2565 /* shouldn't hold ctl_mutex when notifying.. notify might
2566 trigger a watch callback that would need to get that mutex */
2567 mutex_unlock(&ctl_mutex);
2568
2569 /* make a best effort, don't error if failed */
2570 rbd_req_sync_notify(rbd_dev, rbd_dev->obj_md_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002571
2572 ret = count;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002573 kfree(name);
2574 return ret;
2575
2576err_unlock:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002577 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002578 kfree(name);
2579 return ret;
2580}
2581
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002582/*
2583 * create control files in sysfs
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002584 * /sys/bus/rbd/...
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002585 */
2586static int rbd_sysfs_init(void)
2587{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002588 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002589
Alex Elderfed4c142012-02-07 12:03:36 -06002590 ret = device_register(&rbd_root_dev);
Alex Elder21079782012-01-24 10:08:36 -06002591 if (ret < 0)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002592 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002593
Alex Elderfed4c142012-02-07 12:03:36 -06002594 ret = bus_register(&rbd_bus_type);
2595 if (ret < 0)
2596 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002597
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002598 return ret;
2599}
2600
2601static void rbd_sysfs_cleanup(void)
2602{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002603 bus_unregister(&rbd_bus_type);
Alex Elderfed4c142012-02-07 12:03:36 -06002604 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002605}
2606
2607int __init rbd_init(void)
2608{
2609 int rc;
2610
2611 rc = rbd_sysfs_init();
2612 if (rc)
2613 return rc;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002614 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002615 return 0;
2616}
2617
2618void __exit rbd_exit(void)
2619{
2620 rbd_sysfs_cleanup();
2621}
2622
2623module_init(rbd_init);
2624module_exit(rbd_exit);
2625
2626MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
2627MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
2628MODULE_DESCRIPTION("rados block device");
2629
2630/* following authorship retained from original osdblk.c */
2631MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
2632
2633MODULE_LICENSE("GPL");