]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/blob - src/tlsproxy.c
Use sem_del() to destroy semaphores.
[tlsproxy/tlsproxy.git] / src / tlsproxy.c
1 /*
2  * tlsproxy is a TLS proxy for HTTPS which intercepts the connections and
3  * ensures the server certificate doesn't change. Normally this isn't detected
4  * if a trusted CA for the new server certificate is installed.
5  *
6  * Copyright (C) 2011-2013  Simon Ruderich
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it 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  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #include "tlsproxy.h"
23 #include "sem.h"
24 #include "connection.h"
25
26 #include <arpa/inet.h>
27 #include <errno.h>
28 #include <pthread.h>
29 #include <signal.h>
30 #include <sys/socket.h>
31 #include <sys/types.h>
32 #include <unistd.h>
33
34 /* Necessary for GnuTLS when used with threads. */
35 #include <gcrypt.h>
36 GCRY_THREAD_OPTION_PTHREAD_IMPL;
37
38
39 /* Size of ringbuffer. */
40 #define RINGBUFFER_SIZE 10
41
42 /* Bit size of Diffie-Hellman key exchange parameters. */
43 #define DH_SIZE 1024
44
45
46 /* For gnutls_*() functions. */
47 #define GNUTLS_ERROR_EXIT(error, message) \
48     if (error != GNUTLS_E_SUCCESS) { \
49         fprintf(stderr, "%s: %s\n", message, gnutls_strerror(error)); \
50         exit(EXIT_FAILURE); \
51     }
52
53
54 /* Server should shut down. Set by SIGINT handler. */
55 static volatile int done = 0;
56
57 /* Number of threads. */
58 static size_t thread_count;
59
60 /* Synchronized ring buffer storing accept()ed client sockets. */
61 static int ringbuffer[RINGBUFFER_SIZE];
62 static int ringbuffer_read;
63 static int ringbuffer_write;
64 static SEM *ringbuffer_full; /* At least one element in the buffer? */
65 static SEM *ringbuffer_free; /* Space for another element in the buffer? */
66 static SEM *ringbuffer_lock; /* Read lock. */
67
68
69 #ifdef DEBUG
70 static void sigint_handler(int signal);
71 #endif
72
73 static void parse_arguments(int argc, char **argv);
74 static void print_usage(const char *argv);
75
76 static void initialize_gnutls(void);
77 static void deinitialize_gnutls(void);
78
79 static void *worker_thread(void *unused);
80
81
82 int main(int argc, char **argv) {
83     int port;
84     int client_socket, server_socket;
85 #ifdef USE_IPV4_ONLY
86     struct sockaddr_in server_in;
87 #else
88     struct sockaddr_in6 server_in;
89 #endif
90
91     size_t i;
92     pthread_t *threads;
93
94     struct sigaction action;
95
96     parse_arguments(argc, argv);
97
98     port = atoi(argv[argc - 1]);
99     if (port <= 0 || port > 0xffff ) {
100         print_usage(argv[0]);
101         fprintf(stderr, "\ninvalid port: '%s'\n", argv[argc - 1]);
102         return EXIT_FAILURE;
103     }
104
105     sigemptyset(&action.sa_mask);
106     action.sa_flags   = 0;
107 #ifdef DEBUG
108     /* Setup our SIGINT signal handler which allows a "normal" termination of
109      * the server in DEBUG mode. */
110     action.sa_handler = sigint_handler;
111     sigaction(SIGINT, &action, NULL);
112 #endif
113     /* Ignore SIGPIPEs. */
114     action.sa_handler = SIG_IGN;
115     sigaction(SIGPIPE, &action, NULL);
116
117     /* Initialize ring buffer. */
118     ringbuffer_read  = 0;
119     ringbuffer_write = 0;
120     ringbuffer_full  = sem_init(0);
121     ringbuffer_free  = sem_init(RINGBUFFER_SIZE);
122     ringbuffer_lock  = sem_init(1);
123     if (NULL == ringbuffer_full
124             || NULL == ringbuffer_free
125             || NULL == ringbuffer_lock) {
126         perror("sem_init()");
127         return EXIT_FAILURE;
128     }
129
130     initialize_gnutls();
131
132     /* Spawn worker threads to handle requests. */
133     threads = malloc(thread_count * sizeof(*threads));
134     if (threads == NULL) {
135         perror("thread malloc failed");
136         return EXIT_FAILURE;
137     }
138     for (i = 0; i < thread_count; i++) {
139         errno = pthread_create(threads + i, NULL, &worker_thread, NULL);
140         if (errno != 0) {
141             perror("failed to create worker thread");
142             return EXIT_FAILURE;
143         }
144     }
145
146 #ifdef USE_IPV4_ONLY
147     server_socket = socket(PF_INET, SOCK_STREAM, 0);
148 #else
149     server_socket = socket(PF_INET6, SOCK_STREAM, 0);
150 #endif
151     if (server_socket == -1) {
152         perror("socket()");
153         return EXIT_FAILURE;
154     }
155
156     /* Fast rebinding for debug mode, could cause invalid packets. */
157     if (global_log_level >= LOG_DEBUG_LEVEL) {
158         int socket_option = 1;
159         setsockopt(server_socket, SOL_SOCKET, SO_REUSEADDR,
160                    &socket_option, sizeof(socket_option));
161     }
162
163     /* Bind to the listen socket. */
164     memset(&server_in, 0, sizeof(server_in));
165 #ifdef USE_IPV4_ONLY
166     server_in.sin_family      = AF_INET;               /* IPv4 only */
167     server_in.sin_addr.s_addr = htonl(INADDR_ANY);     /* bind to any address */
168     server_in.sin_port        = htons((uint16_t)port); /* port to bind to */
169 #else
170     server_in.sin6_family = AF_INET6;              /* IPv6 (and IPv4) */
171     server_in.sin6_addr   = in6addr_any;           /* bind to any address */
172     server_in.sin6_port   = htons((uint16_t)port); /* port to bind to */
173 #endif
174     if (bind(server_socket, (struct sockaddr *)&server_in,
175                             sizeof(server_in)) == -1) {
176         perror("bind()");
177         return EXIT_FAILURE;
178     }
179     /* And accept connections. */
180     if (listen(server_socket, 5) == -1) {
181         perror("listen()");
182         return EXIT_FAILURE;
183     }
184
185     if (global_log_level >= LOG_DEBUG_LEVEL) {
186         printf("tlsproxy %s\n", VERSION);
187         printf("Listening for connections on port %d.\n", port);
188
189         if (global_proxy_host != NULL && global_proxy_port != NULL) {
190             printf("Using proxy: %s:%s.\n", global_proxy_host,
191                                             global_proxy_port);
192         }
193     }
194
195     while (!done) {
196         /* Accept new connection. */
197         client_socket = accept(server_socket, NULL, NULL);
198         if (client_socket == -1) {
199             perror("accept()");
200             break;
201         }
202
203         /* No lock necessary, we only have one producer! */
204         P(ringbuffer_free);
205         ringbuffer[ringbuffer_write] = client_socket;
206         ringbuffer_write = (ringbuffer_write + 1) % RINGBUFFER_SIZE;
207         V(ringbuffer_full);
208     }
209
210     close(server_socket);
211
212     /* Poison all threads and shut them down. */
213     for (i = 0; i < thread_count; i++) {
214         P(ringbuffer_free);
215         ringbuffer[ringbuffer_write] = -1; /* poison */
216         ringbuffer_write = (ringbuffer_write + 1) % RINGBUFFER_SIZE;
217         V(ringbuffer_full);
218     }
219     for (i = 0; i < thread_count; i++) {
220         errno = pthread_join(threads[i], NULL);
221         if (errno != 0) {
222             perror("pthread_join()");
223         }
224     }
225
226     sem_del(ringbuffer_full);
227     sem_del(ringbuffer_free);
228     sem_del(ringbuffer_lock);
229
230     free(threads);
231
232     deinitialize_gnutls();
233
234     free(global_proxy_host);
235     free(global_proxy_port);
236
237     return EXIT_FAILURE;
238 }
239
240 #ifdef DEBUG
241 static void sigint_handler(int signal_number) {
242     (void)signal_number;
243
244     done = 1;
245 }
246 #endif
247
248 static void parse_arguments(int argc, char **argv) {
249     int option;
250
251     /* Default values. */
252     thread_count = 10;
253 #ifdef DEBUG
254     global_log_level = LOG_DEBUG_LEVEL;
255 #else
256     global_log_level = LOG_WARNING_LEVEL;
257 #endif
258     global_passthrough_unknown = 0;
259
260     while ((option = getopt(argc, argv, "d:p:t:uh?")) != -1) {
261         switch (option) {
262             case 'd': {
263                 global_log_level = atoi(optarg);
264                 if (global_log_level < 0) {
265                     print_usage(argv[0]);
266                     fprintf(stderr, "\n-d positive number required: '%s'\n",
267                                     optarg);
268                     exit(EXIT_FAILURE);
269                 }
270                 break;
271             }
272             case 'p': {
273                 char *position;
274
275                 /* -p must have the format host:port. */
276                 if ((position = strchr(optarg, ':')) == NULL
277                         || optarg == position
278                         || strlen(position + 1) == 0
279                         || atoi(position + 1) <= 0
280                         || atoi(position + 1) > 0xffff) {
281                     print_usage(argv[0]);
282                     fprintf(stderr, "\ninvalid -p: '%s', format host:port\n",
283                             optarg);
284                     exit(EXIT_FAILURE);
285                 }
286
287                 global_proxy_host = malloc((size_t)(position - optarg) + 1);
288                 if (global_proxy_host == NULL) {
289                     perror("malloc()");
290                     exit(EXIT_FAILURE);
291                 }
292                 memcpy(global_proxy_host, optarg, (size_t)(position - optarg));
293                 global_proxy_host[position - optarg] = '\0';
294
295                 global_proxy_port = malloc(strlen(position + 1) + 1);
296                 if (global_proxy_port == NULL) {
297                     perror("malloc()");
298                     exit(EXIT_FAILURE);
299                 }
300                 strcpy(global_proxy_port, position + 1);
301
302                 break;
303             }
304             case 't': {
305                 if (atoi(optarg) <= 0) {
306                     print_usage(argv[0]);
307                     fprintf(stderr, "\n-t positive number required: '%s'\n",
308                                     optarg);
309                     exit(EXIT_FAILURE);
310                 }
311                 thread_count = (size_t)atoi(optarg);
312                 break;
313             }
314             case 'u': {
315                 global_passthrough_unknown = 1;
316                 break;
317             }
318             case 'h':
319             default: /* '?' */
320                 print_usage(argv[0]);
321                 exit(EXIT_FAILURE);
322         }
323     }
324
325     if (optind >= argc) {
326         print_usage(argv[0]);
327         fprintf(stderr, "\nport missing\n");
328         exit(EXIT_FAILURE);
329     }
330 }
331 static void print_usage(const char *argv) {
332     fprintf(stderr, "tlsproxy %s, a certificate checking TLS proxy\n",
333                     VERSION);
334     fprintf(stderr, "Usage: %s [-d level] [-p host:port] [-t count] [-u] port\n",
335                     argv);
336     fprintf(stderr, "\n");
337     fprintf(stderr, "-d debug level: 0=errors only, 2=debug [default: 1]\n");
338     fprintf(stderr, "-p proxy hostname and port\n");
339     fprintf(stderr, "-t number of threads [default: 10]\n");
340     fprintf(stderr, "-u passthrough connection if no certificate is stored \
341 [default: error]\n");
342     fprintf(stderr, "   WARNING: might be a security problem!\n");
343 }
344
345 static void initialize_gnutls(void) {
346     int result;
347     gcry_error_t error;
348
349     /* Thread safe setup. Must be called before gnutls_global_init(). */
350     error = gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
351     if (error != 0) {
352         fprintf(stderr, "gcry_control(): %s/%s\n", gcry_strsource(error),
353                                                    gcry_strerror(error));
354         exit(EXIT_FAILURE);
355     }
356     /* Prevent usage of blocking /dev/random. */
357     error = gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0);
358     if (error != 0) {
359         fprintf(stderr, "gcry_control(): %s/%s\n", gcry_strsource(error),
360                                                    gcry_strerror(error));
361         exit(EXIT_FAILURE);
362     }
363
364     /* Initialize GnuTLS. */
365     result = gnutls_global_init();
366     GNUTLS_ERROR_EXIT(result, "gnutls_global_init()");
367
368     /* Setup GnuTLS cipher suites. */
369     result = gnutls_priority_init(&global_tls_priority_cache, "NORMAL", NULL);
370     GNUTLS_ERROR_EXIT(result, "gnutls_priority_init()");
371
372     /* Generate Diffie-Hellman parameters. */
373     result = gnutls_dh_params_init(&global_tls_dh_params);
374     GNUTLS_ERROR_EXIT(result, "gnutls_dh_params_init()");
375     result = gnutls_dh_params_generate2(global_tls_dh_params, DH_SIZE);
376     GNUTLS_ERROR_EXIT(result, "gnutls_dh_params_generate2()");
377 }
378 static void deinitialize_gnutls(void) {
379     gnutls_dh_params_deinit(global_tls_dh_params);
380     gnutls_priority_deinit(global_tls_priority_cache);
381
382     gnutls_global_deinit();
383 }
384
385 static void *worker_thread(void *unused) {
386     int client_socket;
387
388     (void)unused;
389
390     for (;;) {
391         /* Get next element from ring buffer. */
392         P(ringbuffer_full);
393         P(ringbuffer_lock);
394         client_socket = ringbuffer[ringbuffer_read];
395         ringbuffer_read = (ringbuffer_read + 1) % RINGBUFFER_SIZE;
396         V(ringbuffer_lock);
397         V(ringbuffer_free);
398
399         /* Negative value indicates we should shut down our thread. */
400         if (client_socket < 0) {
401             break;
402         }
403
404         handle_connection(client_socket);
405     }
406
407     return NULL;
408 }