blob: eed58e99e18d930df297535519d886ba25ea6b05 [file] [log] [blame]
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001/*
2 rbd.c -- Export ceph rados objects as a Linux block device
3
4
5 based on drivers/block/osdblk.c:
6
7 Copyright 2009 Red Hat, Inc.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; see the file COPYING. If not, write to
20 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21
22
23
Yehuda Sadehdfc56062010-11-19 14:51:04 -080024 For usage instructions, please refer to:
Yehuda Sadeh602adf42010-08-12 16:11:25 -070025
Yehuda Sadehdfc56062010-11-19 14:51:04 -080026 Documentation/ABI/testing/sysfs-bus-rbd
Yehuda Sadeh602adf42010-08-12 16:11:25 -070027
28 */
29
30#include <linux/ceph/libceph.h>
31#include <linux/ceph/osd_client.h>
32#include <linux/ceph/mon_client.h>
33#include <linux/ceph/decode.h>
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070034#include <linux/parser.h>
Yehuda Sadeh602adf42010-08-12 16:11:25 -070035
36#include <linux/kernel.h>
37#include <linux/device.h>
38#include <linux/module.h>
39#include <linux/fs.h>
40#include <linux/blkdev.h>
41
42#include "rbd_types.h"
43
Alex Elder593a9e72012-02-07 12:03:37 -060044/*
45 * The basic unit of block I/O is a sector. It is interpreted in a
46 * number of contexts in Linux (blk, bio, genhd), but the default is
47 * universally 512 bytes. These symbols are just slightly more
48 * meaningful than the bare numbers they represent.
49 */
50#define SECTOR_SHIFT 9
51#define SECTOR_SIZE (1ULL << SECTOR_SHIFT)
52
Alex Elderf0f8cef2012-01-29 13:57:44 -060053#define RBD_DRV_NAME "rbd"
54#define RBD_DRV_NAME_LONG "rbd (rados block device)"
Yehuda Sadeh602adf42010-08-12 16:11:25 -070055
56#define RBD_MINORS_PER_MAJOR 256 /* max minors per blkdev */
57
Yehuda Sadeh602adf42010-08-12 16:11:25 -070058#define RBD_MAX_SNAP_NAME_LEN 32
59#define RBD_MAX_OPT_LEN 1024
60
61#define RBD_SNAP_HEAD_NAME "-"
62
Alex Elder81a89792012-02-02 08:13:30 -060063/*
64 * An RBD device name will be "rbd#", where the "rbd" comes from
65 * RBD_DRV_NAME above, and # is a unique integer identifier.
66 * MAX_INT_FORMAT_WIDTH is used in ensuring DEV_NAME_LEN is big
67 * enough to hold all possible device names.
68 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -070069#define DEV_NAME_LEN 32
Alex Elder81a89792012-02-02 08:13:30 -060070#define MAX_INT_FORMAT_WIDTH ((5 * sizeof (int)) / 2 + 1)
Yehuda Sadeh602adf42010-08-12 16:11:25 -070071
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070072#define RBD_NOTIFY_TIMEOUT_DEFAULT 10
73
Yehuda Sadeh602adf42010-08-12 16:11:25 -070074/*
75 * block device image metadata (in-memory version)
76 */
77struct rbd_image_header {
78 u64 image_size;
Alex Elder849b4262012-07-09 21:04:24 -050079 char *object_prefix;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070080 __u8 obj_order;
81 __u8 crypt_type;
82 __u8 comp_type;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070083 struct ceph_snap_context *snapc;
84 size_t snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070085 u32 total_snaps;
86
87 char *snap_names;
88 u64 *snap_sizes;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -070089
90 u64 obj_version;
91};
92
93struct rbd_options {
94 int notify_timeout;
Yehuda Sadeh602adf42010-08-12 16:11:25 -070095};
96
97/*
Alex Elderf0f8cef2012-01-29 13:57:44 -060098 * an instance of the client. multiple devices may share an rbd client.
Yehuda Sadeh602adf42010-08-12 16:11:25 -070099 */
100struct rbd_client {
101 struct ceph_client *client;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700102 struct rbd_options *rbd_opts;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700103 struct kref kref;
104 struct list_head node;
105};
106
107/*
Alex Elderf0f8cef2012-01-29 13:57:44 -0600108 * a request completion status
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700109 */
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700110struct rbd_req_status {
111 int done;
112 int rc;
113 u64 bytes;
114};
115
116/*
117 * a collection of requests
118 */
119struct rbd_req_coll {
120 int total;
121 int num_done;
122 struct kref kref;
123 struct rbd_req_status status[0];
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700124};
125
Alex Elderf0f8cef2012-01-29 13:57:44 -0600126/*
127 * a single io request
128 */
129struct rbd_request {
130 struct request *rq; /* blk layer request */
131 struct bio *bio; /* cloned bio */
132 struct page **pages; /* list of used pages */
133 u64 len;
134 int coll_index;
135 struct rbd_req_coll *coll;
136};
137
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800138struct rbd_snap {
139 struct device dev;
140 const char *name;
Josh Durgin3591538f2011-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 Eldere124a82f2012-01-29 13:57:44 -0600192
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700193static LIST_HEAD(rbd_dev_list); /* devices */
Alex Eldere124a82f2012-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);
205static void __rbd_remove_snap_dev(struct rbd_device *rbd_dev,
Justin P. Mattock69932482011-07-26 23:06:29 -0700206 struct rbd_snap *snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800207
Alex Elderf0f8cef2012-01-29 13:57:44 -0600208static ssize_t rbd_add(struct bus_type *bus, const char *buf,
209 size_t count);
210static ssize_t rbd_remove(struct bus_type *bus, const char *buf,
211 size_t count);
212
213static struct bus_attribute rbd_bus_attrs[] = {
214 __ATTR(add, S_IWUSR, NULL, rbd_add),
215 __ATTR(remove, S_IWUSR, NULL, rbd_remove),
216 __ATTR_NULL
217};
218
219static struct bus_type rbd_bus_type = {
220 .name = "rbd",
221 .bus_attrs = rbd_bus_attrs,
222};
223
224static void rbd_root_dev_release(struct device *dev)
225{
226}
227
228static struct device rbd_root_dev = {
229 .init_name = "rbd",
230 .release = rbd_root_dev_release,
231};
232
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800233
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800234static struct device *rbd_get_dev(struct rbd_device *rbd_dev)
235{
236 return get_device(&rbd_dev->dev);
237}
238
239static void rbd_put_dev(struct rbd_device *rbd_dev)
240{
241 put_device(&rbd_dev->dev);
242}
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700243
Josh Durgin263c6ca2011-12-05 10:43:42 -0800244static int __rbd_refresh_header(struct rbd_device *rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700245
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700246static int rbd_open(struct block_device *bdev, fmode_t mode)
247{
Alex Elderf0f8cef2012-01-29 13:57:44 -0600248 struct rbd_device *rbd_dev = bdev->bd_disk->private_data;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700249
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800250 rbd_get_dev(rbd_dev);
251
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700252 set_device_ro(bdev, rbd_dev->read_only);
253
254 if ((mode & FMODE_WRITE) && rbd_dev->read_only)
255 return -EROFS;
256
257 return 0;
258}
259
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800260static int rbd_release(struct gendisk *disk, fmode_t mode)
261{
262 struct rbd_device *rbd_dev = disk->private_data;
263
264 rbd_put_dev(rbd_dev);
265
266 return 0;
267}
268
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700269static const struct block_device_operations rbd_bd_ops = {
270 .owner = THIS_MODULE,
271 .open = rbd_open,
Yehuda Sadehdfc56062010-11-19 14:51:04 -0800272 .release = rbd_release,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700273};
274
275/*
276 * Initialize an rbd client instance.
Alex Elder43ae4702012-07-03 16:01:18 -0500277 * We own *ceph_opts.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700278 */
Alex Elder43ae4702012-07-03 16:01:18 -0500279static struct rbd_client *rbd_client_create(struct ceph_options *ceph_opts,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700280 struct rbd_options *rbd_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700281{
282 struct rbd_client *rbdc;
283 int ret = -ENOMEM;
284
285 dout("rbd_client_create\n");
286 rbdc = kmalloc(sizeof(struct rbd_client), GFP_KERNEL);
287 if (!rbdc)
288 goto out_opt;
289
290 kref_init(&rbdc->kref);
291 INIT_LIST_HEAD(&rbdc->node);
292
Alex Elderbc534d82012-01-29 13:57:44 -0600293 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
294
Alex Elder43ae4702012-07-03 16:01:18 -0500295 rbdc->client = ceph_create_client(ceph_opts, rbdc, 0, 0);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700296 if (IS_ERR(rbdc->client))
Alex Elderbc534d82012-01-29 13:57:44 -0600297 goto out_mutex;
Alex Elder43ae4702012-07-03 16:01:18 -0500298 ceph_opts = NULL; /* Now rbdc->client is responsible for ceph_opts */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700299
300 ret = ceph_open_session(rbdc->client);
301 if (ret < 0)
302 goto out_err;
303
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700304 rbdc->rbd_opts = rbd_opts;
305
Alex Elder432b8582012-01-29 13:57:44 -0600306 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700307 list_add_tail(&rbdc->node, &rbd_client_list);
Alex Elder432b8582012-01-29 13:57:44 -0600308 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700309
Alex Elderbc534d82012-01-29 13:57:44 -0600310 mutex_unlock(&ctl_mutex);
311
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700312 dout("rbd_client_create created %p\n", rbdc);
313 return rbdc;
314
315out_err:
316 ceph_destroy_client(rbdc->client);
Alex Elderbc534d82012-01-29 13:57:44 -0600317out_mutex:
318 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700319 kfree(rbdc);
320out_opt:
Alex Elder43ae4702012-07-03 16:01:18 -0500321 if (ceph_opts)
322 ceph_destroy_options(ceph_opts);
Vasiliy Kulikov28f259b2010-09-26 12:59:37 +0400323 return ERR_PTR(ret);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700324}
325
326/*
327 * Find a ceph client with specific addr and configuration.
328 */
Alex Elder43ae4702012-07-03 16:01:18 -0500329static struct rbd_client *__rbd_client_find(struct ceph_options *ceph_opts)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700330{
331 struct rbd_client *client_node;
332
Alex Elder43ae4702012-07-03 16:01:18 -0500333 if (ceph_opts->flags & CEPH_OPT_NOSHARE)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700334 return NULL;
335
336 list_for_each_entry(client_node, &rbd_client_list, node)
Alex Elder43ae4702012-07-03 16:01:18 -0500337 if (!ceph_compare_options(ceph_opts, client_node->client))
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700338 return client_node;
339 return NULL;
340}
341
342/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700343 * mount options
344 */
345enum {
346 Opt_notify_timeout,
347 Opt_last_int,
348 /* int args above */
349 Opt_last_string,
350 /* string args above */
351};
352
Alex Elder43ae4702012-07-03 16:01:18 -0500353static match_table_t rbd_opts_tokens = {
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700354 {Opt_notify_timeout, "notify_timeout=%d"},
355 /* int args above */
356 /* string args above */
357 {-1, NULL}
358};
359
360static int parse_rbd_opts_token(char *c, void *private)
361{
Alex Elder43ae4702012-07-03 16:01:18 -0500362 struct rbd_options *rbd_opts = private;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700363 substring_t argstr[MAX_OPT_ARGS];
364 int token, intval, ret;
365
Alex Elder43ae4702012-07-03 16:01:18 -0500366 token = match_token(c, rbd_opts_tokens, argstr);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700367 if (token < 0)
368 return -EINVAL;
369
370 if (token < Opt_last_int) {
371 ret = match_int(&argstr[0], &intval);
372 if (ret < 0) {
373 pr_err("bad mount option arg (not int) "
374 "at '%s'\n", c);
375 return ret;
376 }
377 dout("got int token %d val %d\n", token, intval);
378 } else if (token > Opt_last_int && token < Opt_last_string) {
379 dout("got string token %d val %s\n", token,
380 argstr[0].from);
381 } else {
382 dout("got token %d\n", token);
383 }
384
385 switch (token) {
386 case Opt_notify_timeout:
Alex Elder43ae4702012-07-03 16:01:18 -0500387 rbd_opts->notify_timeout = intval;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700388 break;
389 default:
390 BUG_ON(token);
391 }
392 return 0;
393}
394
395/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700396 * Get a ceph client with specific addr and configuration, if one does
397 * not exist create it.
398 */
Alex Elder5214ecc2012-02-02 08:13:30 -0600399static struct rbd_client *rbd_get_client(const char *mon_addr,
400 size_t mon_addr_len,
401 char *options)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700402{
403 struct rbd_client *rbdc;
Alex Elder43ae4702012-07-03 16:01:18 -0500404 struct ceph_options *ceph_opts;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700405 struct rbd_options *rbd_opts;
406
407 rbd_opts = kzalloc(sizeof(*rbd_opts), GFP_KERNEL);
408 if (!rbd_opts)
Alex Elderd720bcb2012-02-02 08:13:30 -0600409 return ERR_PTR(-ENOMEM);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700410
411 rbd_opts->notify_timeout = RBD_NOTIFY_TIMEOUT_DEFAULT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700412
Alex Elder43ae4702012-07-03 16:01:18 -0500413 ceph_opts = ceph_parse_options(options, mon_addr,
414 mon_addr + mon_addr_len,
415 parse_rbd_opts_token, rbd_opts);
416 if (IS_ERR(ceph_opts)) {
Alex Elderd720bcb2012-02-02 08:13:30 -0600417 kfree(rbd_opts);
Alex Elder43ae4702012-07-03 16:01:18 -0500418 return ERR_CAST(ceph_opts);
Alex Elderee577412012-01-24 10:08:36 -0600419 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700420
Alex Elder432b8582012-01-29 13:57:44 -0600421 spin_lock(&rbd_client_list_lock);
Alex Elder43ae4702012-07-03 16:01:18 -0500422 rbdc = __rbd_client_find(ceph_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700423 if (rbdc) {
Alex Eldere6994d3d2012-01-29 13:57:44 -0600424 /* using an existing client */
425 kref_get(&rbdc->kref);
Alex Elder432b8582012-01-29 13:57:44 -0600426 spin_unlock(&rbd_client_list_lock);
Alex Eldere6994d3d2012-01-29 13:57:44 -0600427
Alex Elder43ae4702012-07-03 16:01:18 -0500428 ceph_destroy_options(ceph_opts);
Alex Elder97bb59a2012-01-24 10:08:36 -0600429 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700430
Alex Elderd720bcb2012-02-02 08:13:30 -0600431 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700432 }
Alex Elder432b8582012-01-29 13:57:44 -0600433 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700434
Alex Elder43ae4702012-07-03 16:01:18 -0500435 rbdc = rbd_client_create(ceph_opts, rbd_opts);
Alex Elderd97081b2012-01-29 13:57:44 -0600436
Alex Elderd720bcb2012-02-02 08:13:30 -0600437 if (IS_ERR(rbdc))
438 kfree(rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700439
Alex Elderd720bcb2012-02-02 08:13:30 -0600440 return rbdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700441}
442
443/*
444 * Destroy ceph client
Alex Elderd23a4b32012-01-29 13:57:43 -0600445 *
Alex Elder432b8582012-01-29 13:57:44 -0600446 * Caller must hold rbd_client_list_lock.
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700447 */
448static void rbd_client_release(struct kref *kref)
449{
450 struct rbd_client *rbdc = container_of(kref, struct rbd_client, kref);
451
452 dout("rbd_release_client %p\n", rbdc);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500453 spin_lock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700454 list_del(&rbdc->node);
Alex Eldercd9d9f52012-04-04 13:35:44 -0500455 spin_unlock(&rbd_client_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700456
457 ceph_destroy_client(rbdc->client);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700458 kfree(rbdc->rbd_opts);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700459 kfree(rbdc);
460}
461
462/*
463 * Drop reference to ceph client node. If it's not referenced anymore, release
464 * it.
465 */
466static void rbd_put_client(struct rbd_device *rbd_dev)
467{
468 kref_put(&rbd_dev->rbd_client->kref, rbd_client_release);
469 rbd_dev->rbd_client = NULL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700470}
471
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700472/*
473 * Destroy requests collection
474 */
475static void rbd_coll_release(struct kref *kref)
476{
477 struct rbd_req_coll *coll =
478 container_of(kref, struct rbd_req_coll, kref);
479
480 dout("rbd_coll_release %p\n", coll);
481 kfree(coll);
482}
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700483
Alex Elder8e94af82012-07-25 09:32:40 -0500484static bool rbd_dev_ondisk_valid(struct rbd_image_header_ondisk *ondisk)
485{
486 return !memcmp(&ondisk->text,
487 RBD_HEADER_TEXT, sizeof (RBD_HEADER_TEXT));
488}
489
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700490/*
491 * Create a new header structure, translate header format from the on-disk
492 * header.
493 */
494static int rbd_header_from_disk(struct rbd_image_header *header,
495 struct rbd_image_header_ondisk *ondisk,
Xi Wang50f7c4c2012-04-20 15:49:44 -0500496 u32 allocated_snaps,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700497 gfp_t gfp_flags)
498{
Xi Wang50f7c4c2012-04-20 15:49:44 -0500499 u32 i, snap_count;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700500
Alex Elder8e94af82012-07-25 09:32:40 -0500501 if (!rbd_dev_ondisk_valid(ondisk))
Josh Durgin81e759f2011-11-15 14:49:53 -0800502 return -ENXIO;
Josh Durgin81e759f2011-11-15 14:49:53 -0800503
Alex Elder00f1f362012-02-07 12:03:36 -0600504 snap_count = le32_to_cpu(ondisk->snap_count);
Xi Wang50f7c4c2012-04-20 15:49:44 -0500505 if (snap_count > (UINT_MAX - sizeof(struct ceph_snap_context))
506 / sizeof (*ondisk))
507 return -EINVAL;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700508 header->snapc = kmalloc(sizeof(struct ceph_snap_context) +
Yan, Zhengf9f9a192012-06-06 09:15:33 -0500509 snap_count * sizeof(u64),
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700510 gfp_flags);
511 if (!header->snapc)
512 return -ENOMEM;
Alex Elder00f1f362012-02-07 12:03:36 -0600513
Alex Elder00f1f362012-02-07 12:03:36 -0600514 header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700515 if (snap_count) {
516 header->snap_names = kmalloc(header->snap_names_len,
Dan Carpenterf8ad4952012-04-20 15:49:44 -0500517 gfp_flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700518 if (!header->snap_names)
519 goto err_snapc;
520 header->snap_sizes = kmalloc(snap_count * sizeof(u64),
Dan Carpenterf8ad4952012-04-20 15:49:44 -0500521 gfp_flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700522 if (!header->snap_sizes)
523 goto err_names;
524 } else {
525 header->snap_names = NULL;
526 header->snap_sizes = NULL;
527 }
Alex Elder849b4262012-07-09 21:04:24 -0500528
529 header->object_prefix = kmalloc(sizeof (ondisk->block_name) + 1,
530 gfp_flags);
531 if (!header->object_prefix)
532 goto err_sizes;
533
Alex Elderca1e49a2012-07-10 20:30:09 -0500534 memcpy(header->object_prefix, ondisk->block_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700535 sizeof(ondisk->block_name));
Alex Elder849b4262012-07-09 21:04:24 -0500536 header->object_prefix[sizeof (ondisk->block_name)] = '\0';
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700537
538 header->image_size = le64_to_cpu(ondisk->image_size);
539 header->obj_order = ondisk->options.order;
540 header->crypt_type = ondisk->options.crypt_type;
541 header->comp_type = ondisk->options.comp_type;
542
543 atomic_set(&header->snapc->nref, 1);
Alex Elder505cbb92012-07-19 08:49:18 -0500544 header->snapc->seq = le64_to_cpu(ondisk->snap_seq);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700545 header->snapc->num_snaps = snap_count;
546 header->total_snaps = snap_count;
547
Alex Elder21079782012-01-24 10:08:36 -0600548 if (snap_count && allocated_snaps == snap_count) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700549 for (i = 0; i < snap_count; i++) {
550 header->snapc->snaps[i] =
551 le64_to_cpu(ondisk->snaps[i].id);
552 header->snap_sizes[i] =
553 le64_to_cpu(ondisk->snaps[i].image_size);
554 }
555
556 /* copy snapshot names */
557 memcpy(header->snap_names, &ondisk->snaps[i],
558 header->snap_names_len);
559 }
560
561 return 0;
562
Alex Elder849b4262012-07-09 21:04:24 -0500563err_sizes:
564 kfree(header->snap_sizes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700565err_names:
566 kfree(header->snap_names);
567err_snapc:
568 kfree(header->snapc);
Alex Elder00f1f362012-02-07 12:03:36 -0600569 return -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700570}
571
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700572static int snap_by_name(struct rbd_image_header *header, const char *snap_name,
573 u64 *seq, u64 *size)
574{
575 int i;
576 char *p = header->snap_names;
577
Alex Elder00f1f362012-02-07 12:03:36 -0600578 for (i = 0; i < header->total_snaps; i++) {
579 if (!strcmp(snap_name, p)) {
580
581 /* Found it. Pass back its id and/or size */
582
583 if (seq)
584 *seq = header->snapc->snaps[i];
585 if (size)
586 *size = header->snap_sizes[i];
587 return i;
588 }
589 p += strlen(p) + 1; /* Skip ahead to the next name */
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700590 }
Alex Elder00f1f362012-02-07 12:03:36 -0600591 return -ENOENT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700592}
593
Alex Elder0ce1a792012-07-03 16:01:18 -0500594static int rbd_header_set_snap(struct rbd_device *rbd_dev, u64 *size)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700595{
Alex Elder78dc4472012-07-19 08:49:18 -0500596 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700597
Alex Elder0ce1a792012-07-03 16:01:18 -0500598 down_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700599
Alex Elder0ce1a792012-07-03 16:01:18 -0500600 if (!memcmp(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
Josh Durgincc9d7342011-11-21 18:19:13 -0800601 sizeof (RBD_SNAP_HEAD_NAME))) {
Alex Elder0ce1a792012-07-03 16:01:18 -0500602 rbd_dev->snap_id = CEPH_NOSNAP;
Josh Durgine88a36e2011-11-21 18:14:25 -0800603 rbd_dev->snap_exists = false;
Alex Elder0ce1a792012-07-03 16:01:18 -0500604 rbd_dev->read_only = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700605 if (size)
Alex Elder78dc4472012-07-19 08:49:18 -0500606 *size = rbd_dev->header.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700607 } else {
Alex Elder78dc4472012-07-19 08:49:18 -0500608 u64 snap_id = 0;
609
610 ret = snap_by_name(&rbd_dev->header, rbd_dev->snap_name,
611 &snap_id, size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700612 if (ret < 0)
613 goto done;
Alex Elder78dc4472012-07-19 08:49:18 -0500614 rbd_dev->snap_id = snap_id;
Josh Durgine88a36e2011-11-21 18:14:25 -0800615 rbd_dev->snap_exists = true;
Alex Elder0ce1a792012-07-03 16:01:18 -0500616 rbd_dev->read_only = 1;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700617 }
618
619 ret = 0;
620done:
Alex Elder0ce1a792012-07-03 16:01:18 -0500621 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700622 return ret;
623}
624
625static void rbd_header_free(struct rbd_image_header *header)
626{
Alex Elder849b4262012-07-09 21:04:24 -0500627 kfree(header->object_prefix);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700628 kfree(header->snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -0500629 kfree(header->snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -0800630 ceph_put_snap_context(header->snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700631}
632
633/*
634 * get the actual striped segment name, offset and length
635 */
636static u64 rbd_get_segment(struct rbd_image_header *header,
Alex Elderca1e49a2012-07-10 20:30:09 -0500637 const char *object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700638 u64 ofs, u64 len,
639 char *seg_name, u64 *segofs)
640{
641 u64 seg = ofs >> header->obj_order;
642
643 if (seg_name)
644 snprintf(seg_name, RBD_MAX_SEG_NAME_LEN,
Alex Elderca1e49a2012-07-10 20:30:09 -0500645 "%s.%012llx", object_prefix, seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700646
647 ofs = ofs & ((1 << header->obj_order) - 1);
648 len = min_t(u64, len, (1 << header->obj_order) - ofs);
649
650 if (segofs)
651 *segofs = ofs;
652
653 return len;
654}
655
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700656static int rbd_get_num_segments(struct rbd_image_header *header,
657 u64 ofs, u64 len)
658{
659 u64 start_seg = ofs >> header->obj_order;
660 u64 end_seg = (ofs + len - 1) >> header->obj_order;
661 return end_seg - start_seg + 1;
662}
663
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700664/*
Josh Durgin029bcbd2011-07-22 11:35:23 -0700665 * returns the size of an object in the image
666 */
667static u64 rbd_obj_bytes(struct rbd_image_header *header)
668{
669 return 1 << header->obj_order;
670}
671
672/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700673 * bio helpers
674 */
675
676static void bio_chain_put(struct bio *chain)
677{
678 struct bio *tmp;
679
680 while (chain) {
681 tmp = chain;
682 chain = chain->bi_next;
683 bio_put(tmp);
684 }
685}
686
687/*
688 * zeros a bio chain, starting at specific offset
689 */
690static void zero_bio_chain(struct bio *chain, int start_ofs)
691{
692 struct bio_vec *bv;
693 unsigned long flags;
694 void *buf;
695 int i;
696 int pos = 0;
697
698 while (chain) {
699 bio_for_each_segment(bv, chain, i) {
700 if (pos + bv->bv_len > start_ofs) {
701 int remainder = max(start_ofs - pos, 0);
702 buf = bvec_kmap_irq(bv, &flags);
703 memset(buf + remainder, 0,
704 bv->bv_len - remainder);
Dan Carpenter85b5aaa2010-10-11 21:15:11 +0200705 bvec_kunmap_irq(buf, &flags);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700706 }
707 pos += bv->bv_len;
708 }
709
710 chain = chain->bi_next;
711 }
712}
713
714/*
715 * bio_chain_clone - clone a chain of bios up to a certain length.
716 * might return a bio_pair that will need to be released.
717 */
718static struct bio *bio_chain_clone(struct bio **old, struct bio **next,
719 struct bio_pair **bp,
720 int len, gfp_t gfpmask)
721{
722 struct bio *tmp, *old_chain = *old, *new_chain = NULL, *tail = NULL;
723 int total = 0;
724
725 if (*bp) {
726 bio_pair_release(*bp);
727 *bp = NULL;
728 }
729
730 while (old_chain && (total < len)) {
731 tmp = bio_kmalloc(gfpmask, old_chain->bi_max_vecs);
732 if (!tmp)
733 goto err_out;
734
735 if (total + old_chain->bi_size > len) {
736 struct bio_pair *bp;
737
738 /*
739 * this split can only happen with a single paged bio,
740 * split_bio will BUG_ON if this is not the case
741 */
742 dout("bio_chain_clone split! total=%d remaining=%d"
Alex Elderbd919d42012-07-13 20:35:11 -0500743 "bi_size=%u\n",
744 total, len - total, old_chain->bi_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700745
746 /* split the bio. We'll release it either in the next
747 call, or it will have to be released outside */
Alex Elder593a9e72012-02-07 12:03:37 -0600748 bp = bio_split(old_chain, (len - total) / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700749 if (!bp)
750 goto err_out;
751
752 __bio_clone(tmp, &bp->bio1);
753
754 *next = &bp->bio2;
755 } else {
756 __bio_clone(tmp, old_chain);
757 *next = old_chain->bi_next;
758 }
759
760 tmp->bi_bdev = NULL;
761 gfpmask &= ~__GFP_WAIT;
762 tmp->bi_next = NULL;
763
764 if (!new_chain) {
765 new_chain = tail = tmp;
766 } else {
767 tail->bi_next = tmp;
768 tail = tmp;
769 }
770 old_chain = old_chain->bi_next;
771
772 total += tmp->bi_size;
773 }
774
775 BUG_ON(total < len);
776
777 if (tail)
778 tail->bi_next = NULL;
779
780 *old = old_chain;
781
782 return new_chain;
783
784err_out:
785 dout("bio_chain_clone with err\n");
786 bio_chain_put(new_chain);
787 return NULL;
788}
789
790/*
791 * helpers for osd request op vectors.
792 */
793static int rbd_create_rw_ops(struct ceph_osd_req_op **ops,
794 int num_ops,
795 int opcode,
796 u32 payload_len)
797{
798 *ops = kzalloc(sizeof(struct ceph_osd_req_op) * (num_ops + 1),
799 GFP_NOIO);
800 if (!*ops)
801 return -ENOMEM;
802 (*ops)[0].op = opcode;
803 /*
804 * op extent offset and length will be set later on
805 * in calc_raw_layout()
806 */
807 (*ops)[0].payload_len = payload_len;
808 return 0;
809}
810
811static void rbd_destroy_ops(struct ceph_osd_req_op *ops)
812{
813 kfree(ops);
814}
815
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700816static void rbd_coll_end_req_index(struct request *rq,
817 struct rbd_req_coll *coll,
818 int index,
819 int ret, u64 len)
820{
821 struct request_queue *q;
822 int min, max, i;
823
Alex Elderbd919d42012-07-13 20:35:11 -0500824 dout("rbd_coll_end_req_index %p index %d ret %d len %llu\n",
825 coll, index, ret, (unsigned long long) len);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700826
827 if (!rq)
828 return;
829
830 if (!coll) {
831 blk_end_request(rq, ret, len);
832 return;
833 }
834
835 q = rq->q;
836
837 spin_lock_irq(q->queue_lock);
838 coll->status[index].done = 1;
839 coll->status[index].rc = ret;
840 coll->status[index].bytes = len;
841 max = min = coll->num_done;
842 while (max < coll->total && coll->status[max].done)
843 max++;
844
845 for (i = min; i<max; i++) {
846 __blk_end_request(rq, coll->status[i].rc,
847 coll->status[i].bytes);
848 coll->num_done++;
849 kref_put(&coll->kref, rbd_coll_release);
850 }
851 spin_unlock_irq(q->queue_lock);
852}
853
854static void rbd_coll_end_req(struct rbd_request *req,
855 int ret, u64 len)
856{
857 rbd_coll_end_req_index(req->rq, req->coll, req->coll_index, ret, len);
858}
859
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700860/*
861 * Send ceph osd request
862 */
863static int rbd_do_request(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -0500864 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700865 struct ceph_snap_context *snapc,
866 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -0500867 const char *object_name, u64 ofs, u64 len,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700868 struct bio *bio,
869 struct page **pages,
870 int num_pages,
871 int flags,
872 struct ceph_osd_req_op *ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700873 struct rbd_req_coll *coll,
874 int coll_index,
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700875 void (*rbd_cb)(struct ceph_osd_request *req,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700876 struct ceph_msg *msg),
877 struct ceph_osd_request **linger_req,
878 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700879{
880 struct ceph_osd_request *req;
881 struct ceph_file_layout *layout;
882 int ret;
883 u64 bno;
884 struct timespec mtime = CURRENT_TIME;
885 struct rbd_request *req_data;
886 struct ceph_osd_request_head *reqhead;
Alex Elder1dbb4392012-01-24 10:08:37 -0600887 struct ceph_osd_client *osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700888
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700889 req_data = kzalloc(sizeof(*req_data), GFP_NOIO);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700890 if (!req_data) {
891 if (coll)
892 rbd_coll_end_req_index(rq, coll, coll_index,
893 -ENOMEM, len);
894 return -ENOMEM;
895 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700896
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700897 if (coll) {
898 req_data->coll = coll;
899 req_data->coll_index = coll_index;
900 }
901
Alex Elderbd919d42012-07-13 20:35:11 -0500902 dout("rbd_do_request object_name=%s ofs=%llu len=%llu\n", object_name,
903 (unsigned long long) ofs, (unsigned long long) len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700904
Alex Elder0ce1a792012-07-03 16:01:18 -0500905 osdc = &rbd_dev->rbd_client->client->osdc;
Alex Elder1dbb4392012-01-24 10:08:37 -0600906 req = ceph_osdc_alloc_request(osdc, flags, snapc, ops,
907 false, GFP_NOIO, pages, bio);
Sage Weil4ad12622011-05-03 09:23:36 -0700908 if (!req) {
Sage Weil4ad12622011-05-03 09:23:36 -0700909 ret = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700910 goto done_pages;
911 }
912
913 req->r_callback = rbd_cb;
914
915 req_data->rq = rq;
916 req_data->bio = bio;
917 req_data->pages = pages;
918 req_data->len = len;
919
920 req->r_priv = req_data;
921
922 reqhead = req->r_request->front.iov_base;
923 reqhead->snapid = cpu_to_le64(CEPH_NOSNAP);
924
Alex Elderaded07e2012-07-03 16:01:18 -0500925 strncpy(req->r_oid, object_name, sizeof(req->r_oid));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700926 req->r_oid_len = strlen(req->r_oid);
927
928 layout = &req->r_file_layout;
929 memset(layout, 0, sizeof(*layout));
930 layout->fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
931 layout->fl_stripe_count = cpu_to_le32(1);
932 layout->fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
Alex Elder0ce1a792012-07-03 16:01:18 -0500933 layout->fl_pg_pool = cpu_to_le32(rbd_dev->pool_id);
Alex Elder1dbb4392012-01-24 10:08:37 -0600934 ceph_calc_raw_layout(osdc, layout, snapid, ofs, &len, &bno,
935 req, ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700936
937 ceph_osdc_build_request(req, ofs, &len,
938 ops,
939 snapc,
940 &mtime,
941 req->r_oid, req->r_oid_len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700942
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700943 if (linger_req) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600944 ceph_osdc_set_request_linger(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700945 *linger_req = req;
946 }
947
Alex Elder1dbb4392012-01-24 10:08:37 -0600948 ret = ceph_osdc_start_request(osdc, req, false);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700949 if (ret < 0)
950 goto done_err;
951
952 if (!rbd_cb) {
Alex Elder1dbb4392012-01-24 10:08:37 -0600953 ret = ceph_osdc_wait_request(osdc, req);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -0700954 if (ver)
955 *ver = le64_to_cpu(req->r_reassert_version.version);
Alex Elderbd919d42012-07-13 20:35:11 -0500956 dout("reassert_ver=%llu\n",
957 (unsigned long long)
958 le64_to_cpu(req->r_reassert_version.version));
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700959 ceph_osdc_put_request(req);
960 }
961 return ret;
962
963done_err:
964 bio_chain_put(req_data->bio);
965 ceph_osdc_put_request(req);
966done_pages:
Yehuda Sadeh1fec7092011-05-13 13:52:56 -0700967 rbd_coll_end_req(req_data, ret, len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700968 kfree(req_data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700969 return ret;
970}
971
972/*
973 * Ceph osd op callback
974 */
975static void rbd_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
976{
977 struct rbd_request *req_data = req->r_priv;
978 struct ceph_osd_reply_head *replyhead;
979 struct ceph_osd_op *op;
980 __s32 rc;
981 u64 bytes;
982 int read_op;
983
984 /* parse reply */
985 replyhead = msg->front.iov_base;
986 WARN_ON(le32_to_cpu(replyhead->num_ops) == 0);
987 op = (void *)(replyhead + 1);
988 rc = le32_to_cpu(replyhead->result);
989 bytes = le64_to_cpu(op->extent.length);
Dan Carpenter895cfcc2012-06-06 09:15:33 -0500990 read_op = (le16_to_cpu(op->op) == CEPH_OSD_OP_READ);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700991
Alex Elderbd919d42012-07-13 20:35:11 -0500992 dout("rbd_req_cb bytes=%llu readop=%d rc=%d\n",
993 (unsigned long long) bytes, read_op, (int) rc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -0700994
995 if (rc == -ENOENT && read_op) {
996 zero_bio_chain(req_data->bio, 0);
997 rc = 0;
998 } else if (rc == 0 && read_op && bytes < req_data->len) {
999 zero_bio_chain(req_data->bio, bytes);
1000 bytes = req_data->len;
1001 }
1002
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001003 rbd_coll_end_req(req_data, rc, bytes);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001004
1005 if (req_data->bio)
1006 bio_chain_put(req_data->bio);
1007
1008 ceph_osdc_put_request(req);
1009 kfree(req_data);
1010}
1011
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001012static void rbd_simple_req_cb(struct ceph_osd_request *req, struct ceph_msg *msg)
1013{
1014 ceph_osdc_put_request(req);
1015}
1016
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001017/*
1018 * Do a synchronous ceph osd operation
1019 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001020static int rbd_req_sync_op(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001021 struct ceph_snap_context *snapc,
1022 u64 snapid,
1023 int opcode,
1024 int flags,
1025 struct ceph_osd_req_op *orig_ops,
Alex Elderaded07e2012-07-03 16:01:18 -05001026 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001027 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001028 char *buf,
1029 struct ceph_osd_request **linger_req,
1030 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001031{
1032 int ret;
1033 struct page **pages;
1034 int num_pages;
1035 struct ceph_osd_req_op *ops = orig_ops;
1036 u32 payload_len;
1037
1038 num_pages = calc_pages_for(ofs , len);
1039 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Dan Carpenterb8d06382010-10-11 21:14:23 +02001040 if (IS_ERR(pages))
1041 return PTR_ERR(pages);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001042
1043 if (!orig_ops) {
1044 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? len : 0);
1045 ret = rbd_create_rw_ops(&ops, 1, opcode, payload_len);
1046 if (ret < 0)
1047 goto done;
1048
1049 if ((flags & CEPH_OSD_FLAG_WRITE) && buf) {
1050 ret = ceph_copy_to_page_vector(pages, buf, ofs, len);
1051 if (ret < 0)
1052 goto done_ops;
1053 }
1054 }
1055
Alex Elder0ce1a792012-07-03 16:01:18 -05001056 ret = rbd_do_request(NULL, rbd_dev, snapc, snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001057 object_name, ofs, len, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001058 pages, num_pages,
1059 flags,
1060 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001061 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001062 NULL,
1063 linger_req, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001064 if (ret < 0)
1065 goto done_ops;
1066
1067 if ((flags & CEPH_OSD_FLAG_READ) && buf)
1068 ret = ceph_copy_from_page_vector(pages, buf, ofs, ret);
1069
1070done_ops:
1071 if (!orig_ops)
1072 rbd_destroy_ops(ops);
1073done:
1074 ceph_release_page_vector(pages, num_pages);
1075 return ret;
1076}
1077
1078/*
1079 * Do an asynchronous ceph osd operation
1080 */
1081static int rbd_do_op(struct request *rq,
Alex Elder0ce1a792012-07-03 16:01:18 -05001082 struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001083 struct ceph_snap_context *snapc,
1084 u64 snapid,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001085 int opcode, int flags,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001086 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001087 struct bio *bio,
1088 struct rbd_req_coll *coll,
1089 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001090{
1091 char *seg_name;
1092 u64 seg_ofs;
1093 u64 seg_len;
1094 int ret;
1095 struct ceph_osd_req_op *ops;
1096 u32 payload_len;
1097
1098 seg_name = kmalloc(RBD_MAX_SEG_NAME_LEN + 1, GFP_NOIO);
1099 if (!seg_name)
1100 return -ENOMEM;
1101
1102 seg_len = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001103 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001104 ofs, len,
1105 seg_name, &seg_ofs);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001106
1107 payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
1108
1109 ret = rbd_create_rw_ops(&ops, 1, opcode, payload_len);
1110 if (ret < 0)
1111 goto done;
1112
1113 /* we've taken care of segment sizes earlier when we
1114 cloned the bios. We should never have a segment
1115 truncated at this point */
1116 BUG_ON(seg_len < len);
1117
1118 ret = rbd_do_request(rq, rbd_dev, snapc, snapid,
1119 seg_name, seg_ofs, seg_len,
1120 bio,
1121 NULL, 0,
1122 flags,
1123 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001124 coll, coll_index,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001125 rbd_req_cb, 0, NULL);
Sage Weil11f77002011-05-12 16:13:54 -07001126
1127 rbd_destroy_ops(ops);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001128done:
1129 kfree(seg_name);
1130 return ret;
1131}
1132
1133/*
1134 * Request async osd write
1135 */
1136static int rbd_req_write(struct request *rq,
1137 struct rbd_device *rbd_dev,
1138 struct ceph_snap_context *snapc,
1139 u64 ofs, u64 len,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001140 struct bio *bio,
1141 struct rbd_req_coll *coll,
1142 int coll_index)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001143{
1144 return rbd_do_op(rq, rbd_dev, snapc, CEPH_NOSNAP,
1145 CEPH_OSD_OP_WRITE,
1146 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001147 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001148}
1149
1150/*
1151 * Request async osd read
1152 */
1153static int rbd_req_read(struct request *rq,
1154 struct rbd_device *rbd_dev,
1155 u64 snapid,
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, NULL,
Josh Durginb06e6a62011-11-21 18:16:52 -08001162 snapid,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001163 CEPH_OSD_OP_READ,
1164 CEPH_OSD_FLAG_READ,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001165 ofs, len, bio, coll, coll_index);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001166}
1167
1168/*
1169 * Request sync osd read
1170 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001171static int rbd_req_sync_read(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001172 u64 snapid,
Alex Elderaded07e2012-07-03 16:01:18 -05001173 const char *object_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001174 u64 ofs, u64 len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001175 char *buf,
1176 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001177{
Alex Elder0ce1a792012-07-03 16:01:18 -05001178 return rbd_req_sync_op(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,
1182 NULL,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001183 object_name, ofs, len, buf, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001184}
1185
1186/*
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001187 * Request sync osd watch
1188 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001189static int rbd_req_sync_notify_ack(struct rbd_device *rbd_dev,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001190 u64 ver,
1191 u64 notify_id,
Alex Elderaded07e2012-07-03 16:01:18 -05001192 const char *object_name)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001193{
1194 struct ceph_osd_req_op *ops;
Sage Weil11f77002011-05-12 16:13:54 -07001195 int ret;
1196
1197 ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY_ACK, 0);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001198 if (ret < 0)
1199 return ret;
1200
Josh Durgina71b8912011-12-05 18:10:44 -08001201 ops[0].watch.ver = cpu_to_le64(ver);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001202 ops[0].watch.cookie = notify_id;
1203 ops[0].watch.flag = 0;
1204
Alex Elder0ce1a792012-07-03 16:01:18 -05001205 ret = rbd_do_request(NULL, rbd_dev, NULL, CEPH_NOSNAP,
Alex Elderaded07e2012-07-03 16:01:18 -05001206 object_name, 0, 0, NULL,
Alex Elderad4f2322012-07-03 16:01:19 -05001207 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001208 CEPH_OSD_FLAG_READ,
1209 ops,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001210 NULL, 0,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001211 rbd_simple_req_cb, 0, NULL);
1212
1213 rbd_destroy_ops(ops);
1214 return ret;
1215}
1216
1217static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1218{
Alex Elder0ce1a792012-07-03 16:01:18 -05001219 struct rbd_device *rbd_dev = (struct rbd_device *)data;
Josh Durgina71b8912011-12-05 18:10:44 -08001220 u64 hver;
Sage Weil13143d22011-05-12 16:08:30 -07001221 int rc;
1222
Alex Elder0ce1a792012-07-03 16:01:18 -05001223 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001224 return;
1225
Alex Elderbd919d42012-07-13 20:35:11 -05001226 dout("rbd_watch_cb %s notify_id=%llu opcode=%u\n",
1227 rbd_dev->header_name, (unsigned long long) notify_id,
1228 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001229 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Alex Elder0ce1a792012-07-03 16:01:18 -05001230 rc = __rbd_refresh_header(rbd_dev);
Josh Durgina71b8912011-12-05 18:10:44 -08001231 hver = rbd_dev->header.obj_version;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001232 mutex_unlock(&ctl_mutex);
Sage Weil13143d22011-05-12 16:08:30 -07001233 if (rc)
Alex Elderf0f8cef2012-01-29 13:57:44 -06001234 pr_warning(RBD_DRV_NAME "%d got notification but failed to "
Alex Elder0ce1a792012-07-03 16:01:18 -05001235 " update snaps: %d\n", rbd_dev->major, rc);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001236
Josh Durgina71b8912011-12-05 18:10:44 -08001237 rbd_req_sync_notify_ack(rbd_dev, hver, notify_id, rbd_dev->header_name);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001238}
1239
1240/*
1241 * Request sync osd watch
1242 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001243static int rbd_req_sync_watch(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001244 const char *object_name,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001245 u64 ver)
1246{
1247 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001248 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001249
1250 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_WATCH, 0);
1251 if (ret < 0)
1252 return ret;
1253
1254 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, 0,
Alex Elder0ce1a792012-07-03 16:01:18 -05001255 (void *)rbd_dev, &rbd_dev->watch_event);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001256 if (ret < 0)
1257 goto fail;
1258
1259 ops[0].watch.ver = cpu_to_le64(ver);
Alex Elder0ce1a792012-07-03 16:01:18 -05001260 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001261 ops[0].watch.flag = 1;
1262
Alex Elder0ce1a792012-07-03 16:01:18 -05001263 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001264 CEPH_NOSNAP,
1265 0,
1266 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1267 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001268 object_name, 0, 0, NULL,
Alex Elder0ce1a792012-07-03 16:01:18 -05001269 &rbd_dev->watch_request, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001270
1271 if (ret < 0)
1272 goto fail_event;
1273
1274 rbd_destroy_ops(ops);
1275 return 0;
1276
1277fail_event:
Alex Elder0ce1a792012-07-03 16:01:18 -05001278 ceph_osdc_cancel_event(rbd_dev->watch_event);
1279 rbd_dev->watch_event = NULL;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001280fail:
1281 rbd_destroy_ops(ops);
1282 return ret;
1283}
1284
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001285/*
1286 * Request sync osd unwatch
1287 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001288static int rbd_req_sync_unwatch(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001289 const char *object_name)
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001290{
1291 struct ceph_osd_req_op *ops;
1292
1293 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_WATCH, 0);
1294 if (ret < 0)
1295 return ret;
1296
1297 ops[0].watch.ver = 0;
Alex Elder0ce1a792012-07-03 16:01:18 -05001298 ops[0].watch.cookie = cpu_to_le64(rbd_dev->watch_event->cookie);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001299 ops[0].watch.flag = 0;
1300
Alex Elder0ce1a792012-07-03 16:01:18 -05001301 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001302 CEPH_NOSNAP,
1303 0,
1304 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1305 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001306 object_name, 0, 0, NULL, NULL, NULL);
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001307
1308 rbd_destroy_ops(ops);
Alex Elder0ce1a792012-07-03 16:01:18 -05001309 ceph_osdc_cancel_event(rbd_dev->watch_event);
1310 rbd_dev->watch_event = NULL;
Yehuda Sadeh79e3057c2011-07-12 16:56:57 -07001311 return ret;
1312}
1313
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001314struct rbd_notify_info {
Alex Elder0ce1a792012-07-03 16:01:18 -05001315 struct rbd_device *rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001316};
1317
1318static void rbd_notify_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1319{
Alex Elder0ce1a792012-07-03 16:01:18 -05001320 struct rbd_device *rbd_dev = (struct rbd_device *)data;
1321 if (!rbd_dev)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001322 return;
1323
Alex Elderbd919d42012-07-13 20:35:11 -05001324 dout("rbd_notify_cb %s notify_id=%llu opcode=%u\n",
1325 rbd_dev->header_name, (unsigned long long) notify_id,
1326 (unsigned int) opcode);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001327}
1328
1329/*
1330 * Request sync osd notify
1331 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001332static int rbd_req_sync_notify(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001333 const char *object_name)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001334{
1335 struct ceph_osd_req_op *ops;
Alex Elder0ce1a792012-07-03 16:01:18 -05001336 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001337 struct ceph_osd_event *event;
1338 struct rbd_notify_info info;
1339 int payload_len = sizeof(u32) + sizeof(u32);
1340 int ret;
1341
1342 ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY, payload_len);
1343 if (ret < 0)
1344 return ret;
1345
Alex Elder0ce1a792012-07-03 16:01:18 -05001346 info.rbd_dev = rbd_dev;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001347
1348 ret = ceph_osdc_create_event(osdc, rbd_notify_cb, 1,
1349 (void *)&info, &event);
1350 if (ret < 0)
1351 goto fail;
1352
1353 ops[0].watch.ver = 1;
1354 ops[0].watch.flag = 1;
1355 ops[0].watch.cookie = event->cookie;
1356 ops[0].watch.prot_ver = RADOS_NOTIFY_VER;
1357 ops[0].watch.timeout = 12;
1358
Alex Elder0ce1a792012-07-03 16:01:18 -05001359 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001360 CEPH_NOSNAP,
1361 0,
1362 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1363 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001364 object_name, 0, 0, NULL, NULL, NULL);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001365 if (ret < 0)
1366 goto fail_event;
1367
1368 ret = ceph_osdc_wait_event(event, CEPH_OSD_TIMEOUT_DEFAULT);
1369 dout("ceph_osdc_wait_event returned %d\n", ret);
1370 rbd_destroy_ops(ops);
1371 return 0;
1372
1373fail_event:
1374 ceph_osdc_cancel_event(event);
1375fail:
1376 rbd_destroy_ops(ops);
1377 return ret;
1378}
1379
1380/*
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001381 * Request sync osd read
1382 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001383static int rbd_req_sync_exec(struct rbd_device *rbd_dev,
Alex Elderaded07e2012-07-03 16:01:18 -05001384 const char *object_name,
1385 const char *class_name,
1386 const char *method_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001387 const char *data,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001388 int len,
1389 u64 *ver)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001390{
1391 struct ceph_osd_req_op *ops;
Alex Elderaded07e2012-07-03 16:01:18 -05001392 int class_name_len = strlen(class_name);
1393 int method_name_len = strlen(method_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001394 int ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_CALL,
Alex Elderaded07e2012-07-03 16:01:18 -05001395 class_name_len + method_name_len + len);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001396 if (ret < 0)
1397 return ret;
1398
Alex Elderaded07e2012-07-03 16:01:18 -05001399 ops[0].cls.class_name = class_name;
1400 ops[0].cls.class_len = (__u8) class_name_len;
1401 ops[0].cls.method_name = method_name;
1402 ops[0].cls.method_len = (__u8) method_name_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001403 ops[0].cls.argc = 0;
1404 ops[0].cls.indata = data;
1405 ops[0].cls.indata_len = len;
1406
Alex Elder0ce1a792012-07-03 16:01:18 -05001407 ret = rbd_req_sync_op(rbd_dev, NULL,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001408 CEPH_NOSNAP,
1409 0,
1410 CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK,
1411 ops,
Alex Elderd1f57ea2012-06-26 12:57:03 -07001412 object_name, 0, 0, NULL, NULL, ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001413
1414 rbd_destroy_ops(ops);
1415
1416 dout("cls_exec returned %d\n", ret);
1417 return ret;
1418}
1419
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001420static struct rbd_req_coll *rbd_alloc_coll(int num_reqs)
1421{
1422 struct rbd_req_coll *coll =
1423 kzalloc(sizeof(struct rbd_req_coll) +
1424 sizeof(struct rbd_req_status) * num_reqs,
1425 GFP_ATOMIC);
1426
1427 if (!coll)
1428 return NULL;
1429 coll->total = num_reqs;
1430 kref_init(&coll->kref);
1431 return coll;
1432}
1433
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001434/*
1435 * block device queue callback
1436 */
1437static void rbd_rq_fn(struct request_queue *q)
1438{
1439 struct rbd_device *rbd_dev = q->queuedata;
1440 struct request *rq;
1441 struct bio_pair *bp = NULL;
1442
Alex Elder00f1f362012-02-07 12:03:36 -06001443 while ((rq = blk_fetch_request(q))) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001444 struct bio *bio;
1445 struct bio *rq_bio, *next_bio = NULL;
1446 bool do_write;
Alex Elderbd919d42012-07-13 20:35:11 -05001447 unsigned int size;
1448 u64 op_size = 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001449 u64 ofs;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001450 int num_segs, cur_seg = 0;
1451 struct rbd_req_coll *coll;
Josh Durgind1d25642011-12-05 14:03:05 -08001452 struct ceph_snap_context *snapc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001453
1454 /* peek at request from block layer */
1455 if (!rq)
1456 break;
1457
1458 dout("fetched request\n");
1459
1460 /* filter out block requests we don't understand */
1461 if ((rq->cmd_type != REQ_TYPE_FS)) {
1462 __blk_end_request_all(rq, 0);
Alex Elder00f1f362012-02-07 12:03:36 -06001463 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001464 }
1465
1466 /* deduce our operation (read, write) */
1467 do_write = (rq_data_dir(rq) == WRITE);
1468
1469 size = blk_rq_bytes(rq);
Alex Elder593a9e72012-02-07 12:03:37 -06001470 ofs = blk_rq_pos(rq) * SECTOR_SIZE;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001471 rq_bio = rq->bio;
1472 if (do_write && rbd_dev->read_only) {
1473 __blk_end_request_all(rq, -EROFS);
Alex Elder00f1f362012-02-07 12:03:36 -06001474 continue;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001475 }
1476
1477 spin_unlock_irq(q->queue_lock);
1478
Josh Durgind1d25642011-12-05 14:03:05 -08001479 down_read(&rbd_dev->header_rwsem);
Josh Durgine88a36e2011-11-21 18:14:25 -08001480
Josh Durgind1d25642011-12-05 14:03:05 -08001481 if (rbd_dev->snap_id != CEPH_NOSNAP && !rbd_dev->snap_exists) {
Josh Durgine88a36e2011-11-21 18:14:25 -08001482 up_read(&rbd_dev->header_rwsem);
Josh Durgind1d25642011-12-05 14:03:05 -08001483 dout("request for non-existent snapshot");
1484 spin_lock_irq(q->queue_lock);
1485 __blk_end_request_all(rq, -ENXIO);
1486 continue;
Josh Durgine88a36e2011-11-21 18:14:25 -08001487 }
1488
Josh Durgind1d25642011-12-05 14:03:05 -08001489 snapc = ceph_get_snap_context(rbd_dev->header.snapc);
1490
1491 up_read(&rbd_dev->header_rwsem);
1492
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001493 dout("%s 0x%x bytes at 0x%llx\n",
1494 do_write ? "write" : "read",
Alex Elderbd919d42012-07-13 20:35:11 -05001495 size, (unsigned long long) blk_rq_pos(rq) * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001496
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001497 num_segs = rbd_get_num_segments(&rbd_dev->header, ofs, size);
1498 coll = rbd_alloc_coll(num_segs);
1499 if (!coll) {
1500 spin_lock_irq(q->queue_lock);
1501 __blk_end_request_all(rq, -ENOMEM);
Josh Durgind1d25642011-12-05 14:03:05 -08001502 ceph_put_snap_context(snapc);
Alex Elder00f1f362012-02-07 12:03:36 -06001503 continue;
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001504 }
1505
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001506 do {
1507 /* a bio clone to be passed down to OSD req */
Alex Elderbd919d42012-07-13 20:35:11 -05001508 dout("rq->bio->bi_vcnt=%hu\n", rq->bio->bi_vcnt);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001509 op_size = rbd_get_segment(&rbd_dev->header,
Alex Elderca1e49a2012-07-10 20:30:09 -05001510 rbd_dev->header.object_prefix,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001511 ofs, size,
1512 NULL, NULL);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001513 kref_get(&coll->kref);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001514 bio = bio_chain_clone(&rq_bio, &next_bio, &bp,
1515 op_size, GFP_ATOMIC);
1516 if (!bio) {
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001517 rbd_coll_end_req_index(rq, coll, cur_seg,
1518 -ENOMEM, op_size);
1519 goto next_seg;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001520 }
1521
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001522
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001523 /* init OSD command: write or read */
1524 if (do_write)
1525 rbd_req_write(rq, rbd_dev,
Josh Durgind1d25642011-12-05 14:03:05 -08001526 snapc,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001527 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001528 op_size, bio,
1529 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001530 else
1531 rbd_req_read(rq, rbd_dev,
Josh Durgin77dfe992011-11-21 13:04:42 -08001532 rbd_dev->snap_id,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001533 ofs,
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001534 op_size, bio,
1535 coll, cur_seg);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001536
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001537next_seg:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001538 size -= op_size;
1539 ofs += op_size;
1540
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001541 cur_seg++;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001542 rq_bio = next_bio;
1543 } while (size > 0);
Yehuda Sadeh1fec7092011-05-13 13:52:56 -07001544 kref_put(&coll->kref, rbd_coll_release);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001545
1546 if (bp)
1547 bio_pair_release(bp);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001548 spin_lock_irq(q->queue_lock);
Josh Durgind1d25642011-12-05 14:03:05 -08001549
1550 ceph_put_snap_context(snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001551 }
1552}
1553
1554/*
1555 * a queue callback. Makes sure that we don't create a bio that spans across
1556 * multiple osd objects. One exception would be with a single page bios,
1557 * which we handle later at bio_chain_clone
1558 */
1559static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
1560 struct bio_vec *bvec)
1561{
1562 struct rbd_device *rbd_dev = q->queuedata;
Alex Elder593a9e72012-02-07 12:03:37 -06001563 unsigned int chunk_sectors;
1564 sector_t sector;
1565 unsigned int bio_sectors;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001566 int max;
1567
Alex Elder593a9e72012-02-07 12:03:37 -06001568 chunk_sectors = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
1569 sector = bmd->bi_sector + get_start_sect(bmd->bi_bdev);
1570 bio_sectors = bmd->bi_size >> SECTOR_SHIFT;
1571
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001572 max = (chunk_sectors - ((sector & (chunk_sectors - 1))
Alex Elder593a9e72012-02-07 12:03:37 -06001573 + bio_sectors)) << SECTOR_SHIFT;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001574 if (max < 0)
1575 max = 0; /* bio_add cannot handle a negative return */
1576 if (max <= bvec->bv_len && bio_sectors == 0)
1577 return bvec->bv_len;
1578 return max;
1579}
1580
1581static void rbd_free_disk(struct rbd_device *rbd_dev)
1582{
1583 struct gendisk *disk = rbd_dev->disk;
1584
1585 if (!disk)
1586 return;
1587
1588 rbd_header_free(&rbd_dev->header);
1589
1590 if (disk->flags & GENHD_FL_UP)
1591 del_gendisk(disk);
1592 if (disk->queue)
1593 blk_cleanup_queue(disk->queue);
1594 put_disk(disk);
1595}
1596
1597/*
1598 * reload the ondisk the header
1599 */
1600static int rbd_read_header(struct rbd_device *rbd_dev,
1601 struct rbd_image_header *header)
1602{
1603 ssize_t rc;
1604 struct rbd_image_header_ondisk *dh;
Xi Wang50f7c4c2012-04-20 15:49:44 -05001605 u32 snap_count = 0;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001606 u64 ver;
Alex Elder00f1f362012-02-07 12:03:36 -06001607 size_t len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001608
Alex Elder00f1f362012-02-07 12:03:36 -06001609 /*
1610 * First reads the fixed-size header to determine the number
1611 * of snapshots, then re-reads it, along with all snapshot
1612 * records as well as their stored names.
1613 */
1614 len = sizeof (*dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001615 while (1) {
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001616 dh = kmalloc(len, GFP_KERNEL);
1617 if (!dh)
1618 return -ENOMEM;
1619
1620 rc = rbd_req_sync_read(rbd_dev,
Alex Elder9a5d6902012-07-19 09:09:27 -05001621 CEPH_NOSNAP,
Alex Elder0bed54d2012-07-03 16:01:18 -05001622 rbd_dev->header_name,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001623 0, len,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001624 (char *)dh, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001625 if (rc < 0)
1626 goto out_dh;
1627
1628 rc = rbd_header_from_disk(header, dh, snap_count, GFP_KERNEL);
Josh Durgin81e759f2011-11-15 14:49:53 -08001629 if (rc < 0) {
Alex Elder00f1f362012-02-07 12:03:36 -06001630 if (rc == -ENXIO)
Josh Durgin81e759f2011-11-15 14:49:53 -08001631 pr_warning("unrecognized header format"
Alex Elder0bed54d2012-07-03 16:01:18 -05001632 " for image %s\n",
1633 rbd_dev->image_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001634 goto out_dh;
Josh Durgin81e759f2011-11-15 14:49:53 -08001635 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001636
Alex Elder00f1f362012-02-07 12:03:36 -06001637 if (snap_count == header->total_snaps)
1638 break;
1639
1640 snap_count = header->total_snaps;
1641 len = sizeof (*dh) +
1642 snap_count * sizeof(struct rbd_image_snap_ondisk) +
1643 header->snap_names_len;
1644
1645 rbd_header_free(header);
1646 kfree(dh);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001647 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001648 header->obj_version = ver;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001649
1650out_dh:
1651 kfree(dh);
1652 return rc;
1653}
1654
1655/*
1656 * create a snapshot
1657 */
Alex Elder0ce1a792012-07-03 16:01:18 -05001658static int rbd_header_add_snap(struct rbd_device *rbd_dev,
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001659 const char *snap_name,
1660 gfp_t gfp_flags)
1661{
1662 int name_len = strlen(snap_name);
1663 u64 new_snapid;
1664 int ret;
Sage Weil916d4d62011-05-12 16:10:50 -07001665 void *data, *p, *e;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07001666 u64 ver;
Alex Elder1dbb4392012-01-24 10:08:37 -06001667 struct ceph_mon_client *monc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001668
1669 /* we should create a snapshot only if we're pointing at the head */
Alex Elder0ce1a792012-07-03 16:01:18 -05001670 if (rbd_dev->snap_id != CEPH_NOSNAP)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001671 return -EINVAL;
1672
Alex Elder0ce1a792012-07-03 16:01:18 -05001673 monc = &rbd_dev->rbd_client->client->monc;
1674 ret = ceph_monc_create_snapid(monc, rbd_dev->pool_id, &new_snapid);
Alex Elderbd919d42012-07-13 20:35:11 -05001675 dout("created snapid=%llu\n", (unsigned long long) new_snapid);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001676 if (ret < 0)
1677 return ret;
1678
1679 data = kmalloc(name_len + 16, gfp_flags);
1680 if (!data)
1681 return -ENOMEM;
1682
Sage Weil916d4d62011-05-12 16:10:50 -07001683 p = data;
1684 e = data + name_len + 16;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001685
Sage Weil916d4d62011-05-12 16:10:50 -07001686 ceph_encode_string_safe(&p, e, snap_name, name_len, bad);
1687 ceph_encode_64_safe(&p, e, new_snapid, bad);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001688
Alex Elder0bed54d2012-07-03 16:01:18 -05001689 ret = rbd_req_sync_exec(rbd_dev, rbd_dev->header_name,
Alex Elder0ce1a792012-07-03 16:01:18 -05001690 "rbd", "snap_add",
Sage Weil916d4d62011-05-12 16:10:50 -07001691 data, p - data, &ver);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001692
Sage Weil916d4d62011-05-12 16:10:50 -07001693 kfree(data);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001694
Alex Elder505cbb92012-07-19 08:49:18 -05001695 return ret < 0 ? ret : 0;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001696bad:
1697 return -ERANGE;
1698}
1699
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001700static void __rbd_remove_all_snaps(struct rbd_device *rbd_dev)
1701{
1702 struct rbd_snap *snap;
Alex Eldera0593292012-07-19 09:09:27 -05001703 struct rbd_snap *next;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001704
Alex Eldera0593292012-07-19 09:09:27 -05001705 list_for_each_entry_safe(snap, next, &rbd_dev->snaps, node)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001706 __rbd_remove_snap_dev(rbd_dev, snap);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001707}
1708
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001709/*
1710 * only read the first part of the ondisk header, without the snaps info
1711 */
Josh Durgin263c6ca2011-12-05 10:43:42 -08001712static int __rbd_refresh_header(struct rbd_device *rbd_dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001713{
1714 int ret;
1715 struct rbd_image_header h;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001716
1717 ret = rbd_read_header(rbd_dev, &h);
1718 if (ret < 0)
1719 return ret;
1720
Josh Durgina51aa0c2011-12-05 10:35:04 -08001721 down_write(&rbd_dev->header_rwsem);
1722
Sage Weil9db4b3e2011-04-19 22:49:06 -07001723 /* resized? */
Josh Durgin474ef7c2011-11-21 17:13:54 -08001724 if (rbd_dev->snap_id == CEPH_NOSNAP) {
1725 sector_t size = (sector_t) h.image_size / SECTOR_SIZE;
1726
1727 dout("setting size to %llu sectors", (unsigned long long) size);
1728 set_capacity(rbd_dev->disk, size);
1729 }
Sage Weil9db4b3e2011-04-19 22:49:06 -07001730
Alex Elder849b4262012-07-09 21:04:24 -05001731 /* rbd_dev->header.object_prefix shouldn't change */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001732 kfree(rbd_dev->header.snap_sizes);
Alex Elder849b4262012-07-09 21:04:24 -05001733 kfree(rbd_dev->header.snap_names);
Josh Durgind1d25642011-12-05 14:03:05 -08001734 /* osd requests may still refer to snapc */
1735 ceph_put_snap_context(rbd_dev->header.snapc);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001736
Josh Durgina71b8912011-12-05 18:10:44 -08001737 rbd_dev->header.obj_version = h.obj_version;
Josh Durgin93a24e02011-12-05 10:41:28 -08001738 rbd_dev->header.image_size = h.image_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001739 rbd_dev->header.total_snaps = h.total_snaps;
1740 rbd_dev->header.snapc = h.snapc;
1741 rbd_dev->header.snap_names = h.snap_names;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001742 rbd_dev->header.snap_names_len = h.snap_names_len;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001743 rbd_dev->header.snap_sizes = h.snap_sizes;
Alex Elder849b4262012-07-09 21:04:24 -05001744 /* Free the extra copy of the object prefix */
1745 WARN_ON(strcmp(rbd_dev->header.object_prefix, h.object_prefix));
1746 kfree(h.object_prefix);
1747
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001748 ret = __rbd_init_snaps_header(rbd_dev);
1749
Josh Durginc6666012011-11-21 17:11:12 -08001750 up_write(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001751
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001752 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001753}
1754
1755static int rbd_init_disk(struct rbd_device *rbd_dev)
1756{
1757 struct gendisk *disk;
1758 struct request_queue *q;
1759 int rc;
Alex Elder593a9e72012-02-07 12:03:37 -06001760 u64 segment_size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001761 u64 total_size = 0;
1762
1763 /* contact OSD, request size info about the object being mapped */
1764 rc = rbd_read_header(rbd_dev, &rbd_dev->header);
1765 if (rc)
1766 return rc;
1767
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001768 /* no need to lock here, as rbd_dev is not registered yet */
1769 rc = __rbd_init_snaps_header(rbd_dev);
1770 if (rc)
1771 return rc;
1772
Josh Durgincc9d7342011-11-21 18:19:13 -08001773 rc = rbd_header_set_snap(rbd_dev, &total_size);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001774 if (rc)
1775 return rc;
1776
1777 /* create gendisk info */
1778 rc = -ENOMEM;
1779 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
1780 if (!disk)
1781 goto out;
1782
Alex Elderf0f8cef2012-01-29 13:57:44 -06001783 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
Alex Elderde71a292012-07-03 16:01:19 -05001784 rbd_dev->dev_id);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001785 disk->major = rbd_dev->major;
1786 disk->first_minor = 0;
1787 disk->fops = &rbd_bd_ops;
1788 disk->private_data = rbd_dev;
1789
1790 /* init rq */
1791 rc = -ENOMEM;
1792 q = blk_init_queue(rbd_rq_fn, &rbd_dev->lock);
1793 if (!q)
1794 goto out_disk;
Josh Durgin029bcbd2011-07-22 11:35:23 -07001795
Alex Elder593a9e72012-02-07 12:03:37 -06001796 /* We use the default size, but let's be explicit about it. */
1797 blk_queue_physical_block_size(q, SECTOR_SIZE);
1798
Josh Durgin029bcbd2011-07-22 11:35:23 -07001799 /* set io sizes to object size */
Alex Elder593a9e72012-02-07 12:03:37 -06001800 segment_size = rbd_obj_bytes(&rbd_dev->header);
1801 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
1802 blk_queue_max_segment_size(q, segment_size);
1803 blk_queue_io_min(q, segment_size);
1804 blk_queue_io_opt(q, segment_size);
Josh Durgin029bcbd2011-07-22 11:35:23 -07001805
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001806 blk_queue_merge_bvec(q, rbd_merge_bvec);
1807 disk->queue = q;
1808
1809 q->queuedata = rbd_dev;
1810
1811 rbd_dev->disk = disk;
1812 rbd_dev->q = q;
1813
1814 /* finally, announce the disk to the world */
Alex Elder593a9e72012-02-07 12:03:37 -06001815 set_capacity(disk, total_size / SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001816 add_disk(disk);
1817
1818 pr_info("%s: added with size 0x%llx\n",
1819 disk->disk_name, (unsigned long long)total_size);
1820 return 0;
1821
1822out_disk:
1823 put_disk(disk);
1824out:
1825 return rc;
1826}
1827
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001828/*
1829 sysfs
1830*/
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001831
Alex Elder593a9e72012-02-07 12:03:37 -06001832static struct rbd_device *dev_to_rbd_dev(struct device *dev)
1833{
1834 return container_of(dev, struct rbd_device, dev);
1835}
1836
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001837static ssize_t rbd_size_show(struct device *dev,
1838 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001839{
Alex Elder593a9e72012-02-07 12:03:37 -06001840 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Josh Durgina51aa0c2011-12-05 10:35:04 -08001841 sector_t size;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001842
Josh Durgina51aa0c2011-12-05 10:35:04 -08001843 down_read(&rbd_dev->header_rwsem);
1844 size = get_capacity(rbd_dev->disk);
1845 up_read(&rbd_dev->header_rwsem);
1846
1847 return sprintf(buf, "%llu\n", (unsigned long long) size * SECTOR_SIZE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001848}
1849
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001850static ssize_t rbd_major_show(struct device *dev,
1851 struct device_attribute *attr, char *buf)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001852{
Alex Elder593a9e72012-02-07 12:03:37 -06001853 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001854
1855 return sprintf(buf, "%d\n", rbd_dev->major);
1856}
1857
1858static ssize_t rbd_client_id_show(struct device *dev,
1859 struct device_attribute *attr, char *buf)
1860{
Alex Elder593a9e72012-02-07 12:03:37 -06001861 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001862
Alex Elder1dbb4392012-01-24 10:08:37 -06001863 return sprintf(buf, "client%lld\n",
1864 ceph_client_id(rbd_dev->rbd_client->client));
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001865}
1866
1867static ssize_t rbd_pool_show(struct device *dev,
1868 struct device_attribute *attr, char *buf)
1869{
Alex Elder593a9e72012-02-07 12:03:37 -06001870 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001871
1872 return sprintf(buf, "%s\n", rbd_dev->pool_name);
1873}
1874
Alex Elder9bb2f332012-07-12 10:46:35 -05001875static ssize_t rbd_pool_id_show(struct device *dev,
1876 struct device_attribute *attr, char *buf)
1877{
1878 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
1879
1880 return sprintf(buf, "%d\n", rbd_dev->pool_id);
1881}
1882
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001883static ssize_t rbd_name_show(struct device *dev,
1884 struct device_attribute *attr, char *buf)
1885{
Alex Elder593a9e72012-02-07 12:03:37 -06001886 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001887
Alex Elder0bed54d2012-07-03 16:01:18 -05001888 return sprintf(buf, "%s\n", rbd_dev->image_name);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001889}
1890
1891static ssize_t rbd_snap_show(struct device *dev,
1892 struct device_attribute *attr,
1893 char *buf)
1894{
Alex Elder593a9e72012-02-07 12:03:37 -06001895 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001896
1897 return sprintf(buf, "%s\n", rbd_dev->snap_name);
1898}
1899
1900static ssize_t rbd_image_refresh(struct device *dev,
1901 struct device_attribute *attr,
1902 const char *buf,
1903 size_t size)
1904{
Alex Elder593a9e72012-02-07 12:03:37 -06001905 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001906 int rc;
1907 int ret = size;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001908
1909 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
1910
Josh Durgin263c6ca2011-12-05 10:43:42 -08001911 rc = __rbd_refresh_header(rbd_dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001912 if (rc < 0)
1913 ret = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001914
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001915 mutex_unlock(&ctl_mutex);
1916 return ret;
1917}
Yehuda Sadeh602adf42010-08-12 16:11:25 -07001918
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001919static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
1920static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
1921static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
1922static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
Alex Elder9bb2f332012-07-12 10:46:35 -05001923static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001924static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
1925static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
1926static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
1927static DEVICE_ATTR(create_snap, S_IWUSR, NULL, rbd_snap_add);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001928
1929static struct attribute *rbd_attrs[] = {
1930 &dev_attr_size.attr,
1931 &dev_attr_major.attr,
1932 &dev_attr_client_id.attr,
1933 &dev_attr_pool.attr,
Alex Elder9bb2f332012-07-12 10:46:35 -05001934 &dev_attr_pool_id.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001935 &dev_attr_name.attr,
1936 &dev_attr_current_snap.attr,
1937 &dev_attr_refresh.attr,
1938 &dev_attr_create_snap.attr,
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001939 NULL
1940};
1941
1942static struct attribute_group rbd_attr_group = {
1943 .attrs = rbd_attrs,
1944};
1945
1946static const struct attribute_group *rbd_attr_groups[] = {
1947 &rbd_attr_group,
1948 NULL
1949};
1950
1951static void rbd_sysfs_dev_release(struct device *dev)
1952{
1953}
1954
1955static struct device_type rbd_device_type = {
1956 .name = "rbd",
1957 .groups = rbd_attr_groups,
1958 .release = rbd_sysfs_dev_release,
1959};
1960
1961
1962/*
1963 sysfs - snapshots
1964*/
1965
1966static ssize_t rbd_snap_size_show(struct device *dev,
1967 struct device_attribute *attr,
1968 char *buf)
1969{
1970 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1971
Josh Durgin3591538f2011-12-05 18:25:13 -08001972 return sprintf(buf, "%llu\n", (unsigned long long)snap->size);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001973}
1974
1975static ssize_t rbd_snap_id_show(struct device *dev,
1976 struct device_attribute *attr,
1977 char *buf)
1978{
1979 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
1980
Josh Durgin3591538f2011-12-05 18:25:13 -08001981 return sprintf(buf, "%llu\n", (unsigned long long)snap->id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08001982}
1983
1984static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
1985static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
1986
1987static struct attribute *rbd_snap_attrs[] = {
1988 &dev_attr_snap_size.attr,
1989 &dev_attr_snap_id.attr,
1990 NULL,
1991};
1992
1993static struct attribute_group rbd_snap_attr_group = {
1994 .attrs = rbd_snap_attrs,
1995};
1996
1997static void rbd_snap_dev_release(struct device *dev)
1998{
1999 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2000 kfree(snap->name);
2001 kfree(snap);
2002}
2003
2004static const struct attribute_group *rbd_snap_attr_groups[] = {
2005 &rbd_snap_attr_group,
2006 NULL
2007};
2008
2009static struct device_type rbd_snap_device_type = {
2010 .groups = rbd_snap_attr_groups,
2011 .release = rbd_snap_dev_release,
2012};
2013
2014static void __rbd_remove_snap_dev(struct rbd_device *rbd_dev,
2015 struct rbd_snap *snap)
2016{
2017 list_del(&snap->node);
2018 device_unregister(&snap->dev);
2019}
2020
2021static int rbd_register_snap_dev(struct rbd_device *rbd_dev,
2022 struct rbd_snap *snap,
2023 struct device *parent)
2024{
2025 struct device *dev = &snap->dev;
2026 int ret;
2027
2028 dev->type = &rbd_snap_device_type;
2029 dev->parent = parent;
2030 dev->release = rbd_snap_dev_release;
2031 dev_set_name(dev, "snap_%s", snap->name);
2032 ret = device_register(dev);
2033
2034 return ret;
2035}
2036
2037static int __rbd_add_snap_dev(struct rbd_device *rbd_dev,
2038 int i, const char *name,
2039 struct rbd_snap **snapp)
2040{
2041 int ret;
2042 struct rbd_snap *snap = kzalloc(sizeof(*snap), GFP_KERNEL);
2043 if (!snap)
2044 return -ENOMEM;
2045 snap->name = kstrdup(name, GFP_KERNEL);
2046 snap->size = rbd_dev->header.snap_sizes[i];
2047 snap->id = rbd_dev->header.snapc->snaps[i];
2048 if (device_is_registered(&rbd_dev->dev)) {
2049 ret = rbd_register_snap_dev(rbd_dev, snap,
2050 &rbd_dev->dev);
2051 if (ret < 0)
2052 goto err;
2053 }
2054 *snapp = snap;
2055 return 0;
2056err:
2057 kfree(snap->name);
2058 kfree(snap);
2059 return ret;
2060}
2061
2062/*
2063 * search for the previous snap in a null delimited string list
2064 */
2065const char *rbd_prev_snap_name(const char *name, const char *start)
2066{
2067 if (name < start + 2)
2068 return NULL;
2069
2070 name -= 2;
2071 while (*name) {
2072 if (name == start)
2073 return start;
2074 name--;
2075 }
2076 return name + 1;
2077}
2078
2079/*
2080 * compare the old list of snapshots that we have to what's in the header
2081 * and update it accordingly. Note that the header holds the snapshots
2082 * in a reverse order (from newest to oldest) and we need to go from
2083 * older to new so that we don't get a duplicate snap name when
2084 * doing the process (e.g., removed snapshot and recreated a new
2085 * one with the same name.
2086 */
2087static int __rbd_init_snaps_header(struct rbd_device *rbd_dev)
2088{
2089 const char *name, *first_name;
2090 int i = rbd_dev->header.total_snaps;
2091 struct rbd_snap *snap, *old_snap = NULL;
2092 int ret;
2093 struct list_head *p, *n;
2094
2095 first_name = rbd_dev->header.snap_names;
2096 name = first_name + rbd_dev->header.snap_names_len;
2097
2098 list_for_each_prev_safe(p, n, &rbd_dev->snaps) {
2099 u64 cur_id;
2100
2101 old_snap = list_entry(p, struct rbd_snap, node);
2102
2103 if (i)
2104 cur_id = rbd_dev->header.snapc->snaps[i - 1];
2105
2106 if (!i || old_snap->id < cur_id) {
Josh Durgine88a36e2011-11-21 18:14:25 -08002107 /*
2108 * old_snap->id was skipped, thus was
2109 * removed. If this rbd_dev is mapped to
2110 * the removed snapshot, record that it no
2111 * longer exists, to prevent further I/O.
2112 */
2113 if (rbd_dev->snap_id == old_snap->id)
2114 rbd_dev->snap_exists = false;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002115 __rbd_remove_snap_dev(rbd_dev, old_snap);
2116 continue;
2117 }
2118 if (old_snap->id == cur_id) {
2119 /* we have this snapshot already */
2120 i--;
2121 name = rbd_prev_snap_name(name, first_name);
2122 continue;
2123 }
2124 for (; i > 0;
2125 i--, name = rbd_prev_snap_name(name, first_name)) {
2126 if (!name) {
2127 WARN_ON(1);
2128 return -EINVAL;
2129 }
2130 cur_id = rbd_dev->header.snapc->snaps[i];
2131 /* snapshot removal? handle it above */
2132 if (cur_id >= old_snap->id)
2133 break;
2134 /* a new snapshot */
2135 ret = __rbd_add_snap_dev(rbd_dev, i - 1, name, &snap);
2136 if (ret < 0)
2137 return ret;
2138
2139 /* note that we add it backward so using n and not p */
2140 list_add(&snap->node, n);
2141 p = &snap->node;
2142 }
2143 }
2144 /* we're done going over the old snap list, just add what's left */
2145 for (; i > 0; i--) {
2146 name = rbd_prev_snap_name(name, first_name);
2147 if (!name) {
2148 WARN_ON(1);
2149 return -EINVAL;
2150 }
2151 ret = __rbd_add_snap_dev(rbd_dev, i - 1, name, &snap);
2152 if (ret < 0)
2153 return ret;
2154 list_add(&snap->node, &rbd_dev->snaps);
2155 }
2156
2157 return 0;
2158}
2159
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002160static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
2161{
Alex Elderf0f8cef2012-01-29 13:57:44 -06002162 int ret;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002163 struct device *dev;
2164 struct rbd_snap *snap;
2165
2166 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2167 dev = &rbd_dev->dev;
2168
2169 dev->bus = &rbd_bus_type;
2170 dev->type = &rbd_device_type;
2171 dev->parent = &rbd_root_dev;
2172 dev->release = rbd_dev_release;
Alex Elderde71a292012-07-03 16:01:19 -05002173 dev_set_name(dev, "%d", rbd_dev->dev_id);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002174 ret = device_register(dev);
2175 if (ret < 0)
Alex Elderf0f8cef2012-01-29 13:57:44 -06002176 goto out;
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002177
2178 list_for_each_entry(snap, &rbd_dev->snaps, node) {
2179 ret = rbd_register_snap_dev(rbd_dev, snap,
2180 &rbd_dev->dev);
2181 if (ret < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002182 break;
2183 }
Alex Elderf0f8cef2012-01-29 13:57:44 -06002184out:
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002185 mutex_unlock(&ctl_mutex);
2186 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002187}
2188
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002189static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
2190{
2191 device_unregister(&rbd_dev->dev);
2192}
2193
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002194static int rbd_init_watch_dev(struct rbd_device *rbd_dev)
2195{
2196 int ret, rc;
2197
2198 do {
Alex Elder0bed54d2012-07-03 16:01:18 -05002199 ret = rbd_req_sync_watch(rbd_dev, rbd_dev->header_name,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002200 rbd_dev->header.obj_version);
2201 if (ret == -ERANGE) {
2202 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
Josh Durgin263c6ca2011-12-05 10:43:42 -08002203 rc = __rbd_refresh_header(rbd_dev);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002204 mutex_unlock(&ctl_mutex);
2205 if (rc < 0)
2206 return rc;
2207 }
2208 } while (ret == -ERANGE);
2209
2210 return ret;
2211}
2212
Alex Elder1ddbe942012-01-29 13:57:44 -06002213static atomic64_t rbd_id_max = ATOMIC64_INIT(0);
2214
2215/*
Alex Elder499afd52012-02-02 08:13:29 -06002216 * Get a unique rbd identifier for the given new rbd_dev, and add
2217 * the rbd_dev to the global list. The minimum rbd id is 1.
Alex Elder1ddbe942012-01-29 13:57:44 -06002218 */
Alex Elder499afd52012-02-02 08:13:29 -06002219static void rbd_id_get(struct rbd_device *rbd_dev)
Alex Elderb7f23c32012-01-29 13:57:43 -06002220{
Alex Elderde71a292012-07-03 16:01:19 -05002221 rbd_dev->dev_id = atomic64_inc_return(&rbd_id_max);
Alex Elder499afd52012-02-02 08:13:29 -06002222
2223 spin_lock(&rbd_dev_list_lock);
2224 list_add_tail(&rbd_dev->node, &rbd_dev_list);
2225 spin_unlock(&rbd_dev_list_lock);
Alex Elder1ddbe942012-01-29 13:57:44 -06002226}
Alex Elderb7f23c32012-01-29 13:57:43 -06002227
Alex Elder1ddbe942012-01-29 13:57:44 -06002228/*
Alex Elder499afd52012-02-02 08:13:29 -06002229 * Remove an rbd_dev from the global list, and record that its
2230 * identifier is no longer in use.
Alex Elder1ddbe942012-01-29 13:57:44 -06002231 */
Alex Elder499afd52012-02-02 08:13:29 -06002232static void rbd_id_put(struct rbd_device *rbd_dev)
Alex Elder1ddbe942012-01-29 13:57:44 -06002233{
Alex Elderd184f6b2012-01-29 13:57:44 -06002234 struct list_head *tmp;
Alex Elderde71a292012-07-03 16:01:19 -05002235 int rbd_id = rbd_dev->dev_id;
Alex Elderd184f6b2012-01-29 13:57:44 -06002236 int max_id;
2237
2238 BUG_ON(rbd_id < 1);
Alex Elder499afd52012-02-02 08:13:29 -06002239
2240 spin_lock(&rbd_dev_list_lock);
2241 list_del_init(&rbd_dev->node);
Alex Elderd184f6b2012-01-29 13:57:44 -06002242
2243 /*
2244 * If the id being "put" is not the current maximum, there
2245 * is nothing special we need to do.
2246 */
2247 if (rbd_id != atomic64_read(&rbd_id_max)) {
2248 spin_unlock(&rbd_dev_list_lock);
2249 return;
2250 }
2251
2252 /*
2253 * We need to update the current maximum id. Search the
2254 * list to find out what it is. We're more likely to find
2255 * the maximum at the end, so search the list backward.
2256 */
2257 max_id = 0;
2258 list_for_each_prev(tmp, &rbd_dev_list) {
2259 struct rbd_device *rbd_dev;
2260
2261 rbd_dev = list_entry(tmp, struct rbd_device, node);
2262 if (rbd_id > max_id)
2263 max_id = rbd_id;
2264 }
Alex Elder499afd52012-02-02 08:13:29 -06002265 spin_unlock(&rbd_dev_list_lock);
Alex Elderb7f23c32012-01-29 13:57:43 -06002266
Alex Elder1ddbe942012-01-29 13:57:44 -06002267 /*
Alex Elderd184f6b2012-01-29 13:57:44 -06002268 * The max id could have been updated by rbd_id_get(), in
2269 * which case it now accurately reflects the new maximum.
2270 * Be careful not to overwrite the maximum value in that
2271 * case.
Alex Elder1ddbe942012-01-29 13:57:44 -06002272 */
Alex Elderd184f6b2012-01-29 13:57:44 -06002273 atomic64_cmpxchg(&rbd_id_max, rbd_id, max_id);
Alex Elderb7f23c32012-01-29 13:57:43 -06002274}
2275
Alex Eldera725f65e2012-02-02 08:13:30 -06002276/*
Alex Eldere28fff262012-02-02 08:13:30 -06002277 * Skips over white space at *buf, and updates *buf to point to the
2278 * first found non-space character (if any). Returns the length of
Alex Elder593a9e72012-02-07 12:03:37 -06002279 * the token (string of non-white space characters) found. Note
2280 * that *buf must be terminated with '\0'.
Alex Eldere28fff262012-02-02 08:13:30 -06002281 */
2282static inline size_t next_token(const char **buf)
2283{
2284 /*
2285 * These are the characters that produce nonzero for
2286 * isspace() in the "C" and "POSIX" locales.
2287 */
2288 const char *spaces = " \f\n\r\t\v";
2289
2290 *buf += strspn(*buf, spaces); /* Find start of token */
2291
2292 return strcspn(*buf, spaces); /* Return token length */
2293}
2294
2295/*
2296 * Finds the next token in *buf, and if the provided token buffer is
2297 * big enough, copies the found token into it. The result, if
Alex Elder593a9e72012-02-07 12:03:37 -06002298 * copied, is guaranteed to be terminated with '\0'. Note that *buf
2299 * must be terminated with '\0' on entry.
Alex Eldere28fff262012-02-02 08:13:30 -06002300 *
2301 * Returns the length of the token found (not including the '\0').
2302 * Return value will be 0 if no token is found, and it will be >=
2303 * token_size if the token would not fit.
2304 *
Alex Elder593a9e72012-02-07 12:03:37 -06002305 * The *buf pointer will be updated to point beyond the end of the
Alex Eldere28fff262012-02-02 08:13:30 -06002306 * found token. Note that this occurs even if the token buffer is
2307 * too small to hold it.
2308 */
2309static inline size_t copy_token(const char **buf,
2310 char *token,
2311 size_t token_size)
2312{
2313 size_t len;
2314
2315 len = next_token(buf);
2316 if (len < token_size) {
2317 memcpy(token, *buf, len);
2318 *(token + len) = '\0';
2319 }
2320 *buf += len;
2321
2322 return len;
2323}
2324
2325/*
Alex Elderea3352f2012-07-09 21:04:23 -05002326 * Finds the next token in *buf, dynamically allocates a buffer big
2327 * enough to hold a copy of it, and copies the token into the new
2328 * buffer. The copy is guaranteed to be terminated with '\0'. Note
2329 * that a duplicate buffer is created even for a zero-length token.
2330 *
2331 * Returns a pointer to the newly-allocated duplicate, or a null
2332 * pointer if memory for the duplicate was not available. If
2333 * the lenp argument is a non-null pointer, the length of the token
2334 * (not including the '\0') is returned in *lenp.
2335 *
2336 * If successful, the *buf pointer will be updated to point beyond
2337 * the end of the found token.
2338 *
2339 * Note: uses GFP_KERNEL for allocation.
2340 */
2341static inline char *dup_token(const char **buf, size_t *lenp)
2342{
2343 char *dup;
2344 size_t len;
2345
2346 len = next_token(buf);
2347 dup = kmalloc(len + 1, GFP_KERNEL);
2348 if (!dup)
2349 return NULL;
2350
2351 memcpy(dup, *buf, len);
2352 *(dup + len) = '\0';
2353 *buf += len;
2354
2355 if (lenp)
2356 *lenp = len;
2357
2358 return dup;
2359}
2360
2361/*
Alex Elder0bed54d2012-07-03 16:01:18 -05002362 * This fills in the pool_name, image_name, image_name_len, snap_name,
Alex Eldera725f65e2012-02-02 08:13:30 -06002363 * rbd_dev, rbd_md_name, and name fields of the given rbd_dev, based
2364 * on the list of monitor addresses and other options provided via
2365 * /sys/bus/rbd/add.
Alex Elderd22f76e2012-07-12 10:46:35 -05002366 *
2367 * Note: rbd_dev is assumed to have been initially zero-filled.
Alex Eldera725f65e2012-02-02 08:13:30 -06002368 */
2369static int rbd_add_parse_args(struct rbd_device *rbd_dev,
2370 const char *buf,
Alex Elder7ef32142012-02-02 08:13:30 -06002371 const char **mon_addrs,
Alex Elder5214ecc2012-02-02 08:13:30 -06002372 size_t *mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002373 char *options,
Alex Elder0bed54d2012-07-03 16:01:18 -05002374 size_t options_size)
Alex Eldera725f65e2012-02-02 08:13:30 -06002375{
Alex Elderd22f76e2012-07-12 10:46:35 -05002376 size_t len;
2377 int ret;
Alex Eldere28fff262012-02-02 08:13:30 -06002378
2379 /* The first four tokens are required */
2380
Alex Elder7ef32142012-02-02 08:13:30 -06002381 len = next_token(&buf);
2382 if (!len)
Alex Eldera725f65e2012-02-02 08:13:30 -06002383 return -EINVAL;
Alex Elder5214ecc2012-02-02 08:13:30 -06002384 *mon_addrs_size = len + 1;
Alex Elder7ef32142012-02-02 08:13:30 -06002385 *mon_addrs = buf;
2386
2387 buf += len;
Alex Eldera725f65e2012-02-02 08:13:30 -06002388
Alex Eldere28fff262012-02-02 08:13:30 -06002389 len = copy_token(&buf, options, options_size);
2390 if (!len || len >= options_size)
2391 return -EINVAL;
Alex Eldera725f65e2012-02-02 08:13:30 -06002392
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002393 ret = -ENOMEM;
Alex Elderd22f76e2012-07-12 10:46:35 -05002394 rbd_dev->pool_name = dup_token(&buf, NULL);
2395 if (!rbd_dev->pool_name)
Alex Elderd22f76e2012-07-12 10:46:35 -05002396 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002397
Alex Elder0bed54d2012-07-03 16:01:18 -05002398 rbd_dev->image_name = dup_token(&buf, &rbd_dev->image_name_len);
2399 if (!rbd_dev->image_name)
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002400 goto out_err;
Alex Eldere28fff262012-02-02 08:13:30 -06002401
Alex Eldercb8627c2012-07-09 21:04:23 -05002402 /* Create the name of the header object */
2403
Alex Elder0bed54d2012-07-03 16:01:18 -05002404 rbd_dev->header_name = kmalloc(rbd_dev->image_name_len
Alex Elderbf3e5ae2012-07-09 21:04:23 -05002405 + sizeof (RBD_SUFFIX),
2406 GFP_KERNEL);
Alex Elder0bed54d2012-07-03 16:01:18 -05002407 if (!rbd_dev->header_name)
Alex Eldercb8627c2012-07-09 21:04:23 -05002408 goto out_err;
Alex Elder0bed54d2012-07-03 16:01:18 -05002409 sprintf(rbd_dev->header_name, "%s%s", rbd_dev->image_name, RBD_SUFFIX);
Alex Eldera725f65e2012-02-02 08:13:30 -06002410
Alex Eldere28fff262012-02-02 08:13:30 -06002411 /*
Alex Elder820a5f32012-07-09 21:04:24 -05002412 * The snapshot name is optional. If none is is supplied,
2413 * we use the default value.
Alex Eldere28fff262012-02-02 08:13:30 -06002414 */
Alex Elder820a5f32012-07-09 21:04:24 -05002415 rbd_dev->snap_name = dup_token(&buf, &len);
2416 if (!rbd_dev->snap_name)
2417 goto out_err;
2418 if (!len) {
2419 /* Replace the empty name with the default */
2420 kfree(rbd_dev->snap_name);
2421 rbd_dev->snap_name
2422 = kmalloc(sizeof (RBD_SNAP_HEAD_NAME), GFP_KERNEL);
2423 if (!rbd_dev->snap_name)
2424 goto out_err;
2425
Alex Eldere28fff262012-02-02 08:13:30 -06002426 memcpy(rbd_dev->snap_name, RBD_SNAP_HEAD_NAME,
2427 sizeof (RBD_SNAP_HEAD_NAME));
Alex Elder849b4262012-07-09 21:04:24 -05002428 }
Alex Eldere28fff262012-02-02 08:13:30 -06002429
Alex Eldera725f65e2012-02-02 08:13:30 -06002430 return 0;
Alex Elderd22f76e2012-07-12 10:46:35 -05002431
2432out_err:
Alex Elder0bed54d2012-07-03 16:01:18 -05002433 kfree(rbd_dev->header_name);
2434 kfree(rbd_dev->image_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002435 kfree(rbd_dev->pool_name);
2436 rbd_dev->pool_name = NULL;
2437
2438 return ret;
Alex Eldera725f65e2012-02-02 08:13:30 -06002439}
2440
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002441static ssize_t rbd_add(struct bus_type *bus,
2442 const char *buf,
2443 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002444{
Alex Eldercb8627c2012-07-09 21:04:23 -05002445 char *options;
2446 struct rbd_device *rbd_dev = NULL;
Alex Elder7ef32142012-02-02 08:13:30 -06002447 const char *mon_addrs = NULL;
2448 size_t mon_addrs_size = 0;
Alex Elder27cc2592012-02-02 08:13:30 -06002449 struct ceph_osd_client *osdc;
2450 int rc = -ENOMEM;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002451
2452 if (!try_module_get(THIS_MODULE))
2453 return -ENODEV;
2454
Alex Elder27cc2592012-02-02 08:13:30 -06002455 options = kmalloc(count, GFP_KERNEL);
2456 if (!options)
2457 goto err_nomem;
Alex Eldercb8627c2012-07-09 21:04:23 -05002458 rbd_dev = kzalloc(sizeof(*rbd_dev), GFP_KERNEL);
2459 if (!rbd_dev)
2460 goto err_nomem;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002461
2462 /* static rbd_device initialization */
2463 spin_lock_init(&rbd_dev->lock);
2464 INIT_LIST_HEAD(&rbd_dev->node);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002465 INIT_LIST_HEAD(&rbd_dev->snaps);
Josh Durginc6666012011-11-21 17:11:12 -08002466 init_rwsem(&rbd_dev->header_rwsem);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002467
Alex Elderd184f6b2012-01-29 13:57:44 -06002468 /* generate unique id: find highest unique id, add one */
Alex Elder499afd52012-02-02 08:13:29 -06002469 rbd_id_get(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002470
Alex Eldera725f65e2012-02-02 08:13:30 -06002471 /* Fill in the device name, now that we have its id. */
Alex Elder81a89792012-02-02 08:13:30 -06002472 BUILD_BUG_ON(DEV_NAME_LEN
2473 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
Alex Elderde71a292012-07-03 16:01:19 -05002474 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
Alex Eldere124a82f2012-01-29 13:57:44 -06002475
Alex Eldera725f65e2012-02-02 08:13:30 -06002476 /* parse add command */
Alex Elder7ef32142012-02-02 08:13:30 -06002477 rc = rbd_add_parse_args(rbd_dev, buf, &mon_addrs, &mon_addrs_size,
Alex Eldere28fff262012-02-02 08:13:30 -06002478 options, count);
Alex Eldera725f65e2012-02-02 08:13:30 -06002479 if (rc)
2480 goto err_put_id;
2481
Alex Elder5214ecc2012-02-02 08:13:30 -06002482 rbd_dev->rbd_client = rbd_get_client(mon_addrs, mon_addrs_size - 1,
2483 options);
Alex Elderd720bcb2012-02-02 08:13:30 -06002484 if (IS_ERR(rbd_dev->rbd_client)) {
2485 rc = PTR_ERR(rbd_dev->rbd_client);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002486 goto err_put_id;
Alex Elderd720bcb2012-02-02 08:13:30 -06002487 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002488
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002489 /* pick the pool */
Alex Elder1dbb4392012-01-24 10:08:37 -06002490 osdc = &rbd_dev->rbd_client->client->osdc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002491 rc = ceph_pg_poolid_by_name(osdc->osdmap, rbd_dev->pool_name);
2492 if (rc < 0)
2493 goto err_out_client;
Alex Elder9bb2f332012-07-12 10:46:35 -05002494 rbd_dev->pool_id = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002495
2496 /* register our block device */
Alex Elder27cc2592012-02-02 08:13:30 -06002497 rc = register_blkdev(0, rbd_dev->name);
2498 if (rc < 0)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002499 goto err_out_client;
Alex Elder27cc2592012-02-02 08:13:30 -06002500 rbd_dev->major = rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002501
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002502 rc = rbd_bus_add_dev(rbd_dev);
2503 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002504 goto err_out_blkdev;
2505
Alex Elder32eec682012-02-08 16:11:14 -06002506 /*
2507 * At this point cleanup in the event of an error is the job
2508 * of the sysfs code (initiated by rbd_bus_del_dev()).
2509 *
2510 * Set up and announce blkdev mapping.
2511 */
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002512 rc = rbd_init_disk(rbd_dev);
2513 if (rc)
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002514 goto err_out_bus;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002515
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002516 rc = rbd_init_watch_dev(rbd_dev);
2517 if (rc)
2518 goto err_out_bus;
2519
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002520 return count;
2521
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002522err_out_bus:
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002523 /* this will also clean up rest of rbd_dev stuff */
2524
2525 rbd_bus_del_dev(rbd_dev);
2526 kfree(options);
Yehuda Sadeh766fc432011-01-07 14:58:42 -08002527 return rc;
2528
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002529err_out_blkdev:
2530 unregister_blkdev(rbd_dev->major, rbd_dev->name);
2531err_out_client:
2532 rbd_put_client(rbd_dev);
Alex Elderf0f8cef2012-01-29 13:57:44 -06002533err_put_id:
Alex Eldercb8627c2012-07-09 21:04:23 -05002534 if (rbd_dev->pool_name) {
Alex Elder820a5f32012-07-09 21:04:24 -05002535 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002536 kfree(rbd_dev->header_name);
2537 kfree(rbd_dev->image_name);
Alex Eldercb8627c2012-07-09 21:04:23 -05002538 kfree(rbd_dev->pool_name);
2539 }
Alex Elder499afd52012-02-02 08:13:29 -06002540 rbd_id_put(rbd_dev);
Alex Elder27cc2592012-02-02 08:13:30 -06002541err_nomem:
Alex Elder27cc2592012-02-02 08:13:30 -06002542 kfree(rbd_dev);
Alex Eldercb8627c2012-07-09 21:04:23 -05002543 kfree(options);
Alex Elder27cc2592012-02-02 08:13:30 -06002544
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002545 dout("Error adding device %s\n", buf);
2546 module_put(THIS_MODULE);
Alex Elder27cc2592012-02-02 08:13:30 -06002547
2548 return (ssize_t) rc;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002549}
2550
Alex Elderde71a292012-07-03 16:01:19 -05002551static struct rbd_device *__rbd_get_dev(unsigned long dev_id)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002552{
2553 struct list_head *tmp;
2554 struct rbd_device *rbd_dev;
2555
Alex Eldere124a82f2012-01-29 13:57:44 -06002556 spin_lock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002557 list_for_each(tmp, &rbd_dev_list) {
2558 rbd_dev = list_entry(tmp, struct rbd_device, node);
Alex Elderde71a292012-07-03 16:01:19 -05002559 if (rbd_dev->dev_id == dev_id) {
Alex Eldere124a82f2012-01-29 13:57:44 -06002560 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002561 return rbd_dev;
Alex Eldere124a82f2012-01-29 13:57:44 -06002562 }
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002563 }
Alex Eldere124a82f2012-01-29 13:57:44 -06002564 spin_unlock(&rbd_dev_list_lock);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002565 return NULL;
2566}
2567
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002568static void rbd_dev_release(struct device *dev)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002569{
Alex Elder593a9e72012-02-07 12:03:37 -06002570 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002571
Alex Elder1dbb4392012-01-24 10:08:37 -06002572 if (rbd_dev->watch_request) {
2573 struct ceph_client *client = rbd_dev->rbd_client->client;
2574
2575 ceph_osdc_unregister_linger_request(&client->osdc,
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002576 rbd_dev->watch_request);
Alex Elder1dbb4392012-01-24 10:08:37 -06002577 }
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002578 if (rbd_dev->watch_event)
Alex Elder0bed54d2012-07-03 16:01:18 -05002579 rbd_req_sync_unwatch(rbd_dev, rbd_dev->header_name);
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002580
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002581 rbd_put_client(rbd_dev);
2582
2583 /* clean up and free blkdev */
2584 rbd_free_disk(rbd_dev);
2585 unregister_blkdev(rbd_dev->major, rbd_dev->name);
Alex Elder32eec682012-02-08 16:11:14 -06002586
2587 /* done with the id, and with the rbd_dev */
Alex Elder820a5f32012-07-09 21:04:24 -05002588 kfree(rbd_dev->snap_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002589 kfree(rbd_dev->header_name);
Alex Elderd22f76e2012-07-12 10:46:35 -05002590 kfree(rbd_dev->pool_name);
Alex Elder0bed54d2012-07-03 16:01:18 -05002591 kfree(rbd_dev->image_name);
Alex Elder32eec682012-02-08 16:11:14 -06002592 rbd_id_put(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002593 kfree(rbd_dev);
2594
2595 /* release module ref */
2596 module_put(THIS_MODULE);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002597}
2598
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002599static ssize_t rbd_remove(struct bus_type *bus,
2600 const char *buf,
2601 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002602{
2603 struct rbd_device *rbd_dev = NULL;
2604 int target_id, rc;
2605 unsigned long ul;
2606 int ret = count;
2607
2608 rc = strict_strtoul(buf, 10, &ul);
2609 if (rc)
2610 return rc;
2611
2612 /* convert to int; abort if we lost anything in the conversion */
2613 target_id = (int) ul;
2614 if (target_id != ul)
2615 return -EINVAL;
2616
2617 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2618
2619 rbd_dev = __rbd_get_dev(target_id);
2620 if (!rbd_dev) {
2621 ret = -ENOENT;
2622 goto done;
2623 }
2624
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002625 __rbd_remove_all_snaps(rbd_dev);
2626 rbd_bus_del_dev(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002627
2628done:
2629 mutex_unlock(&ctl_mutex);
2630 return ret;
2631}
2632
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002633static ssize_t rbd_snap_add(struct device *dev,
2634 struct device_attribute *attr,
2635 const char *buf,
2636 size_t count)
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002637{
Alex Elder593a9e72012-02-07 12:03:37 -06002638 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002639 int ret;
2640 char *name = kmalloc(count + 1, GFP_KERNEL);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002641 if (!name)
2642 return -ENOMEM;
2643
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002644 snprintf(name, count, "%s", buf);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002645
2646 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
2647
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002648 ret = rbd_header_add_snap(rbd_dev,
2649 name, GFP_KERNEL);
2650 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002651 goto err_unlock;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002652
Josh Durgin263c6ca2011-12-05 10:43:42 -08002653 ret = __rbd_refresh_header(rbd_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002654 if (ret < 0)
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002655 goto err_unlock;
2656
2657 /* shouldn't hold ctl_mutex when notifying.. notify might
2658 trigger a watch callback that would need to get that mutex */
2659 mutex_unlock(&ctl_mutex);
2660
2661 /* make a best effort, don't error if failed */
Alex Elder0bed54d2012-07-03 16:01:18 -05002662 rbd_req_sync_notify(rbd_dev, rbd_dev->header_name);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002663
2664 ret = count;
Yehuda Sadeh59c2be12011-03-21 15:10:11 -07002665 kfree(name);
2666 return ret;
2667
2668err_unlock:
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002669 mutex_unlock(&ctl_mutex);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002670 kfree(name);
2671 return ret;
2672}
2673
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002674/*
2675 * create control files in sysfs
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002676 * /sys/bus/rbd/...
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002677 */
2678static int rbd_sysfs_init(void)
2679{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002680 int ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002681
Alex Elderfed4c142012-02-07 12:03:36 -06002682 ret = device_register(&rbd_root_dev);
Alex Elder21079782012-01-24 10:08:36 -06002683 if (ret < 0)
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002684 return ret;
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002685
Alex Elderfed4c142012-02-07 12:03:36 -06002686 ret = bus_register(&rbd_bus_type);
2687 if (ret < 0)
2688 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002689
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002690 return ret;
2691}
2692
2693static void rbd_sysfs_cleanup(void)
2694{
Yehuda Sadehdfc56062010-11-19 14:51:04 -08002695 bus_unregister(&rbd_bus_type);
Alex Elderfed4c142012-02-07 12:03:36 -06002696 device_unregister(&rbd_root_dev);
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002697}
2698
2699int __init rbd_init(void)
2700{
2701 int rc;
2702
2703 rc = rbd_sysfs_init();
2704 if (rc)
2705 return rc;
Alex Elderf0f8cef2012-01-29 13:57:44 -06002706 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
Yehuda Sadeh602adf42010-08-12 16:11:25 -07002707 return 0;
2708}
2709
2710void __exit rbd_exit(void)
2711{
2712 rbd_sysfs_cleanup();
2713}
2714
2715module_init(rbd_init);
2716module_exit(rbd_exit);
2717
2718MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
2719MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
2720MODULE_DESCRIPTION("rados block device");
2721
2722/* following authorship retained from original osdblk.c */
2723MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
2724
2725MODULE_LICENSE("GPL");