123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608 |
- /*
- This file is part of GNUnet.
- Copyright (C) 2006, 2009, 2013 GNUnet e.V.
- GNUnet is free software: you can redistribute it and/or modify it
- under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, either version 3 of the License,
- or (at your option) any later version.
- GNUnet 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
- Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- SPDX-License-Identifier: AGPL3.0-or-later
- */
- /**
- * @file util/bio.c
- * @brief functions for buffering IO
- * @author Christian Grothoff
- */
- #include "platform.h"
- #include "gnunet_util_lib.h"
- #define LOG(kind, ...) GNUNET_log_from (kind, "util-bio", __VA_ARGS__)
- #ifndef PATH_MAX
- /**
- * Assumed maximum path length (for source file names).
- */
- #define PATH_MAX 4096
- #endif
- /**
- * Size for I/O buffers.
- */
- #define BIO_BUFFER_SIZE 65536
- /**
- * Maximum size allowed for meta data written/read from disk.
- * File-sharing limits to 64k, so this should be rather generous.
- */
- #define MAX_META_DATA (1024 * 1024)
- /**
- * Handle for buffered reading.
- */
- struct GNUNET_BIO_ReadHandle
- {
- /**
- * Underlying file abstraction.
- */
- struct GNUNET_DISK_FileHandle *fd;
- /**
- * Error message, NULL if there were no errors.
- */
- char *emsg;
- /**
- * I/O buffer. Allocated at the end of the struct, do not free!
- */
- char *buffer;
- /**
- * Number of bytes available in read @e buffer.
- */
- size_t have;
- /**
- * Total size of @e buffer.
- */
- size_t size;
- /**
- * Current read offset in @e buffer.
- */
- off_t pos;
- };
- /**
- * Open a file for reading.
- *
- * @param fn file name to be opened
- * @return IO handle on success, NULL on error
- */
- struct GNUNET_BIO_ReadHandle *
- GNUNET_BIO_read_open (const char *fn)
- {
- struct GNUNET_DISK_FileHandle *fd;
- struct GNUNET_BIO_ReadHandle *h;
- fd = GNUNET_DISK_file_open (fn, GNUNET_DISK_OPEN_READ, GNUNET_DISK_PERM_NONE);
- if (NULL == fd)
- return NULL;
- h = GNUNET_malloc (sizeof(struct GNUNET_BIO_ReadHandle) + BIO_BUFFER_SIZE);
- h->buffer = (char *) &h[1];
- h->size = BIO_BUFFER_SIZE;
- h->fd = fd;
- return h;
- }
- /**
- * Close an open file. Reports if any errors reading
- * from the file were encountered.
- *
- * @param h file handle
- * @param emsg set to the error message
- * @return #GNUNET_OK on success, #GNUNET_SYSERR otherwise
- */
- int
- GNUNET_BIO_read_close (struct GNUNET_BIO_ReadHandle *h, char **emsg)
- {
- int err;
- err = (NULL == h->emsg) ? GNUNET_OK : GNUNET_SYSERR;
- if (emsg != NULL)
- *emsg = h->emsg;
- else
- GNUNET_free_non_null (h->emsg);
- GNUNET_DISK_file_close (h->fd);
- GNUNET_free (h);
- return err;
- }
- /**
- * Read the contents of a binary file into a buffer.
- *
- * @param h handle to an open file
- * @param what describes what is being read (for error message creation)
- * @param result the buffer to write the result to
- * @param len the number of bytes to read
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
- */
- int
- GNUNET_BIO_read (struct GNUNET_BIO_ReadHandle *h,
- const char *what,
- void *result,
- size_t len)
- {
- char *dst = result;
- size_t min;
- size_t pos;
- ssize_t ret;
- if (NULL != h->emsg)
- return GNUNET_SYSERR;
- pos = 0;
- do
- {
- /* first, use buffer */
- min = h->have - h->pos;
- if (min > 0)
- {
- if (min > len - pos)
- min = len - pos;
- GNUNET_memcpy (&dst[pos], &h->buffer[h->pos], min);
- h->pos += min;
- pos += min;
- }
- if (pos == len)
- return GNUNET_OK; /* done! */
- GNUNET_assert (((off_t) h->have) == h->pos);
- /* fill buffer */
- ret = GNUNET_DISK_file_read (h->fd, h->buffer, h->size);
- if (-1 == ret)
- {
- GNUNET_asprintf (&h->emsg,
- _ ("Error reading `%s': %s"),
- what,
- strerror (errno));
- return GNUNET_SYSERR;
- }
- if (0 == ret)
- {
- GNUNET_asprintf (&h->emsg,
- _ ("Error reading `%s': %s"),
- what,
- _ ("End of file"));
- return GNUNET_SYSERR;
- }
- h->pos = 0;
- h->have = ret;
- }
- while (pos < len); /* should always be true */
- return GNUNET_OK;
- }
- /**
- * Read the contents of a binary file into a buffer.
- *
- * @param h handle to an open file
- * @param file name of the source file
- * @param line line number in the source file
- * @param result the buffer to write the result to
- * @param len the number of bytes to read
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
- */
- int
- GNUNET_BIO_read_fn (struct GNUNET_BIO_ReadHandle *h,
- const char *file,
- int line,
- void *result,
- size_t len)
- {
- char what[PATH_MAX + 1024];
- GNUNET_snprintf (what, sizeof(what), "%s:%d", file, line);
- return GNUNET_BIO_read (h, what, result, len);
- }
- /**
- * Read 0-terminated string from a file.
- *
- * @param h handle to an open file
- * @param what describes what is being read (for error message creation)
- * @param result the buffer to store a pointer to the (allocated) string to
- * (note that *result could be set to NULL as well)
- * @param max_length maximum allowed length for the string
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
- */
- int
- GNUNET_BIO_read_string (struct GNUNET_BIO_ReadHandle *h,
- const char *what,
- char **result,
- size_t max_length)
- {
- char *buf;
- uint32_t big;
- if (GNUNET_OK != GNUNET_BIO_read_int32 (h, &big))
- {
- GNUNET_free_non_null (h->emsg);
- GNUNET_asprintf (&h->emsg, _ ("Error reading length of string `%s'"), what);
- return GNUNET_SYSERR;
- }
- if (0 == big)
- {
- *result = NULL;
- return GNUNET_OK;
- }
- if (big > max_length)
- {
- GNUNET_asprintf (&h->emsg,
- _ ("String `%s' longer than allowed (%u > %u)"),
- what,
- big,
- max_length);
- return GNUNET_SYSERR;
- }
- buf = GNUNET_malloc (big);
- *result = buf;
- buf[--big] = '\0';
- if (0 == big)
- return GNUNET_OK;
- if (GNUNET_OK != GNUNET_BIO_read (h, what, buf, big))
- {
- GNUNET_free (buf);
- *result = NULL;
- return GNUNET_SYSERR;
- }
- return GNUNET_OK;
- }
- /**
- * Read metadata container from a file.
- *
- * @param h handle to an open file
- * @param what describes what is being read (for error message creation)
- * @param result the buffer to store a pointer to the (allocated) metadata
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
- */
- int
- GNUNET_BIO_read_meta_data (struct GNUNET_BIO_ReadHandle *h,
- const char *what,
- struct GNUNET_CONTAINER_MetaData **result)
- {
- uint32_t size;
- char *buf;
- struct GNUNET_CONTAINER_MetaData *meta;
- if (GNUNET_OK != GNUNET_BIO_read_int32 (h, (int32_t *) &size))
- return GNUNET_SYSERR;
- if (size == 0)
- {
- *result = NULL;
- return GNUNET_OK;
- }
- if (size > MAX_META_DATA)
- {
- GNUNET_asprintf (&h->emsg,
- _ ("Serialized metadata `%s' larger than allowed (%u>%u)"),
- what,
- size,
- MAX_META_DATA);
- return GNUNET_SYSERR;
- }
- buf = GNUNET_malloc (size);
- if (GNUNET_OK != GNUNET_BIO_read (h, what, buf, size))
- {
- GNUNET_free (buf);
- return GNUNET_SYSERR;
- }
- meta = GNUNET_CONTAINER_meta_data_deserialize (buf, size);
- if (NULL == meta)
- {
- GNUNET_free (buf);
- GNUNET_asprintf (&h->emsg, _ ("Metadata `%s' failed to deserialize"), what);
- return GNUNET_SYSERR;
- }
- GNUNET_free (buf);
- *result = meta;
- return GNUNET_OK;
- }
- /**
- * Read an (u)int32_t.
- *
- * @param h hande to open file
- * @param file name of the source file
- * @param line line number in the source file
- * @param i address of 32-bit integer to read
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
- */
- int
- GNUNET_BIO_read_int32__ (struct GNUNET_BIO_ReadHandle *h,
- const char *file,
- int line,
- int32_t *i)
- {
- int32_t big;
- if (GNUNET_OK != GNUNET_BIO_read_fn (h, file, line, &big, sizeof(int32_t)))
- return GNUNET_SYSERR;
- *i = ntohl (big);
- return GNUNET_OK;
- }
- /**
- * Read an (u)int64_t.
- *
- * @param h hande to open file
- * @param file name of the source file
- * @param line line number in the source file
- * @param i address of 64-bit integer to read
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
- */
- int
- GNUNET_BIO_read_int64__ (struct GNUNET_BIO_ReadHandle *h,
- const char *file,
- int line,
- int64_t *i)
- {
- int64_t big;
- if (GNUNET_OK != GNUNET_BIO_read_fn (h, file, line, &big, sizeof(int64_t)))
- return GNUNET_SYSERR;
- *i = GNUNET_ntohll (big);
- return GNUNET_OK;
- }
- /**
- * Handle for buffered writing.
- */
- struct GNUNET_BIO_WriteHandle
- {
- /**
- * Underlying file handle.
- */
- struct GNUNET_DISK_FileHandle *fd;
- /**
- * I/O buffer. Do not free, allocated at the end of the struct.
- */
- char *buffer;
- /**
- * Number of bytes already in @e buffer.
- */
- size_t have;
- /**
- * Total size of @e buffer.
- */
- size_t size;
- };
- /**
- * Open a file for writing.
- *
- * @param fn file name to be opened
- * @return IO handle on success, NULL on error
- */
- struct GNUNET_BIO_WriteHandle *
- GNUNET_BIO_write_open (const char *fn)
- {
- struct GNUNET_DISK_FileHandle *fd;
- struct GNUNET_BIO_WriteHandle *h;
- fd =
- GNUNET_DISK_file_open (fn,
- GNUNET_DISK_OPEN_WRITE | GNUNET_DISK_OPEN_TRUNCATE
- | GNUNET_DISK_OPEN_CREATE,
- GNUNET_DISK_PERM_USER_READ
- | GNUNET_DISK_PERM_USER_WRITE);
- if (NULL == fd)
- return NULL;
- h = GNUNET_malloc (sizeof(struct GNUNET_BIO_WriteHandle) + BIO_BUFFER_SIZE);
- h->buffer = (char *) &h[1];
- h->size = BIO_BUFFER_SIZE;
- h->fd = fd;
- return h;
- }
- /**
- * Close an open file for writing.
- *
- * @param h file handle
- * @return #GNUNET_OK on success, #GNUNET_SYSERR otherwise
- */
- int
- GNUNET_BIO_write_close (struct GNUNET_BIO_WriteHandle *h)
- {
- int ret;
- ret = GNUNET_SYSERR;
- if ((NULL != h->fd) && (GNUNET_OK == (ret = GNUNET_BIO_flush (h))))
- GNUNET_DISK_file_close (h->fd);
- GNUNET_free (h);
- return ret;
- }
- /**
- * Force a buffered writer to flush its buffer
- *
- * @param h the writer handle
- * @return #GNUNET_OK upon success. Upon failure #GNUNET_SYSERR is returned and
- * the file is closed
- */
- int
- GNUNET_BIO_flush (struct GNUNET_BIO_WriteHandle *h)
- {
- ssize_t ret;
- ret = GNUNET_DISK_file_write (h->fd, h->buffer, h->have);
- if (ret != (ssize_t) h->have)
- {
- GNUNET_DISK_file_close (h->fd);
- h->fd = NULL;
- return GNUNET_SYSERR; /* error */
- }
- h->have = 0;
- return GNUNET_OK;
- }
- /**
- * Write a buffer to a file.
- *
- * @param h handle to open file
- * @param buffer the data to write
- * @param n number of bytes to write
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
- */
- int
- GNUNET_BIO_write (struct GNUNET_BIO_WriteHandle *h,
- const void *buffer,
- size_t n)
- {
- const char *src = buffer;
- size_t min;
- size_t pos;
- if (NULL == h->fd)
- return GNUNET_SYSERR;
- pos = 0;
- do
- {
- /* first, just use buffer */
- min = h->size - h->have;
- if (min > n - pos)
- min = n - pos;
- GNUNET_memcpy (&h->buffer[h->have], &src[pos], min);
- pos += min;
- h->have += min;
- if (pos == n)
- return GNUNET_OK; /* done */
- GNUNET_assert (h->have == h->size);
- if (GNUNET_OK != GNUNET_BIO_flush (h))
- return GNUNET_SYSERR; /* error */
- }
- while (pos < n); /* should always be true */
- GNUNET_break (0);
- return GNUNET_OK;
- }
- /**
- * Write a string to a file.
- *
- * @param h handle to open file
- * @param s string to write (can be NULL)
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
- */
- int
- GNUNET_BIO_write_string (struct GNUNET_BIO_WriteHandle *h, const char *s)
- {
- uint32_t slen;
- slen = (uint32_t) ((s == NULL) ? 0 : strlen (s) + 1);
- if (GNUNET_OK != GNUNET_BIO_write_int32 (h, slen))
- return GNUNET_SYSERR;
- if (0 != slen)
- return GNUNET_BIO_write (h, s, slen - 1);
- return GNUNET_OK;
- }
- /**
- * Write metadata container to a file.
- *
- * @param h handle to open file
- * @param m metadata to write
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
- */
- int
- GNUNET_BIO_write_meta_data (struct GNUNET_BIO_WriteHandle *h,
- const struct GNUNET_CONTAINER_MetaData *m)
- {
- ssize_t size;
- char *buf;
- if (m == NULL)
- return GNUNET_BIO_write_int32 (h, 0);
- buf = NULL;
- size = GNUNET_CONTAINER_meta_data_serialize (
- m,
- &buf,
- MAX_META_DATA,
- GNUNET_CONTAINER_META_DATA_SERIALIZE_PART);
- if (size == -1)
- {
- GNUNET_free (buf);
- return GNUNET_SYSERR;
- }
- if ((GNUNET_OK != GNUNET_BIO_write_int32 (h, (uint32_t) size)) ||
- (GNUNET_OK != GNUNET_BIO_write (h, buf, size)))
- {
- GNUNET_free (buf);
- return GNUNET_SYSERR;
- }
- GNUNET_free (buf);
- return GNUNET_OK;
- }
- /**
- * Write an (u)int32_t.
- *
- * @param h hande to open file
- * @param i 32-bit integer to write
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
- */
- int
- GNUNET_BIO_write_int32 (struct GNUNET_BIO_WriteHandle *h, int32_t i)
- {
- int32_t big;
- big = htonl (i);
- return GNUNET_BIO_write (h, &big, sizeof(int32_t));
- }
- /**
- * Write an (u)int64_t.
- *
- * @param h hande to open file
- * @param i 64-bit integer to write
- * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
- */
- int
- GNUNET_BIO_write_int64 (struct GNUNET_BIO_WriteHandle *h, int64_t i)
- {
- int64_t big;
- big = GNUNET_htonll (i);
- return GNUNET_BIO_write (h, &big, sizeof(int64_t));
- }
- /* end of bio.c */
|