diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-17 02:36:23 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-19 20:24:09 +0100 |
commit | ff6a74609b7c925834da1373d3adb9642ca51422 (patch) | |
tree | 23fc620efd4a35c0d2d138a1d887d6c8465253ff /src/shared | |
parent | 47bc4fd86d1119945be3d0217f3795c901b7ffff (diff) |
import-raw: when downloading raw images, generate sparse files if we can
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/util.c | 62 | ||||
-rw-r--r-- | src/shared/util.h | 2 |
2 files changed, 64 insertions, 0 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 8f6d5e660c..fd54023660 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -7931,3 +7931,65 @@ void release_lock_file(LockFile *f) { f->fd = safe_close(f->fd); f->operation = 0; } + +static size_t nul_length(const uint8_t *p, size_t sz) { + size_t n = 0; + + while (sz > 0) { + if (*p != 0) + break; + + n++; + p++; + sz--; + } + + return n; +} + +ssize_t sparse_write(int fd, const void *p, size_t sz, size_t run_length) { + const uint8_t *q, *w, *e; + ssize_t l; + + q = w = p; + e = q + sz; + while (q < e) { + size_t n; + + n = nul_length(q, e - q); + + /* If there are more than the specified run length of + * NUL bytes, or if this is the beginning or the end + * of the buffer, then seek instead of write */ + if ((n > run_length) || + (n > 0 && q == p) || + (n > 0 && q + n >= e)) { + if (q > w) { + l = write(fd, w, q - w); + if (l < 0) + return -errno; + if (l != q -w) + return -EIO; + } + + if (lseek(fd, n, SEEK_CUR) == (off_t) -1) + return -errno; + + q += n; + w = q; + } else if (n > 0) + q += n; + else + q ++; + } + + if (q > w) { + l = write(fd, w, q - w); + if (l < 0) + return -errno; + if (l != q - w) + return -EIO; + } + + return q - (const uint8_t*) p; +} diff --git a/src/shared/util.h b/src/shared/util.h index 8a3e95a17a..2e662c9d2d 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -1062,3 +1062,5 @@ void release_lock_file(LockFile *f); #define LOCK_FILE_INIT { .fd = -1, .path = NULL } #define RLIMIT_MAKE_CONST(lim) ((struct rlimit) { lim, lim }) + +ssize_t sparse_write(int fd, const void *p, size_t sz, size_t run_length); |