blob: 2b40a4af4d177ad3f720d805230995c6488913a1 [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;
Alex Elder0f1d3f92012-08-02 11:29:44 -050084 u64 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{
Alex Elder103a1502012-08-02 11:29:45 -0500484 size_t size;
485 u32 snap_count;
486
487 /* The header has to start with the magic rbd header text */
488 if (memcmp(&ondisk->text, RBD_HEADER_TEXT, sizeof (RBD_HEADER_TEXT)))
489 return false;
490
491 /*
492 * The size of a snapshot header has to fit in a size_t, and
493 * that limits the number of snapshots.
494 */
495 snap_count = le32_to_cpu(ondisk->snap_count);
496 size = SIZE_MAX - sizeof (struct ceph_snap_context);
497 if (snap_count > size / sizeof (__le64))
498 return false;
499
500 /*
501 * Not only that, but the size of the entire the snapshot
502 * header must also be representable in a size_t.
503 */
504 size -= snap_count * sizeof (__le64);
505 if ((u64) size < le64_to_cpu(ondisk->snap_names_len))
506 return false;
507
508 return true;
Alex Elder8e94af82012-07-25 09:32:40 -0500509}
510
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700511/*
512 * Create a new header structure, translate header format from the on-disk
513 * header.
514 */
515static int rbd_header_from_disk(struct rbd_image_header *header,
Alex Elder4156d992012-08-02 11:29:46 -0500516 struct rbd_image_header_ondisk *ondisk)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700517{
Alex Elderccece232012-07-10 20:30:10 -0500518 u32 snap_count;
Alex Elderd2bb24e2012-07-26 23:37:14 -0500519 size_t size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700520
Alex Elder6a523252012-07-19 17:12:59 -0500521 memset(header, 0, sizeof (*header));
522
Alex Elder103a1502012-08-02 11:29:45 -0500523 snap_count = le32_to_cpu(ondisk->snap_count);
524
Alex Elder843a0d02012-08-31 17:29:51 -0500525 size = sizeof (ondisk->object_prefix) + 1;
Alex Elder6a523252012-07-19 17:12:59 -0500526 header->object_prefix = kmalloc(size, GFP_KERNEL);
527 if (!header->object_prefix)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700528 return -ENOMEM;
Alex Elder843a0d02012-08-31 17:29:51 -0500529 memcpy(header->object_prefix, ondisk->object_prefix, size - 1);
Alex Elder6a523252012-07-19 17:12:59 -0500530 header->object_prefix[size - 1] = '\0';
Alex Elder00f1f362012-02-07 12:03:36 -0600531
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700532 if (snap_count) {
Alex Elderccece232012-07-10 20:30:10 -0500533 header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
Alex Elder0f1d3f92012-08-02 11:29:44 -0500534 BUG_ON(header->snap_names_len > (u64) SIZE_MAX);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700535 header->snap_names = kmalloc(header->snap_names_len,
Alex Eldered63f4f2012-07-19 09:09:27 -0500536 GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700537 if (!header->snap_names)
Alex Elder6a523252012-07-19 17:12:59 -0500538 goto out_err;
539
Alex Elderd2bb24e2012-07-26 23:37:14 -0500540 size = snap_count * sizeof (*header->snap_sizes);
541 header->snap_sizes = kmalloc(size, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700542 if (!header->snap_sizes)
Alex Elder6a523252012-07-19 17:12:59 -0500543 goto out_err;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700544 } else {
Alex Elderccece232012-07-10 20:30:10 -0500545 WARN_ON(ondisk->snap_names_len);
546 header->snap_names_len = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700547 header->snap_names = NULL;
548 header->snap_sizes = NULL;
549 }
Alex Elder849b4262012-07-09 21:04:24 -0500550
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700551 header->image_size = le64_to_cpu(ondisk->image_size);
552 header->obj_order = ondisk->options.order;
553 header->crypt_type = ondisk->options.crypt_type;
554 header->comp_type = ondisk->options.comp_type;
Alex Elder6a523252012-07-19 17:12:59 -0500555 header->total_snaps = snap_count;
556
Alex Elder6a523252012-07-19 17:12:59 -0500557 size = sizeof (struct ceph_snap_context);
558 size += snap_count * sizeof (header->snapc->snaps[0]);
559 header->snapc = kzalloc(size, GFP_KERNEL);
560 if (!header->snapc)
561 goto out_err;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700562
563 atomic_set(&header->snapc->nref, 1);
Alex Elder505cbb92012-07-19 08:49:18 -0500564 header->snapc->seq = le64_to_cpu(ondisk->snap_seq);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700565 header->snapc->num_snaps = snap_count;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700566
Alex Elder28cb7752012-07-26 23:37:15 -0500567 /* Fill in the snapshot information */
568
569 if (snap_count) {
570 u32 i;
Alex Elderccece232012-07-10 20:30:10 -0500571
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700572 for (i = 0; i < snap_count; i++) {
573 header->snapc->snaps[i] =
574 le64_to_cpu(ondisk->snaps[i].id);
575 header->snap_sizes[i] =
576 le64_to_cpu(ondisk->snaps[i].image_size);
577 }
578
579 /* copy snapshot names */
Alex Elderccece232012-07-10 20:30:10 -0500580 memcpy(header->snap_names, &ondisk->snaps[snap_count],
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700581 header->snap_names_len);
582 }
583
584 return 0;
585
Alex Elder6a523252012-07-19 17:12:59 -0500586out_err:
Alex Elder849b4262012-07-09 21:04:24 -0500587 kfree(header->snap_sizes);
Alex Elderccece232012-07-10 20:30:10 -0500588 header->snap_sizes = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700589 kfree(header->snap_names);
Alex Elderccece232012-07-10 20:30:10 -0500590 header->snap_names = NULL;
Alex Elderd78fd7a2012-07-26 23:37:14 -0500591 header->snap_names_len = 0;
Alex Elder6a523252012-07-19 17:12:59 -0500592 kfree(header->object_prefix);
593 header->object_prefix = NULL;
Alex Elderccece232012-07-10 20:30:10 -0500594
Alex Elder00f1f362012-02-07 12:03:36 -0600595 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700596}
597
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700598static int snap_by_name(struct rbd_image_header *header, const char *snap_name,
599 u64 *seq, u64 *size)
600{
601 int i;
602 char *p = header->snap_names;
603
Alex Elder00f1f362012-02-07 12:03:36 -0600604 for (i = 0; i < header->total_snaps; i++) {
605 if (!strcmp(snap_name, p)) {
606
607 /* Found it. Pass back its id and/or size */
608
609 if (seq)
610 *seq = header->snapc->snaps[i];
611 if (size)
612 *size = header->snap_sizes[i];
613 return i;
614 }
615 p += strlen(p) + 1; /* Skip ahead to the next name */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700616 }
Alex Elder00f1f362012-02-07 12:03:36 -0600617 return -ENOENT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700618}
619
Alex Elder0ce1a792012-07-03 16:01:18 -0500620static int rbd_header_set_snap(struct rbd_device *rbd_dev, u64 *size)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700621{
Alex Elder78dc4472012-07-19 08:49:18 -0500622 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700623
Alex Elder0ce1a792012-07-03 16:01:18 -0500624 down_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700625
Alex Elder0ce1a792012-07-03 16:01:18 -0500626 if (!memcmp(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
Josh Durgincc9d7342011-11-21 18:19:13 -0800627 sizeof (RBD_SNAP_HEAD_NAME))) {
Alex Elder0ce1a792012-07-03 16:01:18 -0500628 rbd_dev->snap_id = CEPH_NOSNAP;
Josh Durgine88a36e2011-11-21 18:14:25 -0800629 rbd_dev->snap_exists = false;
Alex Elder0ce1a792012-07-03 16:01:18 -0500630 rbd_dev->read_only = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700631 if (size)
Alex Elder78dc4472012-07-19 08:49:18 -0500632 *size = rbd_dev->header.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700633 } else {
Alex Elder78dc4472012-07-19 08:49:18 -0500634 u64 snap_id = 0;
635
636 ret = snap_by_name(&rbd_dev->header, rbd_dev->snap_name,
637 &snap_id, size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700638 if (ret < 0)
639 goto done;
Alex Elder78dc4472012-07-19 08:49:18 -0500640 rbd_dev->snap_id = snap_id;
Josh Durgine88a36e2011-11-21 18:14:25 -0800641 rbd_dev->snap_exists = true;
Alex Elder0ce1a792012-07-03 16:01:18 -0500642 rbd_dev->read_only = 1;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700643 }
644
645 ret = 0;
646done:
Alex Elder0ce1a792012-07-03 16:01:18 -0500647 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700648 return ret;
649}
650
651static void rbd_header_free(struct rbd_image_header *header)
652{
Alex Elder849b4262012-07-09 21:04:24 -0500653 kfree(header->object_prefix);
Alex Elderd78fd7a2012-07-26 23:37:14 -0500654 header->object_prefix = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700655 kfree(header->snap_sizes);
Alex Elderd78fd7a2012-07-26 23:37:14 -0500656 header->snap_sizes = NULL;
Alex Elder849b4262012-07-09 21:04:24 -0500657 kfree(header->snap_names);
Alex Elderd78fd7a2012-07-26 23:37:14 -0500658 header->snap_names = NULL;
659 header->snap_names_len = 0;
Josh Durgind1d25642011-12-05 14:03:05 -0800660 ceph_put_snap_context(header->snapc);
Alex Elderd78fd7a2012-07-26 23:37:14 -0500661 header->snapc = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700662}
663
664/*
665 * get the actual striped segment name, offset and length
666 */
667static u64 rbd_get_segment(struct rbd_image_header *header,
Alex Elderca1e49a2012-07-10 20:30:09 -0500668 const char *object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700669 u64 ofs, u64 len,
670 char *seg_name, u64 *segofs)
671{
672 u64 seg = ofs >> header->obj_order;
673
674 if (seg_name)
675 snprintf(seg_name, RBD_MAX_SEG_NAME_LEN,
Alex Elderca1e49a2012-07-10 20:30:09 -0500676 "%s.%012llx", object_prefix, seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700677
678 ofs = ofs & ((1 << header->obj_order) - 1);
679 len = min_t(u64, len, (1 << header->obj_order) - ofs);
680
681 if (segofs)
682 *segofs = ofs;
683
684 return len;
685}
686
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700687static int rbd_get_num_segments(struct rbd_image_header *header,
688 u64 ofs, u64 len)
689{
690 u64 start_seg = ofs >> header->obj_order;
691 u64 end_seg = (ofs + len - 1) >> header->obj_order;
692 return end_seg - start_seg + 1;
693}
694
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700695/*
Josh Durgin029bcbd2011-07-22 11:35:23 -0700696 * returns the size of an object in the image
697 */
698static u64 rbd_obj_bytes(struct rbd_image_header *header)
699{
700 return 1 << header->obj_order;
701}
702
703/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700704 * bio helpers
705 */
706
707static void bio_chain_put(struct bio *chain)
708{
709 struct bio *tmp;
710
711 while (chain) {
712 tmp = chain;
713 chain = chain->bi_next;
714 bio_put(tmp);
715 }
716}
717
718/*
719 * zeros a bio chain, starting at specific offset
720 */
721static void zero_bio_chain(struct bio *chain, int start_ofs)
722{
723 struct bio_vec *bv;
724 unsigned long flags;
725 void *buf;
726 int i;
727 int pos = 0;
728
729 while (chain) {
730 bio_for_each_segment(bv, chain, i) {
731 if (pos + bv->bv_len > start_ofs) {
732 int remainder = max(start_ofs - pos, 0);
733 buf = bvec_kmap_irq(bv, &flags);
734 memset(buf + remainder, 0,
735 bv->bv_len - remainder);
Dan Carpenter85b5aaa2010-10-11 21:15:11 +0200736 bvec_kunmap_irq(buf, &flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700737 }
738 pos += bv->bv_len;
739 }
740
741 chain = chain->bi_next;
742 }
743}
744
745/*
746 * bio_chain_clone - clone a chain of bios up to a certain length.
747 * might return a bio_pair that will need to be released.
748 */
749static struct bio *bio_chain_clone(struct bio **old, struct bio **next,
750 struct bio_pair **bp,
751 int len, gfp_t gfpmask)
752{
753 struct bio *tmp, *old_chain = *old, *new_chain = NULL, *tail = NULL;
754 int total = 0;
755
756 if (*bp) {
757 bio_pair_release(*bp);
758 *bp = NULL;
759 }
760
761 while (old_chain && (total < len)) {
762 tmp = bio_kmalloc(gfpmask, old_chain->bi_max_vecs);
763 if (!tmp)
764 goto err_out;
765
766 if (total + old_chain->bi_size > len) {
767 struct bio_pair *bp;
768
769 /*
770 * this split can only happen with a single paged bio,
771 * split_bio will BUG_ON if this is not the case
772 */
773 dout("bio_chain_clone split! total=%d remaining=%d"
Alex Elderbd919d42012-07-13 20:35:11 -0500774 "bi_size=%u\n",
775 total, len - total, old_chain->bi_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700776
777 /* split the bio. We'll release it either in the next
778 call, or it will have to be released outside */
Alex Elder593a9e72012-02-07 12:03:37 -0600779 bp = bio_split(old_chain, (len - total) / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700780 if (!bp)
781 goto err_out;
782
783 __bio_clone(tmp, &bp->bio1);
784
785 *next = &bp->bio2;
786 } else {
787 __bio_clone(tmp, old_chain);
788 *next = old_chain->bi_next;
789 }
790
791 tmp->bi_bdev = NULL;
792 gfpmask &= ~__GFP_WAIT;
793 tmp->bi_next = NULL;
794
795 if (!new_chain) {
796 new_chain = tail = tmp;
797 } else {
798 tail->bi_next = tmp;
799 tail = tmp;
800 }
801 old_chain = old_chain->bi_next;
802
803 total += tmp->bi_size;
804 }
805
806 BUG_ON(total < len);
807
808 if (tail)
809 tail->bi_next = NULL;
810
811 *old = old_chain;
812
813 return new_chain;
814
815err_out:
816 dout("bio_chain_clone with err\n");
817 bio_chain_put(new_chain);
818 return NULL;
819}
820
821/*
822 * helpers for osd request op vectors.
823 */
Alex Elder57cfc102012-06-26 12:57:03 -0700824static struct ceph_osd_req_op *rbd_create_rw_ops(int num_ops,
825 int opcode, u32 payload_len)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700826{
Alex Elder57cfc102012-06-26 12:57:03 -0700827 struct ceph_osd_req_op *ops;
828
829 ops = kzalloc(sizeof (*ops) * (num_ops + 1), GFP_NOIO);
830 if (!ops)
831 return NULL;
832
833 ops[0].op = opcode;
834
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700835 /*
836 * op extent offset and length will be set later on
837 * in calc_raw_layout()
838 */
Alex Elder57cfc102012-06-26 12:57:03 -0700839 ops[0].payload_len = payload_len;
840
841 return ops;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700842}
843
844static void rbd_destroy_ops(struct ceph_osd_req_op *ops)
845{
846 kfree(ops);
847}
848
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700849static void rbd_coll_end_req_index(struct request *rq,
850 struct rbd_req_coll *coll,
851 int index,
852 int ret, u64 len)
853{
854 struct request_queue *q;
855 int min, max, i;
856
Alex Elderbd919d42012-07-13 20:35:11 -0500857 dout("rbd_coll_end_req_index %p index %d ret %d len %llu\n",
858 coll, index, ret, (unsigned long long) len);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700859
860 if (!rq)
861 return;
862
863 if (!coll) {
864 blk_end_request(rq, ret, len);
865 return;
866 }
867
868 q = rq->q;
869
870 spin_lock_irq(q->queue_lock);
871 coll->status[index].done = 1;
872 coll->status[index].rc = ret;
873 coll->status[index].bytes = len;
874 max = min = coll->num_done;
875 while (max < coll->total && coll->status[max].done)
876 max++;
877
878 for (i = min; i<max; i++) {
879 __blk_end_request(rq, coll->status[i].rc,
880 coll->status[i].bytes);
881 coll->num_done++;
882 kref_put(&coll->kref, rbd_coll_release);
883 }
884 spin_unlock_irq(q->queue_lock);
885}
886
887static void rbd_coll_end_req(struct rbd_request *req,
888 int ret, u64 len)
889{
890 rbd_coll_end_req_index(req->rq, req->coll, req->coll_index, ret, len);
891}
892
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700893/*
894 * Send ceph osd request
895 */
896static int rbd_do_request(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -0500897 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700898 struct ceph_snap_context *snapc,
899 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -0500900 const char *object_name, u64 ofs, u64 len,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700901 struct bio *bio,
902 struct page **pages,
903 int num_pages,
904 int flags,
905 struct ceph_osd_req_op *ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700906 struct rbd_req_coll *coll,
907 int coll_index,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700908 void (*rbd_cb)(struct ceph_osd_request *req,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700909 struct ceph_msg *msg),
910 struct ceph_osd_request **linger_req,
911 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700912{
913 struct ceph_osd_request *req;
914 struct ceph_file_layout *layout;
915 int ret;
916 u64 bno;
917 struct timespec mtime = CURRENT_TIME;
918 struct rbd_request *req_data;
919 struct ceph_osd_request_head *reqhead;
Alex Elder1dbb4392012-01-24 10:08:37 -0600920 struct ceph_osd_client *osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700921
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700922 req_data = kzalloc(sizeof(*req_data), GFP_NOIO);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700923 if (!req_data) {
924 if (coll)
925 rbd_coll_end_req_index(rq, coll, coll_index,
926 -ENOMEM, len);
927 return -ENOMEM;
928 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700929
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700930 if (coll) {
931 req_data->coll = coll;
932 req_data->coll_index = coll_index;
933 }
934
Alex Elderbd919d42012-07-13 20:35:11 -0500935 dout("rbd_do_request object_name=%s ofs=%llu len=%llu\n", object_name,
936 (unsigned long long) ofs, (unsigned long long) len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700937
Alex Elder0ce1a792012-07-03 16:01:18 -0500938 osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder1dbb4392012-01-24 10:08:37 -0600939 req = ceph_osdc_alloc_request(osdc, flags, snapc, ops,
940 false, GFP_NOIO, pages, bio);
Sage Weil4ad12622011-05-03 09:23:36 -0700941 if (!req) {
Sage Weil4ad12622011-05-03 09:23:36 -0700942 ret = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700943 goto done_pages;
944 }
945
946 req->r_callback = rbd_cb;
947
948 req_data->rq = rq;
949 req_data->bio = bio;
950 req_data->pages = pages;
951 req_data->len = len;
952
953 req->r_priv = req_data;
954
955 reqhead = req->r_request->front.iov_base;
956 reqhead->snapid = cpu_to_le64(CEPH_NOSNAP);
957
Alex Elderaded07e2012-07-03 16:01:18 -0500958 strncpy(req->r_oid, object_name, sizeof(req->r_oid));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700959 req->r_oid_len = strlen(req->r_oid);
960
961 layout = &req->r_file_layout;
962 memset(layout, 0, sizeof(*layout));
963 layout->fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
964 layout->fl_stripe_count = cpu_to_le32(1);
965 layout->fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
Alex Elder0ce1a792012-07-03 16:01:18 -0500966 layout->fl_pg_pool = cpu_to_le32(rbd_dev->pool_id);
Alex Elder1dbb4392012-01-24 10:08:37 -0600967 ceph_calc_raw_layout(osdc, layout, snapid, ofs, &len, &bno,
968 req, ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700969
970 ceph_osdc_build_request(req, ofs, &len,
971 ops,
972 snapc,
973 &mtime,
974 req->r_oid, req->r_oid_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700975
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700976 if (linger_req) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600977 ceph_osdc_set_request_linger(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700978 *linger_req = req;
979 }
980
Alex Elder1dbb4392012-01-24 10:08:37 -0600981 ret = ceph_osdc_start_request(osdc, req, false);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700982 if (ret < 0)
983 goto done_err;
984
985 if (!rbd_cb) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600986 ret = ceph_osdc_wait_request(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700987 if (ver)
988 *ver = le64_to_cpu(req->r_reassert_version.version);
Alex Elderbd919d42012-07-13 20:35:11 -0500989 dout("reassert_ver=%llu\n",
990 (unsigned long long)
991 le64_to_cpu(req->r_reassert_version.version));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700992 ceph_osdc_put_request(req);
993 }
994 return ret;
995
996done_err:
997 bio_chain_put(req_data->bio);
998 ceph_osdc_put_request(req);
999done_pages:
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001000 rbd_coll_end_req(req_data, ret, len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001001 kfree(req_data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001002 return ret;
1003}
1004
1005/*
1006 * Ceph osd op callback
1007 */
1008static void rbd_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1009{
1010 struct rbd_request *req_data = req->r_priv;
1011 struct ceph_osd_reply_head *replyhead;
1012 struct ceph_osd_op *op;
1013 __s32 rc;
1014 u64 bytes;
1015 int read_op;
1016
1017 /* parse reply */
1018 replyhead = msg->front.iov_base;
1019 WARN_ON(le32_to_cpu(replyhead->num_ops) == 0);
1020 op = (void *)(replyhead + 1);
1021 rc = le32_to_cpu(replyhead->result);
1022 bytes = le64_to_cpu(op->extent.length);
Dan Carpenter895cfcc2012-06-06 09:15:33 -05001023 read_op = (le16_to_cpu(op->op) == CEPH_OSD_OP_READ);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001024
Alex Elderbd919d42012-07-13 20:35:11 -05001025 dout("rbd_req_cb bytes=%llu readop=%d rc=%d\n",
1026 (unsigned long long) bytes, read_op, (int) rc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001027
1028 if (rc == -ENOENT && read_op) {
1029 zero_bio_chain(req_data->bio, 0);
1030 rc = 0;
1031 } else if (rc == 0 && read_op && bytes < req_data->len) {
1032 zero_bio_chain(req_data->bio, bytes);
1033 bytes = req_data->len;
1034 }
1035
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001036 rbd_coll_end_req(req_data, rc, bytes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001037
1038 if (req_data->bio)
1039 bio_chain_put(req_data->bio);
1040
1041 ceph_osdc_put_request(req);
1042 kfree(req_data);
1043}
1044
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001045static void rbd_simple_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1046{
1047 ceph_osdc_put_request(req);
1048}
1049
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001050/*
1051 * Do a synchronous ceph osd operation
1052 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001053static int rbd_req_sync_op(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001054 struct ceph_snap_context *snapc,
1055 u64 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001056 int flags,
Alex Elder913d2fd2012-06-26 12:57:03 -07001057 struct ceph_osd_req_op *ops,
Alex Elderaded07e2012-07-03 16:01:18 -05001058 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001059 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001060 char *buf,
1061 struct ceph_osd_request **linger_req,
1062 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001063{
1064 int ret;
1065 struct page **pages;
1066 int num_pages;
Alex Elder913d2fd2012-06-26 12:57:03 -07001067
1068 BUG_ON(ops == NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001069
1070 num_pages = calc_pages_for(ofs , len);
1071 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Dan Carpenterb8d06382010-10-11 21:14:23 +02001072 if (IS_ERR(pages))
1073 return PTR_ERR(pages);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001074
Alex Elder0ce1a792012-07-03 16:01:18 -05001075 ret = rbd_do_request(NULL, rbd_dev, snapc, snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001076 object_name, ofs, len, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001077 pages, num_pages,
1078 flags,
1079 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001080 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001081 NULL,
1082 linger_req, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001083 if (ret < 0)
Alex Elder913d2fd2012-06-26 12:57:03 -07001084 goto done;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001085
1086 if ((flags & CEPH_OSD_FLAG_READ) && buf)
1087 ret = ceph_copy_from_page_vector(pages, buf, ofs, ret);
1088
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001089done:
1090 ceph_release_page_vector(pages, num_pages);
1091 return ret;
1092}
1093
1094/*
1095 * Do an asynchronous ceph osd operation
1096 */
1097static int rbd_do_op(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -05001098 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001099 struct ceph_snap_context *snapc,
1100 u64 snapid,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001101 int opcode, int flags,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001102 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001103 struct bio *bio,
1104 struct rbd_req_coll *coll,
1105 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001106{
1107 char *seg_name;
1108 u64 seg_ofs;
1109 u64 seg_len;
1110 int ret;
1111 struct ceph_osd_req_op *ops;
1112 u32 payload_len;
1113
1114 seg_name = kmalloc(RBD_MAX_SEG_NAME_LEN + 1, GFP_NOIO);
1115 if (!seg_name)
1116 return -ENOMEM;
1117
1118 seg_len = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001119 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001120 ofs, len,
1121 seg_name, &seg_ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001122
1123 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
1124
Alex Elder57cfc102012-06-26 12:57:03 -07001125 ret = -ENOMEM;
1126 ops = rbd_create_rw_ops(1, opcode, payload_len);
1127 if (!ops)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001128 goto done;
1129
1130 /* we've taken care of segment sizes earlier when we
1131 cloned the bios. We should never have a segment
1132 truncated at this point */
1133 BUG_ON(seg_len < len);
1134
1135 ret = rbd_do_request(rq, rbd_dev, snapc, snapid,
1136 seg_name, seg_ofs, seg_len,
1137 bio,
1138 NULL, 0,
1139 flags,
1140 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001141 coll, coll_index,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001142 rbd_req_cb, 0, NULL);
Sage Weil11f77002011-05-12 16:13:54 -07001143
1144 rbd_destroy_ops(ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001145done:
1146 kfree(seg_name);
1147 return ret;
1148}
1149
1150/*
1151 * Request async osd write
1152 */
1153static int rbd_req_write(struct request *rq,
1154 struct rbd_device *rbd_dev,
1155 struct ceph_snap_context *snapc,
1156 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001157 struct bio *bio,
1158 struct rbd_req_coll *coll,
1159 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001160{
1161 return rbd_do_op(rq, rbd_dev, snapc, CEPH_NOSNAP,
1162 CEPH_OSD_OP_WRITE,
1163 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001164 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001165}
1166
1167/*
1168 * Request async osd read
1169 */
1170static int rbd_req_read(struct request *rq,
1171 struct rbd_device *rbd_dev,
1172 u64 snapid,
1173 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001174 struct bio *bio,
1175 struct rbd_req_coll *coll,
1176 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001177{
1178 return rbd_do_op(rq, rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001179 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001180 CEPH_OSD_OP_READ,
1181 CEPH_OSD_FLAG_READ,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001182 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001183}
1184
1185/*
1186 * Request sync osd read
1187 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001188static int rbd_req_sync_read(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001189 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001190 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001191 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001192 char *buf,
1193 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001194{
Alex Elder913d2fd2012-06-26 12:57:03 -07001195 struct ceph_osd_req_op *ops;
1196 int ret;
1197
1198 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_READ, 0);
1199 if (!ops)
1200 return -ENOMEM;
1201
1202 ret = rbd_req_sync_op(rbd_dev, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001203 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001204 CEPH_OSD_FLAG_READ,
Alex Elder913d2fd2012-06-26 12:57:03 -07001205 ops, object_name, ofs, len, buf, NULL, ver);
1206 rbd_destroy_ops(ops);
1207
1208 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001209}
1210
1211/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001212 * Request sync osd watch
1213 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001214static int rbd_req_sync_notify_ack(struct rbd_device *rbd_dev,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001215 u64 ver,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001216 u64 notify_id)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001217{
1218 struct ceph_osd_req_op *ops;
Sage Weil11f77002011-05-12 16:13:54 -07001219 int ret;
1220
Alex Elder57cfc102012-06-26 12:57:03 -07001221 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY_ACK, 0);
1222 if (!ops)
1223 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001224
Josh Durgina71b8912011-12-05 18:10:44 -08001225 ops[0].watch.ver = cpu_to_le64(ver);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001226 ops[0].watch.cookie = notify_id;
1227 ops[0].watch.flag = 0;
1228
Alex Elder0ce1a792012-07-03 16:01:18 -05001229 ret = rbd_do_request(NULL, rbd_dev, NULL, CEPH_NOSNAP,
Alex Elder7f0a24d2012-07-25 09:32:40 -05001230 rbd_dev->header_name, 0, 0, NULL,
Alex Elderad4f2322012-07-03 16:01:19 -05001231 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001232 CEPH_OSD_FLAG_READ,
1233 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001234 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001235 rbd_simple_req_cb, 0, NULL);
1236
1237 rbd_destroy_ops(ops);
1238 return ret;
1239}
1240
1241static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1242{
Alex Elder0ce1a792012-07-03 16:01:18 -05001243 struct rbd_device *rbd_dev = (struct rbd_device *)data;
Josh Durgina71b8912011-12-05 18:10:44 -08001244 u64 hver;
Sage Weil13143d22011-05-12 16:08:30 -07001245 int rc;
1246
Alex Elder0ce1a792012-07-03 16:01:18 -05001247 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001248 return;
1249
Alex Elderbd919d42012-07-13 20:35:11 -05001250 dout("rbd_watch_cb %s notify_id=%llu opcode=%u\n",
1251 rbd_dev->header_name, (unsigned long long) notify_id,
1252 (unsigned int) opcode);
Alex Elder1fe5e992012-07-25 09:32:41 -05001253 rc = rbd_refresh_header(rbd_dev, &hver);
Sage Weil13143d22011-05-12 16:08:30 -07001254 if (rc)
Alex Elderf0f8cef2012-01-29 13:57:44 -06001255 pr_warning(RBD_DRV_NAME "%d got notification but failed to "
Alex Elder0ce1a792012-07-03 16:01:18 -05001256 " update snaps: %d\n", rbd_dev->major, rc);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001257
Alex Elder7f0a24d2012-07-25 09:32:40 -05001258 rbd_req_sync_notify_ack(rbd_dev, hver, notify_id);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001259}
1260
1261/*
1262 * Request sync osd watch
1263 */
Alex Elder0e6f3222012-07-25 09:32:40 -05001264static int rbd_req_sync_watch(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001265{
1266 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001267 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder57cfc102012-06-26 12:57:03 -07001268 int ret;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001269
Alex Elder57cfc102012-06-26 12:57:03 -07001270 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1271 if (!ops)
1272 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001273
1274 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, 0,
Alex Elder0ce1a792012-07-03 16:01:18 -05001275 (void *)rbd_dev, &rbd_dev->watch_event);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001276 if (ret < 0)
1277 goto fail;
1278
Alex Elder0e6f3222012-07-25 09:32:40 -05001279 ops[0].watch.ver = cpu_to_le64(rbd_dev->header.obj_version);
Alex Elder0ce1a792012-07-03 16:01:18 -05001280 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001281 ops[0].watch.flag = 1;
1282
Alex Elder0ce1a792012-07-03 16:01:18 -05001283 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001284 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001285 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1286 ops,
Alex Elder0e6f3222012-07-25 09:32:40 -05001287 rbd_dev->header_name,
1288 0, 0, NULL,
Alex Elder0ce1a792012-07-03 16:01:18 -05001289 &rbd_dev->watch_request, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001290
1291 if (ret < 0)
1292 goto fail_event;
1293
1294 rbd_destroy_ops(ops);
1295 return 0;
1296
1297fail_event:
Alex Elder0ce1a792012-07-03 16:01:18 -05001298 ceph_osdc_cancel_event(rbd_dev->watch_event);
1299 rbd_dev->watch_event = NULL;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001300fail:
1301 rbd_destroy_ops(ops);
1302 return ret;
1303}
1304
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001305/*
1306 * Request sync osd unwatch
1307 */
Alex Elder070c6332012-07-25 09:32:41 -05001308static int rbd_req_sync_unwatch(struct rbd_device *rbd_dev)
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001309{
1310 struct ceph_osd_req_op *ops;
Alex Elder57cfc102012-06-26 12:57:03 -07001311 int ret;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001312
Alex Elder57cfc102012-06-26 12:57:03 -07001313 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_WATCH, 0);
1314 if (!ops)
1315 return -ENOMEM;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001316
1317 ops[0].watch.ver = 0;
Alex Elder0ce1a792012-07-03 16:01:18 -05001318 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001319 ops[0].watch.flag = 0;
1320
Alex Elder0ce1a792012-07-03 16:01:18 -05001321 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001322 CEPH_NOSNAP,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001323 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1324 ops,
Alex Elder070c6332012-07-25 09:32:41 -05001325 rbd_dev->header_name,
1326 0, 0, NULL, NULL, NULL);
1327
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001328
1329 rbd_destroy_ops(ops);
Alex Elder0ce1a792012-07-03 16:01:18 -05001330 ceph_osdc_cancel_event(rbd_dev->watch_event);
1331 rbd_dev->watch_event = NULL;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001332 return ret;
1333}
1334
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001335struct rbd_notify_info {
Alex Elder0ce1a792012-07-03 16:01:18 -05001336 struct rbd_device *rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001337};
1338
1339static void rbd_notify_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1340{
Alex Elder0ce1a792012-07-03 16:01:18 -05001341 struct rbd_device *rbd_dev = (struct rbd_device *)data;
1342 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001343 return;
1344
Alex Elderbd919d42012-07-13 20:35:11 -05001345 dout("rbd_notify_cb %s notify_id=%llu opcode=%u\n",
1346 rbd_dev->header_name, (unsigned long long) notify_id,
1347 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001348}
1349
1350/*
1351 * Request sync osd notify
1352 */
Alex Elder4cb16252012-07-25 09:32:40 -05001353static int rbd_req_sync_notify(struct rbd_device *rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001354{
1355 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001356 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001357 struct ceph_osd_event *event;
1358 struct rbd_notify_info info;
1359 int payload_len = sizeof(u32) + sizeof(u32);
1360 int ret;
1361
Alex Elder57cfc102012-06-26 12:57:03 -07001362 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_NOTIFY, payload_len);
1363 if (!ops)
1364 return -ENOMEM;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001365
Alex Elder0ce1a792012-07-03 16:01:18 -05001366 info.rbd_dev = rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001367
1368 ret = ceph_osdc_create_event(osdc, rbd_notify_cb, 1,
1369 (void *)&info, &event);
1370 if (ret < 0)
1371 goto fail;
1372
1373 ops[0].watch.ver = 1;
1374 ops[0].watch.flag = 1;
1375 ops[0].watch.cookie = event->cookie;
1376 ops[0].watch.prot_ver = RADOS_NOTIFY_VER;
1377 ops[0].watch.timeout = 12;
1378
Alex Elder0ce1a792012-07-03 16:01:18 -05001379 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001380 CEPH_NOSNAP,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001381 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1382 ops,
Alex Elder4cb16252012-07-25 09:32:40 -05001383 rbd_dev->header_name,
1384 0, 0, NULL, NULL, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001385 if (ret < 0)
1386 goto fail_event;
1387
1388 ret = ceph_osdc_wait_event(event, CEPH_OSD_TIMEOUT_DEFAULT);
1389 dout("ceph_osdc_wait_event returned %d\n", ret);
1390 rbd_destroy_ops(ops);
1391 return 0;
1392
1393fail_event:
1394 ceph_osdc_cancel_event(event);
1395fail:
1396 rbd_destroy_ops(ops);
1397 return ret;
1398}
1399
1400/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001401 * Request sync osd read
1402 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001403static int rbd_req_sync_exec(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001404 const char *object_name,
1405 const char *class_name,
1406 const char *method_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001407 const char *data,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001408 int len,
1409 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001410{
1411 struct ceph_osd_req_op *ops;
Alex Elderaded07e2012-07-03 16:01:18 -05001412 int class_name_len = strlen(class_name);
1413 int method_name_len = strlen(method_name);
Alex Elder57cfc102012-06-26 12:57:03 -07001414 int ret;
1415
1416 ops = rbd_create_rw_ops(1, CEPH_OSD_OP_CALL,
Alex Elderaded07e2012-07-03 16:01:18 -05001417 class_name_len + method_name_len + len);
Alex Elder57cfc102012-06-26 12:57:03 -07001418 if (!ops)
1419 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001420
Alex Elderaded07e2012-07-03 16:01:18 -05001421 ops[0].cls.class_name = class_name;
1422 ops[0].cls.class_len = (__u8) class_name_len;
1423 ops[0].cls.method_name = method_name;
1424 ops[0].cls.method_len = (__u8) method_name_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001425 ops[0].cls.argc = 0;
1426 ops[0].cls.indata = data;
1427 ops[0].cls.indata_len = len;
1428
Alex Elder0ce1a792012-07-03 16:01:18 -05001429 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001430 CEPH_NOSNAP,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001431 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1432 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001433 object_name, 0, 0, NULL, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001434
1435 rbd_destroy_ops(ops);
1436
1437 dout("cls_exec returned %d\n", ret);
1438 return ret;
1439}
1440
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001441static struct rbd_req_coll *rbd_alloc_coll(int num_reqs)
1442{
1443 struct rbd_req_coll *coll =
1444 kzalloc(sizeof(struct rbd_req_coll) +
1445 sizeof(struct rbd_req_status) * num_reqs,
1446 GFP_ATOMIC);
1447
1448 if (!coll)
1449 return NULL;
1450 coll->total = num_reqs;
1451 kref_init(&coll->kref);
1452 return coll;
1453}
1454
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001455/*
1456 * block device queue callback
1457 */
1458static void rbd_rq_fn(struct request_queue *q)
1459{
1460 struct rbd_device *rbd_dev = q->queuedata;
1461 struct request *rq;
1462 struct bio_pair *bp = NULL;
1463
Alex Elder00f1f362012-02-07 12:03:36 -06001464 while ((rq = blk_fetch_request(q))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001465 struct bio *bio;
1466 struct bio *rq_bio, *next_bio = NULL;
1467 bool do_write;
Alex Elderbd919d42012-07-13 20:35:11 -05001468 unsigned int size;
1469 u64 op_size = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001470 u64 ofs;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001471 int num_segs, cur_seg = 0;
1472 struct rbd_req_coll *coll;
Josh Durgind1d25642011-12-05 14:03:05 -08001473 struct ceph_snap_context *snapc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001474
1475 /* peek at request from block layer */
1476 if (!rq)
1477 break;
1478
1479 dout("fetched request\n");
1480
1481 /* filter out block requests we don't understand */
1482 if ((rq->cmd_type != REQ_TYPE_FS)) {
1483 __blk_end_request_all(rq, 0);
Alex Elder00f1f362012-02-07 12:03:36 -06001484 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001485 }
1486
1487 /* deduce our operation (read, write) */
1488 do_write = (rq_data_dir(rq) == WRITE);
1489
1490 size = blk_rq_bytes(rq);
Alex Elder593a9e72012-02-07 12:03:37 -06001491 ofs = blk_rq_pos(rq) * SECTOR_SIZE;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001492 rq_bio = rq->bio;
1493 if (do_write && rbd_dev->read_only) {
1494 __blk_end_request_all(rq, -EROFS);
Alex Elder00f1f362012-02-07 12:03:36 -06001495 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001496 }
1497
1498 spin_unlock_irq(q->queue_lock);
1499
Josh Durgind1d25642011-12-05 14:03:05 -08001500 down_read(&rbd_dev->header_rwsem);
Josh Durgine88a36e2011-11-21 18:14:25 -08001501
Josh Durgind1d25642011-12-05 14:03:05 -08001502 if (rbd_dev->snap_id != CEPH_NOSNAP && !rbd_dev->snap_exists) {
Josh Durgine88a36e2011-11-21 18:14:25 -08001503 up_read(&rbd_dev->header_rwsem);
Josh Durgind1d25642011-12-05 14:03:05 -08001504 dout("request for non-existent snapshot");
1505 spin_lock_irq(q->queue_lock);
1506 __blk_end_request_all(rq, -ENXIO);
1507 continue;
Josh Durgine88a36e2011-11-21 18:14:25 -08001508 }
1509
Josh Durgind1d25642011-12-05 14:03:05 -08001510 snapc = ceph_get_snap_context(rbd_dev->header.snapc);
1511
1512 up_read(&rbd_dev->header_rwsem);
1513
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001514 dout("%s 0x%x bytes at 0x%llx\n",
1515 do_write ? "write" : "read",
Alex Elderbd919d42012-07-13 20:35:11 -05001516 size, (unsigned long long) blk_rq_pos(rq) * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001517
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001518 num_segs = rbd_get_num_segments(&rbd_dev->header, ofs, size);
1519 coll = rbd_alloc_coll(num_segs);
1520 if (!coll) {
1521 spin_lock_irq(q->queue_lock);
1522 __blk_end_request_all(rq, -ENOMEM);
Josh Durgind1d25642011-12-05 14:03:05 -08001523 ceph_put_snap_context(snapc);
Alex Elder00f1f362012-02-07 12:03:36 -06001524 continue;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001525 }
1526
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001527 do {
1528 /* a bio clone to be passed down to OSD req */
Alex Elderbd919d42012-07-13 20:35:11 -05001529 dout("rq->bio->bi_vcnt=%hu\n", rq->bio->bi_vcnt);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001530 op_size = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001531 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001532 ofs, size,
1533 NULL, NULL);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001534 kref_get(&coll->kref);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001535 bio = bio_chain_clone(&rq_bio, &next_bio, &bp,
1536 op_size, GFP_ATOMIC);
1537 if (!bio) {
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001538 rbd_coll_end_req_index(rq, coll, cur_seg,
1539 -ENOMEM, op_size);
1540 goto next_seg;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001541 }
1542
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001543
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001544 /* init OSD command: write or read */
1545 if (do_write)
1546 rbd_req_write(rq, rbd_dev,
Josh Durgind1d25642011-12-05 14:03:05 -08001547 snapc,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001548 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001549 op_size, bio,
1550 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001551 else
1552 rbd_req_read(rq, rbd_dev,
Josh Durgin77dfe992011-11-21 13:04:42 -08001553 rbd_dev->snap_id,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001554 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001555 op_size, bio,
1556 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001557
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001558next_seg:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001559 size -= op_size;
1560 ofs += op_size;
1561
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001562 cur_seg++;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001563 rq_bio = next_bio;
1564 } while (size > 0);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001565 kref_put(&coll->kref, rbd_coll_release);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001566
1567 if (bp)
1568 bio_pair_release(bp);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001569 spin_lock_irq(q->queue_lock);
Josh Durgind1d25642011-12-05 14:03:05 -08001570
1571 ceph_put_snap_context(snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001572 }
1573}
1574
1575/*
1576 * a queue callback. Makes sure that we don't create a bio that spans across
1577 * multiple osd objects. One exception would be with a single page bios,
1578 * which we handle later at bio_chain_clone
1579 */
1580static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
1581 struct bio_vec *bvec)
1582{
1583 struct rbd_device *rbd_dev = q->queuedata;
Alex Elder593a9e72012-02-07 12:03:37 -06001584 unsigned int chunk_sectors;
1585 sector_t sector;
1586 unsigned int bio_sectors;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001587 int max;
1588
Alex Elder593a9e72012-02-07 12:03:37 -06001589 chunk_sectors = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
1590 sector = bmd->bi_sector + get_start_sect(bmd->bi_bdev);
1591 bio_sectors = bmd->bi_size >> SECTOR_SHIFT;
1592
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001593 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
Alex Elder593a9e72012-02-07 12:03:37 -06001594 + bio_sectors)) << SECTOR_SHIFT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001595 if (max < 0)
1596 max = 0; /* bio_add cannot handle a negative return */
1597 if (max <= bvec->bv_len && bio_sectors == 0)
1598 return bvec->bv_len;
1599 return max;
1600}
1601
1602static void rbd_free_disk(struct rbd_device *rbd_dev)
1603{
1604 struct gendisk *disk = rbd_dev->disk;
1605
1606 if (!disk)
1607 return;
1608
1609 rbd_header_free(&rbd_dev->header);
1610
1611 if (disk->flags & GENHD_FL_UP)
1612 del_gendisk(disk);
1613 if (disk->queue)
1614 blk_cleanup_queue(disk->queue);
1615 put_disk(disk);
1616}
1617
1618/*
Alex Elder4156d992012-08-02 11:29:46 -05001619 * Read the complete header for the given rbd device.
1620 *
1621 * Returns a pointer to a dynamically-allocated buffer containing
1622 * the complete and validated header. Caller can pass the address
1623 * of a variable that will be filled in with the version of the
1624 * header object at the time it was read.
1625 *
1626 * Returns a pointer-coded errno if a failure occurs.
1627 */
1628static struct rbd_image_header_ondisk *
1629rbd_dev_v1_header_read(struct rbd_device *rbd_dev, u64 *version)
1630{
1631 struct rbd_image_header_ondisk *ondisk = NULL;
1632 u32 snap_count = 0;
1633 u64 names_size = 0;
1634 u32 want_count;
1635 int ret;
1636
1637 /*
1638 * The complete header will include an array of its 64-bit
1639 * snapshot ids, followed by the names of those snapshots as
1640 * a contiguous block of NUL-terminated strings. Note that
1641 * the number of snapshots could change by the time we read
1642 * it in, in which case we re-read it.
1643 */
1644 do {
1645 size_t size;
1646
1647 kfree(ondisk);
1648
1649 size = sizeof (*ondisk);
1650 size += snap_count * sizeof (struct rbd_image_snap_ondisk);
1651 size += names_size;
1652 ondisk = kmalloc(size, GFP_KERNEL);
1653 if (!ondisk)
1654 return ERR_PTR(-ENOMEM);
1655
1656 ret = rbd_req_sync_read(rbd_dev, CEPH_NOSNAP,
1657 rbd_dev->header_name,
1658 0, size,
1659 (char *) ondisk, version);
1660
1661 if (ret < 0)
1662 goto out_err;
1663 if (WARN_ON((size_t) ret < size)) {
1664 ret = -ENXIO;
1665 pr_warning("short header read for image %s"
1666 " (want %zd got %d)\n",
1667 rbd_dev->image_name, size, ret);
1668 goto out_err;
1669 }
1670 if (!rbd_dev_ondisk_valid(ondisk)) {
1671 ret = -ENXIO;
1672 pr_warning("invalid header for image %s\n",
1673 rbd_dev->image_name);
1674 goto out_err;
1675 }
1676
1677 names_size = le64_to_cpu(ondisk->snap_names_len);
1678 want_count = snap_count;
1679 snap_count = le32_to_cpu(ondisk->snap_count);
1680 } while (snap_count != want_count);
1681
1682 return ondisk;
1683
1684out_err:
1685 kfree(ondisk);
1686
1687 return ERR_PTR(ret);
1688}
1689
1690/*
1691 * reload the ondisk the header
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001692 */
1693static int rbd_read_header(struct rbd_device *rbd_dev,
1694 struct rbd_image_header *header)
1695{
Alex Elder4156d992012-08-02 11:29:46 -05001696 struct rbd_image_header_ondisk *ondisk;
1697 u64 ver = 0;
1698 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001699
Alex Elder4156d992012-08-02 11:29:46 -05001700 ondisk = rbd_dev_v1_header_read(rbd_dev, &ver);
1701 if (IS_ERR(ondisk))
1702 return PTR_ERR(ondisk);
1703 ret = rbd_header_from_disk(header, ondisk);
1704 if (ret >= 0)
1705 header->obj_version = ver;
1706 kfree(ondisk);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001707
Alex Elder4156d992012-08-02 11:29:46 -05001708 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001709}
1710
1711/*
1712 * create a snapshot
1713 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001714static int rbd_header_add_snap(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001715 const char *snap_name,
1716 gfp_t gfp_flags)
1717{
1718 int name_len = strlen(snap_name);
1719 u64 new_snapid;
1720 int ret;
Sage Weil916d4d62011-05-12 16:10:50 -07001721 void *data, *p, *e;
Alex Elder1dbb4392012-01-24 10:08:37 -06001722 struct ceph_mon_client *monc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001723
1724 /* we should create a snapshot only if we're pointing at the head */
Alex Elder0ce1a792012-07-03 16:01:18 -05001725 if (rbd_dev->snap_id != CEPH_NOSNAP)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001726 return -EINVAL;
1727
Alex Elder0ce1a792012-07-03 16:01:18 -05001728 monc = &rbd_dev->rbd_client->client->monc;
1729 ret = ceph_monc_create_snapid(monc, rbd_dev->pool_id, &new_snapid);
Alex Elderbd919d42012-07-13 20:35:11 -05001730 dout("created snapid=%llu\n", (unsigned long long) new_snapid);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001731 if (ret < 0)
1732 return ret;
1733
1734 data = kmalloc(name_len + 16, gfp_flags);
1735 if (!data)
1736 return -ENOMEM;
1737
Sage Weil916d4d62011-05-12 16:10:50 -07001738 p = data;
1739 e = data + name_len + 16;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001740
Sage Weil916d4d62011-05-12 16:10:50 -07001741 ceph_encode_string_safe(&p, e, snap_name, name_len, bad);
1742 ceph_encode_64_safe(&p, e, new_snapid, bad);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001743
Alex Elder0bed54d2012-07-03 16:01:18 -05001744 ret = rbd_req_sync_exec(rbd_dev, rbd_dev->header_name,
Alex Elder0ce1a792012-07-03 16:01:18 -05001745 "rbd", "snap_add",
Alex Elderd67d4be2012-07-13 20:35:11 -05001746 data, p - data, NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001747
Sage Weil916d4d62011-05-12 16:10:50 -07001748 kfree(data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001749
Alex Elder505cbb92012-07-19 08:49:18 -05001750 return ret < 0 ? ret : 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001751bad:
1752 return -ERANGE;
1753}
1754
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001755static void __rbd_remove_all_snaps(struct rbd_device *rbd_dev)
1756{
1757 struct rbd_snap *snap;
Alex Eldera0593292012-07-19 09:09:27 -05001758 struct rbd_snap *next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001759
Alex Eldera0593292012-07-19 09:09:27 -05001760 list_for_each_entry_safe(snap, next, &rbd_dev->snaps, node)
Alex Elder14e70852012-07-19 09:09:27 -05001761 __rbd_remove_snap_dev(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001762}
1763
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001764/*
1765 * only read the first part of the ondisk header, without the snaps info
1766 */
Alex Elderb8136232012-07-25 09:32:41 -05001767static int __rbd_refresh_header(struct rbd_device *rbd_dev, u64 *hver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001768{
1769 int ret;
1770 struct rbd_image_header h;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001771
1772 ret = rbd_read_header(rbd_dev, &h);
1773 if (ret < 0)
1774 return ret;
1775
Josh Durgina51aa0c2011-12-05 10:35:04 -08001776 down_write(&rbd_dev->header_rwsem);
1777
Sage Weil9db4b3e2011-04-19 22:49:06 -07001778 /* resized? */
Josh Durgin474ef7c2011-11-21 17:13:54 -08001779 if (rbd_dev->snap_id == CEPH_NOSNAP) {
1780 sector_t size = (sector_t) h.image_size / SECTOR_SIZE;
1781
1782 dout("setting size to %llu sectors", (unsigned long long) size);
1783 set_capacity(rbd_dev->disk, size);
1784 }
Sage Weil9db4b3e2011-04-19 22:49:06 -07001785
Alex Elder849b4262012-07-09 21:04:24 -05001786 /* rbd_dev->header.object_prefix shouldn't change */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001787 kfree(rbd_dev->header.snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -05001788 kfree(rbd_dev->header.snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -08001789 /* osd requests may still refer to snapc */
1790 ceph_put_snap_context(rbd_dev->header.snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001791
Alex Elderb8136232012-07-25 09:32:41 -05001792 if (hver)
1793 *hver = h.obj_version;
Josh Durgina71b8912011-12-05 18:10:44 -08001794 rbd_dev->header.obj_version = h.obj_version;
Josh Durgin93a24e02011-12-05 10:41:28 -08001795 rbd_dev->header.image_size = h.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001796 rbd_dev->header.total_snaps = h.total_snaps;
1797 rbd_dev->header.snapc = h.snapc;
1798 rbd_dev->header.snap_names = h.snap_names;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001799 rbd_dev->header.snap_names_len = h.snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001800 rbd_dev->header.snap_sizes = h.snap_sizes;
Alex Elder849b4262012-07-09 21:04:24 -05001801 /* Free the extra copy of the object prefix */
1802 WARN_ON(strcmp(rbd_dev->header.object_prefix, h.object_prefix));
1803 kfree(h.object_prefix);
1804
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001805 ret = __rbd_init_snaps_header(rbd_dev);
1806
Josh Durginc6666012011-11-21 17:11:12 -08001807 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001808
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001809 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001810}
1811
Alex Elder1fe5e992012-07-25 09:32:41 -05001812static int rbd_refresh_header(struct rbd_device *rbd_dev, u64 *hver)
1813{
1814 int ret;
1815
1816 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
1817 ret = __rbd_refresh_header(rbd_dev, hver);
1818 mutex_unlock(&ctl_mutex);
1819
1820 return ret;
1821}
1822
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001823static int rbd_init_disk(struct rbd_device *rbd_dev)
1824{
1825 struct gendisk *disk;
1826 struct request_queue *q;
1827 int rc;
Alex Elder593a9e72012-02-07 12:03:37 -06001828 u64 segment_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001829 u64 total_size = 0;
1830
1831 /* contact OSD, request size info about the object being mapped */
1832 rc = rbd_read_header(rbd_dev, &rbd_dev->header);
1833 if (rc)
1834 return rc;
1835
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001836 /* no need to lock here, as rbd_dev is not registered yet */
1837 rc = __rbd_init_snaps_header(rbd_dev);
1838 if (rc)
1839 return rc;
1840
Josh Durgincc9d7342011-11-21 18:19:13 -08001841 rc = rbd_header_set_snap(rbd_dev, &total_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001842 if (rc)
1843 return rc;
1844
1845 /* create gendisk info */
1846 rc = -ENOMEM;
1847 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
1848 if (!disk)
1849 goto out;
1850
Alex Elderf0f8cef2012-01-29 13:57:44 -06001851 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
Alex Elderde71a292012-07-03 16:01:19 -05001852 rbd_dev->dev_id);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001853 disk->major = rbd_dev->major;
1854 disk->first_minor = 0;
1855 disk->fops = &rbd_bd_ops;
1856 disk->private_data = rbd_dev;
1857
1858 /* init rq */
1859 rc = -ENOMEM;
1860 q = blk_init_queue(rbd_rq_fn, &rbd_dev->lock);
1861 if (!q)
1862 goto out_disk;
Josh Durgin029bcbd2011-07-22 11:35:23 -07001863
Alex Elder593a9e72012-02-07 12:03:37 -06001864 /* We use the default size, but let's be explicit about it. */
1865 blk_queue_physical_block_size(q, SECTOR_SIZE);
1866
Josh Durgin029bcbd2011-07-22 11:35:23 -07001867 /* set io sizes to object size */
Alex Elder593a9e72012-02-07 12:03:37 -06001868 segment_size = rbd_obj_bytes(&rbd_dev->header);
1869 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
1870 blk_queue_max_segment_size(q, segment_size);
1871 blk_queue_io_min(q, segment_size);
1872 blk_queue_io_opt(q, segment_size);
Josh Durgin029bcbd2011-07-22 11:35:23 -07001873
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001874 blk_queue_merge_bvec(q, rbd_merge_bvec);
1875 disk->queue = q;
1876
1877 q->queuedata = rbd_dev;
1878
1879 rbd_dev->disk = disk;
1880 rbd_dev->q = q;
1881
1882 /* finally, announce the disk to the world */
Alex Elder593a9e72012-02-07 12:03:37 -06001883 set_capacity(disk, total_size / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001884 add_disk(disk);
1885
1886 pr_info("%s: added with size 0x%llx\n",
1887 disk->disk_name, (unsigned long long)total_size);
1888 return 0;
1889
1890out_disk:
1891 put_disk(disk);
1892out:
1893 return rc;
1894}
1895
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001896/*
1897 sysfs
1898*/
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001899
Alex Elder593a9e72012-02-07 12:03:37 -06001900static struct rbd_device *dev_to_rbd_dev(struct device *dev)
1901{
1902 return container_of(dev, struct rbd_device, dev);
1903}
1904
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001905static ssize_t rbd_size_show(struct device *dev,
1906 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001907{
Alex Elder593a9e72012-02-07 12:03:37 -06001908 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Josh Durgina51aa0c2011-12-05 10:35:04 -08001909 sector_t size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001910
Josh Durgina51aa0c2011-12-05 10:35:04 -08001911 down_read(&rbd_dev->header_rwsem);
1912 size = get_capacity(rbd_dev->disk);
1913 up_read(&rbd_dev->header_rwsem);
1914
1915 return sprintf(buf, "%llu\n", (unsigned long long) size * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001916}
1917
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001918static ssize_t rbd_major_show(struct device *dev,
1919 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001920{
Alex Elder593a9e72012-02-07 12:03:37 -06001921 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001922
1923 return sprintf(buf, "%d\n", rbd_dev->major);
1924}
1925
1926static ssize_t rbd_client_id_show(struct device *dev,
1927 struct device_attribute *attr, char *buf)
1928{
Alex Elder593a9e72012-02-07 12:03:37 -06001929 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001930
Alex Elder1dbb4392012-01-24 10:08:37 -06001931 return sprintf(buf, "client%lld\n",
1932 ceph_client_id(rbd_dev->rbd_client->client));
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001933}
1934
1935static ssize_t rbd_pool_show(struct device *dev,
1936 struct device_attribute *attr, char *buf)
1937{
Alex Elder593a9e72012-02-07 12:03:37 -06001938 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001939
1940 return sprintf(buf, "%s\n", rbd_dev->pool_name);
1941}
1942
Alex Elder9bb2f332012-07-12 10:46:35 -05001943static ssize_t rbd_pool_id_show(struct device *dev,
1944 struct device_attribute *attr, char *buf)
1945{
1946 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
1947
1948 return sprintf(buf, "%d\n", rbd_dev->pool_id);
1949}
1950
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001951static ssize_t rbd_name_show(struct device *dev,
1952 struct device_attribute *attr, char *buf)
1953{
Alex Elder593a9e72012-02-07 12:03:37 -06001954 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001955
Alex Elder0bed54d2012-07-03 16:01:18 -05001956 return sprintf(buf, "%s\n", rbd_dev->image_name);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001957}
1958
1959static ssize_t rbd_snap_show(struct device *dev,
1960 struct device_attribute *attr,
1961 char *buf)
1962{
Alex Elder593a9e72012-02-07 12:03:37 -06001963 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001964
1965 return sprintf(buf, "%s\n", rbd_dev->snap_name);
1966}
1967
1968static ssize_t rbd_image_refresh(struct device *dev,
1969 struct device_attribute *attr,
1970 const char *buf,
1971 size_t size)
1972{
Alex Elder593a9e72012-02-07 12:03:37 -06001973 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Alex Elderb8136232012-07-25 09:32:41 -05001974 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001975
Alex Elder1fe5e992012-07-25 09:32:41 -05001976 ret = rbd_refresh_header(rbd_dev, NULL);
Alex Elderb8136232012-07-25 09:32:41 -05001977
1978 return ret < 0 ? ret : size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001979}
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001980
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001981static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
1982static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
1983static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
1984static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
Alex Elder9bb2f332012-07-12 10:46:35 -05001985static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001986static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
1987static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
1988static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
1989static DEVICE_ATTR(create_snap, S_IWUSR, NULL, rbd_snap_add);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001990
1991static struct attribute *rbd_attrs[] = {
1992 &dev_attr_size.attr,
1993 &dev_attr_major.attr,
1994 &dev_attr_client_id.attr,
1995 &dev_attr_pool.attr,
Alex Elder9bb2f332012-07-12 10:46:35 -05001996 &dev_attr_pool_id.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001997 &dev_attr_name.attr,
1998 &dev_attr_current_snap.attr,
1999 &dev_attr_refresh.attr,
2000 &dev_attr_create_snap.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002001 NULL
2002};
2003
2004static struct attribute_group rbd_attr_group = {
2005 .attrs = rbd_attrs,
2006};
2007
2008static const struct attribute_group *rbd_attr_groups[] = {
2009 &rbd_attr_group,
2010 NULL
2011};
2012
2013static void rbd_sysfs_dev_release(struct device *dev)
2014{
2015}
2016
2017static struct device_type rbd_device_type = {
2018 .name = "rbd",
2019 .groups = rbd_attr_groups,
2020 .release = rbd_sysfs_dev_release,
2021};
2022
2023
2024/*
2025 sysfs - snapshots
2026*/
2027
2028static ssize_t rbd_snap_size_show(struct device *dev,
2029 struct device_attribute *attr,
2030 char *buf)
2031{
2032 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2033
Josh Durgin35915382011-12-05 18:25:13 -08002034 return sprintf(buf, "%llu\n", (unsigned long long)snap->size);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002035}
2036
2037static ssize_t rbd_snap_id_show(struct device *dev,
2038 struct device_attribute *attr,
2039 char *buf)
2040{
2041 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2042
Josh Durgin35915382011-12-05 18:25:13 -08002043 return sprintf(buf, "%llu\n", (unsigned long long)snap->id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002044}
2045
2046static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
2047static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
2048
2049static struct attribute *rbd_snap_attrs[] = {
2050 &dev_attr_snap_size.attr,
2051 &dev_attr_snap_id.attr,
2052 NULL,
2053};
2054
2055static struct attribute_group rbd_snap_attr_group = {
2056 .attrs = rbd_snap_attrs,
2057};
2058
2059static void rbd_snap_dev_release(struct device *dev)
2060{
2061 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2062 kfree(snap->name);
2063 kfree(snap);
2064}
2065
2066static const struct attribute_group *rbd_snap_attr_groups[] = {
2067 &rbd_snap_attr_group,
2068 NULL
2069};
2070
2071static struct device_type rbd_snap_device_type = {
2072 .groups = rbd_snap_attr_groups,
2073 .release = rbd_snap_dev_release,
2074};
2075
Alex Elder14e70852012-07-19 09:09:27 -05002076static void __rbd_remove_snap_dev(struct rbd_snap *snap)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002077{
2078 list_del(&snap->node);
2079 device_unregister(&snap->dev);
2080}
2081
Alex Elder14e70852012-07-19 09:09:27 -05002082static int rbd_register_snap_dev(struct rbd_snap *snap,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002083 struct device *parent)
2084{
2085 struct device *dev = &snap->dev;
2086 int ret;
2087
2088 dev->type = &rbd_snap_device_type;
2089 dev->parent = parent;
2090 dev->release = rbd_snap_dev_release;
2091 dev_set_name(dev, "snap_%s", snap->name);
2092 ret = device_register(dev);
2093
2094 return ret;
2095}
2096
Alex Elder4e891e02012-07-10 20:30:10 -05002097static struct rbd_snap *__rbd_add_snap_dev(struct rbd_device *rbd_dev,
2098 int i, const char *name)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002099{
Alex Elder4e891e02012-07-10 20:30:10 -05002100 struct rbd_snap *snap;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002101 int ret;
Alex Elder4e891e02012-07-10 20:30:10 -05002102
2103 snap = kzalloc(sizeof (*snap), GFP_KERNEL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002104 if (!snap)
Alex Elder4e891e02012-07-10 20:30:10 -05002105 return ERR_PTR(-ENOMEM);
2106
2107 ret = -ENOMEM;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002108 snap->name = kstrdup(name, GFP_KERNEL);
Alex Elder4e891e02012-07-10 20:30:10 -05002109 if (!snap->name)
2110 goto err;
2111
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002112 snap->size = rbd_dev->header.snap_sizes[i];
2113 snap->id = rbd_dev->header.snapc->snaps[i];
2114 if (device_is_registered(&rbd_dev->dev)) {
Alex Elder14e70852012-07-19 09:09:27 -05002115 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002116 if (ret < 0)
2117 goto err;
2118 }
Alex Elder4e891e02012-07-10 20:30:10 -05002119
2120 return snap;
2121
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002122err:
2123 kfree(snap->name);
2124 kfree(snap);
Alex Elder4e891e02012-07-10 20:30:10 -05002125
2126 return ERR_PTR(ret);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002127}
2128
2129/*
Alex Elder35938152012-08-02 11:29:46 -05002130 * Scan the rbd device's current snapshot list and compare it to the
2131 * newly-received snapshot context. Remove any existing snapshots
2132 * not present in the new snapshot context. Add a new snapshot for
2133 * any snaphots in the snapshot context not in the current list.
2134 * And verify there are no changes to snapshots we already know
2135 * about.
2136 *
2137 * Assumes the snapshots in the snapshot context are sorted by
2138 * snapshot id, highest id first. (Snapshots in the rbd_dev's list
2139 * are also maintained in that order.)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002140 */
2141static int __rbd_init_snaps_header(struct rbd_device *rbd_dev)
2142{
Alex Elder35938152012-08-02 11:29:46 -05002143 struct ceph_snap_context *snapc = rbd_dev->header.snapc;
2144 const u32 snap_count = snapc->num_snaps;
2145 char *snap_name = rbd_dev->header.snap_names;
2146 struct list_head *head = &rbd_dev->snaps;
2147 struct list_head *links = head->next;
2148 u32 index = 0;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002149
Alex Elder35938152012-08-02 11:29:46 -05002150 while (index < snap_count || links != head) {
2151 u64 snap_id;
2152 struct rbd_snap *snap;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002153
Alex Elder35938152012-08-02 11:29:46 -05002154 snap_id = index < snap_count ? snapc->snaps[index]
2155 : CEPH_NOSNAP;
2156 snap = links != head ? list_entry(links, struct rbd_snap, node)
2157 : NULL;
2158 BUG_ON(snap && snap->id == CEPH_NOSNAP);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002159
Alex Elder35938152012-08-02 11:29:46 -05002160 if (snap_id == CEPH_NOSNAP || (snap && snap->id > snap_id)) {
2161 struct list_head *next = links->next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002162
Alex Elder35938152012-08-02 11:29:46 -05002163 /* Existing snapshot not in the new snap context */
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002164
Alex Elder35938152012-08-02 11:29:46 -05002165 if (rbd_dev->snap_id == snap->id)
Josh Durgine88a36e2011-11-21 18:14:25 -08002166 rbd_dev->snap_exists = false;
Alex Elder35938152012-08-02 11:29:46 -05002167 __rbd_remove_snap_dev(snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002168
Alex Elder35938152012-08-02 11:29:46 -05002169 /* Done with this list entry; advance */
2170
2171 links = next;
2172 continue;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002173 }
Alex Elder35938152012-08-02 11:29:46 -05002174
2175 if (!snap || (snap_id != CEPH_NOSNAP && snap->id < snap_id)) {
2176 struct rbd_snap *new_snap;
2177
2178 /* We haven't seen this snapshot before */
2179
2180 new_snap = __rbd_add_snap_dev(rbd_dev, index,
2181 snap_name);
2182 if (IS_ERR(new_snap))
2183 return PTR_ERR(new_snap);
2184
2185 /* New goes before existing, or at end of list */
2186
2187 if (snap)
2188 list_add_tail(&new_snap->node, &snap->node);
2189 else
Alex Elder523f3252012-08-30 00:16:37 -05002190 list_add_tail(&new_snap->node, head);
Alex Elder35938152012-08-02 11:29:46 -05002191 } else {
2192 /* Already have this one */
2193
2194 BUG_ON(snap->size != rbd_dev->header.snap_sizes[index]);
2195 BUG_ON(strcmp(snap->name, snap_name));
2196
2197 /* Done with this list entry; advance */
2198
2199 links = links->next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002200 }
Alex Elder35938152012-08-02 11:29:46 -05002201
2202 /* Advance to the next entry in the snapshot context */
2203
2204 index++;
2205 snap_name += strlen(snap_name) + 1;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002206 }
2207
2208 return 0;
2209}
2210
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002211static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
2212{
Alex Elderf0f8cef2012-01-29 13:57:44 -06002213 int ret;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002214 struct device *dev;
2215 struct rbd_snap *snap;
2216
2217 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2218 dev = &rbd_dev->dev;
2219
2220 dev->bus = &rbd_bus_type;
2221 dev->type = &rbd_device_type;
2222 dev->parent = &rbd_root_dev;
2223 dev->release = rbd_dev_release;
Alex Elderde71a292012-07-03 16:01:19 -05002224 dev_set_name(dev, "%d", rbd_dev->dev_id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002225 ret = device_register(dev);
2226 if (ret < 0)
Alex Elderf0f8cef2012-01-29 13:57:44 -06002227 goto out;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002228
2229 list_for_each_entry(snap, &rbd_dev->snaps, node) {
Alex Elder14e70852012-07-19 09:09:27 -05002230 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002231 if (ret < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002232 break;
2233 }
Alex Elderf0f8cef2012-01-29 13:57:44 -06002234out:
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002235 mutex_unlock(&ctl_mutex);
2236 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002237}
2238
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002239static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
2240{
2241 device_unregister(&rbd_dev->dev);
2242}
2243
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002244static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
2245{
2246 int ret, rc;
2247
2248 do {
Alex Elder0e6f3222012-07-25 09:32:40 -05002249 ret = rbd_req_sync_watch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002250 if (ret == -ERANGE) {
Alex Elder1fe5e992012-07-25 09:32:41 -05002251 rc = rbd_refresh_header(rbd_dev, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002252 if (rc < 0)
2253 return rc;
2254 }
2255 } while (ret == -ERANGE);
2256
2257 return ret;
2258}
2259
Alex Elder1ddbe942012-01-29 13:57:44 -06002260static atomic64_t rbd_id_max = ATOMIC64_INIT(0);
2261
2262/*
Alex Elder499afd52012-02-02 08:13:29 -06002263 * Get a unique rbd identifier for the given new rbd_dev, and add
2264 * the rbd_dev to the global list. The minimum rbd id is 1.
Alex Elder1ddbe942012-01-29 13:57:44 -06002265 */
Alex Elder499afd52012-02-02 08:13:29 -06002266static void rbd_id_get(struct rbd_device *rbd_dev)
Alex Elderb7f23c32012-01-29 13:57:43 -06002267{
Alex Elderde71a292012-07-03 16:01:19 -05002268 rbd_dev->dev_id = atomic64_inc_return(&rbd_id_max);
Alex Elder499afd52012-02-02 08:13:29 -06002269
2270 spin_lock(&rbd_dev_list_lock);
2271 list_add_tail(&rbd_dev->node, &rbd_dev_list);
2272 spin_unlock(&rbd_dev_list_lock);
Alex Elder1ddbe942012-01-29 13:57:44 -06002273}
Alex Elderb7f23c32012-01-29 13:57:43 -06002274
Alex Elder1ddbe942012-01-29 13:57:44 -06002275/*
Alex Elder499afd52012-02-02 08:13:29 -06002276 * Remove an rbd_dev from the global list, and record that its
2277 * identifier is no longer in use.
Alex Elder1ddbe942012-01-29 13:57:44 -06002278 */
Alex Elder499afd52012-02-02 08:13:29 -06002279static void rbd_id_put(struct rbd_device *rbd_dev)
Alex Elder1ddbe942012-01-29 13:57:44 -06002280{
Alex Elderd184f6b2012-01-29 13:57:44 -06002281 struct list_head *tmp;
Alex Elderde71a292012-07-03 16:01:19 -05002282 int rbd_id = rbd_dev->dev_id;
Alex Elderd184f6b2012-01-29 13:57:44 -06002283 int max_id;
2284
2285 BUG_ON(rbd_id < 1);
Alex Elder499afd52012-02-02 08:13:29 -06002286
2287 spin_lock(&rbd_dev_list_lock);
2288 list_del_init(&rbd_dev->node);
Alex Elderd184f6b2012-01-29 13:57:44 -06002289
2290 /*
2291 * If the id being "put" is not the current maximum, there
2292 * is nothing special we need to do.
2293 */
2294 if (rbd_id != atomic64_read(&rbd_id_max)) {
2295 spin_unlock(&rbd_dev_list_lock);
2296 return;
2297 }
2298
2299 /*
2300 * We need to update the current maximum id. Search the
2301 * list to find out what it is. We're more likely to find
2302 * the maximum at the end, so search the list backward.
2303 */
2304 max_id = 0;
2305 list_for_each_prev(tmp, &rbd_dev_list) {
2306 struct rbd_device *rbd_dev;
2307
2308 rbd_dev = list_entry(tmp, struct rbd_device, node);
2309 if (rbd_id > max_id)
2310 max_id = rbd_id;
2311 }
Alex Elder499afd52012-02-02 08:13:29 -06002312 spin_unlock(&rbd_dev_list_lock);
Alex Elderb7f23c32012-01-29 13:57:43 -06002313
Alex Elder1ddbe942012-01-29 13:57:44 -06002314 /*
Alex Elderd184f6b2012-01-29 13:57:44 -06002315 * The max id could have been updated by rbd_id_get(), in
2316 * which case it now accurately reflects the new maximum.
2317 * Be careful not to overwrite the maximum value in that
2318 * case.
Alex Elder1ddbe942012-01-29 13:57:44 -06002319 */
Alex Elderd184f6b2012-01-29 13:57:44 -06002320 atomic64_cmpxchg(&rbd_id_max, rbd_id, max_id);
Alex Elderb7f23c32012-01-29 13:57:43 -06002321}
2322
Alex Eldera725f65e2012-02-02 08:13:30 -06002323/*
Alex Eldere28fff262012-02-02 08:13:30 -06002324 * Skips over white space at *buf, and updates *buf to point to the
2325 * first found non-space character (if any). Returns the length of
Alex Elder593a9e72012-02-07 12:03:37 -06002326 * the token (string of non-white space characters) found. Note
2327 * that *buf must be terminated with '\0'.
Alex Eldere28fff262012-02-02 08:13:30 -06002328 */
2329static inline size_t next_token(const char **buf)
2330{
2331 /*
2332 * These are the characters that produce nonzero for
2333 * isspace() in the "C" and "POSIX" locales.
2334 */
2335 const char *spaces = " \f\n\r\t\v";
2336
2337 *buf += strspn(*buf, spaces); /* Find start of token */
2338
2339 return strcspn(*buf, spaces); /* Return token length */
2340}
2341
2342/*
2343 * Finds the next token in *buf, and if the provided token buffer is
2344 * big enough, copies the found token into it. The result, if
Alex Elder593a9e72012-02-07 12:03:37 -06002345 * copied, is guaranteed to be terminated with '\0'. Note that *buf
2346 * must be terminated with '\0' on entry.
Alex Eldere28fff262012-02-02 08:13:30 -06002347 *
2348 * Returns the length of the token found (not including the '\0').
2349 * Return value will be 0 if no token is found, and it will be >=
2350 * token_size if the token would not fit.
2351 *
Alex Elder593a9e72012-02-07 12:03:37 -06002352 * The *buf pointer will be updated to point beyond the end of the
Alex Eldere28fff262012-02-02 08:13:30 -06002353 * found token. Note that this occurs even if the token buffer is
2354 * too small to hold it.
2355 */
2356static inline size_t copy_token(const char **buf,
2357 char *token,
2358 size_t token_size)
2359{
2360 size_t len;
2361
2362 len = next_token(buf);
2363 if (len < token_size) {
2364 memcpy(token, *buf, len);
2365 *(token + len) = '\0';
2366 }
2367 *buf += len;
2368
2369 return len;
2370}
2371
2372/*
Alex Elderea3352f2012-07-09 21:04:23 -05002373 * Finds the next token in *buf, dynamically allocates a buffer big
2374 * enough to hold a copy of it, and copies the token into the new
2375 * buffer. The copy is guaranteed to be terminated with '\0'. Note
2376 * that a duplicate buffer is created even for a zero-length token.
2377 *
2378 * Returns a pointer to the newly-allocated duplicate, or a null
2379 * pointer if memory for the duplicate was not available. If
2380 * the lenp argument is a non-null pointer, the length of the token
2381 * (not including the '\0') is returned in *lenp.
2382 *
2383 * If successful, the *buf pointer will be updated to point beyond
2384 * the end of the found token.
2385 *
2386 * Note: uses GFP_KERNEL for allocation.
2387 */
2388static inline char *dup_token(const char **buf, size_t *lenp)
2389{
2390 char *dup;
2391 size_t len;
2392
2393 len = next_token(buf);
2394 dup = kmalloc(len + 1, GFP_KERNEL);
2395 if (!dup)
2396 return NULL;
2397
2398 memcpy(dup, *buf, len);
2399 *(dup + len) = '\0';
2400 *buf += len;
2401
2402 if (lenp)
2403 *lenp = len;
2404
2405 return dup;
2406}
2407
2408/*
Alex Elder0bed54d2012-07-03 16:01:18 -05002409 * This fills in the pool_name, image_name, image_name_len, snap_name,
Alex Eldera725f65e2012-02-02 08:13:30 -06002410 * rbd_dev, rbd_md_name, and name fields of the given rbd_dev, based
2411 * on the list of monitor addresses and other options provided via
2412 * /sys/bus/rbd/add.
Alex Elderd22f76e2012-07-12 10:46:35 -05002413 *
2414 * Note: rbd_dev is assumed to have been initially zero-filled.
Alex Eldera725f65e2012-02-02 08:13:30 -06002415 */
2416static int rbd_add_parse_args(struct rbd_device *rbd_dev,
2417 const char *buf,
Alex Elder7ef32142012-02-02 08:13:30 -06002418 const char **mon_addrs,
Alex Elder5214ecc2012-02-02 08:13:30 -06002419 size_t *mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002420 char *options,
Alex Elder0bed54d2012-07-03 16:01:18 -05002421 size_t options_size)
Alex Eldera725f65e2012-02-02 08:13:30 -06002422{
Alex Elderd22f76e2012-07-12 10:46:35 -05002423 size_t len;
2424 int ret;
Alex Eldere28fff262012-02-02 08:13:30 -06002425
2426 /* The first four tokens are required */
2427
Alex Elder7ef32142012-02-02 08:13:30 -06002428 len = next_token(&buf);
2429 if (!len)
Alex Eldera725f65e2012-02-02 08:13:30 -06002430 return -EINVAL;
Alex Elder5214ecc2012-02-02 08:13:30 -06002431 *mon_addrs_size = len + 1;
Alex Elder7ef32142012-02-02 08:13:30 -06002432 *mon_addrs = buf;
2433
2434 buf += len;
Alex Eldera725f65e2012-02-02 08:13:30 -06002435
Alex Eldere28fff262012-02-02 08:13:30 -06002436 len = copy_token(&buf, options, options_size);
2437 if (!len || len >= options_size)
2438 return -EINVAL;
Alex Eldera725f65e2012-02-02 08:13:30 -06002439
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002440 ret = -ENOMEM;
Alex Elderd22f76e2012-07-12 10:46:35 -05002441 rbd_dev->pool_name = dup_token(&buf, NULL);
2442 if (!rbd_dev->pool_name)
Alex Elderd22f76e2012-07-12 10:46:35 -05002443 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002444
Alex Elder0bed54d2012-07-03 16:01:18 -05002445 rbd_dev->image_name = dup_token(&buf, &rbd_dev->image_name_len);
2446 if (!rbd_dev->image_name)
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002447 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002448
Alex Eldercb8627c2012-07-09 21:04:23 -05002449 /* Create the name of the header object */
2450
Alex Elder0bed54d2012-07-03 16:01:18 -05002451 rbd_dev->header_name = kmalloc(rbd_dev->image_name_len
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002452 + sizeof (RBD_SUFFIX),
2453 GFP_KERNEL);
Alex Elder0bed54d2012-07-03 16:01:18 -05002454 if (!rbd_dev->header_name)
Alex Eldercb8627c2012-07-09 21:04:23 -05002455 goto out_err;
Alex Elder0bed54d2012-07-03 16:01:18 -05002456 sprintf(rbd_dev->header_name, "%s%s", rbd_dev->image_name, RBD_SUFFIX);
Alex Eldera725f65e2012-02-02 08:13:30 -06002457
Alex Eldere28fff262012-02-02 08:13:30 -06002458 /*
Alex Elder820a5f32012-07-09 21:04:24 -05002459 * The snapshot name is optional. If none is is supplied,
2460 * we use the default value.
Alex Eldere28fff262012-02-02 08:13:30 -06002461 */
Alex Elder820a5f32012-07-09 21:04:24 -05002462 rbd_dev->snap_name = dup_token(&buf, &len);
2463 if (!rbd_dev->snap_name)
2464 goto out_err;
2465 if (!len) {
2466 /* Replace the empty name with the default */
2467 kfree(rbd_dev->snap_name);
2468 rbd_dev->snap_name
2469 = kmalloc(sizeof (RBD_SNAP_HEAD_NAME), GFP_KERNEL);
2470 if (!rbd_dev->snap_name)
2471 goto out_err;
2472
Alex Eldere28fff262012-02-02 08:13:30 -06002473 memcpy(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
2474 sizeof (RBD_SNAP_HEAD_NAME));
Alex Elder849b4262012-07-09 21:04:24 -05002475 }
Alex Eldere28fff262012-02-02 08:13:30 -06002476
Alex Eldera725f65e2012-02-02 08:13:30 -06002477 return 0;
Alex Elderd22f76e2012-07-12 10:46:35 -05002478
2479out_err:
Alex Elder0bed54d2012-07-03 16:01:18 -05002480 kfree(rbd_dev->header_name);
Alex Elderd78fd7a2012-07-26 23:37:14 -05002481 rbd_dev->header_name = NULL;
Alex Elder0bed54d2012-07-03 16:01:18 -05002482 kfree(rbd_dev->image_name);
Alex Elderd78fd7a2012-07-26 23:37:14 -05002483 rbd_dev->image_name = NULL;
2484 rbd_dev->image_name_len = 0;
Alex Elderd22f76e2012-07-12 10:46:35 -05002485 kfree(rbd_dev->pool_name);
2486 rbd_dev->pool_name = NULL;
2487
2488 return ret;
Alex Eldera725f65e2012-02-02 08:13:30 -06002489}
2490
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002491static ssize_t rbd_add(struct bus_type *bus,
2492 const char *buf,
2493 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002494{
Alex Eldercb8627c2012-07-09 21:04:23 -05002495 char *options;
2496 struct rbd_device *rbd_dev = NULL;
Alex Elder7ef32142012-02-02 08:13:30 -06002497 const char *mon_addrs = NULL;
2498 size_t mon_addrs_size = 0;
Alex Elder27cc2592012-02-02 08:13:30 -06002499 struct ceph_osd_client *osdc;
2500 int rc = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002501
2502 if (!try_module_get(THIS_MODULE))
2503 return -ENODEV;
2504
Alex Elder27cc2592012-02-02 08:13:30 -06002505 options = kmalloc(count, GFP_KERNEL);
2506 if (!options)
2507 goto err_nomem;
Alex Eldercb8627c2012-07-09 21:04:23 -05002508 rbd_dev = kzalloc(sizeof(*rbd_dev), GFP_KERNEL);
2509 if (!rbd_dev)
2510 goto err_nomem;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002511
2512 /* static rbd_device initialization */
2513 spin_lock_init(&rbd_dev->lock);
2514 INIT_LIST_HEAD(&rbd_dev->node);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002515 INIT_LIST_HEAD(&rbd_dev->snaps);
Josh Durginc6666012011-11-21 17:11:12 -08002516 init_rwsem(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002517
Alex Elderd184f6b2012-01-29 13:57:44 -06002518 /* generate unique id: find highest unique id, add one */
Alex Elder499afd52012-02-02 08:13:29 -06002519 rbd_id_get(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002520
Alex Eldera725f65e2012-02-02 08:13:30 -06002521 /* Fill in the device name, now that we have its id. */
Alex Elder81a89792012-02-02 08:13:30 -06002522 BUILD_BUG_ON(DEV_NAME_LEN
2523 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
Alex Elderde71a292012-07-03 16:01:19 -05002524 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
Alex Eldere124a822012-01-29 13:57:44 -06002525
Alex Eldera725f65e2012-02-02 08:13:30 -06002526 /* parse add command */
Alex Elder7ef32142012-02-02 08:13:30 -06002527 rc = rbd_add_parse_args(rbd_dev, buf, &mon_addrs, &mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002528 options, count);
Alex Eldera725f65e2012-02-02 08:13:30 -06002529 if (rc)
2530 goto err_put_id;
2531
Alex Elder5214ecc2012-02-02 08:13:30 -06002532 rbd_dev->rbd_client = rbd_get_client(mon_addrs, mon_addrs_size - 1,
2533 options);
Alex Elderd720bcb2012-02-02 08:13:30 -06002534 if (IS_ERR(rbd_dev->rbd_client)) {
2535 rc = PTR_ERR(rbd_dev->rbd_client);
Alex Elderd78fd7a2012-07-26 23:37:14 -05002536 rbd_dev->rbd_client = NULL;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002537 goto err_put_id;
Alex Elderd720bcb2012-02-02 08:13:30 -06002538 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002539
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002540 /* pick the pool */
Alex Elder1dbb4392012-01-24 10:08:37 -06002541 osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002542 rc = ceph_pg_poolid_by_name(osdc->osdmap, rbd_dev->pool_name);
2543 if (rc < 0)
2544 goto err_out_client;
Alex Elder9bb2f332012-07-12 10:46:35 -05002545 rbd_dev->pool_id = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002546
2547 /* register our block device */
Alex Elder27cc2592012-02-02 08:13:30 -06002548 rc = register_blkdev(0, rbd_dev->name);
2549 if (rc < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002550 goto err_out_client;
Alex Elder27cc2592012-02-02 08:13:30 -06002551 rbd_dev->major = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002552
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002553 rc = rbd_bus_add_dev(rbd_dev);
2554 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002555 goto err_out_blkdev;
2556
Alex Elder32eec682012-02-08 16:11:14 -06002557 /*
2558 * At this point cleanup in the event of an error is the job
2559 * of the sysfs code (initiated by rbd_bus_del_dev()).
2560 *
2561 * Set up and announce blkdev mapping.
2562 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002563 rc = rbd_init_disk(rbd_dev);
2564 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002565 goto err_out_bus;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002566
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002567 rc = rbd_init_watch_dev(rbd_dev);
2568 if (rc)
2569 goto err_out_bus;
2570
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002571 return count;
2572
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002573err_out_bus:
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002574 /* this will also clean up rest of rbd_dev stuff */
2575
2576 rbd_bus_del_dev(rbd_dev);
2577 kfree(options);
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002578 return rc;
2579
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002580err_out_blkdev:
2581 unregister_blkdev(rbd_dev->major, rbd_dev->name);
2582err_out_client:
2583 rbd_put_client(rbd_dev);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002584err_put_id:
Alex Eldercb8627c2012-07-09 21:04:23 -05002585 if (rbd_dev->pool_name) {
Alex Elder820a5f32012-07-09 21:04:24 -05002586 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002587 kfree(rbd_dev->header_name);
2588 kfree(rbd_dev->image_name);
Alex Eldercb8627c2012-07-09 21:04:23 -05002589 kfree(rbd_dev->pool_name);
2590 }
Alex Elder499afd52012-02-02 08:13:29 -06002591 rbd_id_put(rbd_dev);
Alex Elder27cc2592012-02-02 08:13:30 -06002592err_nomem:
Alex Elder27cc2592012-02-02 08:13:30 -06002593 kfree(rbd_dev);
Alex Eldercb8627c2012-07-09 21:04:23 -05002594 kfree(options);
Alex Elder27cc2592012-02-02 08:13:30 -06002595
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002596 dout("Error adding device %s\n", buf);
2597 module_put(THIS_MODULE);
Alex Elder27cc2592012-02-02 08:13:30 -06002598
2599 return (ssize_t) rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002600}
2601
Alex Elderde71a292012-07-03 16:01:19 -05002602static struct rbd_device *__rbd_get_dev(unsigned long dev_id)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002603{
2604 struct list_head *tmp;
2605 struct rbd_device *rbd_dev;
2606
Alex Eldere124a822012-01-29 13:57:44 -06002607 spin_lock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002608 list_for_each(tmp, &rbd_dev_list) {
2609 rbd_dev = list_entry(tmp, struct rbd_device, node);
Alex Elderde71a292012-07-03 16:01:19 -05002610 if (rbd_dev->dev_id == dev_id) {
Alex Eldere124a822012-01-29 13:57:44 -06002611 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002612 return rbd_dev;
Alex Eldere124a822012-01-29 13:57:44 -06002613 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002614 }
Alex Eldere124a822012-01-29 13:57:44 -06002615 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002616 return NULL;
2617}
2618
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002619static void rbd_dev_release(struct device *dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002620{
Alex Elder593a9e72012-02-07 12:03:37 -06002621 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002622
Alex Elder1dbb4392012-01-24 10:08:37 -06002623 if (rbd_dev->watch_request) {
2624 struct ceph_client *client = rbd_dev->rbd_client->client;
2625
2626 ceph_osdc_unregister_linger_request(&client->osdc,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002627 rbd_dev->watch_request);
Alex Elder1dbb4392012-01-24 10:08:37 -06002628 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002629 if (rbd_dev->watch_event)
Alex Elder070c6332012-07-25 09:32:41 -05002630 rbd_req_sync_unwatch(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002631
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002632 rbd_put_client(rbd_dev);
2633
2634 /* clean up and free blkdev */
2635 rbd_free_disk(rbd_dev);
2636 unregister_blkdev(rbd_dev->major, rbd_dev->name);
Alex Elder32eec682012-02-08 16:11:14 -06002637
2638 /* done with the id, and with the rbd_dev */
Alex Elder820a5f32012-07-09 21:04:24 -05002639 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002640 kfree(rbd_dev->header_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002641 kfree(rbd_dev->pool_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002642 kfree(rbd_dev->image_name);
Alex Elder32eec682012-02-08 16:11:14 -06002643 rbd_id_put(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002644 kfree(rbd_dev);
2645
2646 /* release module ref */
2647 module_put(THIS_MODULE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002648}
2649
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002650static ssize_t rbd_remove(struct bus_type *bus,
2651 const char *buf,
2652 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002653{
2654 struct rbd_device *rbd_dev = NULL;
2655 int target_id, rc;
2656 unsigned long ul;
2657 int ret = count;
2658
2659 rc = strict_strtoul(buf, 10, &ul);
2660 if (rc)
2661 return rc;
2662
2663 /* convert to int; abort if we lost anything in the conversion */
2664 target_id = (int) ul;
2665 if (target_id != ul)
2666 return -EINVAL;
2667
2668 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2669
2670 rbd_dev = __rbd_get_dev(target_id);
2671 if (!rbd_dev) {
2672 ret = -ENOENT;
2673 goto done;
2674 }
2675
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002676 __rbd_remove_all_snaps(rbd_dev);
2677 rbd_bus_del_dev(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002678
2679done:
2680 mutex_unlock(&ctl_mutex);
2681 return ret;
2682}
2683
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002684static ssize_t rbd_snap_add(struct device *dev,
2685 struct device_attribute *attr,
2686 const char *buf,
2687 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002688{
Alex Elder593a9e72012-02-07 12:03:37 -06002689 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002690 int ret;
2691 char *name = kmalloc(count + 1, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002692 if (!name)
2693 return -ENOMEM;
2694
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002695 snprintf(name, count, "%s", buf);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002696
2697 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2698
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002699 ret = rbd_header_add_snap(rbd_dev,
2700 name, GFP_KERNEL);
2701 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002702 goto err_unlock;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002703
Alex Elderb8136232012-07-25 09:32:41 -05002704 ret = __rbd_refresh_header(rbd_dev, NULL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002705 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002706 goto err_unlock;
2707
2708 /* shouldn't hold ctl_mutex when notifying.. notify might
2709 trigger a watch callback that would need to get that mutex */
2710 mutex_unlock(&ctl_mutex);
2711
2712 /* make a best effort, don't error if failed */
Alex Elder4cb16252012-07-25 09:32:40 -05002713 rbd_req_sync_notify(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002714
2715 ret = count;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002716 kfree(name);
2717 return ret;
2718
2719err_unlock:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002720 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002721 kfree(name);
2722 return ret;
2723}
2724
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002725/*
2726 * create control files in sysfs
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002727 * /sys/bus/rbd/...
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002728 */
2729static int rbd_sysfs_init(void)
2730{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002731 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002732
Alex Elderfed4c142012-02-07 12:03:36 -06002733 ret = device_register(&rbd_root_dev);
Alex Elder21079782012-01-24 10:08:36 -06002734 if (ret < 0)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002735 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002736
Alex Elderfed4c142012-02-07 12:03:36 -06002737 ret = bus_register(&rbd_bus_type);
2738 if (ret < 0)
2739 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002740
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002741 return ret;
2742}
2743
2744static void rbd_sysfs_cleanup(void)
2745{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002746 bus_unregister(&rbd_bus_type);
Alex Elderfed4c142012-02-07 12:03:36 -06002747 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002748}
2749
2750int __init rbd_init(void)
2751{
2752 int rc;
2753
2754 rc = rbd_sysfs_init();
2755 if (rc)
2756 return rc;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002757 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002758 return 0;
2759}
2760
2761void __exit rbd_exit(void)
2762{
2763 rbd_sysfs_cleanup();
2764}
2765
2766module_init(rbd_init);
2767module_exit(rbd_exit);
2768
2769MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
2770MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
2771MODULE_DESCRIPTION("rados block device");
2772
2773/* following authorship retained from original osdblk.c */
2774MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
2775
2776MODULE_LICENSE("GPL");