blob: bf418a6afbe073cc838d1fdff4df2d84d6653088 [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 Sadeh602adf42010-08-12 16:11:25 -0700249 if ((mode & FMODE_WRITE) && rbd_dev->read_only)
250 return -EROFS;
251
Alex Elder340c7a22012-08-10 13:12:07 -0700252 rbd_get_dev(rbd_dev);
253 set_device_ro(bdev, rbd_dev->read_only);
254
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700255 return 0;
256}
257
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800258static int rbd_release(struct gendisk *disk, fmode_t mode)
259{
260 struct rbd_device *rbd_dev = disk->private_data;
261
262 rbd_put_dev(rbd_dev);
263
264 return 0;
265}
266
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700267static const struct block_device_operations rbd_bd_ops = {
268 .owner = THIS_MODULE,
269 .open = rbd_open,
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800270 .release = rbd_release,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700271};
272
273/*
274 * Initialize an rbd client instance.
Alex Elder43ae4702012-07-03 16:01:18 -0500275 * We own *ceph_opts.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700276 */
Alex Elder43ae4702012-07-03 16:01:18 -0500277static struct rbd_client *rbd_client_create(struct ceph_options *ceph_opts,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700278 struct rbd_options *rbd_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700279{
280 struct rbd_client *rbdc;
281 int ret = -ENOMEM;
282
283 dout("rbd_client_create\n");
284 rbdc = kmalloc(sizeof(struct rbd_client), GFP_KERNEL);
285 if (!rbdc)
286 goto out_opt;
287
288 kref_init(&rbdc->kref);
289 INIT_LIST_HEAD(&rbdc->node);
290
Alex Elderbc534d82012-01-29 13:57:44 -0600291 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
292
Alex Elder43ae4702012-07-03 16:01:18 -0500293 rbdc->client = ceph_create_client(ceph_opts, rbdc, 0, 0);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700294 if (IS_ERR(rbdc->client))
Alex Elderbc534d82012-01-29 13:57:44 -0600295 goto out_mutex;
Alex Elder43ae4702012-07-03 16:01:18 -0500296 ceph_opts = NULL; /* Now rbdc->client is responsible for ceph_opts */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700297
298 ret = ceph_open_session(rbdc->client);
299 if (ret < 0)
300 goto out_err;
301
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700302 rbdc->rbd_opts = rbd_opts;
303
Alex Elder432b8582012-01-29 13:57:44 -0600304 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700305 list_add_tail(&rbdc->node, &rbd_client_list);
Alex Elder432b8582012-01-29 13:57:44 -0600306 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700307
Alex Elderbc534d82012-01-29 13:57:44 -0600308 mutex_unlock(&ctl_mutex);
309
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700310 dout("rbd_client_create created %p\n", rbdc);
311 return rbdc;
312
313out_err:
314 ceph_destroy_client(rbdc->client);
Alex Elderbc534d82012-01-29 13:57:44 -0600315out_mutex:
316 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700317 kfree(rbdc);
318out_opt:
Alex Elder43ae4702012-07-03 16:01:18 -0500319 if (ceph_opts)
320 ceph_destroy_options(ceph_opts);
Vasiliy Kulikov28f259b2010-09-26 12:59:37 +0400321 return ERR_PTR(ret);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700322}
323
324/*
325 * Find a ceph client with specific addr and configuration.
326 */
Alex Elder43ae4702012-07-03 16:01:18 -0500327static struct rbd_client *__rbd_client_find(struct ceph_options *ceph_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700328{
329 struct rbd_client *client_node;
330
Alex Elder43ae4702012-07-03 16:01:18 -0500331 if (ceph_opts->flags & CEPH_OPT_NOSHARE)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700332 return NULL;
333
334 list_for_each_entry(client_node, &rbd_client_list, node)
Alex Elder43ae4702012-07-03 16:01:18 -0500335 if (!ceph_compare_options(ceph_opts, client_node->client))
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700336 return client_node;
337 return NULL;
338}
339
340/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700341 * mount options
342 */
343enum {
344 Opt_notify_timeout,
345 Opt_last_int,
346 /* int args above */
347 Opt_last_string,
348 /* string args above */
349};
350
Alex Elder43ae4702012-07-03 16:01:18 -0500351static match_table_t rbd_opts_tokens = {
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700352 {Opt_notify_timeout, "notify_timeout=%d"},
353 /* int args above */
354 /* string args above */
355 {-1, NULL}
356};
357
358static int parse_rbd_opts_token(char *c, void *private)
359{
Alex Elder43ae4702012-07-03 16:01:18 -0500360 struct rbd_options *rbd_opts = private;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700361 substring_t argstr[MAX_OPT_ARGS];
362 int token, intval, ret;
363
Alex Elder43ae4702012-07-03 16:01:18 -0500364 token = match_token(c, rbd_opts_tokens, argstr);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700365 if (token < 0)
366 return -EINVAL;
367
368 if (token < Opt_last_int) {
369 ret = match_int(&argstr[0], &intval);
370 if (ret < 0) {
371 pr_err("bad mount option arg (not int) "
372 "at '%s'\n", c);
373 return ret;
374 }
375 dout("got int token %d val %d\n", token, intval);
376 } else if (token > Opt_last_int && token < Opt_last_string) {
377 dout("got string token %d val %s\n", token,
378 argstr[0].from);
379 } else {
380 dout("got token %d\n", token);
381 }
382
383 switch (token) {
384 case Opt_notify_timeout:
Alex Elder43ae4702012-07-03 16:01:18 -0500385 rbd_opts->notify_timeout = intval;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700386 break;
387 default:
388 BUG_ON(token);
389 }
390 return 0;
391}
392
393/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700394 * Get a ceph client with specific addr and configuration, if one does
395 * not exist create it.
396 */
Alex Elder5214ecc2012-02-02 08:13:30 -0600397static struct rbd_client *rbd_get_client(const char *mon_addr,
398 size_t mon_addr_len,
399 char *options)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700400{
401 struct rbd_client *rbdc;
Alex Elder43ae4702012-07-03 16:01:18 -0500402 struct ceph_options *ceph_opts;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700403 struct rbd_options *rbd_opts;
404
405 rbd_opts = kzalloc(sizeof(*rbd_opts), GFP_KERNEL);
406 if (!rbd_opts)
Alex Elderd720bcb2012-02-02 08:13:30 -0600407 return ERR_PTR(-ENOMEM);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700408
409 rbd_opts->notify_timeout = RBD_NOTIFY_TIMEOUT_DEFAULT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700410
Alex Elder43ae4702012-07-03 16:01:18 -0500411 ceph_opts = ceph_parse_options(options, mon_addr,
412 mon_addr + mon_addr_len,
413 parse_rbd_opts_token, rbd_opts);
414 if (IS_ERR(ceph_opts)) {
Alex Elderd720bcb2012-02-02 08:13:30 -0600415 kfree(rbd_opts);
Alex Elder43ae4702012-07-03 16:01:18 -0500416 return ERR_CAST(ceph_opts);
Alex Elderee577412012-01-24 10:08:36 -0600417 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700418
Alex Elder432b8582012-01-29 13:57:44 -0600419 spin_lock(&rbd_client_list_lock);
Alex Elder43ae4702012-07-03 16:01:18 -0500420 rbdc = __rbd_client_find(ceph_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700421 if (rbdc) {
Alex Eldere6994d32012-01-29 13:57:44 -0600422 /* using an existing client */
423 kref_get(&rbdc->kref);
Alex Elder432b8582012-01-29 13:57:44 -0600424 spin_unlock(&rbd_client_list_lock);
Alex Eldere6994d32012-01-29 13:57:44 -0600425
Alex Elder43ae4702012-07-03 16:01:18 -0500426 ceph_destroy_options(ceph_opts);
Alex Elder97bb59a2012-01-24 10:08:36 -0600427 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700428
Alex Elderd720bcb2012-02-02 08:13:30 -0600429 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700430 }
Alex Elder432b8582012-01-29 13:57:44 -0600431 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700432
Alex Elder43ae4702012-07-03 16:01:18 -0500433 rbdc = rbd_client_create(ceph_opts, rbd_opts);
Alex Elderd97081b2012-01-29 13:57:44 -0600434
Alex Elderd720bcb2012-02-02 08:13:30 -0600435 if (IS_ERR(rbdc))
436 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700437
Alex Elderd720bcb2012-02-02 08:13:30 -0600438 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700439}
440
441/*
442 * Destroy ceph client
Alex Elderd23a4b32012-01-29 13:57:43 -0600443 *
Alex Elder432b8582012-01-29 13:57:44 -0600444 * Caller must hold rbd_client_list_lock.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700445 */
446static void rbd_client_release(struct kref *kref)
447{
448 struct rbd_client *rbdc = container_of(kref, struct rbd_client, kref);
449
450 dout("rbd_release_client %p\n", rbdc);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500451 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700452 list_del(&rbdc->node);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500453 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700454
455 ceph_destroy_client(rbdc->client);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700456 kfree(rbdc->rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700457 kfree(rbdc);
458}
459
460/*
461 * Drop reference to ceph client node. If it's not referenced anymore, release
462 * it.
463 */
464static void rbd_put_client(struct rbd_device *rbd_dev)
465{
466 kref_put(&rbd_dev->rbd_client->kref, rbd_client_release);
467 rbd_dev->rbd_client = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700468}
469
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700470/*
471 * Destroy requests collection
472 */
473static void rbd_coll_release(struct kref *kref)
474{
475 struct rbd_req_coll *coll =
476 container_of(kref, struct rbd_req_coll, kref);
477
478 dout("rbd_coll_release %p\n", coll);
479 kfree(coll);
480}
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700481
Alex Elder8e94af82012-07-25 09:32:40 -0500482static bool rbd_dev_ondisk_valid(struct rbd_image_header_ondisk *ondisk)
483{
484 return !memcmp(&ondisk->text,
485 RBD_HEADER_TEXT, sizeof (RBD_HEADER_TEXT));
486}
487
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700488/*
489 * Create a new header structure, translate header format from the on-disk
490 * header.
491 */
492static int rbd_header_from_disk(struct rbd_image_header *header,
493 struct rbd_image_header_ondisk *ondisk,
Alex Eldered63f4f2012-07-19 09:09:27 -0500494 u32 allocated_snaps)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700495{
Alex Elderccece232012-07-10 20:30:10 -0500496 u32 snap_count;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700497
Alex Elder8e94af82012-07-25 09:32:40 -0500498 if (!rbd_dev_ondisk_valid(ondisk))
Josh Durgin81e759f2011-11-15 14:49:53 -0800499 return -ENXIO;
Josh Durgin81e759f2011-11-15 14:49:53 -0800500
Alex Elder00f1f362012-02-07 12:03:36 -0600501 snap_count = le32_to_cpu(ondisk->snap_count);
Alex Elderccece232012-07-10 20:30:10 -0500502 if (snap_count > (SIZE_MAX - sizeof(struct ceph_snap_context))
503 / sizeof (u64))
Xi Wang50f7c4c2012-04-20 15:49:44 -0500504 return -EINVAL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700505 header->snapc = kmalloc(sizeof(struct ceph_snap_context) +
Yan, Zhengf9f9a192012-06-06 09:15:33 -0500506 snap_count * sizeof(u64),
Alex Eldered63f4f2012-07-19 09:09:27 -0500507 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700508 if (!header->snapc)
509 return -ENOMEM;
Alex Elder00f1f362012-02-07 12:03:36 -0600510
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700511 if (snap_count) {
Alex Elderccece232012-07-10 20:30:10 -0500512 header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700513 header->snap_names = kmalloc(header->snap_names_len,
Alex Eldered63f4f2012-07-19 09:09:27 -0500514 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700515 if (!header->snap_names)
516 goto err_snapc;
517 header->snap_sizes = kmalloc(snap_count * sizeof(u64),
Alex Eldered63f4f2012-07-19 09:09:27 -0500518 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700519 if (!header->snap_sizes)
520 goto err_names;
521 } else {
Alex Elderccece232012-07-10 20:30:10 -0500522 WARN_ON(ondisk->snap_names_len);
523 header->snap_names_len = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700524 header->snap_names = NULL;
525 header->snap_sizes = NULL;
526 }
Alex Elder849b4262012-07-09 21:04:24 -0500527
528 header->object_prefix = kmalloc(sizeof (ondisk->block_name) + 1,
Alex Eldered63f4f2012-07-19 09:09:27 -0500529 GFP_KERNEL);
Alex Elder849b4262012-07-09 21:04:24 -0500530 if (!header->object_prefix)
531 goto err_sizes;
532
Alex Elderca1e49a2012-07-10 20:30:09 -0500533 memcpy(header->object_prefix, ondisk->block_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700534 sizeof(ondisk->block_name));
Alex Elder849b4262012-07-09 21:04:24 -0500535 header->object_prefix[sizeof (ondisk->block_name)] = '\0';
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700536
537 header->image_size = le64_to_cpu(ondisk->image_size);
538 header->obj_order = ondisk->options.order;
539 header->crypt_type = ondisk->options.crypt_type;
540 header->comp_type = ondisk->options.comp_type;
541
542 atomic_set(&header->snapc->nref, 1);
Alex Elder505cbb92012-07-19 08:49:18 -0500543 header->snapc->seq = le64_to_cpu(ondisk->snap_seq);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700544 header->snapc->num_snaps = snap_count;
545 header->total_snaps = snap_count;
546
Alex Elder21079782012-01-24 10:08:36 -0600547 if (snap_count && allocated_snaps == snap_count) {
Alex Elderccece232012-07-10 20:30:10 -0500548 int i;
549
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700550 for (i = 0; i < snap_count; i++) {
551 header->snapc->snaps[i] =
552 le64_to_cpu(ondisk->snaps[i].id);
553 header->snap_sizes[i] =
554 le64_to_cpu(ondisk->snaps[i].image_size);
555 }
556
557 /* copy snapshot names */
Alex Elderccece232012-07-10 20:30:10 -0500558 memcpy(header->snap_names, &ondisk->snaps[snap_count],
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700559 header->snap_names_len);
560 }
561
562 return 0;
563
Alex Elder849b4262012-07-09 21:04:24 -0500564err_sizes:
565 kfree(header->snap_sizes);
Alex Elderccece232012-07-10 20:30:10 -0500566 header->snap_sizes = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700567err_names:
568 kfree(header->snap_names);
Alex Elderccece232012-07-10 20:30:10 -0500569 header->snap_names = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700570err_snapc:
571 kfree(header->snapc);
Alex Elderccece232012-07-10 20:30:10 -0500572 header->snapc = NULL;
573
Alex Elder00f1f362012-02-07 12:03:36 -0600574 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700575}
576
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700577static int snap_by_name(struct rbd_image_header *header, const char *snap_name,
578 u64 *seq, u64 *size)
579{
580 int i;
581 char *p = header->snap_names;
582
Alex Elder00f1f362012-02-07 12:03:36 -0600583 for (i = 0; i < header->total_snaps; i++) {
584 if (!strcmp(snap_name, p)) {
585
586 /* Found it. Pass back its id and/or size */
587
588 if (seq)
589 *seq = header->snapc->snaps[i];
590 if (size)
591 *size = header->snap_sizes[i];
592 return i;
593 }
594 p += strlen(p) + 1; /* Skip ahead to the next name */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700595 }
Alex Elder00f1f362012-02-07 12:03:36 -0600596 return -ENOENT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700597}
598
Alex Elder0ce1a792012-07-03 16:01:18 -0500599static int rbd_header_set_snap(struct rbd_device *rbd_dev, u64 *size)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700600{
Alex Elder78dc4472012-07-19 08:49:18 -0500601 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700602
Alex Elder0ce1a792012-07-03 16:01:18 -0500603 down_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700604
Alex Elder0ce1a792012-07-03 16:01:18 -0500605 if (!memcmp(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
Josh Durgincc9d7342011-11-21 18:19:13 -0800606 sizeof (RBD_SNAP_HEAD_NAME))) {
Alex Elder0ce1a792012-07-03 16:01:18 -0500607 rbd_dev->snap_id = CEPH_NOSNAP;
Josh Durgine88a36e2011-11-21 18:14:25 -0800608 rbd_dev->snap_exists = false;
Alex Elder0ce1a792012-07-03 16:01:18 -0500609 rbd_dev->read_only = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700610 if (size)
Alex Elder78dc4472012-07-19 08:49:18 -0500611 *size = rbd_dev->header.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700612 } else {
Alex Elder78dc4472012-07-19 08:49:18 -0500613 u64 snap_id = 0;
614
615 ret = snap_by_name(&rbd_dev->header, rbd_dev->snap_name,
616 &snap_id, size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700617 if (ret < 0)
618 goto done;
Alex Elder78dc4472012-07-19 08:49:18 -0500619 rbd_dev->snap_id = snap_id;
Josh Durgine88a36e2011-11-21 18:14:25 -0800620 rbd_dev->snap_exists = true;
Alex Elder0ce1a792012-07-03 16:01:18 -0500621 rbd_dev->read_only = 1;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700622 }
623
624 ret = 0;
625done:
Alex Elder0ce1a792012-07-03 16:01:18 -0500626 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700627 return ret;
628}
629
630static void rbd_header_free(struct rbd_image_header *header)
631{
Alex Elder849b4262012-07-09 21:04:24 -0500632 kfree(header->object_prefix);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700633 kfree(header->snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -0500634 kfree(header->snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -0800635 ceph_put_snap_context(header->snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700636}
637
638/*
639 * get the actual striped segment name, offset and length
640 */
641static u64 rbd_get_segment(struct rbd_image_header *header,
Alex Elderca1e49a2012-07-10 20:30:09 -0500642 const char *object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700643 u64 ofs, u64 len,
644 char *seg_name, u64 *segofs)
645{
646 u64 seg = ofs >> header->obj_order;
647
648 if (seg_name)
649 snprintf(seg_name, RBD_MAX_SEG_NAME_LEN,
Alex Elderca1e49a2012-07-10 20:30:09 -0500650 "%s.%012llx", object_prefix, seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700651
652 ofs = ofs & ((1 << header->obj_order) - 1);
653 len = min_t(u64, len, (1 << header->obj_order) - ofs);
654
655 if (segofs)
656 *segofs = ofs;
657
658 return len;
659}
660
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700661static int rbd_get_num_segments(struct rbd_image_header *header,
662 u64 ofs, u64 len)
663{
664 u64 start_seg = ofs >> header->obj_order;
665 u64 end_seg = (ofs + len - 1) >> header->obj_order;
666 return end_seg - start_seg + 1;
667}
668
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700669/*
Josh Durgin029bcbd2011-07-22 11:35:23 -0700670 * returns the size of an object in the image
671 */
672static u64 rbd_obj_bytes(struct rbd_image_header *header)
673{
674 return 1 << header->obj_order;
675}
676
677/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700678 * bio helpers
679 */
680
681static void bio_chain_put(struct bio *chain)
682{
683 struct bio *tmp;
684
685 while (chain) {
686 tmp = chain;
687 chain = chain->bi_next;
688 bio_put(tmp);
689 }
690}
691
692/*
693 * zeros a bio chain, starting at specific offset
694 */
695static void zero_bio_chain(struct bio *chain, int start_ofs)
696{
697 struct bio_vec *bv;
698 unsigned long flags;
699 void *buf;
700 int i;
701 int pos = 0;
702
703 while (chain) {
704 bio_for_each_segment(bv, chain, i) {
705 if (pos + bv->bv_len > start_ofs) {
706 int remainder = max(start_ofs - pos, 0);
707 buf = bvec_kmap_irq(bv, &flags);
708 memset(buf + remainder, 0,
709 bv->bv_len - remainder);
Dan Carpenter85b5aaa2010-10-11 21:15:11 +0200710 bvec_kunmap_irq(buf, &flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700711 }
712 pos += bv->bv_len;
713 }
714
715 chain = chain->bi_next;
716 }
717}
718
719/*
720 * bio_chain_clone - clone a chain of bios up to a certain length.
721 * might return a bio_pair that will need to be released.
722 */
723static struct bio *bio_chain_clone(struct bio **old, struct bio **next,
724 struct bio_pair **bp,
725 int len, gfp_t gfpmask)
726{
727 struct bio *tmp, *old_chain = *old, *new_chain = NULL, *tail = NULL;
728 int total = 0;
729
730 if (*bp) {
731 bio_pair_release(*bp);
732 *bp = NULL;
733 }
734
735 while (old_chain && (total < len)) {
736 tmp = bio_kmalloc(gfpmask, old_chain->bi_max_vecs);
737 if (!tmp)
738 goto err_out;
739
740 if (total + old_chain->bi_size > len) {
741 struct bio_pair *bp;
742
743 /*
744 * this split can only happen with a single paged bio,
745 * split_bio will BUG_ON if this is not the case
746 */
747 dout("bio_chain_clone split! total=%d remaining=%d"
Alex Elderbd919d42012-07-13 20:35:11 -0500748 "bi_size=%u\n",
749 total, len - total, old_chain->bi_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700750
751 /* split the bio. We'll release it either in the next
752 call, or it will have to be released outside */
Alex Elder593a9e72012-02-07 12:03:37 -0600753 bp = bio_split(old_chain, (len - total) / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700754 if (!bp)
755 goto err_out;
756
757 __bio_clone(tmp, &bp->bio1);
758
759 *next = &bp->bio2;
760 } else {
761 __bio_clone(tmp, old_chain);
762 *next = old_chain->bi_next;
763 }
764
765 tmp->bi_bdev = NULL;
766 gfpmask &= ~__GFP_WAIT;
767 tmp->bi_next = NULL;
768
769 if (!new_chain) {
770 new_chain = tail = tmp;
771 } else {
772 tail->bi_next = tmp;
773 tail = tmp;
774 }
775 old_chain = old_chain->bi_next;
776
777 total += tmp->bi_size;
778 }
779
780 BUG_ON(total < len);
781
782 if (tail)
783 tail->bi_next = NULL;
784
785 *old = old_chain;
786
787 return new_chain;
788
789err_out:
790 dout("bio_chain_clone with err\n");
791 bio_chain_put(new_chain);
792 return NULL;
793}
794
795/*
796 * helpers for osd request op vectors.
797 */
Alex Elder57cfc102012-06-26 12:57:03 -0700798static struct ceph_osd_req_op *rbd_create_rw_ops(int num_ops,
799 int opcode, u32 payload_len)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700800{
Alex Elder57cfc102012-06-26 12:57:03 -0700801 struct ceph_osd_req_op *ops;
802
803 ops = kzalloc(sizeof (*ops) * (num_ops + 1), GFP_NOIO);
804 if (!ops)
805 return NULL;
806
807 ops[0].op = opcode;
808
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700809 /*
810 * op extent offset and length will be set later on
811 * in calc_raw_layout()
812 */
Alex Elder57cfc102012-06-26 12:57:03 -0700813 ops[0].payload_len = payload_len;
814
815 return ops;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700816}
817
818static void rbd_destroy_ops(struct ceph_osd_req_op *ops)
819{
820 kfree(ops);
821}
822
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700823static void rbd_coll_end_req_index(struct request *rq,
824 struct rbd_req_coll *coll,
825 int index,
826 int ret, u64 len)
827{
828 struct request_queue *q;
829 int min, max, i;
830
Alex Elderbd919d42012-07-13 20:35:11 -0500831 dout("rbd_coll_end_req_index %p index %d ret %d len %llu\n",
832 coll, index, ret, (unsigned long long) len);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700833
834 if (!rq)
835 return;
836
837 if (!coll) {
838 blk_end_request(rq, ret, len);
839 return;
840 }
841
842 q = rq->q;
843
844 spin_lock_irq(q->queue_lock);
845 coll->status[index].done = 1;
846 coll->status[index].rc = ret;
847 coll->status[index].bytes = len;
848 max = min = coll->num_done;
849 while (max < coll->total && coll->status[max].done)
850 max++;
851
852 for (i = min; i<max; i++) {
853 __blk_end_request(rq, coll->status[i].rc,
854 coll->status[i].bytes);
855 coll->num_done++;
856 kref_put(&coll->kref, rbd_coll_release);
857 }
858 spin_unlock_irq(q->queue_lock);
859}
860
861static void rbd_coll_end_req(struct rbd_request *req,
862 int ret, u64 len)
863{
864 rbd_coll_end_req_index(req->rq, req->coll, req->coll_index, ret, len);
865}
866
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700867/*
868 * Send ceph osd request
869 */
870static int rbd_do_request(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -0500871 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700872 struct ceph_snap_context *snapc,
873 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -0500874 const char *object_name, u64 ofs, u64 len,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700875 struct bio *bio,
876 struct page **pages,
877 int num_pages,
878 int flags,
879 struct ceph_osd_req_op *ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700880 struct rbd_req_coll *coll,
881 int coll_index,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700882 void (*rbd_cb)(struct ceph_osd_request *req,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700883 struct ceph_msg *msg),
884 struct ceph_osd_request **linger_req,
885 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700886{
887 struct ceph_osd_request *req;
888 struct ceph_file_layout *layout;
889 int ret;
890 u64 bno;
891 struct timespec mtime = CURRENT_TIME;
892 struct rbd_request *req_data;
893 struct ceph_osd_request_head *reqhead;
Alex Elder1dbb4392012-01-24 10:08:37 -0600894 struct ceph_osd_client *osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700895
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700896 req_data = kzalloc(sizeof(*req_data), GFP_NOIO);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700897 if (!req_data) {
898 if (coll)
899 rbd_coll_end_req_index(rq, coll, coll_index,
900 -ENOMEM, len);
901 return -ENOMEM;
902 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700903
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700904 if (coll) {
905 req_data->coll = coll;
906 req_data->coll_index = coll_index;
907 }
908
Alex Elderbd919d42012-07-13 20:35:11 -0500909 dout("rbd_do_request object_name=%s ofs=%llu len=%llu\n", object_name,
910 (unsigned long long) ofs, (unsigned long long) len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700911
Alex Elder0ce1a792012-07-03 16:01:18 -0500912 osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder1dbb4392012-01-24 10:08:37 -0600913 req = ceph_osdc_alloc_request(osdc, flags, snapc, ops,
914 false, GFP_NOIO, pages, bio);
Sage Weil4ad12622011-05-03 09:23:36 -0700915 if (!req) {
Sage Weil4ad12622011-05-03 09:23:36 -0700916 ret = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700917 goto done_pages;
918 }
919
920 req->r_callback = rbd_cb;
921
922 req_data->rq = rq;
923 req_data->bio = bio;
924 req_data->pages = pages;
925 req_data->len = len;
926
927 req->r_priv = req_data;
928
929 reqhead = req->r_request->front.iov_base;
930 reqhead->snapid = cpu_to_le64(CEPH_NOSNAP);
931
Alex Elderaded07e2012-07-03 16:01:18 -0500932 strncpy(req->r_oid, object_name, sizeof(req->r_oid));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700933 req->r_oid_len = strlen(req->r_oid);
934
935 layout = &req->r_file_layout;
936 memset(layout, 0, sizeof(*layout));
937 layout->fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
938 layout->fl_stripe_count = cpu_to_le32(1);
939 layout->fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
Alex Elder0ce1a792012-07-03 16:01:18 -0500940 layout->fl_pg_pool = cpu_to_le32(rbd_dev->pool_id);
Alex Elder1dbb4392012-01-24 10:08:37 -0600941 ceph_calc_raw_layout(osdc, layout, snapid, ofs, &len, &bno,
942 req, ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700943
944 ceph_osdc_build_request(req, ofs, &len,
945 ops,
946 snapc,
947 &mtime,
948 req->r_oid, req->r_oid_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700949
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700950 if (linger_req) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600951 ceph_osdc_set_request_linger(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700952 *linger_req = req;
953 }
954
Alex Elder1dbb4392012-01-24 10:08:37 -0600955 ret = ceph_osdc_start_request(osdc, req, false);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700956 if (ret < 0)
957 goto done_err;
958
959 if (!rbd_cb) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600960 ret = ceph_osdc_wait_request(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700961 if (ver)
962 *ver = le64_to_cpu(req->r_reassert_version.version);
Alex Elderbd919d42012-07-13 20:35:11 -0500963 dout("reassert_ver=%llu\n",
964 (unsigned long long)
965 le64_to_cpu(req->r_reassert_version.version));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700966 ceph_osdc_put_request(req);
967 }
968 return ret;
969
970done_err:
971 bio_chain_put(req_data->bio);
972 ceph_osdc_put_request(req);
973done_pages:
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700974 rbd_coll_end_req(req_data, ret, len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700975 kfree(req_data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700976 return ret;
977}
978
979/*
980 * Ceph osd op callback
981 */
982static void rbd_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
983{
984 struct rbd_request *req_data = req->r_priv;
985 struct ceph_osd_reply_head *replyhead;
986 struct ceph_osd_op *op;
987 __s32 rc;
988 u64 bytes;
989 int read_op;
990
991 /* parse reply */
992 replyhead = msg->front.iov_base;
993 WARN_ON(le32_to_cpu(replyhead->num_ops) == 0);
994 op = (void *)(replyhead + 1);
995 rc = le32_to_cpu(replyhead->result);
996 bytes = le64_to_cpu(op->extent.length);
Dan Carpenter895cfcc2012-06-06 09:15:33 -0500997 read_op = (le16_to_cpu(op->op) == CEPH_OSD_OP_READ);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700998
Alex Elderbd919d42012-07-13 20:35:11 -0500999 dout("rbd_req_cb bytes=%llu readop=%d rc=%d\n",
1000 (unsigned long long) bytes, read_op, (int) rc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001001
1002 if (rc == -ENOENT && read_op) {
1003 zero_bio_chain(req_data->bio, 0);
1004 rc = 0;
1005 } else if (rc == 0 && read_op && bytes < req_data->len) {
1006 zero_bio_chain(req_data->bio, bytes);
1007 bytes = req_data->len;
1008 }
1009
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001010 rbd_coll_end_req(req_data, rc, bytes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001011
1012 if (req_data->bio)
1013 bio_chain_put(req_data->bio);
1014
1015 ceph_osdc_put_request(req);
1016 kfree(req_data);
1017}
1018
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001019static void rbd_simple_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1020{
1021 ceph_osdc_put_request(req);
1022}
1023
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001024/*
1025 * Do a synchronous ceph osd operation
1026 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001027static int rbd_req_sync_op(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001028 struct ceph_snap_context *snapc,
1029 u64 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001030 int flags,
Alex Elder913d2fd2012-06-26 12:57:03 -07001031 struct ceph_osd_req_op *ops,
Alex Elderaded07e2012-07-03 16:01:18 -05001032 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001033 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001034 char *buf,
1035 struct ceph_osd_request **linger_req,
1036 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001037{
1038 int ret;
1039 struct page **pages;
1040 int num_pages;
Alex Elder913d2fd2012-06-26 12:57:03 -07001041
1042 BUG_ON(ops == NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001043
1044 num_pages = calc_pages_for(ofs , len);
1045 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Dan Carpenterb8d06382010-10-11 21:14:23 +02001046 if (IS_ERR(pages))
1047 return PTR_ERR(pages);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001048
Alex Elder0ce1a792012-07-03 16:01:18 -05001049 ret = rbd_do_request(NULL, rbd_dev, snapc, snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001050 object_name, ofs, len, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001051 pages, num_pages,
1052 flags,
1053 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001054 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001055 NULL,
1056 linger_req, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001057 if (ret < 0)
Alex Elder913d2fd2012-06-26 12:57:03 -07001058 goto done;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001059
1060 if ((flags & CEPH_OSD_FLAG_READ) && buf)
1061 ret = ceph_copy_from_page_vector(pages, buf, ofs, ret);
1062
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001063done:
1064 ceph_release_page_vector(pages, num_pages);
1065 return ret;
1066}
1067
1068/*
1069 * Do an asynchronous ceph osd operation
1070 */
1071static int rbd_do_op(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -05001072 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001073 struct ceph_snap_context *snapc,
1074 u64 snapid,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001075 int opcode, int flags,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001076 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001077 struct bio *bio,
1078 struct rbd_req_coll *coll,
1079 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001080{
1081 char *seg_name;
1082 u64 seg_ofs;
1083 u64 seg_len;
1084 int ret;
1085 struct ceph_osd_req_op *ops;
1086 u32 payload_len;
1087
1088 seg_name = kmalloc(RBD_MAX_SEG_NAME_LEN + 1, GFP_NOIO);
1089 if (!seg_name)
1090 return -ENOMEM;
1091
1092 seg_len = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001093 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001094 ofs, len,
1095 seg_name, &seg_ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001096
1097 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
1098
Alex Elder57cfc102012-06-26 12:57:03 -07001099 ret = -ENOMEM;
1100 ops = rbd_create_rw_ops(1, opcode, payload_len);
1101 if (!ops)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001102 goto done;
1103
1104 /* we've taken care of segment sizes earlier when we
1105 cloned the bios. We should never have a segment
1106 truncated at this point */
1107 BUG_ON(seg_len < len);
1108
1109 ret = rbd_do_request(rq, rbd_dev, snapc, snapid,
1110 seg_name, seg_ofs, seg_len,
1111 bio,
1112 NULL, 0,
1113 flags,
1114 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001115 coll, coll_index,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001116 rbd_req_cb, 0, NULL);
Sage Weil11f77002011-05-12 16:13:54 -07001117
1118 rbd_destroy_ops(ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001119done:
1120 kfree(seg_name);
1121 return ret;
1122}
1123
1124/*
1125 * Request async osd write
1126 */
1127static int rbd_req_write(struct request *rq,
1128 struct rbd_device *rbd_dev,
1129 struct ceph_snap_context *snapc,
1130 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001131 struct bio *bio,
1132 struct rbd_req_coll *coll,
1133 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001134{
1135 return rbd_do_op(rq, rbd_dev, snapc, CEPH_NOSNAP,
1136 CEPH_OSD_OP_WRITE,
1137 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001138 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001139}
1140
1141/*
1142 * Request async osd read
1143 */
1144static int rbd_req_read(struct request *rq,
1145 struct rbd_device *rbd_dev,
1146 u64 snapid,
1147 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001148 struct bio *bio,
1149 struct rbd_req_coll *coll,
1150 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001151{
1152 return rbd_do_op(rq, rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001153 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001154 CEPH_OSD_OP_READ,
1155 CEPH_OSD_FLAG_READ,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001156 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001157}
1158
1159/*
1160 * Request sync osd read
1161 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001162static int rbd_req_sync_read(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001163 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001164 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001165 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001166 char *buf,
1167 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001168{
Alex Elder913d2fd2012-06-26 12:57:03 -07001169 struct ceph_osd_req_op *ops;
1170 int ret;
1171
1172 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_READ, 0);
1173 if (!ops)
1174 return -ENOMEM;
1175
1176 ret = rbd_req_sync_op(rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001177 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001178 CEPH_OSD_FLAG_READ,
Alex Elder913d2fd2012-06-26 12:57:03 -07001179 ops, object_name, ofs, len, buf, NULL, ver);
1180 rbd_destroy_ops(ops);
1181
1182 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001183}
1184
1185/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001186 * Request sync osd watch
1187 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001188static int rbd_req_sync_notify_ack(struct rbd_device *rbd_dev,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001189 u64 ver,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001190 u64 notify_id)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001191{
1192 struct ceph_osd_req_op *ops;
Sage Weil11f77002011-05-12 16:13:54 -07001193 int ret;
1194
Alex Elder57cfc102012-06-26 12:57:03 -07001195 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY_ACK, 0);
1196 if (!ops)
1197 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001198
Josh Durgina71b8912011-12-05 18:10:44 -08001199 ops[0].watch.ver = cpu_to_le64(ver);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001200 ops[0].watch.cookie = notify_id;
1201 ops[0].watch.flag = 0;
1202
Alex Elder0ce1a792012-07-03 16:01:18 -05001203 ret = rbd_do_request(NULL, rbd_dev, NULL, CEPH_NOSNAP,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001204 rbd_dev->header_name, 0, 0, NULL,
Alex Elderad4f2322012-07-03 16:01:19 -05001205 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001206 CEPH_OSD_FLAG_READ,
1207 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001208 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001209 rbd_simple_req_cb, 0, NULL);
1210
1211 rbd_destroy_ops(ops);
1212 return ret;
1213}
1214
1215static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1216{
Alex Elder0ce1a792012-07-03 16:01:18 -05001217 struct rbd_device *rbd_dev = (struct rbd_device *)data;
Josh Durgina71b8912011-12-05 18:10:44 -08001218 u64 hver;
Sage Weil13143d22011-05-12 16:08:30 -07001219 int rc;
1220
Alex Elder0ce1a792012-07-03 16:01:18 -05001221 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001222 return;
1223
Alex Elderbd919d42012-07-13 20:35:11 -05001224 dout("rbd_watch_cb %s notify_id=%llu opcode=%u\n",
1225 rbd_dev->header_name, (unsigned long long) notify_id,
1226 (unsigned int) opcode);
Alex Elder1fe5e992012-07-25 09:32:41 -05001227 rc = rbd_refresh_header(rbd_dev, &hver);
Sage Weil13143d22011-05-12 16:08:30 -07001228 if (rc)
Alex Elderf0f8cef2012-01-29 13:57:44 -06001229 pr_warning(RBD_DRV_NAME "%d got notification but failed to "
Alex Elder0ce1a792012-07-03 16:01:18 -05001230 " update snaps: %d\n", rbd_dev->major, rc);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001231
Alex Elder7f0a24d2012-07-25 09:32:40 -05001232 rbd_req_sync_notify_ack(rbd_dev, hver, notify_id);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001233}
1234
1235/*
1236 * Request sync osd watch
1237 */
Alex Elder0e6f3222012-07-25 09:32:40 -05001238static int rbd_req_sync_watch(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001239{
1240 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001241 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder57cfc102012-06-26 12:57:03 -07001242 int ret;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001243
Alex Elder57cfc102012-06-26 12:57:03 -07001244 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1245 if (!ops)
1246 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001247
1248 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, 0,
Alex Elder0ce1a792012-07-03 16:01:18 -05001249 (void *)rbd_dev, &rbd_dev->watch_event);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001250 if (ret < 0)
1251 goto fail;
1252
Alex Elder0e6f3222012-07-25 09:32:40 -05001253 ops[0].watch.ver = cpu_to_le64(rbd_dev->header.obj_version);
Alex Elder0ce1a792012-07-03 16:01:18 -05001254 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001255 ops[0].watch.flag = 1;
1256
Alex Elder0ce1a792012-07-03 16:01:18 -05001257 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001258 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001259 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1260 ops,
Alex Elder0e6f3222012-07-25 09:32:40 -05001261 rbd_dev->header_name,
1262 0, 0, NULL,
Alex Elder0ce1a792012-07-03 16:01:18 -05001263 &rbd_dev->watch_request, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001264
1265 if (ret < 0)
1266 goto fail_event;
1267
1268 rbd_destroy_ops(ops);
1269 return 0;
1270
1271fail_event:
Alex Elder0ce1a792012-07-03 16:01:18 -05001272 ceph_osdc_cancel_event(rbd_dev->watch_event);
1273 rbd_dev->watch_event = NULL;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001274fail:
1275 rbd_destroy_ops(ops);
1276 return ret;
1277}
1278
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001279/*
1280 * Request sync osd unwatch
1281 */
Alex Elder070c6332012-07-25 09:32:41 -05001282static int rbd_req_sync_unwatch(struct rbd_device *rbd_dev)
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001283{
1284 struct ceph_osd_req_op *ops;
Alex Elder57cfc102012-06-26 12:57:03 -07001285 int ret;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001286
Alex Elder57cfc102012-06-26 12:57:03 -07001287 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1288 if (!ops)
1289 return -ENOMEM;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001290
1291 ops[0].watch.ver = 0;
Alex Elder0ce1a792012-07-03 16:01:18 -05001292 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001293 ops[0].watch.flag = 0;
1294
Alex Elder0ce1a792012-07-03 16:01:18 -05001295 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001296 CEPH_NOSNAP,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001297 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1298 ops,
Alex Elder070c6332012-07-25 09:32:41 -05001299 rbd_dev->header_name,
1300 0, 0, NULL, NULL, NULL);
1301
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001302
1303 rbd_destroy_ops(ops);
Alex Elder0ce1a792012-07-03 16:01:18 -05001304 ceph_osdc_cancel_event(rbd_dev->watch_event);
1305 rbd_dev->watch_event = NULL;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001306 return ret;
1307}
1308
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001309struct rbd_notify_info {
Alex Elder0ce1a792012-07-03 16:01:18 -05001310 struct rbd_device *rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001311};
1312
1313static void rbd_notify_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1314{
Alex Elder0ce1a792012-07-03 16:01:18 -05001315 struct rbd_device *rbd_dev = (struct rbd_device *)data;
1316 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001317 return;
1318
Alex Elderbd919d42012-07-13 20:35:11 -05001319 dout("rbd_notify_cb %s notify_id=%llu opcode=%u\n",
1320 rbd_dev->header_name, (unsigned long long) notify_id,
1321 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001322}
1323
1324/*
1325 * Request sync osd notify
1326 */
Alex Elder4cb16252012-07-25 09:32:40 -05001327static int rbd_req_sync_notify(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001328{
1329 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001330 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001331 struct ceph_osd_event *event;
1332 struct rbd_notify_info info;
1333 int payload_len = sizeof(u32) + sizeof(u32);
1334 int ret;
1335
Alex Elder57cfc102012-06-26 12:57:03 -07001336 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY, payload_len);
1337 if (!ops)
1338 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001339
Alex Elder0ce1a792012-07-03 16:01:18 -05001340 info.rbd_dev = rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001341
1342 ret = ceph_osdc_create_event(osdc, rbd_notify_cb, 1,
1343 (void *)&info, &event);
1344 if (ret < 0)
1345 goto fail;
1346
1347 ops[0].watch.ver = 1;
1348 ops[0].watch.flag = 1;
1349 ops[0].watch.cookie = event->cookie;
1350 ops[0].watch.prot_ver = RADOS_NOTIFY_VER;
1351 ops[0].watch.timeout = 12;
1352
Alex Elder0ce1a792012-07-03 16:01:18 -05001353 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001354 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001355 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1356 ops,
Alex Elder4cb16252012-07-25 09:32:40 -05001357 rbd_dev->header_name,
1358 0, 0, NULL, NULL, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001359 if (ret < 0)
1360 goto fail_event;
1361
1362 ret = ceph_osdc_wait_event(event, CEPH_OSD_TIMEOUT_DEFAULT);
1363 dout("ceph_osdc_wait_event returned %d\n", ret);
1364 rbd_destroy_ops(ops);
1365 return 0;
1366
1367fail_event:
1368 ceph_osdc_cancel_event(event);
1369fail:
1370 rbd_destroy_ops(ops);
1371 return ret;
1372}
1373
1374/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001375 * Request sync osd read
1376 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001377static int rbd_req_sync_exec(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001378 const char *object_name,
1379 const char *class_name,
1380 const char *method_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001381 const char *data,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001382 int len,
1383 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001384{
1385 struct ceph_osd_req_op *ops;
Alex Elderaded07e2012-07-03 16:01:18 -05001386 int class_name_len = strlen(class_name);
1387 int method_name_len = strlen(method_name);
Alex Elder57cfc102012-06-26 12:57:03 -07001388 int ret;
1389
1390 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_CALL,
Alex Elderaded07e2012-07-03 16:01:18 -05001391 class_name_len + method_name_len + len);
Alex Elder57cfc102012-06-26 12:57:03 -07001392 if (!ops)
1393 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001394
Alex Elderaded07e2012-07-03 16:01:18 -05001395 ops[0].cls.class_name = class_name;
1396 ops[0].cls.class_len = (__u8) class_name_len;
1397 ops[0].cls.method_name = method_name;
1398 ops[0].cls.method_len = (__u8) method_name_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001399 ops[0].cls.argc = 0;
1400 ops[0].cls.indata = data;
1401 ops[0].cls.indata_len = len;
1402
Alex Elder0ce1a792012-07-03 16:01:18 -05001403 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001404 CEPH_NOSNAP,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001405 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1406 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001407 object_name, 0, 0, NULL, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001408
1409 rbd_destroy_ops(ops);
1410
1411 dout("cls_exec returned %d\n", ret);
1412 return ret;
1413}
1414
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001415static struct rbd_req_coll *rbd_alloc_coll(int num_reqs)
1416{
1417 struct rbd_req_coll *coll =
1418 kzalloc(sizeof(struct rbd_req_coll) +
1419 sizeof(struct rbd_req_status) * num_reqs,
1420 GFP_ATOMIC);
1421
1422 if (!coll)
1423 return NULL;
1424 coll->total = num_reqs;
1425 kref_init(&coll->kref);
1426 return coll;
1427}
1428
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001429/*
1430 * block device queue callback
1431 */
1432static void rbd_rq_fn(struct request_queue *q)
1433{
1434 struct rbd_device *rbd_dev = q->queuedata;
1435 struct request *rq;
1436 struct bio_pair *bp = NULL;
1437
Alex Elder00f1f362012-02-07 12:03:36 -06001438 while ((rq = blk_fetch_request(q))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001439 struct bio *bio;
1440 struct bio *rq_bio, *next_bio = NULL;
1441 bool do_write;
Alex Elderbd919d42012-07-13 20:35:11 -05001442 unsigned int size;
1443 u64 op_size = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001444 u64 ofs;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001445 int num_segs, cur_seg = 0;
1446 struct rbd_req_coll *coll;
Josh Durgind1d25642011-12-05 14:03:05 -08001447 struct ceph_snap_context *snapc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001448
1449 /* peek at request from block layer */
1450 if (!rq)
1451 break;
1452
1453 dout("fetched request\n");
1454
1455 /* filter out block requests we don't understand */
1456 if ((rq->cmd_type != REQ_TYPE_FS)) {
1457 __blk_end_request_all(rq, 0);
Alex Elder00f1f362012-02-07 12:03:36 -06001458 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001459 }
1460
1461 /* deduce our operation (read, write) */
1462 do_write = (rq_data_dir(rq) == WRITE);
1463
1464 size = blk_rq_bytes(rq);
Alex Elder593a9e72012-02-07 12:03:37 -06001465 ofs = blk_rq_pos(rq) * SECTOR_SIZE;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001466 rq_bio = rq->bio;
1467 if (do_write && rbd_dev->read_only) {
1468 __blk_end_request_all(rq, -EROFS);
Alex Elder00f1f362012-02-07 12:03:36 -06001469 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001470 }
1471
1472 spin_unlock_irq(q->queue_lock);
1473
Josh Durgind1d25642011-12-05 14:03:05 -08001474 down_read(&rbd_dev->header_rwsem);
Josh Durgine88a36e2011-11-21 18:14:25 -08001475
Josh Durgind1d25642011-12-05 14:03:05 -08001476 if (rbd_dev->snap_id != CEPH_NOSNAP && !rbd_dev->snap_exists) {
Josh Durgine88a36e2011-11-21 18:14:25 -08001477 up_read(&rbd_dev->header_rwsem);
Josh Durgind1d25642011-12-05 14:03:05 -08001478 dout("request for non-existent snapshot");
1479 spin_lock_irq(q->queue_lock);
1480 __blk_end_request_all(rq, -ENXIO);
1481 continue;
Josh Durgine88a36e2011-11-21 18:14:25 -08001482 }
1483
Josh Durgind1d25642011-12-05 14:03:05 -08001484 snapc = ceph_get_snap_context(rbd_dev->header.snapc);
1485
1486 up_read(&rbd_dev->header_rwsem);
1487
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001488 dout("%s 0x%x bytes at 0x%llx\n",
1489 do_write ? "write" : "read",
Alex Elderbd919d42012-07-13 20:35:11 -05001490 size, (unsigned long long) blk_rq_pos(rq) * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001491
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001492 num_segs = rbd_get_num_segments(&rbd_dev->header, ofs, size);
1493 coll = rbd_alloc_coll(num_segs);
1494 if (!coll) {
1495 spin_lock_irq(q->queue_lock);
1496 __blk_end_request_all(rq, -ENOMEM);
Josh Durgind1d25642011-12-05 14:03:05 -08001497 ceph_put_snap_context(snapc);
Alex Elder00f1f362012-02-07 12:03:36 -06001498 continue;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001499 }
1500
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001501 do {
1502 /* a bio clone to be passed down to OSD req */
Alex Elderbd919d42012-07-13 20:35:11 -05001503 dout("rq->bio->bi_vcnt=%hu\n", rq->bio->bi_vcnt);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001504 op_size = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001505 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001506 ofs, size,
1507 NULL, NULL);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001508 kref_get(&coll->kref);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001509 bio = bio_chain_clone(&rq_bio, &next_bio, &bp,
1510 op_size, GFP_ATOMIC);
1511 if (!bio) {
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001512 rbd_coll_end_req_index(rq, coll, cur_seg,
1513 -ENOMEM, op_size);
1514 goto next_seg;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001515 }
1516
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001517
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001518 /* init OSD command: write or read */
1519 if (do_write)
1520 rbd_req_write(rq, rbd_dev,
Josh Durgind1d25642011-12-05 14:03:05 -08001521 snapc,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001522 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001523 op_size, bio,
1524 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001525 else
1526 rbd_req_read(rq, rbd_dev,
Josh Durgin77dfe992011-11-21 13:04:42 -08001527 rbd_dev->snap_id,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001528 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001529 op_size, bio,
1530 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001531
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001532next_seg:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001533 size -= op_size;
1534 ofs += op_size;
1535
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001536 cur_seg++;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001537 rq_bio = next_bio;
1538 } while (size > 0);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001539 kref_put(&coll->kref, rbd_coll_release);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001540
1541 if (bp)
1542 bio_pair_release(bp);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001543 spin_lock_irq(q->queue_lock);
Josh Durgind1d25642011-12-05 14:03:05 -08001544
1545 ceph_put_snap_context(snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001546 }
1547}
1548
1549/*
1550 * a queue callback. Makes sure that we don't create a bio that spans across
1551 * multiple osd objects. One exception would be with a single page bios,
1552 * which we handle later at bio_chain_clone
1553 */
1554static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
1555 struct bio_vec *bvec)
1556{
1557 struct rbd_device *rbd_dev = q->queuedata;
Alex Elder593a9e72012-02-07 12:03:37 -06001558 unsigned int chunk_sectors;
1559 sector_t sector;
1560 unsigned int bio_sectors;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001561 int max;
1562
Alex Elder593a9e72012-02-07 12:03:37 -06001563 chunk_sectors = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
1564 sector = bmd->bi_sector + get_start_sect(bmd->bi_bdev);
1565 bio_sectors = bmd->bi_size >> SECTOR_SHIFT;
1566
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001567 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
Alex Elder593a9e72012-02-07 12:03:37 -06001568 + bio_sectors)) << SECTOR_SHIFT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001569 if (max < 0)
1570 max = 0; /* bio_add cannot handle a negative return */
1571 if (max <= bvec->bv_len && bio_sectors == 0)
1572 return bvec->bv_len;
1573 return max;
1574}
1575
1576static void rbd_free_disk(struct rbd_device *rbd_dev)
1577{
1578 struct gendisk *disk = rbd_dev->disk;
1579
1580 if (!disk)
1581 return;
1582
1583 rbd_header_free(&rbd_dev->header);
1584
1585 if (disk->flags & GENHD_FL_UP)
1586 del_gendisk(disk);
1587 if (disk->queue)
1588 blk_cleanup_queue(disk->queue);
1589 put_disk(disk);
1590}
1591
1592/*
1593 * reload the ondisk the header
1594 */
1595static int rbd_read_header(struct rbd_device *rbd_dev,
1596 struct rbd_image_header *header)
1597{
1598 ssize_t rc;
1599 struct rbd_image_header_ondisk *dh;
Xi Wang50f7c4c2012-04-20 15:49:44 -05001600 u32 snap_count = 0;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001601 u64 ver;
Alex Elder00f1f362012-02-07 12:03:36 -06001602 size_t len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001603
Alex Elder00f1f362012-02-07 12:03:36 -06001604 /*
1605 * First reads the fixed-size header to determine the number
1606 * of snapshots, then re-reads it, along with all snapshot
1607 * records as well as their stored names.
1608 */
1609 len = sizeof (*dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001610 while (1) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001611 dh = kmalloc(len, GFP_KERNEL);
1612 if (!dh)
1613 return -ENOMEM;
1614
1615 rc = rbd_req_sync_read(rbd_dev,
Alex Elder9a5d6902012-07-19 09:09:27 -05001616 CEPH_NOSNAP,
Alex Elder0bed54d2012-07-03 16:01:18 -05001617 rbd_dev->header_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001618 0, len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001619 (char *)dh, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001620 if (rc < 0)
1621 goto out_dh;
1622
Alex Eldered63f4f2012-07-19 09:09:27 -05001623 rc = rbd_header_from_disk(header, dh, snap_count);
Josh Durgin81e759f2011-11-15 14:49:53 -08001624 if (rc < 0) {
Alex Elder00f1f362012-02-07 12:03:36 -06001625 if (rc == -ENXIO)
Josh Durgin81e759f2011-11-15 14:49:53 -08001626 pr_warning("unrecognized header format"
Alex Elder0bed54d2012-07-03 16:01:18 -05001627 " for image %s\n",
1628 rbd_dev->image_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001629 goto out_dh;
Josh Durgin81e759f2011-11-15 14:49:53 -08001630 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001631
Alex Elder00f1f362012-02-07 12:03:36 -06001632 if (snap_count == header->total_snaps)
1633 break;
1634
1635 snap_count = header->total_snaps;
1636 len = sizeof (*dh) +
1637 snap_count * sizeof(struct rbd_image_snap_ondisk) +
1638 header->snap_names_len;
1639
1640 rbd_header_free(header);
1641 kfree(dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001642 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001643 header->obj_version = ver;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001644
1645out_dh:
1646 kfree(dh);
1647 return rc;
1648}
1649
1650/*
1651 * create a snapshot
1652 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001653static int rbd_header_add_snap(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001654 const char *snap_name,
1655 gfp_t gfp_flags)
1656{
1657 int name_len = strlen(snap_name);
1658 u64 new_snapid;
1659 int ret;
Sage Weil916d4d62011-05-12 16:10:50 -07001660 void *data, *p, *e;
Alex Elder1dbb4392012-01-24 10:08:37 -06001661 struct ceph_mon_client *monc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001662
1663 /* we should create a snapshot only if we're pointing at the head */
Alex Elder0ce1a792012-07-03 16:01:18 -05001664 if (rbd_dev->snap_id != CEPH_NOSNAP)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001665 return -EINVAL;
1666
Alex Elder0ce1a792012-07-03 16:01:18 -05001667 monc = &rbd_dev->rbd_client->client->monc;
1668 ret = ceph_monc_create_snapid(monc, rbd_dev->pool_id, &new_snapid);
Alex Elderbd919d42012-07-13 20:35:11 -05001669 dout("created snapid=%llu\n", (unsigned long long) new_snapid);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001670 if (ret < 0)
1671 return ret;
1672
1673 data = kmalloc(name_len + 16, gfp_flags);
1674 if (!data)
1675 return -ENOMEM;
1676
Sage Weil916d4d62011-05-12 16:10:50 -07001677 p = data;
1678 e = data + name_len + 16;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001679
Sage Weil916d4d62011-05-12 16:10:50 -07001680 ceph_encode_string_safe(&p, e, snap_name, name_len, bad);
1681 ceph_encode_64_safe(&p, e, new_snapid, bad);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001682
Alex Elder0bed54d2012-07-03 16:01:18 -05001683 ret = rbd_req_sync_exec(rbd_dev, rbd_dev->header_name,
Alex Elder0ce1a792012-07-03 16:01:18 -05001684 "rbd", "snap_add",
Alex Elderd67d4be2012-07-13 20:35:11 -05001685 data, p - data, NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001686
Sage Weil916d4d62011-05-12 16:10:50 -07001687 kfree(data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001688
Alex Elder505cbb92012-07-19 08:49:18 -05001689 return ret < 0 ? ret : 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001690bad:
1691 return -ERANGE;
1692}
1693
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001694static void __rbd_remove_all_snaps(struct rbd_device *rbd_dev)
1695{
1696 struct rbd_snap *snap;
Alex Eldera0593292012-07-19 09:09:27 -05001697 struct rbd_snap *next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001698
Alex Eldera0593292012-07-19 09:09:27 -05001699 list_for_each_entry_safe(snap, next, &rbd_dev->snaps, node)
Alex Elder14e70852012-07-19 09:09:27 -05001700 __rbd_remove_snap_dev(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001701}
1702
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001703/*
1704 * only read the first part of the ondisk header, without the snaps info
1705 */
Alex Elderb8136232012-07-25 09:32:41 -05001706static int __rbd_refresh_header(struct rbd_device *rbd_dev, u64 *hver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001707{
1708 int ret;
1709 struct rbd_image_header h;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001710
1711 ret = rbd_read_header(rbd_dev, &h);
1712 if (ret < 0)
1713 return ret;
1714
Josh Durgina51aa0c2011-12-05 10:35:04 -08001715 down_write(&rbd_dev->header_rwsem);
1716
Sage Weil9db4b3e2011-04-19 22:49:06 -07001717 /* resized? */
Josh Durgin474ef7c2011-11-21 17:13:54 -08001718 if (rbd_dev->snap_id == CEPH_NOSNAP) {
1719 sector_t size = (sector_t) h.image_size / SECTOR_SIZE;
1720
1721 dout("setting size to %llu sectors", (unsigned long long) size);
1722 set_capacity(rbd_dev->disk, size);
1723 }
Sage Weil9db4b3e2011-04-19 22:49:06 -07001724
Alex Elder849b4262012-07-09 21:04:24 -05001725 /* rbd_dev->header.object_prefix shouldn't change */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001726 kfree(rbd_dev->header.snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -05001727 kfree(rbd_dev->header.snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -08001728 /* osd requests may still refer to snapc */
1729 ceph_put_snap_context(rbd_dev->header.snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001730
Alex Elderb8136232012-07-25 09:32:41 -05001731 if (hver)
1732 *hver = h.obj_version;
Josh Durgina71b8912011-12-05 18:10:44 -08001733 rbd_dev->header.obj_version = h.obj_version;
Josh Durgin93a24e02011-12-05 10:41:28 -08001734 rbd_dev->header.image_size = h.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001735 rbd_dev->header.total_snaps = h.total_snaps;
1736 rbd_dev->header.snapc = h.snapc;
1737 rbd_dev->header.snap_names = h.snap_names;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001738 rbd_dev->header.snap_names_len = h.snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001739 rbd_dev->header.snap_sizes = h.snap_sizes;
Alex Elder849b4262012-07-09 21:04:24 -05001740 /* Free the extra copy of the object prefix */
1741 WARN_ON(strcmp(rbd_dev->header.object_prefix, h.object_prefix));
1742 kfree(h.object_prefix);
1743
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001744 ret = __rbd_init_snaps_header(rbd_dev);
1745
Josh Durginc6666012011-11-21 17:11:12 -08001746 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001747
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001748 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001749}
1750
Alex Elder1fe5e992012-07-25 09:32:41 -05001751static int rbd_refresh_header(struct rbd_device *rbd_dev, u64 *hver)
1752{
1753 int ret;
1754
1755 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
1756 ret = __rbd_refresh_header(rbd_dev, hver);
1757 mutex_unlock(&ctl_mutex);
1758
1759 return ret;
1760}
1761
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001762static int rbd_init_disk(struct rbd_device *rbd_dev)
1763{
1764 struct gendisk *disk;
1765 struct request_queue *q;
1766 int rc;
Alex Elder593a9e72012-02-07 12:03:37 -06001767 u64 segment_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001768 u64 total_size = 0;
1769
1770 /* contact OSD, request size info about the object being mapped */
1771 rc = rbd_read_header(rbd_dev, &rbd_dev->header);
1772 if (rc)
1773 return rc;
1774
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001775 /* no need to lock here, as rbd_dev is not registered yet */
1776 rc = __rbd_init_snaps_header(rbd_dev);
1777 if (rc)
1778 return rc;
1779
Josh Durgincc9d7342011-11-21 18:19:13 -08001780 rc = rbd_header_set_snap(rbd_dev, &total_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001781 if (rc)
1782 return rc;
1783
1784 /* create gendisk info */
1785 rc = -ENOMEM;
1786 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
1787 if (!disk)
1788 goto out;
1789
Alex Elderf0f8cef2012-01-29 13:57:44 -06001790 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
Alex Elderde71a292012-07-03 16:01:19 -05001791 rbd_dev->dev_id);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001792 disk->major = rbd_dev->major;
1793 disk->first_minor = 0;
1794 disk->fops = &rbd_bd_ops;
1795 disk->private_data = rbd_dev;
1796
1797 /* init rq */
1798 rc = -ENOMEM;
1799 q = blk_init_queue(rbd_rq_fn, &rbd_dev->lock);
1800 if (!q)
1801 goto out_disk;
Josh Durgin029bcbd2011-07-22 11:35:23 -07001802
Alex Elder593a9e72012-02-07 12:03:37 -06001803 /* We use the default size, but let's be explicit about it. */
1804 blk_queue_physical_block_size(q, SECTOR_SIZE);
1805
Josh Durgin029bcbd2011-07-22 11:35:23 -07001806 /* set io sizes to object size */
Alex Elder593a9e72012-02-07 12:03:37 -06001807 segment_size = rbd_obj_bytes(&rbd_dev->header);
1808 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
1809 blk_queue_max_segment_size(q, segment_size);
1810 blk_queue_io_min(q, segment_size);
1811 blk_queue_io_opt(q, segment_size);
Josh Durgin029bcbd2011-07-22 11:35:23 -07001812
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001813 blk_queue_merge_bvec(q, rbd_merge_bvec);
1814 disk->queue = q;
1815
1816 q->queuedata = rbd_dev;
1817
1818 rbd_dev->disk = disk;
1819 rbd_dev->q = q;
1820
1821 /* finally, announce the disk to the world */
Alex Elder593a9e72012-02-07 12:03:37 -06001822 set_capacity(disk, total_size / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001823 add_disk(disk);
1824
1825 pr_info("%s: added with size 0x%llx\n",
1826 disk->disk_name, (unsigned long long)total_size);
1827 return 0;
1828
1829out_disk:
1830 put_disk(disk);
1831out:
1832 return rc;
1833}
1834
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001835/*
1836 sysfs
1837*/
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001838
Alex Elder593a9e72012-02-07 12:03:37 -06001839static struct rbd_device *dev_to_rbd_dev(struct device *dev)
1840{
1841 return container_of(dev, struct rbd_device, dev);
1842}
1843
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001844static ssize_t rbd_size_show(struct device *dev,
1845 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001846{
Alex Elder593a9e72012-02-07 12:03:37 -06001847 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Josh Durgina51aa0c2011-12-05 10:35:04 -08001848 sector_t size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001849
Josh Durgina51aa0c2011-12-05 10:35:04 -08001850 down_read(&rbd_dev->header_rwsem);
1851 size = get_capacity(rbd_dev->disk);
1852 up_read(&rbd_dev->header_rwsem);
1853
1854 return sprintf(buf, "%llu\n", (unsigned long long) size * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001855}
1856
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001857static ssize_t rbd_major_show(struct device *dev,
1858 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001859{
Alex Elder593a9e72012-02-07 12:03:37 -06001860 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001861
1862 return sprintf(buf, "%d\n", rbd_dev->major);
1863}
1864
1865static ssize_t rbd_client_id_show(struct device *dev,
1866 struct device_attribute *attr, char *buf)
1867{
Alex Elder593a9e72012-02-07 12:03:37 -06001868 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001869
Alex Elder1dbb4392012-01-24 10:08:37 -06001870 return sprintf(buf, "client%lld\n",
1871 ceph_client_id(rbd_dev->rbd_client->client));
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001872}
1873
1874static ssize_t rbd_pool_show(struct device *dev,
1875 struct device_attribute *attr, char *buf)
1876{
Alex Elder593a9e72012-02-07 12:03:37 -06001877 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001878
1879 return sprintf(buf, "%s\n", rbd_dev->pool_name);
1880}
1881
Alex Elder9bb2f332012-07-12 10:46:35 -05001882static ssize_t rbd_pool_id_show(struct device *dev,
1883 struct device_attribute *attr, char *buf)
1884{
1885 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
1886
1887 return sprintf(buf, "%d\n", rbd_dev->pool_id);
1888}
1889
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001890static ssize_t rbd_name_show(struct device *dev,
1891 struct device_attribute *attr, char *buf)
1892{
Alex Elder593a9e72012-02-07 12:03:37 -06001893 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001894
Alex Elder0bed54d2012-07-03 16:01:18 -05001895 return sprintf(buf, "%s\n", rbd_dev->image_name);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001896}
1897
1898static ssize_t rbd_snap_show(struct device *dev,
1899 struct device_attribute *attr,
1900 char *buf)
1901{
Alex Elder593a9e72012-02-07 12:03:37 -06001902 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001903
1904 return sprintf(buf, "%s\n", rbd_dev->snap_name);
1905}
1906
1907static ssize_t rbd_image_refresh(struct device *dev,
1908 struct device_attribute *attr,
1909 const char *buf,
1910 size_t size)
1911{
Alex Elder593a9e72012-02-07 12:03:37 -06001912 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Alex Elderb8136232012-07-25 09:32:41 -05001913 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001914
Alex Elder1fe5e992012-07-25 09:32:41 -05001915 ret = rbd_refresh_header(rbd_dev, NULL);
Alex Elderb8136232012-07-25 09:32:41 -05001916
1917 return ret < 0 ? ret : size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001918}
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001919
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001920static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
1921static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
1922static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
1923static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
Alex Elder9bb2f332012-07-12 10:46:35 -05001924static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001925static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
1926static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
1927static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
1928static DEVICE_ATTR(create_snap, S_IWUSR, NULL, rbd_snap_add);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001929
1930static struct attribute *rbd_attrs[] = {
1931 &dev_attr_size.attr,
1932 &dev_attr_major.attr,
1933 &dev_attr_client_id.attr,
1934 &dev_attr_pool.attr,
Alex Elder9bb2f332012-07-12 10:46:35 -05001935 &dev_attr_pool_id.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001936 &dev_attr_name.attr,
1937 &dev_attr_current_snap.attr,
1938 &dev_attr_refresh.attr,
1939 &dev_attr_create_snap.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001940 NULL
1941};
1942
1943static struct attribute_group rbd_attr_group = {
1944 .attrs = rbd_attrs,
1945};
1946
1947static const struct attribute_group *rbd_attr_groups[] = {
1948 &rbd_attr_group,
1949 NULL
1950};
1951
1952static void rbd_sysfs_dev_release(struct device *dev)
1953{
1954}
1955
1956static struct device_type rbd_device_type = {
1957 .name = "rbd",
1958 .groups = rbd_attr_groups,
1959 .release = rbd_sysfs_dev_release,
1960};
1961
1962
1963/*
1964 sysfs - snapshots
1965*/
1966
1967static ssize_t rbd_snap_size_show(struct device *dev,
1968 struct device_attribute *attr,
1969 char *buf)
1970{
1971 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1972
Josh Durgin35915382011-12-05 18:25:13 -08001973 return sprintf(buf, "%llu\n", (unsigned long long)snap->size);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001974}
1975
1976static ssize_t rbd_snap_id_show(struct device *dev,
1977 struct device_attribute *attr,
1978 char *buf)
1979{
1980 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1981
Josh Durgin35915382011-12-05 18:25:13 -08001982 return sprintf(buf, "%llu\n", (unsigned long long)snap->id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001983}
1984
1985static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
1986static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
1987
1988static struct attribute *rbd_snap_attrs[] = {
1989 &dev_attr_snap_size.attr,
1990 &dev_attr_snap_id.attr,
1991 NULL,
1992};
1993
1994static struct attribute_group rbd_snap_attr_group = {
1995 .attrs = rbd_snap_attrs,
1996};
1997
1998static void rbd_snap_dev_release(struct device *dev)
1999{
2000 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2001 kfree(snap->name);
2002 kfree(snap);
2003}
2004
2005static const struct attribute_group *rbd_snap_attr_groups[] = {
2006 &rbd_snap_attr_group,
2007 NULL
2008};
2009
2010static struct device_type rbd_snap_device_type = {
2011 .groups = rbd_snap_attr_groups,
2012 .release = rbd_snap_dev_release,
2013};
2014
Alex Elder14e70852012-07-19 09:09:27 -05002015static void __rbd_remove_snap_dev(struct rbd_snap *snap)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002016{
2017 list_del(&snap->node);
2018 device_unregister(&snap->dev);
2019}
2020
Alex Elder14e70852012-07-19 09:09:27 -05002021static int rbd_register_snap_dev(struct rbd_snap *snap,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002022 struct device *parent)
2023{
2024 struct device *dev = &snap->dev;
2025 int ret;
2026
2027 dev->type = &rbd_snap_device_type;
2028 dev->parent = parent;
2029 dev->release = rbd_snap_dev_release;
2030 dev_set_name(dev, "snap_%s", snap->name);
2031 ret = device_register(dev);
2032
2033 return ret;
2034}
2035
Alex Elder4e891e02012-07-10 20:30:10 -05002036static struct rbd_snap *__rbd_add_snap_dev(struct rbd_device *rbd_dev,
2037 int i, const char *name)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002038{
Alex Elder4e891e02012-07-10 20:30:10 -05002039 struct rbd_snap *snap;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002040 int ret;
Alex Elder4e891e02012-07-10 20:30:10 -05002041
2042 snap = kzalloc(sizeof (*snap), GFP_KERNEL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002043 if (!snap)
Alex Elder4e891e02012-07-10 20:30:10 -05002044 return ERR_PTR(-ENOMEM);
2045
2046 ret = -ENOMEM;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002047 snap->name = kstrdup(name, GFP_KERNEL);
Alex Elder4e891e02012-07-10 20:30:10 -05002048 if (!snap->name)
2049 goto err;
2050
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002051 snap->size = rbd_dev->header.snap_sizes[i];
2052 snap->id = rbd_dev->header.snapc->snaps[i];
2053 if (device_is_registered(&rbd_dev->dev)) {
Alex Elder14e70852012-07-19 09:09:27 -05002054 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002055 if (ret < 0)
2056 goto err;
2057 }
Alex Elder4e891e02012-07-10 20:30:10 -05002058
2059 return snap;
2060
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002061err:
2062 kfree(snap->name);
2063 kfree(snap);
Alex Elder4e891e02012-07-10 20:30:10 -05002064
2065 return ERR_PTR(ret);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002066}
2067
2068/*
Alex Elder35938152012-08-02 11:29:46 -05002069 * Scan the rbd device's current snapshot list and compare it to the
2070 * newly-received snapshot context. Remove any existing snapshots
2071 * not present in the new snapshot context. Add a new snapshot for
2072 * any snaphots in the snapshot context not in the current list.
2073 * And verify there are no changes to snapshots we already know
2074 * about.
2075 *
2076 * Assumes the snapshots in the snapshot context are sorted by
2077 * snapshot id, highest id first. (Snapshots in the rbd_dev's list
2078 * are also maintained in that order.)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002079 */
2080static int __rbd_init_snaps_header(struct rbd_device *rbd_dev)
2081{
Alex Elder35938152012-08-02 11:29:46 -05002082 struct ceph_snap_context *snapc = rbd_dev->header.snapc;
2083 const u32 snap_count = snapc->num_snaps;
2084 char *snap_name = rbd_dev->header.snap_names;
2085 struct list_head *head = &rbd_dev->snaps;
2086 struct list_head *links = head->next;
2087 u32 index = 0;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002088
Alex Elder35938152012-08-02 11:29:46 -05002089 while (index < snap_count || links != head) {
2090 u64 snap_id;
2091 struct rbd_snap *snap;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002092
Alex Elder35938152012-08-02 11:29:46 -05002093 snap_id = index < snap_count ? snapc->snaps[index]
2094 : CEPH_NOSNAP;
2095 snap = links != head ? list_entry(links, struct rbd_snap, node)
2096 : NULL;
2097 BUG_ON(snap && snap->id == CEPH_NOSNAP);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002098
Alex Elder35938152012-08-02 11:29:46 -05002099 if (snap_id == CEPH_NOSNAP || (snap && snap->id > snap_id)) {
2100 struct list_head *next = links->next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002101
Alex Elder35938152012-08-02 11:29:46 -05002102 /* Existing snapshot not in the new snap context */
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002103
Alex Elder35938152012-08-02 11:29:46 -05002104 if (rbd_dev->snap_id == snap->id)
Josh Durgine88a36e2011-11-21 18:14:25 -08002105 rbd_dev->snap_exists = false;
Alex Elder35938152012-08-02 11:29:46 -05002106 __rbd_remove_snap_dev(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002107
Alex Elder35938152012-08-02 11:29:46 -05002108 /* Done with this list entry; advance */
2109
2110 links = next;
2111 continue;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002112 }
Alex Elder35938152012-08-02 11:29:46 -05002113
2114 if (!snap || (snap_id != CEPH_NOSNAP && snap->id < snap_id)) {
2115 struct rbd_snap *new_snap;
2116
2117 /* We haven't seen this snapshot before */
2118
2119 new_snap = __rbd_add_snap_dev(rbd_dev, index,
2120 snap_name);
2121 if (IS_ERR(new_snap))
2122 return PTR_ERR(new_snap);
2123
2124 /* New goes before existing, or at end of list */
2125
2126 if (snap)
2127 list_add_tail(&new_snap->node, &snap->node);
2128 else
2129 list_add(&new_snap->node, head);
2130 } else {
2131 /* Already have this one */
2132
2133 BUG_ON(snap->size != rbd_dev->header.snap_sizes[index]);
2134 BUG_ON(strcmp(snap->name, snap_name));
2135
2136 /* Done with this list entry; advance */
2137
2138 links = links->next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002139 }
Alex Elder35938152012-08-02 11:29:46 -05002140
2141 /* Advance to the next entry in the snapshot context */
2142
2143 index++;
2144 snap_name += strlen(snap_name) + 1;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002145 }
2146
2147 return 0;
2148}
2149
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002150static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
2151{
Alex Elderf0f8cef2012-01-29 13:57:44 -06002152 int ret;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002153 struct device *dev;
2154 struct rbd_snap *snap;
2155
2156 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2157 dev = &rbd_dev->dev;
2158
2159 dev->bus = &rbd_bus_type;
2160 dev->type = &rbd_device_type;
2161 dev->parent = &rbd_root_dev;
2162 dev->release = rbd_dev_release;
Alex Elderde71a292012-07-03 16:01:19 -05002163 dev_set_name(dev, "%d", rbd_dev->dev_id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002164 ret = device_register(dev);
2165 if (ret < 0)
Alex Elderf0f8cef2012-01-29 13:57:44 -06002166 goto out;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002167
2168 list_for_each_entry(snap, &rbd_dev->snaps, node) {
Alex Elder14e70852012-07-19 09:09:27 -05002169 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002170 if (ret < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002171 break;
2172 }
Alex Elderf0f8cef2012-01-29 13:57:44 -06002173out:
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002174 mutex_unlock(&ctl_mutex);
2175 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002176}
2177
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002178static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
2179{
2180 device_unregister(&rbd_dev->dev);
2181}
2182
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002183static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
2184{
2185 int ret, rc;
2186
2187 do {
Alex Elder0e6f3222012-07-25 09:32:40 -05002188 ret = rbd_req_sync_watch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002189 if (ret == -ERANGE) {
Alex Elder1fe5e992012-07-25 09:32:41 -05002190 rc = rbd_refresh_header(rbd_dev, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002191 if (rc < 0)
2192 return rc;
2193 }
2194 } while (ret == -ERANGE);
2195
2196 return ret;
2197}
2198
Alex Elder1ddbe942012-01-29 13:57:44 -06002199static atomic64_t rbd_id_max = ATOMIC64_INIT(0);
2200
2201/*
Alex Elder499afd52012-02-02 08:13:29 -06002202 * Get a unique rbd identifier for the given new rbd_dev, and add
2203 * the rbd_dev to the global list. The minimum rbd id is 1.
Alex Elder1ddbe942012-01-29 13:57:44 -06002204 */
Alex Elder499afd52012-02-02 08:13:29 -06002205static void rbd_id_get(struct rbd_device *rbd_dev)
Alex Elderb7f23c32012-01-29 13:57:43 -06002206{
Alex Elderde71a292012-07-03 16:01:19 -05002207 rbd_dev->dev_id = atomic64_inc_return(&rbd_id_max);
Alex Elder499afd52012-02-02 08:13:29 -06002208
2209 spin_lock(&rbd_dev_list_lock);
2210 list_add_tail(&rbd_dev->node, &rbd_dev_list);
2211 spin_unlock(&rbd_dev_list_lock);
Alex Elder1ddbe942012-01-29 13:57:44 -06002212}
Alex Elderb7f23c32012-01-29 13:57:43 -06002213
Alex Elder1ddbe942012-01-29 13:57:44 -06002214/*
Alex Elder499afd52012-02-02 08:13:29 -06002215 * Remove an rbd_dev from the global list, and record that its
2216 * identifier is no longer in use.
Alex Elder1ddbe942012-01-29 13:57:44 -06002217 */
Alex Elder499afd52012-02-02 08:13:29 -06002218static void rbd_id_put(struct rbd_device *rbd_dev)
Alex Elder1ddbe942012-01-29 13:57:44 -06002219{
Alex Elderd184f6b2012-01-29 13:57:44 -06002220 struct list_head *tmp;
Alex Elderde71a292012-07-03 16:01:19 -05002221 int rbd_id = rbd_dev->dev_id;
Alex Elderd184f6b2012-01-29 13:57:44 -06002222 int max_id;
2223
2224 BUG_ON(rbd_id < 1);
Alex Elder499afd52012-02-02 08:13:29 -06002225
2226 spin_lock(&rbd_dev_list_lock);
2227 list_del_init(&rbd_dev->node);
Alex Elderd184f6b2012-01-29 13:57:44 -06002228
2229 /*
2230 * If the id being "put" is not the current maximum, there
2231 * is nothing special we need to do.
2232 */
2233 if (rbd_id != atomic64_read(&rbd_id_max)) {
2234 spin_unlock(&rbd_dev_list_lock);
2235 return;
2236 }
2237
2238 /*
2239 * We need to update the current maximum id. Search the
2240 * list to find out what it is. We're more likely to find
2241 * the maximum at the end, so search the list backward.
2242 */
2243 max_id = 0;
2244 list_for_each_prev(tmp, &rbd_dev_list) {
2245 struct rbd_device *rbd_dev;
2246
2247 rbd_dev = list_entry(tmp, struct rbd_device, node);
2248 if (rbd_id > max_id)
2249 max_id = rbd_id;
2250 }
Alex Elder499afd52012-02-02 08:13:29 -06002251 spin_unlock(&rbd_dev_list_lock);
Alex Elderb7f23c32012-01-29 13:57:43 -06002252
Alex Elder1ddbe942012-01-29 13:57:44 -06002253 /*
Alex Elderd184f6b2012-01-29 13:57:44 -06002254 * The max id could have been updated by rbd_id_get(), in
2255 * which case it now accurately reflects the new maximum.
2256 * Be careful not to overwrite the maximum value in that
2257 * case.
Alex Elder1ddbe942012-01-29 13:57:44 -06002258 */
Alex Elderd184f6b2012-01-29 13:57:44 -06002259 atomic64_cmpxchg(&rbd_id_max, rbd_id, max_id);
Alex Elderb7f23c32012-01-29 13:57:43 -06002260}
2261
Alex Eldera725f65e2012-02-02 08:13:30 -06002262/*
Alex Eldere28fff262012-02-02 08:13:30 -06002263 * Skips over white space at *buf, and updates *buf to point to the
2264 * first found non-space character (if any). Returns the length of
Alex Elder593a9e72012-02-07 12:03:37 -06002265 * the token (string of non-white space characters) found. Note
2266 * that *buf must be terminated with '\0'.
Alex Eldere28fff262012-02-02 08:13:30 -06002267 */
2268static inline size_t next_token(const char **buf)
2269{
2270 /*
2271 * These are the characters that produce nonzero for
2272 * isspace() in the "C" and "POSIX" locales.
2273 */
2274 const char *spaces = " \f\n\r\t\v";
2275
2276 *buf += strspn(*buf, spaces); /* Find start of token */
2277
2278 return strcspn(*buf, spaces); /* Return token length */
2279}
2280
2281/*
2282 * Finds the next token in *buf, and if the provided token buffer is
2283 * big enough, copies the found token into it. The result, if
Alex Elder593a9e72012-02-07 12:03:37 -06002284 * copied, is guaranteed to be terminated with '\0'. Note that *buf
2285 * must be terminated with '\0' on entry.
Alex Eldere28fff262012-02-02 08:13:30 -06002286 *
2287 * Returns the length of the token found (not including the '\0').
2288 * Return value will be 0 if no token is found, and it will be >=
2289 * token_size if the token would not fit.
2290 *
Alex Elder593a9e72012-02-07 12:03:37 -06002291 * The *buf pointer will be updated to point beyond the end of the
Alex Eldere28fff262012-02-02 08:13:30 -06002292 * found token. Note that this occurs even if the token buffer is
2293 * too small to hold it.
2294 */
2295static inline size_t copy_token(const char **buf,
2296 char *token,
2297 size_t token_size)
2298{
2299 size_t len;
2300
2301 len = next_token(buf);
2302 if (len < token_size) {
2303 memcpy(token, *buf, len);
2304 *(token + len) = '\0';
2305 }
2306 *buf += len;
2307
2308 return len;
2309}
2310
2311/*
Alex Elderea3352f2012-07-09 21:04:23 -05002312 * Finds the next token in *buf, dynamically allocates a buffer big
2313 * enough to hold a copy of it, and copies the token into the new
2314 * buffer. The copy is guaranteed to be terminated with '\0'. Note
2315 * that a duplicate buffer is created even for a zero-length token.
2316 *
2317 * Returns a pointer to the newly-allocated duplicate, or a null
2318 * pointer if memory for the duplicate was not available. If
2319 * the lenp argument is a non-null pointer, the length of the token
2320 * (not including the '\0') is returned in *lenp.
2321 *
2322 * If successful, the *buf pointer will be updated to point beyond
2323 * the end of the found token.
2324 *
2325 * Note: uses GFP_KERNEL for allocation.
2326 */
2327static inline char *dup_token(const char **buf, size_t *lenp)
2328{
2329 char *dup;
2330 size_t len;
2331
2332 len = next_token(buf);
2333 dup = kmalloc(len + 1, GFP_KERNEL);
2334 if (!dup)
2335 return NULL;
2336
2337 memcpy(dup, *buf, len);
2338 *(dup + len) = '\0';
2339 *buf += len;
2340
2341 if (lenp)
2342 *lenp = len;
2343
2344 return dup;
2345}
2346
2347/*
Alex Elder0bed54d2012-07-03 16:01:18 -05002348 * This fills in the pool_name, image_name, image_name_len, snap_name,
Alex Eldera725f65e2012-02-02 08:13:30 -06002349 * rbd_dev, rbd_md_name, and name fields of the given rbd_dev, based
2350 * on the list of monitor addresses and other options provided via
2351 * /sys/bus/rbd/add.
Alex Elderd22f76e2012-07-12 10:46:35 -05002352 *
2353 * Note: rbd_dev is assumed to have been initially zero-filled.
Alex Eldera725f65e2012-02-02 08:13:30 -06002354 */
2355static int rbd_add_parse_args(struct rbd_device *rbd_dev,
2356 const char *buf,
Alex Elder7ef32142012-02-02 08:13:30 -06002357 const char **mon_addrs,
Alex Elder5214ecc2012-02-02 08:13:30 -06002358 size_t *mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002359 char *options,
Alex Elder0bed54d2012-07-03 16:01:18 -05002360 size_t options_size)
Alex Eldera725f65e2012-02-02 08:13:30 -06002361{
Alex Elderd22f76e2012-07-12 10:46:35 -05002362 size_t len;
2363 int ret;
Alex Eldere28fff262012-02-02 08:13:30 -06002364
2365 /* The first four tokens are required */
2366
Alex Elder7ef32142012-02-02 08:13:30 -06002367 len = next_token(&buf);
2368 if (!len)
Alex Eldera725f65e2012-02-02 08:13:30 -06002369 return -EINVAL;
Alex Elder5214ecc2012-02-02 08:13:30 -06002370 *mon_addrs_size = len + 1;
Alex Elder7ef32142012-02-02 08:13:30 -06002371 *mon_addrs = buf;
2372
2373 buf += len;
Alex Eldera725f65e2012-02-02 08:13:30 -06002374
Alex Eldere28fff262012-02-02 08:13:30 -06002375 len = copy_token(&buf, options, options_size);
2376 if (!len || len >= options_size)
2377 return -EINVAL;
Alex Eldera725f65e2012-02-02 08:13:30 -06002378
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002379 ret = -ENOMEM;
Alex Elderd22f76e2012-07-12 10:46:35 -05002380 rbd_dev->pool_name = dup_token(&buf, NULL);
2381 if (!rbd_dev->pool_name)
Alex Elderd22f76e2012-07-12 10:46:35 -05002382 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002383
Alex Elder0bed54d2012-07-03 16:01:18 -05002384 rbd_dev->image_name = dup_token(&buf, &rbd_dev->image_name_len);
2385 if (!rbd_dev->image_name)
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002386 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002387
Alex Eldercb8627c2012-07-09 21:04:23 -05002388 /* Create the name of the header object */
2389
Alex Elder0bed54d2012-07-03 16:01:18 -05002390 rbd_dev->header_name = kmalloc(rbd_dev->image_name_len
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002391 + sizeof (RBD_SUFFIX),
2392 GFP_KERNEL);
Alex Elder0bed54d2012-07-03 16:01:18 -05002393 if (!rbd_dev->header_name)
Alex Eldercb8627c2012-07-09 21:04:23 -05002394 goto out_err;
Alex Elder0bed54d2012-07-03 16:01:18 -05002395 sprintf(rbd_dev->header_name, "%s%s", rbd_dev->image_name, RBD_SUFFIX);
Alex Eldera725f65e2012-02-02 08:13:30 -06002396
Alex Eldere28fff262012-02-02 08:13:30 -06002397 /*
Alex Elder820a5f32012-07-09 21:04:24 -05002398 * The snapshot name is optional. If none is is supplied,
2399 * we use the default value.
Alex Eldere28fff262012-02-02 08:13:30 -06002400 */
Alex Elder820a5f32012-07-09 21:04:24 -05002401 rbd_dev->snap_name = dup_token(&buf, &len);
2402 if (!rbd_dev->snap_name)
2403 goto out_err;
2404 if (!len) {
2405 /* Replace the empty name with the default */
2406 kfree(rbd_dev->snap_name);
2407 rbd_dev->snap_name
2408 = kmalloc(sizeof (RBD_SNAP_HEAD_NAME), GFP_KERNEL);
2409 if (!rbd_dev->snap_name)
2410 goto out_err;
2411
Alex Eldere28fff262012-02-02 08:13:30 -06002412 memcpy(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
2413 sizeof (RBD_SNAP_HEAD_NAME));
Alex Elder849b4262012-07-09 21:04:24 -05002414 }
Alex Eldere28fff262012-02-02 08:13:30 -06002415
Alex Eldera725f65e2012-02-02 08:13:30 -06002416 return 0;
Alex Elderd22f76e2012-07-12 10:46:35 -05002417
2418out_err:
Alex Elder0bed54d2012-07-03 16:01:18 -05002419 kfree(rbd_dev->header_name);
2420 kfree(rbd_dev->image_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002421 kfree(rbd_dev->pool_name);
2422 rbd_dev->pool_name = NULL;
2423
2424 return ret;
Alex Eldera725f65e2012-02-02 08:13:30 -06002425}
2426
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002427static ssize_t rbd_add(struct bus_type *bus,
2428 const char *buf,
2429 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002430{
Alex Eldercb8627c2012-07-09 21:04:23 -05002431 char *options;
2432 struct rbd_device *rbd_dev = NULL;
Alex Elder7ef32142012-02-02 08:13:30 -06002433 const char *mon_addrs = NULL;
2434 size_t mon_addrs_size = 0;
Alex Elder27cc2592012-02-02 08:13:30 -06002435 struct ceph_osd_client *osdc;
2436 int rc = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002437
2438 if (!try_module_get(THIS_MODULE))
2439 return -ENODEV;
2440
Alex Elder27cc2592012-02-02 08:13:30 -06002441 options = kmalloc(count, GFP_KERNEL);
2442 if (!options)
2443 goto err_nomem;
Alex Eldercb8627c2012-07-09 21:04:23 -05002444 rbd_dev = kzalloc(sizeof(*rbd_dev), GFP_KERNEL);
2445 if (!rbd_dev)
2446 goto err_nomem;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002447
2448 /* static rbd_device initialization */
2449 spin_lock_init(&rbd_dev->lock);
2450 INIT_LIST_HEAD(&rbd_dev->node);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002451 INIT_LIST_HEAD(&rbd_dev->snaps);
Josh Durginc6666012011-11-21 17:11:12 -08002452 init_rwsem(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002453
Alex Elderd184f6b2012-01-29 13:57:44 -06002454 /* generate unique id: find highest unique id, add one */
Alex Elder499afd52012-02-02 08:13:29 -06002455 rbd_id_get(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002456
Alex Eldera725f65e2012-02-02 08:13:30 -06002457 /* Fill in the device name, now that we have its id. */
Alex Elder81a89792012-02-02 08:13:30 -06002458 BUILD_BUG_ON(DEV_NAME_LEN
2459 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
Alex Elderde71a292012-07-03 16:01:19 -05002460 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
Alex Eldere124a822012-01-29 13:57:44 -06002461
Alex Eldera725f65e2012-02-02 08:13:30 -06002462 /* parse add command */
Alex Elder7ef32142012-02-02 08:13:30 -06002463 rc = rbd_add_parse_args(rbd_dev, buf, &mon_addrs, &mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002464 options, count);
Alex Eldera725f65e2012-02-02 08:13:30 -06002465 if (rc)
2466 goto err_put_id;
2467
Alex Elder5214ecc2012-02-02 08:13:30 -06002468 rbd_dev->rbd_client = rbd_get_client(mon_addrs, mon_addrs_size - 1,
2469 options);
Alex Elderd720bcb2012-02-02 08:13:30 -06002470 if (IS_ERR(rbd_dev->rbd_client)) {
2471 rc = PTR_ERR(rbd_dev->rbd_client);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002472 goto err_put_id;
Alex Elderd720bcb2012-02-02 08:13:30 -06002473 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002474
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002475 /* pick the pool */
Alex Elder1dbb4392012-01-24 10:08:37 -06002476 osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002477 rc = ceph_pg_poolid_by_name(osdc->osdmap, rbd_dev->pool_name);
2478 if (rc < 0)
2479 goto err_out_client;
Alex Elder9bb2f332012-07-12 10:46:35 -05002480 rbd_dev->pool_id = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002481
2482 /* register our block device */
Alex Elder27cc2592012-02-02 08:13:30 -06002483 rc = register_blkdev(0, rbd_dev->name);
2484 if (rc < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002485 goto err_out_client;
Alex Elder27cc2592012-02-02 08:13:30 -06002486 rbd_dev->major = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002487
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002488 rc = rbd_bus_add_dev(rbd_dev);
2489 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002490 goto err_out_blkdev;
2491
Alex Elder32eec682012-02-08 16:11:14 -06002492 /*
2493 * At this point cleanup in the event of an error is the job
2494 * of the sysfs code (initiated by rbd_bus_del_dev()).
2495 *
2496 * Set up and announce blkdev mapping.
2497 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002498 rc = rbd_init_disk(rbd_dev);
2499 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002500 goto err_out_bus;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002501
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002502 rc = rbd_init_watch_dev(rbd_dev);
2503 if (rc)
2504 goto err_out_bus;
2505
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002506 return count;
2507
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002508err_out_bus:
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002509 /* this will also clean up rest of rbd_dev stuff */
2510
2511 rbd_bus_del_dev(rbd_dev);
2512 kfree(options);
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002513 return rc;
2514
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002515err_out_blkdev:
2516 unregister_blkdev(rbd_dev->major, rbd_dev->name);
2517err_out_client:
2518 rbd_put_client(rbd_dev);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002519err_put_id:
Alex Eldercb8627c2012-07-09 21:04:23 -05002520 if (rbd_dev->pool_name) {
Alex Elder820a5f32012-07-09 21:04:24 -05002521 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002522 kfree(rbd_dev->header_name);
2523 kfree(rbd_dev->image_name);
Alex Eldercb8627c2012-07-09 21:04:23 -05002524 kfree(rbd_dev->pool_name);
2525 }
Alex Elder499afd52012-02-02 08:13:29 -06002526 rbd_id_put(rbd_dev);
Alex Elder27cc2592012-02-02 08:13:30 -06002527err_nomem:
Alex Elder27cc2592012-02-02 08:13:30 -06002528 kfree(rbd_dev);
Alex Eldercb8627c2012-07-09 21:04:23 -05002529 kfree(options);
Alex Elder27cc2592012-02-02 08:13:30 -06002530
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002531 dout("Error adding device %s\n", buf);
2532 module_put(THIS_MODULE);
Alex Elder27cc2592012-02-02 08:13:30 -06002533
2534 return (ssize_t) rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002535}
2536
Alex Elderde71a292012-07-03 16:01:19 -05002537static struct rbd_device *__rbd_get_dev(unsigned long dev_id)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002538{
2539 struct list_head *tmp;
2540 struct rbd_device *rbd_dev;
2541
Alex Eldere124a822012-01-29 13:57:44 -06002542 spin_lock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002543 list_for_each(tmp, &rbd_dev_list) {
2544 rbd_dev = list_entry(tmp, struct rbd_device, node);
Alex Elderde71a292012-07-03 16:01:19 -05002545 if (rbd_dev->dev_id == dev_id) {
Alex Eldere124a822012-01-29 13:57:44 -06002546 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002547 return rbd_dev;
Alex Eldere124a822012-01-29 13:57:44 -06002548 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002549 }
Alex Eldere124a822012-01-29 13:57:44 -06002550 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002551 return NULL;
2552}
2553
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002554static void rbd_dev_release(struct device *dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002555{
Alex Elder593a9e72012-02-07 12:03:37 -06002556 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002557
Alex Elder1dbb4392012-01-24 10:08:37 -06002558 if (rbd_dev->watch_request) {
2559 struct ceph_client *client = rbd_dev->rbd_client->client;
2560
2561 ceph_osdc_unregister_linger_request(&client->osdc,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002562 rbd_dev->watch_request);
Alex Elder1dbb4392012-01-24 10:08:37 -06002563 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002564 if (rbd_dev->watch_event)
Alex Elder070c6332012-07-25 09:32:41 -05002565 rbd_req_sync_unwatch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002566
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002567 rbd_put_client(rbd_dev);
2568
2569 /* clean up and free blkdev */
2570 rbd_free_disk(rbd_dev);
2571 unregister_blkdev(rbd_dev->major, rbd_dev->name);
Alex Elder32eec682012-02-08 16:11:14 -06002572
2573 /* done with the id, and with the rbd_dev */
Alex Elder820a5f32012-07-09 21:04:24 -05002574 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002575 kfree(rbd_dev->header_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002576 kfree(rbd_dev->pool_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002577 kfree(rbd_dev->image_name);
Alex Elder32eec682012-02-08 16:11:14 -06002578 rbd_id_put(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002579 kfree(rbd_dev);
2580
2581 /* release module ref */
2582 module_put(THIS_MODULE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002583}
2584
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002585static ssize_t rbd_remove(struct bus_type *bus,
2586 const char *buf,
2587 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002588{
2589 struct rbd_device *rbd_dev = NULL;
2590 int target_id, rc;
2591 unsigned long ul;
2592 int ret = count;
2593
2594 rc = strict_strtoul(buf, 10, &ul);
2595 if (rc)
2596 return rc;
2597
2598 /* convert to int; abort if we lost anything in the conversion */
2599 target_id = (int) ul;
2600 if (target_id != ul)
2601 return -EINVAL;
2602
2603 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2604
2605 rbd_dev = __rbd_get_dev(target_id);
2606 if (!rbd_dev) {
2607 ret = -ENOENT;
2608 goto done;
2609 }
2610
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002611 __rbd_remove_all_snaps(rbd_dev);
2612 rbd_bus_del_dev(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002613
2614done:
2615 mutex_unlock(&ctl_mutex);
2616 return ret;
2617}
2618
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002619static ssize_t rbd_snap_add(struct device *dev,
2620 struct device_attribute *attr,
2621 const char *buf,
2622 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002623{
Alex Elder593a9e72012-02-07 12:03:37 -06002624 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002625 int ret;
2626 char *name = kmalloc(count + 1, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002627 if (!name)
2628 return -ENOMEM;
2629
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002630 snprintf(name, count, "%s", buf);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002631
2632 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2633
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002634 ret = rbd_header_add_snap(rbd_dev,
2635 name, GFP_KERNEL);
2636 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002637 goto err_unlock;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002638
Alex Elderb8136232012-07-25 09:32:41 -05002639 ret = __rbd_refresh_header(rbd_dev, NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002640 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002641 goto err_unlock;
2642
2643 /* shouldn't hold ctl_mutex when notifying.. notify might
2644 trigger a watch callback that would need to get that mutex */
2645 mutex_unlock(&ctl_mutex);
2646
2647 /* make a best effort, don't error if failed */
Alex Elder4cb16252012-07-25 09:32:40 -05002648 rbd_req_sync_notify(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002649
2650 ret = count;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002651 kfree(name);
2652 return ret;
2653
2654err_unlock:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002655 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002656 kfree(name);
2657 return ret;
2658}
2659
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002660/*
2661 * create control files in sysfs
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002662 * /sys/bus/rbd/...
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002663 */
2664static int rbd_sysfs_init(void)
2665{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002666 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002667
Alex Elderfed4c142012-02-07 12:03:36 -06002668 ret = device_register(&rbd_root_dev);
Alex Elder21079782012-01-24 10:08:36 -06002669 if (ret < 0)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002670 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002671
Alex Elderfed4c142012-02-07 12:03:36 -06002672 ret = bus_register(&rbd_bus_type);
2673 if (ret < 0)
2674 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002675
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002676 return ret;
2677}
2678
2679static void rbd_sysfs_cleanup(void)
2680{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002681 bus_unregister(&rbd_bus_type);
Alex Elderfed4c142012-02-07 12:03:36 -06002682 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002683}
2684
2685int __init rbd_init(void)
2686{
2687 int rc;
2688
2689 rc = rbd_sysfs_init();
2690 if (rc)
2691 return rc;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002692 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002693 return 0;
2694}
2695
2696void __exit rbd_exit(void)
2697{
2698 rbd_sysfs_cleanup();
2699}
2700
2701module_init(rbd_init);
2702module_exit(rbd_exit);
2703
2704MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
2705MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
2706MODULE_DESCRIPTION("rados block device");
2707
2708/* following authorship retained from original osdblk.c */
2709MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
2710
2711MODULE_LICENSE("GPL");