zip_source_buffer.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. zip_source_buffer.c -- create zip data source from buffer
  3. Copyright (C) 1999-2009 Dieter Baron and Thomas Klausner
  4. This file is part of libzip, a library to manipulate ZIP archives.
  5. The authors can be contacted at <libzip@nih.at>
  6. Redistribution and use in source and binary forms, with or without
  7. modification, are permitted provided that the following conditions
  8. are met:
  9. 1. Redistributions of source code must retain the above copyright
  10. notice, 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
  13. the documentation and/or other materials provided with the
  14. distribution.
  15. 3. The names of the authors may not be used to endorse or promote
  16. products derived from this software without specific prior
  17. written permission.
  18. THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
  19. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
  22. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  24. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  25. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  26. IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  27. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  28. IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include "zipint.h"
  33. struct read_data {
  34. const char *buf, *data, *end;
  35. time_t mtime;
  36. int freep;
  37. };
  38. static zip_int64_t read_data(void *, void *, zip_uint64_t, enum zip_source_cmd);
  39. ZIP_EXTERN struct zip_source *
  40. zip_source_buffer(struct zip *za, const void *data, zip_uint64_t len, int freep)
  41. {
  42. struct read_data *f;
  43. struct zip_source *zs;
  44. if (za == NULL)
  45. return NULL;
  46. if (data == NULL && len > 0) {
  47. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  48. return NULL;
  49. }
  50. if ((f=(struct read_data *)malloc(sizeof(*f))) == NULL) {
  51. _zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
  52. return NULL;
  53. }
  54. f->data = (const char *)data;
  55. f->end = ((const char *)data)+len;
  56. f->freep = freep;
  57. f->mtime = time(NULL);
  58. if ((zs=zip_source_function(za, read_data, f)) == NULL) {
  59. free(f);
  60. return NULL;
  61. }
  62. return zs;
  63. }
  64. static zip_int64_t
  65. read_data(void *state, void *data, zip_uint64_t len, enum zip_source_cmd cmd)
  66. {
  67. struct read_data *z;
  68. char *buf;
  69. zip_uint64_t n;
  70. z = (struct read_data *)state;
  71. buf = (char *)data;
  72. switch (cmd) {
  73. case ZIP_SOURCE_OPEN:
  74. z->buf = z->data;
  75. return 0;
  76. case ZIP_SOURCE_READ:
  77. n = (zip_uint64_t)(z->end - z->buf);
  78. if (n > len)
  79. n = len;
  80. if (n) {
  81. memcpy(buf, z->buf, n);
  82. z->buf += n;
  83. }
  84. return (zip_int64_t)n;
  85. case ZIP_SOURCE_CLOSE:
  86. return 0;
  87. case ZIP_SOURCE_STAT:
  88. {
  89. struct zip_stat *st;
  90. if (len < sizeof(*st))
  91. return -1;
  92. st = (struct zip_stat *)data;
  93. zip_stat_init(st);
  94. st->mtime = z->mtime;
  95. st->size = (zip_uint64_t)(z->end - z->data);
  96. st->comp_size = st->size;
  97. st->comp_method = ZIP_CM_STORE;
  98. st->encryption_method = ZIP_EM_NONE;
  99. st->valid = ZIP_STAT_MTIME|ZIP_STAT_SIZE|ZIP_STAT_COMP_SIZE
  100. |ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD;
  101. return sizeof(*st);
  102. }
  103. case ZIP_SOURCE_ERROR:
  104. {
  105. int *e;
  106. if (len < sizeof(int)*2)
  107. return -1;
  108. e = (int *)data;
  109. e[0] = e[1] = 0;
  110. }
  111. return sizeof(int)*2;
  112. case ZIP_SOURCE_FREE:
  113. if (z->freep) {
  114. free((void *)z->data);
  115. z->data = NULL;
  116. }
  117. free(z);
  118. return 0;
  119. default:
  120. ;
  121. }
  122. return -1;
  123. }