]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
src/connection.c: Move code to get proxy certificate path to verify.c.
authorSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 18:59:01 +0000 (20:59 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 19:13:29 +0000 (21:13 +0200)
Moved to new function proxy_certificate_path() in verify.c.

src/connection.c
src/verify.c
src/verify.h

index 1fb74cc155a86f2caa6dd59a6ae88d037910d8b7..42b8ac36b384b0417ddf00687ca5373b48ff15f7 100644 (file)
@@ -359,28 +359,10 @@ static int initialize_tls_session_client(int peer_socket,
      * certificate to let the client know something is wrong. */
     use_invalid_cert = 0 == strcmp(hostname, "invalid");
 
-    /* Hostname too long. */
-    if (sizeof(path) - strlen(PROXY_SERVER_CERT_FORMAT) <= strlen(hostname)) {
-        LOG(LOG_WARNING,
-            "initialize_tls_session_client(): hostname too long: '%s'",
-            hostname);
-        return -1;
-    }
-    /* Try to prevent path traversals in hostnames. */
-    if (NULL != strstr(hostname, "..")) {
-        LOG(LOG_WARNING,
-            "initialize_tls_session_client(): possible path traversal: '%s'",
-            hostname);
-        return -1;
-    }
-    result = snprintf(path, sizeof(path), PROXY_SERVER_CERT_FORMAT, hostname);
-    if (result < 0) {
-        LOG_PERROR(LOG_ERROR,
-                   "initialize_tls_session_client(): snprintf failed");
-        return -1;
-    } else if ((size_t)result >= sizeof(path)) {
+    if (0 != proxy_certificate_path(hostname, path, sizeof(path))) {
         LOG(LOG_ERROR,
-            "initialize_tls_session_client(): snprintf buffer too short");
+            "initialize_tls_session_client(): \
+failed to get proxy certificate path");
         return -1;
     }
 
index 63ca6da2d982a121d36cb8b6779e795ba0c72f30..e3a86294755c4283bc3c899a03b72501659b61f3 100644 (file)
@@ -155,6 +155,38 @@ int verify_tls_connection(gnutls_session_t session, const char *hostname) {
     return 0;
 }
 
+
+int proxy_certificate_path(const char *hostname, char *path, size_t size) {
+    int result;
+
+    /* Hostname too long. */
+    if (size - strlen(PROXY_SERVER_CERT_FORMAT) <= strlen(hostname)) {
+        LOG(LOG_WARNING,
+            "proxy_certificate_path(): hostname too long: '%s'",
+            hostname);
+        return -1;
+    }
+    /* Try to prevent path traversals in hostnames. */
+    if (NULL != strstr(hostname, "..")) {
+        LOG(LOG_WARNING,
+            "proxy_certificate_path(): possible path traversal: '%s'",
+            hostname);
+        return -1;
+    }
+    result = snprintf(path, size, PROXY_SERVER_CERT_FORMAT, hostname);
+    if (result < 0) {
+        LOG_PERROR(LOG_ERROR,
+                   "proxy_certificate_path(): snprintf failed");
+        return -1;
+    } else if ((size_t)result >= size) {
+        LOG(LOG_ERROR,
+            "proxy_certificate_path(): snprintf buffer too short");
+        return -1;
+    }
+
+    return 0;
+}
+
 int server_certificate_path(FILE **file, const char *hostname,
                             char *path, size_t size) {
     int result;
index 2e986db87ee5cb005e3d0a470fa6aaca665300a9..ebcd99337f882b9b1ea422158349ce94be26a782 100644 (file)
 #ifndef VERIFY_H
 #define VERIFY_H
 
+int proxy_certificate_path(const char *hostname, char *path, size_t size);
 int server_certificate_path(FILE **file, const char *hostname,
                             char *path, size_t size);
+
 int verify_tls_connection(gnutls_session_t session, const char *hostname);
 
 #endif