summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libssh/libssh_0.11.2.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-07-07 17:06:35 +0800
committerKhem Raj <raj.khem@gmail.com>2025-07-08 23:40:29 -0700
commitac8a50c92de1e70296103c6388508a9cbdf1cb01 (patch)
tree9360f36f6b097f6ac53d2d15572845d516c3f39d /meta-oe/recipes-support/libssh/libssh_0.11.2.bb
parentfe75dbf71f43f1c62b1e341b946a9cc4803a9ac9 (diff)
downloadmeta-openembedded-ac8a50c92de1e70296103c6388508a9cbdf1cb01.tar.gz
libssh: upgrade 0.11.1 -> 0.11.2
* Security: * CVE-2025-4877 - Write beyond bounds in binary to base64 conversion * CVE-2025-4878 - Use of uninitialized variable in privatekey_from_file() * CVE-2025-5318 - Likely read beyond bounds in sftp server handle management * CVE-2025-5351 - Double free in functions exporting keys * CVE-2025-5372 - ssh_kdf() returns a success code on certain failures * CVE-2025-5449 - Likely read beyond bounds in sftp server message decoding * CVE-2025-5987 - Invalid return code for chacha20 poly1305 with OpenSSL * Compatibility * Fixed compatibility with CPM.cmake * Compatibility with OpenSSH 10.0 * Tests compatibility with new Dropbear releases * Removed p11-kit remoting from the pkcs11 testsuite * Bugfixes * Implement missing packet filter for DH GEX * Properly process the SSH2_MSG_DEBUG message * Allow escaping quotes in quoted arguments to ssh configuration * Do not fail with unknown match keywords in ssh configuration * Process packets before selecting signature algorithm during authentication * Do not fail hard when the SFTP status message is not sent by noncompliant servers Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libssh/libssh_0.11.2.bb')
-rw-r--r--meta-oe/recipes-support/libssh/libssh_0.11.2.bb49
1 files changed, 49 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libssh/libssh_0.11.2.bb b/meta-oe/recipes-support/libssh/libssh_0.11.2.bb
new file mode 100644
index 0000000000..b50177ab9d
--- /dev/null
+++ b/meta-oe/recipes-support/libssh/libssh_0.11.2.bb
@@ -0,0 +1,49 @@
1SUMMARY = "Multiplatform C library implementing the SSHv2 and SSHv1 protocol"
2HOMEPAGE = "http://www.libssh.org"
3SECTION = "libs"
4LICENSE = "LGPL-2.1-only"
5LIC_FILES_CHKSUM = "file://COPYING;md5=dabb4958b830e5df11d2b0ed8ea255a0"
6
7DEPENDS = "zlib openssl"
8
9SRC_URI = "git://git.libssh.org/projects/libssh.git;protocol=https;branch=stable-0.11;tag=${BPN}-${PV} \
10 file://0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch \
11 file://run-ptest \
12 "
13
14SRC_URI:append:toolchain-clang = " file://0001-CompilerChecks.cmake-drop-Wunused-variable-flag.patch"
15
16SRCREV = "dff6c0821ed54f6fbf5b755af43f54cbb723b1b1"
17
18
19inherit cmake ptest
20
21PACKAGECONFIG ??= "gcrypt ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
22PACKAGECONFIG[gssapi] = "-DWITH_GSSAPI=1, -DWITH_GSSAPI=0, krb5, "
23PACKAGECONFIG[gcrypt] = "-DWITH_GCRYPT=1, -DWITH_GCRYPT=0, libgcrypt, "
24PACKAGECONFIG[tests] = "-DUNIT_TESTING=1, -DUNIT_TESTING=0, cmocka"
25
26ARM_INSTRUCTION_SET:armv5 = "arm"
27
28EXTRA_OECMAKE = " \
29 -DWITH_PCAP=1 \
30 -DWITH_SFTP=1 \
31 -DWITH_ZLIB=1 \
32 -DWITH_EXAMPLES=0 \
33 "
34
35do_compile:prepend () {
36 if [ ${PTEST_ENABLED} = "1" ]; then
37 sed -i -e 's|${B}|${PTEST_PATH}|g' ${B}/config.h
38 sed -i -e 's|${S}|${PTEST_PATH}|g' ${B}/config.h
39 fi
40}
41
42do_install_ptest () {
43 install -d ${D}${PTEST_PATH}/tests
44 cp -f ${B}/tests/unittests/torture_* ${D}${PTEST_PATH}/tests/
45 install -d ${D}${PTEST_PATH}/tests/unittests
46 cp -f ${S}/tests/unittests/hello*.sh ${D}${PTEST_PATH}/tests/unittests/
47}
48
49BBCLASSEXTEND = "native nativesdk"