VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/zlib/gzguts.h
blob: 990a4d2514933709883a7d949ed52146675fe2c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/* gzguts.h -- zlib internal header definitions for gz* operations
 * Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler
 * For conditions of distribution and use, see copyright notice in zlib.h
 */

#ifdef _LARGEFILE64_SOURCE
#  ifndef _LARGEFILE_SOURCE
#    define _LARGEFILE_SOURCE 1
#  endif
#  ifdef _FILE_OFFSET_BITS
#    undef _FILE_OFFSET_BITS
#  endif
#endif

#ifdef HAVE_HIDDEN
#  define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
#else
#  define ZLIB_INTERNAL
#endif

#include <stdio.h>
#include "zlib.h"
#ifdef STDC
#  include <string.h>
#  include <stdlib.h>
#  include <limits.h>
#endif

#ifndef _POSIX_SOURCE
#  define _POSIX_SOURCE
#endif
#include <fcntl.h>

#ifdef _WIN32
#  include <stddef.h>
#endif

#if defined(__TURBOC__) || defined(_MSC_VER) || defined(_WIN32)
#  include <io.h>
#endif

#if defined(_WIN32) || defined(__CYGWIN__)
#  define WIDECHAR
#endif

#ifdef WINAPI_FAMILY
#  define open _open
#  define read _read
#  define write _write
#  define close _close
#endif

#ifdef NO_DEFLATE       /* for compatibility with old definition */
#  define NO_GZCOMPRESS
#endif

#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
#  ifndef HAVE_VSNPRINTF
#    define HAVE_VSNPRINTF
#  endif
#endif

#if defined(__CYGWIN__)
#  ifndef HAVE_VSNPRINTF
#    define HAVE_VSNPRINTF
#  endif
#endif

#if defined(MSDOS) && defined(__BORLANDC__) && (BORLANDC > 0x410)
#  ifndef HAVE_VSNPRINTF
#    define HAVE_VSNPRINTF
#  endif
#endif

#ifndef HAVE_VSNPRINTF
#  ifdef MSDOS
/* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
   but for now we just assume it doesn't. */
#    define NO_vsnprintf
#  endif
#  ifdef __TURBOC__
#    define NO_vsnprintf
#  endif
#  ifdef WIN32
/* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
#    if !defined(vsnprintf) && !defined(NO_vsnprintf)
#      if !defined(_MSC_VER) || ( defined(_MSC_VER) && _MSC_VER < 1500 )
#         define vsnprintf _vsnprintf
#      endif
#    endif
#  endif
#  ifdef __SASC
#    define NO_vsnprintf
#  endif
#  ifdef VMS
#    define NO_vsnprintf
#  endif
#  ifdef __OS400__
#    define NO_vsnprintf
#  endif
#  ifdef __MVS__
#    define NO_vsnprintf
#  endif
#endif

/* unlike snprintf (which is required in C99), _snprintf does not guarantee
   null termination of the result -- however this is only used in gzlib.c where
   the result is assured to fit in the space provided */
#if defined(_MSC_VER) && _MSC_VER < 1900
#  define snprintf _snprintf
#endif

#ifndef local
#  define local static
#endif
/* since "static" is used to mean two completely different things in C, we
   define "local" for the non-static meaning of "static", for readability
   (compile with -Dlocal if your debugger can't find static symbols) */

/* gz* functions always use library allocation functions */
#ifndef STDC
  extern voidp  malloc OF((uInt size));
  extern void   free   OF((voidpf ptr));
#endif

/* get errno and strerror definition */
#if defined UNDER_CE
#  include <windows.h>
#  define zstrerror() gz_strwinerror((DWORD)GetLastError())
#else
#  ifndef NO_STRERROR
#    include <errno.h>
#    define zstrerror() strerror(errno)
#  else
#    define zstrerror() "stdio error (consult errno)"
#  endif
#endif

/* provide prototypes for these when building zlib without LFS */
#if !defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0
    ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
    ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
    ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
    ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
#endif

/* default memLevel */
#if MAX_MEM_LEVEL >= 8
#  define DEF_MEM_LEVEL 8
#else
#  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
#endif

/* default i/o buffer size -- double this for output when reading (this and
   twice this must be able to fit in an unsigned type) */
#define GZBUFSIZE 8192

/* gzip modes, also provide a little integrity check on the passed structure */
#define GZ_NONE 0
#define GZ_READ 7247
#define GZ_WRITE 31153
#define GZ_APPEND 1     /* mode set to GZ_WRITE after the file is opened */

/* values for gz_state how */
#define LOOK 0      /* look for a gzip header */
#define COPY 1      /* copy input directly */
#define GZIP 2      /* decompress a gzip stream */

/* internal gzip file state data structure */
typedef struct {
        /* exposed contents for gzgetc() macro */
    struct gzFile_s x;      /* "x" for exposed */
                            /* x.have: number of bytes available at x.next */
                            /* x.next: next output data to deliver or write */
                            /* x.pos: current position in uncompressed data */
        /* used for both reading and writing */
    int mode;               /* see gzip modes above */
    int fd;                 /* file descriptor */
    char *path;             /* path or fd for error messages */
    unsigned size;          /* buffer size, zero if not allocated yet */
    unsigned want;          /* requested buffer size, default is GZBUFSIZE */
    unsigned char *in;      /* input buffer (double-sized when writing) */
    unsigned char *out;     /* output buffer (double-sized when reading) */
    int direct;             /* 0 if processing gzip, 1 if transparent */
        /* just for reading */
    int how;                /* 0: get header, 1: copy, 2: decompress */
    z_off64_t start;        /* where the gzip data started, for rewinding */
    int eof;                /* true if end of input file reached */
    int past;               /* true if read requested past end */
        /* just for writing */
    int level;              /* compression level */
    int strategy;           /* compression strategy */
        /* seek request */
    z_off64_t skip;         /* amount to skip (already rewound if backwards) */
    int seek;               /* true if seek request pending */
        /* error information */
    int err;                /* error code */
    char *msg;              /* error message */
        /* zlib inflate or deflate stream */
    z_stream strm;          /* stream structure in-place (not a pointer) */
} gz_state;
typedef gz_state FAR *gz_statep;

/* shared functions */
void ZLIB_INTERNAL gz_error OF((gz_statep, int, const char *));
#if defined UNDER_CE
char ZLIB_INTERNAL *gz_strwinerror OF((DWORD error));
#endif

/* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
   value -- needed when comparing unsigned to z_off64_t, which is signed
   (possible z_off64_t types off_t, off64_t, and long are all signed) */
#ifdef INT_MAX
#  define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX)
#else
unsigned ZLIB_INTERNAL gz_intmax OF((void));
#  define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())
#endif
n class="p">, tmp0 ; T1 = CH(e,f,g) + W[t] + K[t] + S1(e) mov tmp0, a_64 ; tmp = a xor T2, c_64 ; T2 = a ^ c and tmp0, c_64 ; tmp = a & c and T2, b_64 ; T2 = (a ^ c) & b xor T2, tmp0 ; T2 = ((a ^ c) & b) ^ (a & c) = Maj(a,b,c) mov tmp0, a_64 ; tmp = a ror tmp0, 5 ; 39 ; tmp = a ror 5 xor tmp0, a_64 ; tmp = (a ror 5) ^ a add d_64, T1 ; e(next_state) = d + T1 ror tmp0, 6 ; 34 ; tmp = ((a ror 5) ^ a) ror 6 xor tmp0, a_64 ; tmp = (((a ror 5) ^ a) ror 6) ^ a lea h_64, [T1 + T2] ; a(next_state) = T1 + Maj(a,b,c) ror tmp0, 28 ; 28 ; tmp = ((((a ror5)^a)ror6)^a)ror28 = S0(a) add h_64, tmp0 ; a(next_state) = T1 + Maj(a,b,c) S0(a) RotateState %endmacro %macro SHA512_2Sched_2Round_sse 1 %assign %%t (%1) ; Compute rounds %%t-2 and %%t-1 ; Compute message schedule QWORDS %%t and %%t+1 ; Two rounds are computed based on the values for K[t-2]+W[t-2] and ; K[t-1]+W[t-1] which were previously stored at WK_2 by the message ; scheduler. ; The two new schedule QWORDS are stored at [W_t(%%t)] and [W_t(%%t+1)]. ; They are then added to their respective SHA512 constants at ; [K_t(%%t)] and [K_t(%%t+1)] and stored at dqword [WK_2(%%t)] ; For brievity, the comments following vectored instructions only refer to ; the first of a pair of QWORDS. ; Eg. XMM2=W[t-2] really means XMM2={W[t-2]|W[t-1]} ; The computation of the message schedule and the rounds are tightly ; stitched to take advantage of instruction-level parallelism. ; For clarity, integer instructions (for the rounds calculation) are indented ; by one tab. Vectored instructions (for the message scheduler) are indented ; by two tabs. mov T1, f_64 movdqa xmm2, [W_t(%%t-2)] ; XMM2 = W[t-2] xor T1, g_64 and T1, e_64 movdqa xmm0, xmm2 ; XMM0 = W[t-2] xor T1, g_64 add T1, [WK_2(%%t)] movdqu xmm5, [W_t(%%t-15)] ; XMM5 = W[t-15] mov tmp0, e_64 ror tmp0, 23 ; 41 movdqa xmm3, xmm5 ; XMM3 = W[t-15] xor tmp0, e_64 ror tmp0, 4 ; 18 psrlq xmm0, 61 - 19 ; XMM0 = W[t-2] >> 42 xor tmp0, e_64 ror tmp0, 14 ; 14 psrlq xmm3, (8 - 7) ; XMM3 = W[t-15] >> 1 add T1, tmp0 add T1, h_64 pxor xmm0, xmm2 ; XMM0 = (W[t-2] >> 42) ^ W[t-2] mov T2, a_64 xor T2, c_64 pxor xmm3, xmm5 ; XMM3 = (W[t-15] >> 1) ^ W[t-15] and T2, b_64 mov tmp0, a_64 psrlq xmm0, 19 - 6 ; XMM0 = ((W[t-2]>>42)^W[t-2])>>13 and tmp0, c_64 xor T2, tmp0 psrlq xmm3, (7 - 1) ; XMM3 = ((W[t-15]>>1)^W[t-15])>>6 mov tmp0, a_64 ror tmp0, 5 ; 39 pxor xmm0, xmm2 ; XMM0 = (((W[t-2]>>42)^W[t-2])>>13)^W[t-2] xor tmp0, a_64 ror tmp0, 6 ; 34 pxor xmm3, xmm5 ; XMM3 = (((W[t-15]>>1)^W[t-15])>>6)^W[t-15] xor tmp0, a_64 ror tmp0, 28 ; 28 psrlq xmm0, 6 ; XMM0 = ((((W[t-2]>>42)^W[t-2])>>13)^W[t-2])>>6 add T2, tmp0 add d_64, T1 psrlq xmm3, 1 ; XMM3 = (((W[t-15]>>1)^W[t-15])>>6)^W[t-15]>>1 lea h_64, [T1 + T2] RotateState movdqa xmm1, xmm2 ; XMM1 = W[t-2] mov T1, f_64 xor T1, g_64 movdqa xmm4, xmm5 ; XMM4 = W[t-15] and T1, e_64 xor T1, g_64 psllq xmm1, (64 - 19) - (64 - 61) ; XMM1 = W[t-2] << 42 add T1, [WK_2(%%t+1)] mov tmp0, e_64 psllq xmm4, (64 - 1) - (64 - 8) ; XMM4 = W[t-15] << 7 ror tmp0, 23 ; 41 xor tmp0, e_64 pxor xmm1, xmm2 ; XMM1 = (W[t-2] << 42)^W[t-2] ror tmp0, 4 ; 18 xor tmp0, e_64 pxor xmm4, xmm5 ; XMM4 = (W[t-15]<<7)^W[t-15] ror tmp0, 14 ; 14 add T1, tmp0 psllq xmm1, (64 - 61) ; XMM1 = ((W[t-2] << 42)^W[t-2])<<3 add T1, h_64 mov T2, a_64 psllq xmm4, (64 - 8) ; XMM4 = ((W[t-15]<<7)^W[t-15])<<56 xor T2, c_64 and T2, b_64 pxor xmm0, xmm1 ; XMM0 = s1(W[t-2]) mov tmp0, a_64 and tmp0, c_64 movdqu xmm1, [W_t(%%t- 7)] ; XMM1 = W[t-7] xor T2, tmp0 pxor xmm3, xmm4 ; XMM3 = s0(W[t-15]) mov tmp0, a_64 paddq xmm0, xmm3 ; XMM0 = s1(W[t-2]) + s0(W[t-15]) ror tmp0, 5 ; 39 paddq xmm0, [W_t(%%t-16)] ; XMM0 = s1(W[t-2]) + s0(W[t-15]) + W[t-16] xor tmp0, a_64 paddq xmm0, xmm1 ; XMM0 = s1(W[t-2]) + W[t-7] + s0(W[t-15]) + W[t-16] ror tmp0, 6 ; 34 movdqa [W_t(%%t)], xmm0 ; Store scheduled qwords xor tmp0, a_64 paddq xmm0, [K_t(t)] ; Compute W[t]+K[t] ror tmp0, 28 ; 28 movdqa [WK_2(t)], xmm0 ; Store W[t]+K[t] for next rounds add T2, tmp0 add d_64, T1 lea h_64, [T1 + T2] RotateState %endmacro ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; void sha512_sse4(const void* M, void* D, uint64_t L); ; Purpose: Updates the SHA512 digest stored at D with the message stored in M. ; The size of the message pointed to by M must be an integer multiple of SHA512 ; message blocks. ; L is the message length in SHA512 blocks. global sha512_sse4:function global _sha512_sse4:function sha512_sse4: _sha512_sse4: cmp msglen, 0 je .nowork ; Allocate Stack Space sub rsp, frame_size ; Save GPRs mov [rsp + frame.GPRSAVE + 8 * 0], rbx mov [rsp + frame.GPRSAVE + 8 * 1], r12 mov [rsp + frame.GPRSAVE + 8 * 2], r13 mov [rsp + frame.GPRSAVE + 8 * 3], r14 mov [rsp + frame.GPRSAVE + 8 * 4], r15 %ifdef WINABI mov [rsp + frame.GPRSAVE + 8 * 5], rsi mov [rsp + frame.GPRSAVE + 8 * 6], rdi %endif .updateblock: ; Load state variables mov a_64, [DIGEST(0)] mov b_64, [DIGEST(1)] mov c_64, [DIGEST(2)] mov d_64, [DIGEST(3)] mov e_64, [DIGEST(4)] mov f_64, [DIGEST(5)] mov g_64, [DIGEST(6)] mov h_64, [DIGEST(7)] %assign t 0 %rep 80/2 + 1 ; (80 rounds) / (2 rounds/iteration) + (1 iteration) ; +1 iteration because the scheduler leads hashing by 1 iteration %if t < 2 ; BSWAP 2 QWORDS movdqa xmm1, [XMM_QWORD_BSWAP wrt rip] movdqu xmm0, [MSG(t)] pshufb xmm0, xmm1 ; BSWAP movdqa [W_t(t)], xmm0 ; Store Scheduled Pair paddq xmm0, [K_t(t)] ; Compute W[t]+K[t] movdqa [WK_2(t)], xmm0 ; Store into WK for rounds %elif t < 16 ; BSWAP 2 QWORDS; Compute 2 Rounds movdqu xmm0, [MSG(t)] pshufb xmm0, xmm1 ; BSWAP SHA512_Round t - 2 ; Round t-2 movdqa [W_t(t)], xmm0 ; Store Scheduled Pair paddq xmm0, [K_t(t)] ; Compute W[t]+K[t] SHA512_Round t - 1 ; Round t-1 movdqa [WK_2(t)], xmm0 ; Store W[t]+K[t] into WK %elif t < 79 ; Schedule 2 QWORDS; Compute 2 Rounds SHA512_2Sched_2Round_sse t %else ; Compute 2 Rounds SHA512_Round t - 2 SHA512_Round t - 1 %endif %assign t t+2 %endrep ; Update digest add [DIGEST(0)], a_64 add [DIGEST(1)], b_64 add [DIGEST(2)], c_64 add [DIGEST(3)], d_64 add [DIGEST(4)], e_64 add [DIGEST(5)], f_64 add [DIGEST(6)], g_64 add [DIGEST(7)], h_64 ; Advance to next message block add msg, 16*8 dec msglen jnz .updateblock ; Restore GPRs mov rbx, [rsp + frame.GPRSAVE + 8 * 0] mov r12, [rsp + frame.GPRSAVE + 8 * 1] mov r13, [rsp + frame.GPRSAVE + 8 * 2] mov r14, [rsp + frame.GPRSAVE + 8 * 3] mov r15, [rsp + frame.GPRSAVE + 8 * 4] %ifdef WINABI mov rsi, [rsp + frame.GPRSAVE + 8 * 5] mov rdi, [rsp + frame.GPRSAVE + 8 * 6] %endif ; Restore Stack Pointer add rsp, frame_size .nowork: ret ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Binary Data section .data ALIGN 16 ; Mask for byte-swapping a couple of qwords in an XMM register using (v)pshufb. XMM_QWORD_BSWAP: ddq 0x08090a0b0c0d0e0f0001020304050607 ; K[t] used in SHA512 hashing K512: dq 0x428a2f98d728ae22,0x7137449123ef65cd dq 0xb5c0fbcfec4d3b2f,0xe9b5dba58189dbbc dq 0x3956c25bf348b538,0x59f111f1b605d019 dq 0x923f82a4af194f9b,0xab1c5ed5da6d8118 dq 0xd807aa98a3030242,0x12835b0145706fbe dq 0x243185be4ee4b28c,0x550c7dc3d5ffb4e2 dq 0x72be5d74f27b896f,0x80deb1fe3b1696b1 dq 0x9bdc06a725c71235,0xc19bf174cf692694 dq 0xe49b69c19ef14ad2,0xefbe4786384f25e3 dq 0x0fc19dc68b8cd5b5,0x240ca1cc77ac9c65 dq 0x2de92c6f592b0275,0x4a7484aa6ea6e483 dq 0x5cb0a9dcbd41fbd4,0x76f988da831153b5 dq 0x983e5152ee66dfab,0xa831c66d2db43210 dq 0xb00327c898fb213f,0xbf597fc7beef0ee4 dq 0xc6e00bf33da88fc2,0xd5a79147930aa725 dq 0x06ca6351e003826f,0x142929670a0e6e70 dq 0x27b70a8546d22ffc,0x2e1b21385c26c926 dq 0x4d2c6dfc5ac42aed,0x53380d139d95b3df dq 0x650a73548baf63de,0x766a0abb3c77b2a8 dq 0x81c2c92e47edaee6,0x92722c851482353b dq 0xa2bfe8a14cf10364,0xa81a664bbc423001 dq 0xc24b8b70d0f89791,0xc76c51a30654be30 dq 0xd192e819d6ef5218,0xd69906245565a910 dq 0xf40e35855771202a,0x106aa07032bbd1b8 dq 0x19a4c116b8d2d0c8,0x1e376c085141ab53 dq 0x2748774cdf8eeb99,0x34b0bcb5e19b48a8 dq 0x391c0cb3c5c95a63,0x4ed8aa4ae3418acb dq 0x5b9cca4f7763e373,0x682e6ff3d6b2b8a3 dq 0x748f82ee5defb2fc,0x78a5636f43172f60 dq 0x84c87814a1f0ab72,0x8cc702081a6439ec dq 0x90befffa23631e28,0xa4506cebde82bde9 dq 0xbef9a3f7b2c67915,0xc67178f2e372532b dq 0xca273eceea26619c,0xd186b8c721c0c207 dq 0xeada7dd6cde0eb1e,0xf57d4f7fee6ed178 dq 0x06f067aa72176fba,0x0a637dc5a2c898a6 dq 0x113f9804bef90dae,0x1b710b35131c471b dq 0x28db77f523047d84,0x32caab7b40c72493 dq 0x3c9ebe0a15c9bebc,0x431d67c49c100d4c dq 0x4cc5d4becb3e42b6,0x597f299cfc657e2a dq 0x5fcb6fab3ad6faec,0x6c44198c4a475817 %ifidn __OUTPUT_FORMAT__,elf section .note.GNU-stack noalloc noexec nowrite progbits %endif %ifidn __OUTPUT_FORMAT__,elf32 section .note.GNU-stack noalloc noexec nowrite progbits %endif %ifidn __OUTPUT_FORMAT__,elf64 section .note.GNU-stack noalloc noexec nowrite progbits %endif