From 9738cbd82ca59fdd3108462507df31f4e219af81 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Thu, 16 Dec 2021 16:25:49 -0500 Subject: Patch OpenDaylight to upgrade to latest pax-logging package Patch OpenDaylight to replace the shipped version of pax-logging - which includes log4j-core v2.14.1 - with the latest version, which includes log4j-core v2.17.1 Issue-ID: CCSDK-3556 Signed-off-by: Dan Timoney Change-Id: I3db01bf762f683807d555658610a6a0dade0504a --- opendaylight/silicon/silicon-alpine/pom.xml | 47 ++++++++++++++ .../silicon-alpine/src/main/docker/Dockerfile | 8 +++ .../main/resources/framework-4.3.2-features.xml | 74 ++++++++++++++++++++++ .../src/main/resources/startup.properties | 24 +++++++ pom.xml | 2 +- 5 files changed, 154 insertions(+), 1 deletion(-) create mode 100755 opendaylight/silicon/silicon-alpine/src/main/resources/framework-4.3.2-features.xml create mode 100755 opendaylight/silicon/silicon-alpine/src/main/resources/startup.properties diff --git a/opendaylight/silicon/silicon-alpine/pom.xml b/opendaylight/silicon/silicon-alpine/pom.xml index d1288130..51ac47b4 100644 --- a/opendaylight/silicon/silicon-alpine/pom.xml +++ b/opendaylight/silicon/silicon-alpine/pom.xml @@ -22,6 +22,9 @@ onap-karaf 0.13.5 7.3.16 + 2.0.9 + 2.0.12 + 4.3.2 1.13.4 @@ -112,6 +115,30 @@ sal-netconf-connector-${odl.netconf.version}.jar * + + org.ops4j.pax.logging + pax-logging-log4j2 + ${patch.pax.logging.version} + ${project.build.directory}/docker-stage/system/org/ops4j/pax/logging/pax-logging-log4j2/${patch.pax.logging.version} + pax-logging-log4j2-${patch.pax.logging.version}.jar + * + + + org.ops4j.pax.logging + pax-logging-logback + ${patch.pax.logging.version} + ${project.build.directory}/docker-stage/system/org/ops4j/pax/logging/pax-logging-logback/${patch.pax.logging.version} + pax-logging-logback-${patch.pax.logging.version}.jar + * + + + org.ops4j.pax.logging + pax-logging-api + ${patch.pax.logging.version} + ${project.build.directory}/docker-stage/system/org/ops4j/pax/logging/pax-logging-api/${patch.pax.logging.version} + pax-logging-api-${patch.pax.logging.version}.jar + * + false true @@ -151,6 +178,26 @@ + + copy-karaf-framework-features + + copy-resources + + validate + + ${basedir}/target/docker-stage + + + src/main/resources + + framework-${odl.karaf.framework.version}-features.xml + startup.properties + + true + + + + diff --git a/opendaylight/silicon/silicon-alpine/src/main/docker/Dockerfile b/opendaylight/silicon/silicon-alpine/src/main/docker/Dockerfile index 978a0919..19cd55f6 100644 --- a/opendaylight/silicon/silicon-alpine/src/main/docker/Dockerfile +++ b/opendaylight/silicon/silicon-alpine/src/main/docker/Dockerfile @@ -27,6 +27,14 @@ COPY system $ODL_HOME/system #COPY configure_cluster.sh configure-cluster-ipdetect.sh custom_shard_config.txt set_persistence.sh $ODL_HOME/bin/ #RUN chmod 755 $ODL_HOME/bin/configure_cluster.sh $ODL_HOME/bin/configure-cluster-ipdetect.sh $ODL_HOME/bin/set_persistence.sh $ODL_HOME/bin/custom_shard_config.txt + +# Remove vulnerable version of ops4j logging +COPY framework-${odl.karaf.framework.version}-features.xml $ODL_HOME/system/org/apache/karaf/features/framework/${odl.karaf.framework.version}/framework-${odl.karaf.framework.version}-features.xml +COPY startup.properties $ODL_HOME/etc/startup.properties +RUN rm -rf $ODL_HOME/system/org/ops4j/pax/logging/pax-logging-log4j2/${odl.pax.logging.version} +RUN rm -rf $ODL_HOME/system/org/ops4j/pax/logging/pax-logging-logback/${odl.pax.logging.version} +RUN rm -rf $ODL_HOME/system/org/ops4j/pax/logging/pax-logging-api/${odl.pax.logging.version} + # Changing ownership and permission of /opt RUN chown -R odl:odl /opt && chmod -R 755 /opt diff --git a/opendaylight/silicon/silicon-alpine/src/main/resources/framework-4.3.2-features.xml b/opendaylight/silicon/silicon-alpine/src/main/resources/framework-4.3.2-features.xml new file mode 100755 index 00000000..52bc1d40 --- /dev/null +++ b/opendaylight/silicon/silicon-alpine/src/main/resources/framework-4.3.2-features.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + diff --git a/opendaylight/silicon/silicon-alpine/src/main/resources/startup.properties b/opendaylight/silicon/silicon-alpine/src/main/resources/startup.properties new file mode 100755 index 00000000..40baf708 --- /dev/null +++ b/opendaylight/silicon/silicon-alpine/src/main/resources/startup.properties @@ -0,0 +1,24 @@ +# Bundles to be started on startup, with startlevel +mvn\:org.apache.karaf.features/org.apache.karaf.features.extension/4.3.2 = 1 +mvn\:org.ops4j.pax.url/pax-url-aether/2.6.7 = 5 +mvn\:org.ops4j.pax.logging/pax-logging-api/${patch.pax.logging.version} = 8 +mvn\:org.ops4j.pax.logging/pax-logging-log4j2/${patch.pax.logging.version} = 8 +mvn\:org.fusesource.jansi/jansi/1.18 = 8 +mvn\:org.osgi/org.osgi.util.promise/1.1.1 = 9 +mvn\:org.apache.felix/org.apache.felix.coordinator/1.0.2 = 9 +mvn\:org.apache.felix/org.apache.felix.converter/1.0.14 = 9 +mvn\:org.osgi/org.osgi.util.function/1.1.0 = 9 +mvn\:org.apache.felix/org.apache.felix.configadmin/1.9.22 = 10 +mvn\:org.apache.felix/org.apache.felix.configadmin.plugin.interpolation/1.1.2 = 11 +mvn\:org.apache.felix/org.apache.felix.configurator/1.0.14 = 11 +mvn\:org.apache.sling/org.apache.sling.commons.johnzon/1.2.6 = 11 +mvn\:org.apache.felix/org.apache.felix.cm.json/1.0.6 = 11 +mvn\:org.apache.felix/org.apache.felix.fileinstall/3.6.8 = 12 +mvn\:org.apache.karaf.features/org.apache.karaf.features.core/4.3.2 = 15 +# The following are added by opendaylight-karaf-resources +mvn\:org.osgi/org.osgi.service.event/1.4.0 = 7 +mvn\:org.apache.felix/org.apache.felix.metatype/1.2.4 = 8 +mvn\:org.opendaylight.odlparent/bcprov-framework-ext/8.1.3 = 14 +mvn\:org.opendaylight.odlparent/bcpkix-framework-ext/8.1.3 = 14 +mvn\:org.opendaylight.odlparent/logging-markers/8.1.3 = 14 +mvn\:org.apache.aries.blueprint/org.apache.aries.blueprint.core.compatibility/1.0.0 = 14 diff --git a/pom.xml b/pom.xml index a8b4e01a..2688c459 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.onap.ccsdk.parent oparent - 2.2.3 + 2.2.4 org.onap.ccsdk.distribution -- cgit 1.2.3-korg