]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/blob - src/connection.c
src/connection.c: Remove unnecessary check.
[tlsproxy/tlsproxy.git] / src / connection.c
1 /*
2  * Handle connections.
3  *
4  * Copyright (C) 2011  Simon Ruderich
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 #include "tlsproxy.h"
21 #include "connection.h"
22 #include "verify.h"
23
24 /* close() */
25 #include <unistd.h>
26 /* getaddrinfo() */
27 #include <netdb.h>
28 /* poll() */
29 #include <poll.h>
30 /* errno */
31 #include <errno.h>
32
33
34 /* Maximum line of a HTTP request line. Longer request lines are aborted with
35  * an error. The standard doesn't specify a maximum line length but this
36  * should be a good limit to make processing simpler. */
37 #define MAX_REQUEST_LINE 4096
38
39 /* Format string used to send HTTP/1.0 error responses to the client.
40  *
41  * %s is used 4 times, first three are the error code (no %n$s!), the last is
42  * the message. */
43 #define HTTP_RESPONSE_FORMAT "HTTP/1.0 %s\r\n\
44 Content-Type: text/html; charset=US-ASCII\r\n\
45 \r\n\
46 <!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n\
47 <html>\n\
48 <head><title>%s</title></head>\n\
49 <body>\n\
50 <h1>%s</h1>\n\
51 <p>%s</p>\n\
52 </body>\n\
53 </html>\n"
54
55
56 static int initialize_tls_session_client(int peer_socket,
57         const char *hostname,
58         gnutls_session_t *session,
59         gnutls_certificate_credentials_t *x509_cred);
60 static int initialize_tls_session_server(int peer_socket,
61         gnutls_session_t *session,
62         gnutls_certificate_credentials_t *x509_cred);
63
64 static int read_http_request(FILE *client_fd, char *request, size_t length);
65 static void send_bad_request(FILE *client_fd);
66 static void send_forwarding_failure(FILE *client_fd);
67 static void tls_send_invalid_cert_message(gnutls_session_t session);
68
69 static void transfer_data(int client, int server);
70 static int read_from_write_to(int from, int to);
71 static void transfer_data_tls(int client, int server,
72                               gnutls_session_t client_session,
73                               gnutls_session_t server_session);
74 static int read_from_write_to_tls(gnutls_session_t from, gnutls_session_t to);
75
76 static int connect_to_host(const char *hostname, const char *port);
77
78 static int parse_request(const char *buffer, char *host, char *port,
79                                              int *version_minor);
80
81
82 void handle_connection(int client_socket) {
83     int server_socket;
84     FILE *client_fd, *server_fd;
85
86     char buffer[MAX_REQUEST_LINE];
87     char host[MAX_REQUEST_LINE];
88     char port[5 + 1];
89
90     int version_minor; /* HTTP/1.x */
91     int result;
92
93     /* client_x509_cred is used when talking to the client (acting as a TSL
94      * server), server_x509_cred is used when talking to the server (acting as
95      * a TSL client). */
96     gnutls_certificate_credentials_t client_x509_cred, server_x509_cred;
97
98     gnutls_session_t client_session, server_session;
99     /* initialize_tls_session_*() called? - used for goto out */
100     int client_session_init, server_session_init;
101     /* gnutls_handshake() called? - used for goto out */
102     int client_session_started, server_session_started;
103     /* Validation failed? If yes we need to send the special "invalid"
104      * certificate. */
105     int validation_failed;
106
107     LOG(LOG_DEBUG, "new connection");
108
109     server_socket = -1;
110     client_fd = NULL;
111     server_fd = NULL;
112     client_session_init = 0;
113     server_session_init = 0;
114     client_session_started = 0;
115     server_session_started = 0;
116     validation_failed = 0;
117
118     client_fd = fdopen(client_socket, "a+");
119     if (NULL == client_fd) {
120         LOG_PERROR(LOG_WARNING, "fdopen(): client failed");
121         goto out;
122     }
123
124     /* Read request line (CONNECT ..) and headers (they are discarded). */
125     result = read_http_request(client_fd, buffer, sizeof(buffer));
126     if (-1 == result) {
127         /* Read error. */
128         LOG(LOG_WARNING, "read_http_request(): client read error");
129         goto out;
130     } else if (-2 == result) {
131         /* EOF */
132         LOG(LOG_WARNING, "read_http_request(): client EOF");
133         send_bad_request(client_fd);
134         goto out;
135     }
136
137     if (0 != parse_request(buffer, host, port, &version_minor)) {
138         LOG(LOG_WARNING, "bad request: %s", buffer);
139         send_bad_request(client_fd);
140         goto out;
141     }
142
143     LOG(LOG_DEBUG, "target: %s:%s (HTTP 1.%d)", host, port, version_minor);
144
145     /* Connect to proxy server or directly to server. */
146     if (NULL != global_proxy_host && NULL != global_proxy_port) {
147         LOG(LOG_DEBUG, "connecting to %s:%s", global_proxy_host,
148                                               global_proxy_port);
149         server_socket = connect_to_host(global_proxy_host, global_proxy_port);
150     } else {
151         LOG(LOG_DEBUG, "connecting to %s:%s", host, port);
152         server_socket = connect_to_host(host, port);
153     }
154
155     if (-1 == server_socket) {
156         LOG(LOG_WARNING, "failed to connect to server");
157         send_forwarding_failure(client_fd);
158         goto out;
159     }
160     server_fd = fdopen(server_socket, "a+");
161     if (NULL == server_fd) {
162         LOG_PERROR(LOG_WARNING, "fdopen(): server failed");
163         send_forwarding_failure(client_fd);
164         goto out;
165     }
166
167     /* Connect to proxy if requested (command line option). */
168     if (NULL != global_proxy_host && NULL != global_proxy_port) {
169         fprintf(server_fd, "CONNECT %s:%s HTTP/1.0\r\n", host, port);
170         fprintf(server_fd, "\r\n");
171
172         /* Read response line from proxy server. */
173         result = read_http_request(server_fd, buffer, sizeof(buffer));
174         if (-1 == result) {
175             /* Read error. */
176             LOG(LOG_WARNING, "read_http_request(): proxy read error");
177             send_forwarding_failure(client_fd);
178             goto out;
179         } else if (-2 == result) {
180             /* EOF */
181             LOG(LOG_WARNING, "read_http_request(): proxy EOF");
182             send_forwarding_failure(client_fd);
183             goto out;
184         }
185
186         /* Check response of proxy server. */
187         if (0 != strncmp(buffer, "HTTP/1.0 200", 12)) {
188             LOG(LOG_WARNING, "bad proxy response: %s", buffer);
189             send_forwarding_failure(client_fd);
190             goto out;
191         }
192     }
193
194     LOG(LOG_DEBUG, "connection to server established");
195
196     /* If the -u option is used and we don't know this hostname's server
197      * certificate then just pass through the connection and let the client
198      * verify the server certificate. */
199     if (global_passthrough_unknown) {
200         char path[1024];
201         FILE *file = NULL;
202
203         if (-2 == server_certificate_path(&file, host, path, sizeof(path))) {
204             /* We've established a connection, tell the client. */
205             fprintf(client_fd, "HTTP/1.0 200 Connection established\r\n");
206             fprintf(client_fd, "\r\n");
207             fflush(client_fd);
208
209             LOG(LOG_DEBUG, "transferring data");
210
211             /* Proxy data between client and server until one side is done
212              * (EOF or error). */
213             transfer_data(client_socket, server_socket);
214
215             LOG(LOG_DEBUG, "finished transferring data");
216
217             goto out;
218         }
219         /* server_certificate_path() may open the file, close it. */
220         if (NULL != file) {
221             fclose(file);
222         }
223     }
224
225     /* Initialize TLS client credentials to talk to the server. */
226     result = initialize_tls_session_server(server_socket, &server_session,
227                                                           &server_x509_cred);
228     if (0 != result) {
229         LOG(LOG_WARNING, "initialize_tls_session_server() failed");
230         send_forwarding_failure(client_fd);
231         goto out;
232     }
233     server_session_init = 1;
234
235     LOG(LOG_DEBUG, "starting server TLS handshake");
236
237     /* Try to establish TLS handshake between us and server. */
238     result = gnutls_handshake(server_session);
239     if (GNUTLS_E_SUCCESS != result) {
240         LOG(LOG_WARNING, "server TLS handshake failed: %s",
241                          gnutls_strerror(result));
242         send_forwarding_failure(client_fd);
243         goto out;
244     }
245     server_session_started = 1;
246
247     LOG(LOG_DEBUG, "server TLS handshake finished");
248
249     /* Make sure the server certificate is valid and known. */
250     if (0 != verify_tls_connection(server_session, host)) {
251         LOG(LOG_ERROR, "server certificate validation failed!");
252         /* We send the error message over our TLS connection to the client,
253          * but with an invalid certificate. No data is transfered from/to the
254          * target server. */
255         validation_failed = 1;
256     }
257
258     /* Initialize TLS server credentials to talk to the client. */
259     result = initialize_tls_session_client(client_socket,
260                                            /* use special host if the server
261                                             * certificate was invalid */
262                                            (validation_failed) ? "invalid"
263                                                                : host,
264                                            &client_session,
265                                            &client_x509_cred);
266     if (0 != result) {
267         LOG(LOG_WARNING, "initialize_tls_session_client() failed");
268         send_forwarding_failure(client_fd);
269         goto out;
270     }
271     client_session_init = 1;
272
273     /* We've established a connection, tell the client. */
274     fprintf(client_fd, "HTTP/1.0 200 Connection established\r\n");
275     fprintf(client_fd, "\r\n");
276     fflush(client_fd);
277
278     LOG(LOG_DEBUG, "starting client TLS handshake");
279
280     /* Try to establish TLS handshake between client and us. */
281     result = gnutls_handshake(client_session);
282     if (GNUTLS_E_SUCCESS != result) {
283         LOG(LOG_WARNING, "client TLS handshake failed: %s",
284                          gnutls_strerror(result));
285         send_forwarding_failure(client_fd);
286         goto out;
287     }
288     client_session_started = 1;
289
290     LOG(LOG_DEBUG, "client TLS handshake finished");
291
292     /* Tell the client that the verification failed. Shouldn't be necessary as
293      * the client should terminate the connection because he received the
294      * invalid certificate but better be sure. */
295     if (validation_failed) {
296         tls_send_invalid_cert_message(client_session);
297         goto out;
298     }
299
300     LOG(LOG_DEBUG, "transferring TLS data");
301
302     /* Proxy data between client and server until one side is done (EOF or
303      * error). */
304     transfer_data_tls(client_socket, server_socket,
305                       client_session, server_session);
306
307     LOG(LOG_DEBUG, "finished transferring TLS data");
308
309 out:
310     /* Close TLS sessions if necessary. Use GNUTLS_SHUT_RDWR so the data is
311      * reliable transmitted. */
312     if (0 != server_session_started) {
313         gnutls_bye(server_session, GNUTLS_SHUT_RDWR);
314     }
315     if (0 != client_session_started) {
316         gnutls_bye(client_session, GNUTLS_SHUT_RDWR);
317     }
318     if (0 != server_session_init) {
319         gnutls_deinit(server_session);
320         gnutls_certificate_free_credentials(server_x509_cred);
321     }
322     if (0 != client_session_init) {
323         gnutls_deinit(client_session);
324         gnutls_certificate_free_cas(client_x509_cred);
325         gnutls_certificate_free_keys(client_x509_cred);
326         gnutls_certificate_free_credentials(client_x509_cred);
327     }
328
329     /* Close connection to server/proxy. */
330     if (NULL != server_fd) {
331         fclose(server_fd);
332     } else if (-1 != server_socket) {
333         close(server_socket);
334     }
335     LOG(LOG_DEBUG, "connection to server closed");
336     /* Close connection to client. */
337     if (NULL != client_fd) {
338         fclose(client_fd);
339     } else {
340         close(client_socket);
341     }
342     LOG(LOG_DEBUG, "connection to client closed");
343
344     LOG(LOG_DEBUG, "connection finished");
345 }
346
347
348 static int initialize_tls_session_client(int peer_socket,
349         const char *hostname,
350         gnutls_session_t *session,
351         gnutls_certificate_credentials_t *x509_cred) {
352     int result;
353     int use_invalid_cert;
354     char path[1024];
355
356     /* The "invalid" hostname is special. If it's used we send an invalid
357      * certificate to let the client know something is wrong. */
358     use_invalid_cert = 0 == strcmp(hostname, "invalid");
359
360     /* Hostname too long. */
361     if (sizeof(path) - strlen(PROXY_SERVER_CERT_FORMAT) <= strlen(hostname)) {
362         LOG(LOG_WARNING,
363             "initialize_tls_session_client(): hostname too long: '%s'",
364             hostname);
365         return -1;
366     }
367     /* Try to prevent path traversals in hostnames. */
368     if (NULL != strstr(hostname, "..")) {
369         LOG(LOG_WARNING,
370             "initialize_tls_session_client(): possible path traversal: '%s'",
371             hostname);
372         return -1;
373     }
374     snprintf(path, sizeof(path), PROXY_SERVER_CERT_FORMAT, hostname);
375
376     result = gnutls_certificate_allocate_credentials(x509_cred);
377     if (GNUTLS_E_SUCCESS != result) {
378         LOG(LOG_ERROR,
379             "initialize_tls_session_client(): \
380 gnutls_certificate_allocate_credentials(): %s",
381             gnutls_strerror(result));
382         return -1;
383     }
384
385     /* Load proxy CA file, this CA "list" is send to the client. */
386     if (!use_invalid_cert) {
387         result = gnutls_certificate_set_x509_trust_file(*x509_cred,
388                                                         PROXY_CA_FILE,
389                                                         GNUTLS_X509_FMT_PEM);
390         if (0 >= result) {
391             LOG(LOG_ERROR,
392                 "initialize_tls_session_client(): can't read CA file: '%s'",
393                 PROXY_CA_FILE);
394             gnutls_certificate_free_credentials(*x509_cred);
395             return -1;
396         }
397     }
398     /* If the invalid hostname was specified do nothing, we use a self-signed
399      * certificate in this case. */
400
401     /* And certificate for this website and proxy's private key. */
402     if (!use_invalid_cert) {
403         result = gnutls_certificate_set_x509_key_file(*x509_cred,
404                                                       path, PROXY_KEY_FILE,
405                                                       GNUTLS_X509_FMT_PEM);
406     /* If the invalid hostname was specified load our special "invalid"
407      * certificate. */
408     } else {
409         result = gnutls_certificate_set_x509_key_file(*x509_cred,
410                                                       PROXY_INVALID_CERT_FILE,
411                                                       PROXY_KEY_FILE,
412                                                       GNUTLS_X509_FMT_PEM);
413     }
414     if (GNUTLS_E_SUCCESS != result) {
415         LOG(LOG_ERROR,
416             "initialize_tls_session_client(): \
417 can't read server certificate ('%s') or key file ('%s'): %s",
418             path, PROXY_KEY_FILE, gnutls_strerror(result));
419         gnutls_certificate_free_credentials(*x509_cred);
420         /* Could be a missing certificate. */
421         return -2;
422     }
423
424     gnutls_certificate_set_dh_params(*x509_cred, global_tls_dh_params);
425
426     result = gnutls_init(session, GNUTLS_SERVER);
427     if (GNUTLS_E_SUCCESS != result) {
428         LOG(LOG_ERROR,
429             "initialize_tls_session_client(): gnutls_init(): %s",
430             gnutls_strerror(result));
431         gnutls_certificate_free_credentials(*x509_cred);
432         return -1;
433     }
434     result = gnutls_priority_set(*session, global_tls_priority_cache);
435     if (GNUTLS_E_SUCCESS != result) {
436         LOG(LOG_ERROR,
437             "initialize_tls_session_client(): gnutls_priority_set(): %s",
438             gnutls_strerror(result));
439         gnutls_deinit(*session);
440         gnutls_certificate_free_credentials(*x509_cred);
441         return -1;
442     }
443     result = gnutls_credentials_set(*session,
444                                     GNUTLS_CRD_CERTIFICATE, *x509_cred);
445     if (GNUTLS_E_SUCCESS != result) {
446         LOG(LOG_ERROR,
447             "initialize_tls_session_client(): gnutls_credentials_set(): %s",
448             gnutls_strerror(result));
449         gnutls_deinit(*session);
450         gnutls_certificate_free_credentials(*x509_cred);
451         return -1;
452     }
453
454     gnutls_transport_set_ptr(*session, (gnutls_transport_ptr_t)peer_socket);
455
456     return 0;
457 }
458 static int initialize_tls_session_server(int peer_socket,
459         gnutls_session_t *session,
460         gnutls_certificate_credentials_t *x509_cred) {
461     int result;
462
463     result = gnutls_certificate_allocate_credentials(x509_cred);
464     if (GNUTLS_E_SUCCESS != result) {
465         LOG(LOG_ERROR,
466             "initialize_tls_session_server(): \
467 gnutls_certificate_allocate_credentials(): %s",
468             gnutls_strerror(result));
469         return -1;
470     }
471
472     result = gnutls_init(session, GNUTLS_CLIENT);
473     if (GNUTLS_E_SUCCESS != result) {
474         LOG(LOG_ERROR,
475             "initialize_tls_session_server(): gnutls_init(): %s",
476             gnutls_strerror(result));
477         gnutls_certificate_free_credentials(*x509_cred);
478         return -1;
479     }
480     gnutls_priority_set(*session, global_tls_priority_cache);
481     if (GNUTLS_E_SUCCESS != result) {
482         LOG(LOG_ERROR,
483             "initialize_tls_session_server(): gnutls_priority_set(): %s",
484             gnutls_strerror(result));
485         gnutls_deinit(*session);
486         gnutls_certificate_free_credentials(*x509_cred);
487         return -1;
488     }
489     result = gnutls_credentials_set(*session,
490                                     GNUTLS_CRD_CERTIFICATE, *x509_cred);
491     if (GNUTLS_E_SUCCESS != result) {
492         LOG(LOG_ERROR,
493             "initialize_tls_session_server(): gnutls_credentials_set(): %s",
494             gnutls_strerror(result));
495         gnutls_deinit(*session);
496         gnutls_certificate_free_credentials(*x509_cred);
497         return -1;
498     }
499
500     gnutls_transport_set_ptr(*session, (gnutls_transport_ptr_t)peer_socket);
501
502     return 0;
503 }
504
505
506 /* Read HTTP request line and headers (ignored).
507  *
508  * On success 0 is returned, -1 on client error, -2 on unexpected EOF.
509  */
510 static int read_http_request(FILE *client_fd, char *request, size_t length) {
511     char buffer[MAX_REQUEST_LINE];
512
513     if (NULL == fgets(request, (int)length, client_fd)) {
514         if (ferror(client_fd)) {
515             LOG_PERROR(LOG_WARNING, "read_http_request(): fgets()");
516             return -1;
517         }
518
519         return -2;
520     }
521
522     while (NULL != fgets(buffer, MAX_REQUEST_LINE, client_fd)) {
523         /* End of header. */
524         if (0 == strcmp(buffer, "\n") || 0 == strcmp(buffer, "\r\n")) {
525             break;
526         }
527     }
528     if (ferror(client_fd)) {
529         LOG_PERROR(LOG_WARNING, "read_http_request(): fgets()");
530         return -1;
531     }
532
533     return 0;
534 }
535
536 static void send_bad_request(FILE *client_fd) {
537 #define RESPONSE_ERROR "400 Bad Request"
538 #define RESPONSE_MSG   "Your browser sent an invalid request."
539     fprintf(client_fd, HTTP_RESPONSE_FORMAT,
540                        RESPONSE_ERROR, RESPONSE_ERROR, RESPONSE_ERROR,
541                        RESPONSE_MSG);
542 #undef RESPONSE_ERROR
543 #undef RESPONSE_MSG
544 }
545 static void send_forwarding_failure(FILE *client_fd) {
546 #define RESPONSE_ERROR "503 Forwarding failure"
547 #define RESPONSE_MSG   "Failed to connect to server, check logs."
548     fprintf(client_fd, HTTP_RESPONSE_FORMAT,
549                        RESPONSE_ERROR, RESPONSE_ERROR, RESPONSE_ERROR,
550                        RESPONSE_MSG);
551 #undef RESPONSE_ERROR
552 #undef RESPONSE_MSG
553 }
554 static void tls_send_invalid_cert_message(gnutls_session_t session) {
555 #define RESPONSE_ERROR "500 Internal Server Error"
556 #define RESPONSE_MSG   "Server certificate validation failed, check logs."
557
558     char buffer[sizeof(HTTP_RESPONSE_FORMAT) - 1 /* '\0' */
559                                              - 4 * 2 /* four %s */
560                 + (sizeof(RESPONSE_ERROR) - 1 /* '\0' */) * 3
561                 + sizeof(RESPONSE_MSG)    - 1 /* '\0' */
562                 + 1 /* '\0' */];
563
564     snprintf(buffer, sizeof(buffer),
565              HTTP_RESPONSE_FORMAT,
566              RESPONSE_ERROR, RESPONSE_ERROR, RESPONSE_ERROR, RESPONSE_MSG);
567
568     gnutls_record_send(session, buffer, sizeof(buffer) - 1);
569                                         /* don't send trailing '\0' */
570 #undef RESPONSE_ERROR
571 #undef RESPONSE_MSG
572 }
573
574
575 /* Transfer data between client and server sockets until one closes the
576  * connection. */
577 static void transfer_data(int client, int server) {
578     struct pollfd fds[2];
579     fds[0].fd      = client;
580     fds[0].events  = POLLIN | POLLPRI | POLLHUP | POLLERR;
581     fds[0].revents = 0;
582     fds[1].fd      = server;
583     fds[1].events  = POLLIN | POLLPRI | POLLHUP | POLLERR;
584     fds[1].revents = 0;
585
586     for (;;) {
587         int result = poll(fds, 2, -1 /* no timeout */);
588         if (result < 0) {
589             LOG_PERROR(LOG_ERROR, "transfer_data(): poll()");
590             return;
591         }
592
593         /* Data available from client. */
594         if (fds[0].revents & POLLIN || fds[0].revents & POLLPRI) {
595             if (0 != read_from_write_to(client, server)) {
596                 /* EOF (or other error) */
597                 break;
598             }
599         }
600         /* Data available from server. */
601         if (fds[1].revents & POLLIN || fds[1].revents & POLLPRI) {
602             if (0 != read_from_write_to(server, client)) {
603                 /* EOF (or other error) */
604                 break;
605             }
606         }
607
608         /* Client closed connection. */
609         if (fds[0].revents & POLLERR || fds[0].revents & POLLHUP) {
610             break;
611         }
612         /* Server closed connection. */
613         if (fds[1].revents & POLLERR || fds[1].revents & POLLHUP) {
614             break;
615         }
616     }
617 }
618
619 /* Read available data from socket from and write it to socket to. At maximum
620  * 4096 bytes are read/written. */
621 static int read_from_write_to(int from, int to) {
622     ssize_t size_read;
623     ssize_t size_written;
624     char buffer[4096];
625
626     LOG(LOG_DEBUG, "read_from_write_to(): %d -> %d", from, to);
627
628     size_read = read(from, buffer, sizeof(buffer));
629     if (0 > size_read) {
630         LOG_PERROR(LOG_WARNING, "read_from_write_to(): read()");
631         return -1;
632     }
633     /* EOF */
634     if (0 == size_read) {
635         return -1;
636     }
637
638     size_written = write(to, buffer, (size_t)size_read);
639     if (0 > size_written) {
640         LOG_PERROR(LOG_WARNING, "read_from_write_to(): write()");
641         return -1;
642     }
643     if (size_read != size_written) {
644         LOG(LOG_ERROR, "read_from_write_to(): only written %ld of %ld bytes!",
645                        (long int)size_written, (long int)size_read);
646         return -1;
647     }
648
649     return 0;
650 }
651
652 /* Transfer data between client and server TLS connection until one closes the
653  * connection. */
654 static void transfer_data_tls(int client, int server,
655                               gnutls_session_t client_session,
656                               gnutls_session_t server_session) {
657     struct pollfd fds[2];
658     fds[0].fd      = client;
659     fds[0].events  = POLLIN | POLLPRI | POLLHUP | POLLERR;
660     fds[0].revents = 0;
661     fds[1].fd      = server;
662     fds[1].events  = POLLIN | POLLPRI | POLLHUP | POLLERR;
663     fds[1].revents = 0;
664
665     for (;;) {
666         int result = poll(fds, 2, -1 /* no timeout */);
667         if (result < 0) {
668             LOG_PERROR(LOG_ERROR, "transfer_data(): poll()");
669             return;
670         }
671
672         /* Data available from client. */
673         if (fds[0].revents & POLLIN || fds[0].revents & POLLPRI) {
674             if (0 != read_from_write_to_tls(client_session, server_session)) {
675                 /* EOF (or other error) */
676                 break;
677             }
678         }
679         /* Data available from server. */
680         if (fds[1].revents & POLLIN || fds[1].revents & POLLPRI) {
681             if (0 != read_from_write_to_tls(server_session, client_session)) {
682                 /* EOF (or other error) */
683                 break;
684             }
685         }
686
687         /* Client closed connection. */
688         if (fds[0].revents & POLLERR || fds[0].revents & POLLHUP) {
689             break;
690         }
691         /* Server closed connection. */
692         if (fds[1].revents & POLLERR || fds[1].revents & POLLHUP) {
693             break;
694         }
695     }
696 }
697
698 /* Read available data from session from and write to session to. */
699 static int read_from_write_to_tls(gnutls_session_t from,
700                                   gnutls_session_t to) {
701     size_t size;
702     ssize_t size_read;
703     ssize_t size_written;
704     char buffer[16384];
705
706     /* Get maximum possible buffer size. */
707     size = gnutls_record_get_max_size(from);
708     LOG(LOG_DEBUG, "read_from_write_to_tls(): suggested buffer size: %ld",
709                    (long int)size);
710     if (size > gnutls_record_get_max_size(to)) {
711         size = gnutls_record_get_max_size(to);
712     }
713     if (size > sizeof(buffer)) {
714         size = sizeof(buffer);
715     }
716     LOG(LOG_DEBUG, "read_from_write_to_tls(): used buffer size: %ld",
717                    (long int)size);
718
719     size_read = gnutls_record_recv(from, buffer, size);
720     if (0 > size_read) {
721         LOG(LOG_WARNING, "read_from_write_to_tls(): gnutls_record_recv(): %s",
722                          gnutls_strerror((int)size_read));
723         return -1;
724     }
725     /* EOF */
726     if (0 == size_read) {
727         return -1;
728     }
729
730     size_written = gnutls_record_send(to, buffer, (size_t)size_read);
731     if (0 > size_written) {
732         LOG(LOG_WARNING, "read_from_write_to_tls(): gnutls_record_send(): %s",
733                          gnutls_strerror((int)size_written));
734         return -1;
735     }
736     if (size_read != size_written) {
737         LOG(LOG_ERROR, "read_from_write_to_tls(): only written %ld of %ld bytes!",
738                        (long int)size_written, (long int)size_read);
739         return -1;
740     }
741
742     return 0;
743 }
744
745
746 static int connect_to_host(const char *hostname, const char *port) {
747     struct addrinfo gai_hints;
748     struct addrinfo *gai_result;
749     int gai_return;
750
751     int server_socket;
752     struct addrinfo *server;
753
754     if (NULL == hostname || NULL == port) {
755         return -1;
756     }
757
758     /* Get IP of hostname server. */
759     memset(&gai_hints, 0, sizeof(gai_hints));
760     gai_hints.ai_family   = AF_UNSPEC;
761     gai_hints.ai_socktype = SOCK_STREAM;
762     gai_hints.ai_protocol = 0;
763     gai_hints.ai_flags    = AI_NUMERICSERV /* given port is numeric */
764                           | AI_ADDRCONFIG  /* supported by this computer */
765                           | AI_V4MAPPED;   /* support IPv4 through IPv6 */
766     gai_return = getaddrinfo(hostname, port, &gai_hints, &gai_result);
767     if (0 != gai_return) {
768         LOG_PERROR(LOG_WARNING, "connect_to_host(): getaddrinfo()");
769         return -1;
770     }
771
772     /* Now try to connect to each server returned by getaddrinfo(), use the
773      * first successful connect. */
774     for (server = gai_result; NULL != server; server = server->ai_next) {
775         server_socket = socket(server->ai_family,
776                                server->ai_socktype,
777                                server->ai_protocol);
778         if (-1 == server_socket) {
779             LOG_PERROR(LOG_DEBUG, "connect_to_host(): socket(), trying next");
780             continue;
781         }
782
783         if (-1 != connect(server_socket, server->ai_addr,
784                                          server->ai_addrlen)) {
785             break;
786         }
787         LOG_PERROR(LOG_DEBUG, "connect_to_host(): connect(), trying next");
788
789         close(server_socket);
790     }
791     /* Make sure we free the result from getaddrinfo(). */
792     freeaddrinfo(gai_result);
793
794     if (NULL == server) {
795         LOG_PERROR(LOG_WARNING, "connect_to_host(): no server found, abort");
796         return -1;
797     }
798
799     return server_socket;
800 }
801
802
803 /* Parse HTTP CONNECT request string and save its parameters.
804  *
805  * The following format is expected: "CONNECT host:port HTTP/1.x".
806  *
807  * request and host must have the same size! port must be at least 6 bytes
808  * long (5 + '\0').
809  */
810 static int parse_request(const char *request, char *host, char *port,
811                                               int *version_minor) {
812     int port_unused; /* just used to verify the port is numeric */
813     char *position;
814
815     /* scanf() doesn't check spaces. */
816     if (0 != strncmp(request, "CONNECT ", 8)) {
817         return -1;
818     }
819     /* Check request and extract data, "host:port" is not yet separated. */
820     if (2 != sscanf(request, "CONNECT %s HTTP/1.%d",
821                              host, version_minor)) {
822         return -1;
823     }
824     /* Make sure ":port" is there. */
825     if (NULL == (position = strchr(host, ':'))) {
826         return -1;
827     }
828     /* Make sure port is numeric. */
829     if (1 != sscanf(position + 1, "%d", &port_unused)) {
830         return -1;
831     }
832     /* Store it in *port. */
833     strncpy(port, position + 1, 5);
834     port[5] = '\0';
835     /* And remove port from host. */
836     *position = '\0';
837
838     return 0;
839 }