Re: Fedora 36 / uninative GLIBCXX 3.4.30
Federico Pellegrin
Hello, Thanks for the feedback! Indeed the check is only on the "ldd --version" output which doesn't account for the libstdc++ and that explains it. As compared to Ubuntu 22.04, Fedora 36 actually has also GCC 12.0.1 as default compiler. As Martin mentions not sure if there is an easy portable way. He mentions objdump which is for sure effective but maybe complicated and I feel like relies on the filename being guessed (well should be known, the main link at least) and feels a bit overcomplicated (if we need to go that low level in case I'd suggest just to just use "strings" and grep there instead). Would relying just on the filename be too shaky? I can see here https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html in point 3 of "History" that it would seem quite well defined. Actually I guess if we would just compare the system libstdc++.so.X.Y.Z (which we may be easily able to get it from the libstdc++.so link) to uninative one maybe would be enough to determine it is newer? Hardcoding the path to libstdc++.so (as ie. /usr/lib64/libstdc++.so) is probably not nice (ie. for custom toolchains), so maybe we can ask g++ (-print-search-dirs, libraries section) and look in those? Then not sure if there are some distros/installs that do the insane-isy thing of just installing directly the .so stripping the versions from the name, hopefully not. I'm not sure using anything from g++ -dumpspecs would be viable if as Martin mentions you may have (ie. ubuntu-2204) a version with new stdc++ but older g++. Federico Il giorno dom 3 apr 2022 alle ore 16:52 Martin Jansa <martin.jansa@...> ha scritto:
|
|
[meta-security][PATCH] samhain: update to 4.4.7
This fixes musl builds too.
Signed-off-by: Armin Kuster <akuster808@...> --- recipes-ids/samhain/samhain.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-ids/samhain/samhain.inc b/recipes-ids/samhain/samhain.inc index d64cddb..5c1d6f5 100644 --- a/recipes-ids/samhain/samhain.inc +++ b/recipes-ids/samhain/samhain.inc @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.la-samhna.de/samhain/" LICENSE = "GPL-2.0-or-later" LIC_FILES_CHKSUM = "file://LICENSE;md5=8ca43cbc842c2336e835926c2166c28b" -PV = "4.4.6" +PV = "4.4.7" SRC_URI = "https://la-samhna.de/archive/samhain_signed-${PV}.tar.gz \ file://${INITSCRIPT_NAME}.init \ @@ -21,7 +21,7 @@ SRC_URI = "https://la-samhna.de/archive/samhain_signed-${PV}.tar.gz \ file://samhain-fix-initializer-element-is-not-constant.patch \ " -SRC_URI[sha256sum] = "0b511a184066759cd864f6d15fe941ed3fe60f0cdc886dab68daa191d567de24" +SRC_URI[sha256sum] = "0aa978accb635000c2d9170f307bff8a95836f8ec01615a53dbd9c2af9564d44" UPSTREAM_CHECK_URI = "https://www.la-samhna.de/samhain/archive.html" UPSTREAM_CHECK_REGEX = "samhain_signed-(?P<pver>(\d+(\.\d+)+))\.tar" -- 2.25.1 |
|
[meta-security][PATCH 2/2] linux-yocto_security.inc: add lkrg kfrags
Signed-off-by: Armin Kuster <akuster808@...>
--- recipes-kernel/linux/files/lkrg.cfg | 4 ++++ recipes-kernel/linux/files/lkrg.scc | 5 +++++ recipes-kernel/linux/linux-yocto_security.inc | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 recipes-kernel/linux/files/lkrg.cfg create mode 100644 recipes-kernel/linux/files/lkrg.scc diff --git a/recipes-kernel/linux/files/lkrg.cfg b/recipes-kernel/linux/files/lkrg.cfg new file mode 100644 index 0000000..e02bf76 --- /dev/null +++ b/recipes-kernel/linux/files/lkrg.cfg @@ -0,0 +1,4 @@ +CONFIG_DEBUG_KERNEL=y +CONFIG_KALLSYMS_ALL=y +CONFIG_JUMP_LABEL=y +CONFIG_DEBUG_SECTION_MISMATCH=y diff --git a/recipes-kernel/linux/files/lkrg.scc b/recipes-kernel/linux/files/lkrg.scc new file mode 100644 index 0000000..83397f8 --- /dev/null +++ b/recipes-kernel/linux/files/lkrg.scc @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: MIT +define KFEATURE_DESCRIPTION "Enable Support for LKRG" +define KFEATURE_COMPATIBILITY board + +kconf hardware lkrg.cfg diff --git a/recipes-kernel/linux/linux-yocto_security.inc b/recipes-kernel/linux/linux-yocto_security.inc index defca57..b79af80 100644 --- a/recipes-kernel/linux/linux-yocto_security.inc +++ b/recipes-kernel/linux/linux-yocto_security.inc @@ -1,3 +1,6 @@ +FILESEXTRAPATHS:prepend := "${THISDIR}/files:" + KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "apparmor", " features/apparmor/apparmor.scc", "" ,d)}" KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "smack", " features/smack/smack.scc", "" ,d)}" KERNEL_FEATURES:append = " ${@bb.utils.contains("IMAGE_CLASSES", "dm-verity-img", " features/device-mapper/dm-verity.scc", "" ,d)}" +SRC_URI += " ${@bb.utils.contains("DISTRO_FEATURES", "lkrg", "file://lkrg.scc", "" ,d)}" -- 2.25.1 |
|
[meta-security][PATCH 1/2] lkrg-module: covert to git fetcher
This allows to track tip easier.
refresh patch Fix LICENSE to match SPDX format Signed-off-by: Armin Kuster <akuster808@...> --- recipes-kernel/lkrg/files/makefile_cleanup.patch | 6 +++--- recipes-kernel/lkrg/lkrg-module_0.9.2.bb | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/recipes-kernel/lkrg/files/makefile_cleanup.patch b/recipes-kernel/lkrg/files/makefile_cleanup.patch index a4db2d9..799b1a6 100644 --- a/recipes-kernel/lkrg/files/makefile_cleanup.patch +++ b/recipes-kernel/lkrg/files/makefile_cleanup.patch @@ -4,10 +4,10 @@ This needs more work. Its my starting point. Signed-off-by: Armin Kuster <akuster808@...> -Index: lkrg-0.9.2/Makefile +Index: git/Makefile =================================================================== ---- lkrg-0.9.2.orig/Makefile -+++ lkrg-0.9.2/Makefile +--- git.orig/Makefile ++++ git/Makefile @@ -4,28 +4,10 @@ # Author: # - Adam 'pi3' Zabrocki (http://pi3.com.pl) diff --git a/recipes-kernel/lkrg/lkrg-module_0.9.2.bb b/recipes-kernel/lkrg/lkrg-module_0.9.2.bb index e055fbe..85f7d44 100644 --- a/recipes-kernel/lkrg/lkrg-module_0.9.2.bb +++ b/recipes-kernel/lkrg/lkrg-module_0.9.2.bb @@ -3,18 +3,18 @@ DESCRIPTION="LKRG performs runtime integrity checking of the Linux \ kernel and detection of security vulnerability exploits against the kernel." SECTION = "security" HOMEPAGE = "https://www.openwall.com/lkrg/" -LICENSE = "GPLv2" +LICENSE = "GPL-2.0-only" LIC_FILES_CHKSUM = "file://LICENSE;md5=5105ead24b08a32954f34cbaa7112432" DEPENDS = "virtual/kernel elfutils" -SRC_URI = "https://download.openwall.net/pub/projects/lkrg/lkrg-${PV}.tar.gz \ - file://makefile_cleanup.patch " +SRCREV = "43db5f19fca259feb1962f6db33382348cbc8320" -SRC_URI[sha256sum] = "c2b501c47089cce3ec3114cef6520b73aa3a098836183186b9bb5e097c99ac27" +SRC_URI = "git://github.com/lkrg-org/lkrg.git;protocol=https;branch=main \ + file://makefile_cleanup.patch " -S = "${WORKDIR}/lkrg-${PV}" +S = "${WORKDIR}/git" inherit module kernel-module-split -- 2.25.1 |
|
Re: Fedora 36 / uninative GLIBCXX 3.4.30
Martin Jansa
FWIW: the same is happening now with ubuntu-22.04 where libstdc++6 package is now built from gcc-12 sources (even when gcc itself still defaults to gcc-11). I was trying to add the check in uninative.bbclass, but haven't found easy portable way to detect the version from libstdc++.so.6 (other than parsing objdump -x /full/path/to/libstdc++.so.6 output). On Sun, Apr 3, 2022 at 12:44 PM Richard Purdie <richard.purdie@...> wrote: On Sun, 2022-04-03 at 09:12 +0200, Federico Pellegrin wrote: |
|
Re: Fedora 36 / uninative GLIBCXX 3.4.30
Richard Purdie
On Sun, 2022-04-03 at 09:12 +0200, Federico Pellegrin wrote:
I've been playing around building a Yocto imagine based on kirkstone/master onThanks for reporting it. I think to generate the newer version we need gcc 12 which is still in pre-release. We generate the uninative tarball using our own builds on the autobuilder so until we have gcc 12 recipes there, we can't generate that. Once gcc 12 is out, we will release a new uninative (assuming we can update our recipes). I'd like to think the checks in uninative would have noticed the mismatch, we do have some code there to detect libc version but perhaps not the CXX pieces so I'd welcome help in adding something for that. Cheers, Richard |
|
Fedora 36 / uninative GLIBCXX 3.4.30
Federico Pellegrin
Hello, I've been playing around building a Yocto imagine based on kirkstone/master on the just released Fedora 36 beta test image. (just to give a few bits more details: builds a MX8X image, works perfectly fine with Fedora 34 and 35 since quite some time) The first and most obvious thing I've found out is that it is based on a newer version of glibcxx (3.4.30) when the very latest uninative available (as far as I could see, apologies if I'm wrong) is on 3.4.29, so at some point this will break the build (when pzstd is called). Of course for the time being I just disabled uninative and the build is going on (will report of course should I find something else). I'm not sure (still checking this) if that should have happened automatically, but there was actually no warning in that sense (maybe because is GLIBCXX and not GLIBC itself?) But the question is: should I try to contribute that tarball (I will search for details, but if there is any good reference more than welcome!) or is it something that is likely done by the core team? Of course FC36 is still a test distro so there is no surprise it broke, but as we are close to Kirkstone release and possibly other distros will get the same upgrade, I guess it could be great if we may fix this before that deadline. Many thanks! Federico |
|
Re: installed and not shipped files. [installed-vs-shipped]
Konstantin Kletschke
On Sat, Apr 02, 2022 at 12:13:26PM +0200, Quentin Schulz wrote:
FILES variables is compatible with glob from Python so that should work but that's really the first time I see this, usually it's just the directory or dir/*. Learned something new today :):-) Are you on honister (or master/soon kirkstone) release? If so, it's FILES:${PN} and not FILES_${PN}.That's it! I wasn't aware of this change, could have searched for another couple of days! Thank. you. very. much. Kind Regards Konsti -- INSIDE M2M GmbH Konstantin Kletschke Berenbosteler Straße 76 B 30823 Garbsen Telefon: +49 (0) 5137 90950136 Mobil: +49 (0) 151 15256238 Fax: +49 (0) 5137 9095010 konstantin.kletschke@... http://www.inside-m2m.de Geschäftsführung: Michael Emmert, Ingo Haase, Dr. Fred Könemann, Derek Uhlig HRB: 111204, AG Hannover |
|
Re: Specified SDKMACHINE value is not valid
On Sat, Apr 2, 2022 at 9:37 AM jchludzinski <jchludzinski@...> wrote:
Oh I see. we do support aarch64 as build host, so if you are trying 64bit OS on rpi then it should work although, rpi4 may not have enough muscle to build, perhaps using SSD with rpi4 might help a bit So find out if rpi4 is running in 64bit mode if not then building on armv7 might have issues. in anycase try setting SDKMACHINE = "i686" this should get you past this particular error, there might be more after it. Fixed when x11 is not in DISTRO_FEATURES: $ bitbake wxwidgets ERROR: Nothing PROVIDES 'wxwidgets' wxwidgets was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES) On 2022-04-02 12:15, Khem Raj wrote:On Sat, Apr 2, 2022 at 1:47 AM jchludzinski <jchludzinski@...>-- |
|
Re: Specified SDKMACHINE value is not valid
jchludzinski
I’m actually trying this on an RP4 running Raspbian.
toggle quoted message
Show quoted text
On 2022-04-02 12:15, Khem Raj wrote:
On Sat, Apr 2, 2022 at 1:47 AM jchludzinski <jchludzinski@...> wrote:$ git clone git://git.yoctoproject.org/poky.gitare you on a x86_64 host? Secondly try to uncomment SDKMACHINE setting --
NULL |
|
Re: Specified SDKMACHINE value is not valid
On Sat, Apr 2, 2022 at 1:47 AM jchludzinski <jchludzinski@...> wrote:
are you on a x86_64 host? Secondly try to uncomment SDKMACHINE setting in local.conf and see if it helps. Also check if your default shell is bash or dash.
|
|
Re: installed and not shipped files. [installed-vs-shipped]
Quentin Schulz
Hi Konstantin,
On April 1, 2022 2:50:13 PM GMT+02:00, Konstantin Kletschke <konstantin.kletschke@...> wrote: I am currently trying to extend the meta-java framework with anFILES variables is compatible with glob from Python so that should work but that's really the first time I see this, usually it's just the directory or dir/*. Learned something new today :) ${JAVA_HOME}/modules \Are you on honister (or master/soon kirkstone) release? If so, it's FILES:${PN} and not FILES_${PN}. Try to avoid using hardcoded names instead of ${PN} because it breaks multilib (probably not a problem for many, I can concede :) ). Make sure that openjdk-18 is actually a valid package name too by running bitbake -e <recipe-name> | grep "^PACKAGES=". FILES_openjdk-18=" /usr/lib/jvm/openjdk-18/bin/[a-z]* /usr/lib/jvm/openjdk-18/lib/[a-z]* /usr/lib/jvm/openjdk-18/modules /usr/lib/jvm/openjdk-18/release /usr/lib/jvm/openjdk-18/conf /usr/lib/jvm/openjdk-18/include /usr/lib/jvm/openjdk-18/THE_D "To quote yourself: ${JAVA_HOME} expands to /usr/lib/jvm/openjdk-18Cheers, Quentin |
|
Building a core-image-weston with custom app using rust and gtk3
atch.cpp@...
Hello, I'm having real difficulties in compiling a Rust app that uses gtk3 (this app successfully builds and runs on my host machine). I'm on the master branch of poky, using rust 1.59. Is this still untested and unstabilized feature, that is gtk-rs bindings in yocto? Thank you -- |
|
Re: Specified SDKMACHINE value is not valid
jchludzinski
$ git clone git://git.yoctoproject.org/poky.git
$ cd ./poky
$ git checkout yocto-3.4.2
$ cd ..
$ source ./poky/oe-init-build-env
$ cd ./build
$ time bitbake core-image-minimal
...
ERROR: OE-core's config sanity checker detected a potential misconfiguration.
Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
Following is the list of potential problems / advisories:
Specified SDKMACHINE value is not valid
Summary: There was 1 WARNING message shown.
Summary: There was 1 ERROR message shown, returning a non-zero exit code.
________________________________________________________
Executed in 3.92 secs fish external
usr time 1.07 secs 9.77 millis 1.06 secs
sys time 0.18 secs 2.96 millis 0.17 secs
On 2022-04-01 18:09, Khem Raj wrote:
On Fri, Apr 1, 2022 at 2:02 PM jchludzinski <jchludzinski@...> wrote: |
|
[meta-selinux][PATCH 11/11] checkpolicy: Update LICENSE variable
Yu, Mingli
From: Mingli Yu <mingli.yu@...>
Update LICENSE variable to use SPDX license identifiers. Signed-off-by: Mingli Yu <mingli.yu@...> --- recipes-security/selinux/checkpolicy_3.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/selinux/checkpolicy_3.3.bb b/recipes-security/selinux/checkpolicy_3.3.bb index 99ac470..ad90cc2 100644 --- a/recipes-security/selinux/checkpolicy_3.3.bb +++ b/recipes-security/selinux/checkpolicy_3.3.bb @@ -6,7 +6,7 @@ binary policy. checkpolicy uses the static libsepol since it deals \ with low level details of the policy that have not been \ encapsulated/abstracted by a proper shared library interface." SECTION = "base" -LICENSE = "GPLv2+" +LICENSE = "GPL-2.0-or-later" LIC_FILES_CHKSUM = "file://${S}/COPYING;md5=393a5ca445f6965873eca0259a17f833" require selinux_common.inc -- 2.25.1 |
|
[meta-selinux][PATCH 10/11] selinux-sandbox: Update LICENSE variable
Yu, Mingli
From: Mingli Yu <mingli.yu@...>
Update LICENSE variable to use SPDX license identifiers. Signed-off-by: Mingli Yu <mingli.yu@...> --- recipes-security/selinux/selinux-sandbox_3.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/selinux/selinux-sandbox_3.3.bb b/recipes-security/selinux/selinux-sandbox_3.3.bb index a20982c..cc9baad 100644 --- a/recipes-security/selinux/selinux-sandbox_3.3.bb +++ b/recipes-security/selinux/selinux-sandbox_3.3.bb @@ -4,7 +4,7 @@ Run application within a tightly confined SELinux domain. The default \ sandbox domain only allows applications the ability to read and write \ stdin, stdout and any other file descriptors handed to it." SECTION = "base" -LICENSE = "GPLv2+" +LICENSE = "GPL-2.0-or-later" LIC_FILES_CHKSUM = "file://${S}/COPYING;md5=393a5ca445f6965873eca0259a17f833" require selinux_common.inc -- 2.25.1 |
|
[meta-selinux][PATCH 09/11] setools: Update LICENSE variable
Yu, Mingli
From: Mingli Yu <mingli.yu@...>
Update LICENSE variable to use SPDX license identifiers. Signed-off-by: Mingli Yu <mingli.yu@...> --- recipes-security/setools/setools_4.4.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/setools/setools_4.4.0.bb b/recipes-security/setools/setools_4.4.0.bb index b78af36..f1557b1 100644 --- a/recipes-security/setools/setools_4.4.0.bb +++ b/recipes-security/setools/setools_4.4.0.bb @@ -6,7 +6,7 @@ libraries designed to facilitate SELinux policy analysis. \ This meta-package depends upon the main packages necessary to run \ SETools." SECTION = "base" -LICENSE = "GPLv2 & LGPLv2.1" +LICENSE = "GPL-2.0-only & LGPL-2.1-only" S = "${WORKDIR}/git" SRC_URI = "git://github.com/SELinuxProject/${BPN}.git;branch=4.4;protocol=https \ -- 2.25.1 |
|
[meta-selinux][PATCH 08/11] policycoreutils: Update LICENSE variable
Yu, Mingli
From: Mingli Yu <mingli.yu@...>
Update LICENSE variable to use SPDX license identifiers. Signed-off-by: Mingli Yu <mingli.yu@...> --- recipes-security/selinux/policycoreutils_3.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/selinux/policycoreutils_3.3.bb b/recipes-security/selinux/policycoreutils_3.3.bb index 04f8ef7..552d354 100644 --- a/recipes-security/selinux/policycoreutils_3.3.bb +++ b/recipes-security/selinux/policycoreutils_3.3.bb @@ -5,7 +5,7 @@ load_policy to load policies, setfiles to label filesystems, newrole \ to switch roles, and run_init to run /etc/init.d scripts in the proper \ context." SECTION = "base" -LICENSE = "GPLv2+" +LICENSE = "GPL-2.0-or-later" LIC_FILES_CHKSUM = "file://${S}/COPYING;md5=393a5ca445f6965873eca0259a17f833" require selinux_common.inc -- 2.25.1 |
|
[meta-selinux][PATCH 07/11] mcstrans: Update LICENSE variable
Yu, Mingli
From: Mingli Yu <mingli.yu@...>
Update LICENSE variable to use SPDX license identifiers. Signed-off-by: Mingli Yu <mingli.yu@...> --- recipes-security/selinux/mcstrans_3.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/selinux/mcstrans_3.3.bb b/recipes-security/selinux/mcstrans_3.3.bb index 4d99e18..cd8780b 100644 --- a/recipes-security/selinux/mcstrans_3.3.bb +++ b/recipes-security/selinux/mcstrans_3.3.bb @@ -4,7 +4,7 @@ DESCRIPTION = "\ mcstrans provides an translation daemon to translate SELinux categories \ from internal representations to user defined representation." SECTION = "base" -LICENSE = "GPLv2+" +LICENSE = "GPL-2.0-or-later" LIC_FILES_CHKSUM = "file://${S}/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" require selinux_common.inc -- 2.25.1 |
|
[meta-selinux][PATCH 06/11] libsemanage: Update LICENSE variable
Yu, Mingli
From: Mingli Yu <mingli.yu@...>
Update LICENSE variable to use SPDX license identifiers. Signed-off-by: Mingli Yu <mingli.yu@...> --- recipes-security/selinux/libsemanage_3.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/selinux/libsemanage_3.3.bb b/recipes-security/selinux/libsemanage_3.3.bb index 0a6ff95..b17eb68 100644 --- a/recipes-security/selinux/libsemanage_3.3.bb +++ b/recipes-security/selinux/libsemanage_3.3.bb @@ -4,7 +4,7 @@ It is used by checkpolicy (the policy compiler) and similar tools, as well \ as by programs like load_policy that need to perform specific transformations \ on binary policies such as customizing policy boolean settings." SECTION = "base" -LICENSE = "LGPLv2.1+" +LICENSE = "LGPL-2.1-or-later" LIC_FILES_CHKSUM = "file://${S}/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343" require selinux_common.inc -- 2.25.1 |
|