/* * Copyright (c) 1995 - 2000 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include #include #include #include #include #include #ifdef RCSID RCSID("$KTH: read-write.c,v 1.5 2000/10/03 00:35:29 lha Exp $"); #endif static char * write_random_file (int fd, size_t sz) { char *buf; int i; buf = malloc (sz); if (buf == NULL) err (1, "malloc %u", sz); for (i = 0; i < sz; ++i) buf[i] = rand(); if (write (fd, buf, sz) != sz) err (1, "write"); return buf; } static void write_null_file (int fd, size_t sz) { char *buf; int i; buf = malloc (sz); if (buf == NULL) err (1, "malloc %u", sz); for (i = 0; i < sz; ++i) buf[i] = 0; if (write (fd, buf, sz) != sz) err (1, "write"); free (buf); } static char * read_file (int fd, size_t sz) { char *buf; buf = malloc (sz); if (buf == NULL) err (1, "malloc %u", sz); if (read(fd, buf, sz) != sz) err (1, "read"); return buf; } #ifndef MAP_FAILED #define MAP_FAILED ((void *)-1) #endif int main (int argc, char **argv) { const char *file = "foo"; const size_t sz = 16384; char *random_buf; char *read_buf1; char *read_buf2; int fd; set_progname (argv[0]); srand (time(NULL)); fd = open (file, O_RDWR | O_CREAT, 0); if (fd < 0) err (1, "open %s", file); if (lseek(fd, 0, SEEK_SET) < 0) err (1, "lseek"); write_null_file(fd, sz); if (lseek(fd, 0, SEEK_SET) < 0) err (1, "lseek"); read_buf1 = read_file (fd, sz); if (lseek(fd, 0, SEEK_SET) < 0) err (1, "lseek"); random_buf = write_random_file(fd, sz); if (lseek(fd, 0, SEEK_SET) < 0) err (1, "lseek"); read_buf2 = read_file (fd, sz); close (fd); unlink (file); if (memcmp (random_buf, read_buf2, sz) != 0) return 1; return 0; }