4 * Copyright (C) 2011-2013 Simon Ruderich
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "connection.h"
31 #include <gnutls/x509.h>
34 /* Maximum length of a HTTP request line. Longer request lines are aborted
35 * with an error. The standard doesn't specify a maximum line length but this
36 * should be a good limit to make processing simpler. As HTTPS is used this
37 * doesn't limit long GET requests. */
38 #define MAX_REQUEST_LINE 4096
40 /* Format string used to send HTTP/1.0 error responses to the client.
42 * %s is used 5 times, first is the error code, then additional headers, next
43 * two are the error code (no %n$s which is not in C98!), the last is the
45 #define HTTP_RESPONSE_FORMAT "HTTP/1.0 %s\r\n\
46 Content-Type: text/html; charset=US-ASCII\r\n\
48 <!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n\
50 <head><title>%s</title></head>\n\
58 static int initialize_tls_session_client(int peer_socket,
60 gnutls_session_t *session,
61 gnutls_certificate_credentials_t *x509_cred);
62 static int initialize_tls_session_server(int peer_socket,
63 gnutls_session_t *session,
64 gnutls_certificate_credentials_t *x509_cred);
65 static int initialize_tls_session_both(unsigned int flags,
67 gnutls_session_t *session,
68 gnutls_certificate_credentials_t *x509_cred);
70 static int fdopen_read_write(int socket, FILE **read_fd, FILE **write_fd);
71 static int read_http_request(FILE *client_fd, char *request, size_t length);
72 static void send_bad_request(FILE *client_fd);
73 static void send_authentication_required(FILE *client_fd);
74 static void send_forwarding_failure(FILE *client_fd);
75 static void tls_send_invalid_cert_message(gnutls_session_t session);
77 static void transfer_data(int client, int server);
78 static int read_from_write_to(int from, int to);
79 static void transfer_data_tls(int client, int server,
80 gnutls_session_t client_session,
81 gnutls_session_t server_session);
82 static int read_from_write_to_tls(gnutls_session_t from, gnutls_session_t to,
85 static int connect_to_host(const char *hostname, const char *port);
87 static int parse_request(const char *buffer, char *host, char *port,
90 static void log_session_information(gnutls_session_t session);
93 void handle_connection(int client_socket) {
95 FILE *client_fd_read, *client_fd_write, *server_fd_read, *server_fd_write;
97 char buffer[MAX_REQUEST_LINE];
98 char host[MAX_REQUEST_LINE];
101 int version_minor; /* x in HTTP/1.x */
104 /* client_x509_cred is used when talking to the client (acting as a TSL
105 * server), server_x509_cred is used when talking to the server (acting as
107 gnutls_certificate_credentials_t client_x509_cred, server_x509_cred;
109 gnutls_session_t client_session, server_session;
110 /* initialize_tls_session_*() called? - used for goto out */
111 int client_session_init, server_session_init;
112 /* gnutls_handshake() called? - used for goto out */
113 int client_session_started, server_session_started;
114 /* Validation failed? If yes we need to send the special "invalid"
116 int validation_failed;
118 LOG(DEBUG1, "new connection");
121 client_fd_read = NULL;
122 client_fd_write = NULL;
123 server_fd_read = NULL;
124 server_fd_write = NULL;
125 client_session_init = 0;
126 server_session_init = 0;
127 client_session_started = 0;
128 server_session_started = 0;
129 validation_failed = 0;
131 if (fdopen_read_write(client_socket, &client_fd_read,
132 &client_fd_write) != 0) {
136 /* Read request line (CONNECT ..) and headers (they are discarded). */
137 result = read_http_request(client_fd_read, buffer, sizeof(buffer));
139 LOG(WARNING, "read_http_request(): client read error");
141 } else if (result == -2) {
142 LOG(WARNING, "read_http_request(): client EOF");
143 send_bad_request(client_fd_write);
145 } else if (result == -3) {
146 LOG(WARNING, "read_http_request(): proxy authentication failed");
147 send_authentication_required(client_fd_write);
151 if (parse_request(buffer, host, port, &version_minor) != 0) {
152 LOG(WARNING, "bad request: >%s<", buffer);
153 send_bad_request(client_fd_write);
157 LOG(DEBUG2, "target: %s:%s (HTTP 1.%d)", host, port, version_minor);
159 /* Connect to proxy server or directly to server. */
160 if (global_proxy_host != NULL && global_proxy_port != NULL) {
161 LOG(DEBUG1, "connecting to %s:%s", global_proxy_host,
163 server_socket = connect_to_host(global_proxy_host, global_proxy_port);
165 LOG(DEBUG1, "connecting to %s:%s", host, port);
166 server_socket = connect_to_host(host, port);
169 if (server_socket < 0) {
170 LOG(WARNING, "failed to connect to server");
171 send_forwarding_failure(client_fd_write);
174 if (fdopen_read_write(server_socket, &server_fd_read,
175 &server_fd_write) != 0) {
176 send_forwarding_failure(client_fd_write);
180 /* Connect to proxy if requested (command line option). */
181 if (global_proxy_host != NULL && global_proxy_port != NULL) {
182 fprintf(server_fd_write, "CONNECT %s:%s HTTP/1.0\r\n", host, port);
183 fprintf(server_fd_write, "\r\n");
184 fflush(server_fd_write);
186 /* Read response line from proxy server. */
187 result = read_http_request(server_fd_read, buffer, sizeof(buffer));
189 LOG(WARNING, "read_http_request(): proxy read error");
190 send_forwarding_failure(client_fd_write);
192 } else if (result == -2) {
193 LOG(WARNING, "read_http_request(): proxy EOF");
194 send_forwarding_failure(client_fd_write);
198 /* Check response of proxy server. */
199 if (strncmp(buffer, "HTTP/1.0 200", 12)) {
200 LOG(WARNING, "bad proxy response: >%s<", buffer);
201 send_forwarding_failure(client_fd_write);
206 LOG(DEBUG1, "connection to server established");
208 /* If the -u option is used and we don't know this hostname's server
209 * certificate then just pass through the connection and let the client
210 * verify the server certificate. */
211 if (global_passthrough_unknown) {
212 char path[TLSPROXY_MAX_PATH_LENGTH];
215 if (server_certificate_file(&file, host, path, sizeof(path)) == -2) {
216 /* We've established a connection, tell the client. */
217 fprintf(client_fd_write, "HTTP/1.0 200 Connection established\r\n");
218 fprintf(client_fd_write, "\r\n");
219 fflush(client_fd_write);
221 LOG(DEBUG1, "transferring data");
223 /* Proxy data between client and server until one side is done
225 transfer_data(client_socket, server_socket);
227 LOG(DEBUG1, "finished transferring data");
231 /* server_certificate_file() may have opened the file, close it. */
237 /* Initialize TLS client credentials to talk to the server. */
238 result = initialize_tls_session_server(server_socket, &server_session,
241 LOG(WARNING, "initialize_tls_session_server() failed");
242 send_forwarding_failure(client_fd_write);
245 server_session_init = 1;
247 LOG(DEBUG1, "starting server TLS handshake");
249 /* Try to establish TLS handshake between us and server. */
250 result = gnutls_handshake(server_session);
251 if (result != GNUTLS_E_SUCCESS) {
252 LOG(WARNING, "server TLS handshake failed: %s",
253 gnutls_strerror(result));
254 send_forwarding_failure(client_fd_write);
257 server_session_started = 1;
259 LOG(DEBUG1, "server TLS handshake finished");
261 if (global_log_level >= LOG_DEBUG2_LEVEL) {
262 log_session_information(server_session);
265 /* Make sure the server certificate is valid and known. */
266 if (verify_tls_connection(server_session, host) != 0) {
267 LOG(ERROR, "server certificate validation failed!");
268 /* We'll send the error message over our TLS connection to the client,
269 * but with an invalid certificate. No data is transfered from/to the
271 validation_failed = 1;
274 /* Initialize TLS server credentials to talk to the client. */
275 result = initialize_tls_session_client(client_socket,
276 /* use a special host if the server
277 * certificate was invalid */
278 (validation_failed) ? "invalid"
283 LOG(WARNING, "initialize_tls_session_client() failed");
284 send_forwarding_failure(client_fd_write);
287 client_session_init = 1;
289 /* We've established a connection, tell the client. */
290 fprintf(client_fd_write, "HTTP/1.0 200 Connection established\r\n");
291 fprintf(client_fd_write, "\r\n");
292 fflush(client_fd_write);
294 LOG(DEBUG1, "starting client TLS handshake");
296 /* Try to establish TLS handshake between client and us. */
297 result = gnutls_handshake(client_session);
298 if (result != GNUTLS_E_SUCCESS) {
299 LOG(WARNING, "client TLS handshake failed: %s",
300 gnutls_strerror(result));
301 send_forwarding_failure(client_fd_write);
304 client_session_started = 1;
306 LOG(DEBUG1, "client TLS handshake finished");
308 if (global_log_level >= LOG_DEBUG2_LEVEL) {
309 log_session_information(client_session);
312 /* Tell the client that the verification failed. Shouldn't be necessary as
313 * the client should terminate the connection because he received the
314 * invalid certificate but better be sure. */
315 if (validation_failed) {
316 tls_send_invalid_cert_message(client_session);
320 LOG(DEBUG1, "transferring TLS data");
322 /* Proxy data between client and server until one side is done (EOF or
324 transfer_data_tls(client_socket, server_socket,
325 client_session, server_session);
327 LOG(DEBUG1, "finished transferring TLS data");
330 /* Close TLS sessions if necessary. Use GNUTLS_SHUT_RDWR so the data is
331 * reliable transmitted. */
332 if (server_session_started) {
333 /* Recent gnutls-serv (used in the test-suite) won't terminate the
334 * connection when gnutls_bye(session, GNUTLS_SHUT_RDWR) is used
335 * before any other data was received. If the validation failed just
336 * close the connection without waiting for data, we won't read it
339 * For verified connections GNUTLS_SHUT_RDWR is important or we might
341 gnutls_bye(server_session, validation_failed ? GNUTLS_SHUT_WR
344 if (client_session_started) {
345 gnutls_bye(client_session, GNUTLS_SHUT_RDWR);
347 if (server_session_init) {
348 gnutls_deinit(server_session);
349 gnutls_certificate_free_credentials(server_x509_cred);
351 if (client_session_init) {
352 gnutls_deinit(client_session);
353 gnutls_certificate_free_credentials(client_x509_cred);
356 /* Close connection to server/proxy. */
357 if (server_fd_read != NULL) {
358 if (server_fd_write != NULL) {
359 fclose(server_fd_write);
361 fclose(server_fd_read);
362 } else if (server_socket != -1) {
363 close(server_socket);
365 LOG(DEBUG1, "connection to server closed");
366 /* Close connection to client. */
367 if (client_fd_read != NULL) {
368 if (client_fd_write != NULL) {
369 fclose(client_fd_write);
371 fclose(client_fd_read);
373 close(client_socket);
375 LOG(DEBUG1, "connection to client closed");
377 LOG(DEBUG1, "connection finished");
381 static int initialize_tls_session_client(int peer_socket,
382 const char *hostname,
383 gnutls_session_t *session,
384 gnutls_certificate_credentials_t *x509_cred) {
386 int use_invalid_cert;
387 char path[TLSPROXY_MAX_PATH_LENGTH];
389 /* The "invalid" hostname is special. If it's used we send an invalid
390 * certificate to let the client know something is wrong. */
391 use_invalid_cert = (!strcmp(hostname, "invalid"));
393 if (proxy_certificate_path(hostname, path, sizeof(path)) != 0) {
395 "initialize_tls_session_client(): "
396 "failed to get proxy certificate path");
400 result = gnutls_certificate_allocate_credentials(x509_cred);
401 if (result != GNUTLS_E_SUCCESS) {
403 "initialize_tls_session_client(): "
404 "gnutls_certificate_allocate_credentials(): %s",
405 gnutls_strerror(result));
409 /* Load proxy CA file, this CA "list" is send to the client. */
410 if (!use_invalid_cert) {
411 result = gnutls_certificate_set_x509_trust_file(*x509_cred,
413 GNUTLS_X509_FMT_PEM);
416 "initialize_tls_session_client(): can't read CA file: '%s'",
418 gnutls_certificate_free_credentials(*x509_cred);
420 } else if (result != 1) {
421 /* Must contain only one CA, our proxy CA. */
422 LOG(ERROR, "initialize_tls_session_client(): multiple CAs found");
423 gnutls_certificate_free_credentials(*x509_cred);
427 /* If the invalid hostname was specified do nothing, we use a self-signed
428 * certificate in this case. */
430 /* And certificate for this website and proxy's private key. */
431 if (!use_invalid_cert) {
432 result = gnutls_certificate_set_x509_key_file(*x509_cred,
435 GNUTLS_X509_FMT_PEM);
436 /* If the invalid hostname was specified load our special "invalid"
439 result = gnutls_certificate_set_x509_key_file(*x509_cred,
440 PROXY_INVALID_CERT_PATH,
442 GNUTLS_X509_FMT_PEM);
444 if (result != GNUTLS_E_SUCCESS) {
446 "initialize_tls_session_client(): "
447 "can't read server certificate ('%s') or key file ('%s'): %s",
448 path, PROXY_KEY_PATH, gnutls_strerror(result));
449 gnutls_certificate_free_credentials(*x509_cred);
450 /* Could be a missing certificate. */
454 gnutls_certificate_set_dh_params(*x509_cred, global_tls_dh_params);
456 return initialize_tls_session_both(GNUTLS_SERVER,
457 peer_socket, session, x509_cred);
459 static int initialize_tls_session_server(int peer_socket,
460 gnutls_session_t *session,
461 gnutls_certificate_credentials_t *x509_cred) {
464 result = gnutls_certificate_allocate_credentials(x509_cred);
465 if (result != GNUTLS_E_SUCCESS) {
467 "initialize_tls_session_server(): "
468 "gnutls_certificate_allocate_credentials(): %s",
469 gnutls_strerror(result));
473 return initialize_tls_session_both(GNUTLS_CLIENT,
474 peer_socket, session, x509_cred);
476 static int initialize_tls_session_both(unsigned int flags,
478 gnutls_session_t *session,
479 gnutls_certificate_credentials_t *x509_cred) {
484 result = gnutls_init(session, flags);
485 if (result != GNUTLS_E_SUCCESS) {
487 "initialize_tls_session_both(): gnutls_init(): %s",
488 gnutls_strerror(result));
491 result = gnutls_priority_set(*session, global_tls_priority_cache);
492 if (result != GNUTLS_E_SUCCESS) {
494 "initialize_tls_session_both(): gnutls_priority_set(): %s",
495 gnutls_strerror(result));
498 result = gnutls_credentials_set(*session,
499 GNUTLS_CRD_CERTIFICATE, *x509_cred);
500 if (result != GNUTLS_E_SUCCESS) {
502 "initialize_tls_session_both(): gnutls_credentials_set(): %s",
503 gnutls_strerror(result));
507 #ifdef HAVE_GNUTLS_TRANSPORT_SET_INT2
508 /* gnutls_transport_set_int() is a macro. */
509 gnutls_transport_set_int(*session, peer_socket);
511 gnutls_transport_set_ptr(*session, (gnutls_transport_ptr_t)peer_socket);
518 gnutls_deinit(*session);
520 gnutls_certificate_free_credentials(*x509_cred);
525 static int fdopen_read_write(int socket, FILE **read_fd, FILE **write_fd) {
526 *read_fd = fdopen(socket, "r");
527 if (*read_fd == NULL) {
528 LOG_PERROR(WARNING, "fdopen_read_write(): fdopen(\"r\") failed");
532 *write_fd = fdopen(dup(socket), "w");
533 if (*write_fd == NULL) {
534 LOG_PERROR(WARNING, "fdopen_read_write(): fdopen(\"w\") failed");
536 *read_fd = NULL; /* "tell" caller read_fd is already closed */
543 /* Read HTTP request line and headers (ignored).
545 * On success 0 is returned, -1 on client error, -2 on unexpected EOF.
547 static int read_http_request(FILE *client_fd, char *request, size_t length) {
548 char buffer[MAX_REQUEST_LINE];
549 int found_proxy_authorization;
551 assert(length <= INT_MAX);
552 if (fgets(request, (int)length, client_fd) == NULL) {
553 if (ferror(client_fd)) {
554 LOG_PERROR(WARNING, "read_http_request(): fgets()");
561 found_proxy_authorization = 0;
562 while (fgets(buffer, sizeof(buffer), client_fd) != NULL) {
563 const char *authentication = "Proxy-Authorization: Basic ";
565 if (global_http_digest_authorization != NULL
566 && !strncmp(buffer, authentication, strlen(authentication))) {
567 found_proxy_authorization = 1;
569 /* Check if the passphrase matches. */
570 strtok(buffer, "\r\n");
571 if (strcmp(buffer + strlen(authentication),
572 global_http_digest_authorization)) {
578 if (!strcmp(buffer, "\n") || !strcmp(buffer, "\r\n")) {
582 if (ferror(client_fd)) {
583 LOG_PERROR(WARNING, "read_http_request(): fgets()");
585 } else if (feof(client_fd)) {
589 if (global_http_digest_authorization != NULL && !found_proxy_authorization) {
596 static void send_bad_request(FILE *client_fd) {
597 const char error[] = "400 Bad Request";
598 const char msg[] = "Your browser sent an invalid request.";
599 fprintf(client_fd, HTTP_RESPONSE_FORMAT, error, "", error, error, msg);
602 static void send_authentication_required(FILE *client_fd) {
603 const char error[] = "407 Proxy Authentication Required";
604 const char auth[] = "Proxy-Authenticate: Basic realm=\"tlsproxy\"\r\n";
605 const char msg[] = "TODO";
606 fprintf(client_fd, HTTP_RESPONSE_FORMAT, error, auth, error, error, msg);
609 static void send_forwarding_failure(FILE *client_fd) {
610 const char error[] = "503 Forwarding failure";
611 const char msg[] = "Failed to connect to server, check logs.";
612 fprintf(client_fd, HTTP_RESPONSE_FORMAT, error, "", error, error, msg);
615 static void tls_send_invalid_cert_message(gnutls_session_t session) {
616 const char error[] = "500 Internal Server Error";
617 const char msg[] = "Server certificate validation failed, check logs.";
620 ssize_t size_written;
621 char buffer[sizeof(HTTP_RESPONSE_FORMAT)
622 + 3 * sizeof(error) + sizeof(msg)];
624 result = snprintf(buffer, sizeof(buffer), HTTP_RESPONSE_FORMAT,
625 error, "", error, error, msg);
626 assert(result > 0 && (size_t)result < sizeof(buffer));
628 size_written = gnutls_record_send(session, buffer, strlen(buffer));
629 if (size_written < 0) {
630 LOG(WARNING, "tls_send_invalid_cert_message(): "
631 "gnutls_record_send(): %s",
632 gnutls_strerror((int)size_written));
634 /* Just an error message, no need to check if everything was written. */
638 /* Transfer data between client and server sockets until one closes the
640 static void transfer_data(int client, int server) {
641 struct pollfd fds[2];
643 fds[0].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
646 fds[1].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
649 LOG(DEBUG2, "transfer_data(): %d -> %d", client, server);
652 int result = poll(fds, 2 /* fd count */, -1 /* no timeout */);
654 LOG_PERROR(ERROR, "transfer_data(): poll()");
658 /* Data available from client. */
659 if (fds[0].revents & POLLIN || fds[0].revents & POLLPRI) {
660 if (read_from_write_to(client, server) != 0) {
661 /* EOF (or other error) */
665 /* Data available from server. */
666 if (fds[1].revents & POLLIN || fds[1].revents & POLLPRI) {
667 if (read_from_write_to(server, client) != 0) {
668 /* EOF (or other error) */
673 /* Client closed connection. */
674 if (fds[0].revents & POLLERR || fds[0].revents & POLLHUP) {
677 /* Server closed connection. */
678 if (fds[1].revents & POLLERR || fds[1].revents & POLLHUP) {
684 /* Read available data from socket from and write it to socket to. At maximum
685 * 4096 bytes are read/written. */
686 static int read_from_write_to(int from, int to) {
688 ssize_t size_written;
691 size_read = read(from, buffer, sizeof(buffer));
693 LOG_PERROR(WARNING, "read_from_write_to(): read()");
696 } else if (size_read == 0) {
700 size_written = write(to, buffer, (size_t)size_read);
701 if (size_written < 0) {
702 LOG_PERROR(WARNING, "read_from_write_to(): write()");
705 if (size_read != size_written) {
706 LOG(ERROR, "read_from_write_to(): only written %zu of %zu bytes!",
707 size_written, size_read);
714 /* Transfer data between client and server TLS connection until one closes the
716 static void transfer_data_tls(int client, int server,
717 gnutls_session_t client_session,
718 gnutls_session_t server_session) {
721 struct pollfd fds[2];
723 fds[0].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
726 fds[1].events = POLLIN | POLLPRI | POLLHUP | POLLERR;
729 /* Get maximum possible buffer size. */
730 buffer_size = gnutls_record_get_max_size(client_session);
731 if (gnutls_record_get_max_size(server_session) < buffer_size) {
732 buffer_size = gnutls_record_get_max_size(server_session);
734 LOG(DEBUG2, "transfer_data_tls(): suggested buffer size: %zu",
738 int result = poll(fds, 2 /* fd count */, -1 /* no timeout */);
740 LOG_PERROR(ERROR, "transfer_data(): poll()");
744 /* Data available from client. */
745 if (fds[0].revents & POLLIN || fds[0].revents & POLLPRI) {
746 if (read_from_write_to_tls(client_session, server_session,
748 /* EOF (or other error) */
752 /* Data available from server. */
753 if (fds[1].revents & POLLIN || fds[1].revents & POLLPRI) {
754 if (read_from_write_to_tls(server_session, client_session,
756 /* EOF (or other error) */
761 /* Client closed connection. */
762 if (fds[0].revents & POLLERR || fds[0].revents & POLLHUP) {
765 /* Server closed connection. */
766 if (fds[1].revents & POLLERR || fds[1].revents & POLLHUP) {
772 /* Read available data from session from and write to session to. */
773 static int read_from_write_to_tls(gnutls_session_t from,
775 size_t buffer_size) {
777 ssize_t size_written;
778 char buffer[16384]; /* GnuTLS default maximum */
780 if (buffer_size > sizeof(buffer)) {
781 LOG(WARNING, "read_from_write_to_tls(): reduced buffer size to %zu",
783 buffer_size = sizeof(buffer);
786 size_read = gnutls_record_recv(from, buffer, buffer_size);
788 /* Allow rehandshakes. As handshakes might be insecure make sure that
789 * %SAFE_RENEGOTIATION is used in GnuTLS's priority string. */
790 if (size_read == GNUTLS_E_REHANDSHAKE) {
793 LOG(DEBUG1, "server requested TLS rehandshake");
795 result = gnutls_handshake(from);
796 if (result != GNUTLS_E_SUCCESS) {
797 LOG(WARNING, "server TLS rehandshake failed: %s",
798 gnutls_strerror(result));
804 LOG(WARNING, "read_from_write_to_tls(): gnutls_record_recv(): %s",
805 gnutls_strerror((int)size_read));
808 } else if (size_read == 0) {
812 size_written = gnutls_record_send(to, buffer, (size_t)size_read);
813 if (size_written < 0) {
814 LOG(WARNING, "read_from_write_to_tls(): gnutls_record_send(): %s",
815 gnutls_strerror((int)size_written));
818 if (size_read != size_written) {
819 LOG(ERROR, "read_from_write_to_tls(): only written %zu of %zu bytes!",
820 size_written, size_read);
828 static int connect_to_host(const char *hostname, const char *port) {
829 struct addrinfo gai_hints;
830 struct addrinfo *gai_result;
834 struct addrinfo *server;
836 if (hostname == NULL || port == NULL) {
840 /* Get IP of hostname server. */
841 memset(&gai_hints, 0, sizeof(gai_hints));
842 gai_hints.ai_family = AF_UNSPEC;
843 gai_hints.ai_socktype = SOCK_STREAM;
844 gai_hints.ai_protocol = 0;
845 gai_hints.ai_flags = AI_NUMERICSERV /* given port is numeric */
846 | AI_ADDRCONFIG /* supported by this computer */
847 | AI_V4MAPPED; /* support IPv4 through IPv6 */
848 gai_return = getaddrinfo(hostname, port, &gai_hints, &gai_result);
849 if (gai_return != 0) {
850 if (gai_return == EAI_SYSTEM) {
851 LOG_PERROR(WARNING, "connect_to_host(): getaddrinfo()");
853 LOG(WARNING, "connect_to_host(): getaddrinfo(): %s",
854 gai_strerror(gai_return));
859 /* Now try to connect to each server returned by getaddrinfo(), use the
860 * first successful connect. */
861 for (server = gai_result; server != NULL; server = server->ai_next) {
862 server_socket = socket(server->ai_family,
864 server->ai_protocol);
865 if (server_socket < 0) {
866 LOG_PERROR(DEBUG1, "connect_to_host(): socket(), trying next");
870 if (connect(server_socket, server->ai_addr, server->ai_addrlen) == 0) {
873 LOG_PERROR(DEBUG1, "connect_to_host(): connect(), trying next");
875 close(server_socket);
877 /* Make sure we free the result from getaddrinfo(). */
878 freeaddrinfo(gai_result);
880 if (server == NULL) {
881 LOG_PERROR(WARNING, "connect_to_host(): no server found, abort");
885 return server_socket;
889 /* Parse HTTP CONNECT request string and save its parameters.
891 * The following format is expected: "CONNECT host:port HTTP/1.x".
893 * request and host must have the same size! port must be at least 6 bytes
896 static int parse_request(const char *request, char *host, char *port,
897 int *version_minor) {
898 int port_unused; /* just used to verify the port is numeric */
901 /* scanf() doesn't check spaces. */
902 if (strncmp(request, "CONNECT ", 8)) {
905 /* Check request and extract data, "host:port" is not yet separated. */
906 if (sscanf(request, "CONNECT %s HTTP/1.%d", host, version_minor) != 2) {
909 /* Make sure ":port" is there. */
910 if ((position = strchr(host, ':')) == NULL) {
913 /* Make sure port is numeric. */
914 if (sscanf(position + 1, "%d", &port_unused) != 1) {
917 /* Store it in *port. */
918 strncpy(port, position + 1, 5);
920 /* And remove port from host. */
927 static void log_session_information(gnutls_session_t session) {
928 /* From doc/examples/ex-session-info.c of GnuTLS 3.2.3's tarball and
929 * modified, thanks. */
932 gnutls_credentials_type_t cred;
933 gnutls_kx_algorithm_t kx;
939 /* Key exchange algorithm. */
940 kx = gnutls_kx_get(session);
941 LOG(DEBUG2, "- key exchange: %s", gnutls_kx_get_name(kx));
943 /* Authentication type. */
944 cred = gnutls_auth_get_type(session);
946 case GNUTLS_CRD_CERTIFICATE:
947 if (kx == GNUTLS_KX_DHE_RSA
948 || kx == GNUTLS_KX_DHE_DSS) {
950 #ifdef GNUTLS_KX_ECDHE_RSA
951 } else if (kx == GNUTLS_KX_ECDHE_RSA
952 || kx == GNUTLS_KX_ECDHE_ECDSA) {
961 case GNUTLS_CRD_ANON:
963 /* This shouldn't occur. */
964 LOG(WARNING, "unexpected authentication method: %d", cred);
968 /* Information about key exchange. */
970 LOG(DEBUG2, "- ephemeral DH using prime of %d bits",
971 gnutls_dh_get_prime_bits(session));
973 #ifdef GNUTLS_KX_ECDHE_RSA
974 LOG(DEBUG2, "- ephemeral ECDH using curve %s",
975 gnutls_ecc_curve_get_name(gnutls_ecc_curve_get(session)));
979 tmp = gnutls_protocol_get_name(gnutls_protocol_get_version(session));
980 LOG(DEBUG2, "- protocol: %s", tmp); /* e.g. TLS 1.0 */
982 tmp = gnutls_certificate_type_get_name(gnutls_certificate_type_get(session));
983 LOG(DEBUG2, "- certificate type: %s", tmp);
985 tmp = gnutls_compression_get_name(gnutls_compression_get(session));
986 LOG(DEBUG2, "- compression: %s", tmp);
988 tmp = gnutls_cipher_get_name(gnutls_cipher_get(session));
989 LOG(DEBUG2, "- cipher: %s", tmp);
991 tmp = gnutls_mac_get_name(gnutls_mac_get(session));
992 LOG(DEBUG2, "- MAC: %s", tmp);