diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-04-18 22:32:54 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-04-20 08:12:16 +0100 |
commit | 06f4699036f453f5c942599466054580c4389ead (patch) | |
tree | 951650fe0c6333b31ef190c4de171274335dc006 /meta/recipes-connectivity/openssh | |
parent | a31792eb283c214d0e168f072f544e84ad895387 (diff) | |
download | poky-06f4699036f453f5c942599466054580c4389ead.tar.gz |
openssh: disable ciphers not supported by OpenSSL DES
While compiling openssl with option `no-des', it caused the openssh
build failure
...
cipher.c:85:41: error: 'EVP_des_ede3_cbc' undeclared here (not in a function);
...
OpenSSL configured that way defines OPENSSL_NO_DES to disable des
(From OE-Core rev: 08a5cda85594fca8b352841a26131bfac39c8417)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssh')
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh/disable-ciphers-not-supported-by-OpenSSL-DES.patch | 39 | ||||
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh_7.6p1.bb | 1 |
2 files changed, 40 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh/disable-ciphers-not-supported-by-OpenSSL-DES.patch b/meta/recipes-connectivity/openssh/openssh/disable-ciphers-not-supported-by-OpenSSL-DES.patch new file mode 100644 index 0000000000..8a2d1a0a7c --- /dev/null +++ b/meta/recipes-connectivity/openssh/openssh/disable-ciphers-not-supported-by-OpenSSL-DES.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | From 265eaab8b39d8d8721224a48eefed5bf1696d353 Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Wed, 18 Apr 2018 21:58:32 +0800 | ||
4 | Subject: [PATCH] disable ciphers not supported by OpenSSL DES | ||
5 | |||
6 | While compiling openssl with option `no-des', it caused the openssh | ||
7 | build failure | ||
8 | ... | ||
9 | cipher.c:85:41: error: 'EVP_des_ede3_cbc' undeclared here (not in a function); | ||
10 | ... | ||
11 | |||
12 | OpenSSL configured that way defines OPENSSL_NO_DES to disable des | ||
13 | |||
14 | Suggested by dtucker@ | ||
15 | |||
16 | Upstream-Status: Submitted [openssh-unix-dev@mindrot.org] | ||
17 | |||
18 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
19 | --- | ||
20 | cipher.c | 2 ++ | ||
21 | 1 file changed, 2 insertions(+) | ||
22 | |||
23 | diff --git a/cipher.c b/cipher.c | ||
24 | index c3cd5dc..86558e1 100644 | ||
25 | --- a/cipher.c | ||
26 | +++ b/cipher.c | ||
27 | @@ -82,7 +82,9 @@ struct sshcipher { | ||
28 | |||
29 | static const struct sshcipher ciphers[] = { | ||
30 | #ifdef WITH_OPENSSL | ||
31 | +#ifndef OPENSSL_NO_DES | ||
32 | { "3des-cbc", 8, 24, 0, 0, CFLAG_CBC, EVP_des_ede3_cbc }, | ||
33 | +#endif | ||
34 | { "aes128-cbc", 16, 16, 0, 0, CFLAG_CBC, EVP_aes_128_cbc }, | ||
35 | { "aes192-cbc", 16, 24, 0, 0, CFLAG_CBC, EVP_aes_192_cbc }, | ||
36 | { "aes256-cbc", 16, 32, 0, 0, CFLAG_CBC, EVP_aes_256_cbc }, | ||
37 | -- | ||
38 | 2.7.4 | ||
39 | |||
diff --git a/meta/recipes-connectivity/openssh/openssh_7.6p1.bb b/meta/recipes-connectivity/openssh/openssh_7.6p1.bb index a2288dfe08..e11e8d7749 100644 --- a/meta/recipes-connectivity/openssh/openssh_7.6p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_7.6p1.bb | |||
@@ -25,6 +25,7 @@ SRC_URI = "http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${PV}.tar | |||
25 | file://fix-potential-signed-overflow-in-pointer-arithmatic.patch \ | 25 | file://fix-potential-signed-overflow-in-pointer-arithmatic.patch \ |
26 | file://sshd_check_keys \ | 26 | file://sshd_check_keys \ |
27 | file://add-test-support-for-busybox.patch \ | 27 | file://add-test-support-for-busybox.patch \ |
28 | file://disable-ciphers-not-supported-by-OpenSSL-DES.patch \ | ||
28 | " | 29 | " |
29 | 30 | ||
30 | PAM_SRC_URI = "file://sshd" | 31 | PAM_SRC_URI = "file://sshd" |