/src/libzip/lib/zip_file_replace.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | zip_file_replace.c -- replace file via callback function |
3 | | Copyright (C) 1999-2024 Dieter Baron and Thomas Klausner |
4 | | |
5 | | This file is part of libzip, a library to manipulate ZIP archives. |
6 | | The authors can be contacted at <info@libzip.org> |
7 | | |
8 | | Redistribution and use in source and binary forms, with or without |
9 | | modification, are permitted provided that the following conditions |
10 | | are met: |
11 | | 1. Redistributions of source code must retain the above copyright |
12 | | notice, this list of conditions and the following disclaimer. |
13 | | 2. Redistributions in binary form must reproduce the above copyright |
14 | | notice, this list of conditions and the following disclaimer in |
15 | | the documentation and/or other materials provided with the |
16 | | distribution. |
17 | | 3. The names of the authors may not be used to endorse or promote |
18 | | products derived from this software without specific prior |
19 | | written permission. |
20 | | |
21 | | THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS |
22 | | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
23 | | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
24 | | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY |
25 | | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
26 | | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
27 | | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
28 | | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
29 | | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
30 | | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
31 | | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
32 | | */ |
33 | | |
34 | | |
35 | | #include "zipint.h" |
36 | | |
37 | | |
38 | | ZIP_EXTERN int |
39 | 0 | zip_file_replace(zip_t *za, zip_uint64_t idx, zip_source_t *source, zip_flags_t flags) { |
40 | 0 | if (idx >= za->nentry || source == NULL) { |
41 | 0 | zip_error_set(&za->error, ZIP_ER_INVAL, 0); |
42 | 0 | return -1; |
43 | 0 | } |
44 | | |
45 | 0 | if (_zip_file_replace(za, idx, NULL, source, flags) == -1) |
46 | 0 | return -1; |
47 | | |
48 | 0 | return 0; |
49 | 0 | } |
50 | | |
51 | | |
52 | | /* NOTE: Signed due to -1 on error. See zip_add.c for more details. */ |
53 | | |
54 | | zip_int64_t |
55 | 925 | _zip_file_replace(zip_t *za, zip_uint64_t idx, const char *name, zip_source_t *source, zip_flags_t flags) { |
56 | 925 | zip_uint64_t za_nentry_prev; |
57 | | |
58 | 925 | if (ZIP_IS_RDONLY(za)) { |
59 | 0 | zip_error_set(&za->error, ZIP_ER_RDONLY, 0); |
60 | 0 | return -1; |
61 | 0 | } |
62 | | |
63 | 925 | za_nentry_prev = za->nentry; |
64 | 925 | if (idx == ZIP_UINT64_MAX) { |
65 | 925 | zip_int64_t i = -1; |
66 | | |
67 | 925 | if (flags & ZIP_FL_OVERWRITE) |
68 | 925 | i = _zip_name_locate(za, name, flags, NULL); |
69 | | |
70 | 925 | if (i == -1) { |
71 | | /* create and use new entry, used by zip_add */ |
72 | 925 | if ((i = _zip_add_entry(za)) < 0) |
73 | 0 | return -1; |
74 | 925 | } |
75 | 925 | idx = (zip_uint64_t)i; |
76 | 925 | } |
77 | | |
78 | 925 | if (name && _zip_set_name(za, idx, name, flags) != 0) { |
79 | 0 | if (za->nentry != za_nentry_prev) { |
80 | 0 | _zip_entry_finalize(za->entry + idx); |
81 | 0 | za->nentry = za_nentry_prev; |
82 | 0 | } |
83 | 0 | return -1; |
84 | 0 | } |
85 | | |
86 | | /* delete all extra fields - these are usually data that are |
87 | | * strongly coupled with the original data */ |
88 | 925 | if (zip_file_extra_field_delete(za, idx, ZIP_EXTRA_FIELD_ALL, ZIP_FL_CENTRAL | ZIP_FL_LOCAL) < 0) { |
89 | 0 | return -1; |
90 | 0 | } |
91 | | |
92 | | /* does not change any name related data, so we can do it here; |
93 | | * needed for a double add of the same file name */ |
94 | 925 | _zip_unchange_data(za->entry + idx); |
95 | | |
96 | 925 | if (za->entry[idx].orig != NULL && (za->entry[idx].changes == NULL || (za->entry[idx].changes->changed & ZIP_DIRENT_COMP_METHOD) == 0)) { |
97 | 0 | if (za->entry[idx].changes == NULL) { |
98 | 0 | if ((za->entry[idx].changes = _zip_dirent_clone(za->entry[idx].orig)) == NULL) { |
99 | 0 | zip_error_set(&za->error, ZIP_ER_MEMORY, 0); |
100 | 0 | return -1; |
101 | 0 | } |
102 | 0 | } |
103 | | |
104 | 0 | za->entry[idx].changes->comp_method = ZIP_CM_REPLACED_DEFAULT; |
105 | 0 | za->entry[idx].changes->changed |= ZIP_DIRENT_COMP_METHOD; |
106 | 0 | } |
107 | | |
108 | 925 | za->entry[idx].source = source; |
109 | | |
110 | 925 | return (zip_int64_t)idx; |
111 | 925 | } |