Blame SOURCES/bacula-9.0.6-use-crypto-from-openssl.patch

dd16ac
Author: Vaclav Dolezal <vdolezal@redhat.com>
dd16ac
Date:   Mon Aug 12 14:51:39 2019 +0200
dd16ac
dd16ac
    Use functions from OpenSSL for HMAC, MD5 and random bytes
dd16ac
dd16ac
diff --git a/bacula/src/dird/dird_conf.c b/bacula/src/dird/dird_conf.c
dd16ac
index 02fae0bab..dff241356 100644
dd16ac
--- a/bacula/src/dird/dird_conf.c
dd16ac
+++ b/bacula/src/dird/dird_conf.c
dd16ac
@@ -42,6 +42,10 @@
dd16ac
 #include "bacula.h"
dd16ac
 #include "dird.h"
dd16ac
 
dd16ac
+#if HAVE_OPENSSL
dd16ac
+# include <openssl/evp.h>
dd16ac
+#endif
dd16ac
+
dd16ac
 /* Define the first and last resource ID record
dd16ac
  * types. Note, these should be unique for each
dd16ac
  * daemon though not a requirement.
dd16ac
@@ -1645,6 +1649,11 @@ void free_resource(RES *rres, int type)
dd16ac
          free(res->res_fs.exclude_items);
dd16ac
       }
dd16ac
       res->res_fs.num_excludes = 0;
dd16ac
+#if HAVE_OPENSSL
dd16ac
+      EVP_MD_CTX_free(res->res_fs.md5c);
dd16ac
+      res->res_fs.md5c = NULL;
dd16ac
+      res->res_fs.have_MD5 = false;
dd16ac
+#endif
dd16ac
       break;
dd16ac
    case R_POOL:
dd16ac
       if (res->res_pool.pool_type) {
dd16ac
diff --git a/bacula/src/dird/dird_conf.h b/bacula/src/dird/dird_conf.h
dd16ac
index 5174a7a14..4e910c5bd 100644
dd16ac
--- a/bacula/src/dird/dird_conf.h
dd16ac
+++ b/bacula/src/dird/dird_conf.h
dd16ac
@@ -24,6 +24,10 @@
dd16ac
 
dd16ac
 /* NOTE:  #includes at the end of this file */
dd16ac
 
dd16ac
+#if HAVE_OPENSSL
dd16ac
+# include <openssl/evp.h>
dd16ac
+#endif
dd16ac
+
dd16ac
 /*
dd16ac
  * Resource codes -- they must be sequential for indexing
dd16ac
  */
dd16ac
@@ -591,7 +595,11 @@ public:
dd16ac
    INCEXE **exclude_items;
dd16ac
    int32_t num_excludes;
dd16ac
    bool have_MD5;                     /* set if MD5 initialized */
dd16ac
+#if HAVE_OPENSSL
dd16ac
+   EVP_MD_CTX *md5c;                  /* MD5 of include/exclude */
dd16ac
+#else
dd16ac
    struct MD5Context md5c;            /* MD5 of include/exclude */
dd16ac
+#endif
dd16ac
    char MD5[30];                      /* base 64 representation of MD5 */
dd16ac
    bool ignore_fs_changes;            /* Don't force Full if FS changed */
dd16ac
    bool enable_vss;                   /* Enable Volume Shadow Copy */
dd16ac
diff --git a/bacula/src/dird/inc_conf.c b/bacula/src/dird/inc_conf.c
dd16ac
index 3f4fbf55e..64b422242 100644
dd16ac
--- a/bacula/src/dird/inc_conf.c
dd16ac
+++ b/bacula/src/dird/inc_conf.c
dd16ac
@@ -32,6 +32,10 @@
dd16ac
 #include <regex.h>
dd16ac
 #endif
dd16ac
 
dd16ac
+#if HAVE_OPENSSL
dd16ac
+# include <openssl/evp.h>
dd16ac
+#endif
dd16ac
+
dd16ac
 /* Forward referenced subroutines */
dd16ac
 
dd16ac
 void store_inc(LEX *lc, RES_ITEM *item, int index, int pass);
dd16ac
@@ -354,7 +358,17 @@ static void store_newinc(LEX *lc, RES_ITEM *item, int index, int pass)
dd16ac
    bool options;
dd16ac
 
dd16ac
    if (!res_all.res_fs.have_MD5) {
dd16ac
+#if HAVE_OPENSSL
dd16ac
+      res_all.res_fs.md5c = EVP_MD_CTX_new();
dd16ac
+      if (!res_all.res_fs.md5c
dd16ac
+         || !EVP_DigestInit_ex(res_all.res_fs.md5c, EVP_md5(), NULL)
dd16ac
+      ) {
dd16ac
+         Emsg1(M_ERROR_TERM, 0, "MD5 computation failed: %s\n",
dd16ac
+               ERR_reason_error_string(ERR_peek_last_error()));
dd16ac
+      }
dd16ac
+#else
dd16ac
       MD5Init(&res_all.res_fs.md5c);
dd16ac
+#endif
dd16ac
       res_all.res_fs.have_MD5 = true;
dd16ac
    }
dd16ac
    memset(&res_incexe, 0, sizeof(INCEXE));
dd16ac
@@ -620,7 +634,13 @@ static void store_fname(LEX *lc, RES_ITEM2 *item, int index, int pass, bool excl
dd16ac
          }
dd16ac
       case T_QUOTED_STRING:
dd16ac
          if (res_all.res_fs.have_MD5) {
dd16ac
+#if HAVE_OPENSSL
dd16ac
+            if (!EVP_DigestUpdate(res_all.res_fs.md5c, (void *)lc->str, (size_t) lc->str_len))
dd16ac
+               Emsg1(M_ERROR_TERM, 0, "MD5 computation failed: %s\n",
dd16ac
+                     ERR_reason_error_string(ERR_peek_last_error()));
dd16ac
+#else
dd16ac
             MD5Update(&res_all.res_fs.md5c, (unsigned char *)lc->str, lc->str_len);
dd16ac
+#endif
dd16ac
          }
dd16ac
          incexe = &res_incexe;
dd16ac
          if (incexe->name_list.size() == 0) {
dd16ac
@@ -663,7 +683,13 @@ static void store_plugin_name(LEX *lc, RES_ITEM2 *item, int index, int pass, boo
dd16ac
          }
dd16ac
       case T_QUOTED_STRING:
dd16ac
          if (res_all.res_fs.have_MD5) {
dd16ac
+#if HAVE_OPENSSL
dd16ac
+            if (!EVP_DigestUpdate(res_all.res_fs.md5c, (void *)lc->str, (size_t) lc->str_len))
dd16ac
+               Emsg1(M_ERROR_TERM, 0, "MD5 computation failed: %s\n",
dd16ac
+                     ERR_reason_error_string(ERR_peek_last_error()));
dd16ac
+#else
dd16ac
             MD5Update(&res_all.res_fs.md5c, (unsigned char *)lc->str, lc->str_len);
dd16ac
+#endif
dd16ac
          }
dd16ac
          incexe = &res_incexe;
dd16ac
          if (incexe->plugin_list.size() == 0) {
dd16ac
diff --git a/bacula/src/dird/job.c b/bacula/src/dird/job.c
dd16ac
index b5b39c7d5..7d69f0157 100644
dd16ac
--- a/bacula/src/dird/job.c
dd16ac
+++ b/bacula/src/dird/job.c
dd16ac
@@ -25,6 +25,10 @@
dd16ac
 #include "bacula.h"
dd16ac
 #include "dird.h"
dd16ac
 
dd16ac
+#if HAVE_OPENSSL
dd16ac
+# include <openssl/evp.h>
dd16ac
+#endif
dd16ac
+
dd16ac
 /* Forward referenced subroutines */
dd16ac
 static void *job_thread(void *arg);
dd16ac
 static void job_monitor_watchdog(watchdog_t *self);
dd16ac
@@ -1308,10 +1312,27 @@ bool get_or_create_fileset_record(JCR *jcr)
dd16ac
    memset(&fsr, 0, sizeof(FILESET_DBR));
dd16ac
    bstrncpy(fsr.FileSet, jcr->fileset->hdr.name, sizeof(fsr.FileSet));
dd16ac
    if (jcr->fileset->have_MD5) {
dd16ac
+#if HAVE_OPENSSL
dd16ac
+      EVP_MD_CTX *mdctx = EVP_MD_CTX_new();
dd16ac
+      if (!mdctx)
dd16ac
+         Emsg1(M_ERROR_TERM, 0, "MD5 computation failed: %s\n",
dd16ac
+               ERR_reason_error_string(ERR_peek_last_error()));
dd16ac
+#else
dd16ac
       struct MD5Context md5c;
dd16ac
+#endif
dd16ac
       unsigned char digest[MD5HashSize];
dd16ac
+#if HAVE_OPENSSL
dd16ac
+      if (!EVP_MD_CTX_copy_ex(mdctx, jcr->fileset->md5c)
dd16ac
+         || !EVP_DigestFinal_ex(mdctx, digest, NULL)
dd16ac
+      ) {
dd16ac
+         Emsg1(M_ERROR_TERM, 0, "MD5 computation failed: %s\n",
dd16ac
+               ERR_reason_error_string(ERR_peek_last_error()));
dd16ac
+      }
dd16ac
+      EVP_MD_CTX_free(mdctx);
dd16ac
+#else
dd16ac
       memcpy(&md5c, &jcr->fileset->md5c, sizeof(md5c));
dd16ac
       MD5Final(digest, &md5c);
dd16ac
+#endif
dd16ac
       /*
dd16ac
        * Keep the flag (last arg) set to false otherwise old FileSets will
dd16ac
        * get new MD5 sums and the user will get Full backups on everything
dd16ac
diff --git a/bacula/src/lib/hmac.c b/bacula/src/lib/hmac.c
dd16ac
index a8d5e3dc0..dc3b78383 100644
dd16ac
--- a/bacula/src/lib/hmac.c
dd16ac
+++ b/bacula/src/lib/hmac.c
dd16ac
@@ -26,6 +26,10 @@
dd16ac
  */
dd16ac
 #include "bacula.h"
dd16ac
 
dd16ac
+#if HAVE_OPENSSL
dd16ac
+# include <openssl/hmac.h>
dd16ac
+#endif
dd16ac
+
dd16ac
 #define PAD_LEN 64           /* PAD length */
dd16ac
 #define SIG_LEN MD5HashSize  /* MD5 digest length */
dd16ac
 
dd16ac
@@ -36,6 +40,19 @@ hmac_md5(
dd16ac
     uint8_t*  key,             /* pointer to authentication key */
dd16ac
     int   key_len,             /* length of authentication key */
dd16ac
     uint8_t  *hmac)            /* returned hmac-md5 */
dd16ac
+#if HAVE_OPENSSL
dd16ac
+{
dd16ac
+    if (!HMAC(
dd16ac
+        EVP_md5(),
dd16ac
+        key, key_len,
dd16ac
+        text, text_len,
dd16ac
+        hmac, NULL
dd16ac
+    )) {
dd16ac
+        Emsg0(M_ERROR_TERM, 0, "HMAC computation failed\n");
dd16ac
+    }
dd16ac
+
dd16ac
+}
dd16ac
+#else
dd16ac
 {
dd16ac
    MD5Context md5c;
dd16ac
    uint8_t k_ipad[PAD_LEN];    /* inner padding - key XORd with ipad */
dd16ac
@@ -90,6 +107,7 @@ hmac_md5(
dd16ac
    MD5Update(&md5c, hmac, SIG_LEN);   /* hash inner hash */
dd16ac
    MD5Final(hmac, &md5c);             /* store results */
dd16ac
 }
dd16ac
+#endif
dd16ac
 /*
dd16ac
 Test Vectors (Trailing '\0' of a character string not included in test):
dd16ac
 
dd16ac
diff --git a/bacula/src/lib/parse_conf.c b/bacula/src/lib/parse_conf.c
dd16ac
index cb3573fbd..3f3f93fdc 100644
dd16ac
--- a/bacula/src/lib/parse_conf.c
dd16ac
+++ b/bacula/src/lib/parse_conf.c
dd16ac
@@ -59,6 +59,10 @@
dd16ac
 #define MAX_PATH  1024
dd16ac
 #endif
dd16ac
 
dd16ac
+#if HAVE_OPENSSL
dd16ac
+# include <openssl/evp.h>
dd16ac
+#endif
dd16ac
+
dd16ac
 /*
dd16ac
  * Define the Union of all the common resource structure definitions.
dd16ac
  */
dd16ac
@@ -538,7 +542,11 @@ void store_dir(LEX *lc, RES_ITEM *item, int index, int pass)
dd16ac
 void store_password(LEX *lc, RES_ITEM *item, int index, int pass)
dd16ac
 {
dd16ac
    unsigned int i, j;
dd16ac
+#if HAVE_OPENSSL
dd16ac
+   EVP_MD_CTX *mdctx = NULL;
dd16ac
+#else
dd16ac
    struct MD5Context md5c;
dd16ac
+#endif
dd16ac
    unsigned char digest[CRYPTO_DIGEST_MD5_SIZE];
dd16ac
    char sig[100];
dd16ac
 
dd16ac
@@ -548,9 +556,21 @@ void store_password(LEX *lc, RES_ITEM *item, int index, int pass)
dd16ac
    } else {
dd16ac
       lex_get_token(lc, T_STRING);
dd16ac
       if (pass == 1) {
dd16ac
+#if HAVE_OPENSSL
dd16ac
+         mdctx = EVP_MD_CTX_new();
dd16ac
+         if (!mdctx
dd16ac
+            || !EVP_DigestInit_ex(mdctx, EVP_md5(), NULL)
dd16ac
+            || !EVP_DigestUpdate(mdctx, (const void *) lc->str, (size_t) lc->str_len)
dd16ac
+            || !EVP_DigestFinal_ex(mdctx, digest, NULL)
dd16ac
+         ) {
dd16ac
+            Emsg1(M_ERROR_TERM, 0, "MD5 computation failed: %s\n",
dd16ac
+                  ERR_reason_error_string(ERR_peek_last_error()));
dd16ac
+         }
dd16ac
+#else
dd16ac
          MD5Init(&md5c);
dd16ac
          MD5Update(&md5c, (unsigned char *) (lc->str), lc->str_len);
dd16ac
          MD5Final(digest, &md5c);
dd16ac
+#endif
dd16ac
          for (i = j = 0; i < sizeof(digest); i++) {
dd16ac
             sprintf(&sig[j], "%02x", digest[i]);
dd16ac
             j += 2;
dd16ac
diff --git a/bacula/src/lib/util.c b/bacula/src/lib/util.c
dd16ac
index 2c425aa4c..e82b907d8 100644
dd16ac
--- a/bacula/src/lib/util.c
dd16ac
+++ b/bacula/src/lib/util.c
dd16ac
@@ -707,6 +707,35 @@ int do_shell_expansion(char *name, int name_len)
dd16ac
     from SpeakFreely by John Walker */
dd16ac
 
dd16ac
 void make_session_key(char *key, char *seed, int mode)
dd16ac
+#if HAVE_OPENSSL
dd16ac
+{
dd16ac
+   int j, k;
dd16ac
+   unsigned char buf[16];
dd16ac
+
dd16ac
+   (void) seed;
dd16ac
+
dd16ac
+   if (!RAND_bytes(buf, sizeof(buf)))
dd16ac
+       Emsg1(M_ERROR_TERM, 0, "Random bytes generation failed: %s\n",
dd16ac
+             ERR_reason_error_string(ERR_peek_last_error()));
dd16ac
+
dd16ac
+   if (mode) {
dd16ac
+     for (j = k = 0; j < 16; j++) {
dd16ac
+        unsigned char rb = buf[j];
dd16ac
+
dd16ac
+#define Rad16(x) ((x) + 'A')
dd16ac
+        key[k++] = Rad16((rb >> 4) & 0xF);
dd16ac
+        key[k++] = Rad16(rb & 0xF);
dd16ac
+#undef Rad16
dd16ac
+        if (j & 1) {
dd16ac
+           key[k++] = '-';
dd16ac
+        }
dd16ac
+     }
dd16ac
+     key[--k] = 0;
dd16ac
+   } else {
dd16ac
+      memcpy(key, buf, sizeof(buf));
dd16ac
+   }
dd16ac
+}
dd16ac
+#else
dd16ac
 {
dd16ac
    int j, k;
dd16ac
    struct MD5Context md5c;
dd16ac
@@ -790,6 +819,7 @@ void make_session_key(char *key, char *seed, int mode)
dd16ac
    }
dd16ac
 }
dd16ac
 #undef nextrand
dd16ac
+#endif
dd16ac
 
dd16ac
 void encode_session_key(char *encode, char *session, char *key, int maxlen)
dd16ac
 {