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