Coverage Report

Created: 2026-08-25 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/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
    bool hmac_verify_failed;
51
    bool hmac_verified;
52
    zip_error_t error;
53
};
54
55
56
static int decrypt_header(zip_source_t *src, struct winzip_aes *ctx);
57
static void winzip_aes_free(struct winzip_aes *);
58
static zip_int64_t winzip_aes_decrypt(zip_source_t *src, void *ud, void *data, zip_uint64_t len, zip_source_cmd_t cmd);
59
static struct winzip_aes *winzip_aes_new(zip_uint16_t encryption_method, const char *password, zip_error_t *error);
60
61
62
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) {
63
0
    zip_source_t *s2;
64
0
    zip_stat_t st;
65
0
    zip_uint64_t aux_length;
66
0
    struct winzip_aes *ctx;
67
68
0
    if ((encryption_method != ZIP_EM_AES_128 && encryption_method != ZIP_EM_AES_192 && encryption_method != ZIP_EM_AES_256) || password == NULL || src == NULL) {
69
0
        zip_error_set(&za->error, ZIP_ER_INVAL, 0);
70
0
        return NULL;
71
0
    }
72
0
    if (flags & ZIP_CODEC_ENCODE) {
73
0
        zip_error_set(&za->error, ZIP_ER_ENCRNOTSUPP, 0);
74
0
        return NULL;
75
0
    }
76
77
0
    if (zip_source_stat(src, &st) != 0) {
78
0
        zip_error_set_from_source(&za->error, src);
79
0
        return NULL;
80
0
    }
81
82
0
    aux_length = WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(encryption_method) + HMAC_LENGTH;
83
84
0
    if ((st.valid & ZIP_STAT_COMP_SIZE) == 0 || st.comp_size < aux_length) {
85
0
        zip_error_set(&za->error, ZIP_ER_OPNOTSUPP, 0);
86
0
        return NULL;
87
0
    }
88
89
0
    if ((ctx = winzip_aes_new(encryption_method, password, &za->error)) == NULL) {
90
0
        return NULL;
91
0
    }
92
93
0
    ctx->data_length = st.comp_size - aux_length;
94
95
0
    if ((s2 = zip_source_layered(za, src, winzip_aes_decrypt, ctx)) == NULL) {
96
0
        winzip_aes_free(ctx);
97
0
        return NULL;
98
0
    }
99
100
0
    return s2;
101
0
}
102
103
104
0
static int decrypt_header(zip_source_t *src, struct winzip_aes *ctx) {
105
0
    zip_uint8_t header[WINZIP_AES_MAX_HEADER_LENGTH];
106
0
    zip_uint8_t password_verification[WINZIP_AES_PASSWORD_VERIFY_LENGTH];
107
0
    unsigned int headerlen;
108
0
    zip_int64_t n;
109
110
0
    headerlen = WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(ctx->encryption_method);
111
0
    if ((n = zip_source_read(src, header, headerlen)) < 0) {
112
0
        zip_error_set_from_source(&ctx->error, src);
113
0
        return -1;
114
0
    }
115
116
0
    if (n != headerlen) {
117
0
        zip_error_set(&ctx->error, ZIP_ER_EOF, 0);
118
0
        return -1;
119
0
    }
120
121
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) {
122
0
        return -1;
123
0
    }
124
0
    if (memcmp(password_verification, header + SALT_LENGTH(ctx->encryption_method), WINZIP_AES_PASSWORD_VERIFY_LENGTH) != 0) {
125
0
        _zip_winzip_aes_free(ctx->aes_ctx);
126
0
        ctx->aes_ctx = NULL;
127
0
        zip_error_set(&ctx->error, ZIP_ER_WRONGPASSWD, 0);
128
0
        return -1;
129
0
    }
130
0
    return 0;
131
0
}
132
133
134
0
static void verify_hmac(zip_source_t *src, struct winzip_aes *ctx) {
135
0
    unsigned char computed[ZIP_CRYPTO_SHA1_LENGTH], from_file[HMAC_LENGTH];
136
137
0
    if (ctx->hmac_verified) {
138
0
        return;
139
0
    }
140
0
    ctx->hmac_verified = true;
141
142
0
    if (zip_source_read(src, from_file, HMAC_LENGTH) < HMAC_LENGTH) {
143
0
        zip_error_set_from_source(&ctx->error, src);
144
0
        ctx->hmac_verify_failed = true;
145
0
        return;
146
0
    }
147
148
0
    if (!_zip_winzip_aes_finish(ctx->aes_ctx, computed)) {
149
0
        zip_error_set(&ctx->error, ZIP_ER_INTERNAL, 0);
150
0
        ctx->hmac_verify_failed = true;
151
0
        return;
152
0
    }
153
0
    _zip_winzip_aes_free(ctx->aes_ctx);
154
0
    ctx->aes_ctx = NULL;
155
156
0
    if (memcmp(from_file, computed, HMAC_LENGTH) != 0) {
157
0
        zip_error_set(&ctx->error, ZIP_ER_CRC, 0);
158
0
        ctx->hmac_verify_failed = true;
159
0
        return;
160
0
    }
161
162
0
    return;
163
0
}
164
165
166
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) {
167
0
    struct winzip_aes *ctx;
168
0
    zip_int64_t n;
169
170
0
    ctx = (struct winzip_aes *)ud;
171
172
0
    switch (cmd) {
173
0
    case ZIP_SOURCE_AT_EOF:
174
0
        return ctx->current_position == ctx->data_length;
175
176
0
    case ZIP_SOURCE_OPEN:
177
0
        ctx->hmac_verify_failed = false;
178
0
        if (decrypt_header(src, ctx) < 0) {
179
0
            return -1;
180
0
        }
181
0
        ctx->current_position = 0;
182
0
        return 0;
183
184
0
    case ZIP_SOURCE_READ:
185
0
        len = ZIP_MIN(len, ctx->data_length - ctx->current_position);
186
187
0
        if (len > 0) {
188
0
            if ((n = zip_source_read(src, data, len)) < 0) {
189
0
                zip_error_set_from_source(&ctx->error, src);
190
0
                return -1;
191
0
            }
192
193
0
            if (n == 0) {
194
0
                zip_error_set(&ctx->error, ZIP_ER_EOF, 0);
195
0
                return -1;
196
0
            }
197
198
0
            ctx->current_position += (zip_uint64_t)n;
199
200
0
            if (!_zip_winzip_aes_decrypt(ctx->aes_ctx, (zip_uint8_t *)data, (zip_uint64_t)n)) {
201
0
                zip_error_set(&ctx->error, ZIP_ER_INTERNAL, 0);
202
0
                return -1;
203
0
            }
204
0
        }
205
0
        else {
206
0
            n = 0;
207
0
        }
208
209
0
        if (ctx->current_position == ctx->data_length) {
210
0
            verify_hmac(src, ctx);
211
0
        }
212
213
0
        if (n > 0) {
214
0
            return n;
215
0
        }
216
0
        else {
217
0
            return ctx->hmac_verify_failed ? -1 : 0;
218
0
        }
219
220
0
    case ZIP_SOURCE_CLOSE:
221
        /* For empty files, we should verify the HMAC even if no data has been read. */
222
0
        if (ctx->current_position == ctx->data_length) {
223
0
            verify_hmac(src, ctx);
224
0
        }
225
0
        return ctx->hmac_verify_failed ? -1 : 0;
226
227
0
    case ZIP_SOURCE_STAT: {
228
0
        zip_stat_t *st;
229
230
0
        st = (zip_stat_t *)data;
231
232
0
        st->encryption_method = ZIP_EM_NONE;
233
0
        st->valid |= ZIP_STAT_ENCRYPTION_METHOD;
234
0
        if (st->valid & ZIP_STAT_COMP_SIZE) {
235
0
            if (st->comp_size < WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(ctx->encryption_method) + HMAC_LENGTH) {
236
0
                zip_error_set(&ctx->error, ZIP_ER_DATA_LENGTH, 0);
237
0
                return -1;
238
0
            }
239
0
            st->comp_size -= WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(ctx->encryption_method) + HMAC_LENGTH;
240
0
        }
241
242
0
        return 0;
243
0
    }
244
245
0
    case ZIP_SOURCE_SUPPORTS:
246
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);
247
248
0
    case ZIP_SOURCE_ERROR:
249
0
        return zip_error_to_data(&ctx->error, data, len);
250
251
0
    case ZIP_SOURCE_FREE:
252
0
        winzip_aes_free(ctx);
253
0
        return 0;
254
255
0
    default:
256
0
        return zip_source_pass_to_lower_layer(src, data, len, cmd);
257
0
    }
258
0
}
259
260
261
0
static void winzip_aes_free(struct winzip_aes *ctx) {
262
0
    if (ctx == NULL) {
263
0
        return;
264
0
    }
265
266
0
    _zip_crypto_clear(ctx->password, strlen(ctx->password));
267
0
    free(ctx->password);
268
0
    zip_error_fini(&ctx->error);
269
0
    _zip_winzip_aes_free(ctx->aes_ctx);
270
0
    free(ctx);
271
0
}
272
273
274
0
static struct winzip_aes *winzip_aes_new(zip_uint16_t encryption_method, const char *password, zip_error_t *error) {
275
0
    struct winzip_aes *ctx;
276
277
0
    if ((ctx = (struct winzip_aes *)malloc(sizeof(*ctx))) == NULL) {
278
0
        zip_error_set(error, ZIP_ER_MEMORY, 0);
279
0
        return NULL;
280
0
    }
281
282
0
    if ((ctx->password = strdup(password)) == NULL) {
283
0
        zip_error_set(error, ZIP_ER_MEMORY, 0);
284
0
        free(ctx);
285
0
        return NULL;
286
0
    }
287
288
0
    ctx->encryption_method = encryption_method;
289
0
    ctx->aes_ctx = NULL;
290
0
    ctx->hmac_verify_failed = false;
291
0
    ctx->hmac_verified = false;
292
293
0
    zip_error_init(&ctx->error);
294
295
0
    return ctx;
296
0
}