Browse Source

Generate error ASAP if building with too-old openssl

Nick Mathewson 9 years ago
parent
commit
0b7bf3585a
3 changed files with 22 additions and 14 deletions
  1. 6 1
      src/common/aes.c
  2. 9 7
      src/common/crypto.c
  3. 7 6
      src/common/tortls.c

+ 6 - 1
src/common/aes.c

@@ -25,13 +25,18 @@
 #endif
 
 #include <openssl/opensslv.h>
+#include "crypto.h"
+
+#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0)
+#error "We require OpenSSL >= 1.0.0"
+#endif
+
 #include <assert.h>
 #include <stdlib.h>
 #include <string.h>
 #include <openssl/aes.h>
 #include <openssl/evp.h>
 #include <openssl/engine.h>
-#include "crypto.h"
 #include <openssl/modes.h>
 #include "compat.h"
 #include "aes.h"

+ 9 - 7
src/common/crypto.c

@@ -24,13 +24,21 @@
 #undef OCSP_RESPONSE
 #endif
 
+#include <openssl/opensslv.h>
+
+#define CRYPTO_PRIVATE
+#include "crypto.h"
+
+#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0)
+#error "We require OpenSSL >= 1.0.0"
+#endif
+
 #include <openssl/err.h>
 #include <openssl/rsa.h>
 #include <openssl/pem.h>
 #include <openssl/evp.h>
 #include <openssl/engine.h>
 #include <openssl/rand.h>
-#include <openssl/opensslv.h>
 #include <openssl/bn.h>
 #include <openssl/dh.h>
 #include <openssl/conf.h>
@@ -49,8 +57,6 @@
 #include <sys/fcntl.h>
 #endif
 
-#define CRYPTO_PRIVATE
-#include "crypto.h"
 #include "torlog.h"
 #include "aes.h"
 #include "util.h"
@@ -58,10 +64,6 @@
 #include "compat.h"
 #include "sandbox.h"
 
-#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0)
-#error "We require OpenSSL >= 1.0.0"
-#endif
-
 #ifdef ANDROID
 /* Android's OpenSSL seems to have removed all of its Engine support. */
 #define DISABLE_ENGINES

+ 7 - 6
src/common/tortls.c

@@ -43,13 +43,19 @@
 #pragma GCC diagnostic ignored "-Wredundant-decls"
 #endif
 
+#include <openssl/opensslv.h>
+#include "crypto.h"
+
+#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0)
+#error "We require OpenSSL >= 1.0.0"
+#endif
+
 #include <openssl/ssl.h>
 #include <openssl/ssl3.h>
 #include <openssl/err.h>
 #include <openssl/tls1.h>
 #include <openssl/asn1.h>
 #include <openssl/bio.h>
-#include <openssl/opensslv.h>
 #include <openssl/bn.h>
 #include <openssl/rsa.h>
 
@@ -68,17 +74,12 @@
 #include "compat_libevent.h"
 #endif
 
-#include "crypto.h"
 #include "tortls.h"
 #include "util.h"
 #include "torlog.h"
 #include "container.h"
 #include <string.h>
 
-#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0)
-#error "We require OpenSSL >= 1.0.0"
-#endif
-
 /* Enable the "v2" TLS handshake.
  */
 #define V2_HANDSHAKE_SERVER