]> git.ipfire.org Git - people/arne_f/kernel.git/blame - drivers/block/rbd.c
libceph: use void pointers in page vector functions
[people/arne_f/kernel.git] / drivers / block / rbd.c
CommitLineData
602adf40
YS
1/*
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
dfc5606d 24 For usage instructions, please refer to:
602adf40 25
dfc5606d 26 Documentation/ABI/testing/sysfs-bus-rbd
602adf40
YS
27
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>
59c2be1e 34#include <linux/parser.h>
602adf40
YS
35
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
aafb230e
AE
44#define RBD_DEBUG /* Activate rbd_assert() calls */
45
593a9e7b
AE
46/*
47 * The basic unit of block I/O is a sector. It is interpreted in a
48 * number of contexts in Linux (blk, bio, genhd), but the default is
49 * universally 512 bytes. These symbols are just slightly more
50 * meaningful than the bare numbers they represent.
51 */
52#define SECTOR_SHIFT 9
53#define SECTOR_SIZE (1ULL << SECTOR_SHIFT)
54
2647ba38 55/* It might be useful to have these defined elsewhere */
df111be6 56
2647ba38
AE
57#define U8_MAX ((u8) (~0U))
58#define U16_MAX ((u16) (~0U))
59#define U32_MAX ((u32) (~0U))
60#define U64_MAX ((u64) (~0ULL))
df111be6 61
f0f8cef5
AE
62#define RBD_DRV_NAME "rbd"
63#define RBD_DRV_NAME_LONG "rbd (rados block device)"
602adf40
YS
64
65#define RBD_MINORS_PER_MAJOR 256 /* max minors per blkdev */
66
d4b125e9
AE
67#define RBD_SNAP_DEV_NAME_PREFIX "snap_"
68#define RBD_MAX_SNAP_NAME_LEN \
69 (NAME_MAX - (sizeof (RBD_SNAP_DEV_NAME_PREFIX) - 1))
70
35d489f9 71#define RBD_MAX_SNAP_COUNT 510 /* allows max snapc to fit in 4KB */
602adf40
YS
72
73#define RBD_SNAP_HEAD_NAME "-"
74
9e15b77d
AE
75/* This allows a single page to hold an image name sent by OSD */
76#define RBD_IMAGE_NAME_LEN_MAX (PAGE_SIZE - sizeof (__le32) - 1)
1e130199 77#define RBD_IMAGE_ID_LEN_MAX 64
9e15b77d 78
1e130199 79#define RBD_OBJ_PREFIX_LEN_MAX 64
589d30e0 80
d889140c
AE
81/* Feature bits */
82
83#define RBD_FEATURE_LAYERING 1
84
85/* Features supported by this (client software) implementation. */
86
87#define RBD_FEATURES_ALL (0)
88
81a89793
AE
89/*
90 * An RBD device name will be "rbd#", where the "rbd" comes from
91 * RBD_DRV_NAME above, and # is a unique integer identifier.
92 * MAX_INT_FORMAT_WIDTH is used in ensuring DEV_NAME_LEN is big
93 * enough to hold all possible device names.
94 */
602adf40 95#define DEV_NAME_LEN 32
81a89793 96#define MAX_INT_FORMAT_WIDTH ((5 * sizeof (int)) / 2 + 1)
602adf40
YS
97
98/*
99 * block device image metadata (in-memory version)
100 */
101struct rbd_image_header {
f84344f3 102 /* These four fields never change for a given rbd image */
849b4260 103 char *object_prefix;
34b13184 104 u64 features;
602adf40
YS
105 __u8 obj_order;
106 __u8 crypt_type;
107 __u8 comp_type;
602adf40 108
f84344f3
AE
109 /* The remaining fields need to be updated occasionally */
110 u64 image_size;
111 struct ceph_snap_context *snapc;
602adf40
YS
112 char *snap_names;
113 u64 *snap_sizes;
59c2be1e
YS
114
115 u64 obj_version;
116};
117
0d7dbfce
AE
118/*
119 * An rbd image specification.
120 *
121 * The tuple (pool_id, image_id, snap_id) is sufficient to uniquely
c66c6e0c
AE
122 * identify an image. Each rbd_dev structure includes a pointer to
123 * an rbd_spec structure that encapsulates this identity.
124 *
125 * Each of the id's in an rbd_spec has an associated name. For a
126 * user-mapped image, the names are supplied and the id's associated
127 * with them are looked up. For a layered image, a parent image is
128 * defined by the tuple, and the names are looked up.
129 *
130 * An rbd_dev structure contains a parent_spec pointer which is
131 * non-null if the image it represents is a child in a layered
132 * image. This pointer will refer to the rbd_spec structure used
133 * by the parent rbd_dev for its own identity (i.e., the structure
134 * is shared between the parent and child).
135 *
136 * Since these structures are populated once, during the discovery
137 * phase of image construction, they are effectively immutable so
138 * we make no effort to synchronize access to them.
139 *
140 * Note that code herein does not assume the image name is known (it
141 * could be a null pointer).
0d7dbfce
AE
142 */
143struct rbd_spec {
144 u64 pool_id;
145 char *pool_name;
146
147 char *image_id;
0d7dbfce 148 char *image_name;
0d7dbfce
AE
149
150 u64 snap_id;
151 char *snap_name;
152
153 struct kref kref;
154};
155
602adf40 156/*
f0f8cef5 157 * an instance of the client. multiple devices may share an rbd client.
602adf40
YS
158 */
159struct rbd_client {
160 struct ceph_client *client;
161 struct kref kref;
162 struct list_head node;
163};
164
bf0d5f50
AE
165struct rbd_img_request;
166typedef void (*rbd_img_callback_t)(struct rbd_img_request *);
167
168#define BAD_WHICH U32_MAX /* Good which or bad which, which? */
169
170struct rbd_obj_request;
171typedef void (*rbd_obj_callback_t)(struct rbd_obj_request *);
172
9969ebc5
AE
173enum obj_request_type {
174 OBJ_REQUEST_NODATA, OBJ_REQUEST_BIO, OBJ_REQUEST_PAGES
175};
bf0d5f50
AE
176
177struct rbd_obj_request {
178 const char *object_name;
179 u64 offset; /* object start byte */
180 u64 length; /* bytes from offset */
181
182 struct rbd_img_request *img_request;
183 struct list_head links; /* img_request->obj_requests */
184 u32 which; /* posn image request list */
185
186 enum obj_request_type type;
788e2df3
AE
187 union {
188 struct bio *bio_list;
189 struct {
190 struct page **pages;
191 u32 page_count;
192 };
193 };
bf0d5f50
AE
194
195 struct ceph_osd_request *osd_req;
196
197 u64 xferred; /* bytes transferred */
198 u64 version;
199 s32 result;
200 atomic_t done;
201
202 rbd_obj_callback_t callback;
788e2df3 203 struct completion completion;
bf0d5f50
AE
204
205 struct kref kref;
206};
207
208struct rbd_img_request {
209 struct request *rq;
210 struct rbd_device *rbd_dev;
211 u64 offset; /* starting image byte offset */
212 u64 length; /* byte count from offset */
213 bool write_request; /* false for read */
214 union {
215 struct ceph_snap_context *snapc; /* for writes */
216 u64 snap_id; /* for reads */
217 };
218 spinlock_t completion_lock;/* protects next_completion */
219 u32 next_completion;
220 rbd_img_callback_t callback;
221
222 u32 obj_request_count;
223 struct list_head obj_requests; /* rbd_obj_request structs */
224
225 struct kref kref;
226};
227
228#define for_each_obj_request(ireq, oreq) \
ef06f4d3 229 list_for_each_entry(oreq, &(ireq)->obj_requests, links)
bf0d5f50 230#define for_each_obj_request_from(ireq, oreq) \
ef06f4d3 231 list_for_each_entry_from(oreq, &(ireq)->obj_requests, links)
bf0d5f50 232#define for_each_obj_request_safe(ireq, oreq, n) \
ef06f4d3 233 list_for_each_entry_safe_reverse(oreq, n, &(ireq)->obj_requests, links)
bf0d5f50 234
dfc5606d
YS
235struct rbd_snap {
236 struct device dev;
237 const char *name;
3591538f 238 u64 size;
dfc5606d
YS
239 struct list_head node;
240 u64 id;
34b13184 241 u64 features;
dfc5606d
YS
242};
243
f84344f3 244struct rbd_mapping {
99c1f08f 245 u64 size;
34b13184 246 u64 features;
f84344f3
AE
247 bool read_only;
248};
249
602adf40
YS
250/*
251 * a single device
252 */
253struct rbd_device {
de71a297 254 int dev_id; /* blkdev unique id */
602adf40
YS
255
256 int major; /* blkdev assigned major */
257 struct gendisk *disk; /* blkdev's gendisk and rq */
602adf40 258
a30b71b9 259 u32 image_format; /* Either 1 or 2 */
602adf40
YS
260 struct rbd_client *rbd_client;
261
262 char name[DEV_NAME_LEN]; /* blkdev name, e.g. rbd3 */
263
b82d167b 264 spinlock_t lock; /* queue, flags, open_count */
602adf40
YS
265
266 struct rbd_image_header header;
b82d167b 267 unsigned long flags; /* possibly lock protected */
0d7dbfce 268 struct rbd_spec *spec;
602adf40 269
0d7dbfce 270 char *header_name;
971f839a 271
0903e875
AE
272 struct ceph_file_layout layout;
273
59c2be1e 274 struct ceph_osd_event *watch_event;
975241af 275 struct rbd_obj_request *watch_request;
59c2be1e 276
86b00e0d
AE
277 struct rbd_spec *parent_spec;
278 u64 parent_overlap;
279
c666601a
JD
280 /* protects updating the header */
281 struct rw_semaphore header_rwsem;
f84344f3
AE
282
283 struct rbd_mapping mapping;
602adf40
YS
284
285 struct list_head node;
dfc5606d
YS
286
287 /* list of snapshots */
288 struct list_head snaps;
289
290 /* sysfs related */
291 struct device dev;
b82d167b 292 unsigned long open_count; /* protected by lock */
dfc5606d
YS
293};
294
b82d167b
AE
295/*
296 * Flag bits for rbd_dev->flags. If atomicity is required,
297 * rbd_dev->lock is used to protect access.
298 *
299 * Currently, only the "removing" flag (which is coupled with the
300 * "open_count" field) requires atomic access.
301 */
6d292906
AE
302enum rbd_dev_flags {
303 RBD_DEV_FLAG_EXISTS, /* mapped snapshot has not been deleted */
b82d167b 304 RBD_DEV_FLAG_REMOVING, /* this mapping is being removed */
6d292906
AE
305};
306
602adf40 307static DEFINE_MUTEX(ctl_mutex); /* Serialize open/close/setup/teardown */
e124a82f 308
602adf40 309static LIST_HEAD(rbd_dev_list); /* devices */
e124a82f
AE
310static DEFINE_SPINLOCK(rbd_dev_list_lock);
311
432b8587
AE
312static LIST_HEAD(rbd_client_list); /* clients */
313static DEFINE_SPINLOCK(rbd_client_list_lock);
602adf40 314
304f6808
AE
315static int rbd_dev_snaps_update(struct rbd_device *rbd_dev);
316static int rbd_dev_snaps_register(struct rbd_device *rbd_dev);
317
dfc5606d 318static void rbd_dev_release(struct device *dev);
41f38c2b 319static void rbd_remove_snap_dev(struct rbd_snap *snap);
dfc5606d 320
f0f8cef5
AE
321static ssize_t rbd_add(struct bus_type *bus, const char *buf,
322 size_t count);
323static ssize_t rbd_remove(struct bus_type *bus, const char *buf,
324 size_t count);
325
326static struct bus_attribute rbd_bus_attrs[] = {
327 __ATTR(add, S_IWUSR, NULL, rbd_add),
328 __ATTR(remove, S_IWUSR, NULL, rbd_remove),
329 __ATTR_NULL
330};
331
332static struct bus_type rbd_bus_type = {
333 .name = "rbd",
334 .bus_attrs = rbd_bus_attrs,
335};
336
337static void rbd_root_dev_release(struct device *dev)
338{
339}
340
341static struct device rbd_root_dev = {
342 .init_name = "rbd",
343 .release = rbd_root_dev_release,
344};
345
06ecc6cb
AE
346static __printf(2, 3)
347void rbd_warn(struct rbd_device *rbd_dev, const char *fmt, ...)
348{
349 struct va_format vaf;
350 va_list args;
351
352 va_start(args, fmt);
353 vaf.fmt = fmt;
354 vaf.va = &args;
355
356 if (!rbd_dev)
357 printk(KERN_WARNING "%s: %pV\n", RBD_DRV_NAME, &vaf);
358 else if (rbd_dev->disk)
359 printk(KERN_WARNING "%s: %s: %pV\n",
360 RBD_DRV_NAME, rbd_dev->disk->disk_name, &vaf);
361 else if (rbd_dev->spec && rbd_dev->spec->image_name)
362 printk(KERN_WARNING "%s: image %s: %pV\n",
363 RBD_DRV_NAME, rbd_dev->spec->image_name, &vaf);
364 else if (rbd_dev->spec && rbd_dev->spec->image_id)
365 printk(KERN_WARNING "%s: id %s: %pV\n",
366 RBD_DRV_NAME, rbd_dev->spec->image_id, &vaf);
367 else /* punt */
368 printk(KERN_WARNING "%s: rbd_dev %p: %pV\n",
369 RBD_DRV_NAME, rbd_dev, &vaf);
370 va_end(args);
371}
372
aafb230e
AE
373#ifdef RBD_DEBUG
374#define rbd_assert(expr) \
375 if (unlikely(!(expr))) { \
376 printk(KERN_ERR "\nAssertion failure in %s() " \
377 "at line %d:\n\n" \
378 "\trbd_assert(%s);\n\n", \
379 __func__, __LINE__, #expr); \
380 BUG(); \
381 }
382#else /* !RBD_DEBUG */
383# define rbd_assert(expr) ((void) 0)
384#endif /* !RBD_DEBUG */
dfc5606d 385
117973fb
AE
386static int rbd_dev_refresh(struct rbd_device *rbd_dev, u64 *hver);
387static int rbd_dev_v2_refresh(struct rbd_device *rbd_dev, u64 *hver);
59c2be1e 388
602adf40
YS
389static int rbd_open(struct block_device *bdev, fmode_t mode)
390{
f0f8cef5 391 struct rbd_device *rbd_dev = bdev->bd_disk->private_data;
b82d167b 392 bool removing = false;
602adf40 393
f84344f3 394 if ((mode & FMODE_WRITE) && rbd_dev->mapping.read_only)
602adf40
YS
395 return -EROFS;
396
a14ea269 397 spin_lock_irq(&rbd_dev->lock);
b82d167b
AE
398 if (test_bit(RBD_DEV_FLAG_REMOVING, &rbd_dev->flags))
399 removing = true;
400 else
401 rbd_dev->open_count++;
a14ea269 402 spin_unlock_irq(&rbd_dev->lock);
b82d167b
AE
403 if (removing)
404 return -ENOENT;
405
42382b70 406 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
c3e946ce 407 (void) get_device(&rbd_dev->dev);
f84344f3 408 set_device_ro(bdev, rbd_dev->mapping.read_only);
42382b70 409 mutex_unlock(&ctl_mutex);
340c7a2b 410
602adf40
YS
411 return 0;
412}
413
dfc5606d
YS
414static int rbd_release(struct gendisk *disk, fmode_t mode)
415{
416 struct rbd_device *rbd_dev = disk->private_data;
b82d167b
AE
417 unsigned long open_count_before;
418
a14ea269 419 spin_lock_irq(&rbd_dev->lock);
b82d167b 420 open_count_before = rbd_dev->open_count--;
a14ea269 421 spin_unlock_irq(&rbd_dev->lock);
b82d167b 422 rbd_assert(open_count_before > 0);
dfc5606d 423
42382b70 424 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
c3e946ce 425 put_device(&rbd_dev->dev);
42382b70 426 mutex_unlock(&ctl_mutex);
dfc5606d
YS
427
428 return 0;
429}
430
602adf40
YS
431static const struct block_device_operations rbd_bd_ops = {
432 .owner = THIS_MODULE,
433 .open = rbd_open,
dfc5606d 434 .release = rbd_release,
602adf40
YS
435};
436
437/*
438 * Initialize an rbd client instance.
43ae4701 439 * We own *ceph_opts.
602adf40 440 */
f8c38929 441static struct rbd_client *rbd_client_create(struct ceph_options *ceph_opts)
602adf40
YS
442{
443 struct rbd_client *rbdc;
444 int ret = -ENOMEM;
445
446 dout("rbd_client_create\n");
447 rbdc = kmalloc(sizeof(struct rbd_client), GFP_KERNEL);
448 if (!rbdc)
449 goto out_opt;
450
451 kref_init(&rbdc->kref);
452 INIT_LIST_HEAD(&rbdc->node);
453
bc534d86
AE
454 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
455
43ae4701 456 rbdc->client = ceph_create_client(ceph_opts, rbdc, 0, 0);
602adf40 457 if (IS_ERR(rbdc->client))
bc534d86 458 goto out_mutex;
43ae4701 459 ceph_opts = NULL; /* Now rbdc->client is responsible for ceph_opts */
602adf40
YS
460
461 ret = ceph_open_session(rbdc->client);
462 if (ret < 0)
463 goto out_err;
464
432b8587 465 spin_lock(&rbd_client_list_lock);
602adf40 466 list_add_tail(&rbdc->node, &rbd_client_list);
432b8587 467 spin_unlock(&rbd_client_list_lock);
602adf40 468
bc534d86
AE
469 mutex_unlock(&ctl_mutex);
470
602adf40
YS
471 dout("rbd_client_create created %p\n", rbdc);
472 return rbdc;
473
474out_err:
475 ceph_destroy_client(rbdc->client);
bc534d86
AE
476out_mutex:
477 mutex_unlock(&ctl_mutex);
602adf40
YS
478 kfree(rbdc);
479out_opt:
43ae4701
AE
480 if (ceph_opts)
481 ceph_destroy_options(ceph_opts);
28f259b7 482 return ERR_PTR(ret);
602adf40
YS
483}
484
485/*
1f7ba331
AE
486 * Find a ceph client with specific addr and configuration. If
487 * found, bump its reference count.
602adf40 488 */
1f7ba331 489static struct rbd_client *rbd_client_find(struct ceph_options *ceph_opts)
602adf40
YS
490{
491 struct rbd_client *client_node;
1f7ba331 492 bool found = false;
602adf40 493
43ae4701 494 if (ceph_opts->flags & CEPH_OPT_NOSHARE)
602adf40
YS
495 return NULL;
496
1f7ba331
AE
497 spin_lock(&rbd_client_list_lock);
498 list_for_each_entry(client_node, &rbd_client_list, node) {
499 if (!ceph_compare_options(ceph_opts, client_node->client)) {
500 kref_get(&client_node->kref);
501 found = true;
502 break;
503 }
504 }
505 spin_unlock(&rbd_client_list_lock);
506
507 return found ? client_node : NULL;
602adf40
YS
508}
509
59c2be1e
YS
510/*
511 * mount options
512 */
513enum {
59c2be1e
YS
514 Opt_last_int,
515 /* int args above */
516 Opt_last_string,
517 /* string args above */
cc0538b6
AE
518 Opt_read_only,
519 Opt_read_write,
520 /* Boolean args above */
521 Opt_last_bool,
59c2be1e
YS
522};
523
43ae4701 524static match_table_t rbd_opts_tokens = {
59c2be1e
YS
525 /* int args above */
526 /* string args above */
be466c1c 527 {Opt_read_only, "read_only"},
cc0538b6
AE
528 {Opt_read_only, "ro"}, /* Alternate spelling */
529 {Opt_read_write, "read_write"},
530 {Opt_read_write, "rw"}, /* Alternate spelling */
531 /* Boolean args above */
59c2be1e
YS
532 {-1, NULL}
533};
534
98571b5a
AE
535struct rbd_options {
536 bool read_only;
537};
538
539#define RBD_READ_ONLY_DEFAULT false
540
59c2be1e
YS
541static int parse_rbd_opts_token(char *c, void *private)
542{
43ae4701 543 struct rbd_options *rbd_opts = private;
59c2be1e
YS
544 substring_t argstr[MAX_OPT_ARGS];
545 int token, intval, ret;
546
43ae4701 547 token = match_token(c, rbd_opts_tokens, argstr);
59c2be1e
YS
548 if (token < 0)
549 return -EINVAL;
550
551 if (token < Opt_last_int) {
552 ret = match_int(&argstr[0], &intval);
553 if (ret < 0) {
554 pr_err("bad mount option arg (not int) "
555 "at '%s'\n", c);
556 return ret;
557 }
558 dout("got int token %d val %d\n", token, intval);
559 } else if (token > Opt_last_int && token < Opt_last_string) {
560 dout("got string token %d val %s\n", token,
561 argstr[0].from);
cc0538b6
AE
562 } else if (token > Opt_last_string && token < Opt_last_bool) {
563 dout("got Boolean token %d\n", token);
59c2be1e
YS
564 } else {
565 dout("got token %d\n", token);
566 }
567
568 switch (token) {
cc0538b6
AE
569 case Opt_read_only:
570 rbd_opts->read_only = true;
571 break;
572 case Opt_read_write:
573 rbd_opts->read_only = false;
574 break;
59c2be1e 575 default:
aafb230e
AE
576 rbd_assert(false);
577 break;
59c2be1e
YS
578 }
579 return 0;
580}
581
602adf40
YS
582/*
583 * Get a ceph client with specific addr and configuration, if one does
584 * not exist create it.
585 */
9d3997fd 586static struct rbd_client *rbd_get_client(struct ceph_options *ceph_opts)
602adf40 587{
f8c38929 588 struct rbd_client *rbdc;
59c2be1e 589
1f7ba331 590 rbdc = rbd_client_find(ceph_opts);
9d3997fd 591 if (rbdc) /* using an existing client */
43ae4701 592 ceph_destroy_options(ceph_opts);
9d3997fd 593 else
f8c38929 594 rbdc = rbd_client_create(ceph_opts);
602adf40 595
9d3997fd 596 return rbdc;
602adf40
YS
597}
598
599/*
600 * Destroy ceph client
d23a4b3f 601 *
432b8587 602 * Caller must hold rbd_client_list_lock.
602adf40
YS
603 */
604static void rbd_client_release(struct kref *kref)
605{
606 struct rbd_client *rbdc = container_of(kref, struct rbd_client, kref);
607
608 dout("rbd_release_client %p\n", rbdc);
cd9d9f5d 609 spin_lock(&rbd_client_list_lock);
602adf40 610 list_del(&rbdc->node);
cd9d9f5d 611 spin_unlock(&rbd_client_list_lock);
602adf40
YS
612
613 ceph_destroy_client(rbdc->client);
614 kfree(rbdc);
615}
616
617/*
618 * Drop reference to ceph client node. If it's not referenced anymore, release
619 * it.
620 */
9d3997fd 621static void rbd_put_client(struct rbd_client *rbdc)
602adf40 622{
c53d5893
AE
623 if (rbdc)
624 kref_put(&rbdc->kref, rbd_client_release);
602adf40
YS
625}
626
a30b71b9
AE
627static bool rbd_image_format_valid(u32 image_format)
628{
629 return image_format == 1 || image_format == 2;
630}
631
8e94af8e
AE
632static bool rbd_dev_ondisk_valid(struct rbd_image_header_ondisk *ondisk)
633{
103a150f
AE
634 size_t size;
635 u32 snap_count;
636
637 /* The header has to start with the magic rbd header text */
638 if (memcmp(&ondisk->text, RBD_HEADER_TEXT, sizeof (RBD_HEADER_TEXT)))
639 return false;
640
db2388b6
AE
641 /* The bio layer requires at least sector-sized I/O */
642
643 if (ondisk->options.order < SECTOR_SHIFT)
644 return false;
645
646 /* If we use u64 in a few spots we may be able to loosen this */
647
648 if (ondisk->options.order > 8 * sizeof (int) - 1)
649 return false;
650
103a150f
AE
651 /*
652 * The size of a snapshot header has to fit in a size_t, and
653 * that limits the number of snapshots.
654 */
655 snap_count = le32_to_cpu(ondisk->snap_count);
656 size = SIZE_MAX - sizeof (struct ceph_snap_context);
657 if (snap_count > size / sizeof (__le64))
658 return false;
659
660 /*
661 * Not only that, but the size of the entire the snapshot
662 * header must also be representable in a size_t.
663 */
664 size -= snap_count * sizeof (__le64);
665 if ((u64) size < le64_to_cpu(ondisk->snap_names_len))
666 return false;
667
668 return true;
8e94af8e
AE
669}
670
602adf40
YS
671/*
672 * Create a new header structure, translate header format from the on-disk
673 * header.
674 */
675static int rbd_header_from_disk(struct rbd_image_header *header,
4156d998 676 struct rbd_image_header_ondisk *ondisk)
602adf40 677{
ccece235 678 u32 snap_count;
58c17b0e 679 size_t len;
d2bb24e5 680 size_t size;
621901d6 681 u32 i;
602adf40 682
6a52325f
AE
683 memset(header, 0, sizeof (*header));
684
103a150f
AE
685 snap_count = le32_to_cpu(ondisk->snap_count);
686
58c17b0e
AE
687 len = strnlen(ondisk->object_prefix, sizeof (ondisk->object_prefix));
688 header->object_prefix = kmalloc(len + 1, GFP_KERNEL);
6a52325f 689 if (!header->object_prefix)
602adf40 690 return -ENOMEM;
58c17b0e
AE
691 memcpy(header->object_prefix, ondisk->object_prefix, len);
692 header->object_prefix[len] = '\0';
00f1f36f 693
602adf40 694 if (snap_count) {
f785cc1d
AE
695 u64 snap_names_len = le64_to_cpu(ondisk->snap_names_len);
696
621901d6
AE
697 /* Save a copy of the snapshot names */
698
f785cc1d
AE
699 if (snap_names_len > (u64) SIZE_MAX)
700 return -EIO;
701 header->snap_names = kmalloc(snap_names_len, GFP_KERNEL);
602adf40 702 if (!header->snap_names)
6a52325f 703 goto out_err;
f785cc1d
AE
704 /*
705 * Note that rbd_dev_v1_header_read() guarantees
706 * the ondisk buffer we're working with has
707 * snap_names_len bytes beyond the end of the
708 * snapshot id array, this memcpy() is safe.
709 */
710 memcpy(header->snap_names, &ondisk->snaps[snap_count],
711 snap_names_len);
6a52325f 712
621901d6
AE
713 /* Record each snapshot's size */
714
d2bb24e5
AE
715 size = snap_count * sizeof (*header->snap_sizes);
716 header->snap_sizes = kmalloc(size, GFP_KERNEL);
602adf40 717 if (!header->snap_sizes)
6a52325f 718 goto out_err;
621901d6
AE
719 for (i = 0; i < snap_count; i++)
720 header->snap_sizes[i] =
721 le64_to_cpu(ondisk->snaps[i].image_size);
602adf40 722 } else {
ccece235 723 WARN_ON(ondisk->snap_names_len);
602adf40
YS
724 header->snap_names = NULL;
725 header->snap_sizes = NULL;
726 }
849b4260 727
34b13184 728 header->features = 0; /* No features support in v1 images */
602adf40
YS
729 header->obj_order = ondisk->options.order;
730 header->crypt_type = ondisk->options.crypt_type;
731 header->comp_type = ondisk->options.comp_type;
6a52325f 732
621901d6
AE
733 /* Allocate and fill in the snapshot context */
734
f84344f3 735 header->image_size = le64_to_cpu(ondisk->image_size);
6a52325f
AE
736 size = sizeof (struct ceph_snap_context);
737 size += snap_count * sizeof (header->snapc->snaps[0]);
738 header->snapc = kzalloc(size, GFP_KERNEL);
739 if (!header->snapc)
740 goto out_err;
602adf40
YS
741
742 atomic_set(&header->snapc->nref, 1);
505cbb9b 743 header->snapc->seq = le64_to_cpu(ondisk->snap_seq);
602adf40 744 header->snapc->num_snaps = snap_count;
621901d6
AE
745 for (i = 0; i < snap_count; i++)
746 header->snapc->snaps[i] =
747 le64_to_cpu(ondisk->snaps[i].id);
602adf40
YS
748
749 return 0;
750
6a52325f 751out_err:
849b4260 752 kfree(header->snap_sizes);
ccece235 753 header->snap_sizes = NULL;
602adf40 754 kfree(header->snap_names);
ccece235 755 header->snap_names = NULL;
6a52325f
AE
756 kfree(header->object_prefix);
757 header->object_prefix = NULL;
ccece235 758
00f1f36f 759 return -ENOMEM;
602adf40
YS
760}
761
9e15b77d
AE
762static const char *rbd_snap_name(struct rbd_device *rbd_dev, u64 snap_id)
763{
764 struct rbd_snap *snap;
765
766 if (snap_id == CEPH_NOSNAP)
767 return RBD_SNAP_HEAD_NAME;
768
769 list_for_each_entry(snap, &rbd_dev->snaps, node)
770 if (snap_id == snap->id)
771 return snap->name;
772
773 return NULL;
774}
775
8836b995 776static int snap_by_name(struct rbd_device *rbd_dev, const char *snap_name)
602adf40 777{
602adf40 778
e86924a8 779 struct rbd_snap *snap;
602adf40 780
e86924a8
AE
781 list_for_each_entry(snap, &rbd_dev->snaps, node) {
782 if (!strcmp(snap_name, snap->name)) {
0d7dbfce 783 rbd_dev->spec->snap_id = snap->id;
e86924a8 784 rbd_dev->mapping.size = snap->size;
34b13184 785 rbd_dev->mapping.features = snap->features;
602adf40 786
e86924a8 787 return 0;
00f1f36f 788 }
00f1f36f 789 }
e86924a8 790
00f1f36f 791 return -ENOENT;
602adf40
YS
792}
793
819d52bf 794static int rbd_dev_set_mapping(struct rbd_device *rbd_dev)
602adf40 795{
78dc447d 796 int ret;
602adf40 797
0d7dbfce 798 if (!memcmp(rbd_dev->spec->snap_name, RBD_SNAP_HEAD_NAME,
cc9d734c 799 sizeof (RBD_SNAP_HEAD_NAME))) {
0d7dbfce 800 rbd_dev->spec->snap_id = CEPH_NOSNAP;
99c1f08f 801 rbd_dev->mapping.size = rbd_dev->header.image_size;
34b13184 802 rbd_dev->mapping.features = rbd_dev->header.features;
e86924a8 803 ret = 0;
602adf40 804 } else {
0d7dbfce 805 ret = snap_by_name(rbd_dev, rbd_dev->spec->snap_name);
602adf40
YS
806 if (ret < 0)
807 goto done;
f84344f3 808 rbd_dev->mapping.read_only = true;
602adf40 809 }
6d292906
AE
810 set_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags);
811
602adf40 812done:
602adf40
YS
813 return ret;
814}
815
816static void rbd_header_free(struct rbd_image_header *header)
817{
849b4260 818 kfree(header->object_prefix);
d78fd7ae 819 header->object_prefix = NULL;
602adf40 820 kfree(header->snap_sizes);
d78fd7ae 821 header->snap_sizes = NULL;
849b4260 822 kfree(header->snap_names);
d78fd7ae 823 header->snap_names = NULL;
d1d25646 824 ceph_put_snap_context(header->snapc);
d78fd7ae 825 header->snapc = NULL;
602adf40
YS
826}
827
98571b5a 828static const char *rbd_segment_name(struct rbd_device *rbd_dev, u64 offset)
602adf40 829{
65ccfe21
AE
830 char *name;
831 u64 segment;
832 int ret;
602adf40 833
2fd82b9e 834 name = kmalloc(MAX_OBJ_NAME_SIZE + 1, GFP_NOIO);
65ccfe21
AE
835 if (!name)
836 return NULL;
837 segment = offset >> rbd_dev->header.obj_order;
2fd82b9e 838 ret = snprintf(name, MAX_OBJ_NAME_SIZE + 1, "%s.%012llx",
65ccfe21 839 rbd_dev->header.object_prefix, segment);
2fd82b9e 840 if (ret < 0 || ret > MAX_OBJ_NAME_SIZE) {
65ccfe21
AE
841 pr_err("error formatting segment name for #%llu (%d)\n",
842 segment, ret);
843 kfree(name);
844 name = NULL;
845 }
602adf40 846
65ccfe21
AE
847 return name;
848}
602adf40 849
65ccfe21
AE
850static u64 rbd_segment_offset(struct rbd_device *rbd_dev, u64 offset)
851{
852 u64 segment_size = (u64) 1 << rbd_dev->header.obj_order;
602adf40 853
65ccfe21
AE
854 return offset & (segment_size - 1);
855}
856
857static u64 rbd_segment_length(struct rbd_device *rbd_dev,
858 u64 offset, u64 length)
859{
860 u64 segment_size = (u64) 1 << rbd_dev->header.obj_order;
861
862 offset &= segment_size - 1;
863
aafb230e 864 rbd_assert(length <= U64_MAX - offset);
65ccfe21
AE
865 if (offset + length > segment_size)
866 length = segment_size - offset;
867
868 return length;
602adf40
YS
869}
870
029bcbd8
JD
871/*
872 * returns the size of an object in the image
873 */
874static u64 rbd_obj_bytes(struct rbd_image_header *header)
875{
876 return 1 << header->obj_order;
877}
878
602adf40
YS
879/*
880 * bio helpers
881 */
882
883static void bio_chain_put(struct bio *chain)
884{
885 struct bio *tmp;
886
887 while (chain) {
888 tmp = chain;
889 chain = chain->bi_next;
890 bio_put(tmp);
891 }
892}
893
894/*
895 * zeros a bio chain, starting at specific offset
896 */
897static void zero_bio_chain(struct bio *chain, int start_ofs)
898{
899 struct bio_vec *bv;
900 unsigned long flags;
901 void *buf;
902 int i;
903 int pos = 0;
904
905 while (chain) {
906 bio_for_each_segment(bv, chain, i) {
907 if (pos + bv->bv_len > start_ofs) {
908 int remainder = max(start_ofs - pos, 0);
909 buf = bvec_kmap_irq(bv, &flags);
910 memset(buf + remainder, 0,
911 bv->bv_len - remainder);
85b5aaa6 912 bvec_kunmap_irq(buf, &flags);
602adf40
YS
913 }
914 pos += bv->bv_len;
915 }
916
917 chain = chain->bi_next;
918 }
919}
920
921/*
f7760dad
AE
922 * Clone a portion of a bio, starting at the given byte offset
923 * and continuing for the number of bytes indicated.
602adf40 924 */
f7760dad
AE
925static struct bio *bio_clone_range(struct bio *bio_src,
926 unsigned int offset,
927 unsigned int len,
928 gfp_t gfpmask)
602adf40 929{
f7760dad
AE
930 struct bio_vec *bv;
931 unsigned int resid;
932 unsigned short idx;
933 unsigned int voff;
934 unsigned short end_idx;
935 unsigned short vcnt;
936 struct bio *bio;
937
938 /* Handle the easy case for the caller */
939
940 if (!offset && len == bio_src->bi_size)
941 return bio_clone(bio_src, gfpmask);
942
943 if (WARN_ON_ONCE(!len))
944 return NULL;
945 if (WARN_ON_ONCE(len > bio_src->bi_size))
946 return NULL;
947 if (WARN_ON_ONCE(offset > bio_src->bi_size - len))
948 return NULL;
949
950 /* Find first affected segment... */
951
952 resid = offset;
953 __bio_for_each_segment(bv, bio_src, idx, 0) {
954 if (resid < bv->bv_len)
955 break;
956 resid -= bv->bv_len;
602adf40 957 }
f7760dad 958 voff = resid;
602adf40 959
f7760dad 960 /* ...and the last affected segment */
602adf40 961
f7760dad
AE
962 resid += len;
963 __bio_for_each_segment(bv, bio_src, end_idx, idx) {
964 if (resid <= bv->bv_len)
965 break;
966 resid -= bv->bv_len;
967 }
968 vcnt = end_idx - idx + 1;
969
970 /* Build the clone */
971
972 bio = bio_alloc(gfpmask, (unsigned int) vcnt);
973 if (!bio)
974 return NULL; /* ENOMEM */
602adf40 975
f7760dad
AE
976 bio->bi_bdev = bio_src->bi_bdev;
977 bio->bi_sector = bio_src->bi_sector + (offset >> SECTOR_SHIFT);
978 bio->bi_rw = bio_src->bi_rw;
979 bio->bi_flags |= 1 << BIO_CLONED;
980
981 /*
982 * Copy over our part of the bio_vec, then update the first
983 * and last (or only) entries.
984 */
985 memcpy(&bio->bi_io_vec[0], &bio_src->bi_io_vec[idx],
986 vcnt * sizeof (struct bio_vec));
987 bio->bi_io_vec[0].bv_offset += voff;
988 if (vcnt > 1) {
989 bio->bi_io_vec[0].bv_len -= voff;
990 bio->bi_io_vec[vcnt - 1].bv_len = resid;
991 } else {
992 bio->bi_io_vec[0].bv_len = len;
602adf40
YS
993 }
994
f7760dad
AE
995 bio->bi_vcnt = vcnt;
996 bio->bi_size = len;
997 bio->bi_idx = 0;
998
999 return bio;
1000}
1001
1002/*
1003 * Clone a portion of a bio chain, starting at the given byte offset
1004 * into the first bio in the source chain and continuing for the
1005 * number of bytes indicated. The result is another bio chain of
1006 * exactly the given length, or a null pointer on error.
1007 *
1008 * The bio_src and offset parameters are both in-out. On entry they
1009 * refer to the first source bio and the offset into that bio where
1010 * the start of data to be cloned is located.
1011 *
1012 * On return, bio_src is updated to refer to the bio in the source
1013 * chain that contains first un-cloned byte, and *offset will
1014 * contain the offset of that byte within that bio.
1015 */
1016static struct bio *bio_chain_clone_range(struct bio **bio_src,
1017 unsigned int *offset,
1018 unsigned int len,
1019 gfp_t gfpmask)
1020{
1021 struct bio *bi = *bio_src;
1022 unsigned int off = *offset;
1023 struct bio *chain = NULL;
1024 struct bio **end;
1025
1026 /* Build up a chain of clone bios up to the limit */
1027
1028 if (!bi || off >= bi->bi_size || !len)
1029 return NULL; /* Nothing to clone */
602adf40 1030
f7760dad
AE
1031 end = &chain;
1032 while (len) {
1033 unsigned int bi_size;
1034 struct bio *bio;
1035
f5400b7a
AE
1036 if (!bi) {
1037 rbd_warn(NULL, "bio_chain exhausted with %u left", len);
f7760dad 1038 goto out_err; /* EINVAL; ran out of bio's */
f5400b7a 1039 }
f7760dad
AE
1040 bi_size = min_t(unsigned int, bi->bi_size - off, len);
1041 bio = bio_clone_range(bi, off, bi_size, gfpmask);
1042 if (!bio)
1043 goto out_err; /* ENOMEM */
1044
1045 *end = bio;
1046 end = &bio->bi_next;
602adf40 1047
f7760dad
AE
1048 off += bi_size;
1049 if (off == bi->bi_size) {
1050 bi = bi->bi_next;
1051 off = 0;
1052 }
1053 len -= bi_size;
1054 }
1055 *bio_src = bi;
1056 *offset = off;
1057
1058 return chain;
1059out_err:
1060 bio_chain_put(chain);
602adf40 1061
602adf40
YS
1062 return NULL;
1063}
1064
bf0d5f50
AE
1065static void rbd_obj_request_get(struct rbd_obj_request *obj_request)
1066{
1067 kref_get(&obj_request->kref);
1068}
1069
1070static void rbd_obj_request_destroy(struct kref *kref);
1071static void rbd_obj_request_put(struct rbd_obj_request *obj_request)
1072{
1073 rbd_assert(obj_request != NULL);
1074 kref_put(&obj_request->kref, rbd_obj_request_destroy);
1075}
1076
1077static void rbd_img_request_get(struct rbd_img_request *img_request)
1078{
1079 kref_get(&img_request->kref);
1080}
1081
1082static void rbd_img_request_destroy(struct kref *kref);
1083static void rbd_img_request_put(struct rbd_img_request *img_request)
1084{
1085 rbd_assert(img_request != NULL);
1086 kref_put(&img_request->kref, rbd_img_request_destroy);
1087}
1088
1089static inline void rbd_img_obj_request_add(struct rbd_img_request *img_request,
1090 struct rbd_obj_request *obj_request)
1091{
25dcf954
AE
1092 rbd_assert(obj_request->img_request == NULL);
1093
bf0d5f50
AE
1094 rbd_obj_request_get(obj_request);
1095 obj_request->img_request = img_request;
25dcf954 1096 obj_request->which = img_request->obj_request_count;
bf0d5f50 1097 rbd_assert(obj_request->which != BAD_WHICH);
25dcf954
AE
1098 img_request->obj_request_count++;
1099 list_add_tail(&obj_request->links, &img_request->obj_requests);
bf0d5f50
AE
1100}
1101
1102static inline void rbd_img_obj_request_del(struct rbd_img_request *img_request,
1103 struct rbd_obj_request *obj_request)
1104{
1105 rbd_assert(obj_request->which != BAD_WHICH);
25dcf954 1106
bf0d5f50 1107 list_del(&obj_request->links);
25dcf954
AE
1108 rbd_assert(img_request->obj_request_count > 0);
1109 img_request->obj_request_count--;
1110 rbd_assert(obj_request->which == img_request->obj_request_count);
1111 obj_request->which = BAD_WHICH;
bf0d5f50 1112 rbd_assert(obj_request->img_request == img_request);
bf0d5f50 1113 obj_request->img_request = NULL;
25dcf954 1114 obj_request->callback = NULL;
bf0d5f50
AE
1115 rbd_obj_request_put(obj_request);
1116}
1117
1118static bool obj_request_type_valid(enum obj_request_type type)
1119{
1120 switch (type) {
9969ebc5 1121 case OBJ_REQUEST_NODATA:
bf0d5f50 1122 case OBJ_REQUEST_BIO:
788e2df3 1123 case OBJ_REQUEST_PAGES:
bf0d5f50
AE
1124 return true;
1125 default:
1126 return false;
1127 }
1128}
1129
8d23bf29
AE
1130struct ceph_osd_req_op *rbd_osd_req_op_create(u16 opcode, ...)
1131{
1132 struct ceph_osd_req_op *op;
1133 va_list args;
2647ba38 1134 size_t size;
8d23bf29
AE
1135
1136 op = kzalloc(sizeof (*op), GFP_NOIO);
1137 if (!op)
1138 return NULL;
1139 op->op = opcode;
1140 va_start(args, opcode);
1141 switch (opcode) {
1142 case CEPH_OSD_OP_READ:
1143 case CEPH_OSD_OP_WRITE:
1144 /* rbd_osd_req_op_create(READ, offset, length) */
1145 /* rbd_osd_req_op_create(WRITE, offset, length) */
1146 op->extent.offset = va_arg(args, u64);
1147 op->extent.length = va_arg(args, u64);
1148 if (opcode == CEPH_OSD_OP_WRITE)
1149 op->payload_len = op->extent.length;
1150 break;
fbfab539
AE
1151 case CEPH_OSD_OP_STAT:
1152 break;
2647ba38
AE
1153 case CEPH_OSD_OP_CALL:
1154 /* rbd_osd_req_op_create(CALL, class, method, data, datalen) */
1155 op->cls.class_name = va_arg(args, char *);
1156 size = strlen(op->cls.class_name);
1157 rbd_assert(size <= (size_t) U8_MAX);
1158 op->cls.class_len = size;
1159 op->payload_len = size;
1160
1161 op->cls.method_name = va_arg(args, char *);
1162 size = strlen(op->cls.method_name);
1163 rbd_assert(size <= (size_t) U8_MAX);
1164 op->cls.method_len = size;
1165 op->payload_len += size;
1166
1167 op->cls.argc = 0;
1168 op->cls.indata = va_arg(args, void *);
1169 size = va_arg(args, size_t);
1170 rbd_assert(size <= (size_t) U32_MAX);
1171 op->cls.indata_len = (u32) size;
1172 op->payload_len += size;
1173 break;
5efea49a
AE
1174 case CEPH_OSD_OP_NOTIFY_ACK:
1175 case CEPH_OSD_OP_WATCH:
1176 /* rbd_osd_req_op_create(NOTIFY_ACK, cookie, version) */
1177 /* rbd_osd_req_op_create(WATCH, cookie, version, flag) */
1178 op->watch.cookie = va_arg(args, u64);
1179 op->watch.ver = va_arg(args, u64);
1180 op->watch.ver = cpu_to_le64(op->watch.ver);
1181 if (opcode == CEPH_OSD_OP_WATCH && va_arg(args, int))
1182 op->watch.flag = (u8) 1;
1183 break;
8d23bf29
AE
1184 default:
1185 rbd_warn(NULL, "unsupported opcode %hu\n", opcode);
1186 kfree(op);
1187 op = NULL;
1188 break;
1189 }
1190 va_end(args);
1191
1192 return op;
1193}
1194
1195static void rbd_osd_req_op_destroy(struct ceph_osd_req_op *op)
1196{
1197 kfree(op);
1198}
1199
bf0d5f50
AE
1200static int rbd_obj_request_submit(struct ceph_osd_client *osdc,
1201 struct rbd_obj_request *obj_request)
1202{
1203 return ceph_osdc_start_request(osdc, obj_request->osd_req, false);
1204}
1205
1206static void rbd_img_request_complete(struct rbd_img_request *img_request)
1207{
1208 if (img_request->callback)
1209 img_request->callback(img_request);
1210 else
1211 rbd_img_request_put(img_request);
1212}
1213
788e2df3
AE
1214/* Caller is responsible for rbd_obj_request_destroy(obj_request) */
1215
1216static int rbd_obj_request_wait(struct rbd_obj_request *obj_request)
1217{
1218 return wait_for_completion_interruptible(&obj_request->completion);
1219}
1220
07741308
AE
1221static void obj_request_done_init(struct rbd_obj_request *obj_request)
1222{
1223 atomic_set(&obj_request->done, 0);
1224 smp_wmb();
1225}
1226
1227static void obj_request_done_set(struct rbd_obj_request *obj_request)
1228{
1229 atomic_set(&obj_request->done, 1);
1230 smp_wmb();
1231}
1232
1233static bool obj_request_done_test(struct rbd_obj_request *obj_request)
1234{
1235 smp_rmb();
1236 return atomic_read(&obj_request->done) != 0;
1237}
1238
9969ebc5
AE
1239static void rbd_osd_trivial_callback(struct rbd_obj_request *obj_request,
1240 struct ceph_osd_op *op)
1241{
07741308 1242 obj_request_done_set(obj_request);
9969ebc5
AE
1243}
1244
bf0d5f50
AE
1245static void rbd_obj_request_complete(struct rbd_obj_request *obj_request)
1246{
1247 if (obj_request->callback)
1248 obj_request->callback(obj_request);
788e2df3
AE
1249 else
1250 complete_all(&obj_request->completion);
bf0d5f50
AE
1251}
1252
bf0d5f50
AE
1253static void rbd_osd_read_callback(struct rbd_obj_request *obj_request,
1254 struct ceph_osd_op *op)
1255{
1256 u64 xferred;
1257
1258 /*
1259 * We support a 64-bit length, but ultimately it has to be
1260 * passed to blk_end_request(), which takes an unsigned int.
1261 */
1262 xferred = le64_to_cpu(op->extent.length);
1263 rbd_assert(xferred < (u64) UINT_MAX);
1264 if (obj_request->result == (s32) -ENOENT) {
1265 zero_bio_chain(obj_request->bio_list, 0);
1266 obj_request->result = 0;
1267 } else if (xferred < obj_request->length && !obj_request->result) {
1268 zero_bio_chain(obj_request->bio_list, xferred);
1269 xferred = obj_request->length;
1270 }
1271 obj_request->xferred = xferred;
07741308 1272 obj_request_done_set(obj_request);
bf0d5f50
AE
1273}
1274
1275static void rbd_osd_write_callback(struct rbd_obj_request *obj_request,
1276 struct ceph_osd_op *op)
1277{
1278 obj_request->xferred = le64_to_cpu(op->extent.length);
07741308 1279 obj_request_done_set(obj_request);
bf0d5f50
AE
1280}
1281
fbfab539
AE
1282/*
1283 * For a simple stat call there's nothing to do. We'll do more if
1284 * this is part of a write sequence for a layered image.
1285 */
1286static void rbd_osd_stat_callback(struct rbd_obj_request *obj_request,
1287 struct ceph_osd_op *op)
1288{
1289 obj_request_done_set(obj_request);
1290}
1291
bf0d5f50
AE
1292static void rbd_osd_req_callback(struct ceph_osd_request *osd_req,
1293 struct ceph_msg *msg)
1294{
1295 struct rbd_obj_request *obj_request = osd_req->r_priv;
1296 struct ceph_osd_reply_head *reply_head;
1297 struct ceph_osd_op *op;
1298 u32 num_ops;
1299 u16 opcode;
1300
1301 rbd_assert(osd_req == obj_request->osd_req);
1302 rbd_assert(!!obj_request->img_request ^
1303 (obj_request->which == BAD_WHICH));
1304
1305 obj_request->xferred = le32_to_cpu(msg->hdr.data_len);
1306 reply_head = msg->front.iov_base;
1307 obj_request->result = (s32) le32_to_cpu(reply_head->result);
1308 obj_request->version = le64_to_cpu(osd_req->r_reassert_version.version);
1309
1310 num_ops = le32_to_cpu(reply_head->num_ops);
1311 WARN_ON(num_ops != 1); /* For now */
1312
1313 op = &reply_head->ops[0];
1314 opcode = le16_to_cpu(op->op);
1315 switch (opcode) {
1316 case CEPH_OSD_OP_READ:
1317 rbd_osd_read_callback(obj_request, op);
1318 break;
1319 case CEPH_OSD_OP_WRITE:
1320 rbd_osd_write_callback(obj_request, op);
1321 break;
fbfab539
AE
1322 case CEPH_OSD_OP_STAT:
1323 rbd_osd_stat_callback(obj_request, op);
1324 break;
36be9a76 1325 case CEPH_OSD_OP_CALL:
b8d70035 1326 case CEPH_OSD_OP_NOTIFY_ACK:
9969ebc5
AE
1327 case CEPH_OSD_OP_WATCH:
1328 rbd_osd_trivial_callback(obj_request, op);
1329 break;
bf0d5f50
AE
1330 default:
1331 rbd_warn(NULL, "%s: unsupported op %hu\n",
1332 obj_request->object_name, (unsigned short) opcode);
1333 break;
1334 }
1335
07741308 1336 if (obj_request_done_test(obj_request))
bf0d5f50
AE
1337 rbd_obj_request_complete(obj_request);
1338}
1339
1340static struct ceph_osd_request *rbd_osd_req_create(
1341 struct rbd_device *rbd_dev,
1342 bool write_request,
1343 struct rbd_obj_request *obj_request,
1344 struct ceph_osd_req_op *op)
1345{
1346 struct rbd_img_request *img_request = obj_request->img_request;
1347 struct ceph_snap_context *snapc = NULL;
1348 struct ceph_osd_client *osdc;
1349 struct ceph_osd_request *osd_req;
1350 struct timespec now;
1351 struct timespec *mtime;
1352 u64 snap_id = CEPH_NOSNAP;
1353 u64 offset = obj_request->offset;
1354 u64 length = obj_request->length;
1355
1356 if (img_request) {
1357 rbd_assert(img_request->write_request == write_request);
1358 if (img_request->write_request)
1359 snapc = img_request->snapc;
1360 else
1361 snap_id = img_request->snap_id;
1362 }
1363
1364 /* Allocate and initialize the request, for the single op */
1365
1366 osdc = &rbd_dev->rbd_client->client->osdc;
1367 osd_req = ceph_osdc_alloc_request(osdc, snapc, 1, false, GFP_ATOMIC);
1368 if (!osd_req)
1369 return NULL; /* ENOMEM */
1370
1371 rbd_assert(obj_request_type_valid(obj_request->type));
1372 switch (obj_request->type) {
9969ebc5
AE
1373 case OBJ_REQUEST_NODATA:
1374 break; /* Nothing to do */
bf0d5f50
AE
1375 case OBJ_REQUEST_BIO:
1376 rbd_assert(obj_request->bio_list != NULL);
1377 osd_req->r_bio = obj_request->bio_list;
bf0d5f50 1378 break;
788e2df3
AE
1379 case OBJ_REQUEST_PAGES:
1380 osd_req->r_pages = obj_request->pages;
1381 osd_req->r_num_pages = obj_request->page_count;
1382 osd_req->r_page_alignment = offset & ~PAGE_MASK;
1383 break;
bf0d5f50
AE
1384 }
1385
1386 if (write_request) {
1387 osd_req->r_flags = CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK;
1388 now = CURRENT_TIME;
1389 mtime = &now;
1390 } else {
1391 osd_req->r_flags = CEPH_OSD_FLAG_READ;
1392 mtime = NULL; /* not needed for reads */
1393 offset = 0; /* These are not used... */
1394 length = 0; /* ...for osd read requests */
1395 }
1396
1397 osd_req->r_callback = rbd_osd_req_callback;
1398 osd_req->r_priv = obj_request;
1399
1400 osd_req->r_oid_len = strlen(obj_request->object_name);
1401 rbd_assert(osd_req->r_oid_len < sizeof (osd_req->r_oid));
1402 memcpy(osd_req->r_oid, obj_request->object_name, osd_req->r_oid_len);
1403
1404 osd_req->r_file_layout = rbd_dev->layout; /* struct */
1405
1406 /* osd_req will get its own reference to snapc (if non-null) */
1407
1408 ceph_osdc_build_request(osd_req, offset, length, 1, op,
1409 snapc, snap_id, mtime);
1410
1411 return osd_req;
1412}
1413
1414static void rbd_osd_req_destroy(struct ceph_osd_request *osd_req)
1415{
1416 ceph_osdc_put_request(osd_req);
1417}
1418
1419/* object_name is assumed to be a non-null pointer and NUL-terminated */
1420
1421static struct rbd_obj_request *rbd_obj_request_create(const char *object_name,
1422 u64 offset, u64 length,
1423 enum obj_request_type type)
1424{
1425 struct rbd_obj_request *obj_request;
1426 size_t size;
1427 char *name;
1428
1429 rbd_assert(obj_request_type_valid(type));
1430
1431 size = strlen(object_name) + 1;
1432 obj_request = kzalloc(sizeof (*obj_request) + size, GFP_KERNEL);
1433 if (!obj_request)
1434 return NULL;
1435
1436 name = (char *)(obj_request + 1);
1437 obj_request->object_name = memcpy(name, object_name, size);
1438 obj_request->offset = offset;
1439 obj_request->length = length;
1440 obj_request->which = BAD_WHICH;
1441 obj_request->type = type;
1442 INIT_LIST_HEAD(&obj_request->links);
07741308 1443 obj_request_done_init(obj_request);
788e2df3 1444 init_completion(&obj_request->completion);
bf0d5f50
AE
1445 kref_init(&obj_request->kref);
1446
1447 return obj_request;
1448}
1449
1450static void rbd_obj_request_destroy(struct kref *kref)
1451{
1452 struct rbd_obj_request *obj_request;
1453
1454 obj_request = container_of(kref, struct rbd_obj_request, kref);
1455
1456 rbd_assert(obj_request->img_request == NULL);
1457 rbd_assert(obj_request->which == BAD_WHICH);
1458
1459 if (obj_request->osd_req)
1460 rbd_osd_req_destroy(obj_request->osd_req);
1461
1462 rbd_assert(obj_request_type_valid(obj_request->type));
1463 switch (obj_request->type) {
9969ebc5
AE
1464 case OBJ_REQUEST_NODATA:
1465 break; /* Nothing to do */
bf0d5f50
AE
1466 case OBJ_REQUEST_BIO:
1467 if (obj_request->bio_list)
1468 bio_chain_put(obj_request->bio_list);
1469 break;
788e2df3
AE
1470 case OBJ_REQUEST_PAGES:
1471 if (obj_request->pages)
1472 ceph_release_page_vector(obj_request->pages,
1473 obj_request->page_count);
1474 break;
bf0d5f50
AE
1475 }
1476
1477 kfree(obj_request);
1478}
1479
1480/*
1481 * Caller is responsible for filling in the list of object requests
1482 * that comprises the image request, and the Linux request pointer
1483 * (if there is one).
1484 */
1485struct rbd_img_request *rbd_img_request_create(struct rbd_device *rbd_dev,
1486 u64 offset, u64 length,
1487 bool write_request)
1488{
1489 struct rbd_img_request *img_request;
1490 struct ceph_snap_context *snapc = NULL;
1491
1492 img_request = kmalloc(sizeof (*img_request), GFP_ATOMIC);
1493 if (!img_request)
1494 return NULL;
1495
1496 if (write_request) {
1497 down_read(&rbd_dev->header_rwsem);
1498 snapc = ceph_get_snap_context(rbd_dev->header.snapc);
1499 up_read(&rbd_dev->header_rwsem);
1500 if (WARN_ON(!snapc)) {
1501 kfree(img_request);
1502 return NULL; /* Shouldn't happen */
1503 }
1504 }
1505
1506 img_request->rq = NULL;
1507 img_request->rbd_dev = rbd_dev;
1508 img_request->offset = offset;
1509 img_request->length = length;
1510 img_request->write_request = write_request;
1511 if (write_request)
1512 img_request->snapc = snapc;
1513 else
1514 img_request->snap_id = rbd_dev->spec->snap_id;
1515 spin_lock_init(&img_request->completion_lock);
1516 img_request->next_completion = 0;
1517 img_request->callback = NULL;
1518 img_request->obj_request_count = 0;
1519 INIT_LIST_HEAD(&img_request->obj_requests);
1520 kref_init(&img_request->kref);
1521
1522 rbd_img_request_get(img_request); /* Avoid a warning */
1523 rbd_img_request_put(img_request); /* TEMPORARY */
1524
1525 return img_request;
1526}
1527
1528static void rbd_img_request_destroy(struct kref *kref)
1529{
1530 struct rbd_img_request *img_request;
1531 struct rbd_obj_request *obj_request;
1532 struct rbd_obj_request *next_obj_request;
1533
1534 img_request = container_of(kref, struct rbd_img_request, kref);
1535
1536 for_each_obj_request_safe(img_request, obj_request, next_obj_request)
1537 rbd_img_obj_request_del(img_request, obj_request);
25dcf954 1538 rbd_assert(img_request->obj_request_count == 0);
bf0d5f50
AE
1539
1540 if (img_request->write_request)
1541 ceph_put_snap_context(img_request->snapc);
1542
1543 kfree(img_request);
1544}
1545
1546static int rbd_img_request_fill_bio(struct rbd_img_request *img_request,
1547 struct bio *bio_list)
1548{
1549 struct rbd_device *rbd_dev = img_request->rbd_dev;
1550 struct rbd_obj_request *obj_request = NULL;
1551 struct rbd_obj_request *next_obj_request;
1552 unsigned int bio_offset;
1553 u64 image_offset;
1554 u64 resid;
1555 u16 opcode;
1556
1557 opcode = img_request->write_request ? CEPH_OSD_OP_WRITE
1558 : CEPH_OSD_OP_READ;
1559 bio_offset = 0;
1560 image_offset = img_request->offset;
1561 rbd_assert(image_offset == bio_list->bi_sector << SECTOR_SHIFT);
1562 resid = img_request->length;
1563 while (resid) {
1564 const char *object_name;
1565 unsigned int clone_size;
1566 struct ceph_osd_req_op *op;
1567 u64 offset;
1568 u64 length;
1569
1570 object_name = rbd_segment_name(rbd_dev, image_offset);
1571 if (!object_name)
1572 goto out_unwind;
1573 offset = rbd_segment_offset(rbd_dev, image_offset);
1574 length = rbd_segment_length(rbd_dev, image_offset, resid);
1575 obj_request = rbd_obj_request_create(object_name,
1576 offset, length,
1577 OBJ_REQUEST_BIO);
1578 kfree(object_name); /* object request has its own copy */
1579 if (!obj_request)
1580 goto out_unwind;
1581
1582 rbd_assert(length <= (u64) UINT_MAX);
1583 clone_size = (unsigned int) length;
1584 obj_request->bio_list = bio_chain_clone_range(&bio_list,
1585 &bio_offset, clone_size,
1586 GFP_ATOMIC);
1587 if (!obj_request->bio_list)
1588 goto out_partial;
1589
1590 /*
1591 * Build up the op to use in building the osd
1592 * request. Note that the contents of the op are
1593 * copied by rbd_osd_req_create().
1594 */
1595 op = rbd_osd_req_op_create(opcode, offset, length);
1596 if (!op)
1597 goto out_partial;
1598 obj_request->osd_req = rbd_osd_req_create(rbd_dev,
1599 img_request->write_request,
1600 obj_request, op);
1601 rbd_osd_req_op_destroy(op);
1602 if (!obj_request->osd_req)
1603 goto out_partial;
1604 /* status and version are initially zero-filled */
1605
1606 rbd_img_obj_request_add(img_request, obj_request);
1607
1608 image_offset += length;
1609 resid -= length;
1610 }
1611
1612 return 0;
1613
1614out_partial:
1615 rbd_obj_request_put(obj_request);
1616out_unwind:
1617 for_each_obj_request_safe(img_request, obj_request, next_obj_request)
1618 rbd_obj_request_put(obj_request);
1619
1620 return -ENOMEM;
1621}
1622
1623static void rbd_img_obj_callback(struct rbd_obj_request *obj_request)
1624{
1625 struct rbd_img_request *img_request;
1626 u32 which = obj_request->which;
1627 bool more = true;
1628
1629 img_request = obj_request->img_request;
1630 rbd_assert(img_request != NULL);
1631 rbd_assert(img_request->rq != NULL);
1632 rbd_assert(which != BAD_WHICH);
1633 rbd_assert(which < img_request->obj_request_count);
1634 rbd_assert(which >= img_request->next_completion);
1635
1636 spin_lock_irq(&img_request->completion_lock);
1637 if (which != img_request->next_completion)
1638 goto out;
1639
1640 for_each_obj_request_from(img_request, obj_request) {
1641 unsigned int xferred;
1642 int result;
1643
1644 rbd_assert(more);
1645 rbd_assert(which < img_request->obj_request_count);
1646
07741308 1647 if (!obj_request_done_test(obj_request))
bf0d5f50
AE
1648 break;
1649
1650 rbd_assert(obj_request->xferred <= (u64) UINT_MAX);
1651 xferred = (unsigned int) obj_request->xferred;
1652 result = (int) obj_request->result;
1653 if (result)
1654 rbd_warn(NULL, "obj_request %s result %d xferred %u\n",
1655 img_request->write_request ? "write" : "read",
1656 result, xferred);
1657
1658 more = blk_end_request(img_request->rq, result, xferred);
1659 which++;
1660 }
1661 rbd_assert(more ^ (which == img_request->obj_request_count));
1662 img_request->next_completion = which;
1663out:
1664 spin_unlock_irq(&img_request->completion_lock);
1665
1666 if (!more)
1667 rbd_img_request_complete(img_request);
1668}
1669
1670static int rbd_img_request_submit(struct rbd_img_request *img_request)
1671{
1672 struct rbd_device *rbd_dev = img_request->rbd_dev;
1673 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
1674 struct rbd_obj_request *obj_request;
1675
1676 for_each_obj_request(img_request, obj_request) {
1677 int ret;
1678
1679 obj_request->callback = rbd_img_obj_callback;
1680 ret = rbd_obj_request_submit(osdc, obj_request);
1681 if (ret)
1682 return ret;
1683 /*
1684 * The image request has its own reference to each
1685 * of its object requests, so we can safely drop the
1686 * initial one here.
1687 */
1688 rbd_obj_request_put(obj_request);
1689 }
1690
1691 return 0;
1692}
1693
cf81b60e 1694static int rbd_obj_notify_ack(struct rbd_device *rbd_dev,
b8d70035
AE
1695 u64 ver, u64 notify_id)
1696{
1697 struct rbd_obj_request *obj_request;
1698 struct ceph_osd_req_op *op;
1699 struct ceph_osd_client *osdc;
1700 int ret;
1701
1702 obj_request = rbd_obj_request_create(rbd_dev->header_name, 0, 0,
1703 OBJ_REQUEST_NODATA);
1704 if (!obj_request)
1705 return -ENOMEM;
1706
1707 ret = -ENOMEM;
1708 op = rbd_osd_req_op_create(CEPH_OSD_OP_NOTIFY_ACK, notify_id, ver);
1709 if (!op)
1710 goto out;
1711 obj_request->osd_req = rbd_osd_req_create(rbd_dev, false,
1712 obj_request, op);
1713 rbd_osd_req_op_destroy(op);
1714 if (!obj_request->osd_req)
1715 goto out;
1716
1717 osdc = &rbd_dev->rbd_client->client->osdc;
cf81b60e 1718 obj_request->callback = rbd_obj_request_put;
b8d70035 1719 ret = rbd_obj_request_submit(osdc, obj_request);
b8d70035 1720out:
cf81b60e
AE
1721 if (ret)
1722 rbd_obj_request_put(obj_request);
b8d70035
AE
1723
1724 return ret;
1725}
1726
1727static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
1728{
1729 struct rbd_device *rbd_dev = (struct rbd_device *)data;
1730 u64 hver;
1731 int rc;
1732
1733 if (!rbd_dev)
1734 return;
1735
1736 dout("rbd_watch_cb %s notify_id=%llu opcode=%u\n",
1737 rbd_dev->header_name, (unsigned long long) notify_id,
1738 (unsigned int) opcode);
1739 rc = rbd_dev_refresh(rbd_dev, &hver);
1740 if (rc)
1741 rbd_warn(rbd_dev, "got notification but failed to "
1742 " update snaps: %d\n", rc);
1743
cf81b60e 1744 rbd_obj_notify_ack(rbd_dev, hver, notify_id);
b8d70035
AE
1745}
1746
9969ebc5
AE
1747/*
1748 * Request sync osd watch/unwatch. The value of "start" determines
1749 * whether a watch request is being initiated or torn down.
1750 */
1751static int rbd_dev_header_watch_sync(struct rbd_device *rbd_dev, int start)
1752{
1753 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
1754 struct rbd_obj_request *obj_request;
1755 struct ceph_osd_req_op *op;
1756 int ret;
1757
1758 rbd_assert(start ^ !!rbd_dev->watch_event);
1759 rbd_assert(start ^ !!rbd_dev->watch_request);
1760
1761 if (start) {
3c663bbd 1762 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, rbd_dev,
9969ebc5
AE
1763 &rbd_dev->watch_event);
1764 if (ret < 0)
1765 return ret;
8eb87565 1766 rbd_assert(rbd_dev->watch_event != NULL);
9969ebc5
AE
1767 }
1768
1769 ret = -ENOMEM;
1770 obj_request = rbd_obj_request_create(rbd_dev->header_name, 0, 0,
1771 OBJ_REQUEST_NODATA);
1772 if (!obj_request)
1773 goto out_cancel;
1774
1775 op = rbd_osd_req_op_create(CEPH_OSD_OP_WATCH,
1776 rbd_dev->watch_event->cookie,
1777 rbd_dev->header.obj_version, start);
1778 if (!op)
1779 goto out_cancel;
1780 obj_request->osd_req = rbd_osd_req_create(rbd_dev, true,
1781 obj_request, op);
1782 rbd_osd_req_op_destroy(op);
1783 if (!obj_request->osd_req)
1784 goto out_cancel;
1785
8eb87565 1786 if (start)
975241af 1787 ceph_osdc_set_request_linger(osdc, obj_request->osd_req);
8eb87565 1788 else
6977c3f9 1789 ceph_osdc_unregister_linger_request(osdc,
975241af 1790 rbd_dev->watch_request->osd_req);
9969ebc5
AE
1791 ret = rbd_obj_request_submit(osdc, obj_request);
1792 if (ret)
1793 goto out_cancel;
1794 ret = rbd_obj_request_wait(obj_request);
1795 if (ret)
1796 goto out_cancel;
9969ebc5
AE
1797 ret = obj_request->result;
1798 if (ret)
1799 goto out_cancel;
1800
8eb87565
AE
1801 /*
1802 * A watch request is set to linger, so the underlying osd
1803 * request won't go away until we unregister it. We retain
1804 * a pointer to the object request during that time (in
1805 * rbd_dev->watch_request), so we'll keep a reference to
1806 * it. We'll drop that reference (below) after we've
1807 * unregistered it.
1808 */
1809 if (start) {
1810 rbd_dev->watch_request = obj_request;
1811
1812 return 0;
1813 }
1814
1815 /* We have successfully torn down the watch request */
1816
1817 rbd_obj_request_put(rbd_dev->watch_request);
1818 rbd_dev->watch_request = NULL;
9969ebc5
AE
1819out_cancel:
1820 /* Cancel the event if we're tearing down, or on error */
1821 ceph_osdc_cancel_event(rbd_dev->watch_event);
1822 rbd_dev->watch_event = NULL;
9969ebc5
AE
1823 if (obj_request)
1824 rbd_obj_request_put(obj_request);
1825
1826 return ret;
1827}
1828
36be9a76
AE
1829/*
1830 * Synchronous osd object method call
1831 */
1832static int rbd_obj_method_sync(struct rbd_device *rbd_dev,
1833 const char *object_name,
1834 const char *class_name,
1835 const char *method_name,
1836 const char *outbound,
1837 size_t outbound_size,
1838 char *inbound,
1839 size_t inbound_size,
1840 u64 *version)
1841{
1842 struct rbd_obj_request *obj_request;
1843 struct ceph_osd_client *osdc;
1844 struct ceph_osd_req_op *op;
1845 struct page **pages;
1846 u32 page_count;
1847 int ret;
1848
1849 /*
1850 * Method calls are ultimately read operations but they
1851 * don't involve object data (so no offset or length).
1852 * The result should placed into the inbound buffer
1853 * provided. They also supply outbound data--parameters for
1854 * the object method. Currently if this is present it will
1855 * be a snapshot id.
1856 */
1857 page_count = (u32) calc_pages_for(0, inbound_size);
1858 pages = ceph_alloc_page_vector(page_count, GFP_KERNEL);
1859 if (IS_ERR(pages))
1860 return PTR_ERR(pages);
1861
1862 ret = -ENOMEM;
1863 obj_request = rbd_obj_request_create(object_name, 0, 0,
1864 OBJ_REQUEST_PAGES);
1865 if (!obj_request)
1866 goto out;
1867
1868 obj_request->pages = pages;
1869 obj_request->page_count = page_count;
1870
1871 op = rbd_osd_req_op_create(CEPH_OSD_OP_CALL, class_name,
1872 method_name, outbound, outbound_size);
1873 if (!op)
1874 goto out;
1875 obj_request->osd_req = rbd_osd_req_create(rbd_dev, false,
1876 obj_request, op);
1877 rbd_osd_req_op_destroy(op);
1878 if (!obj_request->osd_req)
1879 goto out;
1880
1881 osdc = &rbd_dev->rbd_client->client->osdc;
1882 ret = rbd_obj_request_submit(osdc, obj_request);
1883 if (ret)
1884 goto out;
1885 ret = rbd_obj_request_wait(obj_request);
1886 if (ret)
1887 goto out;
1888
1889 ret = obj_request->result;
1890 if (ret < 0)
1891 goto out;
1892 ret = ceph_copy_from_page_vector(pages, inbound, 0,
1893 obj_request->xferred);
1894 if (version)
1895 *version = obj_request->version;
1896out:
1897 if (obj_request)
1898 rbd_obj_request_put(obj_request);
1899 else
1900 ceph_release_page_vector(pages, page_count);
1901
1902 return ret;
1903}
1904
bf0d5f50
AE
1905static void rbd_request_fn(struct request_queue *q)
1906{
1907 struct rbd_device *rbd_dev = q->queuedata;
1908 bool read_only = rbd_dev->mapping.read_only;
1909 struct request *rq;
1910 int result;
1911
1912 while ((rq = blk_fetch_request(q))) {
1913 bool write_request = rq_data_dir(rq) == WRITE;
1914 struct rbd_img_request *img_request;
1915 u64 offset;
1916 u64 length;
1917
1918 /* Ignore any non-FS requests that filter through. */
1919
1920 if (rq->cmd_type != REQ_TYPE_FS) {
1921 __blk_end_request_all(rq, 0);
1922 continue;
1923 }
1924
1925 spin_unlock_irq(q->queue_lock);
1926
1927 /* Disallow writes to a read-only device */
1928
1929 if (write_request) {
1930 result = -EROFS;
1931 if (read_only)
1932 goto end_request;
1933 rbd_assert(rbd_dev->spec->snap_id == CEPH_NOSNAP);
1934 }
1935
6d292906
AE
1936 /*
1937 * Quit early if the mapped snapshot no longer
1938 * exists. It's still possible the snapshot will
1939 * have disappeared by the time our request arrives
1940 * at the osd, but there's no sense in sending it if
1941 * we already know.
1942 */
1943 if (!test_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags)) {
bf0d5f50
AE
1944 dout("request for non-existent snapshot");
1945 rbd_assert(rbd_dev->spec->snap_id != CEPH_NOSNAP);
1946 result = -ENXIO;
1947 goto end_request;
1948 }
1949
1950 offset = (u64) blk_rq_pos(rq) << SECTOR_SHIFT;
1951 length = (u64) blk_rq_bytes(rq);
1952
1953 result = -EINVAL;
1954 if (WARN_ON(offset && length > U64_MAX - offset + 1))
1955 goto end_request; /* Shouldn't happen */
1956
1957 result = -ENOMEM;
1958 img_request = rbd_img_request_create(rbd_dev, offset, length,
1959 write_request);
1960 if (!img_request)
1961 goto end_request;
1962
1963 img_request->rq = rq;
1964
1965 result = rbd_img_request_fill_bio(img_request, rq->bio);
1966 if (!result)
1967 result = rbd_img_request_submit(img_request);
1968 if (result)
1969 rbd_img_request_put(img_request);
1970end_request:
1971 spin_lock_irq(q->queue_lock);
1972 if (result < 0) {
1973 rbd_warn(rbd_dev, "obj_request %s result %d\n",
1974 write_request ? "write" : "read", result);
1975 __blk_end_request_all(rq, result);
1976 }
1977 }
1978}
1979
602adf40
YS
1980/*
1981 * a queue callback. Makes sure that we don't create a bio that spans across
1982 * multiple osd objects. One exception would be with a single page bios,
f7760dad 1983 * which we handle later at bio_chain_clone_range()
602adf40
YS
1984 */
1985static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
1986 struct bio_vec *bvec)
1987{
1988 struct rbd_device *rbd_dev = q->queuedata;
e5cfeed2
AE
1989 sector_t sector_offset;
1990 sector_t sectors_per_obj;
1991 sector_t obj_sector_offset;
1992 int ret;
1993
1994 /*
1995 * Find how far into its rbd object the partition-relative
1996 * bio start sector is to offset relative to the enclosing
1997 * device.
1998 */
1999 sector_offset = get_start_sect(bmd->bi_bdev) + bmd->bi_sector;
2000 sectors_per_obj = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
2001 obj_sector_offset = sector_offset & (sectors_per_obj - 1);
2002
2003 /*
2004 * Compute the number of bytes from that offset to the end
2005 * of the object. Account for what's already used by the bio.
2006 */
2007 ret = (int) (sectors_per_obj - obj_sector_offset) << SECTOR_SHIFT;
2008 if (ret > bmd->bi_size)
2009 ret -= bmd->bi_size;
2010 else
2011 ret = 0;
2012
2013 /*
2014 * Don't send back more than was asked for. And if the bio
2015 * was empty, let the whole thing through because: "Note
2016 * that a block device *must* allow a single page to be
2017 * added to an empty bio."
2018 */
2019 rbd_assert(bvec->bv_len <= PAGE_SIZE);
2020 if (ret > (int) bvec->bv_len || !bmd->bi_size)
2021 ret = (int) bvec->bv_len;
2022
2023 return ret;
602adf40
YS
2024}
2025
2026static void rbd_free_disk(struct rbd_device *rbd_dev)
2027{
2028 struct gendisk *disk = rbd_dev->disk;
2029
2030 if (!disk)
2031 return;
2032
602adf40
YS
2033 if (disk->flags & GENHD_FL_UP)
2034 del_gendisk(disk);
2035 if (disk->queue)
2036 blk_cleanup_queue(disk->queue);
2037 put_disk(disk);
2038}
2039
788e2df3
AE
2040static int rbd_obj_read_sync(struct rbd_device *rbd_dev,
2041 const char *object_name,
2042 u64 offset, u64 length,
2043 char *buf, u64 *version)
2044
2045{
2046 struct ceph_osd_req_op *op;
2047 struct rbd_obj_request *obj_request;
2048 struct ceph_osd_client *osdc;
2049 struct page **pages = NULL;
2050 u32 page_count;
2051 int ret;
2052
2053 page_count = (u32) calc_pages_for(offset, length);
2054 pages = ceph_alloc_page_vector(page_count, GFP_KERNEL);
2055 if (IS_ERR(pages))
2056 ret = PTR_ERR(pages);
2057
2058 ret = -ENOMEM;
2059 obj_request = rbd_obj_request_create(object_name, offset, length,
36be9a76 2060 OBJ_REQUEST_PAGES);
788e2df3
AE
2061 if (!obj_request)
2062 goto out;
2063
2064 obj_request->pages = pages;
2065 obj_request->page_count = page_count;
2066
2067 op = rbd_osd_req_op_create(CEPH_OSD_OP_READ, offset, length);
2068 if (!op)
2069 goto out;
2070 obj_request->osd_req = rbd_osd_req_create(rbd_dev, false,
2071 obj_request, op);
2072 rbd_osd_req_op_destroy(op);
2073 if (!obj_request->osd_req)
2074 goto out;
2075
2076 osdc = &rbd_dev->rbd_client->client->osdc;
2077 ret = rbd_obj_request_submit(osdc, obj_request);
2078 if (ret)
2079 goto out;
2080 ret = rbd_obj_request_wait(obj_request);
2081 if (ret)
2082 goto out;
2083
2084 ret = obj_request->result;
2085 if (ret < 0)
2086 goto out;
2087 ret = ceph_copy_from_page_vector(pages, buf, 0, obj_request->xferred);
2088 if (version)
2089 *version = obj_request->version;
2090out:
2091 if (obj_request)
2092 rbd_obj_request_put(obj_request);
2093 else
2094 ceph_release_page_vector(pages, page_count);
2095
2096 return ret;
2097}
2098
602adf40 2099/*
4156d998
AE
2100 * Read the complete header for the given rbd device.
2101 *
2102 * Returns a pointer to a dynamically-allocated buffer containing
2103 * the complete and validated header. Caller can pass the address
2104 * of a variable that will be filled in with the version of the
2105 * header object at the time it was read.
2106 *
2107 * Returns a pointer-coded errno if a failure occurs.
602adf40 2108 */
4156d998
AE
2109static struct rbd_image_header_ondisk *
2110rbd_dev_v1_header_read(struct rbd_device *rbd_dev, u64 *version)
602adf40 2111{
4156d998 2112 struct rbd_image_header_ondisk *ondisk = NULL;
50f7c4c9 2113 u32 snap_count = 0;
4156d998
AE
2114 u64 names_size = 0;
2115 u32 want_count;
2116 int ret;
602adf40 2117
00f1f36f 2118 /*
4156d998
AE
2119 * The complete header will include an array of its 64-bit
2120 * snapshot ids, followed by the names of those snapshots as
2121 * a contiguous block of NUL-terminated strings. Note that
2122 * the number of snapshots could change by the time we read
2123 * it in, in which case we re-read it.
00f1f36f 2124 */
4156d998
AE
2125 do {
2126 size_t size;
2127
2128 kfree(ondisk);
2129
2130 size = sizeof (*ondisk);
2131 size += snap_count * sizeof (struct rbd_image_snap_ondisk);
2132 size += names_size;
2133 ondisk = kmalloc(size, GFP_KERNEL);
2134 if (!ondisk)
2135 return ERR_PTR(-ENOMEM);
2136
788e2df3 2137 ret = rbd_obj_read_sync(rbd_dev, rbd_dev->header_name,
4156d998
AE
2138 0, size,
2139 (char *) ondisk, version);
2140
2141 if (ret < 0)
2142 goto out_err;
2143 if (WARN_ON((size_t) ret < size)) {
2144 ret = -ENXIO;
06ecc6cb
AE
2145 rbd_warn(rbd_dev, "short header read (want %zd got %d)",
2146 size, ret);
4156d998
AE
2147 goto out_err;
2148 }
2149 if (!rbd_dev_ondisk_valid(ondisk)) {
2150 ret = -ENXIO;
06ecc6cb 2151 rbd_warn(rbd_dev, "invalid header");
4156d998 2152 goto out_err;
81e759fb 2153 }
602adf40 2154
4156d998
AE
2155 names_size = le64_to_cpu(ondisk->snap_names_len);
2156 want_count = snap_count;
2157 snap_count = le32_to_cpu(ondisk->snap_count);
2158 } while (snap_count != want_count);
00f1f36f 2159
4156d998 2160 return ondisk;
00f1f36f 2161
4156d998
AE
2162out_err:
2163 kfree(ondisk);
2164
2165 return ERR_PTR(ret);
2166}
2167
2168/*
2169 * reload the ondisk the header
2170 */
2171static int rbd_read_header(struct rbd_device *rbd_dev,
2172 struct rbd_image_header *header)
2173{
2174 struct rbd_image_header_ondisk *ondisk;
2175 u64 ver = 0;
2176 int ret;
602adf40 2177
4156d998
AE
2178 ondisk = rbd_dev_v1_header_read(rbd_dev, &ver);
2179 if (IS_ERR(ondisk))
2180 return PTR_ERR(ondisk);
2181 ret = rbd_header_from_disk(header, ondisk);
2182 if (ret >= 0)
2183 header->obj_version = ver;
2184 kfree(ondisk);
2185
2186 return ret;
602adf40
YS
2187}
2188
41f38c2b 2189static void rbd_remove_all_snaps(struct rbd_device *rbd_dev)
dfc5606d
YS
2190{
2191 struct rbd_snap *snap;
a0593290 2192 struct rbd_snap *next;
dfc5606d 2193
a0593290 2194 list_for_each_entry_safe(snap, next, &rbd_dev->snaps, node)
41f38c2b 2195 rbd_remove_snap_dev(snap);
dfc5606d
YS
2196}
2197
9478554a
AE
2198static void rbd_update_mapping_size(struct rbd_device *rbd_dev)
2199{
2200 sector_t size;
2201
0d7dbfce 2202 if (rbd_dev->spec->snap_id != CEPH_NOSNAP)
9478554a
AE
2203 return;
2204
2205 size = (sector_t) rbd_dev->header.image_size / SECTOR_SIZE;
2206 dout("setting size to %llu sectors", (unsigned long long) size);
2207 rbd_dev->mapping.size = (u64) size;
2208 set_capacity(rbd_dev->disk, size);
2209}
2210
602adf40
YS
2211/*
2212 * only read the first part of the ondisk header, without the snaps info
2213 */
117973fb 2214static int rbd_dev_v1_refresh(struct rbd_device *rbd_dev, u64 *hver)
602adf40
YS
2215{
2216 int ret;
2217 struct rbd_image_header h;
602adf40
YS
2218
2219 ret = rbd_read_header(rbd_dev, &h);
2220 if (ret < 0)
2221 return ret;
2222
a51aa0c0
JD
2223 down_write(&rbd_dev->header_rwsem);
2224
9478554a
AE
2225 /* Update image size, and check for resize of mapped image */
2226 rbd_dev->header.image_size = h.image_size;
2227 rbd_update_mapping_size(rbd_dev);
9db4b3e3 2228
849b4260 2229 /* rbd_dev->header.object_prefix shouldn't change */
602adf40 2230 kfree(rbd_dev->header.snap_sizes);
849b4260 2231 kfree(rbd_dev->header.snap_names);
d1d25646
JD
2232 /* osd requests may still refer to snapc */
2233 ceph_put_snap_context(rbd_dev->header.snapc);
602adf40 2234
b813623a
AE
2235 if (hver)
2236 *hver = h.obj_version;
a71b891b 2237 rbd_dev->header.obj_version = h.obj_version;
93a24e08 2238 rbd_dev->header.image_size = h.image_size;
602adf40
YS
2239 rbd_dev->header.snapc = h.snapc;
2240 rbd_dev->header.snap_names = h.snap_names;
2241 rbd_dev->header.snap_sizes = h.snap_sizes;
849b4260
AE
2242 /* Free the extra copy of the object prefix */
2243 WARN_ON(strcmp(rbd_dev->header.object_prefix, h.object_prefix));
2244 kfree(h.object_prefix);
2245
304f6808
AE
2246 ret = rbd_dev_snaps_update(rbd_dev);
2247 if (!ret)
2248 ret = rbd_dev_snaps_register(rbd_dev);
dfc5606d 2249
c666601a 2250 up_write(&rbd_dev->header_rwsem);
602adf40 2251
dfc5606d 2252 return ret;
602adf40
YS
2253}
2254
117973fb 2255static int rbd_dev_refresh(struct rbd_device *rbd_dev, u64 *hver)
1fe5e993
AE
2256{
2257 int ret;
2258
117973fb 2259 rbd_assert(rbd_image_format_valid(rbd_dev->image_format));
1fe5e993 2260 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
117973fb
AE
2261 if (rbd_dev->image_format == 1)
2262 ret = rbd_dev_v1_refresh(rbd_dev, hver);
2263 else
2264 ret = rbd_dev_v2_refresh(rbd_dev, hver);
1fe5e993
AE
2265 mutex_unlock(&ctl_mutex);
2266
2267 return ret;
2268}
2269
602adf40
YS
2270static int rbd_init_disk(struct rbd_device *rbd_dev)
2271{
2272 struct gendisk *disk;
2273 struct request_queue *q;
593a9e7b 2274 u64 segment_size;
602adf40 2275
602adf40 2276 /* create gendisk info */
602adf40
YS
2277 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
2278 if (!disk)
1fcdb8aa 2279 return -ENOMEM;
602adf40 2280
f0f8cef5 2281 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
de71a297 2282 rbd_dev->dev_id);
602adf40
YS
2283 disk->major = rbd_dev->major;
2284 disk->first_minor = 0;
2285 disk->fops = &rbd_bd_ops;
2286 disk->private_data = rbd_dev;
2287
bf0d5f50 2288 q = blk_init_queue(rbd_request_fn, &rbd_dev->lock);
602adf40
YS
2289 if (!q)
2290 goto out_disk;
029bcbd8 2291
593a9e7b
AE
2292 /* We use the default size, but let's be explicit about it. */
2293 blk_queue_physical_block_size(q, SECTOR_SIZE);
2294
029bcbd8 2295 /* set io sizes to object size */
593a9e7b
AE
2296 segment_size = rbd_obj_bytes(&rbd_dev->header);
2297 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
2298 blk_queue_max_segment_size(q, segment_size);
2299 blk_queue_io_min(q, segment_size);
2300 blk_queue_io_opt(q, segment_size);
029bcbd8 2301
602adf40
YS
2302 blk_queue_merge_bvec(q, rbd_merge_bvec);
2303 disk->queue = q;
2304
2305 q->queuedata = rbd_dev;
2306
2307 rbd_dev->disk = disk;
602adf40 2308
12f02944
AE
2309 set_capacity(rbd_dev->disk, rbd_dev->mapping.size / SECTOR_SIZE);
2310
602adf40 2311 return 0;
602adf40
YS
2312out_disk:
2313 put_disk(disk);
1fcdb8aa
AE
2314
2315 return -ENOMEM;
602adf40
YS
2316}
2317
dfc5606d
YS
2318/*
2319 sysfs
2320*/
2321
593a9e7b
AE
2322static struct rbd_device *dev_to_rbd_dev(struct device *dev)
2323{
2324 return container_of(dev, struct rbd_device, dev);
2325}
2326
dfc5606d
YS
2327static ssize_t rbd_size_show(struct device *dev,
2328 struct device_attribute *attr, char *buf)
2329{
593a9e7b 2330 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
a51aa0c0
JD
2331 sector_t size;
2332
2333 down_read(&rbd_dev->header_rwsem);
2334 size = get_capacity(rbd_dev->disk);
2335 up_read(&rbd_dev->header_rwsem);
dfc5606d 2336
a51aa0c0 2337 return sprintf(buf, "%llu\n", (unsigned long long) size * SECTOR_SIZE);
dfc5606d
YS
2338}
2339
34b13184
AE
2340/*
2341 * Note this shows the features for whatever's mapped, which is not
2342 * necessarily the base image.
2343 */
2344static ssize_t rbd_features_show(struct device *dev,
2345 struct device_attribute *attr, char *buf)
2346{
2347 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
2348
2349 return sprintf(buf, "0x%016llx\n",
2350 (unsigned long long) rbd_dev->mapping.features);
2351}
2352
dfc5606d
YS
2353static ssize_t rbd_major_show(struct device *dev,
2354 struct device_attribute *attr, char *buf)
2355{
593a9e7b 2356 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
602adf40 2357
dfc5606d
YS
2358 return sprintf(buf, "%d\n", rbd_dev->major);
2359}
2360
2361static ssize_t rbd_client_id_show(struct device *dev,
2362 struct device_attribute *attr, char *buf)
602adf40 2363{
593a9e7b 2364 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 2365
1dbb4399
AE
2366 return sprintf(buf, "client%lld\n",
2367 ceph_client_id(rbd_dev->rbd_client->client));
602adf40
YS
2368}
2369
dfc5606d
YS
2370static ssize_t rbd_pool_show(struct device *dev,
2371 struct device_attribute *attr, char *buf)
602adf40 2372{
593a9e7b 2373 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 2374
0d7dbfce 2375 return sprintf(buf, "%s\n", rbd_dev->spec->pool_name);
dfc5606d
YS
2376}
2377
9bb2f334
AE
2378static ssize_t rbd_pool_id_show(struct device *dev,
2379 struct device_attribute *attr, char *buf)
2380{
2381 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
2382
0d7dbfce
AE
2383 return sprintf(buf, "%llu\n",
2384 (unsigned long long) rbd_dev->spec->pool_id);
9bb2f334
AE
2385}
2386
dfc5606d
YS
2387static ssize_t rbd_name_show(struct device *dev,
2388 struct device_attribute *attr, char *buf)
2389{
593a9e7b 2390 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 2391
a92ffdf8
AE
2392 if (rbd_dev->spec->image_name)
2393 return sprintf(buf, "%s\n", rbd_dev->spec->image_name);
2394
2395 return sprintf(buf, "(unknown)\n");
dfc5606d
YS
2396}
2397
589d30e0
AE
2398static ssize_t rbd_image_id_show(struct device *dev,
2399 struct device_attribute *attr, char *buf)
2400{
2401 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
2402
0d7dbfce 2403 return sprintf(buf, "%s\n", rbd_dev->spec->image_id);
589d30e0
AE
2404}
2405
34b13184
AE
2406/*
2407 * Shows the name of the currently-mapped snapshot (or
2408 * RBD_SNAP_HEAD_NAME for the base image).
2409 */
dfc5606d
YS
2410static ssize_t rbd_snap_show(struct device *dev,
2411 struct device_attribute *attr,
2412 char *buf)
2413{
593a9e7b 2414 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 2415
0d7dbfce 2416 return sprintf(buf, "%s\n", rbd_dev->spec->snap_name);
dfc5606d
YS
2417}
2418
86b00e0d
AE
2419/*
2420 * For an rbd v2 image, shows the pool id, image id, and snapshot id
2421 * for the parent image. If there is no parent, simply shows
2422 * "(no parent image)".
2423 */
2424static ssize_t rbd_parent_show(struct device *dev,
2425 struct device_attribute *attr,
2426 char *buf)
2427{
2428 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
2429 struct rbd_spec *spec = rbd_dev->parent_spec;
2430 int count;
2431 char *bufp = buf;
2432
2433 if (!spec)
2434 return sprintf(buf, "(no parent image)\n");
2435
2436 count = sprintf(bufp, "pool_id %llu\npool_name %s\n",
2437 (unsigned long long) spec->pool_id, spec->pool_name);
2438 if (count < 0)
2439 return count;
2440 bufp += count;
2441
2442 count = sprintf(bufp, "image_id %s\nimage_name %s\n", spec->image_id,
2443 spec->image_name ? spec->image_name : "(unknown)");
2444 if (count < 0)
2445 return count;
2446 bufp += count;
2447
2448 count = sprintf(bufp, "snap_id %llu\nsnap_name %s\n",
2449 (unsigned long long) spec->snap_id, spec->snap_name);
2450 if (count < 0)
2451 return count;
2452 bufp += count;
2453
2454 count = sprintf(bufp, "overlap %llu\n", rbd_dev->parent_overlap);
2455 if (count < 0)
2456 return count;
2457 bufp += count;
2458
2459 return (ssize_t) (bufp - buf);
2460}
2461
dfc5606d
YS
2462static ssize_t rbd_image_refresh(struct device *dev,
2463 struct device_attribute *attr,
2464 const char *buf,
2465 size_t size)
2466{
593a9e7b 2467 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
b813623a 2468 int ret;
602adf40 2469
117973fb 2470 ret = rbd_dev_refresh(rbd_dev, NULL);
b813623a
AE
2471
2472 return ret < 0 ? ret : size;
dfc5606d 2473}
602adf40 2474
dfc5606d 2475static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
34b13184 2476static DEVICE_ATTR(features, S_IRUGO, rbd_features_show, NULL);
dfc5606d
YS
2477static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
2478static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
2479static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
9bb2f334 2480static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
dfc5606d 2481static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
589d30e0 2482static DEVICE_ATTR(image_id, S_IRUGO, rbd_image_id_show, NULL);
dfc5606d
YS
2483static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
2484static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
86b00e0d 2485static DEVICE_ATTR(parent, S_IRUGO, rbd_parent_show, NULL);
dfc5606d
YS
2486
2487static struct attribute *rbd_attrs[] = {
2488 &dev_attr_size.attr,
34b13184 2489 &dev_attr_features.attr,
dfc5606d
YS
2490 &dev_attr_major.attr,
2491 &dev_attr_client_id.attr,
2492 &dev_attr_pool.attr,
9bb2f334 2493 &dev_attr_pool_id.attr,
dfc5606d 2494 &dev_attr_name.attr,
589d30e0 2495 &dev_attr_image_id.attr,
dfc5606d 2496 &dev_attr_current_snap.attr,
86b00e0d 2497 &dev_attr_parent.attr,
dfc5606d 2498 &dev_attr_refresh.attr,
dfc5606d
YS
2499 NULL
2500};
2501
2502static struct attribute_group rbd_attr_group = {
2503 .attrs = rbd_attrs,
2504};
2505
2506static const struct attribute_group *rbd_attr_groups[] = {
2507 &rbd_attr_group,
2508 NULL
2509};
2510
2511static void rbd_sysfs_dev_release(struct device *dev)
2512{
2513}
2514
2515static struct device_type rbd_device_type = {
2516 .name = "rbd",
2517 .groups = rbd_attr_groups,
2518 .release = rbd_sysfs_dev_release,
2519};
2520
2521
2522/*
2523 sysfs - snapshots
2524*/
2525
2526static ssize_t rbd_snap_size_show(struct device *dev,
2527 struct device_attribute *attr,
2528 char *buf)
2529{
2530 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2531
3591538f 2532 return sprintf(buf, "%llu\n", (unsigned long long)snap->size);
dfc5606d
YS
2533}
2534
2535static ssize_t rbd_snap_id_show(struct device *dev,
2536 struct device_attribute *attr,
2537 char *buf)
2538{
2539 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2540
3591538f 2541 return sprintf(buf, "%llu\n", (unsigned long long)snap->id);
dfc5606d
YS
2542}
2543
34b13184
AE
2544static ssize_t rbd_snap_features_show(struct device *dev,
2545 struct device_attribute *attr,
2546 char *buf)
2547{
2548 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2549
2550 return sprintf(buf, "0x%016llx\n",
2551 (unsigned long long) snap->features);
2552}
2553
dfc5606d
YS
2554static DEVICE_ATTR(snap_size, S_IRUGO, rbd_snap_size_show, NULL);
2555static DEVICE_ATTR(snap_id, S_IRUGO, rbd_snap_id_show, NULL);
34b13184 2556static DEVICE_ATTR(snap_features, S_IRUGO, rbd_snap_features_show, NULL);
dfc5606d
YS
2557
2558static struct attribute *rbd_snap_attrs[] = {
2559 &dev_attr_snap_size.attr,
2560 &dev_attr_snap_id.attr,
34b13184 2561 &dev_attr_snap_features.attr,
dfc5606d
YS
2562 NULL,
2563};
2564
2565static struct attribute_group rbd_snap_attr_group = {
2566 .attrs = rbd_snap_attrs,
2567};
2568
2569static void rbd_snap_dev_release(struct device *dev)
2570{
2571 struct rbd_snap *snap = container_of(dev, struct rbd_snap, dev);
2572 kfree(snap->name);
2573 kfree(snap);
2574}
2575
2576static const struct attribute_group *rbd_snap_attr_groups[] = {
2577 &rbd_snap_attr_group,
2578 NULL
2579};
2580
2581static struct device_type rbd_snap_device_type = {
2582 .groups = rbd_snap_attr_groups,
2583 .release = rbd_snap_dev_release,
2584};
2585
8b8fb99c
AE
2586static struct rbd_spec *rbd_spec_get(struct rbd_spec *spec)
2587{
2588 kref_get(&spec->kref);
2589
2590 return spec;
2591}
2592
2593static void rbd_spec_free(struct kref *kref);
2594static void rbd_spec_put(struct rbd_spec *spec)
2595{
2596 if (spec)
2597 kref_put(&spec->kref, rbd_spec_free);
2598}
2599
2600static struct rbd_spec *rbd_spec_alloc(void)
2601{
2602 struct rbd_spec *spec;
2603
2604 spec = kzalloc(sizeof (*spec), GFP_KERNEL);
2605 if (!spec)
2606 return NULL;
2607 kref_init(&spec->kref);
2608
2609 rbd_spec_put(rbd_spec_get(spec)); /* TEMPORARY */
2610
2611 return spec;
2612}
2613
2614static void rbd_spec_free(struct kref *kref)
2615{
2616 struct rbd_spec *spec = container_of(kref, struct rbd_spec, kref);
2617
2618 kfree(spec->pool_name);
2619 kfree(spec->image_id);
2620 kfree(spec->image_name);
2621 kfree(spec->snap_name);
2622 kfree(spec);
2623}
2624
c53d5893
AE
2625struct rbd_device *rbd_dev_create(struct rbd_client *rbdc,
2626 struct rbd_spec *spec)
2627{
2628 struct rbd_device *rbd_dev;
2629
2630 rbd_dev = kzalloc(sizeof (*rbd_dev), GFP_KERNEL);
2631 if (!rbd_dev)
2632 return NULL;
2633
2634 spin_lock_init(&rbd_dev->lock);
6d292906 2635 rbd_dev->flags = 0;
c53d5893
AE
2636 INIT_LIST_HEAD(&rbd_dev->node);
2637 INIT_LIST_HEAD(&rbd_dev->snaps);
2638 init_rwsem(&rbd_dev->header_rwsem);
2639
2640 rbd_dev->spec = spec;
2641 rbd_dev->rbd_client = rbdc;
2642
0903e875
AE
2643 /* Initialize the layout used for all rbd requests */
2644
2645 rbd_dev->layout.fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
2646 rbd_dev->layout.fl_stripe_count = cpu_to_le32(1);
2647 rbd_dev->layout.fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
2648 rbd_dev->layout.fl_pg_pool = cpu_to_le32((u32) spec->pool_id);
2649
c53d5893
AE
2650 return rbd_dev;
2651}
2652
2653static void rbd_dev_destroy(struct rbd_device *rbd_dev)
2654{
86b00e0d 2655 rbd_spec_put(rbd_dev->parent_spec);
c53d5893
AE
2656 kfree(rbd_dev->header_name);
2657 rbd_put_client(rbd_dev->rbd_client);
2658 rbd_spec_put(rbd_dev->spec);
2659 kfree(rbd_dev);
2660}
2661
304f6808
AE
2662static bool rbd_snap_registered(struct rbd_snap *snap)
2663{
2664 bool ret = snap->dev.type == &rbd_snap_device_type;
2665 bool reg = device_is_registered(&snap->dev);
2666
2667 rbd_assert(!ret ^ reg);
2668
2669 return ret;
2670}
2671
41f38c2b 2672static void rbd_remove_snap_dev(struct rbd_snap *snap)
dfc5606d
YS
2673{
2674 list_del(&snap->node);
304f6808
AE
2675 if (device_is_registered(&snap->dev))
2676 device_unregister(&snap->dev);
dfc5606d
YS
2677}
2678
14e7085d 2679static int rbd_register_snap_dev(struct rbd_snap *snap,
dfc5606d
YS
2680 struct device *parent)
2681{
2682 struct device *dev = &snap->dev;
2683 int ret;
2684
2685 dev->type = &rbd_snap_device_type;
2686 dev->parent = parent;
2687 dev->release = rbd_snap_dev_release;
d4b125e9 2688 dev_set_name(dev, "%s%s", RBD_SNAP_DEV_NAME_PREFIX, snap->name);
304f6808
AE
2689 dout("%s: registering device for snapshot %s\n", __func__, snap->name);
2690
dfc5606d
YS
2691 ret = device_register(dev);
2692
2693 return ret;
2694}
2695
4e891e0a 2696static struct rbd_snap *__rbd_add_snap_dev(struct rbd_device *rbd_dev,
c8d18425 2697 const char *snap_name,
34b13184
AE
2698 u64 snap_id, u64 snap_size,
2699 u64 snap_features)
dfc5606d 2700{
4e891e0a 2701 struct rbd_snap *snap;
dfc5606d 2702 int ret;
4e891e0a
AE
2703
2704 snap = kzalloc(sizeof (*snap), GFP_KERNEL);
dfc5606d 2705 if (!snap)
4e891e0a
AE
2706 return ERR_PTR(-ENOMEM);
2707
2708 ret = -ENOMEM;
c8d18425 2709 snap->name = kstrdup(snap_name, GFP_KERNEL);
4e891e0a
AE
2710 if (!snap->name)
2711 goto err;
2712
c8d18425
AE
2713 snap->id = snap_id;
2714 snap->size = snap_size;
34b13184 2715 snap->features = snap_features;
4e891e0a
AE
2716
2717 return snap;
2718
dfc5606d
YS
2719err:
2720 kfree(snap->name);
2721 kfree(snap);
4e891e0a
AE
2722
2723 return ERR_PTR(ret);
dfc5606d
YS
2724}
2725
cd892126
AE
2726static char *rbd_dev_v1_snap_info(struct rbd_device *rbd_dev, u32 which,
2727 u64 *snap_size, u64 *snap_features)
2728{
2729 char *snap_name;
2730
2731 rbd_assert(which < rbd_dev->header.snapc->num_snaps);
2732
2733 *snap_size = rbd_dev->header.snap_sizes[which];
2734 *snap_features = 0; /* No features for v1 */
2735
2736 /* Skip over names until we find the one we are looking for */
2737
2738 snap_name = rbd_dev->header.snap_names;
2739 while (which--)
2740 snap_name += strlen(snap_name) + 1;
2741
2742 return snap_name;
2743}
2744
9d475de5
AE
2745/*
2746 * Get the size and object order for an image snapshot, or if
2747 * snap_id is CEPH_NOSNAP, gets this information for the base
2748 * image.
2749 */
2750static int _rbd_dev_v2_snap_size(struct rbd_device *rbd_dev, u64 snap_id,
2751 u8 *order, u64 *snap_size)
2752{
2753 __le64 snapid = cpu_to_le64(snap_id);
2754 int ret;
2755 struct {
2756 u8 order;
2757 __le64 size;
2758 } __attribute__ ((packed)) size_buf = { 0 };
2759
36be9a76 2760 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
9d475de5
AE
2761 "rbd", "get_size",
2762 (char *) &snapid, sizeof (snapid),
07b2391f 2763 (char *) &size_buf, sizeof (size_buf), NULL);
36be9a76 2764 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
9d475de5
AE
2765 if (ret < 0)
2766 return ret;
2767
2768 *order = size_buf.order;
2769 *snap_size = le64_to_cpu(size_buf.size);
2770
2771 dout(" snap_id 0x%016llx order = %u, snap_size = %llu\n",
2772 (unsigned long long) snap_id, (unsigned int) *order,
2773 (unsigned long long) *snap_size);
2774
2775 return 0;
2776}
2777
2778static int rbd_dev_v2_image_size(struct rbd_device *rbd_dev)
2779{
2780 return _rbd_dev_v2_snap_size(rbd_dev, CEPH_NOSNAP,
2781 &rbd_dev->header.obj_order,
2782 &rbd_dev->header.image_size);
2783}
2784
1e130199
AE
2785static int rbd_dev_v2_object_prefix(struct rbd_device *rbd_dev)
2786{
2787 void *reply_buf;
2788 int ret;
2789 void *p;
2790
2791 reply_buf = kzalloc(RBD_OBJ_PREFIX_LEN_MAX, GFP_KERNEL);
2792 if (!reply_buf)
2793 return -ENOMEM;
2794
36be9a76 2795 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
1e130199
AE
2796 "rbd", "get_object_prefix",
2797 NULL, 0,
07b2391f 2798 reply_buf, RBD_OBJ_PREFIX_LEN_MAX, NULL);
36be9a76 2799 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
1e130199
AE
2800 if (ret < 0)
2801 goto out;
36be9a76 2802 ret = 0; /* rbd_obj_method_sync() can return positive */
1e130199
AE
2803
2804 p = reply_buf;
2805 rbd_dev->header.object_prefix = ceph_extract_encoded_string(&p,
2806 p + RBD_OBJ_PREFIX_LEN_MAX,
2807 NULL, GFP_NOIO);
2808
2809 if (IS_ERR(rbd_dev->header.object_prefix)) {
2810 ret = PTR_ERR(rbd_dev->header.object_prefix);
2811 rbd_dev->header.object_prefix = NULL;
2812 } else {
2813 dout(" object_prefix = %s\n", rbd_dev->header.object_prefix);
2814 }
2815
2816out:
2817 kfree(reply_buf);
2818
2819 return ret;
2820}
2821
b1b5402a
AE
2822static int _rbd_dev_v2_snap_features(struct rbd_device *rbd_dev, u64 snap_id,
2823 u64 *snap_features)
2824{
2825 __le64 snapid = cpu_to_le64(snap_id);
2826 struct {
2827 __le64 features;
2828 __le64 incompat;
2829 } features_buf = { 0 };
d889140c 2830 u64 incompat;
b1b5402a
AE
2831 int ret;
2832
36be9a76 2833 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
b1b5402a
AE
2834 "rbd", "get_features",
2835 (char *) &snapid, sizeof (snapid),
2836 (char *) &features_buf, sizeof (features_buf),
07b2391f 2837 NULL);
36be9a76 2838 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
b1b5402a
AE
2839 if (ret < 0)
2840 return ret;
d889140c
AE
2841
2842 incompat = le64_to_cpu(features_buf.incompat);
2843 if (incompat & ~RBD_FEATURES_ALL)
b8f5c6ed 2844 return -ENXIO;
d889140c 2845
b1b5402a
AE
2846 *snap_features = le64_to_cpu(features_buf.features);
2847
2848 dout(" snap_id 0x%016llx features = 0x%016llx incompat = 0x%016llx\n",
2849 (unsigned long long) snap_id,
2850 (unsigned long long) *snap_features,
2851 (unsigned long long) le64_to_cpu(features_buf.incompat));
2852
2853 return 0;
2854}
2855
2856static int rbd_dev_v2_features(struct rbd_device *rbd_dev)
2857{
2858 return _rbd_dev_v2_snap_features(rbd_dev, CEPH_NOSNAP,
2859 &rbd_dev->header.features);
2860}
2861
86b00e0d
AE
2862static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev)
2863{
2864 struct rbd_spec *parent_spec;
2865 size_t size;
2866 void *reply_buf = NULL;
2867 __le64 snapid;
2868 void *p;
2869 void *end;
2870 char *image_id;
2871 u64 overlap;
86b00e0d
AE
2872 int ret;
2873
2874 parent_spec = rbd_spec_alloc();
2875 if (!parent_spec)
2876 return -ENOMEM;
2877
2878 size = sizeof (__le64) + /* pool_id */
2879 sizeof (__le32) + RBD_IMAGE_ID_LEN_MAX + /* image_id */
2880 sizeof (__le64) + /* snap_id */
2881 sizeof (__le64); /* overlap */
2882 reply_buf = kmalloc(size, GFP_KERNEL);
2883 if (!reply_buf) {
2884 ret = -ENOMEM;
2885 goto out_err;
2886 }
2887
2888 snapid = cpu_to_le64(CEPH_NOSNAP);
36be9a76 2889 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
86b00e0d
AE
2890 "rbd", "get_parent",
2891 (char *) &snapid, sizeof (snapid),
07b2391f 2892 (char *) reply_buf, size, NULL);
36be9a76 2893 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
86b00e0d
AE
2894 if (ret < 0)
2895 goto out_err;
2896
2897 ret = -ERANGE;
2898 p = reply_buf;
2899 end = (char *) reply_buf + size;
2900 ceph_decode_64_safe(&p, end, parent_spec->pool_id, out_err);
2901 if (parent_spec->pool_id == CEPH_NOPOOL)
2902 goto out; /* No parent? No problem. */
2903
0903e875
AE
2904 /* The ceph file layout needs to fit pool id in 32 bits */
2905
2906 ret = -EIO;
2907 if (WARN_ON(parent_spec->pool_id > (u64) U32_MAX))
2908 goto out;
2909
979ed480 2910 image_id = ceph_extract_encoded_string(&p, end, NULL, GFP_KERNEL);
86b00e0d
AE
2911 if (IS_ERR(image_id)) {
2912 ret = PTR_ERR(image_id);
2913 goto out_err;
2914 }
2915 parent_spec->image_id = image_id;
2916 ceph_decode_64_safe(&p, end, parent_spec->snap_id, out_err);
2917 ceph_decode_64_safe(&p, end, overlap, out_err);
2918
2919 rbd_dev->parent_overlap = overlap;
2920 rbd_dev->parent_spec = parent_spec;
2921 parent_spec = NULL; /* rbd_dev now owns this */
2922out:
2923 ret = 0;
2924out_err:
2925 kfree(reply_buf);
2926 rbd_spec_put(parent_spec);
2927
2928 return ret;
2929}
2930
9e15b77d
AE
2931static char *rbd_dev_image_name(struct rbd_device *rbd_dev)
2932{
2933 size_t image_id_size;
2934 char *image_id;
2935 void *p;
2936 void *end;
2937 size_t size;
2938 void *reply_buf = NULL;
2939 size_t len = 0;
2940 char *image_name = NULL;
2941 int ret;
2942
2943 rbd_assert(!rbd_dev->spec->image_name);
2944
69e7a02f
AE
2945 len = strlen(rbd_dev->spec->image_id);
2946 image_id_size = sizeof (__le32) + len;
9e15b77d
AE
2947 image_id = kmalloc(image_id_size, GFP_KERNEL);
2948 if (!image_id)
2949 return NULL;
2950
2951 p = image_id;
2952 end = (char *) image_id + image_id_size;
69e7a02f 2953 ceph_encode_string(&p, end, rbd_dev->spec->image_id, (u32) len);
9e15b77d
AE
2954
2955 size = sizeof (__le32) + RBD_IMAGE_NAME_LEN_MAX;
2956 reply_buf = kmalloc(size, GFP_KERNEL);
2957 if (!reply_buf)
2958 goto out;
2959
36be9a76 2960 ret = rbd_obj_method_sync(rbd_dev, RBD_DIRECTORY,
9e15b77d
AE
2961 "rbd", "dir_get_name",
2962 image_id, image_id_size,
07b2391f 2963 (char *) reply_buf, size, NULL);
9e15b77d
AE
2964 if (ret < 0)
2965 goto out;
2966 p = reply_buf;
2967 end = (char *) reply_buf + size;
2968 image_name = ceph_extract_encoded_string(&p, end, &len, GFP_KERNEL);
2969 if (IS_ERR(image_name))
2970 image_name = NULL;
2971 else
2972 dout("%s: name is %s len is %zd\n", __func__, image_name, len);
2973out:
2974 kfree(reply_buf);
2975 kfree(image_id);
2976
2977 return image_name;
2978}
2979
2980/*
2981 * When a parent image gets probed, we only have the pool, image,
2982 * and snapshot ids but not the names of any of them. This call
2983 * is made later to fill in those names. It has to be done after
2984 * rbd_dev_snaps_update() has completed because some of the
2985 * information (in particular, snapshot name) is not available
2986 * until then.
2987 */
2988static int rbd_dev_probe_update_spec(struct rbd_device *rbd_dev)
2989{
2990 struct ceph_osd_client *osdc;
2991 const char *name;
2992 void *reply_buf = NULL;
2993 int ret;
2994
2995 if (rbd_dev->spec->pool_name)
2996 return 0; /* Already have the names */
2997
2998 /* Look up the pool name */
2999
3000 osdc = &rbd_dev->rbd_client->client->osdc;
3001 name = ceph_pg_pool_name_by_id(osdc->osdmap, rbd_dev->spec->pool_id);
935dc89f
AE
3002 if (!name) {
3003 rbd_warn(rbd_dev, "there is no pool with id %llu",
3004 rbd_dev->spec->pool_id); /* Really a BUG() */
3005 return -EIO;
3006 }
9e15b77d
AE
3007
3008 rbd_dev->spec->pool_name = kstrdup(name, GFP_KERNEL);
3009 if (!rbd_dev->spec->pool_name)
3010 return -ENOMEM;
3011
3012 /* Fetch the image name; tolerate failure here */
3013
3014 name = rbd_dev_image_name(rbd_dev);
69e7a02f 3015 if (name)
9e15b77d 3016 rbd_dev->spec->image_name = (char *) name;
69e7a02f 3017 else
06ecc6cb 3018 rbd_warn(rbd_dev, "unable to get image name");
9e15b77d
AE
3019
3020 /* Look up the snapshot name. */
3021
3022 name = rbd_snap_name(rbd_dev, rbd_dev->spec->snap_id);
3023 if (!name) {
935dc89f
AE
3024 rbd_warn(rbd_dev, "no snapshot with id %llu",
3025 rbd_dev->spec->snap_id); /* Really a BUG() */
9e15b77d
AE
3026 ret = -EIO;
3027 goto out_err;
3028 }
3029 rbd_dev->spec->snap_name = kstrdup(name, GFP_KERNEL);
3030 if(!rbd_dev->spec->snap_name)
3031 goto out_err;
3032
3033 return 0;
3034out_err:
3035 kfree(reply_buf);
3036 kfree(rbd_dev->spec->pool_name);
3037 rbd_dev->spec->pool_name = NULL;
3038
3039 return ret;
3040}
3041
6e14b1a6 3042static int rbd_dev_v2_snap_context(struct rbd_device *rbd_dev, u64 *ver)
35d489f9
AE
3043{
3044 size_t size;
3045 int ret;
3046 void *reply_buf;
3047 void *p;
3048 void *end;
3049 u64 seq;
3050 u32 snap_count;
3051 struct ceph_snap_context *snapc;
3052 u32 i;
3053
3054 /*
3055 * We'll need room for the seq value (maximum snapshot id),
3056 * snapshot count, and array of that many snapshot ids.
3057 * For now we have a fixed upper limit on the number we're
3058 * prepared to receive.
3059 */
3060 size = sizeof (__le64) + sizeof (__le32) +
3061 RBD_MAX_SNAP_COUNT * sizeof (__le64);
3062 reply_buf = kzalloc(size, GFP_KERNEL);
3063 if (!reply_buf)
3064 return -ENOMEM;
3065
36be9a76 3066 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
35d489f9
AE
3067 "rbd", "get_snapcontext",
3068 NULL, 0,
07b2391f 3069 reply_buf, size, ver);
36be9a76 3070 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
35d489f9
AE
3071 if (ret < 0)
3072 goto out;
3073
3074 ret = -ERANGE;
3075 p = reply_buf;
3076 end = (char *) reply_buf + size;
3077 ceph_decode_64_safe(&p, end, seq, out);
3078 ceph_decode_32_safe(&p, end, snap_count, out);
3079
3080 /*
3081 * Make sure the reported number of snapshot ids wouldn't go
3082 * beyond the end of our buffer. But before checking that,
3083 * make sure the computed size of the snapshot context we
3084 * allocate is representable in a size_t.
3085 */
3086 if (snap_count > (SIZE_MAX - sizeof (struct ceph_snap_context))
3087 / sizeof (u64)) {
3088 ret = -EINVAL;
3089 goto out;
3090 }
3091 if (!ceph_has_room(&p, end, snap_count * sizeof (__le64)))
3092 goto out;
3093
3094 size = sizeof (struct ceph_snap_context) +
3095 snap_count * sizeof (snapc->snaps[0]);
3096 snapc = kmalloc(size, GFP_KERNEL);
3097 if (!snapc) {
3098 ret = -ENOMEM;
3099 goto out;
3100 }
3101
3102 atomic_set(&snapc->nref, 1);
3103 snapc->seq = seq;
3104 snapc->num_snaps = snap_count;
3105 for (i = 0; i < snap_count; i++)
3106 snapc->snaps[i] = ceph_decode_64(&p);
3107
3108 rbd_dev->header.snapc = snapc;
3109
3110 dout(" snap context seq = %llu, snap_count = %u\n",
3111 (unsigned long long) seq, (unsigned int) snap_count);
3112
3113out:
3114 kfree(reply_buf);
3115
3116 return 0;
3117}
3118
b8b1e2db
AE
3119static char *rbd_dev_v2_snap_name(struct rbd_device *rbd_dev, u32 which)
3120{
3121 size_t size;
3122 void *reply_buf;
3123 __le64 snap_id;
3124 int ret;
3125 void *p;
3126 void *end;
b8b1e2db
AE
3127 char *snap_name;
3128
3129 size = sizeof (__le32) + RBD_MAX_SNAP_NAME_LEN;
3130 reply_buf = kmalloc(size, GFP_KERNEL);
3131 if (!reply_buf)
3132 return ERR_PTR(-ENOMEM);
3133
3134 snap_id = cpu_to_le64(rbd_dev->header.snapc->snaps[which]);
36be9a76 3135 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
b8b1e2db
AE
3136 "rbd", "get_snapshot_name",
3137 (char *) &snap_id, sizeof (snap_id),
07b2391f 3138 reply_buf, size, NULL);
36be9a76 3139 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
b8b1e2db
AE
3140 if (ret < 0)
3141 goto out;
3142
3143 p = reply_buf;
3144 end = (char *) reply_buf + size;
e5c35534 3145 snap_name = ceph_extract_encoded_string(&p, end, NULL, GFP_KERNEL);
b8b1e2db
AE
3146 if (IS_ERR(snap_name)) {
3147 ret = PTR_ERR(snap_name);
3148 goto out;
3149 } else {
3150 dout(" snap_id 0x%016llx snap_name = %s\n",
3151 (unsigned long long) le64_to_cpu(snap_id), snap_name);
3152 }
3153 kfree(reply_buf);
3154
3155 return snap_name;
3156out:
3157 kfree(reply_buf);
3158
3159 return ERR_PTR(ret);
3160}
3161
3162static char *rbd_dev_v2_snap_info(struct rbd_device *rbd_dev, u32 which,
3163 u64 *snap_size, u64 *snap_features)
3164{
e0b49868 3165 u64 snap_id;
b8b1e2db
AE
3166 u8 order;
3167 int ret;
3168
3169 snap_id = rbd_dev->header.snapc->snaps[which];
3170 ret = _rbd_dev_v2_snap_size(rbd_dev, snap_id, &order, snap_size);
3171 if (ret)
3172 return ERR_PTR(ret);
3173 ret = _rbd_dev_v2_snap_features(rbd_dev, snap_id, snap_features);
3174 if (ret)
3175 return ERR_PTR(ret);
3176
3177 return rbd_dev_v2_snap_name(rbd_dev, which);
3178}
3179
3180static char *rbd_dev_snap_info(struct rbd_device *rbd_dev, u32 which,
3181 u64 *snap_size, u64 *snap_features)
3182{
3183 if (rbd_dev->image_format == 1)
3184 return rbd_dev_v1_snap_info(rbd_dev, which,
3185 snap_size, snap_features);
3186 if (rbd_dev->image_format == 2)
3187 return rbd_dev_v2_snap_info(rbd_dev, which,
3188 snap_size, snap_features);
3189 return ERR_PTR(-EINVAL);
3190}
3191
117973fb
AE
3192static int rbd_dev_v2_refresh(struct rbd_device *rbd_dev, u64 *hver)
3193{
3194 int ret;
3195 __u8 obj_order;
3196
3197 down_write(&rbd_dev->header_rwsem);
3198
3199 /* Grab old order first, to see if it changes */
3200
3201 obj_order = rbd_dev->header.obj_order,
3202 ret = rbd_dev_v2_image_size(rbd_dev);
3203 if (ret)
3204 goto out;
3205 if (rbd_dev->header.obj_order != obj_order) {
3206 ret = -EIO;
3207 goto out;
3208 }
3209 rbd_update_mapping_size(rbd_dev);
3210
3211 ret = rbd_dev_v2_snap_context(rbd_dev, hver);
3212 dout("rbd_dev_v2_snap_context returned %d\n", ret);
3213 if (ret)
3214 goto out;
3215 ret = rbd_dev_snaps_update(rbd_dev);
3216 dout("rbd_dev_snaps_update returned %d\n", ret);
3217 if (ret)
3218 goto out;
3219 ret = rbd_dev_snaps_register(rbd_dev);
3220 dout("rbd_dev_snaps_register returned %d\n", ret);
3221out:
3222 up_write(&rbd_dev->header_rwsem);
3223
3224 return ret;
3225}
3226
dfc5606d 3227/*
35938150
AE
3228 * Scan the rbd device's current snapshot list and compare it to the
3229 * newly-received snapshot context. Remove any existing snapshots
3230 * not present in the new snapshot context. Add a new snapshot for
3231 * any snaphots in the snapshot context not in the current list.
3232 * And verify there are no changes to snapshots we already know
3233 * about.
3234 *
3235 * Assumes the snapshots in the snapshot context are sorted by
3236 * snapshot id, highest id first. (Snapshots in the rbd_dev's list
3237 * are also maintained in that order.)
dfc5606d 3238 */
304f6808 3239static int rbd_dev_snaps_update(struct rbd_device *rbd_dev)
dfc5606d 3240{
35938150
AE
3241 struct ceph_snap_context *snapc = rbd_dev->header.snapc;
3242 const u32 snap_count = snapc->num_snaps;
35938150
AE
3243 struct list_head *head = &rbd_dev->snaps;
3244 struct list_head *links = head->next;
3245 u32 index = 0;
dfc5606d 3246
9fcbb800 3247 dout("%s: snap count is %u\n", __func__, (unsigned int) snap_count);
35938150
AE
3248 while (index < snap_count || links != head) {
3249 u64 snap_id;
3250 struct rbd_snap *snap;
cd892126
AE
3251 char *snap_name;
3252 u64 snap_size = 0;
3253 u64 snap_features = 0;
dfc5606d 3254
35938150
AE
3255 snap_id = index < snap_count ? snapc->snaps[index]
3256 : CEPH_NOSNAP;
3257 snap = links != head ? list_entry(links, struct rbd_snap, node)
3258 : NULL;
aafb230e 3259 rbd_assert(!snap || snap->id != CEPH_NOSNAP);
dfc5606d 3260
35938150
AE
3261 if (snap_id == CEPH_NOSNAP || (snap && snap->id > snap_id)) {
3262 struct list_head *next = links->next;
dfc5606d 3263
6d292906
AE
3264 /*
3265 * A previously-existing snapshot is not in
3266 * the new snap context.
3267 *
3268 * If the now missing snapshot is the one the
3269 * image is mapped to, clear its exists flag
3270 * so we can avoid sending any more requests
3271 * to it.
3272 */
0d7dbfce 3273 if (rbd_dev->spec->snap_id == snap->id)
6d292906 3274 clear_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags);
41f38c2b 3275 rbd_remove_snap_dev(snap);
9fcbb800 3276 dout("%ssnap id %llu has been removed\n",
0d7dbfce
AE
3277 rbd_dev->spec->snap_id == snap->id ?
3278 "mapped " : "",
9fcbb800 3279 (unsigned long long) snap->id);
35938150
AE
3280
3281 /* Done with this list entry; advance */
3282
3283 links = next;
dfc5606d
YS
3284 continue;
3285 }
35938150 3286
b8b1e2db
AE
3287 snap_name = rbd_dev_snap_info(rbd_dev, index,
3288 &snap_size, &snap_features);
cd892126
AE
3289 if (IS_ERR(snap_name))
3290 return PTR_ERR(snap_name);
3291
9fcbb800
AE
3292 dout("entry %u: snap_id = %llu\n", (unsigned int) snap_count,
3293 (unsigned long long) snap_id);
35938150
AE
3294 if (!snap || (snap_id != CEPH_NOSNAP && snap->id < snap_id)) {
3295 struct rbd_snap *new_snap;
3296
3297 /* We haven't seen this snapshot before */
3298
c8d18425 3299 new_snap = __rbd_add_snap_dev(rbd_dev, snap_name,
cd892126 3300 snap_id, snap_size, snap_features);
9fcbb800
AE
3301 if (IS_ERR(new_snap)) {
3302 int err = PTR_ERR(new_snap);
3303
3304 dout(" failed to add dev, error %d\n", err);
3305
3306 return err;
3307 }
35938150
AE
3308
3309 /* New goes before existing, or at end of list */
3310
9fcbb800 3311 dout(" added dev%s\n", snap ? "" : " at end\n");
35938150
AE
3312 if (snap)
3313 list_add_tail(&new_snap->node, &snap->node);
3314 else
523f3258 3315 list_add_tail(&new_snap->node, head);
35938150
AE
3316 } else {
3317 /* Already have this one */
3318
9fcbb800
AE
3319 dout(" already present\n");
3320
cd892126 3321 rbd_assert(snap->size == snap_size);
aafb230e 3322 rbd_assert(!strcmp(snap->name, snap_name));
cd892126 3323 rbd_assert(snap->features == snap_features);
35938150
AE
3324
3325 /* Done with this list entry; advance */
3326
3327 links = links->next;
dfc5606d 3328 }
35938150
AE
3329
3330 /* Advance to the next entry in the snapshot context */
3331
3332 index++;
dfc5606d 3333 }
9fcbb800 3334 dout("%s: done\n", __func__);
dfc5606d
YS
3335
3336 return 0;
3337}
3338
304f6808
AE
3339/*
3340 * Scan the list of snapshots and register the devices for any that
3341 * have not already been registered.
3342 */
3343static int rbd_dev_snaps_register(struct rbd_device *rbd_dev)
3344{
3345 struct rbd_snap *snap;
3346 int ret = 0;
3347
3348 dout("%s called\n", __func__);
86ff77bb
AE
3349 if (WARN_ON(!device_is_registered(&rbd_dev->dev)))
3350 return -EIO;
304f6808
AE
3351
3352 list_for_each_entry(snap, &rbd_dev->snaps, node) {
3353 if (!rbd_snap_registered(snap)) {
3354 ret = rbd_register_snap_dev(snap, &rbd_dev->dev);
3355 if (ret < 0)
3356 break;
3357 }
3358 }
3359 dout("%s: returning %d\n", __func__, ret);
3360
3361 return ret;
3362}
3363
dfc5606d
YS
3364static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
3365{
dfc5606d 3366 struct device *dev;
cd789ab9 3367 int ret;
dfc5606d
YS
3368
3369 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
dfc5606d 3370
cd789ab9 3371 dev = &rbd_dev->dev;
dfc5606d
YS
3372 dev->bus = &rbd_bus_type;
3373 dev->type = &rbd_device_type;
3374 dev->parent = &rbd_root_dev;
3375 dev->release = rbd_dev_release;
de71a297 3376 dev_set_name(dev, "%d", rbd_dev->dev_id);
dfc5606d 3377 ret = device_register(dev);
dfc5606d 3378
dfc5606d 3379 mutex_unlock(&ctl_mutex);
cd789ab9 3380
dfc5606d 3381 return ret;
602adf40
YS
3382}
3383
dfc5606d
YS
3384static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
3385{
3386 device_unregister(&rbd_dev->dev);
3387}
3388
e2839308 3389static atomic64_t rbd_dev_id_max = ATOMIC64_INIT(0);
1ddbe94e
AE
3390
3391/*
499afd5b
AE
3392 * Get a unique rbd identifier for the given new rbd_dev, and add
3393 * the rbd_dev to the global list. The minimum rbd id is 1.
1ddbe94e 3394 */
e2839308 3395static void rbd_dev_id_get(struct rbd_device *rbd_dev)
b7f23c36 3396{
e2839308 3397 rbd_dev->dev_id = atomic64_inc_return(&rbd_dev_id_max);
499afd5b
AE
3398
3399 spin_lock(&rbd_dev_list_lock);
3400 list_add_tail(&rbd_dev->node, &rbd_dev_list);
3401 spin_unlock(&rbd_dev_list_lock);
e2839308
AE
3402 dout("rbd_dev %p given dev id %llu\n", rbd_dev,
3403 (unsigned long long) rbd_dev->dev_id);
1ddbe94e 3404}
b7f23c36 3405
1ddbe94e 3406/*
499afd5b
AE
3407 * Remove an rbd_dev from the global list, and record that its
3408 * identifier is no longer in use.
1ddbe94e 3409 */
e2839308 3410static void rbd_dev_id_put(struct rbd_device *rbd_dev)
1ddbe94e 3411{
d184f6bf 3412 struct list_head *tmp;
de71a297 3413 int rbd_id = rbd_dev->dev_id;
d184f6bf
AE
3414 int max_id;
3415
aafb230e 3416 rbd_assert(rbd_id > 0);
499afd5b 3417
e2839308
AE
3418 dout("rbd_dev %p released dev id %llu\n", rbd_dev,
3419 (unsigned long long) rbd_dev->dev_id);
499afd5b
AE
3420 spin_lock(&rbd_dev_list_lock);
3421 list_del_init(&rbd_dev->node);
d184f6bf
AE
3422
3423 /*
3424 * If the id being "put" is not the current maximum, there
3425 * is nothing special we need to do.
3426 */
e2839308 3427 if (rbd_id != atomic64_read(&rbd_dev_id_max)) {
d184f6bf
AE
3428 spin_unlock(&rbd_dev_list_lock);
3429 return;
3430 }
3431
3432 /*
3433 * We need to update the current maximum id. Search the
3434 * list to find out what it is. We're more likely to find
3435 * the maximum at the end, so search the list backward.
3436 */
3437 max_id = 0;
3438 list_for_each_prev(tmp, &rbd_dev_list) {
3439 struct rbd_device *rbd_dev;
3440
3441 rbd_dev = list_entry(tmp, struct rbd_device, node);
b213e0b1
AE
3442 if (rbd_dev->dev_id > max_id)
3443 max_id = rbd_dev->dev_id;
d184f6bf 3444 }
499afd5b 3445 spin_unlock(&rbd_dev_list_lock);
b7f23c36 3446
1ddbe94e 3447 /*
e2839308 3448 * The max id could have been updated by rbd_dev_id_get(), in
d184f6bf
AE
3449 * which case it now accurately reflects the new maximum.
3450 * Be careful not to overwrite the maximum value in that
3451 * case.
1ddbe94e 3452 */
e2839308
AE
3453 atomic64_cmpxchg(&rbd_dev_id_max, rbd_id, max_id);
3454 dout(" max dev id has been reset\n");
b7f23c36
AE
3455}
3456
e28fff26
AE
3457/*
3458 * Skips over white space at *buf, and updates *buf to point to the
3459 * first found non-space character (if any). Returns the length of
593a9e7b
AE
3460 * the token (string of non-white space characters) found. Note
3461 * that *buf must be terminated with '\0'.
e28fff26
AE
3462 */
3463static inline size_t next_token(const char **buf)
3464{
3465 /*
3466 * These are the characters that produce nonzero for
3467 * isspace() in the "C" and "POSIX" locales.
3468 */
3469 const char *spaces = " \f\n\r\t\v";
3470
3471 *buf += strspn(*buf, spaces); /* Find start of token */
3472
3473 return strcspn(*buf, spaces); /* Return token length */
3474}
3475
3476/*
3477 * Finds the next token in *buf, and if the provided token buffer is
3478 * big enough, copies the found token into it. The result, if
593a9e7b
AE
3479 * copied, is guaranteed to be terminated with '\0'. Note that *buf
3480 * must be terminated with '\0' on entry.
e28fff26
AE
3481 *
3482 * Returns the length of the token found (not including the '\0').
3483 * Return value will be 0 if no token is found, and it will be >=
3484 * token_size if the token would not fit.
3485 *
593a9e7b 3486 * The *buf pointer will be updated to point beyond the end of the
e28fff26
AE
3487 * found token. Note that this occurs even if the token buffer is
3488 * too small to hold it.
3489 */
3490static inline size_t copy_token(const char **buf,
3491 char *token,
3492 size_t token_size)
3493{
3494 size_t len;
3495
3496 len = next_token(buf);
3497 if (len < token_size) {
3498 memcpy(token, *buf, len);
3499 *(token + len) = '\0';
3500 }
3501 *buf += len;
3502
3503 return len;
3504}
3505
ea3352f4
AE
3506/*
3507 * Finds the next token in *buf, dynamically allocates a buffer big
3508 * enough to hold a copy of it, and copies the token into the new
3509 * buffer. The copy is guaranteed to be terminated with '\0'. Note
3510 * that a duplicate buffer is created even for a zero-length token.
3511 *
3512 * Returns a pointer to the newly-allocated duplicate, or a null
3513 * pointer if memory for the duplicate was not available. If
3514 * the lenp argument is a non-null pointer, the length of the token
3515 * (not including the '\0') is returned in *lenp.
3516 *
3517 * If successful, the *buf pointer will be updated to point beyond
3518 * the end of the found token.
3519 *
3520 * Note: uses GFP_KERNEL for allocation.
3521 */
3522static inline char *dup_token(const char **buf, size_t *lenp)
3523{
3524 char *dup;
3525 size_t len;
3526
3527 len = next_token(buf);
4caf35f9 3528 dup = kmemdup(*buf, len + 1, GFP_KERNEL);
ea3352f4
AE
3529 if (!dup)
3530 return NULL;
ea3352f4
AE
3531 *(dup + len) = '\0';
3532 *buf += len;
3533
3534 if (lenp)
3535 *lenp = len;
3536
3537 return dup;
3538}
3539
a725f65e 3540/*
859c31df
AE
3541 * Parse the options provided for an "rbd add" (i.e., rbd image
3542 * mapping) request. These arrive via a write to /sys/bus/rbd/add,
3543 * and the data written is passed here via a NUL-terminated buffer.
3544 * Returns 0 if successful or an error code otherwise.
d22f76e7 3545 *
859c31df
AE
3546 * The information extracted from these options is recorded in
3547 * the other parameters which return dynamically-allocated
3548 * structures:
3549 * ceph_opts
3550 * The address of a pointer that will refer to a ceph options
3551 * structure. Caller must release the returned pointer using
3552 * ceph_destroy_options() when it is no longer needed.
3553 * rbd_opts
3554 * Address of an rbd options pointer. Fully initialized by
3555 * this function; caller must release with kfree().
3556 * spec
3557 * Address of an rbd image specification pointer. Fully
3558 * initialized by this function based on parsed options.
3559 * Caller must release with rbd_spec_put().
3560 *
3561 * The options passed take this form:
3562 * <mon_addrs> <options> <pool_name> <image_name> [<snap_id>]
3563 * where:
3564 * <mon_addrs>
3565 * A comma-separated list of one or more monitor addresses.
3566 * A monitor address is an ip address, optionally followed
3567 * by a port number (separated by a colon).
3568 * I.e.: ip1[:port1][,ip2[:port2]...]
3569 * <options>
3570 * A comma-separated list of ceph and/or rbd options.
3571 * <pool_name>
3572 * The name of the rados pool containing the rbd image.
3573 * <image_name>
3574 * The name of the image in that pool to map.
3575 * <snap_id>
3576 * An optional snapshot id. If provided, the mapping will
3577 * present data from the image at the time that snapshot was
3578 * created. The image head is used if no snapshot id is
3579 * provided. Snapshot mappings are always read-only.
a725f65e 3580 */
859c31df 3581static int rbd_add_parse_args(const char *buf,
dc79b113 3582 struct ceph_options **ceph_opts,
859c31df
AE
3583 struct rbd_options **opts,
3584 struct rbd_spec **rbd_spec)
e28fff26 3585{
d22f76e7 3586 size_t len;
859c31df 3587 char *options;
0ddebc0c
AE
3588 const char *mon_addrs;
3589 size_t mon_addrs_size;
859c31df 3590 struct rbd_spec *spec = NULL;
4e9afeba 3591 struct rbd_options *rbd_opts = NULL;
859c31df 3592 struct ceph_options *copts;
dc79b113 3593 int ret;
e28fff26
AE
3594
3595 /* The first four tokens are required */
3596
7ef3214a 3597 len = next_token(&buf);
4fb5d671
AE
3598 if (!len) {
3599 rbd_warn(NULL, "no monitor address(es) provided");
3600 return -EINVAL;
3601 }
0ddebc0c 3602 mon_addrs = buf;
f28e565a 3603 mon_addrs_size = len + 1;
7ef3214a 3604 buf += len;
a725f65e 3605
dc79b113 3606 ret = -EINVAL;
f28e565a
AE
3607 options = dup_token(&buf, NULL);
3608 if (!options)
dc79b113 3609 return -ENOMEM;
4fb5d671
AE
3610 if (!*options) {
3611 rbd_warn(NULL, "no options provided");
3612 goto out_err;
3613 }
e28fff26 3614
859c31df
AE
3615 spec = rbd_spec_alloc();
3616 if (!spec)
f28e565a 3617 goto out_mem;
859c31df
AE
3618
3619 spec->pool_name = dup_token(&buf, NULL);
3620 if (!spec->pool_name)
3621 goto out_mem;
4fb5d671
AE
3622 if (!*spec->pool_name) {
3623 rbd_warn(NULL, "no pool name provided");
3624 goto out_err;
3625 }
e28fff26 3626
69e7a02f 3627 spec->image_name = dup_token(&buf, NULL);
859c31df 3628 if (!spec->image_name)
f28e565a 3629 goto out_mem;
4fb5d671
AE
3630 if (!*spec->image_name) {
3631 rbd_warn(NULL, "no image name provided");
3632 goto out_err;
3633 }
d4b125e9 3634
f28e565a
AE
3635 /*
3636 * Snapshot name is optional; default is to use "-"
3637 * (indicating the head/no snapshot).
3638 */
3feeb894 3639 len = next_token(&buf);
820a5f3e 3640 if (!len) {
3feeb894
AE
3641 buf = RBD_SNAP_HEAD_NAME; /* No snapshot supplied */
3642 len = sizeof (RBD_SNAP_HEAD_NAME) - 1;
f28e565a 3643 } else if (len > RBD_MAX_SNAP_NAME_LEN) {
dc79b113 3644 ret = -ENAMETOOLONG;
f28e565a 3645 goto out_err;
849b4260 3646 }
4caf35f9 3647 spec->snap_name = kmemdup(buf, len + 1, GFP_KERNEL);
859c31df 3648 if (!spec->snap_name)
f28e565a 3649 goto out_mem;
859c31df 3650 *(spec->snap_name + len) = '\0';
e5c35534 3651
0ddebc0c 3652 /* Initialize all rbd options to the defaults */
e28fff26 3653
4e9afeba
AE
3654 rbd_opts = kzalloc(sizeof (*rbd_opts), GFP_KERNEL);
3655 if (!rbd_opts)
3656 goto out_mem;
3657
3658 rbd_opts->read_only = RBD_READ_ONLY_DEFAULT;
d22f76e7 3659
859c31df 3660 copts = ceph_parse_options(options, mon_addrs,
0ddebc0c 3661 mon_addrs + mon_addrs_size - 1,
4e9afeba 3662 parse_rbd_opts_token, rbd_opts);
859c31df
AE
3663 if (IS_ERR(copts)) {
3664 ret = PTR_ERR(copts);
dc79b113
AE
3665 goto out_err;
3666 }
859c31df
AE
3667 kfree(options);
3668
3669 *ceph_opts = copts;
4e9afeba 3670 *opts = rbd_opts;
859c31df 3671 *rbd_spec = spec;
0ddebc0c 3672
dc79b113 3673 return 0;
f28e565a 3674out_mem:
dc79b113 3675 ret = -ENOMEM;
d22f76e7 3676out_err:
859c31df
AE
3677 kfree(rbd_opts);
3678 rbd_spec_put(spec);
f28e565a 3679 kfree(options);
d22f76e7 3680
dc79b113 3681 return ret;
a725f65e
AE
3682}
3683
589d30e0
AE
3684/*
3685 * An rbd format 2 image has a unique identifier, distinct from the
3686 * name given to it by the user. Internally, that identifier is
3687 * what's used to specify the names of objects related to the image.
3688 *
3689 * A special "rbd id" object is used to map an rbd image name to its
3690 * id. If that object doesn't exist, then there is no v2 rbd image
3691 * with the supplied name.
3692 *
3693 * This function will record the given rbd_dev's image_id field if
3694 * it can be determined, and in that case will return 0. If any
3695 * errors occur a negative errno will be returned and the rbd_dev's
3696 * image_id field will be unchanged (and should be NULL).
3697 */
3698static int rbd_dev_image_id(struct rbd_device *rbd_dev)
3699{
3700 int ret;
3701 size_t size;
3702 char *object_name;
3703 void *response;
3704 void *p;
3705
2c0d0a10
AE
3706 /*
3707 * When probing a parent image, the image id is already
3708 * known (and the image name likely is not). There's no
3709 * need to fetch the image id again in this case.
3710 */
3711 if (rbd_dev->spec->image_id)
3712 return 0;
3713
589d30e0
AE
3714 /*
3715 * First, see if the format 2 image id file exists, and if
3716 * so, get the image's persistent id from it.
3717 */
69e7a02f 3718 size = sizeof (RBD_ID_PREFIX) + strlen(rbd_dev->spec->image_name);
589d30e0
AE
3719 object_name = kmalloc(size, GFP_NOIO);
3720 if (!object_name)
3721 return -ENOMEM;
0d7dbfce 3722 sprintf(object_name, "%s%s", RBD_ID_PREFIX, rbd_dev->spec->image_name);
589d30e0
AE
3723 dout("rbd id object name is %s\n", object_name);
3724
3725 /* Response will be an encoded string, which includes a length */
3726
3727 size = sizeof (__le32) + RBD_IMAGE_ID_LEN_MAX;
3728 response = kzalloc(size, GFP_NOIO);
3729 if (!response) {
3730 ret = -ENOMEM;
3731 goto out;
3732 }
3733
36be9a76 3734 ret = rbd_obj_method_sync(rbd_dev, object_name,
589d30e0
AE
3735 "rbd", "get_id",
3736 NULL, 0,
07b2391f 3737 response, RBD_IMAGE_ID_LEN_MAX, NULL);
36be9a76 3738 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
589d30e0
AE
3739 if (ret < 0)
3740 goto out;
36be9a76 3741 ret = 0; /* rbd_obj_method_sync() can return positive */
589d30e0
AE
3742
3743 p = response;
0d7dbfce 3744 rbd_dev->spec->image_id = ceph_extract_encoded_string(&p,
589d30e0 3745 p + RBD_IMAGE_ID_LEN_MAX,
979ed480 3746 NULL, GFP_NOIO);
0d7dbfce
AE
3747 if (IS_ERR(rbd_dev->spec->image_id)) {
3748 ret = PTR_ERR(rbd_dev->spec->image_id);
3749 rbd_dev->spec->image_id = NULL;
589d30e0 3750 } else {
0d7dbfce 3751 dout("image_id is %s\n", rbd_dev->spec->image_id);
589d30e0
AE
3752 }
3753out:
3754 kfree(response);
3755 kfree(object_name);
3756
3757 return ret;
3758}
3759
a30b71b9
AE
3760static int rbd_dev_v1_probe(struct rbd_device *rbd_dev)
3761{
3762 int ret;
3763 size_t size;
3764
3765 /* Version 1 images have no id; empty string is used */
3766
0d7dbfce
AE
3767 rbd_dev->spec->image_id = kstrdup("", GFP_KERNEL);
3768 if (!rbd_dev->spec->image_id)
a30b71b9 3769 return -ENOMEM;
a30b71b9
AE
3770
3771 /* Record the header object name for this rbd image. */
3772
69e7a02f 3773 size = strlen(rbd_dev->spec->image_name) + sizeof (RBD_SUFFIX);
a30b71b9
AE
3774 rbd_dev->header_name = kmalloc(size, GFP_KERNEL);
3775 if (!rbd_dev->header_name) {
3776 ret = -ENOMEM;
3777 goto out_err;
3778 }
0d7dbfce
AE
3779 sprintf(rbd_dev->header_name, "%s%s",
3780 rbd_dev->spec->image_name, RBD_SUFFIX);
a30b71b9
AE
3781
3782 /* Populate rbd image metadata */
3783
3784 ret = rbd_read_header(rbd_dev, &rbd_dev->header);
3785 if (ret < 0)
3786 goto out_err;
86b00e0d
AE
3787
3788 /* Version 1 images have no parent (no layering) */
3789
3790 rbd_dev->parent_spec = NULL;
3791 rbd_dev->parent_overlap = 0;
3792
a30b71b9
AE
3793 rbd_dev->image_format = 1;
3794
3795 dout("discovered version 1 image, header name is %s\n",
3796 rbd_dev->header_name);
3797
3798 return 0;
3799
3800out_err:
3801 kfree(rbd_dev->header_name);
3802 rbd_dev->header_name = NULL;
0d7dbfce
AE
3803 kfree(rbd_dev->spec->image_id);
3804 rbd_dev->spec->image_id = NULL;
a30b71b9
AE
3805
3806 return ret;
3807}
3808
3809static int rbd_dev_v2_probe(struct rbd_device *rbd_dev)
3810{
3811 size_t size;
9d475de5 3812 int ret;
6e14b1a6 3813 u64 ver = 0;
a30b71b9
AE
3814
3815 /*
3816 * Image id was filled in by the caller. Record the header
3817 * object name for this rbd image.
3818 */
979ed480 3819 size = sizeof (RBD_HEADER_PREFIX) + strlen(rbd_dev->spec->image_id);
a30b71b9
AE
3820 rbd_dev->header_name = kmalloc(size, GFP_KERNEL);
3821 if (!rbd_dev->header_name)
3822 return -ENOMEM;
3823 sprintf(rbd_dev->header_name, "%s%s",
0d7dbfce 3824 RBD_HEADER_PREFIX, rbd_dev->spec->image_id);
9d475de5
AE
3825
3826 /* Get the size and object order for the image */
3827
3828 ret = rbd_dev_v2_image_size(rbd_dev);
1e130199
AE
3829 if (ret < 0)
3830 goto out_err;
3831
3832 /* Get the object prefix (a.k.a. block_name) for the image */
3833
3834 ret = rbd_dev_v2_object_prefix(rbd_dev);
b1b5402a
AE
3835 if (ret < 0)
3836 goto out_err;
3837
d889140c 3838 /* Get the and check features for the image */
b1b5402a
AE
3839
3840 ret = rbd_dev_v2_features(rbd_dev);
9d475de5
AE
3841 if (ret < 0)
3842 goto out_err;
35d489f9 3843
86b00e0d
AE
3844 /* If the image supports layering, get the parent info */
3845
3846 if (rbd_dev->header.features & RBD_FEATURE_LAYERING) {
3847 ret = rbd_dev_v2_parent_info(rbd_dev);
3848 if (ret < 0)
3849 goto out_err;
3850 }
3851
6e14b1a6
AE
3852 /* crypto and compression type aren't (yet) supported for v2 images */
3853
3854 rbd_dev->header.crypt_type = 0;
3855 rbd_dev->header.comp_type = 0;
35d489f9 3856
6e14b1a6
AE
3857 /* Get the snapshot context, plus the header version */
3858
3859 ret = rbd_dev_v2_snap_context(rbd_dev, &ver);
35d489f9
AE
3860 if (ret)
3861 goto out_err;
6e14b1a6
AE
3862 rbd_dev->header.obj_version = ver;
3863
a30b71b9
AE
3864 rbd_dev->image_format = 2;
3865
3866 dout("discovered version 2 image, header name is %s\n",
3867 rbd_dev->header_name);
3868
35152979 3869 return 0;
9d475de5 3870out_err:
86b00e0d
AE
3871 rbd_dev->parent_overlap = 0;
3872 rbd_spec_put(rbd_dev->parent_spec);
3873 rbd_dev->parent_spec = NULL;
9d475de5
AE
3874 kfree(rbd_dev->header_name);
3875 rbd_dev->header_name = NULL;
1e130199
AE
3876 kfree(rbd_dev->header.object_prefix);
3877 rbd_dev->header.object_prefix = NULL;
9d475de5
AE
3878
3879 return ret;
a30b71b9
AE
3880}
3881
83a06263
AE
3882static int rbd_dev_probe_finish(struct rbd_device *rbd_dev)
3883{
3884 int ret;
3885
3886 /* no need to lock here, as rbd_dev is not registered yet */
3887 ret = rbd_dev_snaps_update(rbd_dev);
3888 if (ret)
3889 return ret;
3890
9e15b77d
AE
3891 ret = rbd_dev_probe_update_spec(rbd_dev);
3892 if (ret)
3893 goto err_out_snaps;
3894
83a06263
AE
3895 ret = rbd_dev_set_mapping(rbd_dev);
3896 if (ret)
3897 goto err_out_snaps;
3898
3899 /* generate unique id: find highest unique id, add one */
3900 rbd_dev_id_get(rbd_dev);
3901
3902 /* Fill in the device name, now that we have its id. */
3903 BUILD_BUG_ON(DEV_NAME_LEN
3904 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
3905 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
3906
3907 /* Get our block major device number. */
3908
3909 ret = register_blkdev(0, rbd_dev->name);
3910 if (ret < 0)
3911 goto err_out_id;
3912 rbd_dev->major = ret;
3913
3914 /* Set up the blkdev mapping. */
3915
3916 ret = rbd_init_disk(rbd_dev);
3917 if (ret)
3918 goto err_out_blkdev;
3919
3920 ret = rbd_bus_add_dev(rbd_dev);
3921 if (ret)
3922 goto err_out_disk;
3923
3924 /*
3925 * At this point cleanup in the event of an error is the job
3926 * of the sysfs code (initiated by rbd_bus_del_dev()).
3927 */
3928 down_write(&rbd_dev->header_rwsem);
3929 ret = rbd_dev_snaps_register(rbd_dev);
3930 up_write(&rbd_dev->header_rwsem);
3931 if (ret)
3932 goto err_out_bus;
3933
9969ebc5 3934 ret = rbd_dev_header_watch_sync(rbd_dev, 1);
83a06263
AE
3935 if (ret)
3936 goto err_out_bus;
3937
3938 /* Everything's ready. Announce the disk to the world. */
3939
3940 add_disk(rbd_dev->disk);
3941
3942 pr_info("%s: added with size 0x%llx\n", rbd_dev->disk->disk_name,
3943 (unsigned long long) rbd_dev->mapping.size);
3944
3945 return ret;
3946err_out_bus:
3947 /* this will also clean up rest of rbd_dev stuff */
3948
3949 rbd_bus_del_dev(rbd_dev);
3950
3951 return ret;
3952err_out_disk:
3953 rbd_free_disk(rbd_dev);
3954err_out_blkdev:
3955 unregister_blkdev(rbd_dev->major, rbd_dev->name);
3956err_out_id:
3957 rbd_dev_id_put(rbd_dev);
3958err_out_snaps:
3959 rbd_remove_all_snaps(rbd_dev);
3960
3961 return ret;
3962}
3963
a30b71b9
AE
3964/*
3965 * Probe for the existence of the header object for the given rbd
3966 * device. For format 2 images this includes determining the image
3967 * id.
3968 */
3969static int rbd_dev_probe(struct rbd_device *rbd_dev)
3970{
3971 int ret;
3972
3973 /*
3974 * Get the id from the image id object. If it's not a
3975 * format 2 image, we'll get ENOENT back, and we'll assume
3976 * it's a format 1 image.
3977 */
3978 ret = rbd_dev_image_id(rbd_dev);
3979 if (ret)
3980 ret = rbd_dev_v1_probe(rbd_dev);
3981 else
3982 ret = rbd_dev_v2_probe(rbd_dev);
83a06263 3983 if (ret) {
a30b71b9
AE
3984 dout("probe failed, returning %d\n", ret);
3985
83a06263
AE
3986 return ret;
3987 }
3988
3989 ret = rbd_dev_probe_finish(rbd_dev);
3990 if (ret)
3991 rbd_header_free(&rbd_dev->header);
3992
a30b71b9
AE
3993 return ret;
3994}
3995
59c2be1e
YS
3996static ssize_t rbd_add(struct bus_type *bus,
3997 const char *buf,
3998 size_t count)
602adf40 3999{
cb8627c7 4000 struct rbd_device *rbd_dev = NULL;
dc79b113 4001 struct ceph_options *ceph_opts = NULL;
4e9afeba 4002 struct rbd_options *rbd_opts = NULL;
859c31df 4003 struct rbd_spec *spec = NULL;
9d3997fd 4004 struct rbd_client *rbdc;
27cc2594
AE
4005 struct ceph_osd_client *osdc;
4006 int rc = -ENOMEM;
602adf40
YS
4007
4008 if (!try_module_get(THIS_MODULE))
4009 return -ENODEV;
4010
602adf40 4011 /* parse add command */
859c31df 4012 rc = rbd_add_parse_args(buf, &ceph_opts, &rbd_opts, &spec);
dc79b113 4013 if (rc < 0)
bd4ba655 4014 goto err_out_module;
78cea76e 4015
9d3997fd
AE
4016 rbdc = rbd_get_client(ceph_opts);
4017 if (IS_ERR(rbdc)) {
4018 rc = PTR_ERR(rbdc);
0ddebc0c 4019 goto err_out_args;
9d3997fd 4020 }
c53d5893 4021 ceph_opts = NULL; /* rbd_dev client now owns this */
602adf40 4022
602adf40 4023 /* pick the pool */
9d3997fd 4024 osdc = &rbdc->client->osdc;
859c31df 4025 rc = ceph_pg_poolid_by_name(osdc->osdmap, spec->pool_name);
602adf40
YS
4026 if (rc < 0)
4027 goto err_out_client;
859c31df
AE
4028 spec->pool_id = (u64) rc;
4029
0903e875
AE
4030 /* The ceph file layout needs to fit pool id in 32 bits */
4031
4032 if (WARN_ON(spec->pool_id > (u64) U32_MAX)) {
4033 rc = -EIO;
4034 goto err_out_client;
4035 }
4036
c53d5893 4037 rbd_dev = rbd_dev_create(rbdc, spec);
bd4ba655
AE
4038 if (!rbd_dev)
4039 goto err_out_client;
c53d5893
AE
4040 rbdc = NULL; /* rbd_dev now owns this */
4041 spec = NULL; /* rbd_dev now owns this */
602adf40 4042
bd4ba655 4043 rbd_dev->mapping.read_only = rbd_opts->read_only;
c53d5893
AE
4044 kfree(rbd_opts);
4045 rbd_opts = NULL; /* done with this */
bd4ba655 4046
a30b71b9
AE
4047 rc = rbd_dev_probe(rbd_dev);
4048 if (rc < 0)
c53d5893 4049 goto err_out_rbd_dev;
05fd6f6f 4050
602adf40 4051 return count;
c53d5893
AE
4052err_out_rbd_dev:
4053 rbd_dev_destroy(rbd_dev);
bd4ba655 4054err_out_client:
9d3997fd 4055 rbd_put_client(rbdc);
0ddebc0c 4056err_out_args:
78cea76e
AE
4057 if (ceph_opts)
4058 ceph_destroy_options(ceph_opts);
4e9afeba 4059 kfree(rbd_opts);
859c31df 4060 rbd_spec_put(spec);
bd4ba655
AE
4061err_out_module:
4062 module_put(THIS_MODULE);
27cc2594 4063
602adf40 4064 dout("Error adding device %s\n", buf);
27cc2594
AE
4065
4066 return (ssize_t) rc;
602adf40
YS
4067}
4068
de71a297 4069static struct rbd_device *__rbd_get_dev(unsigned long dev_id)
602adf40
YS
4070{
4071 struct list_head *tmp;
4072 struct rbd_device *rbd_dev;
4073
e124a82f 4074 spin_lock(&rbd_dev_list_lock);
602adf40
YS
4075 list_for_each(tmp, &rbd_dev_list) {
4076 rbd_dev = list_entry(tmp, struct rbd_device, node);
de71a297 4077 if (rbd_dev->dev_id == dev_id) {
e124a82f 4078 spin_unlock(&rbd_dev_list_lock);
602adf40 4079 return rbd_dev;
e124a82f 4080 }
602adf40 4081 }
e124a82f 4082 spin_unlock(&rbd_dev_list_lock);
602adf40
YS
4083 return NULL;
4084}
4085
dfc5606d 4086static void rbd_dev_release(struct device *dev)
602adf40 4087{
593a9e7b 4088 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
602adf40 4089
59c2be1e 4090 if (rbd_dev->watch_event)
9969ebc5 4091 rbd_dev_header_watch_sync(rbd_dev, 0);
602adf40
YS
4092
4093 /* clean up and free blkdev */
4094 rbd_free_disk(rbd_dev);
4095 unregister_blkdev(rbd_dev->major, rbd_dev->name);
32eec68d 4096
2ac4e75d
AE
4097 /* release allocated disk header fields */
4098 rbd_header_free(&rbd_dev->header);
4099
32eec68d 4100 /* done with the id, and with the rbd_dev */
e2839308 4101 rbd_dev_id_put(rbd_dev);
c53d5893
AE
4102 rbd_assert(rbd_dev->rbd_client != NULL);
4103 rbd_dev_destroy(rbd_dev);
602adf40
YS
4104
4105 /* release module ref */
4106 module_put(THIS_MODULE);
602adf40
YS
4107}
4108
dfc5606d
YS
4109static ssize_t rbd_remove(struct bus_type *bus,
4110 const char *buf,
4111 size_t count)
602adf40
YS
4112{
4113 struct rbd_device *rbd_dev = NULL;
4114 int target_id, rc;
4115 unsigned long ul;
4116 int ret = count;
4117
4118 rc = strict_strtoul(buf, 10, &ul);
4119 if (rc)
4120 return rc;
4121
4122 /* convert to int; abort if we lost anything in the conversion */
4123 target_id = (int) ul;
4124 if (target_id != ul)
4125 return -EINVAL;
4126
4127 mutex_lock_nested(&ctl_mutex, SINGLE_DEPTH_NESTING);
4128
4129 rbd_dev = __rbd_get_dev(target_id);
4130 if (!rbd_dev) {
4131 ret = -ENOENT;
4132 goto done;
42382b70
AE
4133 }
4134
a14ea269 4135 spin_lock_irq(&rbd_dev->lock);
b82d167b 4136 if (rbd_dev->open_count)
42382b70 4137 ret = -EBUSY;
b82d167b
AE
4138 else
4139 set_bit(RBD_DEV_FLAG_REMOVING, &rbd_dev->flags);
a14ea269 4140 spin_unlock_irq(&rbd_dev->lock);
b82d167b 4141 if (ret < 0)
42382b70 4142 goto done;
602adf40 4143
41f38c2b 4144 rbd_remove_all_snaps(rbd_dev);
dfc5606d 4145 rbd_bus_del_dev(rbd_dev);
602adf40
YS
4146
4147done:
4148 mutex_unlock(&ctl_mutex);
aafb230e 4149
602adf40
YS
4150 return ret;
4151}
4152
602adf40
YS
4153/*
4154 * create control files in sysfs
dfc5606d 4155 * /sys/bus/rbd/...
602adf40
YS
4156 */
4157static int rbd_sysfs_init(void)
4158{
dfc5606d 4159 int ret;
602adf40 4160
fed4c143 4161 ret = device_register(&rbd_root_dev);
21079786 4162 if (ret < 0)
dfc5606d 4163 return ret;
602adf40 4164
fed4c143
AE
4165 ret = bus_register(&rbd_bus_type);
4166 if (ret < 0)
4167 device_unregister(&rbd_root_dev);
602adf40 4168
602adf40
YS
4169 return ret;
4170}
4171
4172static void rbd_sysfs_cleanup(void)
4173{
dfc5606d 4174 bus_unregister(&rbd_bus_type);
fed4c143 4175 device_unregister(&rbd_root_dev);
602adf40
YS
4176}
4177
4178int __init rbd_init(void)
4179{
4180 int rc;
4181
1e32d34c
AE
4182 if (!libceph_compatible(NULL)) {
4183 rbd_warn(NULL, "libceph incompatibility (quitting)");
4184
4185 return -EINVAL;
4186 }
602adf40
YS
4187 rc = rbd_sysfs_init();
4188 if (rc)
4189 return rc;
f0f8cef5 4190 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
602adf40
YS
4191 return 0;
4192}
4193
4194void __exit rbd_exit(void)
4195{
4196 rbd_sysfs_cleanup();
4197}
4198
4199module_init(rbd_init);
4200module_exit(rbd_exit);
4201
4202MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
4203MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
4204MODULE_DESCRIPTION("rados block device");
4205
4206/* following authorship retained from original osdblk.c */
4207MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
4208
4209MODULE_LICENSE("GPL");