* [PATCH] glibc: exclude child recipes from CVE scanning
@ 2019-07-16 12:47 Ross Burton
2019-07-16 13:02 ` ✗ patchtest: failure for " Patchwork
2019-07-16 17:44 ` [PATCH] " Khem Raj
0 siblings, 2 replies; 3+ messages in thread
From: Ross Burton @ 2019-07-16 12:47 UTC (permalink / raw)
To: openembedded-core
As glibc will be scanned for CVEs, we don't need to scan glibc-locale,
glibc-mtrace, and glibc-scripts which are all separate recipes for technical
reasons.
Exclude the recipes by setting CVE_PRODUCT in the recipe, instead of using the
global whitelist.
Signed-off-by: Ross Burton <ross.burton@intel.com>
---
meta/classes/cve-check.bbclass | 4 +---
meta/recipes-core/glibc/glibc-locale.inc | 3 +++
meta/recipes-core/glibc/glibc-mtrace.inc | 3 +++
meta/recipes-core/glibc/glibc-scripts.inc | 3 +++
4 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass
index 5979edf3d17..19ac48cfd49 100644
--- a/meta/classes/cve-check.bbclass
+++ b/meta/classes/cve-check.bbclass
@@ -37,9 +37,7 @@ CVE_CHECK_COPY_FILES ??= "1"
CVE_CHECK_CREATE_MANIFEST ??= "1"
# Whitelist for packages (PN)
-CVE_CHECK_PN_WHITELIST = "\
- glibc-locale \
-"
+CVE_CHECK_PN_WHITELIST ?= ""
# Whitelist for CVE and version of package. If a CVE is found then the PV is
# compared with the version list, and if found the CVE is considered
diff --git a/meta/recipes-core/glibc/glibc-locale.inc b/meta/recipes-core/glibc/glibc-locale.inc
index bf5eaee9380..ef06389ff94 100644
--- a/meta/recipes-core/glibc/glibc-locale.inc
+++ b/meta/recipes-core/glibc/glibc-locale.inc
@@ -98,3 +98,6 @@ do_install() {
inherit libc-package
BBCLASSEXTEND = "nativesdk"
+
+# Don't scan for CVEs as glibc will be scanned
+CVE_PRODUCT = ""
diff --git a/meta/recipes-core/glibc/glibc-mtrace.inc b/meta/recipes-core/glibc/glibc-mtrace.inc
index d703c14bdc1..ef9d60ec239 100644
--- a/meta/recipes-core/glibc/glibc-mtrace.inc
+++ b/meta/recipes-core/glibc/glibc-mtrace.inc
@@ -11,3 +11,6 @@ do_install() {
install -d -m 0755 ${D}${bindir}
install -m 0755 ${SRC}/mtrace ${D}${bindir}/
}
+
+# Don't scan for CVEs as glibc will be scanned
+CVE_PRODUCT = ""
diff --git a/meta/recipes-core/glibc/glibc-scripts.inc b/meta/recipes-core/glibc/glibc-scripts.inc
index 2a2b41507ed..14a14e45126 100644
--- a/meta/recipes-core/glibc/glibc-scripts.inc
+++ b/meta/recipes-core/glibc/glibc-scripts.inc
@@ -18,3 +18,6 @@ do_install() {
# sotruss script requires sotruss-lib.so (given by libsotruss package),
# to produce trace of the library calls.
RDEPENDS_${PN} += "libsotruss"
+
+# Don't scan for CVEs as glibc will be scanned
+CVE_PRODUCT = ""
--
2.20.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* ✗ patchtest: failure for glibc: exclude child recipes from CVE scanning
2019-07-16 12:47 [PATCH] glibc: exclude child recipes from CVE scanning Ross Burton
@ 2019-07-16 13:02 ` Patchwork
2019-07-16 17:44 ` [PATCH] " Khem Raj
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-07-16 13:02 UTC (permalink / raw)
To: Ross Burton; +Cc: openembedded-core
== Series Details ==
Series: glibc: exclude child recipes from CVE scanning
Revision: 1
URL : https://patchwork.openembedded.org/series/18698/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:
* Issue Series does not apply on top of target branch [test_series_merge_on_head]
Suggested fix Rebase your series on top of targeted branch
Targeted branch master (currently at bbbb985808)
If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).
---
Guidelines: https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] glibc: exclude child recipes from CVE scanning
2019-07-16 12:47 [PATCH] glibc: exclude child recipes from CVE scanning Ross Burton
2019-07-16 13:02 ` ✗ patchtest: failure for " Patchwork
@ 2019-07-16 17:44 ` Khem Raj
1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2019-07-16 17:44 UTC (permalink / raw)
To: Ross Burton; +Cc: Patches and discussions about the oe-core layer
seems good to me.
On Tue, Jul 16, 2019 at 5:47 AM Ross Burton <ross.burton@intel.com> wrote:
>
> As glibc will be scanned for CVEs, we don't need to scan glibc-locale,
> glibc-mtrace, and glibc-scripts which are all separate recipes for technical
> reasons.
>
> Exclude the recipes by setting CVE_PRODUCT in the recipe, instead of using the
> global whitelist.
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
> meta/classes/cve-check.bbclass | 4 +---
> meta/recipes-core/glibc/glibc-locale.inc | 3 +++
> meta/recipes-core/glibc/glibc-mtrace.inc | 3 +++
> meta/recipes-core/glibc/glibc-scripts.inc | 3 +++
> 4 files changed, 10 insertions(+), 3 deletions(-)
>
> diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass
> index 5979edf3d17..19ac48cfd49 100644
> --- a/meta/classes/cve-check.bbclass
> +++ b/meta/classes/cve-check.bbclass
> @@ -37,9 +37,7 @@ CVE_CHECK_COPY_FILES ??= "1"
> CVE_CHECK_CREATE_MANIFEST ??= "1"
>
> # Whitelist for packages (PN)
> -CVE_CHECK_PN_WHITELIST = "\
> - glibc-locale \
> -"
> +CVE_CHECK_PN_WHITELIST ?= ""
>
> # Whitelist for CVE and version of package. If a CVE is found then the PV is
> # compared with the version list, and if found the CVE is considered
> diff --git a/meta/recipes-core/glibc/glibc-locale.inc b/meta/recipes-core/glibc/glibc-locale.inc
> index bf5eaee9380..ef06389ff94 100644
> --- a/meta/recipes-core/glibc/glibc-locale.inc
> +++ b/meta/recipes-core/glibc/glibc-locale.inc
> @@ -98,3 +98,6 @@ do_install() {
> inherit libc-package
>
> BBCLASSEXTEND = "nativesdk"
> +
> +# Don't scan for CVEs as glibc will be scanned
> +CVE_PRODUCT = ""
> diff --git a/meta/recipes-core/glibc/glibc-mtrace.inc b/meta/recipes-core/glibc/glibc-mtrace.inc
> index d703c14bdc1..ef9d60ec239 100644
> --- a/meta/recipes-core/glibc/glibc-mtrace.inc
> +++ b/meta/recipes-core/glibc/glibc-mtrace.inc
> @@ -11,3 +11,6 @@ do_install() {
> install -d -m 0755 ${D}${bindir}
> install -m 0755 ${SRC}/mtrace ${D}${bindir}/
> }
> +
> +# Don't scan for CVEs as glibc will be scanned
> +CVE_PRODUCT = ""
> diff --git a/meta/recipes-core/glibc/glibc-scripts.inc b/meta/recipes-core/glibc/glibc-scripts.inc
> index 2a2b41507ed..14a14e45126 100644
> --- a/meta/recipes-core/glibc/glibc-scripts.inc
> +++ b/meta/recipes-core/glibc/glibc-scripts.inc
> @@ -18,3 +18,6 @@ do_install() {
> # sotruss script requires sotruss-lib.so (given by libsotruss package),
> # to produce trace of the library calls.
> RDEPENDS_${PN} += "libsotruss"
> +
> +# Don't scan for CVEs as glibc will be scanned
> +CVE_PRODUCT = ""
> --
> 2.20.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-07-16 17:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-16 12:47 [PATCH] glibc: exclude child recipes from CVE scanning Ross Burton
2019-07-16 13:02 ` ✗ patchtest: failure for " Patchwork
2019-07-16 17:44 ` [PATCH] " Khem Raj
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox