/* * Copyright (C) 2000-2012 Free Software Foundation, Inc. * * 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 3 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, see . */ #include #include #include #include #include #include #include #include #if HAVE_SYS_SOCKET_H # include #elif HAVE_WS2TCPIP_H # include #endif #include #include #include #include #include #include #include #include #include #include #include #include /* Gnulib portability files. */ #include #include #include #include "sockets.h" #include "benchmark.h" #include "inline_cmds.h" #ifdef HAVE_DANE #include #endif #include #include #include #include #define MAX_BUF 4096 /* global stuff here */ int resume, starttls, insecure, ranges, rehandshake, udp, mtu, inline_commands; const char *hostname = NULL; const char *service = NULL; int record_max_size; int fingerprint; int crlf; unsigned int verbose = 0; int print_cert; const char *srp_passwd = NULL; const char *srp_username = NULL; const char *pgp_keyfile = NULL; const char *pgp_certfile = NULL; const char *pgp_keyring = NULL; const char *x509_keyfile = NULL; const char *x509_certfile = NULL; const char *x509_cafile = NULL; const char *x509_crlfile = NULL; static int x509ctype; static int disable_extensions; static int disable_sni; static unsigned int init_flags = GNUTLS_CLIENT; static const char * priorities = NULL; static const char * inline_commands_prefix; const char *psk_username = NULL; gnutls_datum_t psk_key = { NULL, 0 }; static gnutls_srp_client_credentials_t srp_cred; static gnutls_psk_client_credentials_t psk_cred; static gnutls_anon_client_credentials_t anon_cred; static gnutls_certificate_credentials_t xcred; /* end of global stuff */ /* prototypes */ static void check_rehandshake (socket_st * socket, int ret); static int do_handshake (socket_st * socket); static void init_global_tls_stuff (void); static int cert_verify_ocsp (gnutls_session_t session); #define MAX_CRT 6 static unsigned int x509_crt_size; static gnutls_pcert_st x509_crt[MAX_CRT]; static gnutls_privkey_t x509_key = NULL; static gnutls_pcert_st pgp_crt; static gnutls_privkey_t pgp_key = NULL; static void get_keyid (gnutls_openpgp_keyid_t keyid, const char *str) { size_t keyid_size = sizeof (keyid); if (strlen (str) != 16) { fprintf (stderr, "The OpenPGP subkey ID has to be 16 hexadecimal characters.\n"); exit (1); } if (gnutls_hex2bin (str, strlen (str), keyid, &keyid_size) < 0) { fprintf (stderr, "Error converting hex string: %s.\n", str); exit (1); } return; } /* Load the certificate and the private key. */ static void load_keys (void) { unsigned int crt_num; int ret; unsigned int i; gnutls_datum_t data = { NULL, 0 }; gnutls_x509_crt_t crt_list[MAX_CRT]; unsigned char keyid[GNUTLS_OPENPGP_KEYID_SIZE]; if (x509_certfile != NULL && x509_keyfile != NULL) { #ifdef ENABLE_PKCS11 if (strncmp (x509_certfile, "pkcs11:", 7) == 0) { crt_num = 1; gnutls_x509_crt_init (&crt_list[0]); gnutls_x509_crt_set_pin_function(crt_list[0], pin_callback, NULL); ret = gnutls_x509_crt_import_pkcs11_url (crt_list[0], x509_certfile, 0); if (ret == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE) ret = gnutls_x509_crt_import_pkcs11_url (crt_list[0], x509_certfile, GNUTLS_PKCS11_OBJ_FLAG_LOGIN); if (ret < 0) { fprintf (stderr, "*** Error loading cert file.\n"); exit (1); } x509_crt_size = 1; } else #endif /* ENABLE_PKCS11 */ { ret = gnutls_load_file (x509_certfile, &data); if (ret < 0) { fprintf (stderr, "*** Error loading cert file.\n"); exit (1); } crt_num = MAX_CRT; ret = gnutls_x509_crt_list_import (crt_list, &crt_num, &data, x509ctype, GNUTLS_X509_CRT_LIST_IMPORT_FAIL_IF_EXCEED); if (ret < 0) { if (ret == GNUTLS_E_SHORT_MEMORY_BUFFER) { fprintf (stderr, "*** Error loading cert file: Too many certs %d\n", crt_num); } else { fprintf (stderr, "*** Error loading cert file: %s\n", gnutls_strerror (ret)); } exit (1); } x509_crt_size = ret; } for (i=0;is_name; } static int service_to_port(const char* service) { unsigned int port; struct servent * sr; port = atoi(service); if (port != 0) return port; sr = getservbyname(service, udp?"udp":"tcp"); if (sr == NULL) { fprintf(stderr, "Warning: getservbyname() failed.\n"); exit(1); } return ntohs(sr->s_port); } static int cert_verify_callback (gnutls_session_t session) { int rc; unsigned int status = 0; int ssh = ENABLED_OPT(TOFU); #ifdef HAVE_DANE int dane = ENABLED_OPT(DANE); #endif int ca_verify = ENABLED_OPT(CA_VERIFICATION); const char* txt_service; print_cert_info (session, verbose, print_cert); if (ca_verify) { rc = cert_verify(session, hostname); if (rc == 0) { printf ("*** Verifying server certificate failed...\n"); if (!insecure && !ssh) return -1; } else if (ENABLED_OPT(OCSP) && gnutls_ocsp_status_request_is_checked(session, 0) == 0) { /* off-line verification succeeded. Try OCSP */ rc = cert_verify_ocsp(session); if (rc == 0) { printf ("*** Verifying (with OCSP) server certificate failed...\n"); if (!insecure && !ssh) return -1; } else if (rc == -1) printf("*** OCSP response ignored\n"); } } if (ssh) /* try ssh auth */ { unsigned int list_size; const gnutls_datum_t * cert; cert = gnutls_certificate_get_peers(session, &list_size); if (cert == NULL) { fprintf(stderr, "Cannot obtain peer's certificate!\n"); return -1; } txt_service = port_to_service(service); rc = gnutls_verify_stored_pubkey(NULL, NULL, hostname, txt_service, GNUTLS_CRT_X509, cert, 0); if (rc == GNUTLS_E_NO_CERTIFICATE_FOUND) { print_cert_info_compact(session); fprintf(stderr, "Host %s (%s) has never been contacted before.\n", hostname, txt_service); if (status == 0) fprintf(stderr, "Its certificate is valid for %s.\n", hostname); rc = read_yesno("Are you sure you want to trust it? (y/N): "); if (rc == 0) return -1; } else if (rc == GNUTLS_E_CERTIFICATE_KEY_MISMATCH) { print_cert_info_compact(session); fprintf(stderr, "Warning: host %s is known and it is associated with a different key.\n", hostname); fprintf(stderr, "It might be that the server has multiple keys, or an attacker replaced the key to eavesdrop this connection .\n"); if (status == 0) fprintf(stderr, "Its certificate is valid for %s.\n", hostname); rc = read_yesno("Do you trust the received key? (y/N): "); if (rc == 0) return -1; } else if (rc < 0) { fprintf(stderr, "gnutls_verify_stored_pubkey: %s\n", gnutls_strerror(rc)); return -1; } if (rc != 0) { rc = gnutls_store_pubkey(NULL, NULL, hostname, txt_service, GNUTLS_CRT_X509, cert, 0, 0); if (rc < 0) fprintf(stderr, "Could not store key: %s\n", gnutls_strerror(rc)); } } #ifdef HAVE_DANE if (dane) /* try DANE auth */ { int port; unsigned int sflags = ENABLED_OPT(LOCAL_DNS)?0:DANE_F_IGNORE_LOCAL_RESOLVER; port = service_to_port(service); rc = dane_verify_session_crt( NULL, session, hostname, udp?"udp":"tcp", port, sflags, 0, &status); if (rc < 0) { fprintf(stderr, "*** DANE verification error: %s\n", dane_strerror(rc)); if (!insecure) return -1; } else { gnutls_datum_t out; rc = dane_verification_status_print( status, &out, 0); if (rc < 0) { fprintf(stderr, "*** DANE error: %s\n", dane_strerror(rc)); if (!insecure) return -1; } fprintf(stderr, "- DANE: %s\n", out.data); gnutls_free(out.data); } } #endif return 0; } /* This callback should be associated with a session by calling * gnutls_certificate_client_set_retrieve_function( session, cert_callback), * before a handshake. */ static int cert_callback (gnutls_session_t session, const gnutls_datum_t * req_ca_rdn, int nreqs, const gnutls_pk_algorithm_t * sign_algos, int sign_algos_length, gnutls_pcert_st **pcert, unsigned int *pcert_length, gnutls_privkey_t * pkey) { char issuer_dn[256]; int i, ret, cert_type; size_t len; if (verbose) { /* Print the server's trusted CAs */ if (nreqs > 0) printf ("- Server's trusted authorities:\n"); else printf ("- Server did not send us any trusted authorities names.\n"); /* print the names (if any) */ for (i = 0; i < nreqs; i++) { len = sizeof (issuer_dn); ret = gnutls_x509_rdn_get (&req_ca_rdn[i], issuer_dn, &len); if (ret >= 0) { printf (" [%d]: ", i); printf ("%s\n", issuer_dn); } } } /* Select a certificate and return it. * The certificate must be of any of the "sign algorithms" * supported by the server. */ cert_type = gnutls_certificate_type_get (session); *pcert_length = 0; if (cert_type == GNUTLS_CRT_X509) { if (x509_crt_size > 0) { if (x509_key != NULL) { *pkey = x509_key; } else { printf ("- Could not find a suitable key to send to server\n"); return -1; } *pcert_length = x509_crt_size; *pcert = x509_crt; } } else if (cert_type == GNUTLS_CRT_OPENPGP) { if (pgp_key != NULL) { *pkey = pgp_key; *pcert_length = 1; *pcert = &pgp_crt; } } printf ("- Successfully sent %u certificate(s) to server.\n", *pcert_length); return 0; } /* initializes a gnutls_session_t with some defaults. */ static gnutls_session_t init_tls_session (const char *hostname) { const char *err; int ret; unsigned i; gnutls_session_t session; if (priorities == NULL) priorities = "NORMAL"; if (udp) { gnutls_init (&session, GNUTLS_DATAGRAM|init_flags); if (mtu) gnutls_dtls_set_mtu(session, mtu); } else gnutls_init (&session, init_flags); if ((ret = gnutls_priority_set_direct (session, priorities, &err)) < 0) { if (ret == GNUTLS_E_INVALID_REQUEST) fprintf (stderr, "Syntax error at: %s\n", err); else fprintf(stderr, "Error in priorities: %s\n", gnutls_strerror(ret)); exit (1); } /* allow the use of private ciphersuites. */ if (disable_extensions == 0 && disable_sni == 0) { if (!isdigit(hostname[0]) && strchr(hostname, ':') == 0) gnutls_server_name_set (session, GNUTLS_NAME_DNS, hostname, strlen (hostname)); } if (HAVE_OPT(DH_BITS)) gnutls_dh_set_prime_bits( session, OPT_VALUE_DH_BITS); if (HAVE_OPT(ALPN)) { unsigned proto_n = STACKCT_OPT(ALPN); char** protos = (void*)STACKLST_OPT(ALPN); gnutls_datum_t p[proto_n]; for (i=0;i 0 && disable_extensions == 0) { if (gnutls_record_set_max_size (session, record_max_size) < 0) { fprintf (stderr, "Cannot set the maximum record size to %d.\n", record_max_size); fprintf (stderr, "Possible values: 512, 1024, 2048, 4096.\n"); exit (1); } } if (HAVE_OPT(HEARTBEAT)) gnutls_heartbeat_enable (session, GNUTLS_HB_PEER_ALLOWED_TO_SEND); #ifdef ENABLE_DTLS_SRTP if (HAVE_OPT(SRTP_PROFILES)) { ret = gnutls_srtp_set_profile_direct (session, OPT_ARG(SRTP_PROFILES), &err); if (ret == GNUTLS_E_INVALID_REQUEST) fprintf (stderr, "Syntax error at: %s\n", err); else fprintf(stderr, "Error in profiles: %s\n", gnutls_strerror(ret)); exit (1); } #endif return session; } static void cmd_parser (int argc, char **argv); /* Returns zero if the error code was successfully handled. */ static int handle_error (socket_st * hd, int err) { int alert, ret; const char *err_type, *str; if (err >= 0 || err == GNUTLS_E_AGAIN || err == GNUTLS_E_INTERRUPTED) return 0; if (gnutls_error_is_fatal (err) == 0) { ret = 0; err_type = "Non fatal"; } else { ret = err; err_type = "Fatal"; } str = gnutls_strerror (err); if (str == NULL) str = str_unknown; fprintf (stderr, "*** %s error: %s\n", err_type, str); if (err == GNUTLS_E_WARNING_ALERT_RECEIVED || err == GNUTLS_E_FATAL_ALERT_RECEIVED) { alert = gnutls_alert_get (hd->session); str = gnutls_alert_get_name (alert); if (str == NULL) str = str_unknown; printf ("*** Received alert [%d]: %s\n", alert, str); } check_rehandshake (hd, err); return ret; } int starttls_alarmed = 0; #ifndef _WIN32 static void starttls_alarm (int signum) { starttls_alarmed = 1; } #endif static void tls_log_func (int level, const char *str) { fprintf (stderr, "|<%d>| %s", level, str); } #define IN_KEYBOARD 1 #define IN_NET 2 #define IN_NONE 0 /* returns IN_KEYBOARD for keyboard input and IN_NET for network input */ static int check_net_or_keyboard_input(socket_st* hd) { int maxfd; fd_set rset; int err; struct timeval tv; do { FD_ZERO (&rset); FD_SET (hd->fd, &rset); #ifndef _WIN32 FD_SET (fileno (stdin), &rset); maxfd = MAX (fileno (stdin), hd->fd); #else maxfd = hd->fd; #endif tv.tv_sec = 0; tv.tv_usec = 50 * 1000; if (hd->secure == 1) if (gnutls_record_check_pending(hd->session)) return IN_NET; err = select (maxfd + 1, &rset, NULL, NULL, &tv); if (err < 0) continue; if (FD_ISSET (hd->fd, &rset)) return IN_NET; #ifdef _WIN32 { int state; state = WaitForSingleObject(GetStdHandle(STD_INPUT_HANDLE), 200); if (state == WAIT_OBJECT_0) return IN_KEYBOARD; } #else if (FD_ISSET (fileno (stdin), &rset)) return IN_KEYBOARD; #endif } while(err == 0); return IN_NONE; } static int try_rehandshake(socket_st *hd) { int ret; ret = do_handshake (hd); if (ret < 0) { fprintf (stderr, "*** ReHandshake has failed\n"); gnutls_perror (ret); return ret; } else { printf ("- ReHandshake was completed\n"); return 0; } } static int try_resume (socket_st *hd) { int ret; char *session_data; size_t session_data_size = 0; gnutls_session_get_data (hd->session, NULL, &session_data_size); session_data = (char *) malloc (session_data_size); if (session_data == NULL) return GNUTLS_E_MEMORY_ERROR; gnutls_session_get_data (hd->session, session_data, &session_data_size); printf ("- Disconnecting\n"); socket_bye (hd); printf ("\n\n- Connecting again- trying to resume previous session\n"); socket_open (hd, hostname, service, udp); hd->session = init_tls_session (hostname); gnutls_session_set_data (hd->session, session_data, session_data_size); free (session_data); ret = do_handshake (hd); if (ret < 0) { fprintf (stderr, "*** Resume handshake has failed\n"); gnutls_perror (ret); return ret; } printf ("- Resume Handshake was completed\n"); if (gnutls_session_is_resumed (hd->session) != 0) printf ("*** This is a resumed session\n"); return 0; } static bool parse_for_inline_commands_in_buffer (char *buffer, size_t bytes, inline_cmds_st *inline_cmds) { int local_bytes, match_bytes, prev_bytes_copied, ii, jj; char *local_buffer_ptr, *ptr; char inline_command_string[MAX_INLINE_COMMAND_BYTES]; inline_cmds->bytes_to_flush = 0; inline_cmds->cmd_found = INLINE_COMMAND_NONE; if (inline_cmds->bytes_copied) { local_buffer_ptr = &inline_cmds->inline_cmd_buffer[inline_cmds->bytes_copied]; local_bytes = ((inline_cmds->bytes_copied + bytes) <= MAX_INLINE_COMMAND_BYTES) ? bytes : (MAX_INLINE_COMMAND_BYTES - inline_cmds->bytes_copied); memcpy (local_buffer_ptr, buffer, local_bytes); prev_bytes_copied = inline_cmds->bytes_copied; inline_cmds->new_buffer_ptr = buffer + local_bytes; inline_cmds->bytes_copied += local_bytes; local_buffer_ptr = inline_cmds->inline_cmd_buffer; local_bytes = inline_cmds->bytes_copied; } else { prev_bytes_copied = 0; local_buffer_ptr = buffer; local_bytes = bytes; inline_cmds->new_buffer_ptr = buffer + bytes; } inline_cmds->current_ptr = local_buffer_ptr; if (local_buffer_ptr[0] == inline_commands_prefix[0] && inline_cmds->lf_found) { for (jj = 0; jj < NUM_INLINE_COMMANDS; jj ++) { if (inline_commands_prefix[0] != '^') /* refer inline_cmds.h for usage of ^ */ { strcpy (inline_command_string, inline_commands_def[jj].string); inline_command_string[strlen(inline_commands_def[jj].string)] = '\0'; inline_command_string[0] = inline_commands_prefix[0]; /* Inline commands are delimited by the inline_commands_prefix[0] (default is ^). The inline_commands_def[].string includes a trailing LF */ inline_command_string[strlen(inline_commands_def[jj].string) - 2] = inline_commands_prefix[0]; ptr = inline_command_string; } else ptr = inline_commands_def[jj].string; match_bytes = (local_bytes <= strlen (ptr)) ? local_bytes : strlen (ptr); if (strncmp (ptr, local_buffer_ptr, match_bytes) == 0) { if (match_bytes == strlen (ptr)) { inline_cmds->new_buffer_ptr = buffer + match_bytes - prev_bytes_copied; inline_cmds->cmd_found = inline_commands_def[jj].command; inline_cmds->bytes_copied = 0; /* reset it */ } else { /* partial command */ memcpy (&inline_cmds->inline_cmd_buffer[inline_cmds->bytes_copied], buffer, bytes); inline_cmds->bytes_copied += bytes; } return true; } /* else - if not a match, do nothing here */ } /* for */ } for (ii = prev_bytes_copied; ii < local_bytes; ii ++) { if (ii && local_buffer_ptr[ii] == inline_commands_prefix[0] && inline_cmds->lf_found) { /* possible inline command. First, let's flush bytes up to ^ */ inline_cmds->new_buffer_ptr = buffer + ii - prev_bytes_copied; inline_cmds->bytes_to_flush = ii; inline_cmds->lf_found = true; /* bytes to flush starts at inline_cmds->current_ptr */ return true; } else if (local_buffer_ptr[ii] == '\n') { inline_cmds->lf_found = true; } else { inline_cmds->lf_found = false; } } /* for */ inline_cmds->bytes_copied = 0; /* reset it */ return false; /* not an inline command */ } static int run_inline_command (inline_cmds_st *cmd, socket_st * hd) { switch (cmd->cmd_found) { case INLINE_COMMAND_RESUME: return try_resume (hd); case INLINE_COMMAND_RENEGOTIATE: return try_rehandshake (hd); default: return -1; } } static int do_inline_command_processing (char *buffer_ptr, size_t curr_bytes, socket_st * hd, inline_cmds_st *inline_cmds) { int skip_bytes, bytes; bool inline_cmd_start_found; bytes = curr_bytes; continue_inline_processing: /* parse_for_inline_commands_in_buffer hunts for start of an inline command * sequence. The function maintains state information in inline_cmds. */ inline_cmd_start_found = parse_for_inline_commands_in_buffer (buffer_ptr, bytes, inline_cmds); if (!inline_cmd_start_found) return bytes; /* inline_cmd_start_found is set */ if (inline_cmds->bytes_to_flush) { /* start of an inline command sequence found, but is not * at the beginning of buffer. So, we flush all preceding bytes. */ return inline_cmds->bytes_to_flush; } else if (inline_cmds->cmd_found == INLINE_COMMAND_NONE) { /* partial command found */ return 0; } else { /* complete inline command found and is at the start */ if (run_inline_command (inline_cmds, hd)) return -1; inline_cmds->cmd_found = INLINE_COMMAND_NONE; skip_bytes = inline_cmds->new_buffer_ptr - buffer_ptr; if (skip_bytes >= bytes) return 0; else { buffer_ptr = inline_cmds->new_buffer_ptr; bytes -= skip_bytes; goto continue_inline_processing; } } } int main (int argc, char **argv) { int ret; int ii, inp; char buffer[MAX_BUF + 1]; int user_term = 0, retval = 0; socket_st hd; ssize_t bytes, keyboard_bytes; char *keyboard_buffer_ptr; inline_cmds_st inline_cmds; #ifndef _WIN32 struct sigaction new_action; #endif cmd_parser (argc, argv); gnutls_global_set_log_function (tls_log_func); gnutls_global_set_log_level (OPT_VALUE_DEBUG); if ((ret = gnutls_global_init ()) < 0) { fprintf (stderr, "global_init: %s\n", gnutls_strerror (ret)); exit (1); } if (hostname == NULL) { fprintf (stderr, "No hostname given\n"); exit (1); } sockets_init (); init_global_tls_stuff (); socket_open (&hd, hostname, service, udp); hd.session = init_tls_session (hostname); if (starttls) goto after_handshake; ret = do_handshake (&hd); if (ret < 0) { fprintf (stderr, "*** Handshake has failed\n"); gnutls_perror (ret); gnutls_deinit (hd.session); return 1; } else printf ("- Handshake was completed\n"); if (resume != 0) if (try_resume (&hd)) return 1; after_handshake: /* Warning! Do not touch this text string, it is used by external programs to search for when gnutls-cli has reached this point. */ printf ("\n- Simple Client Mode:\n\n"); if (rehandshake) if (try_rehandshake (&hd)) return 1; #ifndef _WIN32 new_action.sa_handler = starttls_alarm; sigemptyset (&new_action.sa_mask); new_action.sa_flags = 0; sigaction (SIGALRM, &new_action, NULL); #endif fflush (stdout); fflush (stderr); /* do not buffer */ #ifndef _WIN32 setbuf (stdin, NULL); #endif setbuf (stdout, NULL); setbuf (stderr, NULL); if (inline_commands) { memset (&inline_cmds, 0, sizeof (inline_cmds_st)); inline_cmds.lf_found = true; /* initially, at start of line */ } for (;;) { if (starttls_alarmed && !hd.secure) { /* Warning! Do not touch this text string, it is used by external programs to search for when gnutls-cli has reached this point. */ fprintf (stderr, "*** Starting TLS handshake\n"); ret = do_handshake (&hd); if (ret < 0) { fprintf (stderr, "*** Handshake has failed\n"); user_term = 1; retval = 1; break; } } inp = check_net_or_keyboard_input(&hd); if (inp == IN_NET) { memset (buffer, 0, MAX_BUF + 1); ret = socket_recv (&hd, buffer, MAX_BUF); if (ret == 0) { printf ("- Peer has closed the GnuTLS connection\n"); break; } else if (handle_error (&hd, ret) < 0 && user_term == 0) { fprintf (stderr, "*** Server has terminated the connection abnormally.\n"); retval = 1; break; } else if (ret > 0) { if (verbose != 0) printf ("- Received[%d]: ", ret); for (ii = 0; ii < ret; ii++) { fputc (buffer[ii], stdout); } fflush (stdout); } if (user_term != 0) break; } if (inp == IN_KEYBOARD) { if ((bytes = read (fileno (stdin), buffer, MAX_BUF - 1)) <= 0) { if (hd.secure == 0) { /* Warning! Do not touch this text string, it is used by external programs to search for when gnutls-cli has reached this point. */ fprintf (stderr, "*** Starting TLS handshake\n"); ret = do_handshake (&hd); clearerr (stdin); if (ret < 0) { fprintf (stderr, "*** Handshake has failed\n"); user_term = 1; retval = 1; break; } } else { user_term = 1; break; } continue; } buffer[bytes] = 0; if (crlf != 0) { char *b = strchr (buffer, '\n'); if (b != NULL) { strcpy (b, "\r\n"); bytes++; } } keyboard_bytes = bytes; keyboard_buffer_ptr = buffer; inline_command_processing: if (inline_commands) { keyboard_bytes = do_inline_command_processing ( keyboard_buffer_ptr, keyboard_bytes, &hd, &inline_cmds); if (keyboard_bytes == 0) continue; else if (keyboard_bytes < 0) { /* error processing an inline command */ retval = 1; break; } else { /* current_ptr could point to either an inline_cmd_buffer * or may point to start or an offset into buffer. */ keyboard_buffer_ptr = inline_cmds.current_ptr; } } if (ranges && gnutls_record_can_use_length_hiding(hd.session)) { gnutls_range_st range; range.low = 0; range.high = MAX_BUF; ret = socket_send_range (&hd, keyboard_buffer_ptr, keyboard_bytes, &range); } else { ret = socket_send(&hd, keyboard_buffer_ptr, keyboard_bytes); } if (ret > 0) { if (verbose != 0) printf ("- Sent: %d bytes\n", ret); } else handle_error (&hd, ret); if (inline_commands && inline_cmds.new_buffer_ptr < (buffer + bytes)) { keyboard_buffer_ptr = inline_cmds.new_buffer_ptr; keyboard_bytes = (buffer + bytes) - keyboard_buffer_ptr; goto inline_command_processing; } } } if (user_term != 0) socket_bye (&hd); else gnutls_deinit (hd.session); #ifdef ENABLE_SRP if (srp_cred) gnutls_srp_free_client_credentials (srp_cred); #endif #ifdef ENABLE_PSK if (psk_cred) gnutls_psk_free_client_credentials (psk_cred); #endif gnutls_certificate_free_credentials (xcred); #ifdef ENABLE_ANON gnutls_anon_free_client_credentials (anon_cred); #endif gnutls_global_deinit (); return retval; } static void cmd_parser (int argc, char **argv) { const char* rest = NULL; int optct = optionProcess( &gnutls_cliOptions, argc, argv); argc -= optct; argv += optct; if (rest == NULL && argc > 0) rest = argv[0]; if (HAVE_OPT(BENCHMARK_CIPHERS)) { benchmark_cipher(1, OPT_VALUE_DEBUG); exit(0); } if (HAVE_OPT(BENCHMARK_SOFT_CIPHERS)) { benchmark_cipher(0, OPT_VALUE_DEBUG); exit(0); } if (HAVE_OPT(BENCHMARK_TLS_CIPHERS)) { benchmark_tls(OPT_VALUE_DEBUG, 1); exit(0); } if (HAVE_OPT(BENCHMARK_TLS_KX)) { benchmark_tls(OPT_VALUE_DEBUG, 0); exit(0); } if (HAVE_OPT(PRIORITY)) { priorities = OPT_ARG(PRIORITY); } verbose = HAVE_OPT( VERBOSE); if (verbose) print_cert = 1; else print_cert = HAVE_OPT( PRINT_CERT); if (HAVE_OPT(LIST)) { print_list(priorities, verbose); exit(0); } disable_sni = HAVE_OPT(DISABLE_SNI); disable_extensions = HAVE_OPT( DISABLE_EXTENSIONS); if (disable_extensions) init_flags |= GNUTLS_NO_EXTENSIONS; inline_commands = HAVE_OPT(INLINE_COMMANDS); if (HAVE_OPT(INLINE_COMMANDS_PREFIX)) { if (strlen(OPT_ARG(INLINE_COMMANDS_PREFIX)) > 1) { fprintf(stderr, "inline-commands-prefix value is a single US-ASCII character (octets 0 - 127)\n"); exit(1); } inline_commands_prefix = (unsigned char *) OPT_ARG(INLINE_COMMANDS_PREFIX); if (inline_commands_prefix[0] > 127) { fprintf(stderr, "inline-commands-prefix value is a single US-ASCII character (octets 0 - 127)\n"); exit(1); } } else inline_commands_prefix = (const unsigned char *) "^"; starttls = HAVE_OPT(STARTTLS); resume = HAVE_OPT(RESUME); rehandshake = HAVE_OPT(REHANDSHAKE); insecure = HAVE_OPT(INSECURE); ranges = HAVE_OPT(RANGES); udp = HAVE_OPT(UDP); mtu = OPT_VALUE_MTU; if (HAVE_OPT(PORT)) { service = OPT_ARG(PORT); } else { service = "443"; } record_max_size = OPT_VALUE_RECORDSIZE; fingerprint = HAVE_OPT(FINGERPRINT); if (HAVE_OPT(X509FMTDER)) x509ctype = GNUTLS_X509_FMT_DER; else x509ctype = GNUTLS_X509_FMT_PEM; if (HAVE_OPT(SRPUSERNAME)) srp_username = OPT_ARG(SRPUSERNAME); if (HAVE_OPT(SRPPASSWD)) srp_passwd = OPT_ARG(SRPPASSWD); if (HAVE_OPT(X509CAFILE)) x509_cafile = OPT_ARG(X509CAFILE); if (HAVE_OPT(X509CRLFILE)) x509_crlfile = OPT_ARG(X509CRLFILE); if (HAVE_OPT(X509KEYFILE)) x509_keyfile = OPT_ARG(X509KEYFILE); if (HAVE_OPT(X509CERTFILE)) x509_certfile = OPT_ARG(X509CERTFILE); if (HAVE_OPT(PGPKEYFILE)) pgp_keyfile = OPT_ARG(PGPKEYFILE); if (HAVE_OPT(PGPCERTFILE)) pgp_certfile = OPT_ARG(PGPCERTFILE); if (HAVE_OPT(PSKUSERNAME)) psk_username = OPT_ARG(PSKUSERNAME); if (HAVE_OPT(PSKKEY)) { psk_key.data = (unsigned char *) OPT_ARG(PSKKEY); psk_key.size = strlen (OPT_ARG(PSKKEY)); } else psk_key.size = 0; if (HAVE_OPT(PGPKEYRING)) pgp_keyring = OPT_ARG(PGPKEYRING); crlf = HAVE_OPT(CRLF); if (rest != NULL) hostname = rest; if (hostname == NULL) { fprintf(stderr, "No hostname specified\n"); exit(1); } } static void check_rehandshake (socket_st * socket, int ret) { if (socket->secure && ret == GNUTLS_E_REHANDSHAKE) { /* There is a race condition here. If application * data is sent after the rehandshake request, * the server thinks we ignored his request. * This is a bad design of this client. */ printf ("*** Received rehandshake request\n"); /* gnutls_alert_send( session, GNUTLS_AL_WARNING, GNUTLS_A_NO_RENEGOTIATION); */ ret = do_handshake (socket); if (ret == 0) { printf ("*** Rehandshake was performed.\n"); } else { printf ("*** Rehandshake Failed.\n"); } } } static int do_handshake (socket_st * socket) { int ret; gnutls_transport_set_int (socket->session, socket->fd); do { gnutls_handshake_set_timeout( socket->session, GNUTLS_DEFAULT_HANDSHAKE_TIMEOUT); ret = gnutls_handshake (socket->session); if (ret < 0) { handle_error (socket, ret); } } while (ret < 0 && gnutls_error_is_fatal (ret) == 0); if (ret == 0) { /* print some information */ print_info (socket->session, verbose, 0); socket->secure = 1; } else { gnutls_alert_send_appropriate (socket->session, ret); shutdown (socket->fd, SHUT_RDWR); } return ret; } static int srp_username_callback (gnutls_session_t session, char **username, char **password) { if (srp_username == NULL || srp_passwd == NULL) { return -1; } *username = gnutls_strdup (srp_username); *password = gnutls_strdup (srp_passwd); return 0; } static int psk_callback (gnutls_session_t session, char **username, gnutls_datum_t * key) { const char *hint = gnutls_psk_client_get_hint (session); char *rawkey; char *passwd; int ret; size_t res_size; gnutls_datum_t tmp; printf ("- PSK client callback. "); if (hint) printf ("PSK hint '%s'\n", hint); else printf ("No PSK hint\n"); if (HAVE_OPT(PSKUSERNAME)) *username = gnutls_strdup (OPT_ARG(PSKUSERNAME)); else { char *tmp = NULL; size_t n; printf ("Enter PSK identity: "); fflush (stdout); getline (&tmp, &n, stdin); if (tmp == NULL) { fprintf (stderr, "No username given, aborting...\n"); return GNUTLS_E_INSUFFICIENT_CREDENTIALS; } if (tmp[strlen (tmp) - 1] == '\n') tmp[strlen (tmp) - 1] = '\0'; if (tmp[strlen (tmp) - 1] == '\r') tmp[strlen (tmp) - 1] = '\0'; *username = gnutls_strdup (tmp); free (tmp); } if (!*username) return GNUTLS_E_MEMORY_ERROR; passwd = getpass ("Enter key: "); if (passwd == NULL) { fprintf (stderr, "No key given, aborting...\n"); return GNUTLS_E_INSUFFICIENT_CREDENTIALS; } tmp.data = (void*)passwd; tmp.size = strlen (passwd); res_size = tmp.size / 2 + 1; rawkey = gnutls_malloc (res_size); if (rawkey == NULL) return GNUTLS_E_MEMORY_ERROR; ret = gnutls_hex_decode (&tmp, rawkey, &res_size); if (ret < 0) { fprintf (stderr, "Error deriving password: %s\n", gnutls_strerror (ret)); gnutls_free (*username); return ret; } key->data = (void*)rawkey; key->size = res_size; if (HAVE_OPT(DEBUG)) { char hexkey[41]; res_size = sizeof (hexkey); gnutls_hex_encode (key, hexkey, &res_size); fprintf (stderr, "PSK username: %s\n", *username); fprintf (stderr, "PSK hint: %s\n", hint); fprintf (stderr, "PSK key: %s\n", hexkey); } return 0; } static void init_global_tls_stuff (void) { int ret; /* X509 stuff */ if (gnutls_certificate_allocate_credentials (&xcred) < 0) { fprintf (stderr, "Certificate allocation memory error\n"); exit (1); } gnutls_certificate_set_pin_function(xcred, pin_callback, NULL); if (x509_cafile != NULL) { ret = gnutls_certificate_set_x509_trust_file (xcred, x509_cafile, x509ctype); } else { ret = gnutls_certificate_set_x509_system_trust (xcred); } if (ret < 0) { fprintf (stderr, "Error setting the x509 trust file\n"); } else { printf ("Processed %d CA certificate(s).\n", ret); } if (x509_crlfile != NULL) { ret = gnutls_certificate_set_x509_crl_file (xcred, x509_crlfile, x509ctype); if (ret < 0) { fprintf (stderr, "Error setting the x509 CRL file\n"); } else { printf ("Processed %d CRL(s).\n", ret); } } load_keys (); #ifdef ENABLE_OPENPGP if (pgp_keyring != NULL) { ret = gnutls_certificate_set_openpgp_keyring_file (xcred, pgp_keyring, GNUTLS_OPENPGP_FMT_BASE64); if (ret < 0) { fprintf (stderr, "Error setting the OpenPGP keyring file\n"); } } #endif #ifdef ENABLE_SRP if (srp_username && srp_passwd) { /* SRP stuff */ if (gnutls_srp_allocate_client_credentials (&srp_cred) < 0) { fprintf (stderr, "SRP authentication error\n"); } gnutls_srp_set_client_credentials_function (srp_cred, srp_username_callback); } #endif #ifdef ENABLE_PSK /* PSK stuff */ if (gnutls_psk_allocate_client_credentials (&psk_cred) < 0) { fprintf (stderr, "PSK authentication error\n"); } if (psk_username && psk_key.data) { ret = gnutls_psk_set_client_credentials (psk_cred, psk_username, &psk_key, GNUTLS_PSK_KEY_HEX); if (ret < 0) { fprintf (stderr, "Error setting the PSK credentials: %s\n", gnutls_strerror (ret)); } } else gnutls_psk_set_client_credentials_function (psk_cred, psk_callback); #endif #ifdef ENABLE_ANON /* ANON stuff */ if (gnutls_anon_allocate_client_credentials (&anon_cred) < 0) { fprintf (stderr, "Anonymous authentication error\n"); } #endif } /* OCSP check for the peer's certificate. Should be called * only after the certificate list verication is complete. * Returns: * 0: certificate is revoked * 1: certificate is ok * -1: dunno */ static int cert_verify_ocsp (gnutls_session_t session) { gnutls_x509_crt_t crt, issuer; const gnutls_datum_t *cert_list; unsigned int cert_list_size = 0; int deinit_issuer = 0; gnutls_datum_t resp; int ret; cert_list = gnutls_certificate_get_peers (session, &cert_list_size); if (cert_list_size == 0) { fprintf (stderr, "No certificates found!\n"); return -1; } gnutls_x509_crt_init (&crt); ret = gnutls_x509_crt_import (crt, &cert_list[0], GNUTLS_X509_FMT_DER); if (ret < 0) { fprintf (stderr, "Decoding error: %s\n", gnutls_strerror (ret)); return -1; } ret = gnutls_certificate_get_issuer(xcred, crt, &issuer, 0); if (ret < 0 && cert_list_size > 1) { gnutls_x509_crt_init(&issuer); ret = gnutls_x509_crt_import(issuer, &cert_list[1], GNUTLS_X509_FMT_DER); if (ret < 0) { fprintf (stderr, "Decoding error: %s\n", gnutls_strerror (ret)); return -1; } deinit_issuer = 1; } else if (ret < 0) { fprintf(stderr, "Cannot find issuer\n"); ret = -1; goto cleanup; } ret = send_ocsp_request(NULL, crt, issuer, &resp, 1); if (ret < 0) { fprintf(stderr, "Cannot contact OCSP server\n"); ret = -1; goto cleanup; } /* verify and check the response for revoked cert */ ret = check_ocsp_response(crt, issuer, &resp); cleanup: if (deinit_issuer) gnutls_x509_crt_deinit (issuer); gnutls_x509_crt_deinit (crt); return ret; }