Blame SOURCES/mysql-chain-certs.patch

80384c
Fix things so that chains of certificates work in the server and client
80384c
certificate files.
80384c
80384c
This only really works for OpenSSL-based builds, as yassl is unable to read
80384c
multiple certificates from a file.  The patch below to yassl/src/ssl.cpp
80384c
doesn't fix that, but just arranges that the viosslfactories.c patch won't
80384c
have any ill effects in a yassl build.  Since we don't use yassl in Red Hat/
80384c
Fedora builds, I'm not feeling motivated to try to fix yassl for this.
80384c
80384c
See RH bug #598656.  Filed upstream at http://bugs.mysql.com/bug.php?id=54158
80384c
80384c
80384c
diff -Naur mysql-5.5.28.orig/extra/yassl/src/ssl.cpp mysql-5.5.28/extra/yassl/src/ssl.cpp
80384c
--- mysql-5.5.28.orig/extra/yassl/src/ssl.cpp	2012-08-29 04:50:46.000000000 -0400
80384c
+++ mysql-5.5.28/extra/yassl/src/ssl.cpp	2012-09-29 12:45:19.682287214 -0400
80384c
@@ -1627,10 +1627,10 @@
80384c
     }
80384c
 
80384c
 
80384c
-    int SSL_CTX_use_certificate_chain_file(SSL_CTX*, const char*)
80384c
+    int SSL_CTX_use_certificate_chain_file(SSL_CTX* ctx, const char* file)
80384c
     {
80384c
-        // TDOD:
80384c
-        return SSL_SUCCESS;
80384c
+        // For the moment, treat like use_certificate_file
80384c
+        return read_file(ctx, file, SSL_FILETYPE_PEM, Cert);
80384c
     }
80384c
 
80384c
 
80384c
diff -Naur mysql-5.5.28.orig/vio/viosslfactories.c mysql-5.5.28/vio/viosslfactories.c
80384c
--- mysql-5.5.28.orig/vio/viosslfactories.c	2012-08-29 04:50:46.000000000 -0400
80384c
+++ mysql-5.5.28/vio/viosslfactories.c	2012-09-29 12:46:35.124975585 -0400
80384c
@@ -106,7 +106,7 @@
80384c
     key_file= cert_file;
80384c
 
80384c
   if (cert_file &&
80384c
-      SSL_CTX_use_certificate_file(ctx, cert_file, SSL_FILETYPE_PEM) <= 0)
80384c
+      SSL_CTX_use_certificate_chain_file(ctx, cert_file) <= 0)
80384c
   {
80384c
     *error= SSL_INITERR_CERT;
80384c
     DBUG_PRINT("error",("%s from file '%s'", sslGetErrString(*error), cert_file));