コード例 #1
0
 @Test
 public void iframeUppercase() throws Exception {
   final SockJsConfig config = config();
   final String path = config.prefix() + "/IFRAME";
   final FullHttpResponse response = Iframe.response(config, createHttpRequest(path));
   assertThat(response.getStatus().code(), is(HttpResponseStatus.NOT_FOUND.code()));
 }
コード例 #2
0
  private void checkResponseCode(ChannelHandlerContext ctx, HttpResponse response)
      throws Exception {
    boolean discardBody = false;

    int code = response.getStatus().code();
    if (code == HttpResponseStatus.NOT_FOUND.code()
        || code == HttpResponseStatus.BAD_REQUEST.code()) {
      exceptionCaught(ctx, new HttpException(response.getStatus()));
      discardBody = true;
    }

    setDiscardBody(discardBody);
  }
コード例 #3
0
final class HttpFileServiceInvocationHandler implements ServiceInvocationHandler {

  private static final Pattern PROHIBITED_PATH_PATTERN =
      Pattern.compile("(?:[:<>\\|\\?\\*\\\\]|/\\.\\.|\\.\\.$|\\.\\./|//+)");

  private static final String ERROR_MIME_TYPE = "text/plain; charset=UTF-8";
  private static final byte[] CONTENT_NOT_FOUND =
      HttpResponseStatus.NOT_FOUND.toString().getBytes(StandardCharsets.UTF_8);
  private static final byte[] CONTENT_METHOD_NOT_ALLOWED =
      HttpResponseStatus.METHOD_NOT_ALLOWED.toString().getBytes(StandardCharsets.UTF_8);

  private final HttpFileServiceConfig config;

  /** An LRU cache map that releases the buffer that contains the cached content. */
  private final Map<String, CachedEntry> cache;

  HttpFileServiceInvocationHandler(HttpFileServiceConfig config) {
    this.config = requireNonNull(config, "config");

    if (config.maxCacheEntries() != 0) {
      cache =
          Collections.synchronizedMap(
              new LruMap<String, CachedEntry>(config.maxCacheEntries()) {
                private static final long serialVersionUID = -5517905762044320996L;

                @Override
                protected boolean removeEldestEntry(Map.Entry<String, CachedEntry> eldest) {
                  final boolean remove = super.removeEldestEntry(eldest);
                  if (remove) {
                    eldest.getValue().destroyContent();
                  }
                  return remove;
                }
              });
    } else {
      cache = null;
    }
  }

  HttpFileServiceConfig config() {
    return config;
  }

  @Override
  public void invoke(
      ServiceInvocationContext ctx, Executor blockingTaskExecutor, Promise<Object> promise)
      throws Exception {

    final HttpRequest req = ctx.originalRequest();
    if (req.method() != HttpMethod.GET) {
      respond(
          ctx,
          promise,
          HttpResponseStatus.METHOD_NOT_ALLOWED,
          0,
          ERROR_MIME_TYPE,
          Unpooled.wrappedBuffer(CONTENT_METHOD_NOT_ALLOWED));
      return;
    }

    final String path = normalizePath(ctx.mappedPath());
    if (path == null) {
      respond(
          ctx,
          promise,
          HttpResponseStatus.NOT_FOUND,
          0,
          ERROR_MIME_TYPE,
          Unpooled.wrappedBuffer(CONTENT_NOT_FOUND));
      return;
    }

    Entry entry = getEntry(path);
    long lastModifiedMillis;
    if ((lastModifiedMillis = entry.lastModifiedMillis()) == 0) {
      boolean found = false;
      if (path.charAt(path.length() - 1) == '/') {
        // Try index.html if it was a directory access.
        entry = getEntry(path + "index.html");
        if ((lastModifiedMillis = entry.lastModifiedMillis()) != 0) {
          found = true;
        }
      }

      if (!found) {
        respond(
            ctx,
            promise,
            HttpResponseStatus.NOT_FOUND,
            0,
            ERROR_MIME_TYPE,
            Unpooled.wrappedBuffer(CONTENT_NOT_FOUND));
        return;
      }
    }

    long ifModifiedSinceMillis = Long.MIN_VALUE;
    try {
      ifModifiedSinceMillis =
          req.headers().getTimeMillis(HttpHeaderNames.IF_MODIFIED_SINCE, Long.MIN_VALUE);
    } catch (Exception e) {
      // Ignore the ParseException, which is raised on malformed date.
      //noinspection ConstantConditions
      if (!(e instanceof ParseException)) {
        throw e;
      }
    }

    // HTTP-date does not have subsecond-precision; add 999ms to it.
    if (ifModifiedSinceMillis > Long.MAX_VALUE - 999) {
      ifModifiedSinceMillis = Long.MAX_VALUE;
    } else {
      ifModifiedSinceMillis += 999;
    }

    if (lastModifiedMillis < ifModifiedSinceMillis) {
      respond(
          ctx,
          promise,
          HttpResponseStatus.NOT_MODIFIED,
          lastModifiedMillis,
          entry.mimeType(),
          Unpooled.EMPTY_BUFFER);
      return;
    }

    respond(
        ctx,
        promise,
        HttpResponseStatus.OK,
        lastModifiedMillis,
        entry.mimeType(),
        entry.readContent(ctx.alloc()));
  }

  private static String normalizePath(String path) {
    // Filter out an empty path or a relative path.
    if (path.isEmpty() || path.charAt(0) != '/') {
      return null;
    }

    // Strip the query string.
    final int queryPos = path.indexOf('?');
    if (queryPos >= 0) {
      path = path.substring(0, queryPos);
    }

    try {
      path = URLDecoder.decode(path, "UTF-8");
    } catch (IllegalArgumentException ignored) {
      // Malformed URL
      return null;
    } catch (UnsupportedEncodingException e) {
      // Should never happen
      throw new Error(e);
    }

    // Reject the prohibited patterns.
    if (PROHIBITED_PATH_PATTERN.matcher(path).find()) {
      return null;
    }

    return path;
  }

  private static void respond(
      ServiceInvocationContext ctx,
      Promise<Object> promise,
      HttpResponseStatus status,
      long lastModifiedMillis,
      String contentType,
      ByteBuf content) {

    final FullHttpResponse res = new DefaultFullHttpResponse(HttpVersion.HTTP_1_1, status, content);
    if (lastModifiedMillis != 0) {
      res.headers().set(HttpHeaderNames.LAST_MODIFIED, new Date(lastModifiedMillis));
    }

    if (contentType != null) {
      res.headers().set(HttpHeaderNames.CONTENT_TYPE, contentType);
    }

    ctx.resolvePromise(promise, res);
  }

  private Entry getEntry(String path) {
    assert path != null;

    if (cache == null) {
      return config.vfs().get(path);
    }

    CachedEntry e = cache.get(path);
    if (e != null) {
      return e;
    }

    e = new CachedEntry(config.vfs().get(path), config.maxCacheEntrySizeBytes());
    cache.put(path, e);
    return e;
  }

  private static final class CachedEntry implements Entry {

    private final Entry e;
    private final int maxCacheEntrySizeBytes;
    private ByteBuf cachedContent;
    private volatile long cachedLastModifiedMillis;

    CachedEntry(Entry e, int maxCacheEntrySizeBytes) {
      this.e = e;
      this.maxCacheEntrySizeBytes = maxCacheEntrySizeBytes;
      cachedLastModifiedMillis = e.lastModifiedMillis();
    }

    @Override
    public String mimeType() {
      return e.mimeType();
    }

    @Override
    public long lastModifiedMillis() {
      final long newLastModifiedMillis = e.lastModifiedMillis();
      if (newLastModifiedMillis != cachedLastModifiedMillis) {
        cachedLastModifiedMillis = newLastModifiedMillis;
        destroyContent();
      }

      return newLastModifiedMillis;
    }

    @Override
    public synchronized ByteBuf readContent(ByteBufAllocator alloc) throws IOException {
      if (cachedContent == null) {
        final ByteBuf newContent = e.readContent(alloc);
        if (newContent.readableBytes() > maxCacheEntrySizeBytes) {
          // Do not cache if the content is too large.
          return newContent;
        }
        cachedContent = newContent;
      }

      return cachedContent.duplicate().retain();
    }

    synchronized void destroyContent() {
      if (cachedContent != null) {
        cachedContent.release();
        cachedContent = null;
      }
    }

    @Override
    public String toString() {
      return e.toString();
    }
  }
}