alopresto commented on a change in pull request #4125: NIFI-7153 Adds ContentLengthFilter and DoSFilter URL: https://github.com/apache/nifi/pull/4125#discussion_r390697821
########## File path: nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-security/src/main/java/org/apache/nifi/web/security/request/ContentLengthFilter.java ########## @@ -0,0 +1,143 @@ +/* + * 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.nifi.web.security.request; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import javax.servlet.Filter; +import javax.servlet.FilterChain; +import javax.servlet.FilterConfig; +import javax.servlet.ReadListener; +import javax.servlet.ServletException; +import javax.servlet.ServletInputStream; +import javax.servlet.ServletRequest; +import javax.servlet.ServletResponse; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletRequestWrapper; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +/** + * This {@link Filter} rejects HTTP requests that exceed a specific, maximum size. + */ +public class ContentLengthFilter implements Filter { + private static final Logger logger = LoggerFactory.getLogger(ContentLengthFilter.class); + public final static String MAX_LENGTH_INIT_PARAM = "maxContentLength"; + public final static int MAX_LENGTH_DEFAULT = 10_000_000; + private int maxContentLength; + + public ContentLengthFilter() { + maxContentLength = MAX_LENGTH_DEFAULT; + } + + public ContentLengthFilter(int maxLength) { + maxContentLength = maxLength; + } + + @Override + public void init(FilterConfig config) throws ServletException { + String maxLength = config.getInitParameter(MAX_LENGTH_INIT_PARAM); + int length = maxLength == null ? MAX_LENGTH_DEFAULT : Integer.parseInt(maxLength); + if (length < 0) { + throw new ServletException("Invalid max request length."); + } + maxContentLength = length; + logger.info("Max content length set: " + maxLength + "b"); + } + + @Override + public void doFilter(ServletRequest request, ServletResponse response, FilterChain next) throws IOException, ServletException { + HttpServletRequest httpRequest = (HttpServletRequest) request; + String httpMethod = httpRequest.getMethod(); + + // Check the HTTP method because the spec says clients don't have to send a content-length header for methods + // that don't use it. So even though an attacker may provide a large body in a GET request, the body should go + // unread and a size filter is unneeded at best. See RFC 2616 section 14.13, and RFC 1945 section 10.4. + boolean willReadInputStream = maxContentLength > 0 && (httpMethod.equalsIgnoreCase("POST") || httpMethod.equalsIgnoreCase("PUT")); + if (!willReadInputStream) { + logger.info("No length check of request with method {} and maximum {}", httpMethod, maxContentLength); Review comment: Should probably add units to these log statements for clarity. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
