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