Show the rbd images that are mapped via the rbd kernel module
(default) or other supported device.
-:command:`device map` [-t | --device-type *device-type*] [--read-only] [--exclusive] [-o | --options *device-options*] *image-spec* | *snap-spec*
+:command:`device map` [-t | --device-type *device-type*] [--show-cookie] [--read-only] [--exclusive] [-o | --options *device-options*] *image-spec* | *snap-spec*
Map the specified image to a block device via the rbd kernel module
(default) or other supported device (*nbd* on Linux or *ggate* on
FreeBSD).
The --options argument is a comma separated list of device type
specific options (opt1,opt2=val,...).
-:command:`device attach` [-t | --device-type *device-type*] --device *device-path* [--read-only] [--exclusive] [--force] [-o | --options *device-options*] *image-spec* | *snap-spec*
+:command:`device attach` [-t | --device-type *device-type*] --device *device-path* [--cookie *device-cookie*] [--read-only] [--exclusive] [--force] [-o | --options *device-options*] *image-spec* | *snap-spec*
Attach the specified image to the specified block device (currently only
`nbd` on Linux). This operation is unsafe and should not be normally used.
In particular, specifying the wrong image or the wrong block device may
rbd help device attach
usage: rbd device attach [--device-type <device-type>] [--pool <pool>]
[--namespace <namespace>] [--image <image>]
- [--snap <snap>] --device <device> [--read-only]
- [--force] [--exclusive] [--quiesce]
+ [--snap <snap>] --device <device> [--cookie <cookie>]
+ [--read-only] [--force] [--exclusive] [--quiesce]
[--quiesce-hook <quiesce-hook>] [--options <options>]
<image-or-snap-spec>
--image arg image name
--snap arg snapshot name
--device arg specify device path
+ --cookie arg specify device cookie
--read-only attach read-only
--force force attach
--exclusive disable automatic exclusive lock transitions
rbd help device map
usage: rbd device map [--device-type <device-type>] [--pool <pool>]
[--namespace <namespace>] [--image <image>]
- [--snap <snap>] [--read-only] [--exclusive] [--quiesce]
+ [--snap <snap>] [--show-cookie] [--read-only]
+ [--exclusive] [--quiesce]
[--quiesce-hook <quiesce-hook>] [--options <options>]
<image-or-snap-spec>
--namespace arg namespace name
--image arg image name
--snap arg snapshot name
+ --show-cookie show device cookie
--read-only map read-only
--exclusive disable automatic exclusive lock transitions
--quiesce use quiesce hooks
at::add_image_or_snap_spec_options(positional, options,
at::ARGUMENT_MODIFIER_NONE);
options->add_options()
+ ("show-cookie", po::bool_switch(), "show device cookie")
("read-only", po::bool_switch(), "map read-only")
("exclusive", po::bool_switch(), "disable automatic exclusive lock transitions")
("quiesce", po::bool_switch(), "use quiesce hooks")
at::ARGUMENT_MODIFIER_NONE);
options->add_options()
("device", po::value<std::string>()->required(), "specify device path")
+ ("cookie", po::value<std::string>(), "specify device cookie")
("read-only", po::bool_switch(), "attach read-only")
("force", po::bool_switch(), "force attach")
("exclusive", po::bool_switch(), "disable automatic exclusive lock transitions")
return -EINVAL;
}
- if (!vm["force"].as<bool>()) {
+ if (vm.count("cookie")) {
+ args.push_back("--cookie");
+ args.push_back(vm["cookie"].as<std::string>());
+ } else if (!vm["force"].as<bool>()) {
std::cerr << "rbd: could not validate attach request\n";
std::cerr << "rbd: mismatching the image and the device may lead to data corruption\n";
- std::cerr << "rbd: must specify --force to proceed" << std::endl;
+ std::cerr << "rbd: must specify --cookie <arg> or --force to proceed" << std::endl;
return -EINVAL;
}
args.push_back("--quiesce");
}
+ if (vm["show-cookie"].as<bool>()) {
+ args.push_back("--show-cookie");
+ }
+
if (vm["read-only"].as<bool>()) {
args.push_back("--read-only");
}