1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
|
/* nbdkit
* Copyright Red Hat
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Red Hat nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/wait.h>
#define NBDKIT_API_VERSION 2
#include <nbdkit-plugin.h>
#include "cleanup.h"
#include "utils.h"
static const char *tmpdir = LARGE_TMPDIR;
static int64_t requested_size = -1; /* size parameter on the command line */
/* Shell variables. */
static struct var {
struct var *next;
const char *key, *value;
} *vars, *last_var;
/* This comes from default-command.c which is generated from
* default-command.sh.in.
*/
extern const char *command;
static void
tmpdisk_load (void)
{
const char *s;
s = getenv ("TMPDIR");
if (s)
tmpdir = s;
}
static void
tmpdisk_unload (void)
{
struct var *v, *v_next;
for (v = vars; v != NULL; v = v_next) {
v_next = v->next;
free (v);
}
}
static int
tmpdisk_config (const char *key, const char *value)
{
if (strcmp (key, "command") == 0) {
command = value;
}
else if (strcmp (key, "size") == 0) {
requested_size = nbdkit_parse_size (value);
if (requested_size == -1)
return -1;
}
/* This parameter cannot be set on the command line since it is used
* to pass the disk name to the command.
*/
else if (strcmp (key, "disk") == 0) {
nbdkit_error ("'disk' parameter cannot be set on the command line");
return -1;
}
/* Any other parameter will be forwarded to a shell variable. */
else if (is_shell_variable (key)) {
struct var *new_var;
new_var = malloc (sizeof *new_var);
if (new_var == NULL) {
perror ("malloc");
exit (EXIT_FAILURE);
}
new_var->next = NULL;
new_var->key = key;
new_var->value = value;
/* Append it to the linked list. */
if (vars == NULL) {
assert (last_var == NULL);
vars = last_var = new_var;
}
else {
assert (last_var != NULL);
last_var->next = new_var;
last_var = new_var;
}
}
else {
nbdkit_error ("unknown parameter '%s'", key);
return -1;
}
return 0;
}
static int
tmpdisk_config_complete (void)
{
if (requested_size == -1) {
nbdkit_error ("size parameter is required");
return -1;
}
return 0;
}
#define tmpdisk_config_help \
"size=<SIZE> (required) Virtual filesystem size.\n" \
"label=<LABEL> The filesystem label.\n" \
"type=ext4|... The filesystem type.\n" \
"command=<COMMAND> Alternate command instead of mkfs."
struct handle {
int fd;
int64_t size;
bool can_punch_hole;
};
/* Multi-conn is absolutely unsafe! In this callback it is simply
* returning the default value (no multi-conn), that's to make it
* clear for future authors.
*/
static int
tmpdisk_can_multi_conn (void *handle)
{
return 0;
}
static int
tmpdisk_can_trim (void *handle)
{
#ifdef FALLOC_FL_PUNCH_HOLE
return 1;
#else
return 0;
#endif
}
/* Pretend we have native FUA support, but actually because all disks
* are temporary we will deliberately ignore flush/FUA operations.
*/
static int
tmpdisk_can_fua (void *handle)
{
return NBDKIT_FUA_NATIVE;
}
static int64_t
tmpdisk_get_size (void *handle)
{
struct handle *h = handle;
return h->size;
}
/* This creates and runs the full "mkfs" (or whatever) command. */
static int
run_command (const char *disk)
{
FILE *fp;
CLEANUP_FREE char *cmd = NULL;
size_t len = 0;
int r;
struct var *v;
fp = open_memstream (&cmd, &len);
if (fp == NULL) {
nbdkit_error ("open_memstream: %m");
return -1;
}
/* Avoid stdin/stdout leaking (because of nbdkit -s). */
fprintf (fp, "exec </dev/null >/dev/null\n");
/* Set the standard shell variables. */
fprintf (fp, "disk=");
shell_quote (disk, fp);
putc ('\n', fp);
fprintf (fp, "size=%" PRIi64 "\n", requested_size);
putc ('\n', fp);
/* The other parameters/shell variables. */
for (v = vars; v != NULL; v = v->next) {
/* We test in ondemand_config that the key is valid. */
assert (is_shell_variable (v->key));
fprintf (fp, "%s=", v->key);
shell_quote (v->value, fp);
putc ('\n', fp);
}
putc ('\n', fp);
/* The command. */
fprintf (fp, "%s", command);
if (fclose (fp) == EOF) {
nbdkit_error ("memstream failed");
return -1;
}
r = system (cmd);
if (r == -1) {
nbdkit_error ("failed to execute command: %m");
return -1;
}
if (WIFEXITED (r) && WEXITSTATUS (r) != 0) {
nbdkit_error ("command exited with code %d", WEXITSTATUS (r));
return -1;
}
else if (WIFSIGNALED (r)) {
nbdkit_error ("command killed by signal %d", WTERMSIG (r));
return -1;
}
else if (WIFSTOPPED (r)) {
nbdkit_error ("command stopped by signal %d", WSTOPSIG (r));
return -1;
}
return 0;
}
static void *
tmpdisk_open (int readonly)
{
struct handle *h;
CLEANUP_FREE char *dir = NULL, *disk = NULL;
int flags;
h = malloc (sizeof *h);
if (h == NULL) {
nbdkit_error ("malloc: %m");
goto error;
}
h->fd = -1;
h->size = -1;
h->can_punch_hole = true;
/* For security reasons we have to create a temporary directory
* under tmpdir that only the current user can access. If we
* created it in a shared directory then another user might be able
* to see the temporary file being created and interfere with it
* before we reopen it in the plugin below.
*/
if (asprintf (&dir, "%s/tmpdiskXXXXXX", tmpdir) == -1) {
nbdkit_error ("asprintf: %m");
goto error;
}
if (mkdtemp (dir) == NULL) {
nbdkit_error ("%s: %m", dir);
goto error;
}
if (asprintf (&disk, "%s/disk", dir) == -1) {
nbdkit_error ("asprintf: %m");
goto error;
}
/* Now run the mkfs command. */
if (run_command (disk) == -1)
goto error;
/* The external command must have created the disk, and then we must
* find the true size.
*/
if (readonly)
flags = O_RDONLY | O_CLOEXEC;
else
flags = O_RDWR | O_CLOEXEC;
h->fd = open (disk, flags);
if (h->fd == -1) {
nbdkit_error ("open: %s: %m", disk);
goto error;
}
/* The command could set $disk to a regular file or a block device
* (or a symlink to either). device_size can check the size of
* either.
*/
h->size = device_size (h->fd, NULL);
if (h->size == -1) {
nbdkit_error ("device_size: %s: %m", disk);
goto error;
}
nbdkit_debug ("tmpdisk: requested_size = %" PRIi64 ", size = %" PRIi64,
requested_size, h->size);
/* We don't need the disk to appear in the filesystem since we hold
* a file descriptor and access it through that, so unlink the disk.
* This also ensures it is always cleaned up.
*/
unlink (disk);
rmdir (dir);
/* Return the handle. */
return h;
error:
if (h) {
if (h->fd >= 0) {
close (h->fd);
unlink (disk);
}
free (h);
}
return NULL;
}
static void
tmpdisk_close (void *handle)
{
struct handle *h = handle;
close (h->fd);
free (h);
}
/* Read data from the file. */
static int
tmpdisk_pread (void *handle, void *buf,
uint32_t count, uint64_t offset,
uint32_t flags)
{
struct handle *h = handle;
while (count > 0) {
ssize_t r = pread (h->fd, buf, count, offset);
if (r == -1) {
nbdkit_error ("pread: %m");
return -1;
}
if (r == 0) {
nbdkit_error ("pread: unexpected end of file");
return -1;
}
buf += r;
count -= r;
offset += r;
}
return 0;
}
/* Write data to the file. */
static int
tmpdisk_pwrite (void *handle, const void *buf,
uint32_t count, uint64_t offset,
uint32_t flags)
{
struct handle *h = handle;
while (count > 0) {
ssize_t r = pwrite (h->fd, buf, count, offset);
if (r == -1) {
nbdkit_error ("pwrite: %m");
return -1;
}
buf += r;
count -= r;
offset += r;
}
/* Deliberately ignore FUA if present in flags. */
return 0;
}
/* This plugin deliberately provides a null flush operation, because
* all of the disks created are temporary.
*/
static int
tmpdisk_flush (void *handle, uint32_t flags)
{
return 0;
}
#if defined (FALLOC_FL_PUNCH_HOLE)
static int
do_fallocate (int fd, int mode, off_t offset, off_t len)
{
int r = fallocate (fd, mode, offset, len);
if (r == -1 && errno == ENODEV) {
/* kernel 3.10 fails with ENODEV for block device. Kernel >= 4.9 fails
* with EOPNOTSUPP in this case. Normalize errno to simplify callers.
*/
errno = EOPNOTSUPP;
}
return r;
}
static bool
is_enotsup (int err)
{
return err == ENOTSUP || err == EOPNOTSUPP;
}
#endif
/* Punch a hole in the file. */
static int
tmpdisk_trim (void *handle, uint32_t count, uint64_t offset, uint32_t flags)
{
#ifdef FALLOC_FL_PUNCH_HOLE
struct handle *h = handle;
int r;
if (h->can_punch_hole) {
r = do_fallocate (h->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
offset, count);
if (r == -1) {
/* Trim is advisory; we don't care if it fails for anything other
* than EIO or EPERM.
*/
if (errno == EPERM || errno == EIO) {
nbdkit_error ("fallocate: %m");
return -1;
}
if (is_enotsup (errno))
h->can_punch_hole = false;
nbdkit_debug ("ignoring failed fallocate during trim: %m");
}
}
#endif
/* Deliberately ignore FUA if present in flags. */
return 0;
}
#define THREAD_MODEL NBDKIT_THREAD_MODEL_PARALLEL
static struct nbdkit_plugin plugin = {
.name = "tmpdisk",
.version = PACKAGE_VERSION,
.load = tmpdisk_load,
.unload = tmpdisk_unload,
.config = tmpdisk_config,
.config_complete = tmpdisk_config_complete,
.config_help = tmpdisk_config_help,
.magic_config_key = "size",
.can_multi_conn = tmpdisk_can_multi_conn,
.can_trim = tmpdisk_can_trim,
.can_fua = tmpdisk_can_fua,
.get_size = tmpdisk_get_size,
.open = tmpdisk_open,
.close = tmpdisk_close,
.pread = tmpdisk_pread,
.pwrite = tmpdisk_pwrite,
.flush = tmpdisk_flush,
.trim = tmpdisk_trim,
.errno_is_preserved = 1,
};
NBDKIT_REGISTER_PLUGIN (plugin)
|