From af0bd7a9b445b51a76cec533f8da13830935d221 Mon Sep 17 00:00:00 2001 From: Rafal Wojtczuk Date: Fri, 11 Mar 2011 11:47:20 +0100 Subject: [PATCH] Moved ioall.c file to "common" --- common/ioall.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++ common/ioall.h | 2 ++ 2 files changed, 63 insertions(+) create mode 100644 common/ioall.c create mode 100644 common/ioall.h diff --git a/common/ioall.c b/common/ioall.c new file mode 100644 index 0000000..ce550c7 --- /dev/null +++ b/common/ioall.c @@ -0,0 +1,61 @@ +/* + * The Qubes OS Project, http://www.qubes-os.org + * + * Copyright (C) 2010 Rafal Wojtczuk + * + * 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 the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#include +#include +#include +#include + +int write_all(int fd, void *buf, int size) +{ + int written = 0; + int ret; + while (written < size) { + ret = write(fd, (char *) buf + written, size - written); + if (ret <= 0) { + perror("write"); + return 0; + } + written += ret; + } +// fprintf(stderr, "sent %d bytes\n", size); + return 1; +} + +int read_all(int fd, void *buf, int size) +{ + int got_read = 0; + int ret; + while (got_read < size) { + ret = read(fd, (char *) buf + got_read, size - got_read); + if (ret == 0) { + fprintf(stderr, "EOF\n"); + return 0; + } + if (ret < 0) { + perror("read"); + return 0; + } + got_read += ret; + } +// fprintf(stderr, "read %d bytes\n", size); + return 1; +} diff --git a/common/ioall.h b/common/ioall.h new file mode 100644 index 0000000..1e76353 --- /dev/null +++ b/common/ioall.h @@ -0,0 +1,2 @@ +int write_all(int fd, void *buf, int size); +int read_all(int fd, void *buf, int size);