ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/http/Rfc6265CookieProcessor.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/http/Rfc6265CookieProcessor.java
Status
scanned
Type
file
Name
Rfc6265CookieProcessor.java
Extension
.java
Programming language
Java
Mime type
text/x-c
File type
C source, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
10895 (10.6 KB)
MD5
1928c05630deafb5dcf5fd605f4e63e0
SHA1
b8a37a6c4b927b3c0a12e225269d8601df200318
SHA256
3bf7917b17f3ac228f5ce7ff084d950012a48c588758ad9fb6fa949a12784adc
SHA512

      
    
SHA1_git
8d774fae98a7e92523f7051e49243c7bb5f75318
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
Rfc6265CookieProcessor.java | 10.6 KB |

/* * 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.tomcat.util.http; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; import java.text.FieldPosition; import java.util.BitSet; import java.util.Date; import java.util.Map; import jakarta.servlet.http.HttpServletRequest; import org.apache.juli.logging.Log; import org.apache.juli.logging.LogFactory; import org.apache.tomcat.util.buf.ByteChunk; import org.apache.tomcat.util.buf.MessageBytes; import org.apache.tomcat.util.descriptor.web.Constants; import org.apache.tomcat.util.http.parser.Cookie; import org.apache.tomcat.util.http.parser.HttpParser; import org.apache.tomcat.util.res.StringManager; public class Rfc6265CookieProcessor extends CookieProcessorBase { private static final Log log = LogFactory.getLog(Rfc6265CookieProcessor.class); private static final StringManager sm = StringManager.getManager(Rfc6265CookieProcessor.class.getPackage().getName()); private static final String EMPTY_STRING = ""; private static final BitSet domainValid = new BitSet(128); static { for (char c = '0'; c <= '9'; c++) { domainValid.set(c); } for (char c = 'a'; c <= 'z'; c++) { domainValid.set(c); } for (char c = 'A'; c <= 'Z'; c++) { domainValid.set(c); } domainValid.set('.'); domainValid.set('-'); } @Override public Charset getCharset() { return StandardCharsets.UTF_8; } @Override public void parseCookieHeader(MimeHeaders headers, ServerCookies serverCookies) { if (headers == null) { // nothing to process return; } // process each "cookie" header int pos = headers.findHeader("Cookie", 0); while (pos >= 0) { MessageBytes cookieValue = headers.getValue(pos); if (cookieValue != null && !cookieValue.isNull()) { if (cookieValue.getType() != MessageBytes.T_BYTES) { if (log.isDebugEnabled()) { // TODO: Review this in light of HTTP/2 log.debug(sm.getString("rfc6265CookieProcessor.expectedBytes"), new Exception()); } cookieValue.toBytes(); } if (log.isTraceEnabled()) { log.trace("Cookies: Parsing b[]: " + cookieValue.toString()); } ByteChunk bc = cookieValue.getByteChunk(); Cookie.parseCookie(bc.getBytes(), bc.getStart(), bc.getLength(), serverCookies, getCookiesWithoutEqualsInternal()); } // search from the next position pos = headers.findHeader("Cookie", ++pos); } } @Override public String generateHeader(jakarta.servlet.http.Cookie cookie, HttpServletRequest request) { // Can't use StringBuilder due to DateFormat StringBuffer header = new StringBuffer(); /* * TODO: Name validation takes place in Cookie and cannot be configured per Context. Moving it to here would * allow per Context config but delay validation until the header is generated. However, the spec requires an * IllegalArgumentException on Cookie generation. */ header.append(cookie.getName()); header.append('='); String value = cookie.getValue(); if (value != null && !value.isEmpty()) { validateCookieValue(value); header.append(value); } /* * RFC 6265 prefers Max-Age to Expires but some browsers including Microsoft IE and Microsoft Edge don't * understand Max-Age so send expires as well. Without this, persistent cookies fail with those browsers. */ int maxAge = cookie.getMaxAge(); // Negative Max-Age is equivalent to no Max-Age if (maxAge > -1) { header.append("; Expires="); if (maxAge == 0) { // To expire immediately we need to set the time in past header.append(ANCIENT_DATE); } else { COOKIE_DATE_FORMAT.get().format(new Date(System.currentTimeMillis() + maxAge * 1000L), header, new FieldPosition(0)); header.append("; Max-Age="); header.append(maxAge); } } String domain = cookie.getDomain(); if (domain != null && !domain.isEmpty()) { validateDomain(domain); header.append("; Domain="); header.append(domain); } String path = cookie.getPath(); if (path != null && !path.isEmpty()) { validatePath(path); header.append("; Path="); header.append(path); } if (cookie.getSecure()) { header.append("; Secure"); } if (cookie.isHttpOnly()) { header.append("; HttpOnly"); } String cookieSameSite = cookie.getAttribute(Constants.COOKIE_SAME_SITE_ATTR); if (cookieSameSite == null) { // Use processor config SameSiteCookies sameSiteCookiesValue = getSameSiteCookies(); if (!sameSiteCookiesValue.equals(SameSiteCookies.UNSET)) { header.append("; SameSite="); header.append(sameSiteCookiesValue.getValue()); } } else { // Use explicit config header.append("; SameSite="); header.append(cookieSameSite); } String cookiePartitioned = cookie.getAttribute(Constants.COOKIE_PARTITIONED_ATTR); if (cookiePartitioned == null) { if (getPartitioned()) { header.append("; Partitioned"); } } else { if (EMPTY_STRING.equals(cookiePartitioned)) { header.append("; Partitioned"); } } // Add the remaining attributes for (Map.Entry<String,String> entry : cookie.getAttributes().entrySet()) { switch (entry.getKey()) { case Constants.COOKIE_COMMENT_ATTR: case Constants.COOKIE_DOMAIN_ATTR: case Constants.COOKIE_MAX_AGE_ATTR: case Constants.COOKIE_PATH_ATTR: case Constants.COOKIE_SECURE_ATTR: case Constants.COOKIE_HTTP_ONLY_ATTR: case Constants.COOKIE_SAME_SITE_ATTR: case Constants.COOKIE_PARTITIONED_ATTR: // Handled above so NO-OP break; default: { validateAttribute(entry.getKey(), entry.getValue()); header.append("; "); header.append(entry.getKey()); if (!EMPTY_STRING.equals(entry.getValue())) { header.append('='); header.append(entry.getValue()); } } } } return header.toString(); } private void validateCookieValue(String value) { int start = 0; int end = value.length(); boolean quoted = end > 1 && value.charAt(0) == '"' && value.charAt(end - 1) == '"'; char[] chars = value.toCharArray(); for (int i = start; i < end; i++) { if (quoted && (i == start || i == end - 1)) { continue; } char c = chars[i]; if (c < 0x21 || c == 0x22 || c == 0x2c || c == 0x3b || c == 0x5c || c == 0x7f) { throw new IllegalArgumentException( sm.getString("rfc6265CookieProcessor.invalidCharInValue", Integer.toString(c))); } } } private void validateDomain(String domain) { int i = 0; int prev; int cur = -1; char[] chars = domain.toCharArray(); while (i < chars.length) { prev = cur; cur = chars[i]; if (!domainValid.get(cur)) { throw new IllegalArgumentException(sm.getString("rfc6265CookieProcessor.invalidDomain", domain)); } // labels must start with a letter or number if ((prev == '.' || prev == -1) && (cur == '.' || cur == '-')) { throw new IllegalArgumentException(sm.getString("rfc6265CookieProcessor.invalidDomain", domain)); } // labels must end with a letter or number if (prev == '-' && cur == '.') { throw new IllegalArgumentException(sm.getString("rfc6265CookieProcessor.invalidDomain", domain)); } i++; } // domain must end with a label if (cur == '.' || cur == '-') { throw new IllegalArgumentException(sm.getString("rfc6265CookieProcessor.invalidDomain", domain)); } } private void validatePath(String path) { char[] chars = path.toCharArray(); for (char ch : chars) { if (ch < 0x20 || ch > 0x7E || ch == ';') { throw new IllegalArgumentException(sm.getString("rfc6265CookieProcessor.invalidPath", path)); } } } private void validateAttribute(String name, String value) { if (!HttpParser.isToken(name)) { throw new IllegalArgumentException(sm.getString("rfc6265CookieProcessor.invalidAttributeName", name)); } char[] chars = value.toCharArray(); for (char ch : chars) { if (ch < 0x20 || ch > 0x7E || ch == ';') { throw new IllegalArgumentException( sm.getString("rfc6265CookieProcessor.invalidAttributeValue", name, value)); } } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
11.91
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9