Merge remote-tracking branch 'asoc/topic/tlv320aic26' into asoc-next
[deliverable/linux.git] / drivers / block / rbd.c
CommitLineData
e2a58ee5 1
602adf40
YS
2/*
3 rbd.c -- Export ceph rados objects as a Linux block device
4
5
6 based on drivers/block/osdblk.c:
7
8 Copyright 2009 Red Hat, Inc.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; see the file COPYING. If not, write to
21 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22
23
24
dfc5606d 25 For usage instructions, please refer to:
602adf40 26
dfc5606d 27 Documentation/ABI/testing/sysfs-bus-rbd
602adf40
YS
28
29 */
30
31#include <linux/ceph/libceph.h>
32#include <linux/ceph/osd_client.h>
33#include <linux/ceph/mon_client.h>
34#include <linux/ceph/decode.h>
59c2be1e 35#include <linux/parser.h>
30d1cff8 36#include <linux/bsearch.h>
602adf40
YS
37
38#include <linux/kernel.h>
39#include <linux/device.h>
40#include <linux/module.h>
41#include <linux/fs.h>
42#include <linux/blkdev.h>
1c2a9dfe 43#include <linux/slab.h>
602adf40
YS
44
45#include "rbd_types.h"
46
aafb230e
AE
47#define RBD_DEBUG /* Activate rbd_assert() calls */
48
593a9e7b
AE
49/*
50 * The basic unit of block I/O is a sector. It is interpreted in a
51 * number of contexts in Linux (blk, bio, genhd), but the default is
52 * universally 512 bytes. These symbols are just slightly more
53 * meaningful than the bare numbers they represent.
54 */
55#define SECTOR_SHIFT 9
56#define SECTOR_SIZE (1ULL << SECTOR_SHIFT)
57
a2acd00e
AE
58/*
59 * Increment the given counter and return its updated value.
60 * If the counter is already 0 it will not be incremented.
61 * If the counter is already at its maximum value returns
62 * -EINVAL without updating it.
63 */
64static int atomic_inc_return_safe(atomic_t *v)
65{
66 unsigned int counter;
67
68 counter = (unsigned int)__atomic_add_unless(v, 1, 0);
69 if (counter <= (unsigned int)INT_MAX)
70 return (int)counter;
71
72 atomic_dec(v);
73
74 return -EINVAL;
75}
76
77/* Decrement the counter. Return the resulting value, or -EINVAL */
78static int atomic_dec_return_safe(atomic_t *v)
79{
80 int counter;
81
82 counter = atomic_dec_return(v);
83 if (counter >= 0)
84 return counter;
85
86 atomic_inc(v);
87
88 return -EINVAL;
89}
90
f0f8cef5
AE
91#define RBD_DRV_NAME "rbd"
92#define RBD_DRV_NAME_LONG "rbd (rados block device)"
602adf40
YS
93
94#define RBD_MINORS_PER_MAJOR 256 /* max minors per blkdev */
95
d4b125e9
AE
96#define RBD_SNAP_DEV_NAME_PREFIX "snap_"
97#define RBD_MAX_SNAP_NAME_LEN \
98 (NAME_MAX - (sizeof (RBD_SNAP_DEV_NAME_PREFIX) - 1))
99
35d489f9 100#define RBD_MAX_SNAP_COUNT 510 /* allows max snapc to fit in 4KB */
602adf40
YS
101
102#define RBD_SNAP_HEAD_NAME "-"
103
9682fc6d
AE
104#define BAD_SNAP_INDEX U32_MAX /* invalid index into snap array */
105
9e15b77d
AE
106/* This allows a single page to hold an image name sent by OSD */
107#define RBD_IMAGE_NAME_LEN_MAX (PAGE_SIZE - sizeof (__le32) - 1)
1e130199 108#define RBD_IMAGE_ID_LEN_MAX 64
9e15b77d 109
1e130199 110#define RBD_OBJ_PREFIX_LEN_MAX 64
589d30e0 111
d889140c
AE
112/* Feature bits */
113
5cbf6f12
AE
114#define RBD_FEATURE_LAYERING (1<<0)
115#define RBD_FEATURE_STRIPINGV2 (1<<1)
116#define RBD_FEATURES_ALL \
117 (RBD_FEATURE_LAYERING | RBD_FEATURE_STRIPINGV2)
d889140c
AE
118
119/* Features supported by this (client software) implementation. */
120
770eba6e 121#define RBD_FEATURES_SUPPORTED (RBD_FEATURES_ALL)
d889140c 122
81a89793
AE
123/*
124 * An RBD device name will be "rbd#", where the "rbd" comes from
125 * RBD_DRV_NAME above, and # is a unique integer identifier.
126 * MAX_INT_FORMAT_WIDTH is used in ensuring DEV_NAME_LEN is big
127 * enough to hold all possible device names.
128 */
602adf40 129#define DEV_NAME_LEN 32
81a89793 130#define MAX_INT_FORMAT_WIDTH ((5 * sizeof (int)) / 2 + 1)
602adf40
YS
131
132/*
133 * block device image metadata (in-memory version)
134 */
135struct rbd_image_header {
f35a4dee 136 /* These six fields never change for a given rbd image */
849b4260 137 char *object_prefix;
602adf40
YS
138 __u8 obj_order;
139 __u8 crypt_type;
140 __u8 comp_type;
f35a4dee
AE
141 u64 stripe_unit;
142 u64 stripe_count;
143 u64 features; /* Might be changeable someday? */
602adf40 144
f84344f3
AE
145 /* The remaining fields need to be updated occasionally */
146 u64 image_size;
147 struct ceph_snap_context *snapc;
f35a4dee
AE
148 char *snap_names; /* format 1 only */
149 u64 *snap_sizes; /* format 1 only */
59c2be1e
YS
150};
151
0d7dbfce
AE
152/*
153 * An rbd image specification.
154 *
155 * The tuple (pool_id, image_id, snap_id) is sufficient to uniquely
c66c6e0c
AE
156 * identify an image. Each rbd_dev structure includes a pointer to
157 * an rbd_spec structure that encapsulates this identity.
158 *
159 * Each of the id's in an rbd_spec has an associated name. For a
160 * user-mapped image, the names are supplied and the id's associated
161 * with them are looked up. For a layered image, a parent image is
162 * defined by the tuple, and the names are looked up.
163 *
164 * An rbd_dev structure contains a parent_spec pointer which is
165 * non-null if the image it represents is a child in a layered
166 * image. This pointer will refer to the rbd_spec structure used
167 * by the parent rbd_dev for its own identity (i.e., the structure
168 * is shared between the parent and child).
169 *
170 * Since these structures are populated once, during the discovery
171 * phase of image construction, they are effectively immutable so
172 * we make no effort to synchronize access to them.
173 *
174 * Note that code herein does not assume the image name is known (it
175 * could be a null pointer).
0d7dbfce
AE
176 */
177struct rbd_spec {
178 u64 pool_id;
ecb4dc22 179 const char *pool_name;
0d7dbfce 180
ecb4dc22
AE
181 const char *image_id;
182 const char *image_name;
0d7dbfce
AE
183
184 u64 snap_id;
ecb4dc22 185 const char *snap_name;
0d7dbfce
AE
186
187 struct kref kref;
188};
189
602adf40 190/*
f0f8cef5 191 * an instance of the client. multiple devices may share an rbd client.
602adf40
YS
192 */
193struct rbd_client {
194 struct ceph_client *client;
195 struct kref kref;
196 struct list_head node;
197};
198
bf0d5f50
AE
199struct rbd_img_request;
200typedef void (*rbd_img_callback_t)(struct rbd_img_request *);
201
202#define BAD_WHICH U32_MAX /* Good which or bad which, which? */
203
204struct rbd_obj_request;
205typedef void (*rbd_obj_callback_t)(struct rbd_obj_request *);
206
9969ebc5
AE
207enum obj_request_type {
208 OBJ_REQUEST_NODATA, OBJ_REQUEST_BIO, OBJ_REQUEST_PAGES
209};
bf0d5f50 210
926f9b3f
AE
211enum obj_req_flags {
212 OBJ_REQ_DONE, /* completion flag: not done = 0, done = 1 */
6365d33a 213 OBJ_REQ_IMG_DATA, /* object usage: standalone = 0, image = 1 */
5679c59f
AE
214 OBJ_REQ_KNOWN, /* EXISTS flag valid: no = 0, yes = 1 */
215 OBJ_REQ_EXISTS, /* target exists: no = 0, yes = 1 */
926f9b3f
AE
216};
217
bf0d5f50
AE
218struct rbd_obj_request {
219 const char *object_name;
220 u64 offset; /* object start byte */
221 u64 length; /* bytes from offset */
926f9b3f 222 unsigned long flags;
bf0d5f50 223
c5b5ef6c
AE
224 /*
225 * An object request associated with an image will have its
226 * img_data flag set; a standalone object request will not.
227 *
228 * A standalone object request will have which == BAD_WHICH
229 * and a null obj_request pointer.
230 *
231 * An object request initiated in support of a layered image
232 * object (to check for its existence before a write) will
233 * have which == BAD_WHICH and a non-null obj_request pointer.
234 *
235 * Finally, an object request for rbd image data will have
236 * which != BAD_WHICH, and will have a non-null img_request
237 * pointer. The value of which will be in the range
238 * 0..(img_request->obj_request_count-1).
239 */
240 union {
241 struct rbd_obj_request *obj_request; /* STAT op */
242 struct {
243 struct rbd_img_request *img_request;
244 u64 img_offset;
245 /* links for img_request->obj_requests list */
246 struct list_head links;
247 };
248 };
bf0d5f50
AE
249 u32 which; /* posn image request list */
250
251 enum obj_request_type type;
788e2df3
AE
252 union {
253 struct bio *bio_list;
254 struct {
255 struct page **pages;
256 u32 page_count;
257 };
258 };
0eefd470 259 struct page **copyup_pages;
ebda6408 260 u32 copyup_page_count;
bf0d5f50
AE
261
262 struct ceph_osd_request *osd_req;
263
264 u64 xferred; /* bytes transferred */
1b83bef2 265 int result;
bf0d5f50
AE
266
267 rbd_obj_callback_t callback;
788e2df3 268 struct completion completion;
bf0d5f50
AE
269
270 struct kref kref;
271};
272
0c425248 273enum img_req_flags {
9849e986
AE
274 IMG_REQ_WRITE, /* I/O direction: read = 0, write = 1 */
275 IMG_REQ_CHILD, /* initiator: block = 0, child image = 1 */
d0b2e944 276 IMG_REQ_LAYERED, /* ENOENT handling: normal = 0, layered = 1 */
0c425248
AE
277};
278
bf0d5f50 279struct rbd_img_request {
bf0d5f50
AE
280 struct rbd_device *rbd_dev;
281 u64 offset; /* starting image byte offset */
282 u64 length; /* byte count from offset */
0c425248 283 unsigned long flags;
bf0d5f50 284 union {
9849e986 285 u64 snap_id; /* for reads */
bf0d5f50 286 struct ceph_snap_context *snapc; /* for writes */
9849e986
AE
287 };
288 union {
289 struct request *rq; /* block request */
290 struct rbd_obj_request *obj_request; /* obj req initiator */
bf0d5f50 291 };
3d7efd18 292 struct page **copyup_pages;
ebda6408 293 u32 copyup_page_count;
bf0d5f50
AE
294 spinlock_t completion_lock;/* protects next_completion */
295 u32 next_completion;
296 rbd_img_callback_t callback;
55f27e09 297 u64 xferred;/* aggregate bytes transferred */
a5a337d4 298 int result; /* first nonzero obj_request result */
bf0d5f50
AE
299
300 u32 obj_request_count;
301 struct list_head obj_requests; /* rbd_obj_request structs */
302
303 struct kref kref;
304};
305
306#define for_each_obj_request(ireq, oreq) \
ef06f4d3 307 list_for_each_entry(oreq, &(ireq)->obj_requests, links)
bf0d5f50 308#define for_each_obj_request_from(ireq, oreq) \
ef06f4d3 309 list_for_each_entry_from(oreq, &(ireq)->obj_requests, links)
bf0d5f50 310#define for_each_obj_request_safe(ireq, oreq, n) \
ef06f4d3 311 list_for_each_entry_safe_reverse(oreq, n, &(ireq)->obj_requests, links)
bf0d5f50 312
f84344f3 313struct rbd_mapping {
99c1f08f 314 u64 size;
34b13184 315 u64 features;
f84344f3
AE
316 bool read_only;
317};
318
602adf40
YS
319/*
320 * a single device
321 */
322struct rbd_device {
de71a297 323 int dev_id; /* blkdev unique id */
602adf40
YS
324
325 int major; /* blkdev assigned major */
326 struct gendisk *disk; /* blkdev's gendisk and rq */
602adf40 327
a30b71b9 328 u32 image_format; /* Either 1 or 2 */
602adf40
YS
329 struct rbd_client *rbd_client;
330
331 char name[DEV_NAME_LEN]; /* blkdev name, e.g. rbd3 */
332
b82d167b 333 spinlock_t lock; /* queue, flags, open_count */
602adf40
YS
334
335 struct rbd_image_header header;
b82d167b 336 unsigned long flags; /* possibly lock protected */
0d7dbfce 337 struct rbd_spec *spec;
602adf40 338
0d7dbfce 339 char *header_name;
971f839a 340
0903e875
AE
341 struct ceph_file_layout layout;
342
59c2be1e 343 struct ceph_osd_event *watch_event;
975241af 344 struct rbd_obj_request *watch_request;
59c2be1e 345
86b00e0d
AE
346 struct rbd_spec *parent_spec;
347 u64 parent_overlap;
a2acd00e 348 atomic_t parent_ref;
2f82ee54 349 struct rbd_device *parent;
86b00e0d 350
c666601a
JD
351 /* protects updating the header */
352 struct rw_semaphore header_rwsem;
f84344f3
AE
353
354 struct rbd_mapping mapping;
602adf40
YS
355
356 struct list_head node;
dfc5606d 357
dfc5606d
YS
358 /* sysfs related */
359 struct device dev;
b82d167b 360 unsigned long open_count; /* protected by lock */
dfc5606d
YS
361};
362
b82d167b
AE
363/*
364 * Flag bits for rbd_dev->flags. If atomicity is required,
365 * rbd_dev->lock is used to protect access.
366 *
367 * Currently, only the "removing" flag (which is coupled with the
368 * "open_count" field) requires atomic access.
369 */
6d292906
AE
370enum rbd_dev_flags {
371 RBD_DEV_FLAG_EXISTS, /* mapped snapshot has not been deleted */
b82d167b 372 RBD_DEV_FLAG_REMOVING, /* this mapping is being removed */
6d292906
AE
373};
374
cfbf6377 375static DEFINE_MUTEX(client_mutex); /* Serialize client creation */
e124a82f 376
602adf40 377static LIST_HEAD(rbd_dev_list); /* devices */
e124a82f
AE
378static DEFINE_SPINLOCK(rbd_dev_list_lock);
379
432b8587
AE
380static LIST_HEAD(rbd_client_list); /* clients */
381static DEFINE_SPINLOCK(rbd_client_list_lock);
602adf40 382
78c2a44a
AE
383/* Slab caches for frequently-allocated structures */
384
1c2a9dfe 385static struct kmem_cache *rbd_img_request_cache;
868311b1 386static struct kmem_cache *rbd_obj_request_cache;
78c2a44a 387static struct kmem_cache *rbd_segment_name_cache;
1c2a9dfe 388
3d7efd18
AE
389static int rbd_img_request_submit(struct rbd_img_request *img_request);
390
200a6a8b 391static void rbd_dev_device_release(struct device *dev);
dfc5606d 392
f0f8cef5
AE
393static ssize_t rbd_add(struct bus_type *bus, const char *buf,
394 size_t count);
395static ssize_t rbd_remove(struct bus_type *bus, const char *buf,
396 size_t count);
1f3ef788 397static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping);
a2acd00e 398static void rbd_spec_put(struct rbd_spec *spec);
f0f8cef5 399
b15a21dd
GKH
400static BUS_ATTR(add, S_IWUSR, NULL, rbd_add);
401static BUS_ATTR(remove, S_IWUSR, NULL, rbd_remove);
402
403static struct attribute *rbd_bus_attrs[] = {
404 &bus_attr_add.attr,
405 &bus_attr_remove.attr,
406 NULL,
f0f8cef5 407};
b15a21dd 408ATTRIBUTE_GROUPS(rbd_bus);
f0f8cef5
AE
409
410static struct bus_type rbd_bus_type = {
411 .name = "rbd",
b15a21dd 412 .bus_groups = rbd_bus_groups,
f0f8cef5
AE
413};
414
415static void rbd_root_dev_release(struct device *dev)
416{
417}
418
419static struct device rbd_root_dev = {
420 .init_name = "rbd",
421 .release = rbd_root_dev_release,
422};
423
06ecc6cb
AE
424static __printf(2, 3)
425void rbd_warn(struct rbd_device *rbd_dev, const char *fmt, ...)
426{
427 struct va_format vaf;
428 va_list args;
429
430 va_start(args, fmt);
431 vaf.fmt = fmt;
432 vaf.va = &args;
433
434 if (!rbd_dev)
435 printk(KERN_WARNING "%s: %pV\n", RBD_DRV_NAME, &vaf);
436 else if (rbd_dev->disk)
437 printk(KERN_WARNING "%s: %s: %pV\n",
438 RBD_DRV_NAME, rbd_dev->disk->disk_name, &vaf);
439 else if (rbd_dev->spec && rbd_dev->spec->image_name)
440 printk(KERN_WARNING "%s: image %s: %pV\n",
441 RBD_DRV_NAME, rbd_dev->spec->image_name, &vaf);
442 else if (rbd_dev->spec && rbd_dev->spec->image_id)
443 printk(KERN_WARNING "%s: id %s: %pV\n",
444 RBD_DRV_NAME, rbd_dev->spec->image_id, &vaf);
445 else /* punt */
446 printk(KERN_WARNING "%s: rbd_dev %p: %pV\n",
447 RBD_DRV_NAME, rbd_dev, &vaf);
448 va_end(args);
449}
450
aafb230e
AE
451#ifdef RBD_DEBUG
452#define rbd_assert(expr) \
453 if (unlikely(!(expr))) { \
454 printk(KERN_ERR "\nAssertion failure in %s() " \
455 "at line %d:\n\n" \
456 "\trbd_assert(%s);\n\n", \
457 __func__, __LINE__, #expr); \
458 BUG(); \
459 }
460#else /* !RBD_DEBUG */
461# define rbd_assert(expr) ((void) 0)
462#endif /* !RBD_DEBUG */
dfc5606d 463
b454e36d 464static int rbd_img_obj_request_submit(struct rbd_obj_request *obj_request);
05a46afd
AE
465static void rbd_img_parent_read(struct rbd_obj_request *obj_request);
466static void rbd_dev_remove_parent(struct rbd_device *rbd_dev);
8b3e1a56 467
cc4a38bd 468static int rbd_dev_refresh(struct rbd_device *rbd_dev);
2df3fac7
AE
469static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev);
470static int rbd_dev_v2_header_info(struct rbd_device *rbd_dev);
54cac61f
AE
471static const char *rbd_dev_v2_snap_name(struct rbd_device *rbd_dev,
472 u64 snap_id);
2ad3d716
AE
473static int _rbd_dev_v2_snap_size(struct rbd_device *rbd_dev, u64 snap_id,
474 u8 *order, u64 *snap_size);
475static int _rbd_dev_v2_snap_features(struct rbd_device *rbd_dev, u64 snap_id,
476 u64 *snap_features);
477static u64 rbd_snap_id_by_name(struct rbd_device *rbd_dev, const char *name);
59c2be1e 478
602adf40
YS
479static int rbd_open(struct block_device *bdev, fmode_t mode)
480{
f0f8cef5 481 struct rbd_device *rbd_dev = bdev->bd_disk->private_data;
b82d167b 482 bool removing = false;
602adf40 483
f84344f3 484 if ((mode & FMODE_WRITE) && rbd_dev->mapping.read_only)
602adf40
YS
485 return -EROFS;
486
a14ea269 487 spin_lock_irq(&rbd_dev->lock);
b82d167b
AE
488 if (test_bit(RBD_DEV_FLAG_REMOVING, &rbd_dev->flags))
489 removing = true;
490 else
491 rbd_dev->open_count++;
a14ea269 492 spin_unlock_irq(&rbd_dev->lock);
b82d167b
AE
493 if (removing)
494 return -ENOENT;
495
c3e946ce 496 (void) get_device(&rbd_dev->dev);
f84344f3 497 set_device_ro(bdev, rbd_dev->mapping.read_only);
340c7a2b 498
602adf40
YS
499 return 0;
500}
501
db2a144b 502static void rbd_release(struct gendisk *disk, fmode_t mode)
dfc5606d
YS
503{
504 struct rbd_device *rbd_dev = disk->private_data;
b82d167b
AE
505 unsigned long open_count_before;
506
a14ea269 507 spin_lock_irq(&rbd_dev->lock);
b82d167b 508 open_count_before = rbd_dev->open_count--;
a14ea269 509 spin_unlock_irq(&rbd_dev->lock);
b82d167b 510 rbd_assert(open_count_before > 0);
dfc5606d 511
c3e946ce 512 put_device(&rbd_dev->dev);
dfc5606d
YS
513}
514
602adf40
YS
515static const struct block_device_operations rbd_bd_ops = {
516 .owner = THIS_MODULE,
517 .open = rbd_open,
dfc5606d 518 .release = rbd_release,
602adf40
YS
519};
520
521/*
7262cfca 522 * Initialize an rbd client instance. Success or not, this function
cfbf6377 523 * consumes ceph_opts. Caller holds client_mutex.
602adf40 524 */
f8c38929 525static struct rbd_client *rbd_client_create(struct ceph_options *ceph_opts)
602adf40
YS
526{
527 struct rbd_client *rbdc;
528 int ret = -ENOMEM;
529
37206ee5 530 dout("%s:\n", __func__);
602adf40
YS
531 rbdc = kmalloc(sizeof(struct rbd_client), GFP_KERNEL);
532 if (!rbdc)
533 goto out_opt;
534
535 kref_init(&rbdc->kref);
536 INIT_LIST_HEAD(&rbdc->node);
537
43ae4701 538 rbdc->client = ceph_create_client(ceph_opts, rbdc, 0, 0);
602adf40 539 if (IS_ERR(rbdc->client))
08f75463 540 goto out_rbdc;
43ae4701 541 ceph_opts = NULL; /* Now rbdc->client is responsible for ceph_opts */
602adf40
YS
542
543 ret = ceph_open_session(rbdc->client);
544 if (ret < 0)
08f75463 545 goto out_client;
602adf40 546
432b8587 547 spin_lock(&rbd_client_list_lock);
602adf40 548 list_add_tail(&rbdc->node, &rbd_client_list);
432b8587 549 spin_unlock(&rbd_client_list_lock);
602adf40 550
37206ee5 551 dout("%s: rbdc %p\n", __func__, rbdc);
bc534d86 552
602adf40 553 return rbdc;
08f75463 554out_client:
602adf40 555 ceph_destroy_client(rbdc->client);
08f75463 556out_rbdc:
602adf40
YS
557 kfree(rbdc);
558out_opt:
43ae4701
AE
559 if (ceph_opts)
560 ceph_destroy_options(ceph_opts);
37206ee5
AE
561 dout("%s: error %d\n", __func__, ret);
562
28f259b7 563 return ERR_PTR(ret);
602adf40
YS
564}
565
2f82ee54
AE
566static struct rbd_client *__rbd_get_client(struct rbd_client *rbdc)
567{
568 kref_get(&rbdc->kref);
569
570 return rbdc;
571}
572
602adf40 573/*
1f7ba331
AE
574 * Find a ceph client with specific addr and configuration. If
575 * found, bump its reference count.
602adf40 576 */
1f7ba331 577static struct rbd_client *rbd_client_find(struct ceph_options *ceph_opts)
602adf40
YS
578{
579 struct rbd_client *client_node;
1f7ba331 580 bool found = false;
602adf40 581
43ae4701 582 if (ceph_opts->flags & CEPH_OPT_NOSHARE)
602adf40
YS
583 return NULL;
584
1f7ba331
AE
585 spin_lock(&rbd_client_list_lock);
586 list_for_each_entry(client_node, &rbd_client_list, node) {
587 if (!ceph_compare_options(ceph_opts, client_node->client)) {
2f82ee54
AE
588 __rbd_get_client(client_node);
589
1f7ba331
AE
590 found = true;
591 break;
592 }
593 }
594 spin_unlock(&rbd_client_list_lock);
595
596 return found ? client_node : NULL;
602adf40
YS
597}
598
59c2be1e
YS
599/*
600 * mount options
601 */
602enum {
59c2be1e
YS
603 Opt_last_int,
604 /* int args above */
605 Opt_last_string,
606 /* string args above */
cc0538b6
AE
607 Opt_read_only,
608 Opt_read_write,
609 /* Boolean args above */
610 Opt_last_bool,
59c2be1e
YS
611};
612
43ae4701 613static match_table_t rbd_opts_tokens = {
59c2be1e
YS
614 /* int args above */
615 /* string args above */
be466c1c 616 {Opt_read_only, "read_only"},
cc0538b6
AE
617 {Opt_read_only, "ro"}, /* Alternate spelling */
618 {Opt_read_write, "read_write"},
619 {Opt_read_write, "rw"}, /* Alternate spelling */
620 /* Boolean args above */
59c2be1e
YS
621 {-1, NULL}
622};
623
98571b5a
AE
624struct rbd_options {
625 bool read_only;
626};
627
628#define RBD_READ_ONLY_DEFAULT false
629
59c2be1e
YS
630static int parse_rbd_opts_token(char *c, void *private)
631{
43ae4701 632 struct rbd_options *rbd_opts = private;
59c2be1e
YS
633 substring_t argstr[MAX_OPT_ARGS];
634 int token, intval, ret;
635
43ae4701 636 token = match_token(c, rbd_opts_tokens, argstr);
59c2be1e
YS
637 if (token < 0)
638 return -EINVAL;
639
640 if (token < Opt_last_int) {
641 ret = match_int(&argstr[0], &intval);
642 if (ret < 0) {
643 pr_err("bad mount option arg (not int) "
644 "at '%s'\n", c);
645 return ret;
646 }
647 dout("got int token %d val %d\n", token, intval);
648 } else if (token > Opt_last_int && token < Opt_last_string) {
649 dout("got string token %d val %s\n", token,
650 argstr[0].from);
cc0538b6
AE
651 } else if (token > Opt_last_string && token < Opt_last_bool) {
652 dout("got Boolean token %d\n", token);
59c2be1e
YS
653 } else {
654 dout("got token %d\n", token);
655 }
656
657 switch (token) {
cc0538b6
AE
658 case Opt_read_only:
659 rbd_opts->read_only = true;
660 break;
661 case Opt_read_write:
662 rbd_opts->read_only = false;
663 break;
59c2be1e 664 default:
aafb230e
AE
665 rbd_assert(false);
666 break;
59c2be1e
YS
667 }
668 return 0;
669}
670
602adf40
YS
671/*
672 * Get a ceph client with specific addr and configuration, if one does
7262cfca
AE
673 * not exist create it. Either way, ceph_opts is consumed by this
674 * function.
602adf40 675 */
9d3997fd 676static struct rbd_client *rbd_get_client(struct ceph_options *ceph_opts)
602adf40 677{
f8c38929 678 struct rbd_client *rbdc;
59c2be1e 679
cfbf6377 680 mutex_lock_nested(&client_mutex, SINGLE_DEPTH_NESTING);
1f7ba331 681 rbdc = rbd_client_find(ceph_opts);
9d3997fd 682 if (rbdc) /* using an existing client */
43ae4701 683 ceph_destroy_options(ceph_opts);
9d3997fd 684 else
f8c38929 685 rbdc = rbd_client_create(ceph_opts);
cfbf6377 686 mutex_unlock(&client_mutex);
602adf40 687
9d3997fd 688 return rbdc;
602adf40
YS
689}
690
691/*
692 * Destroy ceph client
d23a4b3f 693 *
432b8587 694 * Caller must hold rbd_client_list_lock.
602adf40
YS
695 */
696static void rbd_client_release(struct kref *kref)
697{
698 struct rbd_client *rbdc = container_of(kref, struct rbd_client, kref);
699
37206ee5 700 dout("%s: rbdc %p\n", __func__, rbdc);
cd9d9f5d 701 spin_lock(&rbd_client_list_lock);
602adf40 702 list_del(&rbdc->node);
cd9d9f5d 703 spin_unlock(&rbd_client_list_lock);
602adf40
YS
704
705 ceph_destroy_client(rbdc->client);
706 kfree(rbdc);
707}
708
709/*
710 * Drop reference to ceph client node. If it's not referenced anymore, release
711 * it.
712 */
9d3997fd 713static void rbd_put_client(struct rbd_client *rbdc)
602adf40 714{
c53d5893
AE
715 if (rbdc)
716 kref_put(&rbdc->kref, rbd_client_release);
602adf40
YS
717}
718
a30b71b9
AE
719static bool rbd_image_format_valid(u32 image_format)
720{
721 return image_format == 1 || image_format == 2;
722}
723
8e94af8e
AE
724static bool rbd_dev_ondisk_valid(struct rbd_image_header_ondisk *ondisk)
725{
103a150f
AE
726 size_t size;
727 u32 snap_count;
728
729 /* The header has to start with the magic rbd header text */
730 if (memcmp(&ondisk->text, RBD_HEADER_TEXT, sizeof (RBD_HEADER_TEXT)))
731 return false;
732
db2388b6
AE
733 /* The bio layer requires at least sector-sized I/O */
734
735 if (ondisk->options.order < SECTOR_SHIFT)
736 return false;
737
738 /* If we use u64 in a few spots we may be able to loosen this */
739
740 if (ondisk->options.order > 8 * sizeof (int) - 1)
741 return false;
742
103a150f
AE
743 /*
744 * The size of a snapshot header has to fit in a size_t, and
745 * that limits the number of snapshots.
746 */
747 snap_count = le32_to_cpu(ondisk->snap_count);
748 size = SIZE_MAX - sizeof (struct ceph_snap_context);
749 if (snap_count > size / sizeof (__le64))
750 return false;
751
752 /*
753 * Not only that, but the size of the entire the snapshot
754 * header must also be representable in a size_t.
755 */
756 size -= snap_count * sizeof (__le64);
757 if ((u64) size < le64_to_cpu(ondisk->snap_names_len))
758 return false;
759
760 return true;
8e94af8e
AE
761}
762
602adf40 763/*
bb23e37a
AE
764 * Fill an rbd image header with information from the given format 1
765 * on-disk header.
602adf40 766 */
662518b1 767static int rbd_header_from_disk(struct rbd_device *rbd_dev,
4156d998 768 struct rbd_image_header_ondisk *ondisk)
602adf40 769{
662518b1 770 struct rbd_image_header *header = &rbd_dev->header;
bb23e37a
AE
771 bool first_time = header->object_prefix == NULL;
772 struct ceph_snap_context *snapc;
773 char *object_prefix = NULL;
774 char *snap_names = NULL;
775 u64 *snap_sizes = NULL;
ccece235 776 u32 snap_count;
d2bb24e5 777 size_t size;
bb23e37a 778 int ret = -ENOMEM;
621901d6 779 u32 i;
602adf40 780
bb23e37a 781 /* Allocate this now to avoid having to handle failure below */
6a52325f 782
bb23e37a
AE
783 if (first_time) {
784 size_t len;
103a150f 785
bb23e37a
AE
786 len = strnlen(ondisk->object_prefix,
787 sizeof (ondisk->object_prefix));
788 object_prefix = kmalloc(len + 1, GFP_KERNEL);
789 if (!object_prefix)
790 return -ENOMEM;
791 memcpy(object_prefix, ondisk->object_prefix, len);
792 object_prefix[len] = '\0';
793 }
00f1f36f 794
bb23e37a 795 /* Allocate the snapshot context and fill it in */
00f1f36f 796
bb23e37a
AE
797 snap_count = le32_to_cpu(ondisk->snap_count);
798 snapc = ceph_create_snap_context(snap_count, GFP_KERNEL);
799 if (!snapc)
800 goto out_err;
801 snapc->seq = le64_to_cpu(ondisk->snap_seq);
602adf40 802 if (snap_count) {
bb23e37a 803 struct rbd_image_snap_ondisk *snaps;
f785cc1d
AE
804 u64 snap_names_len = le64_to_cpu(ondisk->snap_names_len);
805
bb23e37a 806 /* We'll keep a copy of the snapshot names... */
621901d6 807
bb23e37a
AE
808 if (snap_names_len > (u64)SIZE_MAX)
809 goto out_2big;
810 snap_names = kmalloc(snap_names_len, GFP_KERNEL);
811 if (!snap_names)
6a52325f
AE
812 goto out_err;
813
bb23e37a 814 /* ...as well as the array of their sizes. */
621901d6 815
d2bb24e5 816 size = snap_count * sizeof (*header->snap_sizes);
bb23e37a
AE
817 snap_sizes = kmalloc(size, GFP_KERNEL);
818 if (!snap_sizes)
6a52325f 819 goto out_err;
bb23e37a 820
f785cc1d 821 /*
bb23e37a
AE
822 * Copy the names, and fill in each snapshot's id
823 * and size.
824 *
99a41ebc 825 * Note that rbd_dev_v1_header_info() guarantees the
bb23e37a 826 * ondisk buffer we're working with has
f785cc1d
AE
827 * snap_names_len bytes beyond the end of the
828 * snapshot id array, this memcpy() is safe.
829 */
bb23e37a
AE
830 memcpy(snap_names, &ondisk->snaps[snap_count], snap_names_len);
831 snaps = ondisk->snaps;
832 for (i = 0; i < snap_count; i++) {
833 snapc->snaps[i] = le64_to_cpu(snaps[i].id);
834 snap_sizes[i] = le64_to_cpu(snaps[i].image_size);
835 }
602adf40 836 }
6a52325f 837
bb23e37a 838 /* We won't fail any more, fill in the header */
621901d6 839
bb23e37a
AE
840 if (first_time) {
841 header->object_prefix = object_prefix;
842 header->obj_order = ondisk->options.order;
843 header->crypt_type = ondisk->options.crypt_type;
844 header->comp_type = ondisk->options.comp_type;
845 /* The rest aren't used for format 1 images */
846 header->stripe_unit = 0;
847 header->stripe_count = 0;
848 header->features = 0;
602adf40 849 } else {
662518b1
AE
850 ceph_put_snap_context(header->snapc);
851 kfree(header->snap_names);
852 kfree(header->snap_sizes);
602adf40 853 }
849b4260 854
bb23e37a 855 /* The remaining fields always get updated (when we refresh) */
621901d6 856
f84344f3 857 header->image_size = le64_to_cpu(ondisk->image_size);
bb23e37a
AE
858 header->snapc = snapc;
859 header->snap_names = snap_names;
860 header->snap_sizes = snap_sizes;
468521c1 861
662518b1 862 /* Make sure mapping size is consistent with header info */
602adf40 863
662518b1
AE
864 if (rbd_dev->spec->snap_id == CEPH_NOSNAP || first_time)
865 if (rbd_dev->mapping.size != header->image_size)
866 rbd_dev->mapping.size = header->image_size;
867
602adf40 868 return 0;
bb23e37a
AE
869out_2big:
870 ret = -EIO;
6a52325f 871out_err:
bb23e37a
AE
872 kfree(snap_sizes);
873 kfree(snap_names);
874 ceph_put_snap_context(snapc);
875 kfree(object_prefix);
ccece235 876
bb23e37a 877 return ret;
602adf40
YS
878}
879
9682fc6d
AE
880static const char *_rbd_dev_v1_snap_name(struct rbd_device *rbd_dev, u32 which)
881{
882 const char *snap_name;
883
884 rbd_assert(which < rbd_dev->header.snapc->num_snaps);
885
886 /* Skip over names until we find the one we are looking for */
887
888 snap_name = rbd_dev->header.snap_names;
889 while (which--)
890 snap_name += strlen(snap_name) + 1;
891
892 return kstrdup(snap_name, GFP_KERNEL);
893}
894
30d1cff8
AE
895/*
896 * Snapshot id comparison function for use with qsort()/bsearch().
897 * Note that result is for snapshots in *descending* order.
898 */
899static int snapid_compare_reverse(const void *s1, const void *s2)
900{
901 u64 snap_id1 = *(u64 *)s1;
902 u64 snap_id2 = *(u64 *)s2;
903
904 if (snap_id1 < snap_id2)
905 return 1;
906 return snap_id1 == snap_id2 ? 0 : -1;
907}
908
909/*
910 * Search a snapshot context to see if the given snapshot id is
911 * present.
912 *
913 * Returns the position of the snapshot id in the array if it's found,
914 * or BAD_SNAP_INDEX otherwise.
915 *
916 * Note: The snapshot array is in kept sorted (by the osd) in
917 * reverse order, highest snapshot id first.
918 */
9682fc6d
AE
919static u32 rbd_dev_snap_index(struct rbd_device *rbd_dev, u64 snap_id)
920{
921 struct ceph_snap_context *snapc = rbd_dev->header.snapc;
30d1cff8 922 u64 *found;
9682fc6d 923
30d1cff8
AE
924 found = bsearch(&snap_id, &snapc->snaps, snapc->num_snaps,
925 sizeof (snap_id), snapid_compare_reverse);
9682fc6d 926
30d1cff8 927 return found ? (u32)(found - &snapc->snaps[0]) : BAD_SNAP_INDEX;
9682fc6d
AE
928}
929
2ad3d716
AE
930static const char *rbd_dev_v1_snap_name(struct rbd_device *rbd_dev,
931 u64 snap_id)
9e15b77d 932{
54cac61f 933 u32 which;
da6a6b63 934 const char *snap_name;
9e15b77d 935
54cac61f
AE
936 which = rbd_dev_snap_index(rbd_dev, snap_id);
937 if (which == BAD_SNAP_INDEX)
da6a6b63 938 return ERR_PTR(-ENOENT);
54cac61f 939
da6a6b63
JD
940 snap_name = _rbd_dev_v1_snap_name(rbd_dev, which);
941 return snap_name ? snap_name : ERR_PTR(-ENOMEM);
54cac61f
AE
942}
943
944static const char *rbd_snap_name(struct rbd_device *rbd_dev, u64 snap_id)
945{
9e15b77d
AE
946 if (snap_id == CEPH_NOSNAP)
947 return RBD_SNAP_HEAD_NAME;
948
54cac61f
AE
949 rbd_assert(rbd_image_format_valid(rbd_dev->image_format));
950 if (rbd_dev->image_format == 1)
951 return rbd_dev_v1_snap_name(rbd_dev, snap_id);
9e15b77d 952
54cac61f 953 return rbd_dev_v2_snap_name(rbd_dev, snap_id);
9e15b77d
AE
954}
955
2ad3d716
AE
956static int rbd_snap_size(struct rbd_device *rbd_dev, u64 snap_id,
957 u64 *snap_size)
602adf40 958{
2ad3d716
AE
959 rbd_assert(rbd_image_format_valid(rbd_dev->image_format));
960 if (snap_id == CEPH_NOSNAP) {
961 *snap_size = rbd_dev->header.image_size;
962 } else if (rbd_dev->image_format == 1) {
963 u32 which;
602adf40 964
2ad3d716
AE
965 which = rbd_dev_snap_index(rbd_dev, snap_id);
966 if (which == BAD_SNAP_INDEX)
967 return -ENOENT;
e86924a8 968
2ad3d716
AE
969 *snap_size = rbd_dev->header.snap_sizes[which];
970 } else {
971 u64 size = 0;
972 int ret;
973
974 ret = _rbd_dev_v2_snap_size(rbd_dev, snap_id, NULL, &size);
975 if (ret)
976 return ret;
977
978 *snap_size = size;
979 }
980 return 0;
602adf40
YS
981}
982
2ad3d716
AE
983static int rbd_snap_features(struct rbd_device *rbd_dev, u64 snap_id,
984 u64 *snap_features)
602adf40 985{
2ad3d716
AE
986 rbd_assert(rbd_image_format_valid(rbd_dev->image_format));
987 if (snap_id == CEPH_NOSNAP) {
988 *snap_features = rbd_dev->header.features;
989 } else if (rbd_dev->image_format == 1) {
990 *snap_features = 0; /* No features for format 1 */
602adf40 991 } else {
2ad3d716
AE
992 u64 features = 0;
993 int ret;
8b0241f8 994
2ad3d716
AE
995 ret = _rbd_dev_v2_snap_features(rbd_dev, snap_id, &features);
996 if (ret)
997 return ret;
998
999 *snap_features = features;
1000 }
1001 return 0;
1002}
1003
1004static int rbd_dev_mapping_set(struct rbd_device *rbd_dev)
1005{
8f4b7d98 1006 u64 snap_id = rbd_dev->spec->snap_id;
2ad3d716
AE
1007 u64 size = 0;
1008 u64 features = 0;
1009 int ret;
1010
2ad3d716
AE
1011 ret = rbd_snap_size(rbd_dev, snap_id, &size);
1012 if (ret)
1013 return ret;
1014 ret = rbd_snap_features(rbd_dev, snap_id, &features);
1015 if (ret)
1016 return ret;
1017
1018 rbd_dev->mapping.size = size;
1019 rbd_dev->mapping.features = features;
1020
8b0241f8 1021 return 0;
602adf40
YS
1022}
1023
d1cf5788
AE
1024static void rbd_dev_mapping_clear(struct rbd_device *rbd_dev)
1025{
1026 rbd_dev->mapping.size = 0;
1027 rbd_dev->mapping.features = 0;
200a6a8b
AE
1028}
1029
98571b5a 1030static const char *rbd_segment_name(struct rbd_device *rbd_dev, u64 offset)
602adf40 1031{
65ccfe21
AE
1032 char *name;
1033 u64 segment;
1034 int ret;
3a96d5cd 1035 char *name_format;
602adf40 1036
78c2a44a 1037 name = kmem_cache_alloc(rbd_segment_name_cache, GFP_NOIO);
65ccfe21
AE
1038 if (!name)
1039 return NULL;
1040 segment = offset >> rbd_dev->header.obj_order;
3a96d5cd
JD
1041 name_format = "%s.%012llx";
1042 if (rbd_dev->image_format == 2)
1043 name_format = "%s.%016llx";
1044 ret = snprintf(name, MAX_OBJ_NAME_SIZE + 1, name_format,
65ccfe21 1045 rbd_dev->header.object_prefix, segment);
2fd82b9e 1046 if (ret < 0 || ret > MAX_OBJ_NAME_SIZE) {
65ccfe21
AE
1047 pr_err("error formatting segment name for #%llu (%d)\n",
1048 segment, ret);
1049 kfree(name);
1050 name = NULL;
1051 }
602adf40 1052
65ccfe21
AE
1053 return name;
1054}
602adf40 1055
78c2a44a
AE
1056static void rbd_segment_name_free(const char *name)
1057{
1058 /* The explicit cast here is needed to drop the const qualifier */
1059
1060 kmem_cache_free(rbd_segment_name_cache, (void *)name);
1061}
1062
65ccfe21
AE
1063static u64 rbd_segment_offset(struct rbd_device *rbd_dev, u64 offset)
1064{
1065 u64 segment_size = (u64) 1 << rbd_dev->header.obj_order;
602adf40 1066
65ccfe21
AE
1067 return offset & (segment_size - 1);
1068}
1069
1070static u64 rbd_segment_length(struct rbd_device *rbd_dev,
1071 u64 offset, u64 length)
1072{
1073 u64 segment_size = (u64) 1 << rbd_dev->header.obj_order;
1074
1075 offset &= segment_size - 1;
1076
aafb230e 1077 rbd_assert(length <= U64_MAX - offset);
65ccfe21
AE
1078 if (offset + length > segment_size)
1079 length = segment_size - offset;
1080
1081 return length;
602adf40
YS
1082}
1083
029bcbd8
JD
1084/*
1085 * returns the size of an object in the image
1086 */
1087static u64 rbd_obj_bytes(struct rbd_image_header *header)
1088{
1089 return 1 << header->obj_order;
1090}
1091
602adf40
YS
1092/*
1093 * bio helpers
1094 */
1095
1096static void bio_chain_put(struct bio *chain)
1097{
1098 struct bio *tmp;
1099
1100 while (chain) {
1101 tmp = chain;
1102 chain = chain->bi_next;
1103 bio_put(tmp);
1104 }
1105}
1106
1107/*
1108 * zeros a bio chain, starting at specific offset
1109 */
1110static void zero_bio_chain(struct bio *chain, int start_ofs)
1111{
1112 struct bio_vec *bv;
1113 unsigned long flags;
1114 void *buf;
1115 int i;
1116 int pos = 0;
1117
1118 while (chain) {
1119 bio_for_each_segment(bv, chain, i) {
1120 if (pos + bv->bv_len > start_ofs) {
1121 int remainder = max(start_ofs - pos, 0);
1122 buf = bvec_kmap_irq(bv, &flags);
1123 memset(buf + remainder, 0,
1124 bv->bv_len - remainder);
e2156054 1125 flush_dcache_page(bv->bv_page);
85b5aaa6 1126 bvec_kunmap_irq(buf, &flags);
602adf40
YS
1127 }
1128 pos += bv->bv_len;
1129 }
1130
1131 chain = chain->bi_next;
1132 }
1133}
1134
b9434c5b
AE
1135/*
1136 * similar to zero_bio_chain(), zeros data defined by a page array,
1137 * starting at the given byte offset from the start of the array and
1138 * continuing up to the given end offset. The pages array is
1139 * assumed to be big enough to hold all bytes up to the end.
1140 */
1141static void zero_pages(struct page **pages, u64 offset, u64 end)
1142{
1143 struct page **page = &pages[offset >> PAGE_SHIFT];
1144
1145 rbd_assert(end > offset);
1146 rbd_assert(end - offset <= (u64)SIZE_MAX);
1147 while (offset < end) {
1148 size_t page_offset;
1149 size_t length;
1150 unsigned long flags;
1151 void *kaddr;
1152
491205a8
GU
1153 page_offset = offset & ~PAGE_MASK;
1154 length = min_t(size_t, PAGE_SIZE - page_offset, end - offset);
b9434c5b
AE
1155 local_irq_save(flags);
1156 kaddr = kmap_atomic(*page);
1157 memset(kaddr + page_offset, 0, length);
e2156054 1158 flush_dcache_page(*page);
b9434c5b
AE
1159 kunmap_atomic(kaddr);
1160 local_irq_restore(flags);
1161
1162 offset += length;
1163 page++;
1164 }
1165}
1166
602adf40 1167/*
f7760dad
AE
1168 * Clone a portion of a bio, starting at the given byte offset
1169 * and continuing for the number of bytes indicated.
602adf40 1170 */
f7760dad
AE
1171static struct bio *bio_clone_range(struct bio *bio_src,
1172 unsigned int offset,
1173 unsigned int len,
1174 gfp_t gfpmask)
602adf40 1175{
f7760dad
AE
1176 struct bio_vec *bv;
1177 unsigned int resid;
1178 unsigned short idx;
1179 unsigned int voff;
1180 unsigned short end_idx;
1181 unsigned short vcnt;
1182 struct bio *bio;
1183
1184 /* Handle the easy case for the caller */
1185
1186 if (!offset && len == bio_src->bi_size)
1187 return bio_clone(bio_src, gfpmask);
1188
1189 if (WARN_ON_ONCE(!len))
1190 return NULL;
1191 if (WARN_ON_ONCE(len > bio_src->bi_size))
1192 return NULL;
1193 if (WARN_ON_ONCE(offset > bio_src->bi_size - len))
1194 return NULL;
1195
1196 /* Find first affected segment... */
1197
1198 resid = offset;
d74c6d51 1199 bio_for_each_segment(bv, bio_src, idx) {
f7760dad
AE
1200 if (resid < bv->bv_len)
1201 break;
1202 resid -= bv->bv_len;
602adf40 1203 }
f7760dad 1204 voff = resid;
602adf40 1205
f7760dad 1206 /* ...and the last affected segment */
602adf40 1207
f7760dad
AE
1208 resid += len;
1209 __bio_for_each_segment(bv, bio_src, end_idx, idx) {
1210 if (resid <= bv->bv_len)
1211 break;
1212 resid -= bv->bv_len;
1213 }
1214 vcnt = end_idx - idx + 1;
1215
1216 /* Build the clone */
1217
1218 bio = bio_alloc(gfpmask, (unsigned int) vcnt);
1219 if (!bio)
1220 return NULL; /* ENOMEM */
602adf40 1221
f7760dad
AE
1222 bio->bi_bdev = bio_src->bi_bdev;
1223 bio->bi_sector = bio_src->bi_sector + (offset >> SECTOR_SHIFT);
1224 bio->bi_rw = bio_src->bi_rw;
1225 bio->bi_flags |= 1 << BIO_CLONED;
1226
1227 /*
1228 * Copy over our part of the bio_vec, then update the first
1229 * and last (or only) entries.
1230 */
1231 memcpy(&bio->bi_io_vec[0], &bio_src->bi_io_vec[idx],
1232 vcnt * sizeof (struct bio_vec));
1233 bio->bi_io_vec[0].bv_offset += voff;
1234 if (vcnt > 1) {
1235 bio->bi_io_vec[0].bv_len -= voff;
1236 bio->bi_io_vec[vcnt - 1].bv_len = resid;
1237 } else {
1238 bio->bi_io_vec[0].bv_len = len;
602adf40
YS
1239 }
1240
f7760dad
AE
1241 bio->bi_vcnt = vcnt;
1242 bio->bi_size = len;
1243 bio->bi_idx = 0;
1244
1245 return bio;
1246}
1247
1248/*
1249 * Clone a portion of a bio chain, starting at the given byte offset
1250 * into the first bio in the source chain and continuing for the
1251 * number of bytes indicated. The result is another bio chain of
1252 * exactly the given length, or a null pointer on error.
1253 *
1254 * The bio_src and offset parameters are both in-out. On entry they
1255 * refer to the first source bio and the offset into that bio where
1256 * the start of data to be cloned is located.
1257 *
1258 * On return, bio_src is updated to refer to the bio in the source
1259 * chain that contains first un-cloned byte, and *offset will
1260 * contain the offset of that byte within that bio.
1261 */
1262static struct bio *bio_chain_clone_range(struct bio **bio_src,
1263 unsigned int *offset,
1264 unsigned int len,
1265 gfp_t gfpmask)
1266{
1267 struct bio *bi = *bio_src;
1268 unsigned int off = *offset;
1269 struct bio *chain = NULL;
1270 struct bio **end;
1271
1272 /* Build up a chain of clone bios up to the limit */
1273
1274 if (!bi || off >= bi->bi_size || !len)
1275 return NULL; /* Nothing to clone */
602adf40 1276
f7760dad
AE
1277 end = &chain;
1278 while (len) {
1279 unsigned int bi_size;
1280 struct bio *bio;
1281
f5400b7a
AE
1282 if (!bi) {
1283 rbd_warn(NULL, "bio_chain exhausted with %u left", len);
f7760dad 1284 goto out_err; /* EINVAL; ran out of bio's */
f5400b7a 1285 }
f7760dad
AE
1286 bi_size = min_t(unsigned int, bi->bi_size - off, len);
1287 bio = bio_clone_range(bi, off, bi_size, gfpmask);
1288 if (!bio)
1289 goto out_err; /* ENOMEM */
1290
1291 *end = bio;
1292 end = &bio->bi_next;
602adf40 1293
f7760dad
AE
1294 off += bi_size;
1295 if (off == bi->bi_size) {
1296 bi = bi->bi_next;
1297 off = 0;
1298 }
1299 len -= bi_size;
1300 }
1301 *bio_src = bi;
1302 *offset = off;
1303
1304 return chain;
1305out_err:
1306 bio_chain_put(chain);
602adf40 1307
602adf40
YS
1308 return NULL;
1309}
1310
926f9b3f
AE
1311/*
1312 * The default/initial value for all object request flags is 0. For
1313 * each flag, once its value is set to 1 it is never reset to 0
1314 * again.
1315 */
57acbaa7 1316static void obj_request_img_data_set(struct rbd_obj_request *obj_request)
926f9b3f 1317{
57acbaa7 1318 if (test_and_set_bit(OBJ_REQ_IMG_DATA, &obj_request->flags)) {
926f9b3f
AE
1319 struct rbd_device *rbd_dev;
1320
57acbaa7
AE
1321 rbd_dev = obj_request->img_request->rbd_dev;
1322 rbd_warn(rbd_dev, "obj_request %p already marked img_data\n",
926f9b3f
AE
1323 obj_request);
1324 }
1325}
1326
57acbaa7 1327static bool obj_request_img_data_test(struct rbd_obj_request *obj_request)
926f9b3f
AE
1328{
1329 smp_mb();
57acbaa7 1330 return test_bit(OBJ_REQ_IMG_DATA, &obj_request->flags) != 0;
926f9b3f
AE
1331}
1332
57acbaa7 1333static void obj_request_done_set(struct rbd_obj_request *obj_request)
6365d33a 1334{
57acbaa7
AE
1335 if (test_and_set_bit(OBJ_REQ_DONE, &obj_request->flags)) {
1336 struct rbd_device *rbd_dev = NULL;
6365d33a 1337
57acbaa7
AE
1338 if (obj_request_img_data_test(obj_request))
1339 rbd_dev = obj_request->img_request->rbd_dev;
1340 rbd_warn(rbd_dev, "obj_request %p already marked done\n",
6365d33a
AE
1341 obj_request);
1342 }
1343}
1344
57acbaa7 1345static bool obj_request_done_test(struct rbd_obj_request *obj_request)
6365d33a
AE
1346{
1347 smp_mb();
57acbaa7 1348 return test_bit(OBJ_REQ_DONE, &obj_request->flags) != 0;
6365d33a
AE
1349}
1350
5679c59f
AE
1351/*
1352 * This sets the KNOWN flag after (possibly) setting the EXISTS
1353 * flag. The latter is set based on the "exists" value provided.
1354 *
1355 * Note that for our purposes once an object exists it never goes
1356 * away again. It's possible that the response from two existence
1357 * checks are separated by the creation of the target object, and
1358 * the first ("doesn't exist") response arrives *after* the second
1359 * ("does exist"). In that case we ignore the second one.
1360 */
1361static void obj_request_existence_set(struct rbd_obj_request *obj_request,
1362 bool exists)
1363{
1364 if (exists)
1365 set_bit(OBJ_REQ_EXISTS, &obj_request->flags);
1366 set_bit(OBJ_REQ_KNOWN, &obj_request->flags);
1367 smp_mb();
1368}
1369
1370static bool obj_request_known_test(struct rbd_obj_request *obj_request)
1371{
1372 smp_mb();
1373 return test_bit(OBJ_REQ_KNOWN, &obj_request->flags) != 0;
1374}
1375
1376static bool obj_request_exists_test(struct rbd_obj_request *obj_request)
1377{
1378 smp_mb();
1379 return test_bit(OBJ_REQ_EXISTS, &obj_request->flags) != 0;
1380}
1381
bf0d5f50
AE
1382static void rbd_obj_request_get(struct rbd_obj_request *obj_request)
1383{
37206ee5
AE
1384 dout("%s: obj %p (was %d)\n", __func__, obj_request,
1385 atomic_read(&obj_request->kref.refcount));
bf0d5f50
AE
1386 kref_get(&obj_request->kref);
1387}
1388
1389static void rbd_obj_request_destroy(struct kref *kref);
1390static void rbd_obj_request_put(struct rbd_obj_request *obj_request)
1391{
1392 rbd_assert(obj_request != NULL);
37206ee5
AE
1393 dout("%s: obj %p (was %d)\n", __func__, obj_request,
1394 atomic_read(&obj_request->kref.refcount));
bf0d5f50
AE
1395 kref_put(&obj_request->kref, rbd_obj_request_destroy);
1396}
1397
e93f3152
AE
1398static bool img_request_child_test(struct rbd_img_request *img_request);
1399static void rbd_parent_request_destroy(struct kref *kref);
bf0d5f50
AE
1400static void rbd_img_request_destroy(struct kref *kref);
1401static void rbd_img_request_put(struct rbd_img_request *img_request)
1402{
1403 rbd_assert(img_request != NULL);
37206ee5
AE
1404 dout("%s: img %p (was %d)\n", __func__, img_request,
1405 atomic_read(&img_request->kref.refcount));
e93f3152
AE
1406 if (img_request_child_test(img_request))
1407 kref_put(&img_request->kref, rbd_parent_request_destroy);
1408 else
1409 kref_put(&img_request->kref, rbd_img_request_destroy);
bf0d5f50
AE
1410}
1411
1412static inline void rbd_img_obj_request_add(struct rbd_img_request *img_request,
1413 struct rbd_obj_request *obj_request)
1414{
25dcf954
AE
1415 rbd_assert(obj_request->img_request == NULL);
1416
b155e86c 1417 /* Image request now owns object's original reference */
bf0d5f50 1418 obj_request->img_request = img_request;
25dcf954 1419 obj_request->which = img_request->obj_request_count;
6365d33a
AE
1420 rbd_assert(!obj_request_img_data_test(obj_request));
1421 obj_request_img_data_set(obj_request);
bf0d5f50 1422 rbd_assert(obj_request->which != BAD_WHICH);
25dcf954
AE
1423 img_request->obj_request_count++;
1424 list_add_tail(&obj_request->links, &img_request->obj_requests);
37206ee5
AE
1425 dout("%s: img %p obj %p w=%u\n", __func__, img_request, obj_request,
1426 obj_request->which);
bf0d5f50
AE
1427}
1428
1429static inline void rbd_img_obj_request_del(struct rbd_img_request *img_request,
1430 struct rbd_obj_request *obj_request)
1431{
1432 rbd_assert(obj_request->which != BAD_WHICH);
25dcf954 1433
37206ee5
AE
1434 dout("%s: img %p obj %p w=%u\n", __func__, img_request, obj_request,
1435 obj_request->which);
bf0d5f50 1436 list_del(&obj_request->links);
25dcf954
AE
1437 rbd_assert(img_request->obj_request_count > 0);
1438 img_request->obj_request_count--;
1439 rbd_assert(obj_request->which == img_request->obj_request_count);
1440 obj_request->which = BAD_WHICH;
6365d33a 1441 rbd_assert(obj_request_img_data_test(obj_request));
bf0d5f50 1442 rbd_assert(obj_request->img_request == img_request);
bf0d5f50 1443 obj_request->img_request = NULL;
25dcf954 1444 obj_request->callback = NULL;
bf0d5f50
AE
1445 rbd_obj_request_put(obj_request);
1446}
1447
1448static bool obj_request_type_valid(enum obj_request_type type)
1449{
1450 switch (type) {
9969ebc5 1451 case OBJ_REQUEST_NODATA:
bf0d5f50 1452 case OBJ_REQUEST_BIO:
788e2df3 1453 case OBJ_REQUEST_PAGES:
bf0d5f50
AE
1454 return true;
1455 default:
1456 return false;
1457 }
1458}
1459
bf0d5f50
AE
1460static int rbd_obj_request_submit(struct ceph_osd_client *osdc,
1461 struct rbd_obj_request *obj_request)
1462{
37206ee5
AE
1463 dout("%s: osdc %p obj %p\n", __func__, osdc, obj_request);
1464
bf0d5f50
AE
1465 return ceph_osdc_start_request(osdc, obj_request->osd_req, false);
1466}
1467
1468static void rbd_img_request_complete(struct rbd_img_request *img_request)
1469{
55f27e09 1470
37206ee5 1471 dout("%s: img %p\n", __func__, img_request);
55f27e09
AE
1472
1473 /*
1474 * If no error occurred, compute the aggregate transfer
1475 * count for the image request. We could instead use
1476 * atomic64_cmpxchg() to update it as each object request
1477 * completes; not clear which way is better off hand.
1478 */
1479 if (!img_request->result) {
1480 struct rbd_obj_request *obj_request;
1481 u64 xferred = 0;
1482
1483 for_each_obj_request(img_request, obj_request)
1484 xferred += obj_request->xferred;
1485 img_request->xferred = xferred;
1486 }
1487
bf0d5f50
AE
1488 if (img_request->callback)
1489 img_request->callback(img_request);
1490 else
1491 rbd_img_request_put(img_request);
1492}
1493
788e2df3
AE
1494/* Caller is responsible for rbd_obj_request_destroy(obj_request) */
1495
1496static int rbd_obj_request_wait(struct rbd_obj_request *obj_request)
1497{
37206ee5
AE
1498 dout("%s: obj %p\n", __func__, obj_request);
1499
788e2df3
AE
1500 return wait_for_completion_interruptible(&obj_request->completion);
1501}
1502
0c425248
AE
1503/*
1504 * The default/initial value for all image request flags is 0. Each
1505 * is conditionally set to 1 at image request initialization time
1506 * and currently never change thereafter.
1507 */
1508static void img_request_write_set(struct rbd_img_request *img_request)
1509{
1510 set_bit(IMG_REQ_WRITE, &img_request->flags);
1511 smp_mb();
1512}
1513
1514static bool img_request_write_test(struct rbd_img_request *img_request)
1515{
1516 smp_mb();
1517 return test_bit(IMG_REQ_WRITE, &img_request->flags) != 0;
1518}
1519
9849e986
AE
1520static void img_request_child_set(struct rbd_img_request *img_request)
1521{
1522 set_bit(IMG_REQ_CHILD, &img_request->flags);
1523 smp_mb();
1524}
1525
e93f3152
AE
1526static void img_request_child_clear(struct rbd_img_request *img_request)
1527{
1528 clear_bit(IMG_REQ_CHILD, &img_request->flags);
1529 smp_mb();
1530}
1531
9849e986
AE
1532static bool img_request_child_test(struct rbd_img_request *img_request)
1533{
1534 smp_mb();
1535 return test_bit(IMG_REQ_CHILD, &img_request->flags) != 0;
1536}
1537
d0b2e944
AE
1538static void img_request_layered_set(struct rbd_img_request *img_request)
1539{
1540 set_bit(IMG_REQ_LAYERED, &img_request->flags);
1541 smp_mb();
1542}
1543
a2acd00e
AE
1544static void img_request_layered_clear(struct rbd_img_request *img_request)
1545{
1546 clear_bit(IMG_REQ_LAYERED, &img_request->flags);
1547 smp_mb();
1548}
1549
d0b2e944
AE
1550static bool img_request_layered_test(struct rbd_img_request *img_request)
1551{
1552 smp_mb();
1553 return test_bit(IMG_REQ_LAYERED, &img_request->flags) != 0;
1554}
1555
6e2a4505
AE
1556static void
1557rbd_img_obj_request_read_callback(struct rbd_obj_request *obj_request)
1558{
b9434c5b
AE
1559 u64 xferred = obj_request->xferred;
1560 u64 length = obj_request->length;
1561
6e2a4505
AE
1562 dout("%s: obj %p img %p result %d %llu/%llu\n", __func__,
1563 obj_request, obj_request->img_request, obj_request->result,
b9434c5b 1564 xferred, length);
6e2a4505 1565 /*
17c1cc1d
JD
1566 * ENOENT means a hole in the image. We zero-fill the entire
1567 * length of the request. A short read also implies zero-fill
1568 * to the end of the request. An error requires the whole
1569 * length of the request to be reported finished with an error
1570 * to the block layer. In each case we update the xferred
1571 * count to indicate the whole request was satisfied.
6e2a4505 1572 */
b9434c5b 1573 rbd_assert(obj_request->type != OBJ_REQUEST_NODATA);
6e2a4505 1574 if (obj_request->result == -ENOENT) {
b9434c5b
AE
1575 if (obj_request->type == OBJ_REQUEST_BIO)
1576 zero_bio_chain(obj_request->bio_list, 0);
1577 else
1578 zero_pages(obj_request->pages, 0, length);
6e2a4505 1579 obj_request->result = 0;
b9434c5b
AE
1580 } else if (xferred < length && !obj_request->result) {
1581 if (obj_request->type == OBJ_REQUEST_BIO)
1582 zero_bio_chain(obj_request->bio_list, xferred);
1583 else
1584 zero_pages(obj_request->pages, xferred, length);
6e2a4505 1585 }
17c1cc1d 1586 obj_request->xferred = length;
6e2a4505
AE
1587 obj_request_done_set(obj_request);
1588}
1589
bf0d5f50
AE
1590static void rbd_obj_request_complete(struct rbd_obj_request *obj_request)
1591{
37206ee5
AE
1592 dout("%s: obj %p cb %p\n", __func__, obj_request,
1593 obj_request->callback);
bf0d5f50
AE
1594 if (obj_request->callback)
1595 obj_request->callback(obj_request);
788e2df3
AE
1596 else
1597 complete_all(&obj_request->completion);
bf0d5f50
AE
1598}
1599
c47f9371 1600static void rbd_osd_trivial_callback(struct rbd_obj_request *obj_request)
39bf2c5d
AE
1601{
1602 dout("%s: obj %p\n", __func__, obj_request);
1603 obj_request_done_set(obj_request);
1604}
1605
c47f9371 1606static void rbd_osd_read_callback(struct rbd_obj_request *obj_request)
bf0d5f50 1607{
57acbaa7 1608 struct rbd_img_request *img_request = NULL;
a9e8ba2c 1609 struct rbd_device *rbd_dev = NULL;
57acbaa7
AE
1610 bool layered = false;
1611
1612 if (obj_request_img_data_test(obj_request)) {
1613 img_request = obj_request->img_request;
1614 layered = img_request && img_request_layered_test(img_request);
a9e8ba2c 1615 rbd_dev = img_request->rbd_dev;
57acbaa7 1616 }
8b3e1a56
AE
1617
1618 dout("%s: obj %p img %p result %d %llu/%llu\n", __func__,
1619 obj_request, img_request, obj_request->result,
1620 obj_request->xferred, obj_request->length);
a9e8ba2c
AE
1621 if (layered && obj_request->result == -ENOENT &&
1622 obj_request->img_offset < rbd_dev->parent_overlap)
8b3e1a56
AE
1623 rbd_img_parent_read(obj_request);
1624 else if (img_request)
6e2a4505
AE
1625 rbd_img_obj_request_read_callback(obj_request);
1626 else
1627 obj_request_done_set(obj_request);
bf0d5f50
AE
1628}
1629
c47f9371 1630static void rbd_osd_write_callback(struct rbd_obj_request *obj_request)
bf0d5f50 1631{
1b83bef2
SW
1632 dout("%s: obj %p result %d %llu\n", __func__, obj_request,
1633 obj_request->result, obj_request->length);
1634 /*
8b3e1a56
AE
1635 * There is no such thing as a successful short write. Set
1636 * it to our originally-requested length.
1b83bef2
SW
1637 */
1638 obj_request->xferred = obj_request->length;
07741308 1639 obj_request_done_set(obj_request);
bf0d5f50
AE
1640}
1641
fbfab539
AE
1642/*
1643 * For a simple stat call there's nothing to do. We'll do more if
1644 * this is part of a write sequence for a layered image.
1645 */
c47f9371 1646static void rbd_osd_stat_callback(struct rbd_obj_request *obj_request)
fbfab539 1647{
37206ee5 1648 dout("%s: obj %p\n", __func__, obj_request);
fbfab539
AE
1649 obj_request_done_set(obj_request);
1650}
1651
bf0d5f50
AE
1652static void rbd_osd_req_callback(struct ceph_osd_request *osd_req,
1653 struct ceph_msg *msg)
1654{
1655 struct rbd_obj_request *obj_request = osd_req->r_priv;
bf0d5f50
AE
1656 u16 opcode;
1657
37206ee5 1658 dout("%s: osd_req %p msg %p\n", __func__, osd_req, msg);
bf0d5f50 1659 rbd_assert(osd_req == obj_request->osd_req);
57acbaa7
AE
1660 if (obj_request_img_data_test(obj_request)) {
1661 rbd_assert(obj_request->img_request);
1662 rbd_assert(obj_request->which != BAD_WHICH);
1663 } else {
1664 rbd_assert(obj_request->which == BAD_WHICH);
1665 }
bf0d5f50 1666
1b83bef2
SW
1667 if (osd_req->r_result < 0)
1668 obj_request->result = osd_req->r_result;
bf0d5f50 1669
0eefd470 1670 BUG_ON(osd_req->r_num_ops > 2);
bf0d5f50 1671
c47f9371
AE
1672 /*
1673 * We support a 64-bit length, but ultimately it has to be
1674 * passed to blk_end_request(), which takes an unsigned int.
1675 */
1b83bef2 1676 obj_request->xferred = osd_req->r_reply_op_len[0];
8b3e1a56 1677 rbd_assert(obj_request->xferred < (u64)UINT_MAX);
79528734 1678 opcode = osd_req->r_ops[0].op;
bf0d5f50
AE
1679 switch (opcode) {
1680 case CEPH_OSD_OP_READ:
c47f9371 1681 rbd_osd_read_callback(obj_request);
bf0d5f50
AE
1682 break;
1683 case CEPH_OSD_OP_WRITE:
c47f9371 1684 rbd_osd_write_callback(obj_request);
bf0d5f50 1685 break;
fbfab539 1686 case CEPH_OSD_OP_STAT:
c47f9371 1687 rbd_osd_stat_callback(obj_request);
fbfab539 1688 break;
36be9a76 1689 case CEPH_OSD_OP_CALL:
b8d70035 1690 case CEPH_OSD_OP_NOTIFY_ACK:
9969ebc5 1691 case CEPH_OSD_OP_WATCH:
c47f9371 1692 rbd_osd_trivial_callback(obj_request);
9969ebc5 1693 break;
bf0d5f50
AE
1694 default:
1695 rbd_warn(NULL, "%s: unsupported op %hu\n",
1696 obj_request->object_name, (unsigned short) opcode);
1697 break;
1698 }
1699
07741308 1700 if (obj_request_done_test(obj_request))
bf0d5f50
AE
1701 rbd_obj_request_complete(obj_request);
1702}
1703
9d4df01f 1704static void rbd_osd_req_format_read(struct rbd_obj_request *obj_request)
430c28c3
AE
1705{
1706 struct rbd_img_request *img_request = obj_request->img_request;
8c042b0d 1707 struct ceph_osd_request *osd_req = obj_request->osd_req;
9d4df01f 1708 u64 snap_id;
430c28c3 1709
8c042b0d 1710 rbd_assert(osd_req != NULL);
430c28c3 1711
9d4df01f 1712 snap_id = img_request ? img_request->snap_id : CEPH_NOSNAP;
8c042b0d 1713 ceph_osdc_build_request(osd_req, obj_request->offset,
9d4df01f
AE
1714 NULL, snap_id, NULL);
1715}
1716
1717static void rbd_osd_req_format_write(struct rbd_obj_request *obj_request)
1718{
1719 struct rbd_img_request *img_request = obj_request->img_request;
1720 struct ceph_osd_request *osd_req = obj_request->osd_req;
1721 struct ceph_snap_context *snapc;
1722 struct timespec mtime = CURRENT_TIME;
1723
1724 rbd_assert(osd_req != NULL);
1725
1726 snapc = img_request ? img_request->snapc : NULL;
1727 ceph_osdc_build_request(osd_req, obj_request->offset,
1728 snapc, CEPH_NOSNAP, &mtime);
430c28c3
AE
1729}
1730
bf0d5f50
AE
1731static struct ceph_osd_request *rbd_osd_req_create(
1732 struct rbd_device *rbd_dev,
1733 bool write_request,
430c28c3 1734 struct rbd_obj_request *obj_request)
bf0d5f50 1735{
bf0d5f50
AE
1736 struct ceph_snap_context *snapc = NULL;
1737 struct ceph_osd_client *osdc;
1738 struct ceph_osd_request *osd_req;
bf0d5f50 1739
6365d33a
AE
1740 if (obj_request_img_data_test(obj_request)) {
1741 struct rbd_img_request *img_request = obj_request->img_request;
1742
0c425248
AE
1743 rbd_assert(write_request ==
1744 img_request_write_test(img_request));
1745 if (write_request)
bf0d5f50 1746 snapc = img_request->snapc;
bf0d5f50
AE
1747 }
1748
1749 /* Allocate and initialize the request, for the single op */
1750
1751 osdc = &rbd_dev->rbd_client->client->osdc;
1752 osd_req = ceph_osdc_alloc_request(osdc, snapc, 1, false, GFP_ATOMIC);
1753 if (!osd_req)
1754 return NULL; /* ENOMEM */
bf0d5f50 1755
430c28c3 1756 if (write_request)
bf0d5f50 1757 osd_req->r_flags = CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK;
430c28c3 1758 else
bf0d5f50 1759 osd_req->r_flags = CEPH_OSD_FLAG_READ;
bf0d5f50
AE
1760
1761 osd_req->r_callback = rbd_osd_req_callback;
1762 osd_req->r_priv = obj_request;
1763
1764 osd_req->r_oid_len = strlen(obj_request->object_name);
1765 rbd_assert(osd_req->r_oid_len < sizeof (osd_req->r_oid));
1766 memcpy(osd_req->r_oid, obj_request->object_name, osd_req->r_oid_len);
1767
1768 osd_req->r_file_layout = rbd_dev->layout; /* struct */
1769
bf0d5f50
AE
1770 return osd_req;
1771}
1772
0eefd470
AE
1773/*
1774 * Create a copyup osd request based on the information in the
1775 * object request supplied. A copyup request has two osd ops,
1776 * a copyup method call, and a "normal" write request.
1777 */
1778static struct ceph_osd_request *
1779rbd_osd_req_create_copyup(struct rbd_obj_request *obj_request)
1780{
1781 struct rbd_img_request *img_request;
1782 struct ceph_snap_context *snapc;
1783 struct rbd_device *rbd_dev;
1784 struct ceph_osd_client *osdc;
1785 struct ceph_osd_request *osd_req;
1786
1787 rbd_assert(obj_request_img_data_test(obj_request));
1788 img_request = obj_request->img_request;
1789 rbd_assert(img_request);
1790 rbd_assert(img_request_write_test(img_request));
1791
1792 /* Allocate and initialize the request, for the two ops */
1793
1794 snapc = img_request->snapc;
1795 rbd_dev = img_request->rbd_dev;
1796 osdc = &rbd_dev->rbd_client->client->osdc;
1797 osd_req = ceph_osdc_alloc_request(osdc, snapc, 2, false, GFP_ATOMIC);
1798 if (!osd_req)
1799 return NULL; /* ENOMEM */
1800
1801 osd_req->r_flags = CEPH_OSD_FLAG_WRITE | CEPH_OSD_FLAG_ONDISK;
1802 osd_req->r_callback = rbd_osd_req_callback;
1803 osd_req->r_priv = obj_request;
1804
1805 osd_req->r_oid_len = strlen(obj_request->object_name);
1806 rbd_assert(osd_req->r_oid_len < sizeof (osd_req->r_oid));
1807 memcpy(osd_req->r_oid, obj_request->object_name, osd_req->r_oid_len);
1808
1809 osd_req->r_file_layout = rbd_dev->layout; /* struct */
1810
1811 return osd_req;
1812}
1813
1814
bf0d5f50
AE
1815static void rbd_osd_req_destroy(struct ceph_osd_request *osd_req)
1816{
1817 ceph_osdc_put_request(osd_req);
1818}
1819
1820/* object_name is assumed to be a non-null pointer and NUL-terminated */
1821
1822static struct rbd_obj_request *rbd_obj_request_create(const char *object_name,
1823 u64 offset, u64 length,
1824 enum obj_request_type type)
1825{
1826 struct rbd_obj_request *obj_request;
1827 size_t size;
1828 char *name;
1829
1830 rbd_assert(obj_request_type_valid(type));
1831
1832 size = strlen(object_name) + 1;
f907ad55
AE
1833 name = kmalloc(size, GFP_KERNEL);
1834 if (!name)
bf0d5f50
AE
1835 return NULL;
1836
868311b1 1837 obj_request = kmem_cache_zalloc(rbd_obj_request_cache, GFP_KERNEL);
f907ad55
AE
1838 if (!obj_request) {
1839 kfree(name);
1840 return NULL;
1841 }
1842
bf0d5f50
AE
1843 obj_request->object_name = memcpy(name, object_name, size);
1844 obj_request->offset = offset;
1845 obj_request->length = length;
926f9b3f 1846 obj_request->flags = 0;
bf0d5f50
AE
1847 obj_request->which = BAD_WHICH;
1848 obj_request->type = type;
1849 INIT_LIST_HEAD(&obj_request->links);
788e2df3 1850 init_completion(&obj_request->completion);
bf0d5f50
AE
1851 kref_init(&obj_request->kref);
1852
37206ee5
AE
1853 dout("%s: \"%s\" %llu/%llu %d -> obj %p\n", __func__, object_name,
1854 offset, length, (int)type, obj_request);
1855
bf0d5f50
AE
1856 return obj_request;
1857}
1858
1859static void rbd_obj_request_destroy(struct kref *kref)
1860{
1861 struct rbd_obj_request *obj_request;
1862
1863 obj_request = container_of(kref, struct rbd_obj_request, kref);
1864
37206ee5
AE
1865 dout("%s: obj %p\n", __func__, obj_request);
1866
bf0d5f50
AE
1867 rbd_assert(obj_request->img_request == NULL);
1868 rbd_assert(obj_request->which == BAD_WHICH);
1869
1870 if (obj_request->osd_req)
1871 rbd_osd_req_destroy(obj_request->osd_req);
1872
1873 rbd_assert(obj_request_type_valid(obj_request->type));
1874 switch (obj_request->type) {
9969ebc5
AE
1875 case OBJ_REQUEST_NODATA:
1876 break; /* Nothing to do */
bf0d5f50
AE
1877 case OBJ_REQUEST_BIO:
1878 if (obj_request->bio_list)
1879 bio_chain_put(obj_request->bio_list);
1880 break;
788e2df3
AE
1881 case OBJ_REQUEST_PAGES:
1882 if (obj_request->pages)
1883 ceph_release_page_vector(obj_request->pages,
1884 obj_request->page_count);
1885 break;
bf0d5f50
AE
1886 }
1887
f907ad55 1888 kfree(obj_request->object_name);
868311b1
AE
1889 obj_request->object_name = NULL;
1890 kmem_cache_free(rbd_obj_request_cache, obj_request);
bf0d5f50
AE
1891}
1892
fb65d228
AE
1893/* It's OK to call this for a device with no parent */
1894
1895static void rbd_spec_put(struct rbd_spec *spec);
1896static void rbd_dev_unparent(struct rbd_device *rbd_dev)
1897{
1898 rbd_dev_remove_parent(rbd_dev);
1899 rbd_spec_put(rbd_dev->parent_spec);
1900 rbd_dev->parent_spec = NULL;
1901 rbd_dev->parent_overlap = 0;
1902}
1903
a2acd00e
AE
1904/*
1905 * Parent image reference counting is used to determine when an
1906 * image's parent fields can be safely torn down--after there are no
1907 * more in-flight requests to the parent image. When the last
1908 * reference is dropped, cleaning them up is safe.
1909 */
1910static void rbd_dev_parent_put(struct rbd_device *rbd_dev)
1911{
1912 int counter;
1913
1914 if (!rbd_dev->parent_spec)
1915 return;
1916
1917 counter = atomic_dec_return_safe(&rbd_dev->parent_ref);
1918 if (counter > 0)
1919 return;
1920
1921 /* Last reference; clean up parent data structures */
1922
1923 if (!counter)
1924 rbd_dev_unparent(rbd_dev);
1925 else
1926 rbd_warn(rbd_dev, "parent reference underflow\n");
1927}
1928
1929/*
1930 * If an image has a non-zero parent overlap, get a reference to its
1931 * parent.
1932 *
392a9dad
AE
1933 * We must get the reference before checking for the overlap to
1934 * coordinate properly with zeroing the parent overlap in
1935 * rbd_dev_v2_parent_info() when an image gets flattened. We
1936 * drop it again if there is no overlap.
1937 *
a2acd00e
AE
1938 * Returns true if the rbd device has a parent with a non-zero
1939 * overlap and a reference for it was successfully taken, or
1940 * false otherwise.
1941 */
1942static bool rbd_dev_parent_get(struct rbd_device *rbd_dev)
1943{
1944 int counter;
1945
1946 if (!rbd_dev->parent_spec)
1947 return false;
1948
1949 counter = atomic_inc_return_safe(&rbd_dev->parent_ref);
1950 if (counter > 0 && rbd_dev->parent_overlap)
1951 return true;
1952
1953 /* Image was flattened, but parent is not yet torn down */
1954
1955 if (counter < 0)
1956 rbd_warn(rbd_dev, "parent reference overflow\n");
1957
1958 return false;
1959}
1960
bf0d5f50
AE
1961/*
1962 * Caller is responsible for filling in the list of object requests
1963 * that comprises the image request, and the Linux request pointer
1964 * (if there is one).
1965 */
cc344fa1
AE
1966static struct rbd_img_request *rbd_img_request_create(
1967 struct rbd_device *rbd_dev,
bf0d5f50 1968 u64 offset, u64 length,
e93f3152 1969 bool write_request)
bf0d5f50
AE
1970{
1971 struct rbd_img_request *img_request;
bf0d5f50 1972
1c2a9dfe 1973 img_request = kmem_cache_alloc(rbd_img_request_cache, GFP_ATOMIC);
bf0d5f50
AE
1974 if (!img_request)
1975 return NULL;
1976
1977 if (write_request) {
1978 down_read(&rbd_dev->header_rwsem);
812164f8 1979 ceph_get_snap_context(rbd_dev->header.snapc);
bf0d5f50 1980 up_read(&rbd_dev->header_rwsem);
bf0d5f50
AE
1981 }
1982
1983 img_request->rq = NULL;
1984 img_request->rbd_dev = rbd_dev;
1985 img_request->offset = offset;
1986 img_request->length = length;
0c425248
AE
1987 img_request->flags = 0;
1988 if (write_request) {
1989 img_request_write_set(img_request);
468521c1 1990 img_request->snapc = rbd_dev->header.snapc;
0c425248 1991 } else {
bf0d5f50 1992 img_request->snap_id = rbd_dev->spec->snap_id;
0c425248 1993 }
a2acd00e 1994 if (rbd_dev_parent_get(rbd_dev))
d0b2e944 1995 img_request_layered_set(img_request);
bf0d5f50
AE
1996 spin_lock_init(&img_request->completion_lock);
1997 img_request->next_completion = 0;
1998 img_request->callback = NULL;
a5a337d4 1999 img_request->result = 0;
bf0d5f50
AE
2000 img_request->obj_request_count = 0;
2001 INIT_LIST_HEAD(&img_request->obj_requests);
2002 kref_init(&img_request->kref);
2003
37206ee5
AE
2004 dout("%s: rbd_dev %p %s %llu/%llu -> img %p\n", __func__, rbd_dev,
2005 write_request ? "write" : "read", offset, length,
2006 img_request);
2007
bf0d5f50
AE
2008 return img_request;
2009}
2010
2011static void rbd_img_request_destroy(struct kref *kref)
2012{
2013 struct rbd_img_request *img_request;
2014 struct rbd_obj_request *obj_request;
2015 struct rbd_obj_request *next_obj_request;
2016
2017 img_request = container_of(kref, struct rbd_img_request, kref);
2018
37206ee5
AE
2019 dout("%s: img %p\n", __func__, img_request);
2020
bf0d5f50
AE
2021 for_each_obj_request_safe(img_request, obj_request, next_obj_request)
2022 rbd_img_obj_request_del(img_request, obj_request);
25dcf954 2023 rbd_assert(img_request->obj_request_count == 0);
bf0d5f50 2024
a2acd00e
AE
2025 if (img_request_layered_test(img_request)) {
2026 img_request_layered_clear(img_request);
2027 rbd_dev_parent_put(img_request->rbd_dev);
2028 }
2029
0c425248 2030 if (img_request_write_test(img_request))
812164f8 2031 ceph_put_snap_context(img_request->snapc);
bf0d5f50 2032
1c2a9dfe 2033 kmem_cache_free(rbd_img_request_cache, img_request);
bf0d5f50
AE
2034}
2035
e93f3152
AE
2036static struct rbd_img_request *rbd_parent_request_create(
2037 struct rbd_obj_request *obj_request,
2038 u64 img_offset, u64 length)
2039{
2040 struct rbd_img_request *parent_request;
2041 struct rbd_device *rbd_dev;
2042
2043 rbd_assert(obj_request->img_request);
2044 rbd_dev = obj_request->img_request->rbd_dev;
2045
2046 parent_request = rbd_img_request_create(rbd_dev->parent,
2047 img_offset, length, false);
2048 if (!parent_request)
2049 return NULL;
2050
2051 img_request_child_set(parent_request);
2052 rbd_obj_request_get(obj_request);
2053 parent_request->obj_request = obj_request;
2054
2055 return parent_request;
2056}
2057
2058static void rbd_parent_request_destroy(struct kref *kref)
2059{
2060 struct rbd_img_request *parent_request;
2061 struct rbd_obj_request *orig_request;
2062
2063 parent_request = container_of(kref, struct rbd_img_request, kref);
2064 orig_request = parent_request->obj_request;
2065
2066 parent_request->obj_request = NULL;
2067 rbd_obj_request_put(orig_request);
2068 img_request_child_clear(parent_request);
2069
2070 rbd_img_request_destroy(kref);
2071}
2072
1217857f
AE
2073static bool rbd_img_obj_end_request(struct rbd_obj_request *obj_request)
2074{
6365d33a 2075 struct rbd_img_request *img_request;
1217857f
AE
2076 unsigned int xferred;
2077 int result;
8b3e1a56 2078 bool more;
1217857f 2079
6365d33a
AE
2080 rbd_assert(obj_request_img_data_test(obj_request));
2081 img_request = obj_request->img_request;
2082
1217857f
AE
2083 rbd_assert(obj_request->xferred <= (u64)UINT_MAX);
2084 xferred = (unsigned int)obj_request->xferred;
2085 result = obj_request->result;
2086 if (result) {
2087 struct rbd_device *rbd_dev = img_request->rbd_dev;
2088
2089 rbd_warn(rbd_dev, "%s %llx at %llx (%llx)\n",
2090 img_request_write_test(img_request) ? "write" : "read",
2091 obj_request->length, obj_request->img_offset,
2092 obj_request->offset);
2093 rbd_warn(rbd_dev, " result %d xferred %x\n",
2094 result, xferred);
2095 if (!img_request->result)
2096 img_request->result = result;
2097 }
2098
f1a4739f
AE
2099 /* Image object requests don't own their page array */
2100
2101 if (obj_request->type == OBJ_REQUEST_PAGES) {
2102 obj_request->pages = NULL;
2103 obj_request->page_count = 0;
2104 }
2105
8b3e1a56
AE
2106 if (img_request_child_test(img_request)) {
2107 rbd_assert(img_request->obj_request != NULL);
2108 more = obj_request->which < img_request->obj_request_count - 1;
2109 } else {
2110 rbd_assert(img_request->rq != NULL);
2111 more = blk_end_request(img_request->rq, result, xferred);
2112 }
2113
2114 return more;
1217857f
AE
2115}
2116
2169238d
AE
2117static void rbd_img_obj_callback(struct rbd_obj_request *obj_request)
2118{
2119 struct rbd_img_request *img_request;
2120 u32 which = obj_request->which;
2121 bool more = true;
2122
6365d33a 2123 rbd_assert(obj_request_img_data_test(obj_request));
2169238d
AE
2124 img_request = obj_request->img_request;
2125
2126 dout("%s: img %p obj %p\n", __func__, img_request, obj_request);
2127 rbd_assert(img_request != NULL);
2169238d
AE
2128 rbd_assert(img_request->obj_request_count > 0);
2129 rbd_assert(which != BAD_WHICH);
2130 rbd_assert(which < img_request->obj_request_count);
2131 rbd_assert(which >= img_request->next_completion);
2132
2133 spin_lock_irq(&img_request->completion_lock);
2134 if (which != img_request->next_completion)
2135 goto out;
2136
2137 for_each_obj_request_from(img_request, obj_request) {
2169238d
AE
2138 rbd_assert(more);
2139 rbd_assert(which < img_request->obj_request_count);
2140
2141 if (!obj_request_done_test(obj_request))
2142 break;
1217857f 2143 more = rbd_img_obj_end_request(obj_request);
2169238d
AE
2144 which++;
2145 }
2146
2147 rbd_assert(more ^ (which == img_request->obj_request_count));
2148 img_request->next_completion = which;
2149out:
2150 spin_unlock_irq(&img_request->completion_lock);
2151
2152 if (!more)
2153 rbd_img_request_complete(img_request);
2154}
2155
f1a4739f
AE
2156/*
2157 * Split up an image request into one or more object requests, each
2158 * to a different object. The "type" parameter indicates whether
2159 * "data_desc" is the pointer to the head of a list of bio
2160 * structures, or the base of a page array. In either case this
2161 * function assumes data_desc describes memory sufficient to hold
2162 * all data described by the image request.
2163 */
2164static int rbd_img_request_fill(struct rbd_img_request *img_request,
2165 enum obj_request_type type,
2166 void *data_desc)
bf0d5f50
AE
2167{
2168 struct rbd_device *rbd_dev = img_request->rbd_dev;
2169 struct rbd_obj_request *obj_request = NULL;
2170 struct rbd_obj_request *next_obj_request;
0c425248 2171 bool write_request = img_request_write_test(img_request);
a158073c 2172 struct bio *bio_list = NULL;
f1a4739f 2173 unsigned int bio_offset = 0;
a158073c 2174 struct page **pages = NULL;
7da22d29 2175 u64 img_offset;
bf0d5f50
AE
2176 u64 resid;
2177 u16 opcode;
2178
f1a4739f
AE
2179 dout("%s: img %p type %d data_desc %p\n", __func__, img_request,
2180 (int)type, data_desc);
37206ee5 2181
430c28c3 2182 opcode = write_request ? CEPH_OSD_OP_WRITE : CEPH_OSD_OP_READ;
7da22d29 2183 img_offset = img_request->offset;
bf0d5f50 2184 resid = img_request->length;
4dda41d3 2185 rbd_assert(resid > 0);
f1a4739f
AE
2186
2187 if (type == OBJ_REQUEST_BIO) {
2188 bio_list = data_desc;
2189 rbd_assert(img_offset == bio_list->bi_sector << SECTOR_SHIFT);
2190 } else {
2191 rbd_assert(type == OBJ_REQUEST_PAGES);
2192 pages = data_desc;
2193 }
2194
bf0d5f50 2195 while (resid) {
2fa12320 2196 struct ceph_osd_request *osd_req;
bf0d5f50 2197 const char *object_name;
bf0d5f50
AE
2198 u64 offset;
2199 u64 length;
2200
7da22d29 2201 object_name = rbd_segment_name(rbd_dev, img_offset);
bf0d5f50
AE
2202 if (!object_name)
2203 goto out_unwind;
7da22d29
AE
2204 offset = rbd_segment_offset(rbd_dev, img_offset);
2205 length = rbd_segment_length(rbd_dev, img_offset, resid);
bf0d5f50 2206 obj_request = rbd_obj_request_create(object_name,
f1a4739f 2207 offset, length, type);
78c2a44a
AE
2208 /* object request has its own copy of the object name */
2209 rbd_segment_name_free(object_name);
bf0d5f50
AE
2210 if (!obj_request)
2211 goto out_unwind;
03507db6
JD
2212 /*
2213 * set obj_request->img_request before creating the
2214 * osd_request so that it gets the right snapc
2215 */
2216 rbd_img_obj_request_add(img_request, obj_request);
bf0d5f50 2217
f1a4739f
AE
2218 if (type == OBJ_REQUEST_BIO) {
2219 unsigned int clone_size;
2220
2221 rbd_assert(length <= (u64)UINT_MAX);
2222 clone_size = (unsigned int)length;
2223 obj_request->bio_list =
2224 bio_chain_clone_range(&bio_list,
2225 &bio_offset,
2226 clone_size,
2227 GFP_ATOMIC);
2228 if (!obj_request->bio_list)
2229 goto out_partial;
2230 } else {
2231 unsigned int page_count;
2232
2233 obj_request->pages = pages;
2234 page_count = (u32)calc_pages_for(offset, length);
2235 obj_request->page_count = page_count;
2236 if ((offset + length) & ~PAGE_MASK)
2237 page_count--; /* more on last page */
2238 pages += page_count;
2239 }
bf0d5f50 2240
2fa12320
AE
2241 osd_req = rbd_osd_req_create(rbd_dev, write_request,
2242 obj_request);
2243 if (!osd_req)
bf0d5f50 2244 goto out_partial;
2fa12320 2245 obj_request->osd_req = osd_req;
2169238d 2246 obj_request->callback = rbd_img_obj_callback;
430c28c3 2247
2fa12320
AE
2248 osd_req_op_extent_init(osd_req, 0, opcode, offset, length,
2249 0, 0);
f1a4739f
AE
2250 if (type == OBJ_REQUEST_BIO)
2251 osd_req_op_extent_osd_data_bio(osd_req, 0,
2252 obj_request->bio_list, length);
2253 else
2254 osd_req_op_extent_osd_data_pages(osd_req, 0,
2255 obj_request->pages, length,
2256 offset & ~PAGE_MASK, false, false);
9d4df01f
AE
2257
2258 if (write_request)
2259 rbd_osd_req_format_write(obj_request);
2260 else
2261 rbd_osd_req_format_read(obj_request);
430c28c3 2262
7da22d29 2263 obj_request->img_offset = img_offset;
bf0d5f50 2264
7da22d29 2265 img_offset += length;
bf0d5f50
AE
2266 resid -= length;
2267 }
2268
2269 return 0;
2270
2271out_partial:
2272 rbd_obj_request_put(obj_request);
2273out_unwind:
2274 for_each_obj_request_safe(img_request, obj_request, next_obj_request)
2275 rbd_obj_request_put(obj_request);
2276
2277 return -ENOMEM;
2278}
2279
0eefd470
AE
2280static void
2281rbd_img_obj_copyup_callback(struct rbd_obj_request *obj_request)
2282{
2283 struct rbd_img_request *img_request;
2284 struct rbd_device *rbd_dev;
ebda6408 2285 struct page **pages;
0eefd470
AE
2286 u32 page_count;
2287
2288 rbd_assert(obj_request->type == OBJ_REQUEST_BIO);
2289 rbd_assert(obj_request_img_data_test(obj_request));
2290 img_request = obj_request->img_request;
2291 rbd_assert(img_request);
2292
2293 rbd_dev = img_request->rbd_dev;
2294 rbd_assert(rbd_dev);
0eefd470 2295
ebda6408
AE
2296 pages = obj_request->copyup_pages;
2297 rbd_assert(pages != NULL);
0eefd470 2298 obj_request->copyup_pages = NULL;
ebda6408
AE
2299 page_count = obj_request->copyup_page_count;
2300 rbd_assert(page_count);
2301 obj_request->copyup_page_count = 0;
2302 ceph_release_page_vector(pages, page_count);
0eefd470
AE
2303
2304 /*
2305 * We want the transfer count to reflect the size of the
2306 * original write request. There is no such thing as a
2307 * successful short write, so if the request was successful
2308 * we can just set it to the originally-requested length.
2309 */
2310 if (!obj_request->result)
2311 obj_request->xferred = obj_request->length;
2312
2313 /* Finish up with the normal image object callback */
2314
2315 rbd_img_obj_callback(obj_request);
2316}
2317
3d7efd18
AE
2318static void
2319rbd_img_obj_parent_read_full_callback(struct rbd_img_request *img_request)
2320{
2321 struct rbd_obj_request *orig_request;
0eefd470
AE
2322 struct ceph_osd_request *osd_req;
2323 struct ceph_osd_client *osdc;
2324 struct rbd_device *rbd_dev;
3d7efd18 2325 struct page **pages;
ebda6408 2326 u32 page_count;
bbea1c1a 2327 int img_result;
ebda6408 2328 u64 parent_length;
b91f09f1
AE
2329 u64 offset;
2330 u64 length;
3d7efd18
AE
2331
2332 rbd_assert(img_request_child_test(img_request));
2333
2334 /* First get what we need from the image request */
2335
2336 pages = img_request->copyup_pages;
2337 rbd_assert(pages != NULL);
2338 img_request->copyup_pages = NULL;
ebda6408
AE
2339 page_count = img_request->copyup_page_count;
2340 rbd_assert(page_count);
2341 img_request->copyup_page_count = 0;
3d7efd18
AE
2342
2343 orig_request = img_request->obj_request;
2344 rbd_assert(orig_request != NULL);
b91f09f1 2345 rbd_assert(obj_request_type_valid(orig_request->type));
bbea1c1a 2346 img_result = img_request->result;
ebda6408
AE
2347 parent_length = img_request->length;
2348 rbd_assert(parent_length == img_request->xferred);
91c6febb 2349 rbd_img_request_put(img_request);
3d7efd18 2350
91c6febb
AE
2351 rbd_assert(orig_request->img_request);
2352 rbd_dev = orig_request->img_request->rbd_dev;
0eefd470 2353 rbd_assert(rbd_dev);
0eefd470 2354
bbea1c1a
AE
2355 /*
2356 * If the overlap has become 0 (most likely because the
2357 * image has been flattened) we need to free the pages
2358 * and re-submit the original write request.
2359 */
2360 if (!rbd_dev->parent_overlap) {
2361 struct ceph_osd_client *osdc;
3d7efd18 2362
bbea1c1a
AE
2363 ceph_release_page_vector(pages, page_count);
2364 osdc = &rbd_dev->rbd_client->client->osdc;
2365 img_result = rbd_obj_request_submit(osdc, orig_request);
2366 if (!img_result)
2367 return;
2368 }
0eefd470 2369
bbea1c1a 2370 if (img_result)
0eefd470 2371 goto out_err;
0eefd470 2372
8785b1d4
AE
2373 /*
2374 * The original osd request is of no use to use any more.
2375 * We need a new one that can hold the two ops in a copyup
2376 * request. Allocate the new copyup osd request for the
2377 * original request, and release the old one.
2378 */
bbea1c1a 2379 img_result = -ENOMEM;
0eefd470
AE
2380 osd_req = rbd_osd_req_create_copyup(orig_request);
2381 if (!osd_req)
2382 goto out_err;
8785b1d4 2383 rbd_osd_req_destroy(orig_request->osd_req);
0eefd470
AE
2384 orig_request->osd_req = osd_req;
2385 orig_request->copyup_pages = pages;
ebda6408 2386 orig_request->copyup_page_count = page_count;
3d7efd18 2387
0eefd470 2388 /* Initialize the copyup op */
3d7efd18 2389
0eefd470 2390 osd_req_op_cls_init(osd_req, 0, CEPH_OSD_OP_CALL, "rbd", "copyup");
ebda6408 2391 osd_req_op_cls_request_data_pages(osd_req, 0, pages, parent_length, 0,
0eefd470 2392 false, false);
3d7efd18 2393
0eefd470
AE
2394 /* Then the original write request op */
2395
b91f09f1
AE
2396 offset = orig_request->offset;
2397 length = orig_request->length;
0eefd470 2398 osd_req_op_extent_init(osd_req, 1, CEPH_OSD_OP_WRITE,
b91f09f1
AE
2399 offset, length, 0, 0);
2400 if (orig_request->type == OBJ_REQUEST_BIO)
2401 osd_req_op_extent_osd_data_bio(osd_req, 1,
2402 orig_request->bio_list, length);
2403 else
2404 osd_req_op_extent_osd_data_pages(osd_req, 1,
2405 orig_request->pages, length,
2406 offset & ~PAGE_MASK, false, false);
0eefd470
AE
2407
2408 rbd_osd_req_format_write(orig_request);
2409
2410 /* All set, send it off. */
2411
2412 orig_request->callback = rbd_img_obj_copyup_callback;
2413 osdc = &rbd_dev->rbd_client->client->osdc;
bbea1c1a
AE
2414 img_result = rbd_obj_request_submit(osdc, orig_request);
2415 if (!img_result)
0eefd470
AE
2416 return;
2417out_err:
2418 /* Record the error code and complete the request */
2419
bbea1c1a 2420 orig_request->result = img_result;
0eefd470
AE
2421 orig_request->xferred = 0;
2422 obj_request_done_set(orig_request);
2423 rbd_obj_request_complete(orig_request);
3d7efd18
AE
2424}
2425
2426/*
2427 * Read from the parent image the range of data that covers the
2428 * entire target of the given object request. This is used for
2429 * satisfying a layered image write request when the target of an
2430 * object request from the image request does not exist.
2431 *
2432 * A page array big enough to hold the returned data is allocated
2433 * and supplied to rbd_img_request_fill() as the "data descriptor."
2434 * When the read completes, this page array will be transferred to
2435 * the original object request for the copyup operation.
2436 *
2437 * If an error occurs, record it as the result of the original
2438 * object request and mark it done so it gets completed.
2439 */
2440static int rbd_img_obj_parent_read_full(struct rbd_obj_request *obj_request)
2441{
2442 struct rbd_img_request *img_request = NULL;
2443 struct rbd_img_request *parent_request = NULL;
2444 struct rbd_device *rbd_dev;
2445 u64 img_offset;
2446 u64 length;
2447 struct page **pages = NULL;
2448 u32 page_count;
2449 int result;
2450
2451 rbd_assert(obj_request_img_data_test(obj_request));
b91f09f1 2452 rbd_assert(obj_request_type_valid(obj_request->type));
3d7efd18
AE
2453
2454 img_request = obj_request->img_request;
2455 rbd_assert(img_request != NULL);
2456 rbd_dev = img_request->rbd_dev;
2457 rbd_assert(rbd_dev->parent != NULL);
2458
2459 /*
2460 * Determine the byte range covered by the object in the
2461 * child image to which the original request was to be sent.
2462 */
2463 img_offset = obj_request->img_offset - obj_request->offset;
2464 length = (u64)1 << rbd_dev->header.obj_order;
2465
a9e8ba2c
AE
2466 /*
2467 * There is no defined parent data beyond the parent
2468 * overlap, so limit what we read at that boundary if
2469 * necessary.
2470 */
2471 if (img_offset + length > rbd_dev->parent_overlap) {
2472 rbd_assert(img_offset < rbd_dev->parent_overlap);
2473 length = rbd_dev->parent_overlap - img_offset;
2474 }
2475
3d7efd18
AE
2476 /*
2477 * Allocate a page array big enough to receive the data read
2478 * from the parent.
2479 */
2480 page_count = (u32)calc_pages_for(0, length);
2481 pages = ceph_alloc_page_vector(page_count, GFP_KERNEL);
2482 if (IS_ERR(pages)) {
2483 result = PTR_ERR(pages);
2484 pages = NULL;
2485 goto out_err;
2486 }
2487
2488 result = -ENOMEM;
e93f3152
AE
2489 parent_request = rbd_parent_request_create(obj_request,
2490 img_offset, length);
3d7efd18
AE
2491 if (!parent_request)
2492 goto out_err;
3d7efd18
AE
2493
2494 result = rbd_img_request_fill(parent_request, OBJ_REQUEST_PAGES, pages);
2495 if (result)
2496 goto out_err;
2497 parent_request->copyup_pages = pages;
ebda6408 2498 parent_request->copyup_page_count = page_count;
3d7efd18
AE
2499
2500 parent_request->callback = rbd_img_obj_parent_read_full_callback;
2501 result = rbd_img_request_submit(parent_request);
2502 if (!result)
2503 return 0;
2504
2505 parent_request->copyup_pages = NULL;
ebda6408 2506 parent_request->copyup_page_count = 0;
3d7efd18
AE
2507 parent_request->obj_request = NULL;
2508 rbd_obj_request_put(obj_request);
2509out_err:
2510 if (pages)
2511 ceph_release_page_vector(pages, page_count);
2512 if (parent_request)
2513 rbd_img_request_put(parent_request);
2514 obj_request->result = result;
2515 obj_request->xferred = 0;
2516 obj_request_done_set(obj_request);
2517
2518 return result;
2519}
2520
c5b5ef6c
AE
2521static void rbd_img_obj_exists_callback(struct rbd_obj_request *obj_request)
2522{
c5b5ef6c 2523 struct rbd_obj_request *orig_request;
638f5abe 2524 struct rbd_device *rbd_dev;
c5b5ef6c
AE
2525 int result;
2526
2527 rbd_assert(!obj_request_img_data_test(obj_request));
2528
2529 /*
2530 * All we need from the object request is the original
2531 * request and the result of the STAT op. Grab those, then
2532 * we're done with the request.
2533 */
2534 orig_request = obj_request->obj_request;
2535 obj_request->obj_request = NULL;
912c317d 2536 rbd_obj_request_put(orig_request);
c5b5ef6c
AE
2537 rbd_assert(orig_request);
2538 rbd_assert(orig_request->img_request);
2539
2540 result = obj_request->result;
2541 obj_request->result = 0;
2542
2543 dout("%s: obj %p for obj %p result %d %llu/%llu\n", __func__,
2544 obj_request, orig_request, result,
2545 obj_request->xferred, obj_request->length);
2546 rbd_obj_request_put(obj_request);
2547
638f5abe
AE
2548 /*
2549 * If the overlap has become 0 (most likely because the
2550 * image has been flattened) we need to free the pages
2551 * and re-submit the original write request.
2552 */
2553 rbd_dev = orig_request->img_request->rbd_dev;
2554 if (!rbd_dev->parent_overlap) {
2555 struct ceph_osd_client *osdc;
2556
638f5abe
AE
2557 osdc = &rbd_dev->rbd_client->client->osdc;
2558 result = rbd_obj_request_submit(osdc, orig_request);
2559 if (!result)
2560 return;
2561 }
c5b5ef6c
AE
2562
2563 /*
2564 * Our only purpose here is to determine whether the object
2565 * exists, and we don't want to treat the non-existence as
2566 * an error. If something else comes back, transfer the
2567 * error to the original request and complete it now.
2568 */
2569 if (!result) {
2570 obj_request_existence_set(orig_request, true);
2571 } else if (result == -ENOENT) {
2572 obj_request_existence_set(orig_request, false);
2573 } else if (result) {
2574 orig_request->result = result;
3d7efd18 2575 goto out;
c5b5ef6c
AE
2576 }
2577
2578 /*
2579 * Resubmit the original request now that we have recorded
2580 * whether the target object exists.
2581 */
b454e36d 2582 orig_request->result = rbd_img_obj_request_submit(orig_request);
3d7efd18 2583out:
c5b5ef6c
AE
2584 if (orig_request->result)
2585 rbd_obj_request_complete(orig_request);
c5b5ef6c
AE
2586}
2587
2588static int rbd_img_obj_exists_submit(struct rbd_obj_request *obj_request)
2589{
2590 struct rbd_obj_request *stat_request;
2591 struct rbd_device *rbd_dev;
2592 struct ceph_osd_client *osdc;
2593 struct page **pages = NULL;
2594 u32 page_count;
2595 size_t size;
2596 int ret;
2597
2598 /*
2599 * The response data for a STAT call consists of:
2600 * le64 length;
2601 * struct {
2602 * le32 tv_sec;
2603 * le32 tv_nsec;
2604 * } mtime;
2605 */
2606 size = sizeof (__le64) + sizeof (__le32) + sizeof (__le32);
2607 page_count = (u32)calc_pages_for(0, size);
2608 pages = ceph_alloc_page_vector(page_count, GFP_KERNEL);
2609 if (IS_ERR(pages))
2610 return PTR_ERR(pages);
2611
2612 ret = -ENOMEM;
2613 stat_request = rbd_obj_request_create(obj_request->object_name, 0, 0,
2614 OBJ_REQUEST_PAGES);
2615 if (!stat_request)
2616 goto out;
2617
2618 rbd_obj_request_get(obj_request);
2619 stat_request->obj_request = obj_request;
2620 stat_request->pages = pages;
2621 stat_request->page_count = page_count;
2622
2623 rbd_assert(obj_request->img_request);
2624 rbd_dev = obj_request->img_request->rbd_dev;
2625 stat_request->osd_req = rbd_osd_req_create(rbd_dev, false,
2626 stat_request);
2627 if (!stat_request->osd_req)
2628 goto out;
2629 stat_request->callback = rbd_img_obj_exists_callback;
2630
2631 osd_req_op_init(stat_request->osd_req, 0, CEPH_OSD_OP_STAT);
2632 osd_req_op_raw_data_in_pages(stat_request->osd_req, 0, pages, size, 0,
2633 false, false);
9d4df01f 2634 rbd_osd_req_format_read(stat_request);
c5b5ef6c
AE
2635
2636 osdc = &rbd_dev->rbd_client->client->osdc;
2637 ret = rbd_obj_request_submit(osdc, stat_request);
2638out:
2639 if (ret)
2640 rbd_obj_request_put(obj_request);
2641
2642 return ret;
2643}
2644
b454e36d
AE
2645static int rbd_img_obj_request_submit(struct rbd_obj_request *obj_request)
2646{
2647 struct rbd_img_request *img_request;
a9e8ba2c 2648 struct rbd_device *rbd_dev;
3d7efd18 2649 bool known;
b454e36d
AE
2650
2651 rbd_assert(obj_request_img_data_test(obj_request));
2652
2653 img_request = obj_request->img_request;
2654 rbd_assert(img_request);
a9e8ba2c 2655 rbd_dev = img_request->rbd_dev;
b454e36d 2656
b454e36d 2657 /*
a9e8ba2c
AE
2658 * Only writes to layered images need special handling.
2659 * Reads and non-layered writes are simple object requests.
2660 * Layered writes that start beyond the end of the overlap
2661 * with the parent have no parent data, so they too are
2662 * simple object requests. Finally, if the target object is
2663 * known to already exist, its parent data has already been
2664 * copied, so a write to the object can also be handled as a
2665 * simple object request.
b454e36d
AE
2666 */
2667 if (!img_request_write_test(img_request) ||
2668 !img_request_layered_test(img_request) ||
a9e8ba2c 2669 rbd_dev->parent_overlap <= obj_request->img_offset ||
3d7efd18
AE
2670 ((known = obj_request_known_test(obj_request)) &&
2671 obj_request_exists_test(obj_request))) {
b454e36d
AE
2672
2673 struct rbd_device *rbd_dev;
2674 struct ceph_osd_client *osdc;
2675
2676 rbd_dev = obj_request->img_request->rbd_dev;
2677 osdc = &rbd_dev->rbd_client->client->osdc;
2678
2679 return rbd_obj_request_submit(osdc, obj_request);
2680 }
2681
2682 /*
3d7efd18
AE
2683 * It's a layered write. The target object might exist but
2684 * we may not know that yet. If we know it doesn't exist,
2685 * start by reading the data for the full target object from
2686 * the parent so we can use it for a copyup to the target.
b454e36d 2687 */
3d7efd18
AE
2688 if (known)
2689 return rbd_img_obj_parent_read_full(obj_request);
2690
2691 /* We don't know whether the target exists. Go find out. */
b454e36d
AE
2692
2693 return rbd_img_obj_exists_submit(obj_request);
2694}
2695
bf0d5f50
AE
2696static int rbd_img_request_submit(struct rbd_img_request *img_request)
2697{
bf0d5f50 2698 struct rbd_obj_request *obj_request;
46faeed4 2699 struct rbd_obj_request *next_obj_request;
bf0d5f50 2700
37206ee5 2701 dout("%s: img %p\n", __func__, img_request);
46faeed4 2702 for_each_obj_request_safe(img_request, obj_request, next_obj_request) {
bf0d5f50
AE
2703 int ret;
2704
b454e36d 2705 ret = rbd_img_obj_request_submit(obj_request);
bf0d5f50
AE
2706 if (ret)
2707 return ret;
bf0d5f50
AE
2708 }
2709
2710 return 0;
2711}
8b3e1a56
AE
2712
2713static void rbd_img_parent_read_callback(struct rbd_img_request *img_request)
2714{
2715 struct rbd_obj_request *obj_request;
a9e8ba2c
AE
2716 struct rbd_device *rbd_dev;
2717 u64 obj_end;
02c74fba
AE
2718 u64 img_xferred;
2719 int img_result;
8b3e1a56
AE
2720
2721 rbd_assert(img_request_child_test(img_request));
2722
02c74fba
AE
2723 /* First get what we need from the image request and release it */
2724
8b3e1a56 2725 obj_request = img_request->obj_request;
02c74fba
AE
2726 img_xferred = img_request->xferred;
2727 img_result = img_request->result;
2728 rbd_img_request_put(img_request);
2729
2730 /*
2731 * If the overlap has become 0 (most likely because the
2732 * image has been flattened) we need to re-submit the
2733 * original request.
2734 */
a9e8ba2c
AE
2735 rbd_assert(obj_request);
2736 rbd_assert(obj_request->img_request);
02c74fba
AE
2737 rbd_dev = obj_request->img_request->rbd_dev;
2738 if (!rbd_dev->parent_overlap) {
2739 struct ceph_osd_client *osdc;
2740
2741 osdc = &rbd_dev->rbd_client->client->osdc;
2742 img_result = rbd_obj_request_submit(osdc, obj_request);
2743 if (!img_result)
2744 return;
2745 }
a9e8ba2c 2746
02c74fba 2747 obj_request->result = img_result;
a9e8ba2c
AE
2748 if (obj_request->result)
2749 goto out;
2750
2751 /*
2752 * We need to zero anything beyond the parent overlap
2753 * boundary. Since rbd_img_obj_request_read_callback()
2754 * will zero anything beyond the end of a short read, an
2755 * easy way to do this is to pretend the data from the
2756 * parent came up short--ending at the overlap boundary.
2757 */
2758 rbd_assert(obj_request->img_offset < U64_MAX - obj_request->length);
2759 obj_end = obj_request->img_offset + obj_request->length;
a9e8ba2c
AE
2760 if (obj_end > rbd_dev->parent_overlap) {
2761 u64 xferred = 0;
2762
2763 if (obj_request->img_offset < rbd_dev->parent_overlap)
2764 xferred = rbd_dev->parent_overlap -
2765 obj_request->img_offset;
8b3e1a56 2766
02c74fba 2767 obj_request->xferred = min(img_xferred, xferred);
a9e8ba2c 2768 } else {
02c74fba 2769 obj_request->xferred = img_xferred;
a9e8ba2c
AE
2770 }
2771out:
8b3e1a56
AE
2772 rbd_img_obj_request_read_callback(obj_request);
2773 rbd_obj_request_complete(obj_request);
2774}
2775
2776static void rbd_img_parent_read(struct rbd_obj_request *obj_request)
2777{
8b3e1a56
AE
2778 struct rbd_img_request *img_request;
2779 int result;
2780
2781 rbd_assert(obj_request_img_data_test(obj_request));
2782 rbd_assert(obj_request->img_request != NULL);
2783 rbd_assert(obj_request->result == (s32) -ENOENT);
5b2ab72d 2784 rbd_assert(obj_request_type_valid(obj_request->type));
8b3e1a56 2785
8b3e1a56 2786 /* rbd_read_finish(obj_request, obj_request->length); */
e93f3152 2787 img_request = rbd_parent_request_create(obj_request,
8b3e1a56 2788 obj_request->img_offset,
e93f3152 2789 obj_request->length);
8b3e1a56
AE
2790 result = -ENOMEM;
2791 if (!img_request)
2792 goto out_err;
2793
5b2ab72d
AE
2794 if (obj_request->type == OBJ_REQUEST_BIO)
2795 result = rbd_img_request_fill(img_request, OBJ_REQUEST_BIO,
2796 obj_request->bio_list);
2797 else
2798 result = rbd_img_request_fill(img_request, OBJ_REQUEST_PAGES,
2799 obj_request->pages);
8b3e1a56
AE
2800 if (result)
2801 goto out_err;
2802
2803 img_request->callback = rbd_img_parent_read_callback;
2804 result = rbd_img_request_submit(img_request);
2805 if (result)
2806 goto out_err;
2807
2808 return;
2809out_err:
2810 if (img_request)
2811 rbd_img_request_put(img_request);
2812 obj_request->result = result;
2813 obj_request->xferred = 0;
2814 obj_request_done_set(obj_request);
2815}
bf0d5f50 2816
20e0af67 2817static int rbd_obj_notify_ack_sync(struct rbd_device *rbd_dev, u64 notify_id)
b8d70035
AE
2818{
2819 struct rbd_obj_request *obj_request;
2169238d 2820 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
b8d70035
AE
2821 int ret;
2822
2823 obj_request = rbd_obj_request_create(rbd_dev->header_name, 0, 0,
2824 OBJ_REQUEST_NODATA);
2825 if (!obj_request)
2826 return -ENOMEM;
2827
2828 ret = -ENOMEM;
430c28c3 2829 obj_request->osd_req = rbd_osd_req_create(rbd_dev, false, obj_request);
b8d70035
AE
2830 if (!obj_request->osd_req)
2831 goto out;
2832
c99d2d4a 2833 osd_req_op_watch_init(obj_request->osd_req, 0, CEPH_OSD_OP_NOTIFY_ACK,
cc4a38bd 2834 notify_id, 0, 0);
9d4df01f 2835 rbd_osd_req_format_read(obj_request);
430c28c3 2836
b8d70035 2837 ret = rbd_obj_request_submit(osdc, obj_request);
cf81b60e 2838 if (ret)
20e0af67
JD
2839 goto out;
2840 ret = rbd_obj_request_wait(obj_request);
2841out:
2842 rbd_obj_request_put(obj_request);
b8d70035
AE
2843
2844 return ret;
2845}
2846
2847static void rbd_watch_cb(u64 ver, u64 notify_id, u8 opcode, void *data)
2848{
2849 struct rbd_device *rbd_dev = (struct rbd_device *)data;
e627db08 2850 int ret;
b8d70035
AE
2851
2852 if (!rbd_dev)
2853 return;
2854
37206ee5 2855 dout("%s: \"%s\" notify_id %llu opcode %u\n", __func__,
cc4a38bd
AE
2856 rbd_dev->header_name, (unsigned long long)notify_id,
2857 (unsigned int)opcode);
e627db08
AE
2858 ret = rbd_dev_refresh(rbd_dev);
2859 if (ret)
3b5cf2a2 2860 rbd_warn(rbd_dev, "header refresh error (%d)\n", ret);
b8d70035 2861
20e0af67 2862 rbd_obj_notify_ack_sync(rbd_dev, notify_id);
b8d70035
AE
2863}
2864
9969ebc5
AE
2865/*
2866 * Request sync osd watch/unwatch. The value of "start" determines
2867 * whether a watch request is being initiated or torn down.
2868 */
1f3ef788 2869static int rbd_dev_header_watch_sync(struct rbd_device *rbd_dev, bool start)
9969ebc5
AE
2870{
2871 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
2872 struct rbd_obj_request *obj_request;
9969ebc5
AE
2873 int ret;
2874
2875 rbd_assert(start ^ !!rbd_dev->watch_event);
2876 rbd_assert(start ^ !!rbd_dev->watch_request);
2877
2878 if (start) {
3c663bbd 2879 ret = ceph_osdc_create_event(osdc, rbd_watch_cb, rbd_dev,
9969ebc5
AE
2880 &rbd_dev->watch_event);
2881 if (ret < 0)
2882 return ret;
8eb87565 2883 rbd_assert(rbd_dev->watch_event != NULL);
9969ebc5
AE
2884 }
2885
2886 ret = -ENOMEM;
2887 obj_request = rbd_obj_request_create(rbd_dev->header_name, 0, 0,
2888 OBJ_REQUEST_NODATA);
2889 if (!obj_request)
2890 goto out_cancel;
2891
430c28c3
AE
2892 obj_request->osd_req = rbd_osd_req_create(rbd_dev, true, obj_request);
2893 if (!obj_request->osd_req)
2894 goto out_cancel;
2895
8eb87565 2896 if (start)
975241af 2897 ceph_osdc_set_request_linger(osdc, obj_request->osd_req);
8eb87565 2898 else
6977c3f9 2899 ceph_osdc_unregister_linger_request(osdc,
975241af 2900 rbd_dev->watch_request->osd_req);
2169238d
AE
2901
2902 osd_req_op_watch_init(obj_request->osd_req, 0, CEPH_OSD_OP_WATCH,
1f3ef788 2903 rbd_dev->watch_event->cookie, 0, start ? 1 : 0);
9d4df01f 2904 rbd_osd_req_format_write(obj_request);
2169238d 2905
9969ebc5
AE
2906 ret = rbd_obj_request_submit(osdc, obj_request);
2907 if (ret)
2908 goto out_cancel;
2909 ret = rbd_obj_request_wait(obj_request);
2910 if (ret)
2911 goto out_cancel;
9969ebc5
AE
2912 ret = obj_request->result;
2913 if (ret)
2914 goto out_cancel;
2915
8eb87565
AE
2916 /*
2917 * A watch request is set to linger, so the underlying osd
2918 * request won't go away until we unregister it. We retain
2919 * a pointer to the object request during that time (in
2920 * rbd_dev->watch_request), so we'll keep a reference to
2921 * it. We'll drop that reference (below) after we've
2922 * unregistered it.
2923 */
2924 if (start) {
2925 rbd_dev->watch_request = obj_request;
2926
2927 return 0;
2928 }
2929
2930 /* We have successfully torn down the watch request */
2931
2932 rbd_obj_request_put(rbd_dev->watch_request);
2933 rbd_dev->watch_request = NULL;
9969ebc5
AE
2934out_cancel:
2935 /* Cancel the event if we're tearing down, or on error */
2936 ceph_osdc_cancel_event(rbd_dev->watch_event);
2937 rbd_dev->watch_event = NULL;
9969ebc5
AE
2938 if (obj_request)
2939 rbd_obj_request_put(obj_request);
2940
2941 return ret;
2942}
2943
36be9a76 2944/*
f40eb349
AE
2945 * Synchronous osd object method call. Returns the number of bytes
2946 * returned in the outbound buffer, or a negative error code.
36be9a76
AE
2947 */
2948static int rbd_obj_method_sync(struct rbd_device *rbd_dev,
2949 const char *object_name,
2950 const char *class_name,
2951 const char *method_name,
4157976b 2952 const void *outbound,
36be9a76 2953 size_t outbound_size,
4157976b 2954 void *inbound,
e2a58ee5 2955 size_t inbound_size)
36be9a76 2956{
2169238d 2957 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
36be9a76 2958 struct rbd_obj_request *obj_request;
36be9a76
AE
2959 struct page **pages;
2960 u32 page_count;
2961 int ret;
2962
2963 /*
6010a451
AE
2964 * Method calls are ultimately read operations. The result
2965 * should placed into the inbound buffer provided. They
2966 * also supply outbound data--parameters for the object
2967 * method. Currently if this is present it will be a
2968 * snapshot id.
36be9a76 2969 */
57385b51 2970 page_count = (u32)calc_pages_for(0, inbound_size);
36be9a76
AE
2971 pages = ceph_alloc_page_vector(page_count, GFP_KERNEL);
2972 if (IS_ERR(pages))
2973 return PTR_ERR(pages);
2974
2975 ret = -ENOMEM;
6010a451 2976 obj_request = rbd_obj_request_create(object_name, 0, inbound_size,
36be9a76
AE
2977 OBJ_REQUEST_PAGES);
2978 if (!obj_request)
2979 goto out;
2980
2981 obj_request->pages = pages;
2982 obj_request->page_count = page_count;
2983
430c28c3 2984 obj_request->osd_req = rbd_osd_req_create(rbd_dev, false, obj_request);
36be9a76
AE
2985 if (!obj_request->osd_req)
2986 goto out;
2987
c99d2d4a 2988 osd_req_op_cls_init(obj_request->osd_req, 0, CEPH_OSD_OP_CALL,
04017e29
AE
2989 class_name, method_name);
2990 if (outbound_size) {
2991 struct ceph_pagelist *pagelist;
2992
2993 pagelist = kmalloc(sizeof (*pagelist), GFP_NOFS);
2994 if (!pagelist)
2995 goto out;
2996
2997 ceph_pagelist_init(pagelist);
2998 ceph_pagelist_append(pagelist, outbound, outbound_size);
2999 osd_req_op_cls_request_data_pagelist(obj_request->osd_req, 0,
3000 pagelist);
3001 }
a4ce40a9
AE
3002 osd_req_op_cls_response_data_pages(obj_request->osd_req, 0,
3003 obj_request->pages, inbound_size,
44cd188d 3004 0, false, false);
9d4df01f 3005 rbd_osd_req_format_read(obj_request);
430c28c3 3006
36be9a76
AE
3007 ret = rbd_obj_request_submit(osdc, obj_request);
3008 if (ret)
3009 goto out;
3010 ret = rbd_obj_request_wait(obj_request);
3011 if (ret)
3012 goto out;
3013
3014 ret = obj_request->result;
3015 if (ret < 0)
3016 goto out;
57385b51
AE
3017
3018 rbd_assert(obj_request->xferred < (u64)INT_MAX);
3019 ret = (int)obj_request->xferred;
903bb32e 3020 ceph_copy_from_page_vector(pages, inbound, 0, obj_request->xferred);
36be9a76
AE
3021out:
3022 if (obj_request)
3023 rbd_obj_request_put(obj_request);
3024 else
3025 ceph_release_page_vector(pages, page_count);
3026
3027 return ret;
3028}
3029
bf0d5f50 3030static void rbd_request_fn(struct request_queue *q)
cc344fa1 3031 __releases(q->queue_lock) __acquires(q->queue_lock)
bf0d5f50
AE
3032{
3033 struct rbd_device *rbd_dev = q->queuedata;
3034 bool read_only = rbd_dev->mapping.read_only;
3035 struct request *rq;
3036 int result;
3037
3038 while ((rq = blk_fetch_request(q))) {
3039 bool write_request = rq_data_dir(rq) == WRITE;
3040 struct rbd_img_request *img_request;
3041 u64 offset;
3042 u64 length;
3043
3044 /* Ignore any non-FS requests that filter through. */
3045
3046 if (rq->cmd_type != REQ_TYPE_FS) {
4dda41d3
AE
3047 dout("%s: non-fs request type %d\n", __func__,
3048 (int) rq->cmd_type);
3049 __blk_end_request_all(rq, 0);
3050 continue;
3051 }
3052
3053 /* Ignore/skip any zero-length requests */
3054
3055 offset = (u64) blk_rq_pos(rq) << SECTOR_SHIFT;
3056 length = (u64) blk_rq_bytes(rq);
3057
3058 if (!length) {
3059 dout("%s: zero-length request\n", __func__);
bf0d5f50
AE
3060 __blk_end_request_all(rq, 0);
3061 continue;
3062 }
3063
3064 spin_unlock_irq(q->queue_lock);
3065
3066 /* Disallow writes to a read-only device */
3067
3068 if (write_request) {
3069 result = -EROFS;
3070 if (read_only)
3071 goto end_request;
3072 rbd_assert(rbd_dev->spec->snap_id == CEPH_NOSNAP);
3073 }
3074
6d292906
AE
3075 /*
3076 * Quit early if the mapped snapshot no longer
3077 * exists. It's still possible the snapshot will
3078 * have disappeared by the time our request arrives
3079 * at the osd, but there's no sense in sending it if
3080 * we already know.
3081 */
3082 if (!test_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags)) {
bf0d5f50
AE
3083 dout("request for non-existent snapshot");
3084 rbd_assert(rbd_dev->spec->snap_id != CEPH_NOSNAP);
3085 result = -ENXIO;
3086 goto end_request;
3087 }
3088
bf0d5f50 3089 result = -EINVAL;
c0cd10db
AE
3090 if (offset && length > U64_MAX - offset + 1) {
3091 rbd_warn(rbd_dev, "bad request range (%llu~%llu)\n",
3092 offset, length);
bf0d5f50 3093 goto end_request; /* Shouldn't happen */
c0cd10db 3094 }
bf0d5f50 3095
00a653e2
AE
3096 result = -EIO;
3097 if (offset + length > rbd_dev->mapping.size) {
3098 rbd_warn(rbd_dev, "beyond EOD (%llu~%llu > %llu)\n",
3099 offset, length, rbd_dev->mapping.size);
3100 goto end_request;
3101 }
3102
bf0d5f50
AE
3103 result = -ENOMEM;
3104 img_request = rbd_img_request_create(rbd_dev, offset, length,
e93f3152 3105 write_request);
bf0d5f50
AE
3106 if (!img_request)
3107 goto end_request;
3108
3109 img_request->rq = rq;
3110
f1a4739f
AE
3111 result = rbd_img_request_fill(img_request, OBJ_REQUEST_BIO,
3112 rq->bio);
bf0d5f50
AE
3113 if (!result)
3114 result = rbd_img_request_submit(img_request);
3115 if (result)
3116 rbd_img_request_put(img_request);
3117end_request:
3118 spin_lock_irq(q->queue_lock);
3119 if (result < 0) {
7da22d29
AE
3120 rbd_warn(rbd_dev, "%s %llx at %llx result %d\n",
3121 write_request ? "write" : "read",
3122 length, offset, result);
3123
bf0d5f50
AE
3124 __blk_end_request_all(rq, result);
3125 }
3126 }
3127}
3128
602adf40
YS
3129/*
3130 * a queue callback. Makes sure that we don't create a bio that spans across
3131 * multiple osd objects. One exception would be with a single page bios,
f7760dad 3132 * which we handle later at bio_chain_clone_range()
602adf40
YS
3133 */
3134static int rbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bmd,
3135 struct bio_vec *bvec)
3136{
3137 struct rbd_device *rbd_dev = q->queuedata;
e5cfeed2
AE
3138 sector_t sector_offset;
3139 sector_t sectors_per_obj;
3140 sector_t obj_sector_offset;
3141 int ret;
3142
3143 /*
3144 * Find how far into its rbd object the partition-relative
3145 * bio start sector is to offset relative to the enclosing
3146 * device.
3147 */
3148 sector_offset = get_start_sect(bmd->bi_bdev) + bmd->bi_sector;
3149 sectors_per_obj = 1 << (rbd_dev->header.obj_order - SECTOR_SHIFT);
3150 obj_sector_offset = sector_offset & (sectors_per_obj - 1);
3151
3152 /*
3153 * Compute the number of bytes from that offset to the end
3154 * of the object. Account for what's already used by the bio.
3155 */
3156 ret = (int) (sectors_per_obj - obj_sector_offset) << SECTOR_SHIFT;
3157 if (ret > bmd->bi_size)
3158 ret -= bmd->bi_size;
3159 else
3160 ret = 0;
3161
3162 /*
3163 * Don't send back more than was asked for. And if the bio
3164 * was empty, let the whole thing through because: "Note
3165 * that a block device *must* allow a single page to be
3166 * added to an empty bio."
3167 */
3168 rbd_assert(bvec->bv_len <= PAGE_SIZE);
3169 if (ret > (int) bvec->bv_len || !bmd->bi_size)
3170 ret = (int) bvec->bv_len;
3171
3172 return ret;
602adf40
YS
3173}
3174
3175static void rbd_free_disk(struct rbd_device *rbd_dev)
3176{
3177 struct gendisk *disk = rbd_dev->disk;
3178
3179 if (!disk)
3180 return;
3181
a0cab924
AE
3182 rbd_dev->disk = NULL;
3183 if (disk->flags & GENHD_FL_UP) {
602adf40 3184 del_gendisk(disk);
a0cab924
AE
3185 if (disk->queue)
3186 blk_cleanup_queue(disk->queue);
3187 }
602adf40
YS
3188 put_disk(disk);
3189}
3190
788e2df3
AE
3191static int rbd_obj_read_sync(struct rbd_device *rbd_dev,
3192 const char *object_name,
7097f8df 3193 u64 offset, u64 length, void *buf)
788e2df3
AE
3194
3195{
2169238d 3196 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
788e2df3 3197 struct rbd_obj_request *obj_request;
788e2df3
AE
3198 struct page **pages = NULL;
3199 u32 page_count;
1ceae7ef 3200 size_t size;
788e2df3
AE
3201 int ret;
3202
3203 page_count = (u32) calc_pages_for(offset, length);
3204 pages = ceph_alloc_page_vector(page_count, GFP_KERNEL);
3205 if (IS_ERR(pages))
3206 ret = PTR_ERR(pages);
3207
3208 ret = -ENOMEM;
3209 obj_request = rbd_obj_request_create(object_name, offset, length,
36be9a76 3210 OBJ_REQUEST_PAGES);
788e2df3
AE
3211 if (!obj_request)
3212 goto out;
3213
3214 obj_request->pages = pages;
3215 obj_request->page_count = page_count;
3216
430c28c3 3217 obj_request->osd_req = rbd_osd_req_create(rbd_dev, false, obj_request);
788e2df3
AE
3218 if (!obj_request->osd_req)
3219 goto out;
3220
c99d2d4a
AE
3221 osd_req_op_extent_init(obj_request->osd_req, 0, CEPH_OSD_OP_READ,
3222 offset, length, 0, 0);
406e2c9f 3223 osd_req_op_extent_osd_data_pages(obj_request->osd_req, 0,
a4ce40a9 3224 obj_request->pages,
44cd188d
AE
3225 obj_request->length,
3226 obj_request->offset & ~PAGE_MASK,
3227 false, false);
9d4df01f 3228 rbd_osd_req_format_read(obj_request);
430c28c3 3229
788e2df3
AE
3230 ret = rbd_obj_request_submit(osdc, obj_request);
3231 if (ret)
3232 goto out;
3233 ret = rbd_obj_request_wait(obj_request);
3234 if (ret)
3235 goto out;
3236
3237 ret = obj_request->result;
3238 if (ret < 0)
3239 goto out;
1ceae7ef
AE
3240
3241 rbd_assert(obj_request->xferred <= (u64) SIZE_MAX);
3242 size = (size_t) obj_request->xferred;
903bb32e 3243 ceph_copy_from_page_vector(pages, buf, 0, size);
7097f8df
AE
3244 rbd_assert(size <= (size_t)INT_MAX);
3245 ret = (int)size;
788e2df3
AE
3246out:
3247 if (obj_request)
3248 rbd_obj_request_put(obj_request);
3249 else
3250 ceph_release_page_vector(pages, page_count);
3251
3252 return ret;
3253}
3254
602adf40 3255/*
662518b1
AE
3256 * Read the complete header for the given rbd device. On successful
3257 * return, the rbd_dev->header field will contain up-to-date
3258 * information about the image.
602adf40 3259 */
99a41ebc 3260static int rbd_dev_v1_header_info(struct rbd_device *rbd_dev)
602adf40 3261{
4156d998 3262 struct rbd_image_header_ondisk *ondisk = NULL;
50f7c4c9 3263 u32 snap_count = 0;
4156d998
AE
3264 u64 names_size = 0;
3265 u32 want_count;
3266 int ret;
602adf40 3267
00f1f36f 3268 /*
4156d998
AE
3269 * The complete header will include an array of its 64-bit
3270 * snapshot ids, followed by the names of those snapshots as
3271 * a contiguous block of NUL-terminated strings. Note that
3272 * the number of snapshots could change by the time we read
3273 * it in, in which case we re-read it.
00f1f36f 3274 */
4156d998
AE
3275 do {
3276 size_t size;
3277
3278 kfree(ondisk);
3279
3280 size = sizeof (*ondisk);
3281 size += snap_count * sizeof (struct rbd_image_snap_ondisk);
3282 size += names_size;
3283 ondisk = kmalloc(size, GFP_KERNEL);
3284 if (!ondisk)
662518b1 3285 return -ENOMEM;
4156d998 3286
788e2df3 3287 ret = rbd_obj_read_sync(rbd_dev, rbd_dev->header_name,
7097f8df 3288 0, size, ondisk);
4156d998 3289 if (ret < 0)
662518b1 3290 goto out;
c0cd10db 3291 if ((size_t)ret < size) {
4156d998 3292 ret = -ENXIO;
06ecc6cb
AE
3293 rbd_warn(rbd_dev, "short header read (want %zd got %d)",
3294 size, ret);
662518b1 3295 goto out;
4156d998
AE
3296 }
3297 if (!rbd_dev_ondisk_valid(ondisk)) {
3298 ret = -ENXIO;
06ecc6cb 3299 rbd_warn(rbd_dev, "invalid header");
662518b1 3300 goto out;
81e759fb 3301 }
602adf40 3302
4156d998
AE
3303 names_size = le64_to_cpu(ondisk->snap_names_len);
3304 want_count = snap_count;
3305 snap_count = le32_to_cpu(ondisk->snap_count);
3306 } while (snap_count != want_count);
00f1f36f 3307
662518b1
AE
3308 ret = rbd_header_from_disk(rbd_dev, ondisk);
3309out:
4156d998
AE
3310 kfree(ondisk);
3311
3312 return ret;
602adf40
YS
3313}
3314
15228ede
AE
3315/*
3316 * Clear the rbd device's EXISTS flag if the snapshot it's mapped to
3317 * has disappeared from the (just updated) snapshot context.
3318 */
3319static void rbd_exists_validate(struct rbd_device *rbd_dev)
3320{
3321 u64 snap_id;
3322
3323 if (!test_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags))
3324 return;
3325
3326 snap_id = rbd_dev->spec->snap_id;
3327 if (snap_id == CEPH_NOSNAP)
3328 return;
3329
3330 if (rbd_dev_snap_index(rbd_dev, snap_id) == BAD_SNAP_INDEX)
3331 clear_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags);
3332}
3333
9875201e
JD
3334static void rbd_dev_update_size(struct rbd_device *rbd_dev)
3335{
3336 sector_t size;
3337 bool removing;
3338
3339 /*
3340 * Don't hold the lock while doing disk operations,
3341 * or lock ordering will conflict with the bdev mutex via:
3342 * rbd_add() -> blkdev_get() -> rbd_open()
3343 */
3344 spin_lock_irq(&rbd_dev->lock);
3345 removing = test_bit(RBD_DEV_FLAG_REMOVING, &rbd_dev->flags);
3346 spin_unlock_irq(&rbd_dev->lock);
3347 /*
3348 * If the device is being removed, rbd_dev->disk has
3349 * been destroyed, so don't try to update its size
3350 */
3351 if (!removing) {
3352 size = (sector_t)rbd_dev->mapping.size / SECTOR_SIZE;
3353 dout("setting size to %llu sectors", (unsigned long long)size);
3354 set_capacity(rbd_dev->disk, size);
3355 revalidate_disk(rbd_dev->disk);
3356 }
3357}
3358
cc4a38bd 3359static int rbd_dev_refresh(struct rbd_device *rbd_dev)
1fe5e993 3360{
e627db08 3361 u64 mapping_size;
1fe5e993
AE
3362 int ret;
3363
117973fb 3364 rbd_assert(rbd_image_format_valid(rbd_dev->image_format));
cfbf6377 3365 down_write(&rbd_dev->header_rwsem);
3b5cf2a2 3366 mapping_size = rbd_dev->mapping.size;
117973fb 3367 if (rbd_dev->image_format == 1)
99a41ebc 3368 ret = rbd_dev_v1_header_info(rbd_dev);
117973fb 3369 else
2df3fac7 3370 ret = rbd_dev_v2_header_info(rbd_dev);
15228ede
AE
3371
3372 /* If it's a mapped snapshot, validate its EXISTS flag */
3373
3374 rbd_exists_validate(rbd_dev);
cfbf6377
AE
3375 up_write(&rbd_dev->header_rwsem);
3376
00a653e2 3377 if (mapping_size != rbd_dev->mapping.size) {
9875201e 3378 rbd_dev_update_size(rbd_dev);
00a653e2 3379 }
1fe5e993
AE
3380
3381 return ret;
3382}
3383
602adf40
YS
3384static int rbd_init_disk(struct rbd_device *rbd_dev)
3385{
3386 struct gendisk *disk;
3387 struct request_queue *q;
593a9e7b 3388 u64 segment_size;
602adf40 3389
602adf40 3390 /* create gendisk info */
602adf40
YS
3391 disk = alloc_disk(RBD_MINORS_PER_MAJOR);
3392 if (!disk)
1fcdb8aa 3393 return -ENOMEM;
602adf40 3394
f0f8cef5 3395 snprintf(disk->disk_name, sizeof(disk->disk_name), RBD_DRV_NAME "%d",
de71a297 3396 rbd_dev->dev_id);
602adf40
YS
3397 disk->major = rbd_dev->major;
3398 disk->first_minor = 0;
3399 disk->fops = &rbd_bd_ops;
3400 disk->private_data = rbd_dev;
3401
bf0d5f50 3402 q = blk_init_queue(rbd_request_fn, &rbd_dev->lock);
602adf40
YS
3403 if (!q)
3404 goto out_disk;
029bcbd8 3405
593a9e7b
AE
3406 /* We use the default size, but let's be explicit about it. */
3407 blk_queue_physical_block_size(q, SECTOR_SIZE);
3408
029bcbd8 3409 /* set io sizes to object size */
593a9e7b
AE
3410 segment_size = rbd_obj_bytes(&rbd_dev->header);
3411 blk_queue_max_hw_sectors(q, segment_size / SECTOR_SIZE);
3412 blk_queue_max_segment_size(q, segment_size);
3413 blk_queue_io_min(q, segment_size);
3414 blk_queue_io_opt(q, segment_size);
029bcbd8 3415
602adf40
YS
3416 blk_queue_merge_bvec(q, rbd_merge_bvec);
3417 disk->queue = q;
3418
3419 q->queuedata = rbd_dev;
3420
3421 rbd_dev->disk = disk;
602adf40 3422
602adf40 3423 return 0;
602adf40
YS
3424out_disk:
3425 put_disk(disk);
1fcdb8aa
AE
3426
3427 return -ENOMEM;
602adf40
YS
3428}
3429
dfc5606d
YS
3430/*
3431 sysfs
3432*/
3433
593a9e7b
AE
3434static struct rbd_device *dev_to_rbd_dev(struct device *dev)
3435{
3436 return container_of(dev, struct rbd_device, dev);
3437}
3438
dfc5606d
YS
3439static ssize_t rbd_size_show(struct device *dev,
3440 struct device_attribute *attr, char *buf)
3441{
593a9e7b 3442 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
a51aa0c0 3443
fc71d833
AE
3444 return sprintf(buf, "%llu\n",
3445 (unsigned long long)rbd_dev->mapping.size);
dfc5606d
YS
3446}
3447
34b13184
AE
3448/*
3449 * Note this shows the features for whatever's mapped, which is not
3450 * necessarily the base image.
3451 */
3452static ssize_t rbd_features_show(struct device *dev,
3453 struct device_attribute *attr, char *buf)
3454{
3455 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
3456
3457 return sprintf(buf, "0x%016llx\n",
fc71d833 3458 (unsigned long long)rbd_dev->mapping.features);
34b13184
AE
3459}
3460
dfc5606d
YS
3461static ssize_t rbd_major_show(struct device *dev,
3462 struct device_attribute *attr, char *buf)
3463{
593a9e7b 3464 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
602adf40 3465
fc71d833
AE
3466 if (rbd_dev->major)
3467 return sprintf(buf, "%d\n", rbd_dev->major);
3468
3469 return sprintf(buf, "(none)\n");
3470
dfc5606d
YS
3471}
3472
3473static ssize_t rbd_client_id_show(struct device *dev,
3474 struct device_attribute *attr, char *buf)
602adf40 3475{
593a9e7b 3476 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 3477
1dbb4399
AE
3478 return sprintf(buf, "client%lld\n",
3479 ceph_client_id(rbd_dev->rbd_client->client));
602adf40
YS
3480}
3481
dfc5606d
YS
3482static ssize_t rbd_pool_show(struct device *dev,
3483 struct device_attribute *attr, char *buf)
602adf40 3484{
593a9e7b 3485 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 3486
0d7dbfce 3487 return sprintf(buf, "%s\n", rbd_dev->spec->pool_name);
dfc5606d
YS
3488}
3489
9bb2f334
AE
3490static ssize_t rbd_pool_id_show(struct device *dev,
3491 struct device_attribute *attr, char *buf)
3492{
3493 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
3494
0d7dbfce 3495 return sprintf(buf, "%llu\n",
fc71d833 3496 (unsigned long long) rbd_dev->spec->pool_id);
9bb2f334
AE
3497}
3498
dfc5606d
YS
3499static ssize_t rbd_name_show(struct device *dev,
3500 struct device_attribute *attr, char *buf)
3501{
593a9e7b 3502 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 3503
a92ffdf8
AE
3504 if (rbd_dev->spec->image_name)
3505 return sprintf(buf, "%s\n", rbd_dev->spec->image_name);
3506
3507 return sprintf(buf, "(unknown)\n");
dfc5606d
YS
3508}
3509
589d30e0
AE
3510static ssize_t rbd_image_id_show(struct device *dev,
3511 struct device_attribute *attr, char *buf)
3512{
3513 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
3514
0d7dbfce 3515 return sprintf(buf, "%s\n", rbd_dev->spec->image_id);
589d30e0
AE
3516}
3517
34b13184
AE
3518/*
3519 * Shows the name of the currently-mapped snapshot (or
3520 * RBD_SNAP_HEAD_NAME for the base image).
3521 */
dfc5606d
YS
3522static ssize_t rbd_snap_show(struct device *dev,
3523 struct device_attribute *attr,
3524 char *buf)
3525{
593a9e7b 3526 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
dfc5606d 3527
0d7dbfce 3528 return sprintf(buf, "%s\n", rbd_dev->spec->snap_name);
dfc5606d
YS
3529}
3530
86b00e0d
AE
3531/*
3532 * For an rbd v2 image, shows the pool id, image id, and snapshot id
3533 * for the parent image. If there is no parent, simply shows
3534 * "(no parent image)".
3535 */
3536static ssize_t rbd_parent_show(struct device *dev,
3537 struct device_attribute *attr,
3538 char *buf)
3539{
3540 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
3541 struct rbd_spec *spec = rbd_dev->parent_spec;
3542 int count;
3543 char *bufp = buf;
3544
3545 if (!spec)
3546 return sprintf(buf, "(no parent image)\n");
3547
3548 count = sprintf(bufp, "pool_id %llu\npool_name %s\n",
3549 (unsigned long long) spec->pool_id, spec->pool_name);
3550 if (count < 0)
3551 return count;
3552 bufp += count;
3553
3554 count = sprintf(bufp, "image_id %s\nimage_name %s\n", spec->image_id,
3555 spec->image_name ? spec->image_name : "(unknown)");
3556 if (count < 0)
3557 return count;
3558 bufp += count;
3559
3560 count = sprintf(bufp, "snap_id %llu\nsnap_name %s\n",
3561 (unsigned long long) spec->snap_id, spec->snap_name);
3562 if (count < 0)
3563 return count;
3564 bufp += count;
3565
3566 count = sprintf(bufp, "overlap %llu\n", rbd_dev->parent_overlap);
3567 if (count < 0)
3568 return count;
3569 bufp += count;
3570
3571 return (ssize_t) (bufp - buf);
3572}
3573
dfc5606d
YS
3574static ssize_t rbd_image_refresh(struct device *dev,
3575 struct device_attribute *attr,
3576 const char *buf,
3577 size_t size)
3578{
593a9e7b 3579 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
b813623a 3580 int ret;
602adf40 3581
cc4a38bd 3582 ret = rbd_dev_refresh(rbd_dev);
e627db08
AE
3583 if (ret)
3584 rbd_warn(rbd_dev, ": manual header refresh error (%d)\n", ret);
b813623a
AE
3585
3586 return ret < 0 ? ret : size;
dfc5606d 3587}
602adf40 3588
dfc5606d 3589static DEVICE_ATTR(size, S_IRUGO, rbd_size_show, NULL);
34b13184 3590static DEVICE_ATTR(features, S_IRUGO, rbd_features_show, NULL);
dfc5606d
YS
3591static DEVICE_ATTR(major, S_IRUGO, rbd_major_show, NULL);
3592static DEVICE_ATTR(client_id, S_IRUGO, rbd_client_id_show, NULL);
3593static DEVICE_ATTR(pool, S_IRUGO, rbd_pool_show, NULL);
9bb2f334 3594static DEVICE_ATTR(pool_id, S_IRUGO, rbd_pool_id_show, NULL);
dfc5606d 3595static DEVICE_ATTR(name, S_IRUGO, rbd_name_show, NULL);
589d30e0 3596static DEVICE_ATTR(image_id, S_IRUGO, rbd_image_id_show, NULL);
dfc5606d
YS
3597static DEVICE_ATTR(refresh, S_IWUSR, NULL, rbd_image_refresh);
3598static DEVICE_ATTR(current_snap, S_IRUGO, rbd_snap_show, NULL);
86b00e0d 3599static DEVICE_ATTR(parent, S_IRUGO, rbd_parent_show, NULL);
dfc5606d
YS
3600
3601static struct attribute *rbd_attrs[] = {
3602 &dev_attr_size.attr,
34b13184 3603 &dev_attr_features.attr,
dfc5606d
YS
3604 &dev_attr_major.attr,
3605 &dev_attr_client_id.attr,
3606 &dev_attr_pool.attr,
9bb2f334 3607 &dev_attr_pool_id.attr,
dfc5606d 3608 &dev_attr_name.attr,
589d30e0 3609 &dev_attr_image_id.attr,
dfc5606d 3610 &dev_attr_current_snap.attr,
86b00e0d 3611 &dev_attr_parent.attr,
dfc5606d 3612 &dev_attr_refresh.attr,
dfc5606d
YS
3613 NULL
3614};
3615
3616static struct attribute_group rbd_attr_group = {
3617 .attrs = rbd_attrs,
3618};
3619
3620static const struct attribute_group *rbd_attr_groups[] = {
3621 &rbd_attr_group,
3622 NULL
3623};
3624
3625static void rbd_sysfs_dev_release(struct device *dev)
3626{
3627}
3628
3629static struct device_type rbd_device_type = {
3630 .name = "rbd",
3631 .groups = rbd_attr_groups,
3632 .release = rbd_sysfs_dev_release,
3633};
3634
8b8fb99c
AE
3635static struct rbd_spec *rbd_spec_get(struct rbd_spec *spec)
3636{
3637 kref_get(&spec->kref);
3638
3639 return spec;
3640}
3641
3642static void rbd_spec_free(struct kref *kref);
3643static void rbd_spec_put(struct rbd_spec *spec)
3644{
3645 if (spec)
3646 kref_put(&spec->kref, rbd_spec_free);
3647}
3648
3649static struct rbd_spec *rbd_spec_alloc(void)
3650{
3651 struct rbd_spec *spec;
3652
3653 spec = kzalloc(sizeof (*spec), GFP_KERNEL);
3654 if (!spec)
3655 return NULL;
3656 kref_init(&spec->kref);
3657
8b8fb99c
AE
3658 return spec;
3659}
3660
3661static void rbd_spec_free(struct kref *kref)
3662{
3663 struct rbd_spec *spec = container_of(kref, struct rbd_spec, kref);
3664
3665 kfree(spec->pool_name);
3666 kfree(spec->image_id);
3667 kfree(spec->image_name);
3668 kfree(spec->snap_name);
3669 kfree(spec);
3670}
3671
cc344fa1 3672static struct rbd_device *rbd_dev_create(struct rbd_client *rbdc,
c53d5893
AE
3673 struct rbd_spec *spec)
3674{
3675 struct rbd_device *rbd_dev;
3676
3677 rbd_dev = kzalloc(sizeof (*rbd_dev), GFP_KERNEL);
3678 if (!rbd_dev)
3679 return NULL;
3680
3681 spin_lock_init(&rbd_dev->lock);
6d292906 3682 rbd_dev->flags = 0;
a2acd00e 3683 atomic_set(&rbd_dev->parent_ref, 0);
c53d5893 3684 INIT_LIST_HEAD(&rbd_dev->node);
c53d5893
AE
3685 init_rwsem(&rbd_dev->header_rwsem);
3686
3687 rbd_dev->spec = spec;
3688 rbd_dev->rbd_client = rbdc;
3689
0903e875
AE
3690 /* Initialize the layout used for all rbd requests */
3691
3692 rbd_dev->layout.fl_stripe_unit = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
3693 rbd_dev->layout.fl_stripe_count = cpu_to_le32(1);
3694 rbd_dev->layout.fl_object_size = cpu_to_le32(1 << RBD_MAX_OBJ_ORDER);
3695 rbd_dev->layout.fl_pg_pool = cpu_to_le32((u32) spec->pool_id);
3696
c53d5893
AE
3697 return rbd_dev;
3698}
3699
3700static void rbd_dev_destroy(struct rbd_device *rbd_dev)
3701{
c53d5893
AE
3702 rbd_put_client(rbd_dev->rbd_client);
3703 rbd_spec_put(rbd_dev->spec);
3704 kfree(rbd_dev);
3705}
3706
9d475de5
AE
3707/*
3708 * Get the size and object order for an image snapshot, or if
3709 * snap_id is CEPH_NOSNAP, gets this information for the base
3710 * image.
3711 */
3712static int _rbd_dev_v2_snap_size(struct rbd_device *rbd_dev, u64 snap_id,
3713 u8 *order, u64 *snap_size)
3714{
3715 __le64 snapid = cpu_to_le64(snap_id);
3716 int ret;
3717 struct {
3718 u8 order;
3719 __le64 size;
3720 } __attribute__ ((packed)) size_buf = { 0 };
3721
36be9a76 3722 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
9d475de5 3723 "rbd", "get_size",
4157976b 3724 &snapid, sizeof (snapid),
e2a58ee5 3725 &size_buf, sizeof (size_buf));
36be9a76 3726 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
9d475de5
AE
3727 if (ret < 0)
3728 return ret;
57385b51
AE
3729 if (ret < sizeof (size_buf))
3730 return -ERANGE;
9d475de5 3731
c3545579 3732 if (order) {
c86f86e9 3733 *order = size_buf.order;
c3545579
JD
3734 dout(" order %u", (unsigned int)*order);
3735 }
9d475de5
AE
3736 *snap_size = le64_to_cpu(size_buf.size);
3737
c3545579
JD
3738 dout(" snap_id 0x%016llx snap_size = %llu\n",
3739 (unsigned long long)snap_id,
57385b51 3740 (unsigned long long)*snap_size);
9d475de5
AE
3741
3742 return 0;
3743}
3744
3745static int rbd_dev_v2_image_size(struct rbd_device *rbd_dev)
3746{
3747 return _rbd_dev_v2_snap_size(rbd_dev, CEPH_NOSNAP,
3748 &rbd_dev->header.obj_order,
3749 &rbd_dev->header.image_size);
3750}
3751
1e130199
AE
3752static int rbd_dev_v2_object_prefix(struct rbd_device *rbd_dev)
3753{
3754 void *reply_buf;
3755 int ret;
3756 void *p;
3757
3758 reply_buf = kzalloc(RBD_OBJ_PREFIX_LEN_MAX, GFP_KERNEL);
3759 if (!reply_buf)
3760 return -ENOMEM;
3761
36be9a76 3762 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
4157976b 3763 "rbd", "get_object_prefix", NULL, 0,
e2a58ee5 3764 reply_buf, RBD_OBJ_PREFIX_LEN_MAX);
36be9a76 3765 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
1e130199
AE
3766 if (ret < 0)
3767 goto out;
3768
3769 p = reply_buf;
3770 rbd_dev->header.object_prefix = ceph_extract_encoded_string(&p,
57385b51
AE
3771 p + ret, NULL, GFP_NOIO);
3772 ret = 0;
1e130199
AE
3773
3774 if (IS_ERR(rbd_dev->header.object_prefix)) {
3775 ret = PTR_ERR(rbd_dev->header.object_prefix);
3776 rbd_dev->header.object_prefix = NULL;
3777 } else {
3778 dout(" object_prefix = %s\n", rbd_dev->header.object_prefix);
3779 }
1e130199
AE
3780out:
3781 kfree(reply_buf);
3782
3783 return ret;
3784}
3785
b1b5402a
AE
3786static int _rbd_dev_v2_snap_features(struct rbd_device *rbd_dev, u64 snap_id,
3787 u64 *snap_features)
3788{
3789 __le64 snapid = cpu_to_le64(snap_id);
3790 struct {
3791 __le64 features;
3792 __le64 incompat;
4157976b 3793 } __attribute__ ((packed)) features_buf = { 0 };
d889140c 3794 u64 incompat;
b1b5402a
AE
3795 int ret;
3796
36be9a76 3797 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
b1b5402a 3798 "rbd", "get_features",
4157976b 3799 &snapid, sizeof (snapid),
e2a58ee5 3800 &features_buf, sizeof (features_buf));
36be9a76 3801 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
b1b5402a
AE
3802 if (ret < 0)
3803 return ret;
57385b51
AE
3804 if (ret < sizeof (features_buf))
3805 return -ERANGE;
d889140c
AE
3806
3807 incompat = le64_to_cpu(features_buf.incompat);
5cbf6f12 3808 if (incompat & ~RBD_FEATURES_SUPPORTED)
b8f5c6ed 3809 return -ENXIO;
d889140c 3810
b1b5402a
AE
3811 *snap_features = le64_to_cpu(features_buf.features);
3812
3813 dout(" snap_id 0x%016llx features = 0x%016llx incompat = 0x%016llx\n",
57385b51
AE
3814 (unsigned long long)snap_id,
3815 (unsigned long long)*snap_features,
3816 (unsigned long long)le64_to_cpu(features_buf.incompat));
b1b5402a
AE
3817
3818 return 0;
3819}
3820
3821static int rbd_dev_v2_features(struct rbd_device *rbd_dev)
3822{
3823 return _rbd_dev_v2_snap_features(rbd_dev, CEPH_NOSNAP,
3824 &rbd_dev->header.features);
3825}
3826
86b00e0d
AE
3827static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev)
3828{
3829 struct rbd_spec *parent_spec;
3830 size_t size;
3831 void *reply_buf = NULL;
3832 __le64 snapid;
3833 void *p;
3834 void *end;
642a2537 3835 u64 pool_id;
86b00e0d 3836 char *image_id;
3b5cf2a2 3837 u64 snap_id;
86b00e0d 3838 u64 overlap;
86b00e0d
AE
3839 int ret;
3840
3841 parent_spec = rbd_spec_alloc();
3842 if (!parent_spec)
3843 return -ENOMEM;
3844
3845 size = sizeof (__le64) + /* pool_id */
3846 sizeof (__le32) + RBD_IMAGE_ID_LEN_MAX + /* image_id */
3847 sizeof (__le64) + /* snap_id */
3848 sizeof (__le64); /* overlap */
3849 reply_buf = kmalloc(size, GFP_KERNEL);
3850 if (!reply_buf) {
3851 ret = -ENOMEM;
3852 goto out_err;
3853 }
3854
3855 snapid = cpu_to_le64(CEPH_NOSNAP);
36be9a76 3856 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
86b00e0d 3857 "rbd", "get_parent",
4157976b 3858 &snapid, sizeof (snapid),
e2a58ee5 3859 reply_buf, size);
36be9a76 3860 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
86b00e0d
AE
3861 if (ret < 0)
3862 goto out_err;
3863
86b00e0d 3864 p = reply_buf;
57385b51
AE
3865 end = reply_buf + ret;
3866 ret = -ERANGE;
642a2537 3867 ceph_decode_64_safe(&p, end, pool_id, out_err);
392a9dad
AE
3868 if (pool_id == CEPH_NOPOOL) {
3869 /*
3870 * Either the parent never existed, or we have
3871 * record of it but the image got flattened so it no
3872 * longer has a parent. When the parent of a
3873 * layered image disappears we immediately set the
3874 * overlap to 0. The effect of this is that all new
3875 * requests will be treated as if the image had no
3876 * parent.
3877 */
3878 if (rbd_dev->parent_overlap) {
3879 rbd_dev->parent_overlap = 0;
3880 smp_mb();
3881 rbd_dev_parent_put(rbd_dev);
3882 pr_info("%s: clone image has been flattened\n",
3883 rbd_dev->disk->disk_name);
3884 }
3885
86b00e0d 3886 goto out; /* No parent? No problem. */
392a9dad 3887 }
86b00e0d 3888
0903e875
AE
3889 /* The ceph file layout needs to fit pool id in 32 bits */
3890
3891 ret = -EIO;
642a2537 3892 if (pool_id > (u64)U32_MAX) {
c0cd10db 3893 rbd_warn(NULL, "parent pool id too large (%llu > %u)\n",
642a2537 3894 (unsigned long long)pool_id, U32_MAX);
57385b51 3895 goto out_err;
c0cd10db 3896 }
0903e875 3897
979ed480 3898 image_id = ceph_extract_encoded_string(&p, end, NULL, GFP_KERNEL);
86b00e0d
AE
3899 if (IS_ERR(image_id)) {
3900 ret = PTR_ERR(image_id);
3901 goto out_err;
3902 }
3b5cf2a2 3903 ceph_decode_64_safe(&p, end, snap_id, out_err);
86b00e0d
AE
3904 ceph_decode_64_safe(&p, end, overlap, out_err);
3905
3b5cf2a2
AE
3906 /*
3907 * The parent won't change (except when the clone is
3908 * flattened, already handled that). So we only need to
3909 * record the parent spec we have not already done so.
3910 */
3911 if (!rbd_dev->parent_spec) {
3912 parent_spec->pool_id = pool_id;
3913 parent_spec->image_id = image_id;
3914 parent_spec->snap_id = snap_id;
70cf49cf
AE
3915 rbd_dev->parent_spec = parent_spec;
3916 parent_spec = NULL; /* rbd_dev now owns this */
3b5cf2a2
AE
3917 }
3918
3919 /*
3920 * We always update the parent overlap. If it's zero we
3921 * treat it specially.
3922 */
3923 rbd_dev->parent_overlap = overlap;
3924 smp_mb();
3925 if (!overlap) {
3926
3927 /* A null parent_spec indicates it's the initial probe */
3928
3929 if (parent_spec) {
3930 /*
3931 * The overlap has become zero, so the clone
3932 * must have been resized down to 0 at some
3933 * point. Treat this the same as a flatten.
3934 */
3935 rbd_dev_parent_put(rbd_dev);
3936 pr_info("%s: clone image now standalone\n",
3937 rbd_dev->disk->disk_name);
3938 } else {
3939 /*
3940 * For the initial probe, if we find the
3941 * overlap is zero we just pretend there was
3942 * no parent image.
3943 */
3944 rbd_warn(rbd_dev, "ignoring parent of "
3945 "clone with overlap 0\n");
3946 }
70cf49cf 3947 }
86b00e0d
AE
3948out:
3949 ret = 0;
3950out_err:
3951 kfree(reply_buf);
3952 rbd_spec_put(parent_spec);
3953
3954 return ret;
3955}
3956
cc070d59
AE
3957static int rbd_dev_v2_striping_info(struct rbd_device *rbd_dev)
3958{
3959 struct {
3960 __le64 stripe_unit;
3961 __le64 stripe_count;
3962 } __attribute__ ((packed)) striping_info_buf = { 0 };
3963 size_t size = sizeof (striping_info_buf);
3964 void *p;
3965 u64 obj_size;
3966 u64 stripe_unit;
3967 u64 stripe_count;
3968 int ret;
3969
3970 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
3971 "rbd", "get_stripe_unit_count", NULL, 0,
e2a58ee5 3972 (char *)&striping_info_buf, size);
cc070d59
AE
3973 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
3974 if (ret < 0)
3975 return ret;
3976 if (ret < size)
3977 return -ERANGE;
3978
3979 /*
3980 * We don't actually support the "fancy striping" feature
3981 * (STRIPINGV2) yet, but if the striping sizes are the
3982 * defaults the behavior is the same as before. So find
3983 * out, and only fail if the image has non-default values.
3984 */
3985 ret = -EINVAL;
3986 obj_size = (u64)1 << rbd_dev->header.obj_order;
3987 p = &striping_info_buf;
3988 stripe_unit = ceph_decode_64(&p);
3989 if (stripe_unit != obj_size) {
3990 rbd_warn(rbd_dev, "unsupported stripe unit "
3991 "(got %llu want %llu)",
3992 stripe_unit, obj_size);
3993 return -EINVAL;
3994 }
3995 stripe_count = ceph_decode_64(&p);
3996 if (stripe_count != 1) {
3997 rbd_warn(rbd_dev, "unsupported stripe count "
3998 "(got %llu want 1)", stripe_count);
3999 return -EINVAL;
4000 }
500d0c0f
AE
4001 rbd_dev->header.stripe_unit = stripe_unit;
4002 rbd_dev->header.stripe_count = stripe_count;
cc070d59
AE
4003
4004 return 0;
4005}
4006
9e15b77d
AE
4007static char *rbd_dev_image_name(struct rbd_device *rbd_dev)
4008{
4009 size_t image_id_size;
4010 char *image_id;
4011 void *p;
4012 void *end;
4013 size_t size;
4014 void *reply_buf = NULL;
4015 size_t len = 0;
4016 char *image_name = NULL;
4017 int ret;
4018
4019 rbd_assert(!rbd_dev->spec->image_name);
4020
69e7a02f
AE
4021 len = strlen(rbd_dev->spec->image_id);
4022 image_id_size = sizeof (__le32) + len;
9e15b77d
AE
4023 image_id = kmalloc(image_id_size, GFP_KERNEL);
4024 if (!image_id)
4025 return NULL;
4026
4027 p = image_id;
4157976b 4028 end = image_id + image_id_size;
57385b51 4029 ceph_encode_string(&p, end, rbd_dev->spec->image_id, (u32)len);
9e15b77d
AE
4030
4031 size = sizeof (__le32) + RBD_IMAGE_NAME_LEN_MAX;
4032 reply_buf = kmalloc(size, GFP_KERNEL);
4033 if (!reply_buf)
4034 goto out;
4035
36be9a76 4036 ret = rbd_obj_method_sync(rbd_dev, RBD_DIRECTORY,
9e15b77d
AE
4037 "rbd", "dir_get_name",
4038 image_id, image_id_size,
e2a58ee5 4039 reply_buf, size);
9e15b77d
AE
4040 if (ret < 0)
4041 goto out;
4042 p = reply_buf;
f40eb349
AE
4043 end = reply_buf + ret;
4044
9e15b77d
AE
4045 image_name = ceph_extract_encoded_string(&p, end, &len, GFP_KERNEL);
4046 if (IS_ERR(image_name))
4047 image_name = NULL;
4048 else
4049 dout("%s: name is %s len is %zd\n", __func__, image_name, len);
4050out:
4051 kfree(reply_buf);
4052 kfree(image_id);
4053
4054 return image_name;
4055}
4056
2ad3d716
AE
4057static u64 rbd_v1_snap_id_by_name(struct rbd_device *rbd_dev, const char *name)
4058{
4059 struct ceph_snap_context *snapc = rbd_dev->header.snapc;
4060 const char *snap_name;
4061 u32 which = 0;
4062
4063 /* Skip over names until we find the one we are looking for */
4064
4065 snap_name = rbd_dev->header.snap_names;
4066 while (which < snapc->num_snaps) {
4067 if (!strcmp(name, snap_name))
4068 return snapc->snaps[which];
4069 snap_name += strlen(snap_name) + 1;
4070 which++;
4071 }
4072 return CEPH_NOSNAP;
4073}
4074
4075static u64 rbd_v2_snap_id_by_name(struct rbd_device *rbd_dev, const char *name)
4076{
4077 struct ceph_snap_context *snapc = rbd_dev->header.snapc;
4078 u32 which;
4079 bool found = false;
4080 u64 snap_id;
4081
4082 for (which = 0; !found && which < snapc->num_snaps; which++) {
4083 const char *snap_name;
4084
4085 snap_id = snapc->snaps[which];
4086 snap_name = rbd_dev_v2_snap_name(rbd_dev, snap_id);
efadc98a
JD
4087 if (IS_ERR(snap_name)) {
4088 /* ignore no-longer existing snapshots */
4089 if (PTR_ERR(snap_name) == -ENOENT)
4090 continue;
4091 else
4092 break;
4093 }
2ad3d716
AE
4094 found = !strcmp(name, snap_name);
4095 kfree(snap_name);
4096 }
4097 return found ? snap_id : CEPH_NOSNAP;
4098}
4099
4100/*
4101 * Assumes name is never RBD_SNAP_HEAD_NAME; returns CEPH_NOSNAP if
4102 * no snapshot by that name is found, or if an error occurs.
4103 */
4104static u64 rbd_snap_id_by_name(struct rbd_device *rbd_dev, const char *name)
4105{
4106 if (rbd_dev->image_format == 1)
4107 return rbd_v1_snap_id_by_name(rbd_dev, name);
4108
4109 return rbd_v2_snap_id_by_name(rbd_dev, name);
4110}
4111
9e15b77d 4112/*
2e9f7f1c
AE
4113 * When an rbd image has a parent image, it is identified by the
4114 * pool, image, and snapshot ids (not names). This function fills
4115 * in the names for those ids. (It's OK if we can't figure out the
4116 * name for an image id, but the pool and snapshot ids should always
4117 * exist and have names.) All names in an rbd spec are dynamically
4118 * allocated.
e1d4213f
AE
4119 *
4120 * When an image being mapped (not a parent) is probed, we have the
4121 * pool name and pool id, image name and image id, and the snapshot
4122 * name. The only thing we're missing is the snapshot id.
9e15b77d 4123 */
2e9f7f1c 4124static int rbd_dev_spec_update(struct rbd_device *rbd_dev)
9e15b77d 4125{
2e9f7f1c
AE
4126 struct ceph_osd_client *osdc = &rbd_dev->rbd_client->client->osdc;
4127 struct rbd_spec *spec = rbd_dev->spec;
4128 const char *pool_name;
4129 const char *image_name;
4130 const char *snap_name;
9e15b77d
AE
4131 int ret;
4132
e1d4213f
AE
4133 /*
4134 * An image being mapped will have the pool name (etc.), but
4135 * we need to look up the snapshot id.
4136 */
2e9f7f1c
AE
4137 if (spec->pool_name) {
4138 if (strcmp(spec->snap_name, RBD_SNAP_HEAD_NAME)) {
2ad3d716 4139 u64 snap_id;
e1d4213f 4140
2ad3d716
AE
4141 snap_id = rbd_snap_id_by_name(rbd_dev, spec->snap_name);
4142 if (snap_id == CEPH_NOSNAP)
e1d4213f 4143 return -ENOENT;
2ad3d716 4144 spec->snap_id = snap_id;
e1d4213f 4145 } else {
2e9f7f1c 4146 spec->snap_id = CEPH_NOSNAP;
e1d4213f
AE
4147 }
4148
4149 return 0;
4150 }
9e15b77d 4151
2e9f7f1c 4152 /* Get the pool name; we have to make our own copy of this */
9e15b77d 4153
2e9f7f1c
AE
4154 pool_name = ceph_pg_pool_name_by_id(osdc->osdmap, spec->pool_id);
4155 if (!pool_name) {
4156 rbd_warn(rbd_dev, "no pool with id %llu", spec->pool_id);
935dc89f
AE
4157 return -EIO;
4158 }
2e9f7f1c
AE
4159 pool_name = kstrdup(pool_name, GFP_KERNEL);
4160 if (!pool_name)
9e15b77d
AE
4161 return -ENOMEM;
4162
4163 /* Fetch the image name; tolerate failure here */
4164
2e9f7f1c
AE
4165 image_name = rbd_dev_image_name(rbd_dev);
4166 if (!image_name)
06ecc6cb 4167 rbd_warn(rbd_dev, "unable to get image name");
9e15b77d 4168
2e9f7f1c 4169 /* Look up the snapshot name, and make a copy */
9e15b77d 4170
2e9f7f1c 4171 snap_name = rbd_snap_name(rbd_dev, spec->snap_id);
da6a6b63
JD
4172 if (IS_ERR(snap_name)) {
4173 ret = PTR_ERR(snap_name);
9e15b77d 4174 goto out_err;
2e9f7f1c
AE
4175 }
4176
4177 spec->pool_name = pool_name;
4178 spec->image_name = image_name;
4179 spec->snap_name = snap_name;
9e15b77d
AE
4180
4181 return 0;
4182out_err:
2e9f7f1c
AE
4183 kfree(image_name);
4184 kfree(pool_name);
9e15b77d
AE
4185
4186 return ret;
4187}
4188
cc4a38bd 4189static int rbd_dev_v2_snap_context(struct rbd_device *rbd_dev)
35d489f9
AE
4190{
4191 size_t size;
4192 int ret;
4193 void *reply_buf;
4194 void *p;
4195 void *end;
4196 u64 seq;
4197 u32 snap_count;
4198 struct ceph_snap_context *snapc;
4199 u32 i;
4200
4201 /*
4202 * We'll need room for the seq value (maximum snapshot id),
4203 * snapshot count, and array of that many snapshot ids.
4204 * For now we have a fixed upper limit on the number we're
4205 * prepared to receive.
4206 */
4207 size = sizeof (__le64) + sizeof (__le32) +
4208 RBD_MAX_SNAP_COUNT * sizeof (__le64);
4209 reply_buf = kzalloc(size, GFP_KERNEL);
4210 if (!reply_buf)
4211 return -ENOMEM;
4212
36be9a76 4213 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
4157976b 4214 "rbd", "get_snapcontext", NULL, 0,
e2a58ee5 4215 reply_buf, size);
36be9a76 4216 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
35d489f9
AE
4217 if (ret < 0)
4218 goto out;
4219
35d489f9 4220 p = reply_buf;
57385b51
AE
4221 end = reply_buf + ret;
4222 ret = -ERANGE;
35d489f9
AE
4223 ceph_decode_64_safe(&p, end, seq, out);
4224 ceph_decode_32_safe(&p, end, snap_count, out);
4225
4226 /*
4227 * Make sure the reported number of snapshot ids wouldn't go
4228 * beyond the end of our buffer. But before checking that,
4229 * make sure the computed size of the snapshot context we
4230 * allocate is representable in a size_t.
4231 */
4232 if (snap_count > (SIZE_MAX - sizeof (struct ceph_snap_context))
4233 / sizeof (u64)) {
4234 ret = -EINVAL;
4235 goto out;
4236 }
4237 if (!ceph_has_room(&p, end, snap_count * sizeof (__le64)))
4238 goto out;
468521c1 4239 ret = 0;
35d489f9 4240
812164f8 4241 snapc = ceph_create_snap_context(snap_count, GFP_KERNEL);
35d489f9
AE
4242 if (!snapc) {
4243 ret = -ENOMEM;
4244 goto out;
4245 }
35d489f9 4246 snapc->seq = seq;
35d489f9
AE
4247 for (i = 0; i < snap_count; i++)
4248 snapc->snaps[i] = ceph_decode_64(&p);
4249
49ece554 4250 ceph_put_snap_context(rbd_dev->header.snapc);
35d489f9
AE
4251 rbd_dev->header.snapc = snapc;
4252
4253 dout(" snap context seq = %llu, snap_count = %u\n",
57385b51 4254 (unsigned long long)seq, (unsigned int)snap_count);
35d489f9
AE
4255out:
4256 kfree(reply_buf);
4257
57385b51 4258 return ret;
35d489f9
AE
4259}
4260
54cac61f
AE
4261static const char *rbd_dev_v2_snap_name(struct rbd_device *rbd_dev,
4262 u64 snap_id)
b8b1e2db
AE
4263{
4264 size_t size;
4265 void *reply_buf;
54cac61f 4266 __le64 snapid;
b8b1e2db
AE
4267 int ret;
4268 void *p;
4269 void *end;
b8b1e2db
AE
4270 char *snap_name;
4271
4272 size = sizeof (__le32) + RBD_MAX_SNAP_NAME_LEN;
4273 reply_buf = kmalloc(size, GFP_KERNEL);
4274 if (!reply_buf)
4275 return ERR_PTR(-ENOMEM);
4276
54cac61f 4277 snapid = cpu_to_le64(snap_id);
36be9a76 4278 ret = rbd_obj_method_sync(rbd_dev, rbd_dev->header_name,
b8b1e2db 4279 "rbd", "get_snapshot_name",
54cac61f 4280 &snapid, sizeof (snapid),
e2a58ee5 4281 reply_buf, size);
36be9a76 4282 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
f40eb349
AE
4283 if (ret < 0) {
4284 snap_name = ERR_PTR(ret);
b8b1e2db 4285 goto out;
f40eb349 4286 }
b8b1e2db
AE
4287
4288 p = reply_buf;
f40eb349 4289 end = reply_buf + ret;
e5c35534 4290 snap_name = ceph_extract_encoded_string(&p, end, NULL, GFP_KERNEL);
f40eb349 4291 if (IS_ERR(snap_name))
b8b1e2db 4292 goto out;
b8b1e2db 4293
f40eb349 4294 dout(" snap_id 0x%016llx snap_name = %s\n",
54cac61f 4295 (unsigned long long)snap_id, snap_name);
b8b1e2db
AE
4296out:
4297 kfree(reply_buf);
4298
f40eb349 4299 return snap_name;
b8b1e2db
AE
4300}
4301
2df3fac7 4302static int rbd_dev_v2_header_info(struct rbd_device *rbd_dev)
117973fb 4303{
2df3fac7 4304 bool first_time = rbd_dev->header.object_prefix == NULL;
117973fb 4305 int ret;
117973fb 4306
1617e40c
JD
4307 ret = rbd_dev_v2_image_size(rbd_dev);
4308 if (ret)
cfbf6377 4309 return ret;
1617e40c 4310
2df3fac7
AE
4311 if (first_time) {
4312 ret = rbd_dev_v2_header_onetime(rbd_dev);
4313 if (ret)
cfbf6377 4314 return ret;
2df3fac7
AE
4315 }
4316
642a2537
AE
4317 /*
4318 * If the image supports layering, get the parent info. We
4319 * need to probe the first time regardless. Thereafter we
4320 * only need to if there's a parent, to see if it has
4321 * disappeared due to the mapped image getting flattened.
4322 */
4323 if (rbd_dev->header.features & RBD_FEATURE_LAYERING &&
4324 (first_time || rbd_dev->parent_spec)) {
4325 bool warn;
4326
4327 ret = rbd_dev_v2_parent_info(rbd_dev);
4328 if (ret)
cfbf6377 4329 return ret;
642a2537
AE
4330
4331 /*
4332 * Print a warning if this is the initial probe and
4333 * the image has a parent. Don't print it if the
4334 * image now being probed is itself a parent. We
4335 * can tell at this point because we won't know its
4336 * pool name yet (just its pool id).
4337 */
4338 warn = rbd_dev->parent_spec && rbd_dev->spec->pool_name;
4339 if (first_time && warn)
4340 rbd_warn(rbd_dev, "WARNING: kernel layering "
4341 "is EXPERIMENTAL!");
4342 }
4343
29334ba4
AE
4344 if (rbd_dev->spec->snap_id == CEPH_NOSNAP)
4345 if (rbd_dev->mapping.size != rbd_dev->header.image_size)
4346 rbd_dev->mapping.size = rbd_dev->header.image_size;
117973fb 4347
cc4a38bd 4348 ret = rbd_dev_v2_snap_context(rbd_dev);
117973fb 4349 dout("rbd_dev_v2_snap_context returned %d\n", ret);
117973fb
AE
4350
4351 return ret;
4352}
4353
dfc5606d
YS
4354static int rbd_bus_add_dev(struct rbd_device *rbd_dev)
4355{
dfc5606d 4356 struct device *dev;
cd789ab9 4357 int ret;
dfc5606d 4358
cd789ab9 4359 dev = &rbd_dev->dev;
dfc5606d
YS
4360 dev->bus = &rbd_bus_type;
4361 dev->type = &rbd_device_type;
4362 dev->parent = &rbd_root_dev;
200a6a8b 4363 dev->release = rbd_dev_device_release;
de71a297 4364 dev_set_name(dev, "%d", rbd_dev->dev_id);
dfc5606d 4365 ret = device_register(dev);
dfc5606d 4366
dfc5606d 4367 return ret;
602adf40
YS
4368}
4369
dfc5606d
YS
4370static void rbd_bus_del_dev(struct rbd_device *rbd_dev)
4371{
4372 device_unregister(&rbd_dev->dev);
4373}
4374
e2839308 4375static atomic64_t rbd_dev_id_max = ATOMIC64_INIT(0);
1ddbe94e
AE
4376
4377/*
499afd5b
AE
4378 * Get a unique rbd identifier for the given new rbd_dev, and add
4379 * the rbd_dev to the global list. The minimum rbd id is 1.
1ddbe94e 4380 */
e2839308 4381static void rbd_dev_id_get(struct rbd_device *rbd_dev)
b7f23c36 4382{
e2839308 4383 rbd_dev->dev_id = atomic64_inc_return(&rbd_dev_id_max);
499afd5b
AE
4384
4385 spin_lock(&rbd_dev_list_lock);
4386 list_add_tail(&rbd_dev->node, &rbd_dev_list);
4387 spin_unlock(&rbd_dev_list_lock);
e2839308
AE
4388 dout("rbd_dev %p given dev id %llu\n", rbd_dev,
4389 (unsigned long long) rbd_dev->dev_id);
1ddbe94e 4390}
b7f23c36 4391
1ddbe94e 4392/*
499afd5b
AE
4393 * Remove an rbd_dev from the global list, and record that its
4394 * identifier is no longer in use.
1ddbe94e 4395 */
e2839308 4396static void rbd_dev_id_put(struct rbd_device *rbd_dev)
1ddbe94e 4397{
d184f6bf 4398 struct list_head *tmp;
de71a297 4399 int rbd_id = rbd_dev->dev_id;
d184f6bf
AE
4400 int max_id;
4401
aafb230e 4402 rbd_assert(rbd_id > 0);
499afd5b 4403
e2839308
AE
4404 dout("rbd_dev %p released dev id %llu\n", rbd_dev,
4405 (unsigned long long) rbd_dev->dev_id);
499afd5b
AE
4406 spin_lock(&rbd_dev_list_lock);
4407 list_del_init(&rbd_dev->node);
d184f6bf
AE
4408
4409 /*
4410 * If the id being "put" is not the current maximum, there
4411 * is nothing special we need to do.
4412 */
e2839308 4413 if (rbd_id != atomic64_read(&rbd_dev_id_max)) {
d184f6bf
AE
4414 spin_unlock(&rbd_dev_list_lock);
4415 return;
4416 }
4417
4418 /*
4419 * We need to update the current maximum id. Search the
4420 * list to find out what it is. We're more likely to find
4421 * the maximum at the end, so search the list backward.
4422 */
4423 max_id = 0;
4424 list_for_each_prev(tmp, &rbd_dev_list) {
4425 struct rbd_device *rbd_dev;
4426
4427 rbd_dev = list_entry(tmp, struct rbd_device, node);
b213e0b1
AE
4428 if (rbd_dev->dev_id > max_id)
4429 max_id = rbd_dev->dev_id;
d184f6bf 4430 }
499afd5b 4431 spin_unlock(&rbd_dev_list_lock);
b7f23c36 4432
1ddbe94e 4433 /*
e2839308 4434 * The max id could have been updated by rbd_dev_id_get(), in
d184f6bf
AE
4435 * which case it now accurately reflects the new maximum.
4436 * Be careful not to overwrite the maximum value in that
4437 * case.
1ddbe94e 4438 */
e2839308
AE
4439 atomic64_cmpxchg(&rbd_dev_id_max, rbd_id, max_id);
4440 dout(" max dev id has been reset\n");
b7f23c36
AE
4441}
4442
e28fff26
AE
4443/*
4444 * Skips over white space at *buf, and updates *buf to point to the
4445 * first found non-space character (if any). Returns the length of
593a9e7b
AE
4446 * the token (string of non-white space characters) found. Note
4447 * that *buf must be terminated with '\0'.
e28fff26
AE
4448 */
4449static inline size_t next_token(const char **buf)
4450{
4451 /*
4452 * These are the characters that produce nonzero for
4453 * isspace() in the "C" and "POSIX" locales.
4454 */
4455 const char *spaces = " \f\n\r\t\v";
4456
4457 *buf += strspn(*buf, spaces); /* Find start of token */
4458
4459 return strcspn(*buf, spaces); /* Return token length */
4460}
4461
4462/*
4463 * Finds the next token in *buf, and if the provided token buffer is
4464 * big enough, copies the found token into it. The result, if
593a9e7b
AE
4465 * copied, is guaranteed to be terminated with '\0'. Note that *buf
4466 * must be terminated with '\0' on entry.
e28fff26
AE
4467 *
4468 * Returns the length of the token found (not including the '\0').
4469 * Return value will be 0 if no token is found, and it will be >=
4470 * token_size if the token would not fit.
4471 *
593a9e7b 4472 * The *buf pointer will be updated to point beyond the end of the
e28fff26
AE
4473 * found token. Note that this occurs even if the token buffer is
4474 * too small to hold it.
4475 */
4476static inline size_t copy_token(const char **buf,
4477 char *token,
4478 size_t token_size)
4479{
4480 size_t len;
4481
4482 len = next_token(buf);
4483 if (len < token_size) {
4484 memcpy(token, *buf, len);
4485 *(token + len) = '\0';
4486 }
4487 *buf += len;
4488
4489 return len;
4490}
4491
ea3352f4
AE
4492/*
4493 * Finds the next token in *buf, dynamically allocates a buffer big
4494 * enough to hold a copy of it, and copies the token into the new
4495 * buffer. The copy is guaranteed to be terminated with '\0'. Note
4496 * that a duplicate buffer is created even for a zero-length token.
4497 *
4498 * Returns a pointer to the newly-allocated duplicate, or a null
4499 * pointer if memory for the duplicate was not available. If
4500 * the lenp argument is a non-null pointer, the length of the token
4501 * (not including the '\0') is returned in *lenp.
4502 *
4503 * If successful, the *buf pointer will be updated to point beyond
4504 * the end of the found token.
4505 *
4506 * Note: uses GFP_KERNEL for allocation.
4507 */
4508static inline char *dup_token(const char **buf, size_t *lenp)
4509{
4510 char *dup;
4511 size_t len;
4512
4513 len = next_token(buf);
4caf35f9 4514 dup = kmemdup(*buf, len + 1, GFP_KERNEL);
ea3352f4
AE
4515 if (!dup)
4516 return NULL;
ea3352f4
AE
4517 *(dup + len) = '\0';
4518 *buf += len;
4519
4520 if (lenp)
4521 *lenp = len;
4522
4523 return dup;
4524}
4525
a725f65e 4526/*
859c31df
AE
4527 * Parse the options provided for an "rbd add" (i.e., rbd image
4528 * mapping) request. These arrive via a write to /sys/bus/rbd/add,
4529 * and the data written is passed here via a NUL-terminated buffer.
4530 * Returns 0 if successful or an error code otherwise.
d22f76e7 4531 *
859c31df
AE
4532 * The information extracted from these options is recorded in
4533 * the other parameters which return dynamically-allocated
4534 * structures:
4535 * ceph_opts
4536 * The address of a pointer that will refer to a ceph options
4537 * structure. Caller must release the returned pointer using
4538 * ceph_destroy_options() when it is no longer needed.
4539 * rbd_opts
4540 * Address of an rbd options pointer. Fully initialized by
4541 * this function; caller must release with kfree().
4542 * spec
4543 * Address of an rbd image specification pointer. Fully
4544 * initialized by this function based on parsed options.
4545 * Caller must release with rbd_spec_put().
4546 *
4547 * The options passed take this form:
4548 * <mon_addrs> <options> <pool_name> <image_name> [<snap_id>]
4549 * where:
4550 * <mon_addrs>
4551 * A comma-separated list of one or more monitor addresses.
4552 * A monitor address is an ip address, optionally followed
4553 * by a port number (separated by a colon).
4554 * I.e.: ip1[:port1][,ip2[:port2]...]
4555 * <options>
4556 * A comma-separated list of ceph and/or rbd options.
4557 * <pool_name>
4558 * The name of the rados pool containing the rbd image.
4559 * <image_name>
4560 * The name of the image in that pool to map.
4561 * <snap_id>
4562 * An optional snapshot id. If provided, the mapping will
4563 * present data from the image at the time that snapshot was
4564 * created. The image head is used if no snapshot id is
4565 * provided. Snapshot mappings are always read-only.
a725f65e 4566 */
859c31df 4567static int rbd_add_parse_args(const char *buf,
dc79b113 4568 struct ceph_options **ceph_opts,
859c31df
AE
4569 struct rbd_options **opts,
4570 struct rbd_spec **rbd_spec)
e28fff26 4571{
d22f76e7 4572 size_t len;
859c31df 4573 char *options;
0ddebc0c 4574 const char *mon_addrs;
ecb4dc22 4575 char *snap_name;
0ddebc0c 4576 size_t mon_addrs_size;
859c31df 4577 struct rbd_spec *spec = NULL;
4e9afeba 4578 struct rbd_options *rbd_opts = NULL;
859c31df 4579 struct ceph_options *copts;
dc79b113 4580 int ret;
e28fff26
AE
4581
4582 /* The first four tokens are required */
4583
7ef3214a 4584 len = next_token(&buf);
4fb5d671
AE
4585 if (!len) {
4586 rbd_warn(NULL, "no monitor address(es) provided");
4587 return -EINVAL;
4588 }
0ddebc0c 4589 mon_addrs = buf;
f28e565a 4590 mon_addrs_size = len + 1;
7ef3214a 4591 buf += len;
a725f65e 4592
dc79b113 4593 ret = -EINVAL;
f28e565a
AE
4594 options = dup_token(&buf, NULL);
4595 if (!options)
dc79b113 4596 return -ENOMEM;
4fb5d671
AE
4597 if (!*options) {
4598 rbd_warn(NULL, "no options provided");
4599 goto out_err;
4600 }
e28fff26 4601
859c31df
AE
4602 spec = rbd_spec_alloc();
4603 if (!spec)
f28e565a 4604 goto out_mem;
859c31df
AE
4605
4606 spec->pool_name = dup_token(&buf, NULL);
4607 if (!spec->pool_name)
4608 goto out_mem;
4fb5d671
AE
4609 if (!*spec->pool_name) {
4610 rbd_warn(NULL, "no pool name provided");
4611 goto out_err;
4612 }
e28fff26 4613
69e7a02f 4614 spec->image_name = dup_token(&buf, NULL);
859c31df 4615 if (!spec->image_name)
f28e565a 4616 goto out_mem;
4fb5d671
AE
4617 if (!*spec->image_name) {
4618 rbd_warn(NULL, "no image name provided");
4619 goto out_err;
4620 }
d4b125e9 4621
f28e565a
AE
4622 /*
4623 * Snapshot name is optional; default is to use "-"
4624 * (indicating the head/no snapshot).
4625 */
3feeb894 4626 len = next_token(&buf);
820a5f3e 4627 if (!len) {
3feeb894
AE
4628 buf = RBD_SNAP_HEAD_NAME; /* No snapshot supplied */
4629 len = sizeof (RBD_SNAP_HEAD_NAME) - 1;
f28e565a 4630 } else if (len > RBD_MAX_SNAP_NAME_LEN) {
dc79b113 4631 ret = -ENAMETOOLONG;
f28e565a 4632 goto out_err;
849b4260 4633 }
ecb4dc22
AE
4634 snap_name = kmemdup(buf, len + 1, GFP_KERNEL);
4635 if (!snap_name)
f28e565a 4636 goto out_mem;
ecb4dc22
AE
4637 *(snap_name + len) = '\0';
4638 spec->snap_name = snap_name;
e5c35534 4639
0ddebc0c 4640 /* Initialize all rbd options to the defaults */
e28fff26 4641
4e9afeba
AE
4642 rbd_opts = kzalloc(sizeof (*rbd_opts), GFP_KERNEL);
4643 if (!rbd_opts)
4644 goto out_mem;
4645
4646 rbd_opts->read_only = RBD_READ_ONLY_DEFAULT;
d22f76e7 4647
859c31df 4648 copts = ceph_parse_options(options, mon_addrs,
0ddebc0c 4649 mon_addrs + mon_addrs_size - 1,
4e9afeba 4650 parse_rbd_opts_token, rbd_opts);
859c31df
AE
4651 if (IS_ERR(copts)) {
4652 ret = PTR_ERR(copts);
dc79b113
AE
4653 goto out_err;
4654 }
859c31df
AE
4655 kfree(options);
4656
4657 *ceph_opts = copts;
4e9afeba 4658 *opts = rbd_opts;
859c31df 4659 *rbd_spec = spec;
0ddebc0c 4660
dc79b113 4661 return 0;
f28e565a 4662out_mem:
dc79b113 4663 ret = -ENOMEM;
d22f76e7 4664out_err:
859c31df
AE
4665 kfree(rbd_opts);
4666 rbd_spec_put(spec);
f28e565a 4667 kfree(options);
d22f76e7 4668
dc79b113 4669 return ret;
a725f65e
AE
4670}
4671
589d30e0
AE
4672/*
4673 * An rbd format 2 image has a unique identifier, distinct from the
4674 * name given to it by the user. Internally, that identifier is
4675 * what's used to specify the names of objects related to the image.
4676 *
4677 * A special "rbd id" object is used to map an rbd image name to its
4678 * id. If that object doesn't exist, then there is no v2 rbd image
4679 * with the supplied name.
4680 *
4681 * This function will record the given rbd_dev's image_id field if
4682 * it can be determined, and in that case will return 0. If any
4683 * errors occur a negative errno will be returned and the rbd_dev's
4684 * image_id field will be unchanged (and should be NULL).
4685 */
4686static int rbd_dev_image_id(struct rbd_device *rbd_dev)
4687{
4688 int ret;
4689 size_t size;
4690 char *object_name;
4691 void *response;
c0fba368 4692 char *image_id;
2f82ee54 4693
2c0d0a10
AE
4694 /*
4695 * When probing a parent image, the image id is already
4696 * known (and the image name likely is not). There's no
c0fba368
AE
4697 * need to fetch the image id again in this case. We
4698 * do still need to set the image format though.
2c0d0a10 4699 */
c0fba368
AE
4700 if (rbd_dev->spec->image_id) {
4701 rbd_dev->image_format = *rbd_dev->spec->image_id ? 2 : 1;
4702
2c0d0a10 4703 return 0;
c0fba368 4704 }
2c0d0a10 4705
589d30e0
AE
4706 /*
4707 * First, see if the format 2 image id file exists, and if
4708 * so, get the image's persistent id from it.
4709 */
69e7a02f 4710 size = sizeof (RBD_ID_PREFIX) + strlen(rbd_dev->spec->image_name);
589d30e0
AE
4711 object_name = kmalloc(size, GFP_NOIO);
4712 if (!object_name)
4713 return -ENOMEM;
0d7dbfce 4714 sprintf(object_name, "%s%s", RBD_ID_PREFIX, rbd_dev->spec->image_name);
589d30e0
AE
4715 dout("rbd id object name is %s\n", object_name);
4716
4717 /* Response will be an encoded string, which includes a length */
4718
4719 size = sizeof (__le32) + RBD_IMAGE_ID_LEN_MAX;
4720 response = kzalloc(size, GFP_NOIO);
4721 if (!response) {
4722 ret = -ENOMEM;
4723 goto out;
4724 }
4725
c0fba368
AE
4726 /* If it doesn't exist we'll assume it's a format 1 image */
4727
36be9a76 4728 ret = rbd_obj_method_sync(rbd_dev, object_name,
4157976b 4729 "rbd", "get_id", NULL, 0,
e2a58ee5 4730 response, RBD_IMAGE_ID_LEN_MAX);
36be9a76 4731 dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret);
c0fba368
AE
4732 if (ret == -ENOENT) {
4733 image_id = kstrdup("", GFP_KERNEL);
4734 ret = image_id ? 0 : -ENOMEM;
4735 if (!ret)
4736 rbd_dev->image_format = 1;
4737 } else if (ret > sizeof (__le32)) {
4738 void *p = response;
4739
4740 image_id = ceph_extract_encoded_string(&p, p + ret,
979ed480 4741 NULL, GFP_NOIO);
c0fba368
AE
4742 ret = IS_ERR(image_id) ? PTR_ERR(image_id) : 0;
4743 if (!ret)
4744 rbd_dev->image_format = 2;
589d30e0 4745 } else {
c0fba368
AE
4746 ret = -EINVAL;
4747 }
4748
4749 if (!ret) {
4750 rbd_dev->spec->image_id = image_id;
4751 dout("image_id is %s\n", image_id);
589d30e0
AE
4752 }
4753out:
4754 kfree(response);
4755 kfree(object_name);
4756
4757 return ret;
4758}
4759
3abef3b3
AE
4760/*
4761 * Undo whatever state changes are made by v1 or v2 header info
4762 * call.
4763 */
6fd48b3b
AE
4764static void rbd_dev_unprobe(struct rbd_device *rbd_dev)
4765{
4766 struct rbd_image_header *header;
4767
392a9dad
AE
4768 /* Drop parent reference unless it's already been done (or none) */
4769
4770 if (rbd_dev->parent_overlap)
4771 rbd_dev_parent_put(rbd_dev);
6fd48b3b
AE
4772
4773 /* Free dynamic fields from the header, then zero it out */
4774
4775 header = &rbd_dev->header;
812164f8 4776 ceph_put_snap_context(header->snapc);
6fd48b3b
AE
4777 kfree(header->snap_sizes);
4778 kfree(header->snap_names);
4779 kfree(header->object_prefix);
4780 memset(header, 0, sizeof (*header));
4781}
4782
2df3fac7 4783static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev)
a30b71b9
AE
4784{
4785 int ret;
a30b71b9 4786
1e130199 4787 ret = rbd_dev_v2_object_prefix(rbd_dev);
57385b51 4788 if (ret)
b1b5402a
AE
4789 goto out_err;
4790
2df3fac7
AE
4791 /*
4792 * Get the and check features for the image. Currently the
4793 * features are assumed to never change.
4794 */
b1b5402a 4795 ret = rbd_dev_v2_features(rbd_dev);
57385b51 4796 if (ret)
9d475de5 4797 goto out_err;
35d489f9 4798
cc070d59
AE
4799 /* If the image supports fancy striping, get its parameters */
4800
4801 if (rbd_dev->header.features & RBD_FEATURE_STRIPINGV2) {
4802 ret = rbd_dev_v2_striping_info(rbd_dev);
4803 if (ret < 0)
4804 goto out_err;
4805 }
2df3fac7 4806 /* No support for crypto and compression type format 2 images */
a30b71b9 4807
35152979 4808 return 0;
9d475de5 4809out_err:
642a2537 4810 rbd_dev->header.features = 0;
1e130199
AE
4811 kfree(rbd_dev->header.object_prefix);
4812 rbd_dev->header.object_prefix = NULL;
9d475de5
AE
4813
4814 return ret;
a30b71b9
AE
4815}
4816
124afba2 4817static int rbd_dev_probe_parent(struct rbd_device *rbd_dev)
83a06263 4818{
2f82ee54 4819 struct rbd_device *parent = NULL;
124afba2
AE
4820 struct rbd_spec *parent_spec;
4821 struct rbd_client *rbdc;
4822 int ret;
4823
4824 if (!rbd_dev->parent_spec)
4825 return 0;
4826 /*
4827 * We need to pass a reference to the client and the parent
4828 * spec when creating the parent rbd_dev. Images related by
4829 * parent/child relationships always share both.
4830 */
4831 parent_spec = rbd_spec_get(rbd_dev->parent_spec);
4832 rbdc = __rbd_get_client(rbd_dev->rbd_client);
4833
4834 ret = -ENOMEM;
4835 parent = rbd_dev_create(rbdc, parent_spec);
4836 if (!parent)
4837 goto out_err;
4838
1f3ef788 4839 ret = rbd_dev_image_probe(parent, false);
124afba2
AE
4840 if (ret < 0)
4841 goto out_err;
4842 rbd_dev->parent = parent;
a2acd00e 4843 atomic_set(&rbd_dev->parent_ref, 1);
124afba2
AE
4844
4845 return 0;
4846out_err:
4847 if (parent) {
fb65d228 4848 rbd_dev_unparent(rbd_dev);
124afba2
AE
4849 kfree(rbd_dev->header_name);
4850 rbd_dev_destroy(parent);
4851 } else {
4852 rbd_put_client(rbdc);
4853 rbd_spec_put(parent_spec);
4854 }
4855
4856 return ret;
4857}
4858
200a6a8b 4859static int rbd_dev_device_setup(struct rbd_device *rbd_dev)
124afba2 4860{
83a06263 4861 int ret;
d1cf5788 4862
83a06263
AE
4863 /* generate unique id: find highest unique id, add one */
4864 rbd_dev_id_get(rbd_dev);
4865
4866 /* Fill in the device name, now that we have its id. */
4867 BUILD_BUG_ON(DEV_NAME_LEN
4868 < sizeof (RBD_DRV_NAME) + MAX_INT_FORMAT_WIDTH);
4869 sprintf(rbd_dev->name, "%s%d", RBD_DRV_NAME, rbd_dev->dev_id);
4870
4871 /* Get our block major device number. */
4872
4873 ret = register_blkdev(0, rbd_dev->name);
4874 if (ret < 0)
4875 goto err_out_id;
4876 rbd_dev->major = ret;
4877
4878 /* Set up the blkdev mapping. */
4879
4880 ret = rbd_init_disk(rbd_dev);
4881 if (ret)
4882 goto err_out_blkdev;
4883
f35a4dee 4884 ret = rbd_dev_mapping_set(rbd_dev);
83a06263
AE
4885 if (ret)
4886 goto err_out_disk;
f35a4dee
AE
4887 set_capacity(rbd_dev->disk, rbd_dev->mapping.size / SECTOR_SIZE);
4888
4889 ret = rbd_bus_add_dev(rbd_dev);
4890 if (ret)
4891 goto err_out_mapping;
83a06263 4892
83a06263
AE
4893 /* Everything's ready. Announce the disk to the world. */
4894
129b79d4 4895 set_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags);
83a06263
AE
4896 add_disk(rbd_dev->disk);
4897
4898 pr_info("%s: added with size 0x%llx\n", rbd_dev->disk->disk_name,
4899 (unsigned long long) rbd_dev->mapping.size);
4900
4901 return ret;
2f82ee54 4902
f35a4dee
AE
4903err_out_mapping:
4904 rbd_dev_mapping_clear(rbd_dev);
83a06263
AE
4905err_out_disk:
4906 rbd_free_disk(rbd_dev);
4907err_out_blkdev:
4908 unregister_blkdev(rbd_dev->major, rbd_dev->name);
4909err_out_id:
4910 rbd_dev_id_put(rbd_dev);
d1cf5788 4911 rbd_dev_mapping_clear(rbd_dev);
83a06263
AE
4912
4913 return ret;
4914}
4915
332bb12d
AE
4916static int rbd_dev_header_name(struct rbd_device *rbd_dev)
4917{
4918 struct rbd_spec *spec = rbd_dev->spec;
4919 size_t size;
4920
4921 /* Record the header object name for this rbd image. */
4922
4923 rbd_assert(rbd_image_format_valid(rbd_dev->image_format));
4924
4925 if (rbd_dev->image_format == 1)
4926 size = strlen(spec->image_name) + sizeof (RBD_SUFFIX);
4927 else
4928 size = sizeof (RBD_HEADER_PREFIX) + strlen(spec->image_id);
4929
4930 rbd_dev->header_name = kmalloc(size, GFP_KERNEL);
4931 if (!rbd_dev->header_name)
4932 return -ENOMEM;
4933
4934 if (rbd_dev->image_format == 1)
4935 sprintf(rbd_dev->header_name, "%s%s",
4936 spec->image_name, RBD_SUFFIX);
4937 else
4938 sprintf(rbd_dev->header_name, "%s%s",
4939 RBD_HEADER_PREFIX, spec->image_id);
4940 return 0;
4941}
4942
200a6a8b
AE
4943static void rbd_dev_image_release(struct rbd_device *rbd_dev)
4944{
6fd48b3b 4945 rbd_dev_unprobe(rbd_dev);
200a6a8b 4946 kfree(rbd_dev->header_name);
6fd48b3b
AE
4947 rbd_dev->header_name = NULL;
4948 rbd_dev->image_format = 0;
4949 kfree(rbd_dev->spec->image_id);
4950 rbd_dev->spec->image_id = NULL;
4951
200a6a8b
AE
4952 rbd_dev_destroy(rbd_dev);
4953}
4954
a30b71b9
AE
4955/*
4956 * Probe for the existence of the header object for the given rbd
1f3ef788
AE
4957 * device. If this image is the one being mapped (i.e., not a
4958 * parent), initiate a watch on its header object before using that
4959 * object to get detailed information about the rbd image.
a30b71b9 4960 */
1f3ef788 4961static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping)
a30b71b9
AE
4962{
4963 int ret;
b644de2b 4964 int tmp;
a30b71b9
AE
4965
4966 /*
3abef3b3
AE
4967 * Get the id from the image id object. Unless there's an
4968 * error, rbd_dev->spec->image_id will be filled in with
4969 * a dynamically-allocated string, and rbd_dev->image_format
4970 * will be set to either 1 or 2.
a30b71b9
AE
4971 */
4972 ret = rbd_dev_image_id(rbd_dev);
4973 if (ret)
c0fba368
AE
4974 return ret;
4975 rbd_assert(rbd_dev->spec->image_id);
4976 rbd_assert(rbd_image_format_valid(rbd_dev->image_format));
4977
332bb12d
AE
4978 ret = rbd_dev_header_name(rbd_dev);
4979 if (ret)
4980 goto err_out_format;
4981
1f3ef788
AE
4982 if (mapping) {
4983 ret = rbd_dev_header_watch_sync(rbd_dev, true);
4984 if (ret)
4985 goto out_header_name;
4986 }
b644de2b 4987
c0fba368 4988 if (rbd_dev->image_format == 1)
99a41ebc 4989 ret = rbd_dev_v1_header_info(rbd_dev);
a30b71b9 4990 else
2df3fac7 4991 ret = rbd_dev_v2_header_info(rbd_dev);
5655c4d9 4992 if (ret)
b644de2b 4993 goto err_out_watch;
83a06263 4994
9bb81c9b
AE
4995 ret = rbd_dev_spec_update(rbd_dev);
4996 if (ret)
33dca39f 4997 goto err_out_probe;
9bb81c9b
AE
4998
4999 ret = rbd_dev_probe_parent(rbd_dev);
30d60ba2
AE
5000 if (ret)
5001 goto err_out_probe;
5002
5003 dout("discovered format %u image, header name is %s\n",
5004 rbd_dev->image_format, rbd_dev->header_name);
83a06263 5005
30d60ba2 5006 return 0;
6fd48b3b
AE
5007err_out_probe:
5008 rbd_dev_unprobe(rbd_dev);
b644de2b 5009err_out_watch:
1f3ef788
AE
5010 if (mapping) {
5011 tmp = rbd_dev_header_watch_sync(rbd_dev, false);
5012 if (tmp)
5013 rbd_warn(rbd_dev, "unable to tear down "
5014 "watch request (%d)\n", tmp);
5015 }
332bb12d
AE
5016out_header_name:
5017 kfree(rbd_dev->header_name);
5018 rbd_dev->header_name = NULL;
5019err_out_format:
5020 rbd_dev->image_format = 0;
5655c4d9
AE
5021 kfree(rbd_dev->spec->image_id);
5022 rbd_dev->spec->image_id = NULL;
5023
5024 dout("probe failed, returning %d\n", ret);
5025
a30b71b9
AE
5026 return ret;
5027}
5028
59c2be1e
YS
5029static ssize_t rbd_add(struct bus_type *bus,
5030 const char *buf,
5031 size_t count)
602adf40 5032{
cb8627c7 5033 struct rbd_device *rbd_dev = NULL;
dc79b113 5034 struct ceph_options *ceph_opts = NULL;
4e9afeba 5035 struct rbd_options *rbd_opts = NULL;
859c31df 5036 struct rbd_spec *spec = NULL;
9d3997fd 5037 struct rbd_client *rbdc;
27cc2594 5038 struct ceph_osd_client *osdc;
51344a38 5039 bool read_only;
27cc2594 5040 int rc = -ENOMEM;
602adf40
YS
5041
5042 if (!try_module_get(THIS_MODULE))
5043 return -ENODEV;
5044
602adf40 5045 /* parse add command */
859c31df 5046 rc = rbd_add_parse_args(buf, &ceph_opts, &rbd_opts, &spec);
dc79b113 5047 if (rc < 0)
bd4ba655 5048 goto err_out_module;
51344a38
AE
5049 read_only = rbd_opts->read_only;
5050 kfree(rbd_opts);
5051 rbd_opts = NULL; /* done with this */
78cea76e 5052
9d3997fd
AE
5053 rbdc = rbd_get_client(ceph_opts);
5054 if (IS_ERR(rbdc)) {
5055 rc = PTR_ERR(rbdc);
0ddebc0c 5056 goto err_out_args;
9d3997fd 5057 }
602adf40 5058
602adf40 5059 /* pick the pool */
9d3997fd 5060 osdc = &rbdc->client->osdc;
859c31df 5061 rc = ceph_pg_poolid_by_name(osdc->osdmap, spec->pool_name);
602adf40
YS
5062 if (rc < 0)
5063 goto err_out_client;
c0cd10db 5064 spec->pool_id = (u64)rc;
859c31df 5065
0903e875
AE
5066 /* The ceph file layout needs to fit pool id in 32 bits */
5067
c0cd10db
AE
5068 if (spec->pool_id > (u64)U32_MAX) {
5069 rbd_warn(NULL, "pool id too large (%llu > %u)\n",
5070 (unsigned long long)spec->pool_id, U32_MAX);
0903e875
AE
5071 rc = -EIO;
5072 goto err_out_client;
5073 }
5074
c53d5893 5075 rbd_dev = rbd_dev_create(rbdc, spec);
bd4ba655
AE
5076 if (!rbd_dev)
5077 goto err_out_client;
c53d5893
AE
5078 rbdc = NULL; /* rbd_dev now owns this */
5079 spec = NULL; /* rbd_dev now owns this */
602adf40 5080
1f3ef788 5081 rc = rbd_dev_image_probe(rbd_dev, true);
a30b71b9 5082 if (rc < 0)
c53d5893 5083 goto err_out_rbd_dev;
05fd6f6f 5084
7ce4eef7
AE
5085 /* If we are mapping a snapshot it must be marked read-only */
5086
5087 if (rbd_dev->spec->snap_id != CEPH_NOSNAP)
5088 read_only = true;
5089 rbd_dev->mapping.read_only = read_only;
5090
b536f69a 5091 rc = rbd_dev_device_setup(rbd_dev);
3abef3b3
AE
5092 if (rc) {
5093 rbd_dev_image_release(rbd_dev);
5094 goto err_out_module;
5095 }
5096
5097 return count;
b536f69a 5098
c53d5893
AE
5099err_out_rbd_dev:
5100 rbd_dev_destroy(rbd_dev);
bd4ba655 5101err_out_client:
9d3997fd 5102 rbd_put_client(rbdc);
0ddebc0c 5103err_out_args:
859c31df 5104 rbd_spec_put(spec);
bd4ba655
AE
5105err_out_module:
5106 module_put(THIS_MODULE);
27cc2594 5107
602adf40 5108 dout("Error adding device %s\n", buf);
27cc2594 5109
c0cd10db 5110 return (ssize_t)rc;
602adf40
YS
5111}
5112
200a6a8b 5113static void rbd_dev_device_release(struct device *dev)
602adf40 5114{
593a9e7b 5115 struct rbd_device *rbd_dev = dev_to_rbd_dev(dev);
602adf40 5116
602adf40 5117 rbd_free_disk(rbd_dev);
200a6a8b 5118 clear_bit(RBD_DEV_FLAG_EXISTS, &rbd_dev->flags);
6d80b130 5119 rbd_dev_mapping_clear(rbd_dev);
602adf40 5120 unregister_blkdev(rbd_dev->major, rbd_dev->name);
200a6a8b 5121 rbd_dev->major = 0;
e2839308 5122 rbd_dev_id_put(rbd_dev);
d1cf5788 5123 rbd_dev_mapping_clear(rbd_dev);
602adf40
YS
5124}
5125
05a46afd
AE
5126static void rbd_dev_remove_parent(struct rbd_device *rbd_dev)
5127{
ad945fc1 5128 while (rbd_dev->parent) {
05a46afd
AE
5129 struct rbd_device *first = rbd_dev;
5130 struct rbd_device *second = first->parent;
5131 struct rbd_device *third;
5132
5133 /*
5134 * Follow to the parent with no grandparent and
5135 * remove it.
5136 */
5137 while (second && (third = second->parent)) {
5138 first = second;
5139 second = third;
5140 }
ad945fc1 5141 rbd_assert(second);
8ad42cd0 5142 rbd_dev_image_release(second);
ad945fc1
AE
5143 first->parent = NULL;
5144 first->parent_overlap = 0;
5145
5146 rbd_assert(first->parent_spec);
05a46afd
AE
5147 rbd_spec_put(first->parent_spec);
5148 first->parent_spec = NULL;
05a46afd
AE
5149 }
5150}
5151
dfc5606d
YS
5152static ssize_t rbd_remove(struct bus_type *bus,
5153 const char *buf,
5154 size_t count)
602adf40
YS
5155{
5156 struct rbd_device *rbd_dev = NULL;
751cc0e3
AE
5157 struct list_head *tmp;
5158 int dev_id;
602adf40 5159 unsigned long ul;
82a442d2 5160 bool already = false;
0d8189e1 5161 int ret;
602adf40 5162
bb8e0e84 5163 ret = kstrtoul(buf, 10, &ul);
0d8189e1
AE
5164 if (ret)
5165 return ret;
602adf40
YS
5166
5167 /* convert to int; abort if we lost anything in the conversion */
751cc0e3
AE
5168 dev_id = (int)ul;
5169 if (dev_id != ul)
602adf40
YS
5170 return -EINVAL;
5171
751cc0e3
AE
5172 ret = -ENOENT;
5173 spin_lock(&rbd_dev_list_lock);
5174 list_for_each(tmp, &rbd_dev_list) {
5175 rbd_dev = list_entry(tmp, struct rbd_device, node);
5176 if (rbd_dev->dev_id == dev_id) {
5177 ret = 0;
5178 break;
5179 }
42382b70 5180 }
751cc0e3
AE
5181 if (!ret) {
5182 spin_lock_irq(&rbd_dev->lock);
5183 if (rbd_dev->open_count)
5184 ret = -EBUSY;
5185 else
82a442d2
AE
5186 already = test_and_set_bit(RBD_DEV_FLAG_REMOVING,
5187 &rbd_dev->flags);
751cc0e3
AE
5188 spin_unlock_irq(&rbd_dev->lock);
5189 }
5190 spin_unlock(&rbd_dev_list_lock);
82a442d2 5191 if (ret < 0 || already)
1ba0f1e7 5192 return ret;
751cc0e3 5193
1f3ef788
AE
5194 ret = rbd_dev_header_watch_sync(rbd_dev, false);
5195 if (ret)
5196 rbd_warn(rbd_dev, "failed to cancel watch event (%d)\n", ret);
9abc5990
JD
5197
5198 /*
5199 * flush remaining watch callbacks - these must be complete
5200 * before the osd_client is shutdown
5201 */
5202 dout("%s: flushing notifies", __func__);
5203 ceph_osdc_flush_notifies(&rbd_dev->rbd_client->client->osdc);
9875201e
JD
5204 /*
5205 * Don't free anything from rbd_dev->disk until after all
5206 * notifies are completely processed. Otherwise
5207 * rbd_bus_del_dev() will race with rbd_watch_cb(), resulting
5208 * in a potential use after free of rbd_dev->disk or rbd_dev.
5209 */
5210 rbd_bus_del_dev(rbd_dev);
8ad42cd0 5211 rbd_dev_image_release(rbd_dev);
79ab7558 5212 module_put(THIS_MODULE);
aafb230e 5213
1ba0f1e7 5214 return count;
602adf40
YS
5215}
5216
602adf40
YS
5217/*
5218 * create control files in sysfs
dfc5606d 5219 * /sys/bus/rbd/...
602adf40
YS
5220 */
5221static int rbd_sysfs_init(void)
5222{
dfc5606d 5223 int ret;
602adf40 5224
fed4c143 5225 ret = device_register(&rbd_root_dev);
21079786 5226 if (ret < 0)
dfc5606d 5227 return ret;
602adf40 5228
fed4c143
AE
5229 ret = bus_register(&rbd_bus_type);
5230 if (ret < 0)
5231 device_unregister(&rbd_root_dev);
602adf40 5232
602adf40
YS
5233 return ret;
5234}
5235
5236static void rbd_sysfs_cleanup(void)
5237{
dfc5606d 5238 bus_unregister(&rbd_bus_type);
fed4c143 5239 device_unregister(&rbd_root_dev);
602adf40
YS
5240}
5241
1c2a9dfe
AE
5242static int rbd_slab_init(void)
5243{
5244 rbd_assert(!rbd_img_request_cache);
5245 rbd_img_request_cache = kmem_cache_create("rbd_img_request",
5246 sizeof (struct rbd_img_request),
5247 __alignof__(struct rbd_img_request),
5248 0, NULL);
868311b1
AE
5249 if (!rbd_img_request_cache)
5250 return -ENOMEM;
5251
5252 rbd_assert(!rbd_obj_request_cache);
5253 rbd_obj_request_cache = kmem_cache_create("rbd_obj_request",
5254 sizeof (struct rbd_obj_request),
5255 __alignof__(struct rbd_obj_request),
5256 0, NULL);
78c2a44a
AE
5257 if (!rbd_obj_request_cache)
5258 goto out_err;
5259
5260 rbd_assert(!rbd_segment_name_cache);
5261 rbd_segment_name_cache = kmem_cache_create("rbd_segment_name",
5262 MAX_OBJ_NAME_SIZE + 1, 1, 0, NULL);
5263 if (rbd_segment_name_cache)
1c2a9dfe 5264 return 0;
78c2a44a
AE
5265out_err:
5266 if (rbd_obj_request_cache) {
5267 kmem_cache_destroy(rbd_obj_request_cache);
5268 rbd_obj_request_cache = NULL;
5269 }
1c2a9dfe 5270
868311b1
AE
5271 kmem_cache_destroy(rbd_img_request_cache);
5272 rbd_img_request_cache = NULL;
5273
1c2a9dfe
AE
5274 return -ENOMEM;
5275}
5276
5277static void rbd_slab_exit(void)
5278{
78c2a44a
AE
5279 rbd_assert(rbd_segment_name_cache);
5280 kmem_cache_destroy(rbd_segment_name_cache);
5281 rbd_segment_name_cache = NULL;
5282
868311b1
AE
5283 rbd_assert(rbd_obj_request_cache);
5284 kmem_cache_destroy(rbd_obj_request_cache);
5285 rbd_obj_request_cache = NULL;
5286
1c2a9dfe
AE
5287 rbd_assert(rbd_img_request_cache);
5288 kmem_cache_destroy(rbd_img_request_cache);
5289 rbd_img_request_cache = NULL;
5290}
5291
cc344fa1 5292static int __init rbd_init(void)
602adf40
YS
5293{
5294 int rc;
5295
1e32d34c
AE
5296 if (!libceph_compatible(NULL)) {
5297 rbd_warn(NULL, "libceph incompatibility (quitting)");
5298
5299 return -EINVAL;
5300 }
1c2a9dfe 5301 rc = rbd_slab_init();
602adf40
YS
5302 if (rc)
5303 return rc;
1c2a9dfe
AE
5304 rc = rbd_sysfs_init();
5305 if (rc)
5306 rbd_slab_exit();
5307 else
5308 pr_info("loaded " RBD_DRV_NAME_LONG "\n");
5309
5310 return rc;
602adf40
YS
5311}
5312
cc344fa1 5313static void __exit rbd_exit(void)
602adf40
YS
5314{
5315 rbd_sysfs_cleanup();
1c2a9dfe 5316 rbd_slab_exit();
602adf40
YS
5317}
5318
5319module_init(rbd_init);
5320module_exit(rbd_exit);
5321
d552c619 5322MODULE_AUTHOR("Alex Elder <elder@inktank.com>");
602adf40
YS
5323MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
5324MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
5325MODULE_DESCRIPTION("rados block device");
5326
5327/* following authorship retained from original osdblk.c */
5328MODULE_AUTHOR("Jeff Garzik <jeff@garzik.org>");
5329
5330MODULE_LICENSE("GPL");
This page took 1.147851 seconds and 5 git commands to generate.