/src/libzip/lib/zip_source_winzip_aes_decode.c
Line | Count | Source |
1 | | /* |
2 | | zip_source_winzip_aes_decode.c -- Winzip AES decryption routines |
3 | | Copyright (C) 2009-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 <stdlib.h> |
36 | | #include <string.h> |
37 | | |
38 | | #include "zipint.h" |
39 | | |
40 | | #include "zip_crypto.h" |
41 | | |
42 | | struct winzip_aes { |
43 | | char *password; |
44 | | zip_uint16_t encryption_method; |
45 | | |
46 | | zip_uint64_t data_length; |
47 | | zip_uint64_t current_position; |
48 | | |
49 | | zip_winzip_aes_t *aes_ctx; |
50 | | zip_error_t error; |
51 | | }; |
52 | | |
53 | | |
54 | | static int decrypt_header(zip_source_t *src, struct winzip_aes *ctx); |
55 | | static void winzip_aes_free(struct winzip_aes *); |
56 | | static zip_int64_t winzip_aes_decrypt(zip_source_t *src, void *ud, void *data, zip_uint64_t len, zip_source_cmd_t cmd); |
57 | | static struct winzip_aes *winzip_aes_new(zip_uint16_t encryption_method, const char *password, zip_error_t *error); |
58 | | |
59 | | |
60 | 0 | zip_source_t *zip_source_winzip_aes_decode(zip_t *za, zip_source_t *src, zip_uint16_t encryption_method, int flags, const char *password) { |
61 | 0 | zip_source_t *s2; |
62 | 0 | zip_stat_t st; |
63 | 0 | zip_uint64_t aux_length; |
64 | 0 | struct winzip_aes *ctx; |
65 | |
|
66 | 0 | if ((encryption_method != ZIP_EM_AES_128 && encryption_method != ZIP_EM_AES_192 && encryption_method != ZIP_EM_AES_256) || password == NULL || src == NULL) { |
67 | 0 | zip_error_set(&za->error, ZIP_ER_INVAL, 0); |
68 | 0 | return NULL; |
69 | 0 | } |
70 | 0 | if (flags & ZIP_CODEC_ENCODE) { |
71 | 0 | zip_error_set(&za->error, ZIP_ER_ENCRNOTSUPP, 0); |
72 | 0 | return NULL; |
73 | 0 | } |
74 | | |
75 | 0 | if (zip_source_stat(src, &st) != 0) { |
76 | 0 | zip_error_set_from_source(&za->error, src); |
77 | 0 | return NULL; |
78 | 0 | } |
79 | | |
80 | 0 | aux_length = WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(encryption_method) + HMAC_LENGTH; |
81 | |
|
82 | 0 | if ((st.valid & ZIP_STAT_COMP_SIZE) == 0 || st.comp_size < aux_length) { |
83 | 0 | zip_error_set(&za->error, ZIP_ER_OPNOTSUPP, 0); |
84 | 0 | return NULL; |
85 | 0 | } |
86 | | |
87 | 0 | if ((ctx = winzip_aes_new(encryption_method, password, &za->error)) == NULL) { |
88 | 0 | return NULL; |
89 | 0 | } |
90 | | |
91 | 0 | ctx->data_length = st.comp_size - aux_length; |
92 | |
|
93 | 0 | if ((s2 = zip_source_layered(za, src, winzip_aes_decrypt, ctx)) == NULL) { |
94 | 0 | winzip_aes_free(ctx); |
95 | 0 | return NULL; |
96 | 0 | } |
97 | | |
98 | 0 | return s2; |
99 | 0 | } |
100 | | |
101 | | |
102 | 0 | static int decrypt_header(zip_source_t *src, struct winzip_aes *ctx) { |
103 | 0 | zip_uint8_t header[WINZIP_AES_MAX_HEADER_LENGTH]; |
104 | 0 | zip_uint8_t password_verification[WINZIP_AES_PASSWORD_VERIFY_LENGTH]; |
105 | 0 | unsigned int headerlen; |
106 | 0 | zip_int64_t n; |
107 | |
|
108 | 0 | headerlen = WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(ctx->encryption_method); |
109 | 0 | if ((n = zip_source_read(src, header, headerlen)) < 0) { |
110 | 0 | zip_error_set_from_source(&ctx->error, src); |
111 | 0 | return -1; |
112 | 0 | } |
113 | | |
114 | 0 | if (n != headerlen) { |
115 | 0 | zip_error_set(&ctx->error, ZIP_ER_EOF, 0); |
116 | 0 | return -1; |
117 | 0 | } |
118 | | |
119 | 0 | if ((ctx->aes_ctx = _zip_winzip_aes_new((zip_uint8_t *)ctx->password, strlen(ctx->password), header, ctx->encryption_method, password_verification, &ctx->error)) == NULL) { |
120 | 0 | return -1; |
121 | 0 | } |
122 | 0 | if (memcmp(password_verification, header + SALT_LENGTH(ctx->encryption_method), WINZIP_AES_PASSWORD_VERIFY_LENGTH) != 0) { |
123 | 0 | _zip_winzip_aes_free(ctx->aes_ctx); |
124 | 0 | ctx->aes_ctx = NULL; |
125 | 0 | zip_error_set(&ctx->error, ZIP_ER_WRONGPASSWD, 0); |
126 | 0 | return -1; |
127 | 0 | } |
128 | 0 | return 0; |
129 | 0 | } |
130 | | |
131 | | |
132 | 0 | static bool verify_hmac(zip_source_t *src, struct winzip_aes *ctx) { |
133 | 0 | unsigned char computed[ZIP_CRYPTO_SHA1_LENGTH], from_file[HMAC_LENGTH]; |
134 | 0 | if (zip_source_read(src, from_file, HMAC_LENGTH) < HMAC_LENGTH) { |
135 | 0 | zip_error_set_from_source(&ctx->error, src); |
136 | 0 | return false; |
137 | 0 | } |
138 | | |
139 | 0 | if (!_zip_winzip_aes_finish(ctx->aes_ctx, computed)) { |
140 | 0 | zip_error_set(&ctx->error, ZIP_ER_INTERNAL, 0); |
141 | 0 | return false; |
142 | 0 | } |
143 | 0 | _zip_winzip_aes_free(ctx->aes_ctx); |
144 | 0 | ctx->aes_ctx = NULL; |
145 | |
|
146 | 0 | if (memcmp(from_file, computed, HMAC_LENGTH) != 0) { |
147 | 0 | zip_error_set(&ctx->error, ZIP_ER_CRC, 0); |
148 | 0 | return false; |
149 | 0 | } |
150 | | |
151 | 0 | return true; |
152 | 0 | } |
153 | | |
154 | | |
155 | 0 | static zip_int64_t winzip_aes_decrypt(zip_source_t *src, void *ud, void *data, zip_uint64_t len, zip_source_cmd_t cmd) { |
156 | 0 | struct winzip_aes *ctx; |
157 | 0 | zip_int64_t n; |
158 | |
|
159 | 0 | ctx = (struct winzip_aes *)ud; |
160 | |
|
161 | 0 | switch (cmd) { |
162 | 0 | case ZIP_SOURCE_AT_EOF: |
163 | 0 | return ctx->current_position == ctx->data_length; |
164 | | |
165 | 0 | case ZIP_SOURCE_OPEN: |
166 | 0 | if (decrypt_header(src, ctx) < 0) { |
167 | 0 | return -1; |
168 | 0 | } |
169 | 0 | ctx->current_position = 0; |
170 | 0 | return 0; |
171 | | |
172 | 0 | case ZIP_SOURCE_READ: |
173 | 0 | if (len > ctx->data_length - ctx->current_position) { |
174 | 0 | len = ctx->data_length - ctx->current_position; |
175 | 0 | } |
176 | |
|
177 | 0 | if (len > 0) { |
178 | 0 | if ((n = zip_source_read(src, data, len)) < 0) { |
179 | 0 | zip_error_set_from_source(&ctx->error, src); |
180 | 0 | return -1; |
181 | 0 | } |
182 | | |
183 | 0 | if (n == 0) { |
184 | 0 | zip_error_set(&ctx->error, ZIP_ER_EOF, 0); |
185 | 0 | return -1; |
186 | 0 | } |
187 | | |
188 | 0 | ctx->current_position += (zip_uint64_t)n; |
189 | |
|
190 | 0 | if (!_zip_winzip_aes_decrypt(ctx->aes_ctx, (zip_uint8_t *)data, (zip_uint64_t)n)) { |
191 | 0 | zip_error_set(&ctx->error, ZIP_ER_INTERNAL, 0); |
192 | 0 | return -1; |
193 | 0 | } |
194 | | |
195 | 0 | if (ctx->current_position == ctx->data_length) { |
196 | 0 | (void)verify_hmac(src, ctx); |
197 | 0 | } |
198 | |
|
199 | 0 | return n; |
200 | 0 | } |
201 | 0 | else { |
202 | 0 | return zip_error_code_zip(&ctx->error) != ZIP_ER_OK ? -1 : 0; |
203 | 0 | } |
204 | | |
205 | 0 | case ZIP_SOURCE_CLOSE: |
206 | 0 | return 0; |
207 | | |
208 | 0 | case ZIP_SOURCE_STAT: { |
209 | 0 | zip_stat_t *st; |
210 | |
|
211 | 0 | st = (zip_stat_t *)data; |
212 | |
|
213 | 0 | st->encryption_method = ZIP_EM_NONE; |
214 | 0 | st->valid |= ZIP_STAT_ENCRYPTION_METHOD; |
215 | 0 | if (st->valid & ZIP_STAT_COMP_SIZE) { |
216 | 0 | if (st->comp_size < WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(ctx->encryption_method) + HMAC_LENGTH) { |
217 | 0 | zip_error_set(&ctx->error, ZIP_ER_DATA_LENGTH, 0); |
218 | 0 | return -1; |
219 | 0 | } |
220 | 0 | st->comp_size -= WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(ctx->encryption_method) + HMAC_LENGTH; |
221 | 0 | } |
222 | | |
223 | 0 | return 0; |
224 | 0 | } |
225 | | |
226 | 0 | case ZIP_SOURCE_SUPPORTS: |
227 | 0 | return zip_source_make_command_bitmap(ZIP_SOURCE_AT_EOF, ZIP_SOURCE_OPEN, ZIP_SOURCE_READ, ZIP_SOURCE_CLOSE, ZIP_SOURCE_STAT, ZIP_SOURCE_ERROR, ZIP_SOURCE_FREE, ZIP_SOURCE_SUPPORTS_REOPEN, -1); |
228 | | |
229 | 0 | case ZIP_SOURCE_ERROR: |
230 | 0 | return zip_error_to_data(&ctx->error, data, len); |
231 | | |
232 | 0 | case ZIP_SOURCE_FREE: |
233 | 0 | winzip_aes_free(ctx); |
234 | 0 | return 0; |
235 | | |
236 | 0 | default: |
237 | 0 | return zip_source_pass_to_lower_layer(src, data, len, cmd); |
238 | 0 | } |
239 | 0 | } |
240 | | |
241 | | |
242 | 0 | static void winzip_aes_free(struct winzip_aes *ctx) { |
243 | 0 | if (ctx == NULL) { |
244 | 0 | return; |
245 | 0 | } |
246 | | |
247 | 0 | _zip_crypto_clear(ctx->password, strlen(ctx->password)); |
248 | 0 | free(ctx->password); |
249 | 0 | zip_error_fini(&ctx->error); |
250 | 0 | _zip_winzip_aes_free(ctx->aes_ctx); |
251 | 0 | free(ctx); |
252 | 0 | } |
253 | | |
254 | | |
255 | 0 | static struct winzip_aes *winzip_aes_new(zip_uint16_t encryption_method, const char *password, zip_error_t *error) { |
256 | 0 | struct winzip_aes *ctx; |
257 | |
|
258 | 0 | if ((ctx = (struct winzip_aes *)malloc(sizeof(*ctx))) == NULL) { |
259 | 0 | zip_error_set(error, ZIP_ER_MEMORY, 0); |
260 | 0 | return NULL; |
261 | 0 | } |
262 | | |
263 | 0 | if ((ctx->password = strdup(password)) == NULL) { |
264 | 0 | zip_error_set(error, ZIP_ER_MEMORY, 0); |
265 | 0 | free(ctx); |
266 | 0 | return NULL; |
267 | 0 | } |
268 | | |
269 | 0 | ctx->encryption_method = encryption_method; |
270 | 0 | ctx->aes_ctx = NULL; |
271 | |
|
272 | 0 | zip_error_init(&ctx->error); |
273 | |
|
274 | 0 | return ctx; |
275 | 0 | } |