Imported Upstream version 3.0.30
[platform/upstream/gnutls.git] / tests / mini-deflate.c
1 /*
2  * Copyright (C) 2008-2012 Free Software Foundation, Inc.
3  *
4  * Author: Nikos Mavrogiannopoulos
5  *
6  * This file is part of GnuTLS.
7  *
8  * GnuTLS is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * GnuTLS is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with GnuTLS; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <errno.h>
31 #include <gnutls/gnutls.h>
32
33 #ifdef HAVE_LIBZ
34
35 # include "eagain-common.h"
36 # include "utils.h"
37
38 const char* side = "";
39
40 static void
41 tls_log_func (int level, const char *str)
42 {
43   fprintf (stderr, "%s|<%d>| %s", side, level, str);
44 }
45
46 # define MAX_BUF 6*1024
47 # define MSG "Hello TLS, and Hello and Hello and Hello"
48
49 void
50 doit (void)
51 {
52   /* Server stuff. */
53   gnutls_anon_server_credentials_t s_anoncred;
54   const gnutls_datum_t p3 = { (unsigned char*) pkcs3, strlen (pkcs3) };
55   static gnutls_dh_params_t dh_params;
56   gnutls_session_t server;
57   int sret = GNUTLS_E_AGAIN;
58   /* Client stuff. */
59   gnutls_anon_client_credentials_t c_anoncred;
60   gnutls_session_t client;
61   int cret = GNUTLS_E_AGAIN;
62   /* Need to enable anonymous KX specifically. */
63   char buffer[MAX_BUF + 1];
64   ssize_t ns;
65   int ret, transferred = 0, msglen;
66   const char * str;
67
68   /* General init. */
69   gnutls_global_init ();
70   gnutls_global_set_log_function (tls_log_func);
71   if (debug)
72     gnutls_global_set_log_level (4711);
73
74   /* Init server */
75   gnutls_anon_allocate_server_credentials (&s_anoncred);
76   gnutls_dh_params_init (&dh_params);
77   gnutls_dh_params_import_pkcs3 (dh_params, &p3, GNUTLS_X509_FMT_PEM);
78   gnutls_anon_set_server_dh_params (s_anoncred, dh_params);
79   gnutls_init (&server, GNUTLS_SERVER);
80   ret = gnutls_priority_set_direct (server, "NONE:+VERS-TLS-ALL:+CIPHER-ALL:+MAC-ALL:+SIGN-ALL:+COMP-DEFLATE:+ANON-DH", &str);
81   if (ret < 0) 
82     {
83       fprintf(stderr, "error at: %s\n", str);
84       exit(1);
85     }
86   
87   gnutls_credentials_set (server, GNUTLS_CRD_ANON, s_anoncred);
88   gnutls_dh_set_prime_bits (server, 1024);
89   gnutls_transport_set_push_function (server, server_push);
90   gnutls_transport_set_pull_function (server, server_pull);
91   gnutls_transport_set_ptr (server, (gnutls_transport_ptr_t)server);
92
93   /* Init client */
94   gnutls_anon_allocate_client_credentials (&c_anoncred);
95   gnutls_init (&client, GNUTLS_CLIENT);
96   ret = gnutls_priority_set_direct (client, "NONE:+VERS-TLS-ALL:+CIPHER-ALL:+MAC-ALL:+SIGN-ALL:+COMP-DEFLATE:+ANON-DH", &str);
97   if (ret < 0) 
98     {
99       fprintf(stderr, "error at: %s\n", str);
100       exit(1);
101     }
102   gnutls_credentials_set (client, GNUTLS_CRD_ANON, c_anoncred);
103   gnutls_transport_set_push_function (client, client_push);
104   gnutls_transport_set_pull_function (client, client_pull);
105   gnutls_transport_set_ptr (client, (gnutls_transport_ptr_t)client);
106
107   HANDSHAKE(client, server);
108
109   if (debug)
110     success ("Handshake established\n");
111
112   msglen = strlen(MSG);
113   TRANSFER(client, server, MSG, msglen, buffer, MAX_BUF);
114   if (debug)
115     fputs ("\n", stdout);
116
117   gnutls_bye (client, GNUTLS_SHUT_RDWR);
118   gnutls_bye (server, GNUTLS_SHUT_RDWR);
119
120   gnutls_deinit (client);
121   gnutls_deinit (server);
122
123   gnutls_anon_free_client_credentials (c_anoncred);
124   gnutls_anon_free_server_credentials (s_anoncred);
125
126   gnutls_dh_params_deinit (dh_params);
127
128   gnutls_global_deinit ();
129 }
130 #else
131
132 int main(int argc, char** argv)
133 {
134   return 77;
135 }
136 #endif