This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/11.0.x by this push:
new 45a821363e Add basic filtering for trailer fields
45a821363e is described below
commit 45a821363e2ddf6de3bc153ede529145b45fb3f0
Author: Mark Thomas <[email protected]>
AuthorDate: Tue Mar 24 08:25:22 2026 +0000
Add basic filtering for trailer fields
---
.../coyote/http11/filters/ChunkedOutputFilter.java | 31 +++++-
.../http11/filters/TestChunkedOutputFilter.java | 123 +++++++++++++++++++++
webapps/docs/changelog.xml | 5 +
3 files changed, 157 insertions(+), 2 deletions(-)
diff --git a/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
b/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
index b1dc6b1318..33a9741187 100644
--- a/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
+++ b/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
@@ -181,10 +181,10 @@ public class ChunkedOutputFilter implements OutputFilter {
if
(disallowedTrailerFieldNames.contains(trailerField.getKey().toLowerCase(Locale.ENGLISH)))
{
continue;
}
- osw.write(trailerField.getKey());
+ osw.write(filterForHeaders(trailerField.getKey()));
osw.write(':');
osw.write(' ');
- osw.write(trailerField.getValue());
+ osw.write(filterForHeaders(trailerField.getValue()));
osw.write("\r\n");
}
}
@@ -198,6 +198,33 @@ public class ChunkedOutputFilter implements OutputFilter {
}
+ /*
+ * Filters out CTLs excluding TAB and any code points above 255 (since
this is meant to be ISO-8859-1).
+ *
+ * This doesn't perform full HTTP validation. For example, it does not
limit field names to tokens.
+ *
+ * Strictly, correct trailer fields is an application concern. The
filtering here is a basic attempt to help
+ * mis-behaving applications prevent the worst of the potential
side-effects of invalid trailer fields.
+ */
+ // package private so it is visible for testing
+ static String filterForHeaders(String input) {
+ char[] chars = input.toCharArray();
+ boolean updated = false;
+ for (int i = 0; i < chars.length; i++) {
+ if (chars[i] < 32 && chars [i] != 9 || chars[i] == 127 || chars[i]
> 255) {
+ chars[i] = ' ';
+ updated = true;
+ }
+ }
+
+ if (updated) {
+ return new String(chars);
+ } else {
+ return input;
+ }
+ }
+
+
@Override
public void recycle() {
response = null;
diff --git a/test/org/apache/coyote/http11/filters/TestChunkedOutputFilter.java
b/test/org/apache/coyote/http11/filters/TestChunkedOutputFilter.java
new file mode 100644
index 0000000000..71be41180a
--- /dev/null
+++ b/test/org/apache/coyote/http11/filters/TestChunkedOutputFilter.java
@@ -0,0 +1,123 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.coyote.http11.filters;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.junit.runners.Parameterized.Parameter;
+
+@RunWith(Parameterized.class)
+public class TestChunkedOutputFilter {
+
+ private final String VALID_STRING = "aaa";
+
+ @Parameterized.Parameters(name = "{index}")
+ public static Collection<Object[]> parameters() {
+ List<Object[]> parameterSets = new ArrayList<>();
+
+ for (int i = 0; i < 500; i++) {
+ Boolean valid;
+ if (i < 32 && i != 9 || i == 127 || i > 255) {
+ valid = Boolean.FALSE;
+ } else {
+ valid = Boolean.TRUE;
+ }
+ parameterSets.add(new Object[] { Character.valueOf((char) i),
valid});
+ }
+ return parameterSets;
+ }
+
+
+ @Parameter(0)
+ public Character charUnderTest;
+ @Parameter(1)
+ public boolean valid;
+
+
+ @Test
+ public void testAtStart() {
+ StringBuilder sb = new StringBuilder(4);
+ sb.append(charUnderTest);
+ sb.append(VALID_STRING);
+
+ String result = ChunkedOutputFilter.filterForHeaders(sb.toString());
+
+ String expected;
+ if (valid) {
+ expected = sb.toString();
+ } else {
+ StringBuilder esb = new StringBuilder(4);
+ esb.append(' ');
+ esb.append(VALID_STRING);
+ expected = esb.toString();
+ }
+
+ Assert.assertEquals(expected, result);
+ }
+
+
+ @Test
+ public void testInMiddle() {
+ StringBuilder sb = new StringBuilder(4);
+ sb.append(VALID_STRING);
+ sb.append(charUnderTest);
+ sb.append(VALID_STRING);
+
+ String result = ChunkedOutputFilter.filterForHeaders(sb.toString());
+
+ String expected;
+ if (valid) {
+ expected = sb.toString();
+ } else {
+ StringBuilder esb = new StringBuilder(4);
+ esb.append(VALID_STRING);
+ esb.append(' ');
+ esb.append(VALID_STRING);
+ expected = esb.toString();
+ }
+
+ Assert.assertEquals(expected, result);
+ }
+
+
+ @Test
+ public void testAtEnd() {
+ StringBuilder sb = new StringBuilder(4);
+ sb.append(VALID_STRING);
+ sb.append(charUnderTest);
+
+ String result = ChunkedOutputFilter.filterForHeaders(sb.toString());
+
+ String expected;
+ if (valid) {
+ expected = sb.toString();
+ } else {
+ StringBuilder esb = new StringBuilder(4);
+ esb.append(VALID_STRING);
+ esb.append(' ');
+ expected = esb.toString();
+ }
+
+ Assert.assertEquals(expected, result);
+ }
+}
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 011aee9be6..e7591efe65 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -122,6 +122,11 @@
Ensure the HTTP/2 request header read buffer is reset (including
restoration to default size) after a stream reset. (markt)
</fix>
+ <add>
+ Provide trailer field filtering equivalent to that provided for
+ non-trailer fields. Control characters (excluding TAB), and characters
+ with code points above 255 will be replaced with a space. (markt)
+ </add>
</changelog>
</subsection>
</section>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]