mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-06 15:20:12 +00:00
openwsman: Upgrade to 2.6.8
- Use python3 native to build instead of general python - Backport OpenSSL 1.0 API patch - Add a patch to fix build with curl >= 7.62 - Drop older backports which are already in 2.6.8 release Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
+42
@@ -0,0 +1,42 @@
|
||||
From f2c37fab5dbaffa06c1268ee1309596306c9a4df Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Tue, 20 Nov 2018 12:23:47 -0800
|
||||
Subject: [PATCH] Adjust for CURLE_SSL_CACERT deprecation in curl >= 7.62
|
||||
|
||||
Use CURLE_PEER_FAILED_VERIFICATION instead
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/lib/wsman-curl-client-transport.c | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/src/lib/wsman-curl-client-transport.c b/src/lib/wsman-curl-client-transport.c
|
||||
index d0a3829b..92727f4f 100644
|
||||
--- a/src/lib/wsman-curl-client-transport.c
|
||||
+++ b/src/lib/wsman-curl-client-transport.c
|
||||
@@ -186,16 +186,23 @@ convert_to_last_error(CURLcode r)
|
||||
return WS_LASTERR_SSL_CONNECT_ERROR;
|
||||
case CURLE_BAD_FUNCTION_ARGUMENT:
|
||||
return WS_LASTERR_CURL_BAD_FUNCTION_ARG;
|
||||
+#if LIBCURL_VERSION_NUM < 0x073E00
|
||||
case CURLE_SSL_PEER_CERTIFICATE:
|
||||
return WS_LASTERR_SSL_PEER_CERTIFICATE;
|
||||
+#endif
|
||||
case CURLE_SSL_ENGINE_NOTFOUND:
|
||||
return WS_LASTERR_SSL_ENGINE_NOTFOUND;
|
||||
case CURLE_SSL_ENGINE_SETFAILED:
|
||||
return WS_LASTERR_SSL_ENGINE_SETFAILED;
|
||||
case CURLE_SSL_CERTPROBLEM:
|
||||
return WS_LASTERR_SSL_CERTPROBLEM;
|
||||
+#if LIBCURL_VERSION_NUM < 0x073E00
|
||||
case CURLE_SSL_CACERT:
|
||||
return WS_LASTERR_SSL_CACERT;
|
||||
+#else
|
||||
+ case CURLE_PEER_FAILED_VERIFICATION:
|
||||
+ return WS_LASTERR_SSL_PEER_CERTIFICATE;
|
||||
+#endif
|
||||
#if LIBCURL_VERSION_NUM > 0x70C01
|
||||
case CURLE_SSL_ENGINE_INITFAILED:
|
||||
return WS_LASTERR_SSL_ENGINE_INITFAILED;
|
||||
@@ -1,162 +0,0 @@
|
||||
From f78643d2388dd0697f83f17880403253a0596d83 Mon Sep 17 00:00:00 2001
|
||||
From: Vitezslav Crhonek <vcrhonek@redhat.com>
|
||||
Date: Wed, 5 Sep 2018 11:23:46 -0700
|
||||
Subject: [PATCH 1/2] Port to OpenSSL 1.1.0
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/Openwsman/openwsman/pull/99]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/lib/wsman-curl-client-transport.c | 6 +++-
|
||||
src/server/shttpd/io_ssl.c | 17 ----------
|
||||
src/server/shttpd/shttpd.c | 20 ++++--------
|
||||
src/server/shttpd/ssl.h | 46 ---------------------------
|
||||
4 files changed, 12 insertions(+), 77 deletions(-)
|
||||
|
||||
diff --git a/src/lib/wsman-curl-client-transport.c b/src/lib/wsman-curl-client-transport.c
|
||||
index cd7f517a..e64ad097 100644
|
||||
--- a/src/lib/wsman-curl-client-transport.c
|
||||
+++ b/src/lib/wsman-curl-client-transport.c
|
||||
@@ -241,12 +241,16 @@ write_handler( void *ptr, size_t size, size_t nmemb, void *data)
|
||||
static int ssl_certificate_thumbprint_verify_callback(X509_STORE_CTX *ctx, void *arg)
|
||||
{
|
||||
unsigned char *thumbprint = (unsigned char *)arg;
|
||||
- X509 *cert = ctx->cert;
|
||||
EVP_MD *tempDigest;
|
||||
|
||||
unsigned char tempFingerprint[EVP_MAX_MD_SIZE];
|
||||
unsigned int tempFingerprintLen;
|
||||
tempDigest = (EVP_MD*)EVP_sha1( );
|
||||
+
|
||||
+ X509 *cert = X509_STORE_CTX_get_current_cert(ctx);
|
||||
+ if(!cert)
|
||||
+ return 0;
|
||||
+
|
||||
if ( X509_digest(cert, tempDigest, tempFingerprint, &tempFingerprintLen ) <= 0)
|
||||
return 0;
|
||||
if(!memcmp(tempFingerprint, thumbprint, tempFingerprintLen))
|
||||
diff --git a/src/server/shttpd/io_ssl.c b/src/server/shttpd/io_ssl.c
|
||||
index 6de0db2a..7ac669e4 100644
|
||||
--- a/src/server/shttpd/io_ssl.c
|
||||
+++ b/src/server/shttpd/io_ssl.c
|
||||
@@ -11,23 +11,6 @@
|
||||
#include "defs.h"
|
||||
|
||||
#if !defined(NO_SSL)
|
||||
-struct ssl_func ssl_sw[] = {
|
||||
- {"SSL_free", {0}},
|
||||
- {"SSL_accept", {0}},
|
||||
- {"SSL_connect", {0}},
|
||||
- {"SSL_read", {0}},
|
||||
- {"SSL_write", {0}},
|
||||
- {"SSL_get_error", {0}},
|
||||
- {"SSL_set_fd", {0}},
|
||||
- {"SSL_new", {0}},
|
||||
- {"SSL_CTX_new", {0}},
|
||||
- {"SSLv23_server_method", {0}},
|
||||
- {"SSL_library_init", {0}},
|
||||
- {"SSL_CTX_use_PrivateKey_file", {0}},
|
||||
- {"SSL_CTX_use_certificate_file",{0}},
|
||||
- {NULL, {0}}
|
||||
-};
|
||||
-
|
||||
void
|
||||
_shttpd_ssl_handshake(struct stream *stream)
|
||||
{
|
||||
diff --git a/src/server/shttpd/shttpd.c b/src/server/shttpd/shttpd.c
|
||||
index 5876392e..4c1dbf32 100644
|
||||
--- a/src/server/shttpd/shttpd.c
|
||||
+++ b/src/server/shttpd/shttpd.c
|
||||
@@ -1476,20 +1476,14 @@ set_ssl(struct shttpd_ctx *ctx, const char *pem)
|
||||
int retval = FALSE;
|
||||
EC_KEY* key;
|
||||
|
||||
- /* Load SSL library dynamically */
|
||||
- if ((lib = dlopen(SSL_LIB, RTLD_LAZY)) == NULL) {
|
||||
- _shttpd_elog(E_LOG, NULL, "set_ssl: cannot load %s", SSL_LIB);
|
||||
- return (FALSE);
|
||||
- }
|
||||
-
|
||||
- for (fp = ssl_sw; fp->name != NULL; fp++)
|
||||
- if ((fp->ptr.v_void = dlsym(lib, fp->name)) == NULL) {
|
||||
- _shttpd_elog(E_LOG, NULL,"set_ssl: cannot find %s", fp->name);
|
||||
- return (FALSE);
|
||||
- }
|
||||
-
|
||||
/* Initialize SSL crap */
|
||||
+ debug("Initialize SSL");
|
||||
+ SSL_load_error_strings();
|
||||
+ #if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
SSL_library_init();
|
||||
+ #else
|
||||
+ OPENSSL_init_ssl(0, NULL);
|
||||
+ #endif
|
||||
|
||||
if ((CTX = SSL_CTX_new(SSLv23_server_method())) == NULL)
|
||||
_shttpd_elog(E_LOG, NULL, "SSL_CTX_new error");
|
||||
@@ -1532,7 +1526,7 @@ set_ssl(struct shttpd_ctx *ctx, const char *pem)
|
||||
if (strncasecmp(protocols[idx].name, ssl_disabled_protocols, blank_ptr-ssl_disabled_protocols) == 0) {
|
||||
//_shttpd_elog(E_LOG, NULL, "SSL: disable %s protocol", protocols[idx].name);
|
||||
debug("SSL: disable %s protocol", protocols[idx].name);
|
||||
- SSL_CTX_ctrl(CTX, SSL_CTRL_OPTIONS, protocols[idx].opt, NULL);
|
||||
+ SSL_CTX_set_options(CTX, protocols[idx].opt);
|
||||
break;
|
||||
}
|
||||
}
|
||||
diff --git a/src/server/shttpd/ssl.h b/src/server/shttpd/ssl.h
|
||||
index a863f2c7..8dad0109 100644
|
||||
--- a/src/server/shttpd/ssl.h
|
||||
+++ b/src/server/shttpd/ssl.h
|
||||
@@ -12,50 +12,4 @@
|
||||
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
-#else
|
||||
-
|
||||
-/*
|
||||
- * Snatched from OpenSSL includes. I put the prototypes here to be independent
|
||||
- * from the OpenSSL source installation. Having this, shttpd + SSL can be
|
||||
- * built on any system with binary SSL libraries installed.
|
||||
- */
|
||||
-
|
||||
-typedef struct ssl_st SSL;
|
||||
-typedef struct ssl_method_st SSL_METHOD;
|
||||
-typedef struct ssl_ctx_st SSL_CTX;
|
||||
-
|
||||
-#define SSL_ERROR_WANT_READ 2
|
||||
-#define SSL_ERROR_WANT_WRITE 3
|
||||
-#define SSL_ERROR_SYSCALL 5
|
||||
-#define SSL_FILETYPE_PEM 1
|
||||
-
|
||||
#endif
|
||||
-
|
||||
-/*
|
||||
- * Dynamically loaded SSL functionality
|
||||
- */
|
||||
-struct ssl_func {
|
||||
- const char *name; /* SSL function name */
|
||||
- union variant ptr; /* Function pointer */
|
||||
-};
|
||||
-
|
||||
-extern struct ssl_func ssl_sw[];
|
||||
-
|
||||
-#define FUNC(x) ssl_sw[x].ptr.v_func
|
||||
-
|
||||
-#define SSL_free(x) (* (void (*)(SSL *)) FUNC(0))(x)
|
||||
-#define SSL_accept(x) (* (int (*)(SSL *)) FUNC(1))(x)
|
||||
-#define SSL_connect(x) (* (int (*)(SSL *)) FUNC(2))(x)
|
||||
-#define SSL_read(x,y,z) (* (int (*)(SSL *, void *, int)) FUNC(3))((x),(y),(z))
|
||||
-#define SSL_write(x,y,z) \
|
||||
- (* (int (*)(SSL *, const void *,int)) FUNC(4))((x), (y), (z))
|
||||
-#define SSL_get_error(x,y)(* (int (*)(SSL *, int)) FUNC(5))((x), (y))
|
||||
-#define SSL_set_fd(x,y) (* (int (*)(SSL *, int)) FUNC(6))((x), (y))
|
||||
-#define SSL_new(x) (* (SSL * (*)(SSL_CTX *)) FUNC(7))(x)
|
||||
-#define SSL_CTX_new(x) (* (SSL_CTX * (*)(SSL_METHOD *)) FUNC(8))(x)
|
||||
-#define SSLv23_server_method() (* (SSL_METHOD * (*)(void)) FUNC(9))()
|
||||
-#define SSL_library_init() (* (int (*)(void)) FUNC(10))()
|
||||
-#define SSL_CTX_use_PrivateKey_file(x,y,z) (* (int (*)(SSL_CTX *, \
|
||||
- const char *, int)) FUNC(11))((x), (y), (z))
|
||||
-#define SSL_CTX_use_certificate_file(x,y,z) (* (int (*)(SSL_CTX *, \
|
||||
- const char *, int)) FUNC(12))((x), (y), (z))
|
||||
--
|
||||
2.18.0
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
From 634b95157e1823672a2c95fac0cecf079b5967e7 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= <kkaempf@suse.de>
|
||||
Date: Mon, 19 Nov 2018 15:31:27 +0100
|
||||
Subject: [PATCH] openSSL 1.1.0 API fixes
|
||||
|
||||
---
|
||||
src/server/shttpd/io_ssl.c | 5 +++++
|
||||
src/server/shttpd/shttpd.c | 11 ++++++++++-
|
||||
src/server/shttpd/ssl.h | 3 +++
|
||||
3 files changed, 18 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/server/shttpd/io_ssl.c b/src/server/shttpd/io_ssl.c
|
||||
index 6de0db2a..ece610ef 100644
|
||||
--- a/src/server/shttpd/io_ssl.c
|
||||
+++ b/src/server/shttpd/io_ssl.c
|
||||
@@ -21,8 +21,13 @@ struct ssl_func ssl_sw[] = {
|
||||
{"SSL_set_fd", {0}},
|
||||
{"SSL_new", {0}},
|
||||
{"SSL_CTX_new", {0}},
|
||||
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
{"SSLv23_server_method", {0}},
|
||||
{"SSL_library_init", {0}},
|
||||
+#else
|
||||
+ {"TLS_server_method", {0}},
|
||||
+ {"OPENSSL_init_ssl", {0}},
|
||||
+#endif
|
||||
{"SSL_CTX_use_PrivateKey_file", {0}},
|
||||
{"SSL_CTX_use_certificate_file",{0}},
|
||||
{NULL, {0}}
|
||||
diff --git a/src/server/shttpd/shttpd.c b/src/server/shttpd/shttpd.c
|
||||
index f0f3fbd8..652aea17 100644
|
||||
--- a/src/server/shttpd/shttpd.c
|
||||
+++ b/src/server/shttpd/shttpd.c
|
||||
@@ -1489,9 +1489,14 @@ set_ssl(struct shttpd_ctx *ctx, const char *pem)
|
||||
}
|
||||
|
||||
/* Initialize SSL crap */
|
||||
- SSL_library_init();
|
||||
|
||||
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
+ SSL_library_init();
|
||||
if ((CTX = SSL_CTX_new(SSLv23_server_method())) == NULL)
|
||||
+#else
|
||||
+ OPENSSL_init_ssl();
|
||||
+ if ((CTX = SSL_CTX_new(TLS_server_method())) == NULL)
|
||||
+#endif
|
||||
_shttpd_elog(E_LOG, NULL, "SSL_CTX_new error");
|
||||
else if (SSL_CTX_use_certificate_file(CTX, wsmand_options_get_ssl_cert_file(), SSL_FILETYPE_PEM) != 1)
|
||||
_shttpd_elog(E_LOG, NULL, "cannot open certificate file %s", pem);
|
||||
@@ -1552,6 +1557,10 @@ set_ssl(struct shttpd_ctx *ctx, const char *pem)
|
||||
if (rc != 1) {
|
||||
_shttpd_elog(E_LOG, NULL, "Failed to set SSL cipher list \"%s\"", ssl_cipher_list);
|
||||
}
|
||||
+ else if ((*ssl_cipher_list == 0) || (*ssl_cipher_list == ' ')) {
|
||||
+ _shttpd_elog(E_LOG, NULL, "Empty 'ssl_cipher_list' defaults to 'TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256'.");
|
||||
+ _shttpd_elog(E_LOG, NULL, "Check openSSL documentation.");
|
||||
+ }
|
||||
}
|
||||
ctx->ssl_ctx = CTX;
|
||||
|
||||
diff --git a/src/server/shttpd/ssl.h b/src/server/shttpd/ssl.h
|
||||
index 2304b70a..89a73c49 100644
|
||||
--- a/src/server/shttpd/ssl.h
|
||||
+++ b/src/server/shttpd/ssl.h
|
||||
@@ -56,6 +56,9 @@ extern struct ssl_func ssl_sw[];
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
#define SSLv23_server_method() (* (SSL_METHOD * (*)(void)) FUNC(9))()
|
||||
#define SSL_library_init() (* (int (*)(void)) FUNC(10))()
|
||||
+#else
|
||||
+#define TLS_server_method() (* (SSL_METHOD * (*)(void)) FUNC(9))()
|
||||
+#define OPENSSL_init_ssl() (* (int (*)(void)) FUNC(10))()
|
||||
#endif
|
||||
#define SSL_CTX_use_PrivateKey_file(x,y,z) (* (int (*)(SSL_CTX *, \
|
||||
const char *, int)) FUNC(11))((x), (y), (z))
|
||||
--
|
||||
2.19.1
|
||||
|
||||
-48
@@ -1,48 +0,0 @@
|
||||
From 75669b077bd54bedbc086c60cbe137e7f4c685b5 Mon Sep 17 00:00:00 2001
|
||||
From: Vitezslav Crhonek <vcrhonek@redhat.com>
|
||||
Date: Mon, 24 Apr 2017 11:28:39 +0200
|
||||
Subject: [PATCH 2/2] Check OpenSSL version number to allow builds with older
|
||||
version
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/Openwsman/openwsman/pull/99]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/lib/wsman-curl-client-transport.c | 4 ++++
|
||||
src/server/shttpd/shttpd.c | 4 ++++
|
||||
2 files changed, 8 insertions(+)
|
||||
|
||||
diff --git a/src/lib/wsman-curl-client-transport.c b/src/lib/wsman-curl-client-transport.c
|
||||
index e64ad097..4fc047e8 100644
|
||||
--- a/src/lib/wsman-curl-client-transport.c
|
||||
+++ b/src/lib/wsman-curl-client-transport.c
|
||||
@@ -247,7 +247,11 @@ static int ssl_certificate_thumbprint_verify_callback(X509_STORE_CTX *ctx, void
|
||||
unsigned int tempFingerprintLen;
|
||||
tempDigest = (EVP_MD*)EVP_sha1( );
|
||||
|
||||
+ #if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
+ X509 *cert = ctx->cert;
|
||||
+ #else
|
||||
X509 *cert = X509_STORE_CTX_get_current_cert(ctx);
|
||||
+ #endif
|
||||
if(!cert)
|
||||
return 0;
|
||||
|
||||
diff --git a/src/server/shttpd/shttpd.c b/src/server/shttpd/shttpd.c
|
||||
index 4c1dbf32..161720c8 100644
|
||||
--- a/src/server/shttpd/shttpd.c
|
||||
+++ b/src/server/shttpd/shttpd.c
|
||||
@@ -1526,7 +1526,11 @@ set_ssl(struct shttpd_ctx *ctx, const char *pem)
|
||||
if (strncasecmp(protocols[idx].name, ssl_disabled_protocols, blank_ptr-ssl_disabled_protocols) == 0) {
|
||||
//_shttpd_elog(E_LOG, NULL, "SSL: disable %s protocol", protocols[idx].name);
|
||||
debug("SSL: disable %s protocol", protocols[idx].name);
|
||||
+ #if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
+ SSL_CTX_ctrl(CTX, SSL_CTRL_OPTIONS, protocols[idx].opt, NULL);
|
||||
+ #else
|
||||
SSL_CTX_set_options(CTX, protocols[idx].opt);
|
||||
+ #endif
|
||||
break;
|
||||
}
|
||||
}
|
||||
--
|
||||
2.18.0
|
||||
|
||||
+7
-5
@@ -15,15 +15,15 @@ DEPENDS = "curl libxml2 openssl libpam"
|
||||
inherit distro_features_check
|
||||
REQUIRED_DISTRO_FEATURES = "pam"
|
||||
|
||||
SRCREV = "e90e5c96e3006c372bf45e0185e33c9250e67df6"
|
||||
PV = "2.6.5"
|
||||
# v2.6.8
|
||||
SRCREV = "b9cd0b72534854abb6dd834c8c11e02111b4c8d7"
|
||||
|
||||
SRC_URI = "git://github.com/Openwsman/openwsman.git \
|
||||
file://libssl-is-required-if-eventint-supported.patch \
|
||||
file://openwsmand.service \
|
||||
file://0001-lock.c-Define-PTHREAD_MUTEX_RECURSIVE_NP-if-undefine.patch \
|
||||
file://0001-Port-to-OpenSSL-1.1.0.patch \
|
||||
file://0002-Check-OpenSSL-version-number-to-allow-builds-with-ol.patch \
|
||||
file://0001-openSSL-1.1.0-API-fixes.patch \
|
||||
file://0001-Adjust-for-CURLE_SSL_CACERT-deprecation-in-curl-7.62.patch \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
@@ -31,7 +31,7 @@ S = "${WORKDIR}/git"
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d4f53d4c6cf73b9d43186ce3be6dd0ba"
|
||||
|
||||
inherit systemd cmake pkgconfig pythonnative perlnative
|
||||
inherit systemd cmake pkgconfig python3native perlnative
|
||||
|
||||
SYSTEMD_SERVICE_${PN} = "openwsmand.service"
|
||||
SYSTEMD_AUTO_ENABLE = "disable"
|
||||
@@ -41,6 +41,8 @@ LDFLAGS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', " -fuse-
|
||||
EXTRA_OECMAKE = "-DBUILD_BINDINGS=NO \
|
||||
-DBUILD_LIBCIM=NO \
|
||||
-DBUILD_PERL=YES \
|
||||
-DBUILD_PYTHON3=YES \
|
||||
-DBUILD_PYTHON=NO \
|
||||
-DCMAKE_INSTALL_PREFIX=${prefix} \
|
||||
-DLIB=${baselib} \
|
||||
"
|
||||
Reference in New Issue
Block a user