Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 2. Applying Hotfix Patch to Fuse on Apache Karaf
2.1. Patching Features and Bundles
Patches are ZIP archives that contain the updated versions of files present in Fuse on Apache Karaf installation. These include:
- Bundles: These are the most common and in the simplest case, hotfix patch may include single bundle.
- 
						Configuration files and scripts that are present respectively in $FUSE_HOME/etcand$FUSE_HOME/bindirectories.
- 
						Libraries that are not ordinary bundles and reside in $FUSE_HOME/libdirectory.
- 
						Feature definition changes: Normally Karaf features are included in descriptors available in the $FUSE_HOME/systemdirectory, but hotfix patches do not change these files. Instead, hot fix patch may alter feature override file which is$FUSE_HOME/etc/org.apache.karaf.features.xml. This allows you to alter feature definitions in hotfix manner by upgrading given feature’s bundles or even make given feature use additional bundle.
Difference between Upgrading and Hotfix Patches
- Hotfix Patch: A hotfix patch contains fixes for only one or more critical bugs. These are intended to be applied on top of your current Red Hat Fuse distribution. Its main purpose is to update some of the bundles and libraries in an existing distribution.
- Upgrading: The Fuse on Apache Karaf upgrade mechanism enables you apply fixes to an Apache Karaf container without needing to reinstall an updated version of Fuse on Karaf. It also allows you to roll back the upgrade, if the upgrade causes problems with your deployed applications. The Fuse on Apache Karaf upgrade process updates any files, including bundle JARs, configuration files, and any static files.
For Fuse on Apache Karaf Standalone you can apply the patch using commands from the Karaf console’s patch shell. This approach is non-destructive and reversible. Following procedure can also be used for upgrading Red Hat Fuse on Apache Karaf. For more information of upgrading see Upgrading Fuse on Apache Karaf.
2.2. Applying a Hotfix Patch to Red Hat Fuse on Apache Karaf
You can use the hotfix mechanism to update the available feature definitions and bundles at the same time. The procedure to apply a hotfix patch to the Fuse on Apache Karaf installation is as follows.
Procedure
- Make a full backup of your Fuse on Apache Karaf installation before upgrading.
- Open the terminal and start Fuse on Apache karaf server. - [user@FUSE_HOME/bin ~] $ ./fuse - [user@FUSE_HOME/bin ~] $ ./fuse- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Optional: Download the required patch from the Customer Portal and skip to Step 5.
- Enter the - patch:findcommand to find available patches in the Maven repositories. For example:- karaf@root()> patch:find Found new remote patch at mvn:org.jboss.redhat-fuse/fuse-karaf-patch-repository/7.8.0.fuse-sb2-780040/zip You can add the patch using "patch:add mvn:org.jboss.redhat-fuse/fuse-karaf-patch-repository/7.8.0.fuse-sb2-780040/zip" command, or simply use "patch:find --add" option. - karaf@root()> patch:find Found new remote patch at mvn:org.jboss.redhat-fuse/fuse-karaf-patch-repository/7.8.0.fuse-sb2-780040/zip You can add the patch using "patch:add mvn:org.jboss.redhat-fuse/fuse-karaf-patch-repository/7.8.0.fuse-sb2-780040/zip" command, or simply use "patch:find --add" option.- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow Note- You may use the - patch:findcommand with the- --addoption to find the latest patch and add it to the container’s environment.
- Add the patch to the container’s environment by entering the - patch:addcommand. For example:- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow Note- Instead of using the - patch:addcommand, you can also add a patch file automatically by copying the .zip patch file into the- FUSE_HOME/patchesdirectory.
- Optional: Enter the - patch:updatecommand to update the patch mechanism itself:- karaf@root()> patch:update Current patch mechanism version: 7.8.0.fuse-780038 New patch mechanism version detected: 7.8.0.fuse-780040 Uninstalling patch features in version 7.8.0.fuse-780038 Installing patch features in version 7.8.0.fuse-780040 - karaf@root()> patch:update Current patch mechanism version: 7.8.0.fuse-780038 New patch mechanism version detected: 7.8.0.fuse-780040 Uninstalling patch features in version 7.8.0.fuse-780038 Installing patch features in version 7.8.0.fuse-780040- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Simulate installing the patch by entering the - patch:simulatecommand.- This generates a log of the changes that will be made to the container when the patch is installed, but will not make any actual changes to the container. Review the simulation log to understand these changes. 
- Enter the - patch:listcommand to view a list of added patches. In this list, the entries under the [name] heading are patch IDs.- karaf@root()> patch:list [name] [installed] [rollup] [description] [CVEs] fuse-karaf-maintenance-patch-7.8.0.fuse-sb2-780040 false false fuse-karaf-maintenance-patch-7.8.0.fuse-sb2-780040 CVE-2020-28052 - karaf@root()> patch:list [name] [installed] [rollup] [description] [CVEs] fuse-karaf-maintenance-patch-7.8.0.fuse-sb2-780040 false false fuse-karaf-maintenance-patch-7.8.0.fuse-sb2-780040 CVE-2020-28052- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- If the patch contains explicit CVE metadata, you can enter the - patch:showcommand to view more details:- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Apply a patch to the container by entering the - patch:installcommand and specifying the patch ID for the patch that you want to apply. For example:- patch:install fuse-karaf-maintenance-patch-7.8.0.fuse-sb2-780040 - patch:install fuse-karaf-maintenance-patch-7.8.0.fuse-sb2-780040- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
2.3. Rolling back a Patch
				You can rollback the installed hotfix patch and restore it to pre-patch behavior using the patch:rollback command, as follows:
			
Procedure
- 
						Enter the patch:listcommand to obtain the patch ID of the most recently installed patch.
- To rollback the updated bundle enter the following command: - karaf@root()> patch:rollback my-patch-x INFO : org.jboss.fuse.modules.patch.patch-management (2): Rolling back non-rollup patch "my-patch-x" removing overriden feature: hawtio-rbac/2.0.0.fuse-000117 refreshing features Enter feature:info command to view the information about the feature. - karaf@root()> patch:rollback my-patch-x INFO : org.jboss.fuse.modules.patch.patch-management (2): Rolling back non-rollup patch "my-patch-x" removing overriden feature: hawtio-rbac/2.0.0.fuse-000117 refreshing features Enter feature:info command to view the information about the feature.- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow - Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
2.4. Patching Red Hat Fuse application
				Using the new patch-maven-plugin mechanism you can apply a patch to your Red Hat Fuse application. This mechanism allows you to change the individual versions provided by different Red Hat Fuse BOMS, for example, fuse-springboot-bom and fuse-karaf-bom.
			
2.4.1. About patch-maven-plugin
					The patch-maven-plugin performs following operations:
				
- Retrieve the patch metadata related to current Red Hat Fuse BOMs.
- 
							Apply the version changes to <dependencyManagement>imported from the BOMs.
					After the patch-maven-plugin fetches the metadata, it iterates through all managed and direct dependencies of the project where the plugin was declared and replaces the dependency versions (if they match) using CVE/patch metadata. After versions are replaced, Maven build continues and progresses through standard Maven project stages.
				
2.4.2. Applying patch to Red Hat Fuse applications
The purpose of patch-maven-plugin is to update the versions of the dependencies listed in the Red Hat Fuse BOM to the versions specified in the patch metadata of the patch that you wish to apply to your applications.
Procedure
Following procedure explains how to apply the patch to your application.
- Add - patch-maven-pluginto your project’s- pom.xmlfile. The version of the- patch-maven-pluginmust be the same as the version of the Fuse BOM.- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- When you run any one of the - mvn clean deployor- mvn validateor- mvn dependency:treecommands, the plugin searches through the project modules to check whether one of Red Hat Fuse BOMs is used. Only two are considered as the supported BOMs:- 
									org.jboss.redhat-fuse:fuse-karaf-bom: for Fuse Karaf BOM
- 
									org.jboss.redhat-fuse:fuse-springboot-bom: for Fuse Spring Boot BOM
 
- 
									
- If none of the above BOMs are found, the plugin will display following messages: - Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- If both Fuse BOMs are found, the - patch-maven-pluginstops with the following warning:- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- The - patch-maven-pluginattempts to fetch one of the following Maven metadata values.- 
									For the projects with Fuse Karaf BOM, the org.jboss.redhat-fuse/fuse-karaf-patch-metadata/maven-metadata.xmlis resolved. This is the metadata for the artifact with theorg.jboss.redhat-fuse:fuse-karaf-patch-metadata:RELEASEcoordinates.
- For the projects with Fuse Spring Boot BOM project, the - org.jboss.redhat-fuse/fuse-springboot-patch-metadata/maven-metadata.xmlis resolved. This is the metadata for the artifact with the- org.jboss.redhat-fuse:fuse-springboot-patch-metadata:RELEASEcoordinates.- Example metadata generated by Maven - Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
 
- 
									For the projects with Fuse Karaf BOM, the 
- 
							The patch-maven-pluginparses the metadata to select the version which is applicable to the current project. This is possible only for the Maven projects using Fuse BOM with version 7.8.xxx. Only the metadata that matches the version range 7.8, 7.9 or later is applicable and only the latest version of the metadata is fetched.
- The - patch-maven-plugincollects a list of remote Maven repositories to be used when downloading the patch metadata identified by- groupId,- artifactIdand- versionfound in previous steps. These Maven repositories are the ones that are listed in the project’s- <repositories>elements in the active profiles and also the repositories from- settings.xmlfile.- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Optionally, if you wish to use a offline repository, you can use - -Dpatchoption to specify a ZIP file which is produced by- fuse-karaf/fuse-karaf-patch-repositoryor- fuse-springboot/fuse-springboot-patch-repositorymodules of- jboss-fuse/redhat-fuseproject. These ZIP files have the same internal structure as the Maven repository structure. For example,- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Whether the metadata comes from remote repository, local repository or ZIP file, it is analyzed by the - patch-maven-plugin. The fetched metadata contains list of CVEs and for each CVE we have a list of affected Maven artifacts (specified by glob patterns and version ranges) together with a version that contains a fix for a given CVE. For example,- Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
- Finally a list of fixes specified in patch metadata is consulted when iterating over all managed dependencies in current project. These dependencies (and managed dependencies) that match are changed to fixed versions. For example: - Copy to Clipboard Copied! - Toggle word wrap Toggle overflow 
Skipping the patch
						In case when you do not wish to apply a specific patch to your project, the patch-maven-plugin provides a skip option. Assuming that you have already added patch-maven-plugin to project’s pom.xml file, and you don’t wish for the versions to be altered, you can use one of the following method to skip the patch.
					
- 
							Add the skip option to your project’s pom.xmlfile as follows.
- 
							Or use -DskipPatchoption when running themvncommand as follows.
					As shown in the above output, the patch-maven-plugin was not invoked, which results in the patch not being applied to the application.