Skip to content

Commit f5c69d9

Browse files
authored
chore(nifi): Add 1.28.1 and 2.2.0, remove 2.0.0 (#1006)
* chore(nifi): Add and patch 1.28.1 * chore(nifi): Replace 2.0.0 with 2.2.0 * chore: Update changelog
1 parent e769383 commit f5c69d9

12 files changed

+218
-44
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ All notable changes to this project will be documented in this file.
2727
- trino-cli: Add version 470 ([#999]).
2828
- trino-storage-connector: Add version 470 ([#999]).
2929
- superset: Add version `4.1.1` ([#991]).
30-
- Added Patchable patch management tool ([#1003]).
30+
- Add Patchable patch management tool ([#1003]).
31+
- nifi: Add 1.28.1, 2.2.0 ([#1006]).
3132

3233
### Changed
3334

@@ -44,6 +45,7 @@ All notable changes to this project will be documented in this file.
4445
- trino: Remove 469 ([#999]).
4546
- trino-cli: Remove version 469 ([#999]).
4647
- trino-storage-connector: Remove version 469 ([#999]).
48+
- nifi: Remove 2.0.0 ([#1006]).
4749

4850
### Fixed
4951

@@ -74,6 +76,7 @@ All notable changes to this project will be documented in this file.
7476
[#999]: https://github.com/stackabletech/docker-images/pull/999
7577
[#1000]: https://github.com/stackabletech/docker-images/pull/1000
7678
[#1003]: https://github.com/stackabletech/docker-images/pull/1003
79+
[#1006]: https://github.com/stackabletech/docker-images/pull/1006
7780

7881
## [24.11.1] - 2025-01-14
7982

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Mon, 17 Feb 2025 15:13:39 +0100
4+
Subject: no zip assembly
5+
6+
---
7+
nifi-assembly/pom.xml | 1 -
8+
1 file changed, 1 deletion(-)
9+
10+
diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
11+
index 27928cf67e..d00154626a 100644
12+
--- a/nifi-assembly/pom.xml
13+
+++ b/nifi-assembly/pom.xml
14+
@@ -66,7 +66,6 @@ language governing permissions and limitations under the License. -->
15+
<tarLongFileMode>posix</tarLongFileMode>
16+
<formats>
17+
<format>dir</format>
18+
- <format>zip</format>
19+
</formats>
20+
</configuration>
21+
</execution>
22+
23+
base-commit: 883338fe28883733417d10f6ffa9319e75f5ea06
24+
--
25+
2.40.1
26+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Mon, 17 Feb 2025 15:19:01 +0100
4+
Subject: allow bypassing check for host header
5+
6+
NiFi has the configuration option 'nifi.web.proxy.host' which controls allowed
7+
values for the host header field in any incoming request for the web ui.
8+
9+
This frequently causes issues when trying to expose the NiFi UI via for example
10+
an ingress, loadbalancer or any similar type of mechanism.
11+
12+
NiFi does not allow to disable this behavior, so at the moment the nifi operator
13+
simply hardcodes all even remotely possible values into this field.
14+
But in order to allow putting for example in ingress in front of NiFi this means
15+
using config overrides to change the value of this option, copy all the values
16+
the operator put in there and add the extra value you need.
17+
18+
This is less than ideal, the proper solution would probably be
19+
https://github.com/stackabletech/nifi-operator/issues/604
20+
21+
But until that is merged this is a simple workaround that allows overriding the list of allowed
22+
hostnames by just setting it to "*" and this will effectively bypass the hostname check entirely if set.
23+
24+
This allows us to keep the default behavior in place for those users where it works and not remove
25+
security features, but also enables users to disable this check if they know what they are doing.
26+
---
27+
.../org/apache/nifi/web/server/HostHeaderHandler.java | 8 +++++++-
28+
1 file changed, 7 insertions(+), 1 deletion(-)
29+
30+
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java
31+
index dd4bbf54c0..ea1b5b2da1 100644
32+
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java
33+
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java
34+
@@ -47,6 +47,7 @@ public class HostHeaderHandler extends ScopedHandler {
35+
private final String serverName;
36+
private final int serverPort;
37+
private final List<String> validHosts;
38+
+ private boolean allowAllHosts = false;
39+
40+
/**
41+
* Instantiates a handler with a given server name and port 0.
42+
@@ -107,6 +108,11 @@ public class HostHeaderHandler extends ScopedHandler {
43+
// The value(s) from nifi.web.proxy.host
44+
hosts.addAll(parseCustomHostnames(niFiProperties));
45+
46+
+ // Check if the setting for allowed hosts has only the wildcard entry and
47+
+ // if so store this in allowAllHost for later use
48+
+ List<String> configuredHostNames = niFiProperties.getAllowedHostsAsList();
49+
+ this.allowAllHosts = configuredHostNames.size() == 1 && configuredHostNames.contains("*");
50+
+
51+
// empty is ok here
52+
hosts.add("");
53+
54+
@@ -205,7 +211,7 @@ public class HostHeaderHandler extends ScopedHandler {
55+
}
56+
57+
boolean hostHeaderIsValid(String hostHeader) {
58+
- return validHosts.contains(hostHeader.toLowerCase().trim());
59+
+ return this.allowAllHosts || validHosts.contains(hostHeader.toLowerCase().trim());
60+
}
61+
62+
@Override
63+
--
64+
2.40.1
65+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Mon, 17 Feb 2025 15:25:52 +0100
4+
Subject: add cyclonedx plugin
5+
6+
---
7+
pom.xml | 18 ++++++++++++++++++
8+
1 file changed, 18 insertions(+)
9+
10+
diff --git a/pom.xml b/pom.xml
11+
index 672c023277..641d772286 100644
12+
--- a/pom.xml
13+
+++ b/pom.xml
14+
@@ -1091,6 +1091,24 @@
15+
</excludes>
16+
</configuration>
17+
</plugin>
18+
+ <plugin>
19+
+ <groupId>org.cyclonedx</groupId>
20+
+ <artifactId>cyclonedx-maven-plugin</artifactId>
21+
+ <version>2.8.0</version>
22+
+ <configuration>
23+
+ <projectType>application</projectType>
24+
+ <schemaVersion>1.5</schemaVersion>
25+
+ <skipNotDeployed>false</skipNotDeployed>
26+
+ </configuration>
27+
+ <executions>
28+
+ <execution>
29+
+ <phase>package</phase>
30+
+ <goals>
31+
+ <goal>makeBom</goal>
32+
+ </goals>
33+
+ </execution>
34+
+ </executions>
35+
+ </plugin>
36+
</plugins>
37+
</build>
38+
<profiles>
39+
--
40+
2.40.1
41+

nifi/stackable/patches/2.0.0/004-CVE-2024-36114-bump-aircompressor-0-27.patch nifi/stackable/patches/1.28.1/0004-CVE-2024-36114-bump-aircompressor-to-0.27.patch

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
Fix CVE-2024-36114
1+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Mon, 17 Feb 2025 15:27:01 +0100
4+
Subject: CVE-2024-36114 bump aircompressor to 0.27
5+
26
see https://github.com/stackabletech/vulnerabilities/issues/834
37

48
Aircompressor is a library with ports of the Snappy, LZO, LZ4, and
@@ -17,12 +21,15 @@ have been fixed. When decompressing data from untrusted users, this can
1721
be exploited for a denial-of-service attack by crashing the JVM, or to
1822
leak other sensitive information from the Java process. There are no
1923
known workarounds for this issue.
24+
---
25+
nifi-assembly/pom.xml | 6 ++++++
26+
1 file changed, 6 insertions(+)
2027

2128
diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
22-
index e980e507c6..01eb16795d 100644
29+
index d00154626a..da38056c7a 100644
2330
--- a/nifi-assembly/pom.xml
2431
+++ b/nifi-assembly/pom.xml
25-
@@ -98,6 +98,12 @@ language governing permissions and limitations under the License. -->
32+
@@ -97,6 +97,12 @@ language governing permissions and limitations under the License. -->
2633
</plugins>
2734
</build>
2835
<dependencies>
@@ -32,6 +39,9 @@ index e980e507c6..01eb16795d 100644
3239
+ <artifactId>aircompressor</artifactId>
3340
+ <version>0.27</version>
3441
+ </dependency>
35-
<dependency>
36-
<groupId>ch.qos.logback</groupId>
37-
<artifactId>logback-classic</artifactId>
42+
<dependency> <!-- handling this explicitly Must be in root lib -->
43+
<groupId>javax.servlet</groupId>
44+
<artifactId>javax.servlet-api</artifactId>
45+
--
46+
2.40.1
47+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
upstream = "https://github.com/apache/nifi"
2+
base = "883338fe28883733417d10f6ffa9319e75f5ea06"

nifi/stackable/patches/2.0.0/003-patch-cyclonedx-plugin.patch

-29
This file was deleted.

nifi/stackable/patches/2.0.0/001-NIFI-no-zip-assembly-2.0.0.patch nifi/stackable/patches/2.2.0/0001-no-zip-assembly.patch

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1+
From afe4e4583747c2972d2590e9c1bd7de8b48aa300 Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Mon, 17 Feb 2025 17:26:20 +0100
4+
Subject: no zip assembly
5+
6+
---
7+
nifi-assembly/pom.xml | 1 -
8+
1 file changed, 1 deletion(-)
9+
110
diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
2-
index e980e507c6..cb19c89367 100644
11+
index c04e1c8650..adcecd6206 100644
312
--- a/nifi-assembly/pom.xml
413
+++ b/nifi-assembly/pom.xml
514
@@ -66,7 +66,6 @@ language governing permissions and limitations under the License. -->

nifi/stackable/patches/2.0.0/002-NIFI-no-host-header-check-2.0.0.patch nifi/stackable/patches/2.2.0/0002-allow-bypassing-check-for-host-header.patch

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
Subject: [PATCH] Allow bypassing check for host header.
1+
From f6888b73bf6c8b2889f8f7241cdce6714cd6a776 Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Mon, 17 Feb 2025 17:28:46 +0100
4+
Subject: allow bypassing check for host header
5+
26
NiFi has the configuration option 'nifi.web.proxy.host' which controls allowed
37
values for the host header field in any incoming request for the web ui.
48

@@ -20,11 +24,9 @@ hostnames by just setting it to "*" and this will effectively bypass the hostnam
2024
This allows us to keep the default behavior in place for those users where it works and not remove
2125
security features, but also enables users to disable this check if they know what they are doing.
2226
---
23-
Index: nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java
24-
IDEA additional info:
25-
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
26-
<+>UTF-8
27-
===================================================================
27+
.../org/apache/nifi/web/server/HostHeaderHandler.java | 8 +++++++-
28+
1 file changed, 7 insertions(+), 1 deletion(-)
29+
2830
diff --git a/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java b/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java
2931
index 97337d63e2..12ce1d8646 100644
3032
--- a/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/HostHeaderHandler.java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
From fbf66d408aefd995a2ac4a2b213b25a12cb9e96c Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Mon, 17 Feb 2025 17:31:17 +0100
4+
Subject: add cyclonedx plugin
5+
6+
---
7+
pom.xml | 18 ++++++++++++++++++
8+
1 file changed, 18 insertions(+)
9+
10+
diff --git a/pom.xml b/pom.xml
11+
index 7885e6c208..07e03e66cd 100644
12+
--- a/pom.xml
13+
+++ b/pom.xml
14+
@@ -1007,6 +1007,24 @@
15+
</rulesets>
16+
</configuration>
17+
</plugin>
18+
+ <plugin>
19+
+ <groupId>org.cyclonedx</groupId>
20+
+ <artifactId>cyclonedx-maven-plugin</artifactId>
21+
+ <version>2.8.0</version>
22+
+ <configuration>
23+
+ <projectType>application</projectType>
24+
+ <schemaVersion>1.5</schemaVersion>
25+
+ <skipNotDeployed>false</skipNotDeployed>
26+
+ </configuration>
27+
+ <executions>
28+
+ <execution>
29+
+ <phase>package</phase>
30+
+ <goals>
31+
+ <goal>makeBom</goal>
32+
+ </goals>
33+
+ </execution>
34+
+ </executions>
35+
+ </plugin>
36+
</plugins>
37+
</build>
38+
<profiles>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
upstream = "https://github.com/apache/nifi"
2+
base = "b33ffac8aa10992482f7fa54e6cfccc46a5e8e27"

nifi/versions.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
"java-devel": "11", # There is an error when trying to use the jdk 21 (since nifi 1.26.0)
66
},
77
{
8-
"product": "2.0.0",
8+
"product": "1.28.1",
9+
"java-base": "11",
10+
"java-devel": "11",
11+
},
12+
{
13+
"product": "2.2.0",
914
"java-base": "21",
1015
"java-devel": "21",
1116
},

0 commit comments

Comments
 (0)