Rizin
unix-like reverse engineering framework and cli tools
zip_source_winzip_aes_decode.c
Go to the documentation of this file.
1 /*
2  zip_source_winzip_aes_decode.c -- Winzip AES decryption routines
3  Copyright (C) 2009-2021 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 struct winzip_aes {
41  char *password;
43 
46 
49 };
50 
51 
52 static int decrypt_header(zip_source_t *src, struct winzip_aes *ctx);
53 static void winzip_aes_free(struct winzip_aes *);
56 
57 
61  zip_stat_t st;
62  zip_uint64_t aux_length;
63  struct winzip_aes *ctx;
64 
67  return NULL;
68  }
69  if (flags & ZIP_CODEC_ENCODE) {
71  return NULL;
72  }
73 
74  if (zip_source_stat(src, &st) != 0) {
76  return NULL;
77  }
78 
80 
81  if ((st.valid & ZIP_STAT_COMP_SIZE) == 0 || st.comp_size < aux_length) {
83  return NULL;
84  }
85 
87  return NULL;
88  }
89 
90  ctx->data_length = st.comp_size - aux_length;
91 
94  return NULL;
95  }
96 
97  return s2;
98 }
99 
100 
101 static int
104  zip_uint8_t password_verification[WINZIP_AES_PASSWORD_VERIFY_LENGTH];
105  unsigned int headerlen;
106  zip_int64_t n;
107 
108  headerlen = WINZIP_AES_PASSWORD_VERIFY_LENGTH + SALT_LENGTH(ctx->encryption_method);
109  if ((n = zip_source_read(src, header, headerlen)) < 0) {
111  return -1;
112  }
113 
114  if (n != headerlen) {
116  return -1;
117  }
118 
119  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  return -1;
121  }
122  if (memcmp(password_verification, header + SALT_LENGTH(ctx->encryption_method), WINZIP_AES_PASSWORD_VERIFY_LENGTH) != 0) {
123  _zip_winzip_aes_free(ctx->aes_ctx);
124  ctx->aes_ctx = NULL;
126  return -1;
127  }
128  return 0;
129 }
130 
131 
132 static bool
134  unsigned char computed[SHA1_LENGTH], from_file[HMAC_LENGTH];
135  if (zip_source_read(src, from_file, HMAC_LENGTH) < HMAC_LENGTH) {
137  return false;
138  }
139 
140  if (!_zip_winzip_aes_finish(ctx->aes_ctx, computed)) {
142  return false;
143  }
144  _zip_winzip_aes_free(ctx->aes_ctx);
145  ctx->aes_ctx = NULL;
146 
147  if (memcmp(from_file, computed, HMAC_LENGTH) != 0) {
149  return false;
150  }
151 
152  return true;
153 }
154 
155 
156 static zip_int64_t
158  struct winzip_aes *ctx;
159  zip_int64_t n;
160 
161  ctx = (struct winzip_aes *)ud;
162 
163  switch (cmd) {
164  case ZIP_SOURCE_OPEN:
165  if (decrypt_header(src, ctx) < 0) {
166  return -1;
167  }
168  ctx->current_position = 0;
169  return 0;
170 
171  case ZIP_SOURCE_READ:
172  if (len > ctx->data_length - ctx->current_position) {
173  len = ctx->data_length - ctx->current_position;
174  }
175 
176  if (len == 0) {
177  if (!verify_hmac(src, ctx)) {
178  return -1;
179  }
180  return 0;
181  }
182 
183  if ((n = zip_source_read(src, data, len)) < 0) {
185  return -1;
186  }
187  ctx->current_position += (zip_uint64_t)n;
188 
189  if (!_zip_winzip_aes_decrypt(ctx->aes_ctx, (zip_uint8_t *)data, (zip_uint64_t)n)) {
191  return -1;
192  }
193 
194  return n;
195 
196  case ZIP_SOURCE_CLOSE:
197  return 0;
198 
199  case ZIP_SOURCE_STAT: {
200  zip_stat_t *st;
201 
202  st = (zip_stat_t *)data;
203 
206  if (st->valid & ZIP_STAT_COMP_SIZE) {
207  st->comp_size -= 12 + SALT_LENGTH(ctx->encryption_method);
208  }
209 
210  return 0;
211  }
212 
213  case ZIP_SOURCE_SUPPORTS:
215 
216  case ZIP_SOURCE_ERROR:
217  return zip_error_to_data(&ctx->error, data, len);
218 
219  case ZIP_SOURCE_FREE:
221  return 0;
222 
223  default:
225  return -1;
226  }
227 }
228 
229 
230 static void
232  if (ctx == NULL) {
233  return;
234  }
235 
236  _zip_crypto_clear(ctx->password, strlen(ctx->password));
237  free(ctx->password);
239  _zip_winzip_aes_free(ctx->aes_ctx);
240  free(ctx);
241 }
242 
243 
244 static struct winzip_aes *
246  struct winzip_aes *ctx;
247 
248  if ((ctx = (struct winzip_aes *)malloc(sizeof(*ctx))) == NULL) {
250  return NULL;
251  }
252 
253  if ((ctx->password = strdup(password)) == NULL) {
255  free(ctx);
256  return NULL;
257  }
258 
259  ctx->encryption_method = encryption_method;
260  ctx->aes_ctx = NULL;
261 
263 
264  return ctx;
265 }
size_t len
Definition: 6502dis.c:15
lzma_index * src
Definition: index.h:567
#define NULL
Definition: cris-opc.c:27
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags cmd
Definition: sflib.h:79
RZ_API void Ht_() free(HtName_(Ht) *ht)
Definition: ht_inc.c:130
#define ZIP_ER_INTERNAL
Definition: zip.h:125
ZIP_EXTERN void zip_error_set(zip_error_t *_Nullable, int, int)
Definition: zip_error.c:126
#define ZIP_ER_MEMORY
Definition: zip.h:119
ZIP_EXTERN zip_int64_t zip_source_read(zip_source_t *_Nonnull, void *_Nonnull, zip_uint64_t)
#define ZIP_EM_AES_256
Definition: zip.h:192
#define ZIP_ER_ENCRNOTSUPP
Definition: zip.h:129
ZIP_EXTERN void zip_error_init(zip_error_t *_Nonnull)
Definition: zip_error.c:59
ZIP_EXTERN int zip_source_stat(zip_source_t *_Nonnull, zip_stat_t *_Nonnull)
enum zip_source_cmd zip_source_cmd_t
Definition: zip.h:241
#define ZIP_ER_WRONGPASSWD
Definition: zip.h:132
#define ZIP_EM_AES_192
Definition: zip.h:191
#define ZIP_STAT_ENCRYPTION_METHOD
Definition: zip.h:297
#define ZIP_STAT_COMP_SIZE
Definition: zip.h:293
#define ZIP_EM_NONE
Definition: zip.h:177
#define ZIP_ER_CRC
Definition: zip.h:112
@ ZIP_SOURCE_CLOSE
Definition: zip.h:222
@ ZIP_SOURCE_READ
Definition: zip.h:221
@ ZIP_SOURCE_FREE
Definition: zip.h:225
@ ZIP_SOURCE_SUPPORTS
Definition: zip.h:234
@ ZIP_SOURCE_STAT
Definition: zip.h:223
@ ZIP_SOURCE_OPEN
Definition: zip.h:220
@ ZIP_SOURCE_ERROR
Definition: zip.h:224
ZIP_EXTERN void zip_error_fini(zip_error_t *_Nonnull)
Definition: zip_error.c:52
#define ZIP_ER_INVAL
Definition: zip.h:123
ZIP_EXTERN zip_int64_t zip_source_make_command_bitmap(zip_source_cmd_t,...)
#define ZIP_ER_OPNOTSUPP
Definition: zip.h:133
#define ZIP_ER_EOF
Definition: zip.h:122
ZIP_EXTERN zip_int64_t zip_error_to_data(const zip_error_t *_Nonnull, void *_Nonnull, zip_uint64_t)
Definition: zip_error.c:141
#define ZIP_EM_AES_128
Definition: zip.h:190
void * malloc(size_t size)
Definition: malloc.c:123
return strdup("=SP r13\n" "=LR r14\n" "=PC r15\n" "=A0 r0\n" "=A1 r1\n" "=A2 r2\n" "=A3 r3\n" "=ZF zf\n" "=SF nf\n" "=OF vf\n" "=CF cf\n" "=SN or0\n" "gpr lr .32 56 0\n" "gpr pc .32 60 0\n" "gpr cpsr .32 64 0 ____tfiae_________________qvczn\n" "gpr or0 .32 68 0\n" "gpr tf .1 64.5 0 thumb\n" "gpr ef .1 64.9 0 endian\n" "gpr jf .1 64.24 0 java\n" "gpr qf .1 64.27 0 sticky_overflow\n" "gpr vf .1 64.28 0 overflow\n" "gpr cf .1 64.29 0 carry\n" "gpr zf .1 64.30 0 zero\n" "gpr nf .1 64.31 0 negative\n" "gpr itc .4 64.10 0 if_then_count\n" "gpr gef .4 64.16 0 great_or_equal\n" "gpr r0 .32 0 0\n" "gpr r1 .32 4 0\n" "gpr r2 .32 8 0\n" "gpr r3 .32 12 0\n" "gpr r4 .32 16 0\n" "gpr r5 .32 20 0\n" "gpr r6 .32 24 0\n" "gpr r7 .32 28 0\n" "gpr r8 .32 32 0\n" "gpr r9 .32 36 0\n" "gpr r10 .32 40 0\n" "gpr r11 .32 44 0\n" "gpr r12 .32 48 0\n" "gpr r13 .32 52 0\n" "gpr r14 .32 56 0\n" "gpr r15 .32 60 0\n" "gpr r16 .32 64 0\n" "gpr r17 .32 68 0\n")
#define header(is_bt, len_min, ret_op)
int n
Definition: mipsasm.c:19
static struct sockaddr static addrlen static backlog const void static flags void flags
Definition: sfsocketcall.h:123
zip_error_t * error
zip_uint64_t current_position
zip_winzip_aes_t * aes_ctx
zip_uint16_t encryption_method
zip_uint8_t data[ZIP_MAX(WINZIP_AES_MAX_HEADER_LENGTH, SHA1_LENGTH)]
Definition: zip.h:284
Definition: zip.h:300
zip_uint16_t encryption_method
Definition: zip.h:309
zip_uint64_t valid
Definition: zip.h:301
zip_uint64_t comp_size
Definition: zip.h:305
Definition: zipint.h:278
zip_error_t error
Definition: zipint.h:281
void error(const char *msg)
Definition: untgz.c:593
void _zip_error_set_from_source(zip_error_t *err, zip_source_t *src)
Definition: zip_error.c:135
zip_source_t * zip_source_layered(zip_t *za, zip_source_t *src, zip_source_layered_callback cb, void *ud)
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)
static bool verify_hmac(zip_source_t *src, struct winzip_aes *ctx)
static int decrypt_header(zip_source_t *src, struct winzip_aes *ctx)
static void winzip_aes_free(struct winzip_aes *)
static struct winzip_aes * winzip_aes_new(zip_uint16_t encryption_method, const char *password, zip_error_t *error)
static zip_int64_t winzip_aes_decrypt(zip_source_t *src, void *ud, void *data, zip_uint64_t len, zip_source_cmd_t cmd)
bool _zip_winzip_aes_finish(zip_winzip_aes_t *ctx, zip_uint8_t *hmac)
void _zip_winzip_aes_free(zip_winzip_aes_t *ctx)
zip_winzip_aes_t * _zip_winzip_aes_new(const zip_uint8_t *password, zip_uint64_t password_length, const zip_uint8_t *salt, zip_uint16_t encryption_method, zip_uint8_t *password_verify, zip_error_t *error)
bool _zip_winzip_aes_decrypt(zip_winzip_aes_t *ctx, zip_uint8_t *data, zip_uint64_t length)
uint64_t zip_uint64_t
Definition: zipconf.h:39
uint8_t zip_uint8_t
Definition: zipconf.h:33
uint16_t zip_uint16_t
Definition: zipconf.h:35
int64_t zip_int64_t
Definition: zipconf.h:38
#define ZIP_CODEC_ENCODE
Definition: zipint.h:108
#define WINZIP_AES_MAX_HEADER_LENGTH
Definition: zipint.h:76
#define HMAC_LENGTH
Definition: zipint.h:78
#define _zip_crypto_clear(b, l)
Definition: zipint.h:489
#define WINZIP_AES_PASSWORD_VERIFY_LENGTH
Definition: zipint.h:75
#define SHA1_LENGTH
Definition: zipint.h:79
#define SALT_LENGTH(method)
Definition: zipint.h:80
zip_t * za
Definition: ziptool.c:79