buffer.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright (c) Christos Zoulas 2017.
  3. * All Rights Reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice immediately at the beginning of the file, without modification,
  10. * this list of conditions, and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  16. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  19. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  21. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  25. * SUCH DAMAGE.
  26. */
  27. #include "file.h"
  28. #ifndef lint
  29. FILE_RCSID("@(#)$File: buffer.c,v 1.13 2023/07/02 12:48:39 christos Exp $")
  30. #endif /* lint */
  31. #include "magic.h"
  32. #include <unistd.h>
  33. #include <string.h>
  34. #include <stdlib.h>
  35. #include <sys/stat.h>
  36. void
  37. buffer_init(struct buffer *b, int fd, const struct stat *st, const void *data,
  38. size_t len)
  39. {
  40. b->fd = fd;
  41. if (st)
  42. memcpy(&b->st, st, sizeof(b->st));
  43. else if (b->fd == -1 || fstat(b->fd, &b->st) == -1)
  44. memset(&b->st, 0, sizeof(b->st));
  45. b->fbuf = data;
  46. b->flen = len;
  47. b->eoff = 0;
  48. b->ebuf = NULL;
  49. b->elen = 0;
  50. }
  51. void
  52. buffer_fini(struct buffer *b)
  53. {
  54. free(b->ebuf);
  55. b->ebuf = NULL;
  56. b->elen = 0;
  57. }
  58. int
  59. buffer_fill(const struct buffer *bb)
  60. {
  61. struct buffer *b = CCAST(struct buffer *, bb);
  62. if (b->elen != 0)
  63. return b->elen == FILE_BADSIZE ? -1 : 0;
  64. if (!S_ISREG(b->st.st_mode))
  65. goto out;
  66. b->elen = CAST(size_t, b->st.st_size) < b->flen ?
  67. CAST(size_t, b->st.st_size) : b->flen;
  68. if (b->elen == 0) {
  69. free(b->ebuf);
  70. b->ebuf = NULL;
  71. return 0;
  72. }
  73. if ((b->ebuf = malloc(b->elen)) == NULL)
  74. goto out;
  75. b->eoff = b->st.st_size - b->elen;
  76. if (pread(b->fd, b->ebuf, b->elen, b->eoff) == -1) {
  77. free(b->ebuf);
  78. b->ebuf = NULL;
  79. goto out;
  80. }
  81. return 0;
  82. out:
  83. b->elen = FILE_BADSIZE;
  84. return -1;
  85. }