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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
|
/*
* Copyright (C) 2000,2001 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
* GNUTLS is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GNUTLS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifndef GNUTLS_INT_H
#define GNUTLS_INT_H
#include <defines.h>
/*
#define READ_DEBUG
#define WRITE_DEBUG
#define BUFFERS_DEBUG
#define HARD_DEBUG
#define RECORD_DEBUG*/
#define HANDSHAKE_DEBUG
#define DEBUG
#define SOCKET int
#define LIST ...
#define MAX32 4294967295
#define MAX24 16777215
#define MAX16 65535
#define TLS_RANDOM_SIZE 32
#define TLS_MAX_SESSION_ID_SIZE 32
#define TLS_MASTER_SIZE 48
#define MAX_HASH_SIZE 20
#define MAX_X509_CERT_SIZE 10*1024
#define MAX_LOG_SIZE 1024 /* maximum number of log message */
#define MAX_DNSNAME_SIZE 256
/* the default for TCP */
#define DEFAULT_LOWAT 1
/* expire time for resuming sessions */
#define DEFAULT_EXPIRE_TIME 3600
/* the maximum size of encrypted packets */
#define MAX_ENC_LEN 16384
#define RECORD_HEADER_SIZE 5
#define MAX_RECV_SIZE 18432+RECORD_HEADER_SIZE /* 2^14+2048+RECORD_HEADER_SIZE */
#define HANDSHAKE_HEADER_SIZE 4
#ifdef USE_GCRYPT
# include <gnutls_gcry.h>
#endif
#include <gnutls_mem.h>
#include <gnutls_ui.h>
#define DECR_LEN(len, x) len-=x; if (len<0) {gnutls_assert(); return GNUTLS_E_UNEXPECTED_PACKET_LENGTH;}
typedef unsigned char opaque;
typedef struct { opaque pint[3]; } uint24;
typedef enum crypt_algo { SRPSHA1_CRYPT, BLOWFISH_CRYPT=2 } crypt_algo;
typedef enum ChangeCipherSpecType { GNUTLS_TYPE_CHANGE_CIPHER_SPEC=1 } ChangeCipherSpecType;
typedef enum AlertLevel { GNUTLS_WARNING=1, GNUTLS_FATAL } AlertLevel;
typedef enum AlertDescription { GNUTLS_CLOSE_NOTIFY, GNUTLS_UNEXPECTED_MESSAGE=10, GNUTLS_BAD_RECORD_MAC=20,
GNUTLS_DECRYPTION_FAILED, GNUTLS_RECORD_OVERFLOW, GNUTLS_DECOMPRESSION_FAILURE=30,
GNUTLS_HANDSHAKE_FAILURE=40, GNUTLS_BAD_CERTIFICATE=42, GNUTLS_UNSUPPORTED_CERTIFICATE,
GNUTLS_CERTIFICATE_REVOKED, GNUTLS_CERTIFICATE_EXPIRED, GNUTLS_CERTIFICATE_UNKNOWN,
GNUTLS_ILLEGAL_PARAMETER, GNUTLS_UNKNOWN_CA, GNUTLS_ACCESS_DENIED, GNUTLS_DECODE_ERROR=50,
GNUTLS_DECRYPT_ERROR, GNUTLS_EXPORT_RESTRICTION=60, GNUTLS_PROTOCOL_VERSION=70,
GNUTLS_INSUFFICIENT_SECURITY, GNUTLS_INTERNAL_ERROR=80, GNUTLS_USER_CANCELED=90,
GNUTLS_NO_RENEGOTIATION=100
} AlertDescription;
typedef enum CertificateStatus { GNUTLS_CERT_TRUSTED=1, GNUTLS_CERT_NOT_TRUSTED, GNUTLS_CERT_EXPIRED, GNUTLS_CERT_INVALID } CertificateStatus;
typedef enum HandshakeType { GNUTLS_HELLO_REQUEST, GNUTLS_CLIENT_HELLO, GNUTLS_SERVER_HELLO,
GNUTLS_CERTIFICATE=11, GNUTLS_SERVER_KEY_EXCHANGE,
GNUTLS_CERTIFICATE_REQUEST, GNUTLS_SERVER_HELLO_DONE,
GNUTLS_CERTIFICATE_VERIFY, GNUTLS_CLIENT_KEY_EXCHANGE,
GNUTLS_FINISHED=20 } HandshakeType;
typedef struct {
ChangeCipherSpecType type;
} ChangeCipherSpec;
typedef struct {
opaque * data;
int size;
} gnutls_datum;
typedef struct {
AlertLevel level;
AlertDescription description;
} Alert;
/* STATE */
typedef enum ConnectionEnd { GNUTLS_SERVER=1, GNUTLS_CLIENT } ConnectionEnd;
typedef enum BulkCipherAlgorithm { GNUTLS_NULL_CIPHER=1, GNUTLS_ARCFOUR, GNUTLS_3DES_CBC, GNUTLS_RIJNDAEL_CBC, GNUTLS_TWOFISH_CBC, GNUTLS_RIJNDAEL256_CBC } BulkCipherAlgorithm;
typedef enum Extensions { GNUTLS_EXTENSION_DNSNAME=0, GNUTLS_EXTENSION_SRP=6 } Extensions;
typedef enum KXAlgorithm { GNUTLS_KX_RSA=1, GNUTLS_KX_DHE_DSS, GNUTLS_KX_DHE_RSA, GNUTLS_KX_DH_DSS, GNUTLS_KX_DH_RSA, GNUTLS_KX_DH_ANON, GNUTLS_KX_SRP } KXAlgorithm;
typedef enum CredType { GNUTLS_X509PKI=1, GNUTLS_ANON, GNUTLS_SRP } CredType;
typedef enum CipherType { CIPHER_STREAM, CIPHER_BLOCK } CipherType;
typedef enum MACAlgorithm { GNUTLS_NULL_MAC=1, GNUTLS_MAC_MD5, GNUTLS_MAC_SHA } MACAlgorithm;
typedef enum CompressionMethod { GNUTLS_NULL_COMPRESSION=1, GNUTLS_ZLIB } CompressionMethod;
typedef enum ValidSession { VALID_TRUE, VALID_FALSE } ValidSession;
typedef enum ResumableSession { RESUME_TRUE, RESUME_FALSE } ResumableSession;
/* STATE (stop) */
typedef struct {
KXAlgorithm algorithm;
void* credentials;
void* next;
} AUTH_CRED;
typedef struct {
uint8 major;
uint8 minor;
} ProtocolVersion;
struct GNUTLS_KEY_INT {
/* For DH KX */
gnutls_datum key;
MPI KEY;
MPI client_Y;
MPI client_g;
MPI client_p;
MPI dh_secret;
/* for SRP */
MPI A;
MPI B;
MPI u;
MPI b;
MPI a;
MPI x;
/* RSA: peer:
* modulus is A a
* exponent is B b
* private key is u x
*/
/* this is used to hold the peers authentication data
*/
/* AUTH_INFO structures MUST NOT contain malloced
* elements.
*/
void* auth_info;
int auth_info_size; /* needed in order to store to db for restoring
*/
uint8 crypt_algo;
AUTH_CRED* cred; /* used to specify keys/certificates etc */
int certificate_requested;
/* some ciphersuites use this
* to provide client authentication.
* 1 if client auth was requested
* by the peer, 0 otherwise
*/
};
typedef struct GNUTLS_KEY_INT* GNUTLS_KEY;
/* STATE (cont) */
#include <gnutls_hash_int.h>
#include <gnutls_cipher_int.h>
typedef struct {
uint8 CipherSuite[2];
} GNUTLS_CipherSuite;
/* This structure holds parameters got from TLS extension
* mechanism. (some extensions may hold parameters in AUTH_INFO
* structures instead - see SRP).
*/
typedef struct {
opaque dnsname[MAX_DNSNAME_SIZE];
} TLSExtensions;
/* AUTH_INFO structures MUST NOT contain malloced
* elements.
*/
/* This structure and AUTH_INFO, are stored in the resume database,
* and are restored, in case of resume.
* Holds all the required parameters to resume the current
* state.
*/
/* if you add anything in Security_Parameters struct, then
* also modify CPY_COMMON in gnutls_constate.c
*/
typedef struct {
ConnectionEnd entity;
KXAlgorithm kx_algorithm;
/* we've got separate write/read bulk/macs because
* there is a time in handshake where the peer has
* null cipher and we don't
*/
BulkCipherAlgorithm read_bulk_cipher_algorithm;
MACAlgorithm read_mac_algorithm;
CompressionMethod read_compression_algorithm;
BulkCipherAlgorithm write_bulk_cipher_algorithm;
MACAlgorithm write_mac_algorithm;
CompressionMethod write_compression_algorithm;
/* this is the ciphersuite we are going to use
* moved here from gnutls_internals in order to be restored
* on resume;
*/
GNUTLS_CipherSuite current_cipher_suite;
opaque master_secret[TLS_MASTER_SIZE];
opaque client_random[TLS_RANDOM_SIZE];
opaque server_random[TLS_RANDOM_SIZE];
opaque session_id[TLS_MAX_SESSION_ID_SIZE];
uint8 session_id_size;
time_t timestamp;
TLSExtensions extensions;
} SecurityParameters;
/* This structure holds the generated keys
*/
typedef struct {
gnutls_datum server_write_mac_secret;
gnutls_datum client_write_mac_secret;
gnutls_datum server_write_IV;
gnutls_datum client_write_IV;
gnutls_datum server_write_key;
gnutls_datum client_write_key;
int generated_keys; /* zero if keys have not
* been generated. Non zero
* otherwise.
*/
} CipherSpecs;
/* Versions should be in order of the oldest
* (eg. SSL3 is before TLS1)
*/
typedef enum GNUTLS_Version { GNUTLS_SSL3=1, GNUTLS_TLS1, GNUTLS_VERSION_UNKNOWN=0xff } GNUTLS_Version;
typedef struct {
GNUTLS_Version version;
GNUTLS_CIPHER_HANDLE write_cipher_state;
GNUTLS_CIPHER_HANDLE read_cipher_state;
gnutls_datum read_mac_secret;
gnutls_datum write_mac_secret;
uint64 read_sequence_number;
uint64 write_sequence_number;
} ConnectionState;
typedef struct {
int* algorithm_priority;
int algorithms;
} GNUTLS_Priority;
#define BulkCipherAlgorithm_Priority GNUTLS_Priority
#define MACAlgorithm_Priority GNUTLS_Priority
#define KXAlgorithm_Priority GNUTLS_Priority
#define CompressionMethod_Priority GNUTLS_Priority
#define Protocol_Priority GNUTLS_Priority
typedef struct {
opaque header[HANDSHAKE_HEADER_SIZE];
/* this holds the number of bytes in the handshake_header[] */
int header_size;
/* this holds the length of the handshake packet */
int packet_length;
HandshakeType recv_type;
} HANDSHAKE_HEADER_BUFFER;
typedef struct {
gnutls_datum buffer;
gnutls_datum hash_buffer; /* used to keep all handshake messages */
gnutls_datum buffer_handshake; /* this is a buffer that holds the current handshake message */
ResumableSession resumable; /* TRUE or FALSE - if we can resume that session */
ValidSession valid_connection; /* true or FALSE - if this session is valid */
AlertDescription last_alert; /* last alert received */
/* this is the compression method we are going to use */
CompressionMethod compression_method;
/* priorities */
BulkCipherAlgorithm_Priority BulkCipherAlgorithmPriority;
MACAlgorithm_Priority MACAlgorithmPriority;
KXAlgorithm_Priority KXAlgorithmPriority;
CompressionMethod_Priority CompressionMethodPriority;
Protocol_Priority ProtocolPriority;
/* resumed session */
ResumableSession resumed; /* TRUE or FALSE - if we are resuming a session */
SecurityParameters resumed_security_parameters;
/* sockets internals */
int lowat;
/* gdbm */
char* db_name;
int expire_time;
struct MOD_AUTH_STRUCT_INT* auth_struct; /* used in handshake packets and KX algorithms */
int v2_hello; /* set 0 normally - 1 if v2 hello was received - server side only */
#ifdef HAVE_LIBGDBM
GDBM_FILE db_reader;
#endif
/* keeps the headers of the handshake packet
*/
HANDSHAKE_HEADER_BUFFER handshake_header_buffer;
int client_certificate_index; /* holds
* the index of the client
* certificate to use. -1
* if none.
*/
/* this is the highest version available
* to the peer.
*/
uint8 adv_version_major;
uint8 adv_version_minor;
} GNUTLS_INTERNALS;
struct GNUTLS_STATE_INT {
SecurityParameters security_parameters;
CipherSpecs cipher_specs;
ConnectionState connection_state;
GNUTLS_INTERNALS gnutls_internals;
GNUTLS_KEY gnutls_key;
};
typedef struct GNUTLS_STATE_INT *GNUTLS_STATE;
/* Record Protocol */
typedef enum ContentType { GNUTLS_CHANGE_CIPHER_SPEC=20, GNUTLS_ALERT, GNUTLS_HANDSHAKE,
GNUTLS_APPLICATION_DATA } ContentType;
/* functions */
int gnutls_send_alert( SOCKET cd, GNUTLS_STATE state, AlertLevel level, AlertDescription desc);
int gnutls_close(SOCKET cd, GNUTLS_STATE state);
svoid *gnutls_PRF( opaque * secret, int secret_size, uint8 * label,
int label_size, opaque * seed, int seed_size,
int total_bytes);
void _gnutls_set_current_version(GNUTLS_STATE state, GNUTLS_Version version);
GNUTLS_Version gnutls_get_current_version(GNUTLS_STATE state);
ssize_t gnutls_send_int(SOCKET cd, GNUTLS_STATE state, ContentType type, HandshakeType htype, const void* data, size_t sizeofdata, int flags);
ssize_t gnutls_recv_int(SOCKET cd, GNUTLS_STATE state, ContentType type, HandshakeType, char* data, size_t sizeofdata, int flags);
int _gnutls_send_change_cipher_spec(SOCKET cd, GNUTLS_STATE state);
#define _gnutls_version_cmp( ver1, ver2) ver1==ver2?0:1
#define _gnutls_version_ssl3(x) _gnutls_version_cmp(x, GNUTLS_SSL3)
/* These macros return the advertized TLS version of
* the peer.
*/
#define _gnutls_get_adv_version_major( state) \
state->gnutls_internals.adv_version_major
#define _gnutls_get_adv_version_minor( state) \
state->gnutls_internals.adv_version_minor
#endif /* GNUTLS_INT_H */
|