iohelper.c 9.2 KB
Newer Older
1 2 3
/*
 * iohelper.c: Helper program to perform I/O operations on files
 *
4
 * Copyright (C) 2011-2012 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 *
 * Current support
 *   - Read existing file
 *   - Write existing file
 *   - Create & write new file
 */

#include <config.h>

#include <locale.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>

36
#include "virutil.h"
37
#include "virthread.h"
E
Eric Blake 已提交
38
#include "virfile.h"
39
#include "viralloc.h"
40
#include "virerror.h"
41
#include "configmake.h"
42
#include "virrandom.h"
43
#include "virstring.h"
44 45 46

#define VIR_FROM_THIS VIR_FROM_STORAGE

47 48 49
static int
prepare(const char *path, int oflags, int mode,
        unsigned long long offset)
50
{
51
    int fd = -1;
52

53 54
    if (oflags & O_CREAT) {
        fd = open(path, oflags, mode);
55
    } else {
56
        fd = open(path, oflags);
57 58 59 60 61 62 63 64 65 66
    }
    if (fd < 0) {
        virReportSystemError(errno, _("Unable to open %s"), path);
        goto cleanup;
    }

    if (offset) {
        if (lseek(fd, offset, SEEK_SET) < 0) {
            virReportSystemError(errno, _("Unable to seek %s to %llu"),
                                 path, offset);
67
            VIR_FORCE_CLOSE(fd);
68 69 70 71
            goto cleanup;
        }
    }

72
 cleanup:
73 74 75 76 77 78
    return fd;
}

static int
runIO(const char *path, int fd, int oflags, unsigned long long length)
{
79 80
    void *base = NULL; /* Location to be freed */
    char *buf = NULL; /* Aligned location within base */
81
    size_t buflen = 1024*1024;
82
    intptr_t alignMask = 64*1024 - 1;
83 84 85 86
    int ret = -1;
    int fdin, fdout;
    const char *fdinname, *fdoutname;
    unsigned long long total = 0;
87 88 89
    bool direct = O_DIRECT && ((oflags & O_DIRECT) != 0);
    bool shortRead = false; /* true if we hit a short read */
    off_t end = 0;
90

91 92
#if HAVE_POSIX_MEMALIGN
    if (posix_memalign(&base, alignMask + 1, buflen)) {
93 94 95
        virReportOOMError();
        goto cleanup;
    }
96 97
    buf = base;
#else
98
    if (VIR_ALLOC_N(buf, buflen + alignMask) < 0)
99 100
        goto cleanup;
    base = buf;
P
Paolo Bonzini 已提交
101
    buf = (char *) (((intptr_t) base + alignMask) & ~alignMask);
102
#endif
103

104
    switch (oflags & O_ACCMODE) {
105 106 107 108 109
    case O_RDONLY:
        fdin = fd;
        fdinname = path;
        fdout = STDOUT_FILENO;
        fdoutname = "stdout";
110 111 112 113 114 115 116
        /* To make the implementation simpler, we give up on any
         * attempt to use O_DIRECT in a non-trivial manner.  */
        if (direct && ((end = lseek(fd, 0, SEEK_CUR)) != 0 || length)) {
            virReportSystemError(end < 0 ? errno : EINVAL, "%s",
                                 _("O_DIRECT read needs entire seekable file"));
            goto cleanup;
        }
117 118 119 120 121 122
        break;
    case O_WRONLY:
        fdin = STDIN_FILENO;
        fdinname = "stdin";
        fdout = fd;
        fdoutname = path;
123 124 125 126 127 128 129
        /* To make the implementation simpler, we give up on any
         * attempt to use O_DIRECT in a non-trivial manner.  */
        if (direct && (end = lseek(fd, 0, SEEK_END)) != 0) {
            virReportSystemError(end < 0 ? errno : EINVAL, "%s",
                                 _("O_DIRECT write needs empty seekable file"));
            goto cleanup;
        }
130 131 132 133 134 135
        break;

    case O_RDWR:
    default:
        virReportSystemError(EINVAL,
                             _("Unable to process file with flags %d"),
136
                             (oflags & O_ACCMODE));
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
        goto cleanup;
    }

    while (1) {
        ssize_t got;

        if (length &&
            (length - total) < buflen)
            buflen = length - total;

        if (buflen == 0)
            break; /* End of requested data from client */

        if ((got = saferead(fdin, buf, buflen)) < 0) {
            virReportSystemError(errno, _("Unable to read %s"), fdinname);
            goto cleanup;
        }
        if (got == 0)
            break; /* End of file before end of requested data */
156 157 158 159 160 161 162 163
        if (got < buflen || (buflen & alignMask)) {
            /* O_DIRECT can handle at most one short read, at end of file */
            if (direct && shortRead) {
                virReportSystemError(EINVAL, "%s",
                                     _("Too many short reads for O_DIRECT"));
            }
            shortRead = true;
        }
164 165

        total += got;
166 167 168 169 170
        if (fdout == fd && direct && shortRead) {
            end = total;
            memset(buf + got, 0, buflen - got);
            got = (got + alignMask) & ~alignMask;
        }
171 172 173 174
        if (safewrite(fdout, buf, got) < 0) {
            virReportSystemError(errno, _("Unable to write %s"), fdoutname);
            goto cleanup;
        }
175 176 177 178
        if (end && ftruncate(fd, end) < 0) {
            virReportSystemError(errno, _("Unable to truncate %s"), fdoutname);
            goto cleanup;
        }
179 180
    }

181 182
    /* Ensure all data is written */
    if (fdatasync(fdout) < 0) {
183 184 185 186 187
        if (errno != EINVAL && errno != EROFS) {
            /* fdatasync() may fail on some special FDs, e.g. pipes */
            virReportSystemError(errno, _("unable to fsync %s"), fdoutname);
            goto cleanup;
        }
188 189
    }

190 191
    ret = 0;

192
 cleanup:
193 194 195 196 197 198
    if (VIR_CLOSE(fd) < 0 &&
        ret == 0) {
        virReportSystemError(errno, _("Unable to close %s"), path);
        ret = -1;
    }

199
    VIR_FREE(base);
200 201 202
    return ret;
}

203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
static const char *program_name;

ATTRIBUTE_NORETURN static void
usage(int status)
{
    if (status) {
        fprintf(stderr, _("%s: try --help for more details"), program_name);
    } else {
        printf(_("Usage: %s FILENAME OFLAGS MODE OFFSET LENGTH DELETE\n"
                 "   or: %s FILENAME LENGTH FD\n"),
               program_name, program_name);
    }
    exit(status);
}

int
main(int argc, char **argv)
220 221 222 223 224
{
    const char *path;
    virErrorPtr err;
    unsigned long long offset;
    unsigned long long length;
225
    int oflags = -1;
226
    int mode;
227 228 229 230 231
    unsigned int delete = 0;
    int fd = -1;
    int lengthIndex = 0;

    program_name = argv[0];
232 233 234 235

    if (setlocale(LC_ALL, "") == NULL ||
        bindtextdomain(PACKAGE, LOCALEDIR) == NULL ||
        textdomain(PACKAGE) == NULL) {
236
        fprintf(stderr, _("%s: initialization failed\n"), program_name);
237 238 239 240
        exit(EXIT_FAILURE);
    }

    if (virThreadInitialize() < 0 ||
241
        virErrorInitialize() < 0) {
242
        fprintf(stderr, _("%s: initialization failed\n"), program_name);
243 244 245 246 247
        exit(EXIT_FAILURE);
    }

    path = argv[1];

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
    if (argc > 1 && STREQ(argv[1], "--help"))
        usage(EXIT_SUCCESS);
    if (argc == 7) { /* FILENAME OFLAGS MODE OFFSET LENGTH DELETE */
        lengthIndex = 5;
        if (virStrToLong_i(argv[2], NULL, 10, &oflags) < 0) {
            fprintf(stderr, _("%s: malformed file flags %s"),
                    program_name, argv[2]);
            exit(EXIT_FAILURE);
        }
        if (virStrToLong_i(argv[3], NULL, 10, &mode) < 0) {
            fprintf(stderr, _("%s: malformed file mode %s"),
                    program_name, argv[3]);
            exit(EXIT_FAILURE);
        }
        if (virStrToLong_ull(argv[4], NULL, 10, &offset) < 0) {
            fprintf(stderr, _("%s: malformed file offset %s"),
                    program_name, argv[4]);
            exit(EXIT_FAILURE);
        }
        if (argc == 7 && virStrToLong_ui(argv[6], NULL, 10, &delete) < 0) {
            fprintf(stderr, _("%s: malformed delete flag %s"),
                    program_name, argv[6]);
            exit(EXIT_FAILURE);
        }
        fd = prepare(path, oflags, mode, offset);
    } else if (argc == 4) { /* FILENAME LENGTH FD */
        lengthIndex = 2;
        if (virStrToLong_i(argv[3], NULL, 10, &fd) < 0) {
            fprintf(stderr, _("%s: malformed fd %s"),
                    program_name, argv[3]);
            exit(EXIT_FAILURE);
        }
#ifdef F_GETFL
        oflags = fcntl(fd, F_GETFL);
#else
        /* Stupid mingw.  */
        if (fd == STDIN_FILENO)
            oflags = O_RDONLY;
        else if (fd == STDOUT_FILENO)
            oflags = O_WRONLY;
#endif
        if (oflags < 0) {
            fprintf(stderr, _("%s: unable to determine access mode of fd %d"),
                    program_name, fd);
            exit(EXIT_FAILURE);
        }
    } else { /* unknown argc pattern */
        usage(EXIT_FAILURE);
296 297
    }

298 299 300
    if (virStrToLong_ull(argv[lengthIndex], NULL, 10, &length) < 0) {
        fprintf(stderr, _("%s: malformed file length %s"),
                program_name, argv[lengthIndex]);
301 302
        exit(EXIT_FAILURE);
    }
303

304
    if (fd < 0 || runIO(path, fd, oflags, length) < 0)
305 306
        goto error;

307 308 309
    if (delete)
        unlink(path);

310 311
    return 0;

312
 error:
313 314
    err = virGetLastError();
    if (err) {
315
        fprintf(stderr, "%s: %s\n", program_name, err->message);
316
    } else {
317 318
        fprintf(stderr, _("%s: unknown failure with %s\n"),
                program_name, path);
319 320 321
    }
    exit(EXIT_FAILURE);
}