All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: Max Reitz <mreitz@redhat.com>, qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
	qemu-devel@nongnu.org, Stefan Hajnoczi <stefanha@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 for-2.10 07/16] block/file-posix: Generalize raw_regular_truncate
Date: Mon, 3 Apr 2017 16:09:47 -0300	[thread overview]
Message-ID: <fcdf487c-2879-b909-c383-3321374bf1f6@amsat.org> (raw)
In-Reply-To: <20170403160936.28293-8-mreitz@redhat.com>

On 04/03/2017 01:09 PM, Max Reitz wrote:
> Currently, raw_regular_truncate() is intended for setting the size of a
> newly created file. However, we also want to use it for truncating an
> existing file in which case only the newly added space (when growing)
> should be preallocated.
>
> This also means that if resizing failed, we should try to restore the
> original file size. This is important when using preallocation.
>
> Signed-off-by: Max Reitz <mreitz@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

> ---
>  block/file-posix.c | 61 ++++++++++++++++++++++++++++++++++++++++++++----------
>  1 file changed, 50 insertions(+), 11 deletions(-)
>
> diff --git a/block/file-posix.c b/block/file-posix.c
> index e6b6fa30ce..d99ca3d6e8 100644
> --- a/block/file-posix.c
> +++ b/block/file-posix.c
> @@ -1407,11 +1407,31 @@ static void raw_close(BlockDriverState *bs)
>      }
>  }
>
> +/**
> + * Truncates the given regular file @fd to @offset and, when growing, fills the
> + * new space according to @prealloc.
> + *
> + * Returns: 0 on success, -errno on failure.
> + */
>  static int raw_regular_truncate(int fd, int64_t offset, PreallocMode prealloc,
>                                  Error **errp)
>  {
>      int result = 0;
> -    char *buf;
> +    int64_t current_length = 0;
> +    char *buf = NULL;
> +    struct stat st;
> +
> +    if (fstat(fd, &st) < 0) {
> +        result = -errno;
> +        error_setg_errno(errp, -result, "Could not stat file");
> +        return result;
> +    }
> +
> +    current_length = st.st_size;
> +    if (current_length > offset && prealloc != PREALLOC_MODE_OFF) {
> +        error_setg(errp, "Cannot use preallocation for shrinking files");
> +        return -ENOTSUP;
> +    }
>
>      switch (prealloc) {
>  #ifdef CONFIG_POSIX_FALLOCATE
> @@ -1421,17 +1441,17 @@ static int raw_regular_truncate(int fd, int64_t offset, PreallocMode prealloc,
>           * file systems that do not support fallocate(), trying to check if a
>           * block is allocated before allocating it, so don't do that here.
>           */
> -        result = -posix_fallocate(fd, 0, offset);
> +        result = -posix_fallocate(fd, current_length, offset - current_length);
>          if (result != 0) {
>              /* posix_fallocate() doesn't set errno. */
>              error_setg_errno(errp, -result,
> -                             "Could not preallocate data for the new file");
> +                             "Could not preallocate new data");
>          }
> -        return result;
> +        goto out;
>  #endif
>      case PREALLOC_MODE_FULL:
>      {
> -        int64_t num = 0, left = offset;
> +        int64_t num = 0, left = offset - current_length;
>
>          /*
>           * Knowing the final size from the beginning could allow the file
> @@ -1441,19 +1461,27 @@ static int raw_regular_truncate(int fd, int64_t offset, PreallocMode prealloc,
>          if (ftruncate(fd, offset) != 0) {
>              result = -errno;
>              error_setg_errno(errp, -result, "Could not resize file");
> -            return result;
> +            goto out;
>          }
>
>          buf = g_malloc0(65536);
>
> +        result = lseek(fd, current_length, SEEK_SET);
> +        if (result < 0) {
> +            result = -errno;
> +            error_setg_errno(errp, -result,
> +                             "Failed to seek to the old end of file");
> +            goto out;
> +        }
> +
>          while (left > 0) {
>              num = MIN(left, 65536);
>              result = write(fd, buf, num);
>              if (result < 0) {
>                  result = -errno;
>                  error_setg_errno(errp, -result,
> -                                 "Could not write to the new file");
> -                break;
> +                                 "Could not write zeros for preallocation");
> +                goto out;
>              }
>              left -= result;
>          }
> @@ -1462,11 +1490,11 @@ static int raw_regular_truncate(int fd, int64_t offset, PreallocMode prealloc,
>              if (result < 0) {
>                  result = -errno;
>                  error_setg_errno(errp, -result,
> -                                 "Could not flush new file to disk");
> +                                 "Could not flush file to disk");
> +                goto out;
>              }
>          }
> -        g_free(buf);
> -        return result;
> +        goto out;
>      }
>      case PREALLOC_MODE_OFF:
>          if (ftruncate(fd, offset) != 0) {
> @@ -1480,6 +1508,17 @@ static int raw_regular_truncate(int fd, int64_t offset, PreallocMode prealloc,
>                     PreallocMode_lookup[prealloc]);
>          return result;
>      }
> +
> +out:
> +    if (result < 0) {
> +        if (ftruncate(fd, current_length) < 0) {
> +            error_report("Failed to restore old file length: %s",
> +                         strerror(errno));
> +        }
> +    }
> +
> +    g_free(buf);
> +    return result;
>  }
>
>  static int raw_truncate(BlockDriverState *bs, int64_t offset,
>

  reply	other threads:[~2017-04-03 19:09 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-03 16:09 [Qemu-devel] [PATCH v2 for-2.10 00/16] block: Preallocated truncate Max Reitz
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 01/16] block: Add PreallocMode to BD.bdrv_truncate() Max Reitz
2017-04-06 12:28   ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 02/16] block: Add PreallocMode to bdrv_truncate() Max Reitz
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 03/16] block: Add PreallocMode to blk_truncate() Max Reitz
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 04/16] qemu-img: Expose PreallocMode for resizing Max Reitz
2017-04-06 12:30   ` Stefan Hajnoczi
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 05/16] block/file-posix: Small fixes in raw_create() Max Reitz
2017-04-03 19:01   ` Philippe Mathieu-Daudé
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 06/16] block/file-posix: Extract raw_regular_truncate() Max Reitz
2017-04-03 19:02   ` Philippe Mathieu-Daudé
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 07/16] block/file-posix: Generalize raw_regular_truncate Max Reitz
2017-04-03 19:09   ` Philippe Mathieu-Daudé [this message]
2017-04-06 12:33   ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 08/16] block/file-posix: Preallocation for truncate Max Reitz
2017-04-06 12:33   ` Stefan Hajnoczi
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 09/16] block/qcow2: Generalize preallocate() Max Reitz
2017-04-03 19:19   ` Philippe Mathieu-Daudé
2017-04-05 12:02     ` Max Reitz
2017-04-06 12:35   ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 10/16] block/qcow2: Lock s->lock in preallocate() Max Reitz
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 11/16] block/qcow2: Metadata preallocation for truncate Max Reitz
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 12/16] block/qcow2: Extract qcow2_calc_size_usage() Max Reitz
2017-04-17 12:34   ` Philippe Mathieu-Daudé
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 13/16] block/qcow2: qcow2_calc_size_usage() for truncate Max Reitz
2017-04-06 13:04   ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-04-07 15:42     ` Max Reitz
2017-04-10  9:59       ` Stefan Hajnoczi
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 14/16] block/qcow2: falloc/full preallocating growth Max Reitz
2017-04-06 13:05   ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 15/16] iotests: Add preallocated resize test for raw Max Reitz
2017-04-03 16:09 ` [Qemu-devel] [PATCH v2 for-2.10 16/16] iotests: Add preallocated growth test for qcow2 Max Reitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fcdf487c-2879-b909-c383-3321374bf1f6@amsat.org \
    --to=f4bug@amsat.org \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.