blob: 9917943a3572ef577ac7a511ef375d11dae08350 [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
Alex Elder1fe5e992012-07-25 09:32:41 -0500243static int rbd_refresh_header(struct rbd_device *rbd_dev, u64 *hver);
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{
Alex Elderccece232012-07-10 20:30:10 -0500497 u32 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);
Alex Elderccece232012-07-10 20:30:10 -0500503 if (snap_count > (SIZE_MAX - sizeof(struct ceph_snap_context))
504 / sizeof (u64))
Xi Wang50f7c4c2012-04-20 15:49:44 -0500505 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
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700512 if (snap_count) {
Alex Elderccece232012-07-10 20:30:10 -0500513 header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700514 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 {
Alex Elderccece232012-07-10 20:30:10 -0500523 WARN_ON(ondisk->snap_names_len);
524 header->snap_names_len = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700525 header->snap_names = NULL;
526 header->snap_sizes = NULL;
527 }
Alex Elder849b4262012-07-09 21:04:24 -0500528
529 header->object_prefix = kmalloc(sizeof (ondisk->block_name) + 1,
Alex Eldered63f4f2012-07-19 09:09:27 -0500530 GFP_KERNEL);
Alex Elder849b4262012-07-09 21:04:24 -0500531 if (!header->object_prefix)
532 goto err_sizes;
533
Alex Elderca1e49a2012-07-10 20:30:09 -0500534 memcpy(header->object_prefix, ondisk->block_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700535 sizeof(ondisk->block_name));
Alex Elder849b4262012-07-09 21:04:24 -0500536 header->object_prefix[sizeof (ondisk->block_name)] = '\0';
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700537
538 header->image_size = le64_to_cpu(ondisk->image_size);
539 header->obj_order = ondisk->options.order;
540 header->crypt_type = ondisk->options.crypt_type;
541 header->comp_type = ondisk->options.comp_type;
542
543 atomic_set(&header->snapc->nref, 1);
Alex Elder505cbb92012-07-19 08:49:18 -0500544 header->snapc->seq = le64_to_cpu(ondisk->snap_seq);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700545 header->snapc->num_snaps = snap_count;
546 header->total_snaps = snap_count;
547
Alex Elder21079782012-01-24 10:08:36 -0600548 if (snap_count && allocated_snaps == snap_count) {
Alex Elderccece232012-07-10 20:30:10 -0500549 int i;
550
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700551 for (i = 0; i < snap_count; i++) {
552 header->snapc->snaps[i] =
553 le64_to_cpu(ondisk->snaps[i].id);
554 header->snap_sizes[i] =
555 le64_to_cpu(ondisk->snaps[i].image_size);
556 }
557
558 /* copy snapshot names */
Alex Elderccece232012-07-10 20:30:10 -0500559 memcpy(header->snap_names, &ondisk->snaps[snap_count],
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700560 header->snap_names_len);
561 }
562
563 return 0;
564
Alex Elder849b4262012-07-09 21:04:24 -0500565err_sizes:
566 kfree(header->snap_sizes);
Alex Elderccece232012-07-10 20:30:10 -0500567 header->snap_sizes = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700568err_names:
569 kfree(header->snap_names);
Alex Elderccece232012-07-10 20:30:10 -0500570 header->snap_names = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700571err_snapc:
572 kfree(header->snapc);
Alex Elderccece232012-07-10 20:30:10 -0500573 header->snapc = NULL;
574
Alex Elder00f1f362012-02-07 12:03:36 -0600575 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700576}
577
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700578static int snap_by_name(struct rbd_image_header *header, const char *snap_name,
579 u64 *seq, u64 *size)
580{
581 int i;
582 char *p = header->snap_names;
583
Alex Elder00f1f362012-02-07 12:03:36 -0600584 for (i = 0; i < header->total_snaps; i++) {
585 if (!strcmp(snap_name, p)) {
586
587 /* Found it. Pass back its id and/or size */
588
589 if (seq)
590 *seq = header->snapc->snaps[i];
591 if (size)
592 *size = header->snap_sizes[i];
593 return i;
594 }
595 p += strlen(p) + 1; /* Skip ahead to the next name */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700596 }
Alex Elder00f1f362012-02-07 12:03:36 -0600597 return -ENOENT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700598}
599
Alex Elder0ce1a792012-07-03 16:01:18 -0500600static int rbd_header_set_snap(struct rbd_device *rbd_dev, u64 *size)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700601{
Alex Elder78dc4472012-07-19 08:49:18 -0500602 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700603
Alex Elder0ce1a792012-07-03 16:01:18 -0500604 down_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700605
Alex Elder0ce1a792012-07-03 16:01:18 -0500606 if (!memcmp(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
Josh Durgincc9d7342011-11-21 18:19:13 -0800607 sizeof (RBD_SNAP_HEAD_NAME))) {
Alex Elder0ce1a792012-07-03 16:01:18 -0500608 rbd_dev->snap_id = CEPH_NOSNAP;
Josh Durgine88a36e2011-11-21 18:14:25 -0800609 rbd_dev->snap_exists = false;
Alex Elder0ce1a792012-07-03 16:01:18 -0500610 rbd_dev->read_only = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700611 if (size)
Alex Elder78dc4472012-07-19 08:49:18 -0500612 *size = rbd_dev->header.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700613 } else {
Alex Elder78dc4472012-07-19 08:49:18 -0500614 u64 snap_id = 0;
615
616 ret = snap_by_name(&rbd_dev->header, rbd_dev->snap_name,
617 &snap_id, size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700618 if (ret < 0)
619 goto done;
Alex Elder78dc4472012-07-19 08:49:18 -0500620 rbd_dev->snap_id = snap_id;
Josh Durgine88a36e2011-11-21 18:14:25 -0800621 rbd_dev->snap_exists = true;
Alex Elder0ce1a792012-07-03 16:01:18 -0500622 rbd_dev->read_only = 1;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700623 }
624
625 ret = 0;
626done:
Alex Elder0ce1a792012-07-03 16:01:18 -0500627 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700628 return ret;
629}
630
631static void rbd_header_free(struct rbd_image_header *header)
632{
Alex Elder849b4262012-07-09 21:04:24 -0500633 kfree(header->object_prefix);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700634 kfree(header->snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -0500635 kfree(header->snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -0800636 ceph_put_snap_context(header->snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700637}
638
639/*
640 * get the actual striped segment name, offset and length
641 */
642static u64 rbd_get_segment(struct rbd_image_header *header,
Alex Elderca1e49a2012-07-10 20:30:09 -0500643 const char *object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700644 u64 ofs, u64 len,
645 char *seg_name, u64 *segofs)
646{
647 u64 seg = ofs >> header->obj_order;
648
649 if (seg_name)
650 snprintf(seg_name, RBD_MAX_SEG_NAME_LEN,
Alex Elderca1e49a2012-07-10 20:30:09 -0500651 "%s.%012llx", object_prefix, seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700652
653 ofs = ofs & ((1 << header->obj_order) - 1);
654 len = min_t(u64, len, (1 << header->obj_order) - ofs);
655
656 if (segofs)
657 *segofs = ofs;
658
659 return len;
660}
661
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700662static int rbd_get_num_segments(struct rbd_image_header *header,
663 u64 ofs, u64 len)
664{
665 u64 start_seg = ofs >> header->obj_order;
666 u64 end_seg = (ofs + len - 1) >> header->obj_order;
667 return end_seg - start_seg + 1;
668}
669
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700670/*
Josh Durgin029bcbd2011-07-22 11:35:23 -0700671 * returns the size of an object in the image
672 */
673static u64 rbd_obj_bytes(struct rbd_image_header *header)
674{
675 return 1 << header->obj_order;
676}
677
678/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700679 * bio helpers
680 */
681
682static void bio_chain_put(struct bio *chain)
683{
684 struct bio *tmp;
685
686 while (chain) {
687 tmp = chain;
688 chain = chain->bi_next;
689 bio_put(tmp);
690 }
691}
692
693/*
694 * zeros a bio chain, starting at specific offset
695 */
696static void zero_bio_chain(struct bio *chain, int start_ofs)
697{
698 struct bio_vec *bv;
699 unsigned long flags;
700 void *buf;
701 int i;
702 int pos = 0;
703
704 while (chain) {
705 bio_for_each_segment(bv, chain, i) {
706 if (pos + bv->bv_len > start_ofs) {
707 int remainder = max(start_ofs - pos, 0);
708 buf = bvec_kmap_irq(bv, &flags);
709 memset(buf + remainder, 0,
710 bv->bv_len - remainder);
Dan Carpenter85b5aaa2010-10-11 21:15:11 +0200711 bvec_kunmap_irq(buf, &flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700712 }
713 pos += bv->bv_len;
714 }
715
716 chain = chain->bi_next;
717 }
718}
719
720/*
721 * bio_chain_clone - clone a chain of bios up to a certain length.
722 * might return a bio_pair that will need to be released.
723 */
724static struct bio *bio_chain_clone(struct bio **old, struct bio **next,
725 struct bio_pair **bp,
726 int len, gfp_t gfpmask)
727{
728 struct bio *tmp, *old_chain = *old, *new_chain = NULL, *tail = NULL;
729 int total = 0;
730
731 if (*bp) {
732 bio_pair_release(*bp);
733 *bp = NULL;
734 }
735
736 while (old_chain && (total < len)) {
737 tmp = bio_kmalloc(gfpmask, old_chain->bi_max_vecs);
738 if (!tmp)
739 goto err_out;
740
741 if (total + old_chain->bi_size > len) {
742 struct bio_pair *bp;
743
744 /*
745 * this split can only happen with a single paged bio,
746 * split_bio will BUG_ON if this is not the case
747 */
748 dout("bio_chain_clone split! total=%d remaining=%d"
Alex Elderbd919d42012-07-13 20:35:11 -0500749 "bi_size=%u\n",
750 total, len - total, old_chain->bi_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700751
752 /* split the bio. We'll release it either in the next
753 call, or it will have to be released outside */
Alex Elder593a9e72012-02-07 12:03:37 -0600754 bp = bio_split(old_chain, (len - total) / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700755 if (!bp)
756 goto err_out;
757
758 __bio_clone(tmp, &bp->bio1);
759
760 *next = &bp->bio2;
761 } else {
762 __bio_clone(tmp, old_chain);
763 *next = old_chain->bi_next;
764 }
765
766 tmp->bi_bdev = NULL;
767 gfpmask &= ~__GFP_WAIT;
768 tmp->bi_next = NULL;
769
770 if (!new_chain) {
771 new_chain = tail = tmp;
772 } else {
773 tail->bi_next = tmp;
774 tail = tmp;
775 }
776 old_chain = old_chain->bi_next;
777
778 total += tmp->bi_size;
779 }
780
781 BUG_ON(total < len);
782
783 if (tail)
784 tail->bi_next = NULL;
785
786 *old = old_chain;
787
788 return new_chain;
789
790err_out:
791 dout("bio_chain_clone with err\n");
792 bio_chain_put(new_chain);
793 return NULL;
794}
795
796/*
797 * helpers for osd request op vectors.
798 */
Alex Elder57cfc102012-06-26 12:57:03 -0700799static struct ceph_osd_req_op *rbd_create_rw_ops(int num_ops,
800 int opcode, u32 payload_len)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700801{
Alex Elder57cfc102012-06-26 12:57:03 -0700802 struct ceph_osd_req_op *ops;
803
804 ops = kzalloc(sizeof (*ops) * (num_ops + 1), GFP_NOIO);
805 if (!ops)
806 return NULL;
807
808 ops[0].op = opcode;
809
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700810 /*
811 * op extent offset and length will be set later on
812 * in calc_raw_layout()
813 */
Alex Elder57cfc102012-06-26 12:57:03 -0700814 ops[0].payload_len = payload_len;
815
816 return ops;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700817}
818
819static void rbd_destroy_ops(struct ceph_osd_req_op *ops)
820{
821 kfree(ops);
822}
823
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700824static void rbd_coll_end_req_index(struct request *rq,
825 struct rbd_req_coll *coll,
826 int index,
827 int ret, u64 len)
828{
829 struct request_queue *q;
830 int min, max, i;
831
Alex Elderbd919d42012-07-13 20:35:11 -0500832 dout("rbd_coll_end_req_index %p index %d ret %d len %llu\n",
833 coll, index, ret, (unsigned long long) len);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700834
835 if (!rq)
836 return;
837
838 if (!coll) {
839 blk_end_request(rq, ret, len);
840 return;
841 }
842
843 q = rq->q;
844
845 spin_lock_irq(q->queue_lock);
846 coll->status[index].done = 1;
847 coll->status[index].rc = ret;
848 coll->status[index].bytes = len;
849 max = min = coll->num_done;
850 while (max < coll->total && coll->status[max].done)
851 max++;
852
853 for (i = min; i<max; i++) {
854 __blk_end_request(rq, coll->status[i].rc,
855 coll->status[i].bytes);
856 coll->num_done++;
857 kref_put(&coll->kref, rbd_coll_release);
858 }
859 spin_unlock_irq(q->queue_lock);
860}
861
862static void rbd_coll_end_req(struct rbd_request *req,
863 int ret, u64 len)
864{
865 rbd_coll_end_req_index(req->rq, req->coll, req->coll_index, ret, len);
866}
867
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700868/*
869 * Send ceph osd request
870 */
871static int rbd_do_request(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -0500872 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700873 struct ceph_snap_context *snapc,
874 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -0500875 const char *object_name, u64 ofs, u64 len,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700876 struct bio *bio,
877 struct page **pages,
878 int num_pages,
879 int flags,
880 struct ceph_osd_req_op *ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700881 struct rbd_req_coll *coll,
882 int coll_index,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700883 void (*rbd_cb)(struct ceph_osd_request *req,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700884 struct ceph_msg *msg),
885 struct ceph_osd_request **linger_req,
886 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700887{
888 struct ceph_osd_request *req;
889 struct ceph_file_layout *layout;
890 int ret;
891 u64 bno;
892 struct timespec mtime = CURRENT_TIME;
893 struct rbd_request *req_data;
894 struct ceph_osd_request_head *reqhead;
Alex Elder1dbb4392012-01-24 10:08:37 -0600895 struct ceph_osd_client *osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700896
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700897 req_data = kzalloc(sizeof(*req_data), GFP_NOIO);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700898 if (!req_data) {
899 if (coll)
900 rbd_coll_end_req_index(rq, coll, coll_index,
901 -ENOMEM, len);
902 return -ENOMEM;
903 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700904
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700905 if (coll) {
906 req_data->coll = coll;
907 req_data->coll_index = coll_index;
908 }
909
Alex Elderbd919d42012-07-13 20:35:11 -0500910 dout("rbd_do_request object_name=%s ofs=%llu len=%llu\n", object_name,
911 (unsigned long long) ofs, (unsigned long long) len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700912
Alex Elder0ce1a792012-07-03 16:01:18 -0500913 osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder1dbb4392012-01-24 10:08:37 -0600914 req = ceph_osdc_alloc_request(osdc, flags, snapc, ops,
915 false, GFP_NOIO, pages, bio);
Sage Weil4ad12622011-05-03 09:23:36 -0700916 if (!req) {
Sage Weil4ad12622011-05-03 09:23:36 -0700917 ret = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700918 goto done_pages;
919 }
920
921 req->r_callback = rbd_cb;
922
923 req_data->rq = rq;
924 req_data->bio = bio;
925 req_data->pages = pages;
926 req_data->len = len;
927
928 req->r_priv = req_data;
929
930 reqhead = req->r_request->front.iov_base;
931 reqhead->snapid = cpu_to_le64(CEPH_NOSNAP);
932
Alex Elderaded07e2012-07-03 16:01:18 -0500933 strncpy(req->r_oid, object_name, sizeof(req->r_oid));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700934 req->r_oid_len = strlen(req->r_oid);
935
936 layout = &req->r_file_layout;
937 memset(layout, 0, sizeof(*layout));
938 layout->fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
939 layout->fl_stripe_count = cpu_to_le32(1);
940 layout->fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
Alex Elder0ce1a792012-07-03 16:01:18 -0500941 layout->fl_pg_pool = cpu_to_le32(rbd_dev->pool_id);
Alex Elder1dbb4392012-01-24 10:08:37 -0600942 ceph_calc_raw_layout(osdc, layout, snapid, ofs, &len, &bno,
943 req, ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700944
945 ceph_osdc_build_request(req, ofs, &len,
946 ops,
947 snapc,
948 &mtime,
949 req->r_oid, req->r_oid_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700950
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);
Alex Elderbd919d42012-07-13 20:35:11 -0500964 dout("reassert_ver=%llu\n",
965 (unsigned long long)
966 le64_to_cpu(req->r_reassert_version.version));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700967 ceph_osdc_put_request(req);
968 }
969 return ret;
970
971done_err:
972 bio_chain_put(req_data->bio);
973 ceph_osdc_put_request(req);
974done_pages:
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700975 rbd_coll_end_req(req_data, ret, len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700976 kfree(req_data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700977 return ret;
978}
979
980/*
981 * Ceph osd op callback
982 */
983static void rbd_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
984{
985 struct rbd_request *req_data = req->r_priv;
986 struct ceph_osd_reply_head *replyhead;
987 struct ceph_osd_op *op;
988 __s32 rc;
989 u64 bytes;
990 int read_op;
991
992 /* parse reply */
993 replyhead = msg->front.iov_base;
994 WARN_ON(le32_to_cpu(replyhead->num_ops) == 0);
995 op = (void *)(replyhead + 1);
996 rc = le32_to_cpu(replyhead->result);
997 bytes = le64_to_cpu(op->extent.length);
Dan Carpenter895cfcc2012-06-06 09:15:33 -0500998 read_op = (le16_to_cpu(op->op) == CEPH_OSD_OP_READ);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700999
Alex Elderbd919d42012-07-13 20:35:11 -05001000 dout("rbd_req_cb bytes=%llu readop=%d rc=%d\n",
1001 (unsigned long long) bytes, read_op, (int) rc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001002
1003 if (rc == -ENOENT && read_op) {
1004 zero_bio_chain(req_data->bio, 0);
1005 rc = 0;
1006 } else if (rc == 0 && read_op && bytes < req_data->len) {
1007 zero_bio_chain(req_data->bio, bytes);
1008 bytes = req_data->len;
1009 }
1010
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001011 rbd_coll_end_req(req_data, rc, bytes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001012
1013 if (req_data->bio)
1014 bio_chain_put(req_data->bio);
1015
1016 ceph_osdc_put_request(req);
1017 kfree(req_data);
1018}
1019
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001020static void rbd_simple_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1021{
1022 ceph_osdc_put_request(req);
1023}
1024
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001025/*
1026 * Do a synchronous ceph osd operation
1027 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001028static int rbd_req_sync_op(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001029 struct ceph_snap_context *snapc,
1030 u64 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001031 int flags,
Alex Elder913d2fd2012-06-26 12:57:03 -07001032 struct ceph_osd_req_op *ops,
Alex Elderaded07e2012-07-03 16:01:18 -05001033 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001034 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;
Alex Elder913d2fd2012-06-26 12:57:03 -07001042
1043 BUG_ON(ops == NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001044
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
Alex Elder0ce1a792012-07-03 16:01:18 -05001050 ret = rbd_do_request(NULL, rbd_dev, snapc, snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001051 object_name, ofs, len, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001052 pages, num_pages,
1053 flags,
1054 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001055 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001056 NULL,
1057 linger_req, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001058 if (ret < 0)
Alex Elder913d2fd2012-06-26 12:57:03 -07001059 goto done;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001060
1061 if ((flags & CEPH_OSD_FLAG_READ) && buf)
1062 ret = ceph_copy_from_page_vector(pages, buf, ofs, ret);
1063
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001064done:
1065 ceph_release_page_vector(pages, num_pages);
1066 return ret;
1067}
1068
1069/*
1070 * Do an asynchronous ceph osd operation
1071 */
1072static int rbd_do_op(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -05001073 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001074 struct ceph_snap_context *snapc,
1075 u64 snapid,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001076 int opcode, int flags,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001077 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001078 struct bio *bio,
1079 struct rbd_req_coll *coll,
1080 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001081{
1082 char *seg_name;
1083 u64 seg_ofs;
1084 u64 seg_len;
1085 int ret;
1086 struct ceph_osd_req_op *ops;
1087 u32 payload_len;
1088
1089 seg_name = kmalloc(RBD_MAX_SEG_NAME_LEN + 1, GFP_NOIO);
1090 if (!seg_name)
1091 return -ENOMEM;
1092
1093 seg_len = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001094 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001095 ofs, len,
1096 seg_name, &seg_ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001097
1098 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
1099
Alex Elder57cfc102012-06-26 12:57:03 -07001100 ret = -ENOMEM;
1101 ops = rbd_create_rw_ops(1, opcode, payload_len);
1102 if (!ops)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001103 goto done;
1104
1105 /* we've taken care of segment sizes earlier when we
1106 cloned the bios. We should never have a segment
1107 truncated at this point */
1108 BUG_ON(seg_len < len);
1109
1110 ret = rbd_do_request(rq, rbd_dev, snapc, snapid,
1111 seg_name, seg_ofs, seg_len,
1112 bio,
1113 NULL, 0,
1114 flags,
1115 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001116 coll, coll_index,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001117 rbd_req_cb, 0, NULL);
Sage Weil11f77002011-05-12 16:13:54 -07001118
1119 rbd_destroy_ops(ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001120done:
1121 kfree(seg_name);
1122 return ret;
1123}
1124
1125/*
1126 * Request async osd write
1127 */
1128static int rbd_req_write(struct request *rq,
1129 struct rbd_device *rbd_dev,
1130 struct ceph_snap_context *snapc,
1131 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001132 struct bio *bio,
1133 struct rbd_req_coll *coll,
1134 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001135{
1136 return rbd_do_op(rq, rbd_dev, snapc, CEPH_NOSNAP,
1137 CEPH_OSD_OP_WRITE,
1138 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001139 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001140}
1141
1142/*
1143 * Request async osd read
1144 */
1145static int rbd_req_read(struct request *rq,
1146 struct rbd_device *rbd_dev,
1147 u64 snapid,
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, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001154 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001155 CEPH_OSD_OP_READ,
1156 CEPH_OSD_FLAG_READ,
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 sync osd read
1162 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001163static int rbd_req_sync_read(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001164 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001165 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001166 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001167 char *buf,
1168 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001169{
Alex Elder913d2fd2012-06-26 12:57:03 -07001170 struct ceph_osd_req_op *ops;
1171 int ret;
1172
1173 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_READ, 0);
1174 if (!ops)
1175 return -ENOMEM;
1176
1177 ret = rbd_req_sync_op(rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001178 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001179 CEPH_OSD_FLAG_READ,
Alex Elder913d2fd2012-06-26 12:57:03 -07001180 ops, object_name, ofs, len, buf, NULL, ver);
1181 rbd_destroy_ops(ops);
1182
1183 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001184}
1185
1186/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001187 * Request sync osd watch
1188 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001189static int rbd_req_sync_notify_ack(struct rbd_device *rbd_dev,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001190 u64 ver,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001191 u64 notify_id)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001192{
1193 struct ceph_osd_req_op *ops;
Sage Weil11f77002011-05-12 16:13:54 -07001194 int ret;
1195
Alex Elder57cfc102012-06-26 12:57:03 -07001196 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY_ACK, 0);
1197 if (!ops)
1198 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001199
Josh Durgina71b8912011-12-05 18:10:44 -08001200 ops[0].watch.ver = cpu_to_le64(ver);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001201 ops[0].watch.cookie = notify_id;
1202 ops[0].watch.flag = 0;
1203
Alex Elder0ce1a792012-07-03 16:01:18 -05001204 ret = rbd_do_request(NULL, rbd_dev, NULL, CEPH_NOSNAP,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001205 rbd_dev->header_name, 0, 0, NULL,
Alex Elderad4f2322012-07-03 16:01:19 -05001206 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001207 CEPH_OSD_FLAG_READ,
1208 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001209 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001210 rbd_simple_req_cb, 0, NULL);
1211
1212 rbd_destroy_ops(ops);
1213 return ret;
1214}
1215
1216static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1217{
Alex Elder0ce1a792012-07-03 16:01:18 -05001218 struct rbd_device *rbd_dev = (struct rbd_device *)data;
Josh Durgina71b8912011-12-05 18:10:44 -08001219 u64 hver;
Sage Weil13143d22011-05-12 16:08:30 -07001220 int rc;
1221
Alex Elder0ce1a792012-07-03 16:01:18 -05001222 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001223 return;
1224
Alex Elderbd919d42012-07-13 20:35:11 -05001225 dout("rbd_watch_cb %s notify_id=%llu opcode=%u\n",
1226 rbd_dev->header_name, (unsigned long long) notify_id,
1227 (unsigned int) opcode);
Alex Elder1fe5e992012-07-25 09:32:41 -05001228 rc = rbd_refresh_header(rbd_dev, &hver);
Sage Weil13143d22011-05-12 16:08:30 -07001229 if (rc)
Alex Elderf0f8cef2012-01-29 13:57:44 -06001230 pr_warning(RBD_DRV_NAME "%d got notification but failed to "
Alex Elder0ce1a792012-07-03 16:01:18 -05001231 " update snaps: %d\n", rbd_dev->major, rc);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001232
Alex Elder7f0a24d2012-07-25 09:32:40 -05001233 rbd_req_sync_notify_ack(rbd_dev, hver, notify_id);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001234}
1235
1236/*
1237 * Request sync osd watch
1238 */
Alex Elder0e6f3222012-07-25 09:32:40 -05001239static int rbd_req_sync_watch(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001240{
1241 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001242 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder57cfc102012-06-26 12:57:03 -07001243 int ret;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001244
Alex Elder57cfc102012-06-26 12:57:03 -07001245 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1246 if (!ops)
1247 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001248
1249 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, 0,
Alex Elder0ce1a792012-07-03 16:01:18 -05001250 (void *)rbd_dev, &rbd_dev->watch_event);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001251 if (ret < 0)
1252 goto fail;
1253
Alex Elder0e6f3222012-07-25 09:32:40 -05001254 ops[0].watch.ver = cpu_to_le64(rbd_dev->header.obj_version);
Alex Elder0ce1a792012-07-03 16:01:18 -05001255 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001256 ops[0].watch.flag = 1;
1257
Alex Elder0ce1a792012-07-03 16:01:18 -05001258 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001259 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001260 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1261 ops,
Alex Elder0e6f3222012-07-25 09:32:40 -05001262 rbd_dev->header_name,
1263 0, 0, NULL,
Alex Elder0ce1a792012-07-03 16:01:18 -05001264 &rbd_dev->watch_request, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001265
1266 if (ret < 0)
1267 goto fail_event;
1268
1269 rbd_destroy_ops(ops);
1270 return 0;
1271
1272fail_event:
Alex Elder0ce1a792012-07-03 16:01:18 -05001273 ceph_osdc_cancel_event(rbd_dev->watch_event);
1274 rbd_dev->watch_event = NULL;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001275fail:
1276 rbd_destroy_ops(ops);
1277 return ret;
1278}
1279
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001280/*
1281 * Request sync osd unwatch
1282 */
Alex Elder070c6332012-07-25 09:32:41 -05001283static int rbd_req_sync_unwatch(struct rbd_device *rbd_dev)
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001284{
1285 struct ceph_osd_req_op *ops;
Alex Elder57cfc102012-06-26 12:57:03 -07001286 int ret;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001287
Alex Elder57cfc102012-06-26 12:57:03 -07001288 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1289 if (!ops)
1290 return -ENOMEM;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001291
1292 ops[0].watch.ver = 0;
Alex Elder0ce1a792012-07-03 16:01:18 -05001293 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001294 ops[0].watch.flag = 0;
1295
Alex Elder0ce1a792012-07-03 16:01:18 -05001296 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001297 CEPH_NOSNAP,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001298 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1299 ops,
Alex Elder070c6332012-07-25 09:32:41 -05001300 rbd_dev->header_name,
1301 0, 0, NULL, NULL, NULL);
1302
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001303
1304 rbd_destroy_ops(ops);
Alex Elder0ce1a792012-07-03 16:01:18 -05001305 ceph_osdc_cancel_event(rbd_dev->watch_event);
1306 rbd_dev->watch_event = NULL;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001307 return ret;
1308}
1309
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001310struct rbd_notify_info {
Alex Elder0ce1a792012-07-03 16:01:18 -05001311 struct rbd_device *rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001312};
1313
1314static void rbd_notify_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1315{
Alex Elder0ce1a792012-07-03 16:01:18 -05001316 struct rbd_device *rbd_dev = (struct rbd_device *)data;
1317 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001318 return;
1319
Alex Elderbd919d42012-07-13 20:35:11 -05001320 dout("rbd_notify_cb %s notify_id=%llu opcode=%u\n",
1321 rbd_dev->header_name, (unsigned long long) notify_id,
1322 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001323}
1324
1325/*
1326 * Request sync osd notify
1327 */
Alex Elder4cb16252012-07-25 09:32:40 -05001328static int rbd_req_sync_notify(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001329{
1330 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001331 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001332 struct ceph_osd_event *event;
1333 struct rbd_notify_info info;
1334 int payload_len = sizeof(u32) + sizeof(u32);
1335 int ret;
1336
Alex Elder57cfc102012-06-26 12:57:03 -07001337 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY, payload_len);
1338 if (!ops)
1339 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001340
Alex Elder0ce1a792012-07-03 16:01:18 -05001341 info.rbd_dev = rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001342
1343 ret = ceph_osdc_create_event(osdc, rbd_notify_cb, 1,
1344 (void *)&info, &event);
1345 if (ret < 0)
1346 goto fail;
1347
1348 ops[0].watch.ver = 1;
1349 ops[0].watch.flag = 1;
1350 ops[0].watch.cookie = event->cookie;
1351 ops[0].watch.prot_ver = RADOS_NOTIFY_VER;
1352 ops[0].watch.timeout = 12;
1353
Alex Elder0ce1a792012-07-03 16:01:18 -05001354 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001355 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001356 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1357 ops,
Alex Elder4cb16252012-07-25 09:32:40 -05001358 rbd_dev->header_name,
1359 0, 0, NULL, NULL, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001360 if (ret < 0)
1361 goto fail_event;
1362
1363 ret = ceph_osdc_wait_event(event, CEPH_OSD_TIMEOUT_DEFAULT);
1364 dout("ceph_osdc_wait_event returned %d\n", ret);
1365 rbd_destroy_ops(ops);
1366 return 0;
1367
1368fail_event:
1369 ceph_osdc_cancel_event(event);
1370fail:
1371 rbd_destroy_ops(ops);
1372 return ret;
1373}
1374
1375/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001376 * Request sync osd read
1377 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001378static int rbd_req_sync_exec(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001379 const char *object_name,
1380 const char *class_name,
1381 const char *method_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001382 const char *data,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001383 int len,
1384 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001385{
1386 struct ceph_osd_req_op *ops;
Alex Elderaded07e2012-07-03 16:01:18 -05001387 int class_name_len = strlen(class_name);
1388 int method_name_len = strlen(method_name);
Alex Elder57cfc102012-06-26 12:57:03 -07001389 int ret;
1390
1391 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_CALL,
Alex Elderaded07e2012-07-03 16:01:18 -05001392 class_name_len + method_name_len + len);
Alex Elder57cfc102012-06-26 12:57:03 -07001393 if (!ops)
1394 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001395
Alex Elderaded07e2012-07-03 16:01:18 -05001396 ops[0].cls.class_name = class_name;
1397 ops[0].cls.class_len = (__u8) class_name_len;
1398 ops[0].cls.method_name = method_name;
1399 ops[0].cls.method_len = (__u8) method_name_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001400 ops[0].cls.argc = 0;
1401 ops[0].cls.indata = data;
1402 ops[0].cls.indata_len = len;
1403
Alex Elder0ce1a792012-07-03 16:01:18 -05001404 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001405 CEPH_NOSNAP,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001406 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1407 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001408 object_name, 0, 0, NULL, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001409
1410 rbd_destroy_ops(ops);
1411
1412 dout("cls_exec returned %d\n", ret);
1413 return ret;
1414}
1415
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001416static struct rbd_req_coll *rbd_alloc_coll(int num_reqs)
1417{
1418 struct rbd_req_coll *coll =
1419 kzalloc(sizeof(struct rbd_req_coll) +
1420 sizeof(struct rbd_req_status) * num_reqs,
1421 GFP_ATOMIC);
1422
1423 if (!coll)
1424 return NULL;
1425 coll->total = num_reqs;
1426 kref_init(&coll->kref);
1427 return coll;
1428}
1429
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001430/*
1431 * block device queue callback
1432 */
1433static void rbd_rq_fn(struct request_queue *q)
1434{
1435 struct rbd_device *rbd_dev = q->queuedata;
1436 struct request *rq;
1437 struct bio_pair *bp = NULL;
1438
Alex Elder00f1f362012-02-07 12:03:36 -06001439 while ((rq = blk_fetch_request(q))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001440 struct bio *bio;
1441 struct bio *rq_bio, *next_bio = NULL;
1442 bool do_write;
Alex Elderbd919d42012-07-13 20:35:11 -05001443 unsigned int size;
1444 u64 op_size = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001445 u64 ofs;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001446 int num_segs, cur_seg = 0;
1447 struct rbd_req_coll *coll;
Josh Durgind1d25642011-12-05 14:03:05 -08001448 struct ceph_snap_context *snapc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001449
1450 /* peek at request from block layer */
1451 if (!rq)
1452 break;
1453
1454 dout("fetched request\n");
1455
1456 /* filter out block requests we don't understand */
1457 if ((rq->cmd_type != REQ_TYPE_FS)) {
1458 __blk_end_request_all(rq, 0);
Alex Elder00f1f362012-02-07 12:03:36 -06001459 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001460 }
1461
1462 /* deduce our operation (read, write) */
1463 do_write = (rq_data_dir(rq) == WRITE);
1464
1465 size = blk_rq_bytes(rq);
Alex Elder593a9e72012-02-07 12:03:37 -06001466 ofs = blk_rq_pos(rq) * SECTOR_SIZE;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001467 rq_bio = rq->bio;
1468 if (do_write && rbd_dev->read_only) {
1469 __blk_end_request_all(rq, -EROFS);
Alex Elder00f1f362012-02-07 12:03:36 -06001470 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001471 }
1472
1473 spin_unlock_irq(q->queue_lock);
1474
Josh Durgind1d25642011-12-05 14:03:05 -08001475 down_read(&rbd_dev->header_rwsem);
Josh Durgine88a36e2011-11-21 18:14:25 -08001476
Josh Durgind1d25642011-12-05 14:03:05 -08001477 if (rbd_dev->snap_id != CEPH_NOSNAP && !rbd_dev->snap_exists) {
Josh Durgine88a36e2011-11-21 18:14:25 -08001478 up_read(&rbd_dev->header_rwsem);
Josh Durgind1d25642011-12-05 14:03:05 -08001479 dout("request for non-existent snapshot");
1480 spin_lock_irq(q->queue_lock);
1481 __blk_end_request_all(rq, -ENXIO);
1482 continue;
Josh Durgine88a36e2011-11-21 18:14:25 -08001483 }
1484
Josh Durgind1d25642011-12-05 14:03:05 -08001485 snapc = ceph_get_snap_context(rbd_dev->header.snapc);
1486
1487 up_read(&rbd_dev->header_rwsem);
1488
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001489 dout("%s 0x%x bytes at 0x%llx\n",
1490 do_write ? "write" : "read",
Alex Elderbd919d42012-07-13 20:35:11 -05001491 size, (unsigned long long) blk_rq_pos(rq) * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001492
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001493 num_segs = rbd_get_num_segments(&rbd_dev->header, ofs, size);
1494 coll = rbd_alloc_coll(num_segs);
1495 if (!coll) {
1496 spin_lock_irq(q->queue_lock);
1497 __blk_end_request_all(rq, -ENOMEM);
Josh Durgind1d25642011-12-05 14:03:05 -08001498 ceph_put_snap_context(snapc);
Alex Elder00f1f362012-02-07 12:03:36 -06001499 continue;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001500 }
1501
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001502 do {
1503 /* a bio clone to be passed down to OSD req */
Alex Elderbd919d42012-07-13 20:35:11 -05001504 dout("rq->bio->bi_vcnt=%hu\n", rq->bio->bi_vcnt);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001505 op_size = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001506 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001507 ofs, size,
1508 NULL, NULL);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001509 kref_get(&coll->kref);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001510 bio = bio_chain_clone(&rq_bio, &next_bio, &bp,
1511 op_size, GFP_ATOMIC);
1512 if (!bio) {
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001513 rbd_coll_end_req_index(rq, coll, cur_seg,
1514 -ENOMEM, op_size);
1515 goto next_seg;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001516 }
1517
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001518
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001519 /* init OSD command: write or read */
1520 if (do_write)
1521 rbd_req_write(rq, rbd_dev,
Josh Durgind1d25642011-12-05 14:03:05 -08001522 snapc,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001523 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001524 op_size, bio,
1525 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001526 else
1527 rbd_req_read(rq, rbd_dev,
Josh Durgin77dfe992011-11-21 13:04:42 -08001528 rbd_dev->snap_id,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001529 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001530 op_size, bio,
1531 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001532
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001533next_seg:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001534 size -= op_size;
1535 ofs += op_size;
1536
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001537 cur_seg++;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001538 rq_bio = next_bio;
1539 } while (size > 0);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001540 kref_put(&coll->kref, rbd_coll_release);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001541
1542 if (bp)
1543 bio_pair_release(bp);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001544 spin_lock_irq(q->queue_lock);
Josh Durgind1d25642011-12-05 14:03:05 -08001545
1546 ceph_put_snap_context(snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001547 }
1548}
1549
1550/*
1551 * a queue callback. Makes sure that we don't create a bio that spans across
1552 * multiple osd objects. One exception would be with a single page bios,
1553 * which we handle later at bio_chain_clone
1554 */
1555static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
1556 struct bio_vec *bvec)
1557{
1558 struct rbd_device *rbd_dev = q->queuedata;
Alex Elder593a9e72012-02-07 12:03:37 -06001559 unsigned int chunk_sectors;
1560 sector_t sector;
1561 unsigned int bio_sectors;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001562 int max;
1563
Alex Elder593a9e72012-02-07 12:03:37 -06001564 chunk_sectors = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
1565 sector = bmd->bi_sector + get_start_sect(bmd->bi_bdev);
1566 bio_sectors = bmd->bi_size >> SECTOR_SHIFT;
1567
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001568 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
Alex Elder593a9e72012-02-07 12:03:37 -06001569 + bio_sectors)) << SECTOR_SHIFT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001570 if (max < 0)
1571 max = 0; /* bio_add cannot handle a negative return */
1572 if (max <= bvec->bv_len && bio_sectors == 0)
1573 return bvec->bv_len;
1574 return max;
1575}
1576
1577static void rbd_free_disk(struct rbd_device *rbd_dev)
1578{
1579 struct gendisk *disk = rbd_dev->disk;
1580
1581 if (!disk)
1582 return;
1583
1584 rbd_header_free(&rbd_dev->header);
1585
1586 if (disk->flags & GENHD_FL_UP)
1587 del_gendisk(disk);
1588 if (disk->queue)
1589 blk_cleanup_queue(disk->queue);
1590 put_disk(disk);
1591}
1592
1593/*
1594 * reload the ondisk the header
1595 */
1596static int rbd_read_header(struct rbd_device *rbd_dev,
1597 struct rbd_image_header *header)
1598{
1599 ssize_t rc;
1600 struct rbd_image_header_ondisk *dh;
Xi Wang50f7c4c2012-04-20 15:49:44 -05001601 u32 snap_count = 0;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001602 u64 ver;
Alex Elder00f1f362012-02-07 12:03:36 -06001603 size_t len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001604
Alex Elder00f1f362012-02-07 12:03:36 -06001605 /*
1606 * First reads the fixed-size header to determine the number
1607 * of snapshots, then re-reads it, along with all snapshot
1608 * records as well as their stored names.
1609 */
1610 len = sizeof (*dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001611 while (1) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001612 dh = kmalloc(len, GFP_KERNEL);
1613 if (!dh)
1614 return -ENOMEM;
1615
1616 rc = rbd_req_sync_read(rbd_dev,
Alex Elder9a5d6902012-07-19 09:09:27 -05001617 CEPH_NOSNAP,
Alex Elder0bed54d2012-07-03 16:01:18 -05001618 rbd_dev->header_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001619 0, len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001620 (char *)dh, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001621 if (rc < 0)
1622 goto out_dh;
1623
Alex Eldered63f4f2012-07-19 09:09:27 -05001624 rc = rbd_header_from_disk(header, dh, snap_count);
Josh Durgin81e759f2011-11-15 14:49:53 -08001625 if (rc < 0) {
Alex Elder00f1f362012-02-07 12:03:36 -06001626 if (rc == -ENXIO)
Josh Durgin81e759f2011-11-15 14:49:53 -08001627 pr_warning("unrecognized header format"
Alex Elder0bed54d2012-07-03 16:01:18 -05001628 " for image %s\n",
1629 rbd_dev->image_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001630 goto out_dh;
Josh Durgin81e759f2011-11-15 14:49:53 -08001631 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001632
Alex Elder00f1f362012-02-07 12:03:36 -06001633 if (snap_count == header->total_snaps)
1634 break;
1635
1636 snap_count = header->total_snaps;
1637 len = sizeof (*dh) +
1638 snap_count * sizeof(struct rbd_image_snap_ondisk) +
1639 header->snap_names_len;
1640
1641 rbd_header_free(header);
1642 kfree(dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001643 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001644 header->obj_version = ver;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001645
1646out_dh:
1647 kfree(dh);
1648 return rc;
1649}
1650
1651/*
1652 * create a snapshot
1653 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001654static int rbd_header_add_snap(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001655 const char *snap_name,
1656 gfp_t gfp_flags)
1657{
1658 int name_len = strlen(snap_name);
1659 u64 new_snapid;
1660 int ret;
Sage Weil916d4d62011-05-12 16:10:50 -07001661 void *data, *p, *e;
Alex Elder1dbb4392012-01-24 10:08:37 -06001662 struct ceph_mon_client *monc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001663
1664 /* we should create a snapshot only if we're pointing at the head */
Alex Elder0ce1a792012-07-03 16:01:18 -05001665 if (rbd_dev->snap_id != CEPH_NOSNAP)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001666 return -EINVAL;
1667
Alex Elder0ce1a792012-07-03 16:01:18 -05001668 monc = &rbd_dev->rbd_client->client->monc;
1669 ret = ceph_monc_create_snapid(monc, rbd_dev->pool_id, &new_snapid);
Alex Elderbd919d42012-07-13 20:35:11 -05001670 dout("created snapid=%llu\n", (unsigned long long) new_snapid);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001671 if (ret < 0)
1672 return ret;
1673
1674 data = kmalloc(name_len + 16, gfp_flags);
1675 if (!data)
1676 return -ENOMEM;
1677
Sage Weil916d4d62011-05-12 16:10:50 -07001678 p = data;
1679 e = data + name_len + 16;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001680
Sage Weil916d4d62011-05-12 16:10:50 -07001681 ceph_encode_string_safe(&p, e, snap_name, name_len, bad);
1682 ceph_encode_64_safe(&p, e, new_snapid, bad);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001683
Alex Elder0bed54d2012-07-03 16:01:18 -05001684 ret = rbd_req_sync_exec(rbd_dev, rbd_dev->header_name,
Alex Elder0ce1a792012-07-03 16:01:18 -05001685 "rbd", "snap_add",
Alex Elderd67d4be2012-07-13 20:35:11 -05001686 data, p - data, NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001687
Sage Weil916d4d62011-05-12 16:10:50 -07001688 kfree(data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001689
Alex Elder505cbb92012-07-19 08:49:18 -05001690 return ret < 0 ? ret : 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001691bad:
1692 return -ERANGE;
1693}
1694
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001695static void __rbd_remove_all_snaps(struct rbd_device *rbd_dev)
1696{
1697 struct rbd_snap *snap;
Alex Eldera0593292012-07-19 09:09:27 -05001698 struct rbd_snap *next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001699
Alex Eldera0593292012-07-19 09:09:27 -05001700 list_for_each_entry_safe(snap, next, &rbd_dev->snaps, node)
Alex Elder14e70852012-07-19 09:09:27 -05001701 __rbd_remove_snap_dev(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001702}
1703
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001704/*
1705 * only read the first part of the ondisk header, without the snaps info
1706 */
Alex Elderb8136232012-07-25 09:32:41 -05001707static int __rbd_refresh_header(struct rbd_device *rbd_dev, u64 *hver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001708{
1709 int ret;
1710 struct rbd_image_header h;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001711
1712 ret = rbd_read_header(rbd_dev, &h);
1713 if (ret < 0)
1714 return ret;
1715
Josh Durgina51aa0c2011-12-05 10:35:04 -08001716 down_write(&rbd_dev->header_rwsem);
1717
Sage Weil9db4b3e2011-04-19 22:49:06 -07001718 /* resized? */
Josh Durgin474ef7c2011-11-21 17:13:54 -08001719 if (rbd_dev->snap_id == CEPH_NOSNAP) {
1720 sector_t size = (sector_t) h.image_size / SECTOR_SIZE;
1721
1722 dout("setting size to %llu sectors", (unsigned long long) size);
1723 set_capacity(rbd_dev->disk, size);
1724 }
Sage Weil9db4b3e2011-04-19 22:49:06 -07001725
Alex Elder849b4262012-07-09 21:04:24 -05001726 /* rbd_dev->header.object_prefix shouldn't change */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001727 kfree(rbd_dev->header.snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -05001728 kfree(rbd_dev->header.snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -08001729 /* osd requests may still refer to snapc */
1730 ceph_put_snap_context(rbd_dev->header.snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001731
Alex Elderb8136232012-07-25 09:32:41 -05001732 if (hver)
1733 *hver = h.obj_version;
Josh Durgina71b8912011-12-05 18:10:44 -08001734 rbd_dev->header.obj_version = h.obj_version;
Josh Durgin93a24e02011-12-05 10:41:28 -08001735 rbd_dev->header.image_size = h.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001736 rbd_dev->header.total_snaps = h.total_snaps;
1737 rbd_dev->header.snapc = h.snapc;
1738 rbd_dev->header.snap_names = h.snap_names;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001739 rbd_dev->header.snap_names_len = h.snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001740 rbd_dev->header.snap_sizes = h.snap_sizes;
Alex Elder849b4262012-07-09 21:04:24 -05001741 /* Free the extra copy of the object prefix */
1742 WARN_ON(strcmp(rbd_dev->header.object_prefix, h.object_prefix));
1743 kfree(h.object_prefix);
1744
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001745 ret = __rbd_init_snaps_header(rbd_dev);
1746
Josh Durginc6666012011-11-21 17:11:12 -08001747 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001748
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001749 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001750}
1751
Alex Elder1fe5e992012-07-25 09:32:41 -05001752static int rbd_refresh_header(struct rbd_device *rbd_dev, u64 *hver)
1753{
1754 int ret;
1755
1756 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
1757 ret = __rbd_refresh_header(rbd_dev, hver);
1758 mutex_unlock(&ctl_mutex);
1759
1760 return ret;
1761}
1762
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001763static int rbd_init_disk(struct rbd_device *rbd_dev)
1764{
1765 struct gendisk *disk;
1766 struct request_queue *q;
1767 int rc;
Alex Elder593a9e72012-02-07 12:03:37 -06001768 u64 segment_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001769 u64 total_size = 0;
1770
1771 /* contact OSD, request size info about the object being mapped */
1772 rc = rbd_read_header(rbd_dev, &rbd_dev->header);
1773 if (rc)
1774 return rc;
1775
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001776 /* no need to lock here, as rbd_dev is not registered yet */
1777 rc = __rbd_init_snaps_header(rbd_dev);
1778 if (rc)
1779 return rc;
1780
Josh Durgincc9d7342011-11-21 18:19:13 -08001781 rc = rbd_header_set_snap(rbd_dev, &total_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001782 if (rc)
1783 return rc;
1784
1785 /* create gendisk info */
1786 rc = -ENOMEM;
1787 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
1788 if (!disk)
1789 goto out;
1790
Alex Elderf0f8cef2012-01-29 13:57:44 -06001791 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
Alex Elderde71a292012-07-03 16:01:19 -05001792 rbd_dev->dev_id);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001793 disk->major = rbd_dev->major;
1794 disk->first_minor = 0;
1795 disk->fops = &rbd_bd_ops;
1796 disk->private_data = rbd_dev;
1797
1798 /* init rq */
1799 rc = -ENOMEM;
1800 q = blk_init_queue(rbd_rq_fn, &rbd_dev->lock);
1801 if (!q)
1802 goto out_disk;
Josh Durgin029bcbd2011-07-22 11:35:23 -07001803
Alex Elder593a9e72012-02-07 12:03:37 -06001804 /* We use the default size, but let's be explicit about it. */
1805 blk_queue_physical_block_size(q, SECTOR_SIZE);
1806
Josh Durgin029bcbd2011-07-22 11:35:23 -07001807 /* set io sizes to object size */
Alex Elder593a9e72012-02-07 12:03:37 -06001808 segment_size = rbd_obj_bytes(&rbd_dev->header);
1809 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
1810 blk_queue_max_segment_size(q, segment_size);
1811 blk_queue_io_min(q, segment_size);
1812 blk_queue_io_opt(q, segment_size);
Josh Durgin029bcbd2011-07-22 11:35:23 -07001813
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001814 blk_queue_merge_bvec(q, rbd_merge_bvec);
1815 disk->queue = q;
1816
1817 q->queuedata = rbd_dev;
1818
1819 rbd_dev->disk = disk;
1820 rbd_dev->q = q;
1821
1822 /* finally, announce the disk to the world */
Alex Elder593a9e72012-02-07 12:03:37 -06001823 set_capacity(disk, total_size / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001824 add_disk(disk);
1825
1826 pr_info("%s: added with size 0x%llx\n",
1827 disk->disk_name, (unsigned long long)total_size);
1828 return 0;
1829
1830out_disk:
1831 put_disk(disk);
1832out:
1833 return rc;
1834}
1835
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001836/*
1837 sysfs
1838*/
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001839
Alex Elder593a9e72012-02-07 12:03:37 -06001840static struct rbd_device *dev_to_rbd_dev(struct device *dev)
1841{
1842 return container_of(dev, struct rbd_device, dev);
1843}
1844
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001845static ssize_t rbd_size_show(struct device *dev,
1846 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001847{
Alex Elder593a9e72012-02-07 12:03:37 -06001848 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Josh Durgina51aa0c2011-12-05 10:35:04 -08001849 sector_t size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001850
Josh Durgina51aa0c2011-12-05 10:35:04 -08001851 down_read(&rbd_dev->header_rwsem);
1852 size = get_capacity(rbd_dev->disk);
1853 up_read(&rbd_dev->header_rwsem);
1854
1855 return sprintf(buf, "%llu\n", (unsigned long long) size * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001856}
1857
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001858static ssize_t rbd_major_show(struct device *dev,
1859 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001860{
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, "%d\n", rbd_dev->major);
1864}
1865
1866static ssize_t rbd_client_id_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
Alex Elder1dbb4392012-01-24 10:08:37 -06001871 return sprintf(buf, "client%lld\n",
1872 ceph_client_id(rbd_dev->rbd_client->client));
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001873}
1874
1875static ssize_t rbd_pool_show(struct device *dev,
1876 struct device_attribute *attr, 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->pool_name);
1881}
1882
Alex Elder9bb2f332012-07-12 10:46:35 -05001883static ssize_t rbd_pool_id_show(struct device *dev,
1884 struct device_attribute *attr, char *buf)
1885{
1886 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
1887
1888 return sprintf(buf, "%d\n", rbd_dev->pool_id);
1889}
1890
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001891static ssize_t rbd_name_show(struct device *dev,
1892 struct device_attribute *attr, char *buf)
1893{
Alex Elder593a9e72012-02-07 12:03:37 -06001894 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001895
Alex Elder0bed54d2012-07-03 16:01:18 -05001896 return sprintf(buf, "%s\n", rbd_dev->image_name);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001897}
1898
1899static ssize_t rbd_snap_show(struct device *dev,
1900 struct device_attribute *attr,
1901 char *buf)
1902{
Alex Elder593a9e72012-02-07 12:03:37 -06001903 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001904
1905 return sprintf(buf, "%s\n", rbd_dev->snap_name);
1906}
1907
1908static ssize_t rbd_image_refresh(struct device *dev,
1909 struct device_attribute *attr,
1910 const char *buf,
1911 size_t size)
1912{
Alex Elder593a9e72012-02-07 12:03:37 -06001913 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Alex Elderb8136232012-07-25 09:32:41 -05001914 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001915
Alex Elder1fe5e992012-07-25 09:32:41 -05001916 ret = rbd_refresh_header(rbd_dev, NULL);
Alex Elderb8136232012-07-25 09:32:41 -05001917
1918 return ret < 0 ? ret : size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001919}
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001920
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001921static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
1922static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
1923static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
1924static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
Alex Elder9bb2f332012-07-12 10:46:35 -05001925static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001926static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
1927static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
1928static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
1929static DEVICE_ATTR(create_snap, S_IWUSR, NULL, rbd_snap_add);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001930
1931static struct attribute *rbd_attrs[] = {
1932 &dev_attr_size.attr,
1933 &dev_attr_major.attr,
1934 &dev_attr_client_id.attr,
1935 &dev_attr_pool.attr,
Alex Elder9bb2f332012-07-12 10:46:35 -05001936 &dev_attr_pool_id.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001937 &dev_attr_name.attr,
1938 &dev_attr_current_snap.attr,
1939 &dev_attr_refresh.attr,
1940 &dev_attr_create_snap.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001941 NULL
1942};
1943
1944static struct attribute_group rbd_attr_group = {
1945 .attrs = rbd_attrs,
1946};
1947
1948static const struct attribute_group *rbd_attr_groups[] = {
1949 &rbd_attr_group,
1950 NULL
1951};
1952
1953static void rbd_sysfs_dev_release(struct device *dev)
1954{
1955}
1956
1957static struct device_type rbd_device_type = {
1958 .name = "rbd",
1959 .groups = rbd_attr_groups,
1960 .release = rbd_sysfs_dev_release,
1961};
1962
1963
1964/*
1965 sysfs - snapshots
1966*/
1967
1968static ssize_t rbd_snap_size_show(struct device *dev,
1969 struct device_attribute *attr,
1970 char *buf)
1971{
1972 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1973
Josh Durgin35915382011-12-05 18:25:13 -08001974 return sprintf(buf, "%llu\n", (unsigned long long)snap->size);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001975}
1976
1977static ssize_t rbd_snap_id_show(struct device *dev,
1978 struct device_attribute *attr,
1979 char *buf)
1980{
1981 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1982
Josh Durgin35915382011-12-05 18:25:13 -08001983 return sprintf(buf, "%llu\n", (unsigned long long)snap->id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001984}
1985
1986static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
1987static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
1988
1989static struct attribute *rbd_snap_attrs[] = {
1990 &dev_attr_snap_size.attr,
1991 &dev_attr_snap_id.attr,
1992 NULL,
1993};
1994
1995static struct attribute_group rbd_snap_attr_group = {
1996 .attrs = rbd_snap_attrs,
1997};
1998
1999static void rbd_snap_dev_release(struct device *dev)
2000{
2001 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2002 kfree(snap->name);
2003 kfree(snap);
2004}
2005
2006static const struct attribute_group *rbd_snap_attr_groups[] = {
2007 &rbd_snap_attr_group,
2008 NULL
2009};
2010
2011static struct device_type rbd_snap_device_type = {
2012 .groups = rbd_snap_attr_groups,
2013 .release = rbd_snap_dev_release,
2014};
2015
Alex Elder14e70852012-07-19 09:09:27 -05002016static void __rbd_remove_snap_dev(struct rbd_snap *snap)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002017{
2018 list_del(&snap->node);
2019 device_unregister(&snap->dev);
2020}
2021
Alex Elder14e70852012-07-19 09:09:27 -05002022static int rbd_register_snap_dev(struct rbd_snap *snap,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002023 struct device *parent)
2024{
2025 struct device *dev = &snap->dev;
2026 int ret;
2027
2028 dev->type = &rbd_snap_device_type;
2029 dev->parent = parent;
2030 dev->release = rbd_snap_dev_release;
2031 dev_set_name(dev, "snap_%s", snap->name);
2032 ret = device_register(dev);
2033
2034 return ret;
2035}
2036
Alex Elder4e891e02012-07-10 20:30:10 -05002037static struct rbd_snap *__rbd_add_snap_dev(struct rbd_device *rbd_dev,
2038 int i, const char *name)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002039{
Alex Elder4e891e02012-07-10 20:30:10 -05002040 struct rbd_snap *snap;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002041 int ret;
Alex Elder4e891e02012-07-10 20:30:10 -05002042
2043 snap = kzalloc(sizeof (*snap), GFP_KERNEL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002044 if (!snap)
Alex Elder4e891e02012-07-10 20:30:10 -05002045 return ERR_PTR(-ENOMEM);
2046
2047 ret = -ENOMEM;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002048 snap->name = kstrdup(name, GFP_KERNEL);
Alex Elder4e891e02012-07-10 20:30:10 -05002049 if (!snap->name)
2050 goto err;
2051
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002052 snap->size = rbd_dev->header.snap_sizes[i];
2053 snap->id = rbd_dev->header.snapc->snaps[i];
2054 if (device_is_registered(&rbd_dev->dev)) {
Alex Elder14e70852012-07-19 09:09:27 -05002055 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002056 if (ret < 0)
2057 goto err;
2058 }
Alex Elder4e891e02012-07-10 20:30:10 -05002059
2060 return snap;
2061
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002062err:
2063 kfree(snap->name);
2064 kfree(snap);
Alex Elder4e891e02012-07-10 20:30:10 -05002065
2066 return ERR_PTR(ret);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002067}
2068
2069/*
2070 * search for the previous snap in a null delimited string list
2071 */
2072const char *rbd_prev_snap_name(const char *name, const char *start)
2073{
2074 if (name < start + 2)
2075 return NULL;
2076
2077 name -= 2;
2078 while (*name) {
2079 if (name == start)
2080 return start;
2081 name--;
2082 }
2083 return name + 1;
2084}
2085
2086/*
2087 * compare the old list of snapshots that we have to what's in the header
2088 * and update it accordingly. Note that the header holds the snapshots
2089 * in a reverse order (from newest to oldest) and we need to go from
2090 * older to new so that we don't get a duplicate snap name when
2091 * doing the process (e.g., removed snapshot and recreated a new
2092 * one with the same name.
2093 */
2094static int __rbd_init_snaps_header(struct rbd_device *rbd_dev)
2095{
2096 const char *name, *first_name;
2097 int i = rbd_dev->header.total_snaps;
2098 struct rbd_snap *snap, *old_snap = NULL;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002099 struct list_head *p, *n;
2100
2101 first_name = rbd_dev->header.snap_names;
2102 name = first_name + rbd_dev->header.snap_names_len;
2103
2104 list_for_each_prev_safe(p, n, &rbd_dev->snaps) {
2105 u64 cur_id;
2106
2107 old_snap = list_entry(p, struct rbd_snap, node);
2108
2109 if (i)
2110 cur_id = rbd_dev->header.snapc->snaps[i - 1];
2111
2112 if (!i || old_snap->id < cur_id) {
Josh Durgine88a36e2011-11-21 18:14:25 -08002113 /*
2114 * old_snap->id was skipped, thus was
2115 * removed. If this rbd_dev is mapped to
2116 * the removed snapshot, record that it no
2117 * longer exists, to prevent further I/O.
2118 */
2119 if (rbd_dev->snap_id == old_snap->id)
2120 rbd_dev->snap_exists = false;
Alex Elder14e70852012-07-19 09:09:27 -05002121 __rbd_remove_snap_dev(old_snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002122 continue;
2123 }
2124 if (old_snap->id == cur_id) {
2125 /* we have this snapshot already */
2126 i--;
2127 name = rbd_prev_snap_name(name, first_name);
2128 continue;
2129 }
2130 for (; i > 0;
2131 i--, name = rbd_prev_snap_name(name, first_name)) {
2132 if (!name) {
2133 WARN_ON(1);
2134 return -EINVAL;
2135 }
2136 cur_id = rbd_dev->header.snapc->snaps[i];
2137 /* snapshot removal? handle it above */
2138 if (cur_id >= old_snap->id)
2139 break;
2140 /* a new snapshot */
Alex Elder4e891e02012-07-10 20:30:10 -05002141 snap = __rbd_add_snap_dev(rbd_dev, i - 1, name);
2142 if (IS_ERR(snap))
2143 return PTR_ERR(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002144
2145 /* note that we add it backward so using n and not p */
2146 list_add(&snap->node, n);
2147 p = &snap->node;
2148 }
2149 }
2150 /* we're done going over the old snap list, just add what's left */
2151 for (; i > 0; i--) {
2152 name = rbd_prev_snap_name(name, first_name);
2153 if (!name) {
2154 WARN_ON(1);
2155 return -EINVAL;
2156 }
Alex Elder4e891e02012-07-10 20:30:10 -05002157 snap = __rbd_add_snap_dev(rbd_dev, i - 1, name);
2158 if (IS_ERR(snap))
2159 return PTR_ERR(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002160 list_add(&snap->node, &rbd_dev->snaps);
2161 }
2162
2163 return 0;
2164}
2165
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002166static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
2167{
Alex Elderf0f8cef2012-01-29 13:57:44 -06002168 int ret;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002169 struct device *dev;
2170 struct rbd_snap *snap;
2171
2172 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2173 dev = &rbd_dev->dev;
2174
2175 dev->bus = &rbd_bus_type;
2176 dev->type = &rbd_device_type;
2177 dev->parent = &rbd_root_dev;
2178 dev->release = rbd_dev_release;
Alex Elderde71a292012-07-03 16:01:19 -05002179 dev_set_name(dev, "%d", rbd_dev->dev_id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002180 ret = device_register(dev);
2181 if (ret < 0)
Alex Elderf0f8cef2012-01-29 13:57:44 -06002182 goto out;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002183
2184 list_for_each_entry(snap, &rbd_dev->snaps, node) {
Alex Elder14e70852012-07-19 09:09:27 -05002185 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002186 if (ret < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002187 break;
2188 }
Alex Elderf0f8cef2012-01-29 13:57:44 -06002189out:
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002190 mutex_unlock(&ctl_mutex);
2191 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002192}
2193
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002194static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
2195{
2196 device_unregister(&rbd_dev->dev);
2197}
2198
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002199static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
2200{
2201 int ret, rc;
2202
2203 do {
Alex Elder0e6f3222012-07-25 09:32:40 -05002204 ret = rbd_req_sync_watch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002205 if (ret == -ERANGE) {
Alex Elder1fe5e992012-07-25 09:32:41 -05002206 rc = rbd_refresh_header(rbd_dev, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002207 if (rc < 0)
2208 return rc;
2209 }
2210 } while (ret == -ERANGE);
2211
2212 return ret;
2213}
2214
Alex Elder1ddbe942012-01-29 13:57:44 -06002215static atomic64_t rbd_id_max = ATOMIC64_INIT(0);
2216
2217/*
Alex Elder499afd52012-02-02 08:13:29 -06002218 * Get a unique rbd identifier for the given new rbd_dev, and add
2219 * the rbd_dev to the global list. The minimum rbd id is 1.
Alex Elder1ddbe942012-01-29 13:57:44 -06002220 */
Alex Elder499afd52012-02-02 08:13:29 -06002221static void rbd_id_get(struct rbd_device *rbd_dev)
Alex Elderb7f23c32012-01-29 13:57:43 -06002222{
Alex Elderde71a292012-07-03 16:01:19 -05002223 rbd_dev->dev_id = atomic64_inc_return(&rbd_id_max);
Alex Elder499afd52012-02-02 08:13:29 -06002224
2225 spin_lock(&rbd_dev_list_lock);
2226 list_add_tail(&rbd_dev->node, &rbd_dev_list);
2227 spin_unlock(&rbd_dev_list_lock);
Alex Elder1ddbe942012-01-29 13:57:44 -06002228}
Alex Elderb7f23c32012-01-29 13:57:43 -06002229
Alex Elder1ddbe942012-01-29 13:57:44 -06002230/*
Alex Elder499afd52012-02-02 08:13:29 -06002231 * Remove an rbd_dev from the global list, and record that its
2232 * identifier is no longer in use.
Alex Elder1ddbe942012-01-29 13:57:44 -06002233 */
Alex Elder499afd52012-02-02 08:13:29 -06002234static void rbd_id_put(struct rbd_device *rbd_dev)
Alex Elder1ddbe942012-01-29 13:57:44 -06002235{
Alex Elderd184f6b2012-01-29 13:57:44 -06002236 struct list_head *tmp;
Alex Elderde71a292012-07-03 16:01:19 -05002237 int rbd_id = rbd_dev->dev_id;
Alex Elderd184f6b2012-01-29 13:57:44 -06002238 int max_id;
2239
2240 BUG_ON(rbd_id < 1);
Alex Elder499afd52012-02-02 08:13:29 -06002241
2242 spin_lock(&rbd_dev_list_lock);
2243 list_del_init(&rbd_dev->node);
Alex Elderd184f6b2012-01-29 13:57:44 -06002244
2245 /*
2246 * If the id being "put" is not the current maximum, there
2247 * is nothing special we need to do.
2248 */
2249 if (rbd_id != atomic64_read(&rbd_id_max)) {
2250 spin_unlock(&rbd_dev_list_lock);
2251 return;
2252 }
2253
2254 /*
2255 * We need to update the current maximum id. Search the
2256 * list to find out what it is. We're more likely to find
2257 * the maximum at the end, so search the list backward.
2258 */
2259 max_id = 0;
2260 list_for_each_prev(tmp, &rbd_dev_list) {
2261 struct rbd_device *rbd_dev;
2262
2263 rbd_dev = list_entry(tmp, struct rbd_device, node);
2264 if (rbd_id > max_id)
2265 max_id = rbd_id;
2266 }
Alex Elder499afd52012-02-02 08:13:29 -06002267 spin_unlock(&rbd_dev_list_lock);
Alex Elderb7f23c32012-01-29 13:57:43 -06002268
Alex Elder1ddbe942012-01-29 13:57:44 -06002269 /*
Alex Elderd184f6b2012-01-29 13:57:44 -06002270 * The max id could have been updated by rbd_id_get(), in
2271 * which case it now accurately reflects the new maximum.
2272 * Be careful not to overwrite the maximum value in that
2273 * case.
Alex Elder1ddbe942012-01-29 13:57:44 -06002274 */
Alex Elderd184f6b2012-01-29 13:57:44 -06002275 atomic64_cmpxchg(&rbd_id_max, rbd_id, max_id);
Alex Elderb7f23c32012-01-29 13:57:43 -06002276}
2277
Alex Eldera725f65e2012-02-02 08:13:30 -06002278/*
Alex Eldere28fff262012-02-02 08:13:30 -06002279 * Skips over white space at *buf, and updates *buf to point to the
2280 * first found non-space character (if any). Returns the length of
Alex Elder593a9e72012-02-07 12:03:37 -06002281 * the token (string of non-white space characters) found. Note
2282 * that *buf must be terminated with '\0'.
Alex Eldere28fff262012-02-02 08:13:30 -06002283 */
2284static inline size_t next_token(const char **buf)
2285{
2286 /*
2287 * These are the characters that produce nonzero for
2288 * isspace() in the "C" and "POSIX" locales.
2289 */
2290 const char *spaces = " \f\n\r\t\v";
2291
2292 *buf += strspn(*buf, spaces); /* Find start of token */
2293
2294 return strcspn(*buf, spaces); /* Return token length */
2295}
2296
2297/*
2298 * Finds the next token in *buf, and if the provided token buffer is
2299 * big enough, copies the found token into it. The result, if
Alex Elder593a9e72012-02-07 12:03:37 -06002300 * copied, is guaranteed to be terminated with '\0'. Note that *buf
2301 * must be terminated with '\0' on entry.
Alex Eldere28fff262012-02-02 08:13:30 -06002302 *
2303 * Returns the length of the token found (not including the '\0').
2304 * Return value will be 0 if no token is found, and it will be >=
2305 * token_size if the token would not fit.
2306 *
Alex Elder593a9e72012-02-07 12:03:37 -06002307 * The *buf pointer will be updated to point beyond the end of the
Alex Eldere28fff262012-02-02 08:13:30 -06002308 * found token. Note that this occurs even if the token buffer is
2309 * too small to hold it.
2310 */
2311static inline size_t copy_token(const char **buf,
2312 char *token,
2313 size_t token_size)
2314{
2315 size_t len;
2316
2317 len = next_token(buf);
2318 if (len < token_size) {
2319 memcpy(token, *buf, len);
2320 *(token + len) = '\0';
2321 }
2322 *buf += len;
2323
2324 return len;
2325}
2326
2327/*
Alex Elderea3352f2012-07-09 21:04:23 -05002328 * Finds the next token in *buf, dynamically allocates a buffer big
2329 * enough to hold a copy of it, and copies the token into the new
2330 * buffer. The copy is guaranteed to be terminated with '\0'. Note
2331 * that a duplicate buffer is created even for a zero-length token.
2332 *
2333 * Returns a pointer to the newly-allocated duplicate, or a null
2334 * pointer if memory for the duplicate was not available. If
2335 * the lenp argument is a non-null pointer, the length of the token
2336 * (not including the '\0') is returned in *lenp.
2337 *
2338 * If successful, the *buf pointer will be updated to point beyond
2339 * the end of the found token.
2340 *
2341 * Note: uses GFP_KERNEL for allocation.
2342 */
2343static inline char *dup_token(const char **buf, size_t *lenp)
2344{
2345 char *dup;
2346 size_t len;
2347
2348 len = next_token(buf);
2349 dup = kmalloc(len + 1, GFP_KERNEL);
2350 if (!dup)
2351 return NULL;
2352
2353 memcpy(dup, *buf, len);
2354 *(dup + len) = '\0';
2355 *buf += len;
2356
2357 if (lenp)
2358 *lenp = len;
2359
2360 return dup;
2361}
2362
2363/*
Alex Elder0bed54d2012-07-03 16:01:18 -05002364 * This fills in the pool_name, image_name, image_name_len, snap_name,
Alex Eldera725f65e2012-02-02 08:13:30 -06002365 * rbd_dev, rbd_md_name, and name fields of the given rbd_dev, based
2366 * on the list of monitor addresses and other options provided via
2367 * /sys/bus/rbd/add.
Alex Elderd22f76e2012-07-12 10:46:35 -05002368 *
2369 * Note: rbd_dev is assumed to have been initially zero-filled.
Alex Eldera725f65e2012-02-02 08:13:30 -06002370 */
2371static int rbd_add_parse_args(struct rbd_device *rbd_dev,
2372 const char *buf,
Alex Elder7ef32142012-02-02 08:13:30 -06002373 const char **mon_addrs,
Alex Elder5214ecc2012-02-02 08:13:30 -06002374 size_t *mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002375 char *options,
Alex Elder0bed54d2012-07-03 16:01:18 -05002376 size_t options_size)
Alex Eldera725f65e2012-02-02 08:13:30 -06002377{
Alex Elderd22f76e2012-07-12 10:46:35 -05002378 size_t len;
2379 int ret;
Alex Eldere28fff262012-02-02 08:13:30 -06002380
2381 /* The first four tokens are required */
2382
Alex Elder7ef32142012-02-02 08:13:30 -06002383 len = next_token(&buf);
2384 if (!len)
Alex Eldera725f65e2012-02-02 08:13:30 -06002385 return -EINVAL;
Alex Elder5214ecc2012-02-02 08:13:30 -06002386 *mon_addrs_size = len + 1;
Alex Elder7ef32142012-02-02 08:13:30 -06002387 *mon_addrs = buf;
2388
2389 buf += len;
Alex Eldera725f65e2012-02-02 08:13:30 -06002390
Alex Eldere28fff262012-02-02 08:13:30 -06002391 len = copy_token(&buf, options, options_size);
2392 if (!len || len >= options_size)
2393 return -EINVAL;
Alex Eldera725f65e2012-02-02 08:13:30 -06002394
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002395 ret = -ENOMEM;
Alex Elderd22f76e2012-07-12 10:46:35 -05002396 rbd_dev->pool_name = dup_token(&buf, NULL);
2397 if (!rbd_dev->pool_name)
Alex Elderd22f76e2012-07-12 10:46:35 -05002398 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002399
Alex Elder0bed54d2012-07-03 16:01:18 -05002400 rbd_dev->image_name = dup_token(&buf, &rbd_dev->image_name_len);
2401 if (!rbd_dev->image_name)
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002402 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002403
Alex Eldercb8627c2012-07-09 21:04:23 -05002404 /* Create the name of the header object */
2405
Alex Elder0bed54d2012-07-03 16:01:18 -05002406 rbd_dev->header_name = kmalloc(rbd_dev->image_name_len
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002407 + sizeof (RBD_SUFFIX),
2408 GFP_KERNEL);
Alex Elder0bed54d2012-07-03 16:01:18 -05002409 if (!rbd_dev->header_name)
Alex Eldercb8627c2012-07-09 21:04:23 -05002410 goto out_err;
Alex Elder0bed54d2012-07-03 16:01:18 -05002411 sprintf(rbd_dev->header_name, "%s%s", rbd_dev->image_name, RBD_SUFFIX);
Alex Eldera725f65e2012-02-02 08:13:30 -06002412
Alex Eldere28fff262012-02-02 08:13:30 -06002413 /*
Alex Elder820a5f32012-07-09 21:04:24 -05002414 * The snapshot name is optional. If none is is supplied,
2415 * we use the default value.
Alex Eldere28fff262012-02-02 08:13:30 -06002416 */
Alex Elder820a5f32012-07-09 21:04:24 -05002417 rbd_dev->snap_name = dup_token(&buf, &len);
2418 if (!rbd_dev->snap_name)
2419 goto out_err;
2420 if (!len) {
2421 /* Replace the empty name with the default */
2422 kfree(rbd_dev->snap_name);
2423 rbd_dev->snap_name
2424 = kmalloc(sizeof (RBD_SNAP_HEAD_NAME), GFP_KERNEL);
2425 if (!rbd_dev->snap_name)
2426 goto out_err;
2427
Alex Eldere28fff262012-02-02 08:13:30 -06002428 memcpy(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
2429 sizeof (RBD_SNAP_HEAD_NAME));
Alex Elder849b4262012-07-09 21:04:24 -05002430 }
Alex Eldere28fff262012-02-02 08:13:30 -06002431
Alex Eldera725f65e2012-02-02 08:13:30 -06002432 return 0;
Alex Elderd22f76e2012-07-12 10:46:35 -05002433
2434out_err:
Alex Elder0bed54d2012-07-03 16:01:18 -05002435 kfree(rbd_dev->header_name);
2436 kfree(rbd_dev->image_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002437 kfree(rbd_dev->pool_name);
2438 rbd_dev->pool_name = NULL;
2439
2440 return ret;
Alex Eldera725f65e2012-02-02 08:13:30 -06002441}
2442
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002443static ssize_t rbd_add(struct bus_type *bus,
2444 const char *buf,
2445 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002446{
Alex Eldercb8627c2012-07-09 21:04:23 -05002447 char *options;
2448 struct rbd_device *rbd_dev = NULL;
Alex Elder7ef32142012-02-02 08:13:30 -06002449 const char *mon_addrs = NULL;
2450 size_t mon_addrs_size = 0;
Alex Elder27cc2592012-02-02 08:13:30 -06002451 struct ceph_osd_client *osdc;
2452 int rc = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002453
2454 if (!try_module_get(THIS_MODULE))
2455 return -ENODEV;
2456
Alex Elder27cc2592012-02-02 08:13:30 -06002457 options = kmalloc(count, GFP_KERNEL);
2458 if (!options)
2459 goto err_nomem;
Alex Eldercb8627c2012-07-09 21:04:23 -05002460 rbd_dev = kzalloc(sizeof(*rbd_dev), GFP_KERNEL);
2461 if (!rbd_dev)
2462 goto err_nomem;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002463
2464 /* static rbd_device initialization */
2465 spin_lock_init(&rbd_dev->lock);
2466 INIT_LIST_HEAD(&rbd_dev->node);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002467 INIT_LIST_HEAD(&rbd_dev->snaps);
Josh Durginc6666012011-11-21 17:11:12 -08002468 init_rwsem(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002469
Alex Elderd184f6b2012-01-29 13:57:44 -06002470 /* generate unique id: find highest unique id, add one */
Alex Elder499afd52012-02-02 08:13:29 -06002471 rbd_id_get(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002472
Alex Eldera725f65e2012-02-02 08:13:30 -06002473 /* Fill in the device name, now that we have its id. */
Alex Elder81a89792012-02-02 08:13:30 -06002474 BUILD_BUG_ON(DEV_NAME_LEN
2475 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
Alex Elderde71a292012-07-03 16:01:19 -05002476 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
Alex Eldere124a822012-01-29 13:57:44 -06002477
Alex Eldera725f65e2012-02-02 08:13:30 -06002478 /* parse add command */
Alex Elder7ef32142012-02-02 08:13:30 -06002479 rc = rbd_add_parse_args(rbd_dev, buf, &mon_addrs, &mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002480 options, count);
Alex Eldera725f65e2012-02-02 08:13:30 -06002481 if (rc)
2482 goto err_put_id;
2483
Alex Elder5214ecc2012-02-02 08:13:30 -06002484 rbd_dev->rbd_client = rbd_get_client(mon_addrs, mon_addrs_size - 1,
2485 options);
Alex Elderd720bcb2012-02-02 08:13:30 -06002486 if (IS_ERR(rbd_dev->rbd_client)) {
2487 rc = PTR_ERR(rbd_dev->rbd_client);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002488 goto err_put_id;
Alex Elderd720bcb2012-02-02 08:13:30 -06002489 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002490
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002491 /* pick the pool */
Alex Elder1dbb4392012-01-24 10:08:37 -06002492 osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002493 rc = ceph_pg_poolid_by_name(osdc->osdmap, rbd_dev->pool_name);
2494 if (rc < 0)
2495 goto err_out_client;
Alex Elder9bb2f332012-07-12 10:46:35 -05002496 rbd_dev->pool_id = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002497
2498 /* register our block device */
Alex Elder27cc2592012-02-02 08:13:30 -06002499 rc = register_blkdev(0, rbd_dev->name);
2500 if (rc < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002501 goto err_out_client;
Alex Elder27cc2592012-02-02 08:13:30 -06002502 rbd_dev->major = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002503
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002504 rc = rbd_bus_add_dev(rbd_dev);
2505 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002506 goto err_out_blkdev;
2507
Alex Elder32eec682012-02-08 16:11:14 -06002508 /*
2509 * At this point cleanup in the event of an error is the job
2510 * of the sysfs code (initiated by rbd_bus_del_dev()).
2511 *
2512 * Set up and announce blkdev mapping.
2513 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002514 rc = rbd_init_disk(rbd_dev);
2515 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002516 goto err_out_bus;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002517
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002518 rc = rbd_init_watch_dev(rbd_dev);
2519 if (rc)
2520 goto err_out_bus;
2521
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002522 return count;
2523
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002524err_out_bus:
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002525 /* this will also clean up rest of rbd_dev stuff */
2526
2527 rbd_bus_del_dev(rbd_dev);
2528 kfree(options);
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002529 return rc;
2530
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002531err_out_blkdev:
2532 unregister_blkdev(rbd_dev->major, rbd_dev->name);
2533err_out_client:
2534 rbd_put_client(rbd_dev);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002535err_put_id:
Alex Eldercb8627c2012-07-09 21:04:23 -05002536 if (rbd_dev->pool_name) {
Alex Elder820a5f32012-07-09 21:04:24 -05002537 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002538 kfree(rbd_dev->header_name);
2539 kfree(rbd_dev->image_name);
Alex Eldercb8627c2012-07-09 21:04:23 -05002540 kfree(rbd_dev->pool_name);
2541 }
Alex Elder499afd52012-02-02 08:13:29 -06002542 rbd_id_put(rbd_dev);
Alex Elder27cc2592012-02-02 08:13:30 -06002543err_nomem:
Alex Elder27cc2592012-02-02 08:13:30 -06002544 kfree(rbd_dev);
Alex Eldercb8627c2012-07-09 21:04:23 -05002545 kfree(options);
Alex Elder27cc2592012-02-02 08:13:30 -06002546
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002547 dout("Error adding device %s\n", buf);
2548 module_put(THIS_MODULE);
Alex Elder27cc2592012-02-02 08:13:30 -06002549
2550 return (ssize_t) rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002551}
2552
Alex Elderde71a292012-07-03 16:01:19 -05002553static struct rbd_device *__rbd_get_dev(unsigned long dev_id)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002554{
2555 struct list_head *tmp;
2556 struct rbd_device *rbd_dev;
2557
Alex Eldere124a822012-01-29 13:57:44 -06002558 spin_lock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002559 list_for_each(tmp, &rbd_dev_list) {
2560 rbd_dev = list_entry(tmp, struct rbd_device, node);
Alex Elderde71a292012-07-03 16:01:19 -05002561 if (rbd_dev->dev_id == dev_id) {
Alex Eldere124a822012-01-29 13:57:44 -06002562 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002563 return rbd_dev;
Alex Eldere124a822012-01-29 13:57:44 -06002564 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002565 }
Alex Eldere124a822012-01-29 13:57:44 -06002566 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002567 return NULL;
2568}
2569
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002570static void rbd_dev_release(struct device *dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002571{
Alex Elder593a9e72012-02-07 12:03:37 -06002572 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002573
Alex Elder1dbb4392012-01-24 10:08:37 -06002574 if (rbd_dev->watch_request) {
2575 struct ceph_client *client = rbd_dev->rbd_client->client;
2576
2577 ceph_osdc_unregister_linger_request(&client->osdc,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002578 rbd_dev->watch_request);
Alex Elder1dbb4392012-01-24 10:08:37 -06002579 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002580 if (rbd_dev->watch_event)
Alex Elder070c6332012-07-25 09:32:41 -05002581 rbd_req_sync_unwatch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002582
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002583 rbd_put_client(rbd_dev);
2584
2585 /* clean up and free blkdev */
2586 rbd_free_disk(rbd_dev);
2587 unregister_blkdev(rbd_dev->major, rbd_dev->name);
Alex Elder32eec682012-02-08 16:11:14 -06002588
2589 /* done with the id, and with the rbd_dev */
Alex Elder820a5f32012-07-09 21:04:24 -05002590 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002591 kfree(rbd_dev->header_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002592 kfree(rbd_dev->pool_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002593 kfree(rbd_dev->image_name);
Alex Elder32eec682012-02-08 16:11:14 -06002594 rbd_id_put(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002595 kfree(rbd_dev);
2596
2597 /* release module ref */
2598 module_put(THIS_MODULE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002599}
2600
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002601static ssize_t rbd_remove(struct bus_type *bus,
2602 const char *buf,
2603 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002604{
2605 struct rbd_device *rbd_dev = NULL;
2606 int target_id, rc;
2607 unsigned long ul;
2608 int ret = count;
2609
2610 rc = strict_strtoul(buf, 10, &ul);
2611 if (rc)
2612 return rc;
2613
2614 /* convert to int; abort if we lost anything in the conversion */
2615 target_id = (int) ul;
2616 if (target_id != ul)
2617 return -EINVAL;
2618
2619 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2620
2621 rbd_dev = __rbd_get_dev(target_id);
2622 if (!rbd_dev) {
2623 ret = -ENOENT;
2624 goto done;
2625 }
2626
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002627 __rbd_remove_all_snaps(rbd_dev);
2628 rbd_bus_del_dev(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002629
2630done:
2631 mutex_unlock(&ctl_mutex);
2632 return ret;
2633}
2634
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002635static ssize_t rbd_snap_add(struct device *dev,
2636 struct device_attribute *attr,
2637 const char *buf,
2638 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002639{
Alex Elder593a9e72012-02-07 12:03:37 -06002640 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002641 int ret;
2642 char *name = kmalloc(count + 1, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002643 if (!name)
2644 return -ENOMEM;
2645
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002646 snprintf(name, count, "%s", buf);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002647
2648 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2649
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002650 ret = rbd_header_add_snap(rbd_dev,
2651 name, GFP_KERNEL);
2652 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002653 goto err_unlock;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002654
Alex Elderb8136232012-07-25 09:32:41 -05002655 ret = __rbd_refresh_header(rbd_dev, NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002656 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002657 goto err_unlock;
2658
2659 /* shouldn't hold ctl_mutex when notifying.. notify might
2660 trigger a watch callback that would need to get that mutex */
2661 mutex_unlock(&ctl_mutex);
2662
2663 /* make a best effort, don't error if failed */
Alex Elder4cb16252012-07-25 09:32:40 -05002664 rbd_req_sync_notify(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002665
2666 ret = count;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002667 kfree(name);
2668 return ret;
2669
2670err_unlock:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002671 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002672 kfree(name);
2673 return ret;
2674}
2675
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002676/*
2677 * create control files in sysfs
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002678 * /sys/bus/rbd/...
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002679 */
2680static int rbd_sysfs_init(void)
2681{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002682 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002683
Alex Elderfed4c142012-02-07 12:03:36 -06002684 ret = device_register(&rbd_root_dev);
Alex Elder21079782012-01-24 10:08:36 -06002685 if (ret < 0)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002686 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002687
Alex Elderfed4c142012-02-07 12:03:36 -06002688 ret = bus_register(&rbd_bus_type);
2689 if (ret < 0)
2690 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002691
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002692 return ret;
2693}
2694
2695static void rbd_sysfs_cleanup(void)
2696{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002697 bus_unregister(&rbd_bus_type);
Alex Elderfed4c142012-02-07 12:03:36 -06002698 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002699}
2700
2701int __init rbd_init(void)
2702{
2703 int rc;
2704
2705 rc = rbd_sysfs_init();
2706 if (rc)
2707 return rc;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002708 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002709 return 0;
2710}
2711
2712void __exit rbd_exit(void)
2713{
2714 rbd_sysfs_cleanup();
2715}
2716
2717module_init(rbd_init);
2718module_exit(rbd_exit);
2719
2720MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
2721MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
2722MODULE_DESCRIPTION("rados block device");
2723
2724/* following authorship retained from original osdblk.c */
2725MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
2726
2727MODULE_LICENSE("GPL");