diff options
3 files changed, 147 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch b/meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch new file mode 100644 index 0000000000..393ee19194 --- /dev/null +++ b/meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | From e7a2d3a57fd51f0d4d5b3fcb6669b1876d4b18d2 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 3 | Date: Tue, 10 Nov 2015 01:23:18 -0500 | ||
| 4 | Subject: [PATCH 1/2] libnet-ssleay-perl: Disable test that fails with | ||
| 5 | openssl-1.0.2b or above | ||
| 6 | |||
| 7 | Run testsuits: | ||
| 8 | t/local/33_x509_create_cert............NOK 39/123 | ||
| 9 | not ok 39 - PEM_get_string_PrivateKey+passwd+enc_alg | ||
| 10 | | Failed test 'PEM_get_string_PrivateKey+passwd+enc_alg' | ||
| 11 | | at t/local/33_x509_create_cert.t line 104. | ||
| 12 | | undef | ||
| 13 | | doesn't match '(?^:-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----)' | ||
| 14 | |||
| 15 | This is due to the following change in OpenSSL: | ||
| 16 | (git://git.openssl.org/openssl.git) | ||
| 17 | ...... | ||
| 18 | 4d9dc0c269be87b92da188df1fbd8bfee4700eb3 is the first bad commit | ||
| 19 | commit 4d9dc0c269be87b92da188df1fbd8bfee4700eb3 | ||
| 20 | Author: Dr. Stephen Henson <steve@openssl.org> | ||
| 21 | Date: Thu May 28 15:44:20 2015 +0100 | ||
| 22 | |||
| 23 | check for error when creating PKCS#8 structure | ||
| 24 | |||
| 25 | Reviewed-by: Rich Salz <rsalz@openssl.org> | ||
| 26 | (cherry picked from commit 2849707fa65d2803e6d1c1603fdd3fd1fdc4c6cc) | ||
| 27 | ...... | ||
| 28 | |||
| 29 | Upstream-Status: Backport from upstream latest 1.72: | ||
| 30 | http://www.cpan.org/authors/id/M/MI/MIKEM/Net-SSLeay-1.72.tar.gz | ||
| 31 | |||
| 32 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 33 | --- | ||
| 34 | t/local/33_x509_create_cert.t | 13 ++++++++----- | ||
| 35 | 1 file changed, 8 insertions(+), 5 deletions(-) | ||
| 36 | |||
| 37 | diff --git a/t/local/33_x509_create_cert.t b/t/local/33_x509_create_cert.t | ||
| 38 | index 2f2c013..3e653ce 100755 | ||
| 39 | --- a/t/local/33_x509_create_cert.t | ||
| 40 | +++ b/t/local/33_x509_create_cert.t | ||
| 41 | @@ -2,7 +2,7 @@ | ||
| 42 | |||
| 43 | use strict; | ||
| 44 | use warnings; | ||
| 45 | -use Test::More tests => 123; | ||
| 46 | +use Test::More tests => 121; | ||
| 47 | use Net::SSLeay qw/MBSTRING_ASC MBSTRING_UTF8 EVP_PK_RSA EVP_PKT_SIGN EVP_PKT_ENC/; | ||
| 48 | use File::Spec; | ||
| 49 | use utf8; | ||
| 50 | @@ -99,10 +99,13 @@ is(Net::SSLeay::X509_NAME_cmp($ca_issuer, $ca_subject), 0, "X509_NAME_cmp"); | ||
| 51 | } | ||
| 52 | ok(my $alg1 = Net::SSLeay::EVP_get_cipherbyname("DES-EDE3-CBC"), "EVP_get_cipherbyname"); | ||
| 53 | like(my $key_pem3 = Net::SSLeay::PEM_get_string_PrivateKey($pk,"password",$alg1), qr/-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----/, "PEM_get_string_PrivateKey+passwd+enc_alg"); | ||
| 54 | - | ||
| 55 | - ok(my $alg2 = Net::SSLeay::EVP_get_cipherbyname("DES-EDE3-OFB"), "EVP_get_cipherbyname"); | ||
| 56 | - like(my $key_pem4 = Net::SSLeay::PEM_get_string_PrivateKey($pk,"password",$alg2), qr/-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----/, "PEM_get_string_PrivateKey+passwd+enc_alg"); | ||
| 57 | - | ||
| 58 | + | ||
| 59 | +# DES-EDE3-OFB has no ASN1 support, detected by changes to do_pk8pkey as of openssl 1.0.1n | ||
| 60 | +# https://git.openssl.org/?p=openssl.git;a=commit;h=4d9dc0c269be87b92da188df1fbd8bfee4700eb3 | ||
| 61 | +# this test now fails | ||
| 62 | +# ok(my $alg2 = Net::SSLeay::EVP_get_cipherbyname("DES-EDE3-OFB"), "EVP_get_cipherbyname"); | ||
| 63 | +# like(my $key_pem4 = Net::SSLeay::PEM_get_string_PrivateKey($pk,"password",$alg2), qr/-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----/, "PEM_get_string_PrivateKey+passwd+enc_alg"); | ||
| 64 | + | ||
| 65 | is(Net::SSLeay::X509_NAME_print_ex($name), "O=Company Name,C=UK,CN=Common name text X509", "X509_NAME_print_ex"); | ||
| 66 | |||
| 67 | # 2014-06-06: Sigh, some versions of openssl have this patch, which afffects the results of this test: | ||
| 68 | -- | ||
| 69 | 1.9.1 | ||
| 70 | |||
diff --git a/meta-perl/recipes-perl/libnet/files/0002-Recent-1.0.2-betas-have-dropped-the-SSLv3_method-fun.patch b/meta-perl/recipes-perl/libnet/files/0002-Recent-1.0.2-betas-have-dropped-the-SSLv3_method-fun.patch new file mode 100644 index 0000000000..e3650b8ea3 --- /dev/null +++ b/meta-perl/recipes-perl/libnet/files/0002-Recent-1.0.2-betas-have-dropped-the-SSLv3_method-fun.patch | |||
| @@ -0,0 +1,75 @@ | |||
| 1 | From d94f2d3f96db529383b22f2dc294847190d1bfbe Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 3 | Date: Tue, 10 Nov 2015 02:11:30 -0500 | ||
| 4 | Subject: [PATCH 2/2] Recent 1.0.2 betas have dropped the SSLv3_method | ||
| 5 | function. This patch leaves out the function on newer versions, much the same | ||
| 6 | as the SSLv2 deprecation is handled. It also fixes the ALPN test, which was | ||
| 7 | incorrectly failing on OpenSSL due to the LibreSSL check (earlier versions | ||
| 8 | bailed out before that line). Signed-off-by: Patch from Tom Molesworth | ||
| 9 | |||
| 10 | Upstream-Status: Backport from upstream 1.67 | ||
| 11 | http://www.cpan.org/authors/id/M/MI/MIKEM/Net-SSLeay-1.67.tar.gz | ||
| 12 | https://rt.cpan.org/Public/Bug/Display.html?id=101484 | ||
| 13 | |||
| 14 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 15 | --- | ||
| 16 | SSLeay.xs | 12 ++++++++++++ | ||
| 17 | t/local/41_alpn_support.t | 2 +- | ||
| 18 | 2 files changed, 13 insertions(+), 1 deletion(-) | ||
| 19 | |||
| 20 | diff --git a/SSLeay.xs b/SSLeay.xs | ||
| 21 | index c31396d..1fd4fab 100644 | ||
| 22 | --- a/SSLeay.xs | ||
| 23 | +++ b/SSLeay.xs | ||
| 24 | @@ -1409,6 +1409,9 @@ SSL_CTX_v2_new() | ||
| 25 | #endif | ||
| 26 | #endif | ||
| 27 | |||
| 28 | +#ifndef OPENSSL_NO_SSL3 | ||
| 29 | +#if OPENSSL_VERSION_NUMBER < 0x10002000L | ||
| 30 | + | ||
| 31 | SSL_CTX * | ||
| 32 | SSL_CTX_v3_new() | ||
| 33 | CODE: | ||
| 34 | @@ -1416,6 +1419,9 @@ SSL_CTX_v3_new() | ||
| 35 | OUTPUT: | ||
| 36 | RETVAL | ||
| 37 | |||
| 38 | +#endif | ||
| 39 | +#endif | ||
| 40 | + | ||
| 41 | SSL_CTX * | ||
| 42 | SSL_CTX_v23_new() | ||
| 43 | CODE: | ||
| 44 | @@ -3758,9 +3764,15 @@ SSLv2_method() | ||
| 45 | #endif | ||
| 46 | #endif | ||
| 47 | |||
| 48 | +#ifndef OPENSSL_NO_SSL3 | ||
| 49 | +#if OPENSSL_VERSION_NUMBER < 0x10002000L | ||
| 50 | + | ||
| 51 | const SSL_METHOD * | ||
| 52 | SSLv3_method() | ||
| 53 | |||
| 54 | +#endif | ||
| 55 | +#endif | ||
| 56 | + | ||
| 57 | const SSL_METHOD * | ||
| 58 | TLSv1_method() | ||
| 59 | |||
| 60 | diff --git a/t/local/41_alpn_support.t b/t/local/41_alpn_support.t | ||
| 61 | index ba984b5..87a0214 100644 | ||
| 62 | --- a/t/local/41_alpn_support.t | ||
| 63 | +++ b/t/local/41_alpn_support.t | ||
| 64 | @@ -11,7 +11,7 @@ use Config; | ||
| 65 | |||
| 66 | BEGIN { | ||
| 67 | plan skip_all => "openssl 1.0.2 required" unless Net::SSLeay::SSLeay >= 0x10002000; | ||
| 68 | - plan skip_all => "libressl not supported" if &Net::SSLeay::LIBRESSL_VERSION_NUMBER; | ||
| 69 | + plan skip_all => "libressl not supported" if defined &Net::SSLeay::LIBRESSL_VERSION_NUMBER; | ||
| 70 | plan skip_all => "fork() not supported on $^O" unless $Config{d_fork}; | ||
| 71 | } | ||
| 72 | |||
| 73 | -- | ||
| 74 | 1.9.1 | ||
| 75 | |||
diff --git a/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb index b2891518e6..cfd6f51301 100644 --- a/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb +++ b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb | |||
| @@ -19,6 +19,8 @@ RDEPENDS_${PN} += "perl-module-carp \ | |||
| 19 | " | 19 | " |
| 20 | 20 | ||
| 21 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-${PV}.tar.gz \ | 21 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-${PV}.tar.gz \ |
| 22 | file://0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch \ | ||
| 23 | file://0002-Recent-1.0.2-betas-have-dropped-the-SSLv3_method-fun.patch \ | ||
| 22 | file://run-ptest \ | 24 | file://run-ptest \ |
| 23 | " | 25 | " |
| 24 | SRC_URI[md5sum] = "19600c036e9e0bbfbf9157f083e40755" | 26 | SRC_URI[md5sum] = "19600c036e9e0bbfbf9157f083e40755" |
