View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  package org.apache.hc.client5.http.impl.cache;
28  
29  import java.io.ByteArrayInputStream;
30  import java.io.ByteArrayOutputStream;
31  import java.io.IOException;
32  import java.io.InputStream;
33  import java.io.ObjectInputStream;
34  import java.io.ObjectOutputStream;
35  import java.io.ObjectStreamClass;
36  import java.util.Arrays;
37  import java.util.Collections;
38  import java.util.List;
39  import java.util.regex.Pattern;
40  
41  import org.apache.hc.client5.http.cache.HttpCacheEntrySerializer;
42  import org.apache.hc.client5.http.cache.HttpCacheStorageEntry;
43  import org.apache.hc.client5.http.cache.ResourceIOException;
44  import org.apache.hc.core5.annotation.Contract;
45  import org.apache.hc.core5.annotation.ThreadingBehavior;
46  
47  /**
48   * {@link HttpCacheEntrySerializer} implementation that uses the default (native)
49   * serialization.
50   *
51   * @see java.io.Serializable
52   *
53   * @since 4.1
54   * @deprecated This class is deprecated and will be removed in a future release. Please use {@link HttpByteArrayCacheEntrySerializer} for improved performance.
55   * @see HttpByteArrayCacheEntrySerializer
56   */
57  @Deprecated
58  @Contract(threading = ThreadingBehavior.STATELESS)
59  public final class ByteArrayCacheEntrySerializer implements HttpCacheEntrySerializer<byte[]> {
60  
61      public static final ByteArrayCacheEntrySerializer INSTANCE = new ByteArrayCacheEntrySerializer();
62  
63      @Override
64      public byte[] serialize(final HttpCacheStorageEntry cacheEntry) throws ResourceIOException {
65          if (cacheEntry == null) {
66              return null;
67          }
68          final ByteArrayOutputStream buf = new ByteArrayOutputStream();
69          try (final ObjectOutputStream oos = new ObjectOutputStream(buf)) {
70              oos.writeObject(cacheEntry);
71          } catch (final IOException ex) {
72              throw new ResourceIOException(ex.getMessage(), ex);
73          }
74          return buf.toByteArray();
75      }
76  
77      @Override
78      public HttpCacheStorageEntry deserialize(final byte[] serializedObject) throws ResourceIOException {
79          if (serializedObject == null) {
80              return null;
81          }
82          try (final ObjectInputStream ois = new RestrictedObjectInputStream(new ByteArrayInputStream(serializedObject))) {
83              return (HttpCacheStorageEntry) ois.readObject();
84          } catch (final IOException | ClassNotFoundException ex) {
85              throw new ResourceIOException(ex.getMessage(), ex);
86          }
87      }
88  
89      // visible for testing
90      static class RestrictedObjectInputStream extends ObjectInputStream {
91  
92          private static final List<Pattern> ALLOWED_CLASS_PATTERNS = Collections.unmodifiableList(Arrays.asList(
93                  Pattern.compile("^(\\[L)?org\\.apache\\.hc\\.(.*)"),
94                  Pattern.compile("^(?:\\[+L)?java\\.util\\..*$"),
95                  Pattern.compile("^(?:\\[+L)?java\\.lang\\..*$"),
96                  Pattern.compile("^(?:\\[+L)?java\\.time\\..*$"), // java 8 time
97                  Pattern.compile("^\\[+Z$"), // boolean
98                  Pattern.compile("^\\[+B$"), // byte
99                  Pattern.compile("^\\[+C$"), // char
100                 Pattern.compile("^\\[+D$"), // double
101                 Pattern.compile("^\\[+F$"), // float
102                 Pattern.compile("^\\[+I$"), // int
103                 Pattern.compile("^\\[+J$"), // long
104                 Pattern.compile("^\\[+S$") // short
105         ));
106 
107         private RestrictedObjectInputStream(final InputStream in) throws IOException {
108             super(in);
109         }
110 
111         @Override
112         protected Class<?> resolveClass(final ObjectStreamClass objectStreamClass) throws IOException, ClassNotFoundException {
113             final String className = objectStreamClass.getName();
114             if (!isAllowedClassName(className)) {
115                 throw new ResourceIOException(String.format(
116                         "Class %s is not allowed for deserialization", objectStreamClass.getName()));
117             }
118             return super.resolveClass(objectStreamClass);
119         }
120 
121         // visible for testing
122         static boolean isAllowedClassName(final String className) {
123             for (final Pattern allowedClassPattern : ALLOWED_CLASS_PATTERNS) {
124                 if (allowedClassPattern.matcher(className).matches()) {
125                     return true;
126                 }
127             }
128             return false;
129         }
130 
131     }
132 
133 }