zip_extra_field_api.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. /*
  2. zip_extra_field_api.c -- public extra fields API functions
  3. Copyright (C) 2012-2015 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 "zipint.h"
  31. ZIP_EXTERN int
  32. zip_file_extra_field_delete(struct zip *za, zip_uint64_t idx, zip_uint16_t ef_idx, zip_flags_t flags)
  33. {
  34. struct zip_dirent *de;
  35. if ((flags & ZIP_EF_BOTH) == 0) {
  36. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  37. return -1;
  38. }
  39. if (((flags & ZIP_EF_BOTH) == ZIP_EF_BOTH) && (ef_idx != ZIP_EXTRA_FIELD_ALL)) {
  40. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  41. return -1;
  42. }
  43. if (_zip_get_dirent(za, idx, 0, NULL) == NULL)
  44. return -1;
  45. if (ZIP_IS_RDONLY(za)) {
  46. _zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
  47. return -1;
  48. }
  49. if (_zip_file_extra_field_prepare_for_change(za, idx) < 0)
  50. return -1;
  51. de = za->entry[idx].changes;
  52. de->extra_fields = _zip_ef_delete_by_id(de->extra_fields, ZIP_EXTRA_FIELD_ALL, ef_idx, flags);
  53. return 0;
  54. }
  55. ZIP_EXTERN int
  56. zip_file_extra_field_delete_by_id(struct zip *za, zip_uint64_t idx, zip_uint16_t ef_id, zip_uint16_t ef_idx, zip_flags_t flags)
  57. {
  58. struct zip_dirent *de;
  59. if ((flags & ZIP_EF_BOTH) == 0) {
  60. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  61. return -1;
  62. }
  63. if (((flags & ZIP_EF_BOTH) == ZIP_EF_BOTH) && (ef_idx != ZIP_EXTRA_FIELD_ALL)) {
  64. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  65. return -1;
  66. }
  67. if (_zip_get_dirent(za, idx, 0, NULL) == NULL)
  68. return -1;
  69. if (ZIP_IS_RDONLY(za)) {
  70. _zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
  71. return -1;
  72. }
  73. if (_zip_file_extra_field_prepare_for_change(za, idx) < 0)
  74. return -1;
  75. de = za->entry[idx].changes;
  76. de->extra_fields = _zip_ef_delete_by_id(de->extra_fields, ef_id, ef_idx, flags);
  77. return 0;
  78. }
  79. ZIP_EXTERN const zip_uint8_t *
  80. zip_file_extra_field_get(struct zip *za, zip_uint64_t idx, zip_uint16_t ef_idx, zip_uint16_t *idp, zip_uint16_t *lenp, zip_flags_t flags)
  81. {
  82. static const zip_uint8_t empty[1] = { '\0' };
  83. struct zip_dirent *de;
  84. struct zip_extra_field *ef;
  85. int i;
  86. if ((flags & ZIP_EF_BOTH) == 0) {
  87. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  88. return NULL;
  89. }
  90. if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL)
  91. return NULL;
  92. if (flags & ZIP_FL_LOCAL)
  93. if (_zip_read_local_ef(za, idx) < 0)
  94. return NULL;
  95. i = 0;
  96. for (ef=de->extra_fields; ef; ef=ef->next) {
  97. if (ef->flags & flags & ZIP_EF_BOTH) {
  98. if (i < ef_idx) {
  99. i++;
  100. continue;
  101. }
  102. if (idp)
  103. *idp = ef->id;
  104. if (lenp)
  105. *lenp = ef->size;
  106. if (ef->size > 0)
  107. return ef->data;
  108. else
  109. return empty;
  110. }
  111. }
  112. _zip_error_set(&za->error, ZIP_ER_NOENT, 0);
  113. return NULL;
  114. }
  115. ZIP_EXTERN const zip_uint8_t *
  116. zip_file_extra_field_get_by_id(struct zip *za, zip_uint64_t idx, zip_uint16_t ef_id, zip_uint16_t ef_idx, zip_uint16_t *lenp, zip_flags_t flags)
  117. {
  118. struct zip_dirent *de;
  119. if ((flags & ZIP_EF_BOTH) == 0) {
  120. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  121. return NULL;
  122. }
  123. if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL)
  124. return NULL;
  125. if (flags & ZIP_FL_LOCAL)
  126. if (_zip_read_local_ef(za, idx) < 0)
  127. return NULL;
  128. return _zip_ef_get_by_id(de->extra_fields, lenp, ef_id, ef_idx, flags, &za->error);
  129. }
  130. ZIP_EXTERN zip_int16_t
  131. zip_file_extra_fields_count(struct zip *za, zip_uint64_t idx, zip_flags_t flags)
  132. {
  133. struct zip_dirent *de;
  134. struct zip_extra_field *ef;
  135. zip_uint16_t n;
  136. if ((flags & ZIP_EF_BOTH) == 0) {
  137. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  138. return -1;
  139. }
  140. if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL)
  141. return -1;
  142. if (flags & ZIP_FL_LOCAL)
  143. if (_zip_read_local_ef(za, idx) < 0)
  144. return -1;
  145. n = 0;
  146. for (ef=de->extra_fields; ef; ef=ef->next)
  147. if (ef->flags & flags & ZIP_EF_BOTH)
  148. n++;
  149. return (zip_int16_t)n;
  150. }
  151. ZIP_EXTERN zip_int16_t
  152. zip_file_extra_fields_count_by_id(struct zip *za, zip_uint64_t idx, zip_uint16_t ef_id, zip_flags_t flags)
  153. {
  154. struct zip_dirent *de;
  155. struct zip_extra_field *ef;
  156. zip_uint16_t n;
  157. if ((flags & ZIP_EF_BOTH) == 0) {
  158. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  159. return -1;
  160. }
  161. if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL)
  162. return -1;
  163. if (flags & ZIP_FL_LOCAL)
  164. if (_zip_read_local_ef(za, idx) < 0)
  165. return -1;
  166. n = 0;
  167. for (ef=de->extra_fields; ef; ef=ef->next)
  168. if (ef->id == ef_id && (ef->flags & flags & ZIP_EF_BOTH))
  169. n++;
  170. return (zip_int16_t)n;
  171. }
  172. ZIP_EXTERN int
  173. zip_file_extra_field_set(struct zip *za, zip_uint64_t idx, zip_uint16_t ef_id, zip_uint16_t ef_idx, const zip_uint8_t *data, zip_uint16_t len, zip_flags_t flags)
  174. {
  175. struct zip_dirent *de;
  176. zip_uint16_t ls, cs;
  177. struct zip_extra_field *ef, *ef_prev, *ef_new;
  178. int i, found, new_len;
  179. if ((flags & ZIP_EF_BOTH) == 0) {
  180. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  181. return -1;
  182. }
  183. if (_zip_get_dirent(za, idx, 0, NULL) == NULL)
  184. return -1;
  185. if (ZIP_IS_RDONLY(za)) {
  186. _zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
  187. return -1;
  188. }
  189. if (ZIP_EF_IS_INTERNAL(ef_id)) {
  190. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  191. return -1;
  192. }
  193. if (_zip_file_extra_field_prepare_for_change(za, idx) < 0)
  194. return -1;
  195. de = za->entry[idx].changes;
  196. ef = de->extra_fields;
  197. ef_prev = NULL;
  198. i = 0;
  199. found = 0;
  200. for (; ef; ef=ef->next) {
  201. if (ef->id == ef_id && (ef->flags & flags & ZIP_EF_BOTH)) {
  202. if (i == ef_idx) {
  203. found = 1;
  204. break;
  205. }
  206. i++;
  207. }
  208. ef_prev = ef;
  209. }
  210. if (i < ef_idx && ef_idx != ZIP_EXTRA_FIELD_NEW) {
  211. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  212. return -1;
  213. }
  214. if (flags & ZIP_EF_LOCAL)
  215. ls = _zip_ef_size(de->extra_fields, ZIP_EF_LOCAL);
  216. else
  217. ls = 0;
  218. if (flags & ZIP_EF_CENTRAL)
  219. cs = _zip_ef_size(de->extra_fields, ZIP_EF_CENTRAL);
  220. else
  221. cs = 0;
  222. new_len = ls > cs ? ls : cs;
  223. if (found)
  224. new_len -= ef->size + 4;
  225. new_len += len + 4;
  226. if (new_len > ZIP_UINT16_MAX) {
  227. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  228. return -1;
  229. }
  230. if ((ef_new=_zip_ef_new(ef_id, len, data, flags)) == NULL) {
  231. _zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
  232. return -1;
  233. }
  234. if (found) {
  235. if ((ef->flags & ZIP_EF_BOTH) == (flags & ZIP_EF_BOTH)) {
  236. ef_new->next = ef->next;
  237. ef->next = NULL;
  238. _zip_ef_free(ef);
  239. if (ef_prev)
  240. ef_prev->next = ef_new;
  241. else
  242. de->extra_fields = ef_new;
  243. }
  244. else {
  245. ef->flags &= ~(flags & ZIP_EF_BOTH);
  246. ef_new->next = ef->next;
  247. ef->next = ef_new;
  248. }
  249. }
  250. else if (ef_prev) {
  251. ef_new->next = ef_prev->next;
  252. ef_prev->next = ef_new;
  253. }
  254. else
  255. de->extra_fields = ef_new;
  256. return 0;
  257. }
  258. int
  259. _zip_file_extra_field_prepare_for_change(struct zip *za, zip_uint64_t idx)
  260. {
  261. struct zip_entry *e;
  262. if (idx >= za->nentry) {
  263. _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
  264. return -1;
  265. }
  266. e = za->entry+idx;
  267. if (e->changes && (e->changes->changed & ZIP_DIRENT_EXTRA_FIELD))
  268. return 0;
  269. if (e->orig) {
  270. if (_zip_read_local_ef(za, idx) < 0)
  271. return -1;
  272. }
  273. if (e->changes == NULL) {
  274. if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) {
  275. _zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
  276. return -1;
  277. }
  278. }
  279. if (e->orig && e->orig->extra_fields) {
  280. if ((e->changes->extra_fields=_zip_ef_clone(e->orig->extra_fields, &za->error)) == NULL)
  281. return -1;
  282. }
  283. e->changes->changed |= ZIP_DIRENT_EXTRA_FIELD;
  284. return 0;
  285. }