Remove ssl_set_handshake_header()
[openssl.git] / test / clienthellotest.c
1 /*
2  * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <string.h>
11
12 #include <openssl/opensslconf.h>
13 #include <openssl/bio.h>
14 #include <openssl/crypto.h>
15 #include <openssl/evp.h>
16 #include <openssl/ssl.h>
17 #include <openssl/err.h>
18
19 #include "../ssl/packet_locl.h"
20
21 #define CLIENT_VERSION_LEN      2
22
23
24 #define TOTAL_NUM_TESTS                         1
25
26 /*
27  * Test that explicitly setting ticket data results in it appearing in the
28  * ClientHello for a negotiated SSL/TLS version
29  */
30 #define TEST_SET_SESSION_TICK_DATA_VER_NEG      0
31
32 int main(int argc, char *argv[])
33 {
34     SSL_CTX *ctx;
35     SSL *con;
36     BIO *rbio;
37     BIO *wbio;
38     BIO *err;
39     long len;
40     unsigned char *data;
41     PACKET pkt, pkt2, pkt3;
42     char *dummytick = "Hello World!";
43     unsigned int type;
44     int testresult = 0;
45     int currtest = 0;
46
47     err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
48
49     CRYPTO_set_mem_debug(1);
50     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
51
52     /*
53      * For each test set up an SSL_CTX and SSL and see what ClientHello gets
54      * produced when we try to connect
55      */
56     for (; currtest < TOTAL_NUM_TESTS; currtest++) {
57         testresult = 0;
58         ctx = SSL_CTX_new(TLS_method());
59         con = SSL_new(ctx);
60
61         rbio = BIO_new(BIO_s_mem());
62         wbio = BIO_new(BIO_s_mem());
63         SSL_set_bio(con, rbio, wbio);
64         SSL_set_connect_state(con);
65
66         if (currtest == TEST_SET_SESSION_TICK_DATA_VER_NEG) {
67             if (!SSL_set_session_ticket_ext(con, dummytick, strlen(dummytick)))
68                 goto end;
69         }
70
71         if (SSL_connect(con) > 0) {
72             /* This shouldn't succeed because we don't have a server! */
73             goto end;
74         }
75
76         len = BIO_get_mem_data(wbio, (char **)&data);
77         if (!PACKET_buf_init(&pkt, data, len))
78             goto end;
79
80         /* Skip the record header */
81         if (!PACKET_forward(&pkt, SSL3_RT_HEADER_LENGTH))
82             goto end;
83
84         /* Skip the handshake message header */
85         if (!PACKET_forward(&pkt, SSL3_HM_HEADER_LENGTH))
86             goto end;
87
88         /* Skip client version and random */
89         if (!PACKET_forward(&pkt, CLIENT_VERSION_LEN + SSL3_RANDOM_SIZE))
90             goto end;
91
92         /* Skip session id */
93         if (!PACKET_get_length_prefixed_1(&pkt, &pkt2))
94             goto end;
95
96         /* Skip ciphers */
97         if (!PACKET_get_length_prefixed_2(&pkt, &pkt2))
98             goto end;
99
100         /* Skip compression */
101         if (!PACKET_get_length_prefixed_1(&pkt, &pkt2))
102             goto end;
103
104         /* Extensions len */
105         if (!PACKET_as_length_prefixed_2(&pkt, &pkt2))
106             goto end;
107
108         /* Loop through all extensions */
109         while (PACKET_remaining(&pkt2)) {
110
111             if (!PACKET_get_net_2(&pkt2, &type) ||
112                 !PACKET_get_length_prefixed_2(&pkt2, &pkt3))
113                 goto end;
114
115             if (type == TLSEXT_TYPE_session_ticket) {
116                 if (currtest == TEST_SET_SESSION_TICK_DATA_VER_NEG) {
117                     if (PACKET_equal(&pkt3, dummytick, strlen(dummytick))) {
118                         /* Ticket data is as we expected */
119                         testresult = 1;
120                     } else {
121                         printf("Received session ticket is not as expected\n");
122                     }
123                     break;
124                 }
125             }
126
127         }
128
129  end:
130         SSL_free(con);
131         SSL_CTX_free(ctx);
132         if (!testresult) {
133             printf("ClientHello test: FAILED (Test %d)\n", currtest);
134             break;
135         }
136     }
137
138 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
139     if (CRYPTO_mem_leaks(err) <= 0)
140         testresult = 0;
141 #endif
142     BIO_free(err);
143
144     return testresult?0:1;
145 }