-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
832144e
commit 727d58f
Showing
4 changed files
with
297 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
core/src/main/java/jenkins/util/xstream/SafeURLConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright (c) 2018 CloudBees, Inc. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
package jenkins.util.xstream; | ||
|
||
import com.thoughtworks.xstream.converters.ConversionException; | ||
import com.thoughtworks.xstream.converters.basic.URLConverter; | ||
import hudson.remoting.URLDeserializationHelper; | ||
import org.kohsuke.accmod.Restricted; | ||
import org.kohsuke.accmod.restrictions.NoExternalUse; | ||
|
||
import java.io.IOException; | ||
import java.net.URL; | ||
import java.net.URLStreamHandler; | ||
|
||
/** | ||
* Wrap the URL handler during deserialization into a specific one that does not generate DNS query on the hostname | ||
* for {@link URLStreamHandler#equals(URL, URL)} or {@link URLStreamHandler#hashCode(URL)}. | ||
* Required to protect against SECURITY-637 | ||
* | ||
* @since TODO | ||
*/ | ||
@Restricted(NoExternalUse.class) | ||
public class SafeURLConverter extends URLConverter { | ||
|
||
@Override | ||
public Object fromString(String str) { | ||
URL url = (URL) super.fromString(str); | ||
try { | ||
return URLDeserializationHelper.wrapIfRequired(url); | ||
} catch (IOException e) { | ||
throw new ConversionException(e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
238 changes: 238 additions & 0 deletions
238
test/src/test/java/jenkins/security/Security637Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,238 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright (c) 2018 CloudBees, Inc. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
package jenkins.security; | ||
|
||
import hudson.Launcher; | ||
import hudson.model.AbstractBuild; | ||
import hudson.model.BuildListener; | ||
import hudson.model.FreeStyleProject; | ||
import hudson.model.JobProperty; | ||
import hudson.model.JobPropertyDescriptor; | ||
import hudson.slaves.DumbSlave; | ||
import org.apache.commons.lang.StringUtils; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.runners.model.Statement; | ||
import org.jvnet.hudson.test.Issue; | ||
import org.jvnet.hudson.test.RestartableJenkinsRule; | ||
import org.jvnet.hudson.test.TestExtension; | ||
|
||
import java.io.IOException; | ||
import java.lang.reflect.Field; | ||
import java.net.URL; | ||
import java.net.URLStreamHandler; | ||
import java.util.HashSet; | ||
import java.util.Set; | ||
|
||
import static org.hamcrest.CoreMatchers.containsString; | ||
import static org.hamcrest.CoreMatchers.equalTo; | ||
import static org.hamcrest.CoreMatchers.not; | ||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertThat; | ||
|
||
public class Security637Test { | ||
|
||
@Rule | ||
public RestartableJenkinsRule rr = new RestartableJenkinsRule(); | ||
|
||
@Test | ||
@Issue("SECURITY-637") | ||
public void urlSafeDeserialization_handler_inSameJVMRemotingContext() { | ||
rr.addStep(new Statement() { | ||
@Override | ||
public void evaluate() throws Exception { | ||
DumbSlave slave = rr.j.createOnlineSlave(); | ||
String unsafeHandlerClassName = slave.getChannel().call(new URLHandlerCallable(new URL("https://www.google.com/"))); | ||
assertThat(unsafeHandlerClassName, containsString("SafeURLStreamHandler")); | ||
|
||
String safeHandlerClassName = slave.getChannel().call(new URLHandlerCallable(new URL("file", null, -1, "", null))); | ||
assertThat(safeHandlerClassName, not(containsString("SafeURLStreamHandler"))); | ||
} | ||
}); | ||
} | ||
|
||
private static class URLHandlerCallable extends MasterToSlaveCallable<String, Exception> { | ||
private URL url; | ||
|
||
public URLHandlerCallable(URL url) { | ||
this.url = url; | ||
} | ||
|
||
@Override | ||
public String call() throws Exception { | ||
Field handlerField = URL.class.getDeclaredField("handler"); | ||
handlerField.setAccessible(true); | ||
URLStreamHandler handler = (URLStreamHandler) handlerField.get(url); | ||
return handler.getClass().getName(); | ||
} | ||
} | ||
|
||
@Test | ||
@Issue("SECURITY-637") | ||
public void urlDnsEquivalence() { | ||
rr.addStep(new Statement() { | ||
@Override | ||
public void evaluate() throws Exception { | ||
// due to the DNS resolution they are equal | ||
assertEquals( | ||
new URL("https://jenkins.io"), | ||
new URL("https://www.jenkins.io") | ||
); | ||
} | ||
}); | ||
} | ||
|
||
@Test | ||
@Issue("SECURITY-637") | ||
public void urlSafeDeserialization_urlBuiltInAgent_inSameJVMRemotingContext() { | ||
rr.addStep(new Statement() { | ||
@Override | ||
public void evaluate() throws Exception { | ||
DumbSlave slave = rr.j.createOnlineSlave(); | ||
|
||
// we bypass the standard equals method that resolve the hostname | ||
assertThat( | ||
slave.getChannel().call(new URLBuilderCallable("https://jenkins.io")), | ||
not(equalTo( | ||
slave.getChannel().call(new URLBuilderCallable("https://www.jenkins.io")) | ||
)) | ||
); | ||
} | ||
}); | ||
} | ||
|
||
private static class URLBuilderCallable extends MasterToSlaveCallable<URL, Exception> { | ||
private String url; | ||
|
||
public URLBuilderCallable(String url) { | ||
this.url = url; | ||
} | ||
|
||
@Override | ||
public URL call() throws Exception { | ||
return new URL(url); | ||
} | ||
} | ||
|
||
@Test | ||
@Issue("SECURITY-637") | ||
public void urlSafeDeserialization_urlBuiltInMaster_inSameJVMRemotingContext() { | ||
rr.addStep(new Statement() { | ||
@Override | ||
public void evaluate() throws Exception { | ||
DumbSlave slave = rr.j.createOnlineSlave(); | ||
|
||
// we bypass the standard equals method that resolve the hostname | ||
assertThat( | ||
slave.getChannel().call(new URLTransferCallable(new URL("https://jenkins.io"))), | ||
not(equalTo( | ||
slave.getChannel().call(new URLTransferCallable(new URL("https://www.jenkins.io"))) | ||
)) | ||
); | ||
|
||
// due to the DNS resolution they are equal | ||
assertEquals( | ||
new URL("https://jenkins.io"), | ||
new URL("https://www.jenkins.io") | ||
); | ||
} | ||
}); | ||
} | ||
|
||
// the URL is serialized / deserialized twice, master => agent and then agent => master | ||
private static class URLTransferCallable extends MasterToSlaveCallable<URL, Exception> { | ||
private URL url; | ||
|
||
public URLTransferCallable(URL url) { | ||
this.url = url; | ||
} | ||
|
||
@Override | ||
public URL call() throws Exception { | ||
return url; | ||
} | ||
} | ||
|
||
@Test | ||
@Issue("SECURITY-637") | ||
public void urlSafeDeserialization_inXStreamContext() { | ||
rr.addStep(new Statement() { | ||
@Override | ||
public void evaluate() throws Exception { | ||
FreeStyleProject project = rr.j.createFreeStyleProject("project-with-url"); | ||
URLJobProperty URLJobProperty = new URLJobProperty( | ||
// url to be wrapped | ||
new URL("https://www.google.com/"), | ||
// safe url, not required to be wrapped | ||
new URL("https", null, -1, "", null) | ||
); | ||
project.addProperty(URLJobProperty); | ||
|
||
project.save(); | ||
} | ||
}); | ||
|
||
rr.addStep(new Statement() { | ||
@Override | ||
public void evaluate() throws Exception { | ||
FreeStyleProject project = rr.j.jenkins.getItemByFullName("project-with-url", FreeStyleProject.class); | ||
assertNotNull(project); | ||
|
||
Field handlerField = URL.class.getDeclaredField("handler"); | ||
handlerField.setAccessible(true); | ||
|
||
URLJobProperty urlJobProperty = project.getProperty(URLJobProperty.class); | ||
for (URL url : urlJobProperty.urlSet) { | ||
URLStreamHandler handler = (URLStreamHandler) handlerField.get(url); | ||
if (StringUtils.isEmpty(url.getHost())) { | ||
assertThat(handler.getClass().getName(), not(containsString("SafeURLStreamHandler"))); | ||
} else { | ||
assertThat(handler.getClass().getName(), containsString("SafeURLStreamHandler")); | ||
} | ||
} | ||
} | ||
}); | ||
} | ||
|
||
public static class URLJobProperty extends JobProperty<FreeStyleProject> { | ||
|
||
private Set<URL> urlSet; | ||
|
||
public URLJobProperty(URL... urls) throws Exception { | ||
this.urlSet = new HashSet<>(); | ||
for (URL url : urls) { | ||
urlSet.add(url); | ||
} | ||
} | ||
|
||
@Override | ||
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException { | ||
return true; | ||
} | ||
|
||
@TestExtension("urlSafeDeserialization_inXStreamContext") | ||
public static class DescriptorImpl extends JobPropertyDescriptor {} | ||
} | ||
} |