bin_PROGRAMS = tlsproxy
-tlsproxy_SOURCES = tlsproxy.c tlsproxy.h sem.h sem.c connection.h connection.c
+tlsproxy_SOURCES = \
+ tlsproxy.c tlsproxy.h \
+ sem.h sem.c \
+ connection.h connection.c \
+ log.h log.c
#include <poll.h>
/* errno */
#include <errno.h>
-/* va_*() */
-#include <stdarg.h>
-/* pthread_*() */
-#include <pthread.h>
/* Maximum line of a HTTP request line. Longer request lines are aborted with
#define PROXY_CA_FILE "proxy-ca.pem"
#define PROXY_KEY_FILE "proxy-key.pem"
-/* Helper macro for LOG/LOG_PERROR. Print file/line number if compiled with
- * debug output. */
-#ifdef DEBUG
-#define LOG_PRINT_LOCATION fprintf(stdout, "%s:%-3d ", __FILE__, __LINE__);
-#else
-#define LOG_PRINT_LOCATION
-#endif
-/* Call log_message() and print current file and line number. */
-#define LOG \
- LOG_PRINT_LOCATION \
- log_message
-/* perror() replacement with debug level support. */
-#define LOG_PERROR(level, message) \
- LOG_PRINT_LOCATION \
- log_message(level, "%s: %s", message, strerror(errno))
-
static int initialize_tls_session_client(int peer_socket,
const char *hostname,
static int parse_request(const char *buffer, char *host, char *port,
int *version_minor);
-static void log_message(int level, const char *format, ...);
-
void handle_connection(int client_socket) {
int server_socket;
return 0;
}
-
-
-static void log_message(int level, const char *format, ...) {
- va_list ap;
- const char *level_string;
-
- if (global_log_level < level) {
- return;
- }
-
- switch (level) {
- case LOG_ERROR: level_string = "ERROR"; break;
- case LOG_WARNING: level_string = "WARN "; break;
- case LOG_DEBUG: level_string = "DEBUG"; break;
- default: level_string = "UNKNOWN";
- }
-
- va_start(ap, format);
- fprintf(stdout, "[%s] [%d] ", level_string, (int)pthread_self());
- vfprintf(stdout, format, ap);
- fprintf(stdout, "\n");
- va_end(ap);
-}
--- /dev/null
+/*
+ * Log related functions/defines.
+ *
+ * Copyright (C) 2011 Simon Ruderich
+ *
+ * This program 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.
+ *
+ * This program 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 <http://www.gnu.org/licenses/>.
+ */
+
+#include "tlsproxy.h"
+#include "log.h"
+
+/* va_*() */
+#include <stdarg.h>
+/* pthread_*() */
+#include <pthread.h>
+
+
+void log_message(int level, const char *format, ...) {
+ va_list ap;
+ const char *level_string;
+
+ if (global_log_level < level) {
+ return;
+ }
+
+ switch (level) {
+ case LOG_ERROR: level_string = "ERROR"; break;
+ case LOG_WARNING: level_string = "WARN "; break;
+ case LOG_DEBUG: level_string = "DEBUG"; break;
+ default: level_string = "UNKNOWN";
+ }
+
+ va_start(ap, format);
+ fprintf(stdout, "[%s] [%d] ", level_string, (int)pthread_self());
+ vfprintf(stdout, format, ap);
+ fprintf(stdout, "\n");
+ va_end(ap);
+}
--- /dev/null
+/*
+ * Log related functions/defines.
+ *
+ * Copyright (C) 2011 Simon Ruderich
+ *
+ * This program 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.
+ *
+ * This program 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 <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef LOG_H
+#define LOG_H
+
+/* Log level constants. */
+#define LOG_ERROR 0
+#define LOG_WARNING 1
+#define LOG_DEBUG 2
+
+/* Helper macro for LOG/LOG_PERROR. Print file/line number if compiled with
+ * debug output. */
+#ifdef DEBUG
+#define LOG_PRINT_LOCATION fprintf(stdout, "%s:%-3d ", __FILE__, __LINE__);
+#else
+#define LOG_PRINT_LOCATION
+#endif
+/* Call log_message() and print current file and line number. */
+#define LOG \
+ LOG_PRINT_LOCATION \
+ log_message
+/* perror() replacement with debug level support. */
+#define LOG_PERROR(level, message) \
+ LOG_PRINT_LOCATION \
+ log_message(level, "%s: %s", message, strerror(errno))
+
+
+void log_message(int level, const char *format, ...);
+
+#endif
#define DH_SIZE 1024
+/* For gnutls_*() functions. */
+#define GNUTLS_ERROR_EXIT(error, message) \
+ if (GNUTLS_E_SUCCESS != error) { \
+ fprintf(stderr, "%s: %s\n", message, gnutls_strerror(error)); \
+ exit(EXIT_FAILURE); \
+ }
+
+
/* Server should shut down. Set by SIGINT handler. */
static volatile int done;
/* GnuTLS */
#include <gnutls/gnutls.h>
+#include "log.h"
-/* Log level constants. */
-#define LOG_ERROR 0
-#define LOG_WARNING 1
-#define LOG_DEBUG 2
-/* Macros for shorter error handling. */
-#define GNUTLS_ERROR_EXIT(error, message) \
- if (GNUTLS_E_SUCCESS != error) { \
- fprintf(stderr, "%s: %s\n", message, gnutls_strerror(error)); \
- exit(EXIT_FAILURE); \
- }
-
/* Proxy hostname and port if specified on the command line. */
char *global_proxy_host;