X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=fish%2Falloc.c;h=7533741438927758a1d697149d43d467389b8a09;hp=8979acf451b7b3fa013f77f998f353ab7c9c59b3;hb=5e1aff7856f721bf5737815a5b65c0de23ab0b0c;hpb=612a358b8935381e5b8d706e4a77689cd316a18d diff --git a/fish/alloc.c b/fish/alloc.c index 8979acf..7533741 100644 --- a/fish/alloc.c +++ b/fish/alloc.c @@ -1,5 +1,5 @@ /* guestfish - the filesystem interactive shell - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,52 +24,121 @@ #include #include #include +#include -#include "fish.h" +#include "xstrtol.h" -static int parse_size (const char *str, off_t *size_rtn); +#include "fish.h" int -do_alloc (int argc, char *argv[]) +do_alloc (const char *cmd, int argc, char *argv[]) { - off_t size; - int fd; + if (argc != 2) { + fprintf (stderr, _("use 'alloc file size' to create an image\n")); + return -1; + } + + if (alloc_disk (argv[0], argv[1], 1, 0) == -1) + return -1; + return 0; +} + +int +do_sparse (const char *cmd, int argc, char *argv[]) +{ if (argc != 2) { - fprintf (stderr, "use 'alloc file size' to create an image\n"); + fprintf (stderr, _("use 'sparse file size' to create a sparse image\n")); return -1; } - if (parse_size (argv[1], &size) == -1) + if (alloc_disk (argv[0], argv[1], 1, 1) == -1) return -1; - if (g_launched) { - fprintf (stderr, "can't allocate or add disks after launching\n"); + return 0; +} + +static int parse_size (const char *str, off_t *size_rtn); + +/* This is the underlying allocation function. It's called from + * a few other places in guestfish. + */ +int +alloc_disk (const char *filename, const char *size_str, int add, int sparse) +{ + off_t size; + int fd; + char c = 0; + + if (parse_size (size_str, &size) == -1) + return -1; + + if (!guestfs_is_config (g)) { + fprintf (stderr, _("can't allocate or add disks after launching\n")); return -1; } - fd = open (argv[0], O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666); + fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_TRUNC, 0666); if (fd == -1) { - perror (argv[0]); + perror (filename); return -1; } - if (posix_fallocate (fd, 0, size) == -1) { - perror ("fallocate"); - close (fd); - unlink (argv[0]); - return -1; + if (!sparse) { /* Not sparse */ +#ifdef HAVE_POSIX_FALLOCATE + int err = posix_fallocate (fd, 0, size); + if (err != 0) { + errno = err; + perror ("fallocate"); + close (fd); + unlink (filename); + return -1; + } +#else + /* Slow emulation of posix_fallocate on platforms which don't have it. */ + char buffer[BUFSIZ]; + memset (buffer, 0, sizeof buffer); + + size_t remaining = size; + while (remaining > 0) { + size_t n = remaining > sizeof buffer ? sizeof buffer : remaining; + ssize_t r = write (fd, buffer, n); + if (r == -1) { + perror ("write"); + close (fd); + unlink (filename); + return -1; + } + remaining -= r; + } +#endif + } else { /* Sparse */ + if (lseek (fd, size-1, SEEK_SET) == (off_t) -1) { + perror ("lseek"); + close (fd); + unlink (filename); + return -1; + } + + if (write (fd, &c, 1) != 1) { + perror ("write"); + close (fd); + unlink (filename); + return -1; + } } if (close (fd) == -1) { - perror (argv[0]); - unlink (argv[0]); + perror (filename); + unlink (filename); return -1; } - if (guestfs_add_drive (g, argv[0]) == -1) { - unlink (argv[0]); - return -1; + if (add) { + if (guestfs_add_drive (g, filename) == -1) { + unlink (filename); + return -1; + } } return 0; @@ -78,27 +147,14 @@ do_alloc (int argc, char *argv[]) static int parse_size (const char *str, off_t *size_rtn) { - uint64_t size; - char type; - - /* Note that the parsing here is looser than what is specified in the - * help, but we may tighten it up in future so beware. - */ - if (sscanf (str, "%"SCNu64"%c", &size, &type) == 2) { - switch (type) { - case 'k': case 'K': size *= 1024; break; - case 'm': case 'M': size *= 1024 * 1024; break; - case 'g': case 'G': size *= 1024 * 1024 * 1024; break; - case 's': size *= 512; break; - default: - fprintf (stderr, "could not parse size specification '%s'\n", str); - return -1; - } - } - else if (sscanf (str, "%"SCNu64, &size) == 1) - size *= 1024; - else { - fprintf (stderr, "could not parse size specification '%s'\n", str); + unsigned long long size; + strtol_error xerr; + + xerr = xstrtoull (str, NULL, 0, &size, "0kKMGTPEZY"); + if (xerr != LONGINT_OK) { + fprintf (stderr, + _("%s: invalid integer parameter (%s returned %d)\n"), + "alloc_disk", "xstrtoull", xerr); return -1; }