Skip to content

Commit 1ff48ff

Browse files
authoredJul 19, 2017
Merge pull request #134 from jenkinsci/MissingMethodException
[JENKINS-37129] unclassified method vs MethodMissingException
2 parents 8197245 + 950c4f4 commit 1ff48ff

File tree

2 files changed

+33
-5
lines changed

2 files changed

+33
-5
lines changed
 

‎src/main/java/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/SandboxInterceptor.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
import groovy.lang.GroovyRuntimeException;
2828
import groovy.lang.MetaMethod;
29+
import groovy.lang.MissingMethodException;
2930
import groovy.lang.MissingPropertyException;
3031
import groovy.lang.Script;
3132
import hudson.Functions;
@@ -110,7 +111,8 @@ final class SandboxInterceptor extends GroovyInterceptor {
110111
return super.onMethodCall(invoker, receiver, method, args);
111112
}
112113

113-
throw new RejectedAccessException("unclassified method " + EnumeratingWhitelist.getName(receiver.getClass()) + " " + method + printArgumentTypes(args));
114+
// no such method exists
115+
throw new MissingMethodException(method, receiver.getClass(), args);
114116
} else if (whitelist.permitsMethod(m, receiver, args)) {
115117
return super.onMethodCall(invoker, receiver, method, args);
116118
} else if (method.equals("invokeMethod") && args.length == 2 && args[0] instanceof String && args[1] instanceof Object[]) {

‎src/test/java/org/jenkinsci/plugins/scriptsecurity/sandbox/groovy/SandboxInterceptorTest.java

+30-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424

2525
package org.jenkinsci.plugins.scriptsecurity.sandbox.groovy;
2626

27-
import static org.junit.Assert.assertEquals;
28-
import static org.junit.Assert.assertFalse;
29-
import static org.junit.Assert.assertNotNull;
30-
import static org.junit.Assert.assertTrue;
3127
import groovy.json.JsonBuilder;
3228
import groovy.json.JsonDelegate;
3329
import groovy.lang.GString;
@@ -37,6 +33,7 @@
3733
import groovy.lang.GroovyShell;
3834
import groovy.lang.GroovySystem;
3935
import groovy.lang.MetaMethod;
36+
import groovy.lang.MissingMethodException;
4037
import groovy.lang.MissingPropertyException;
4138
import groovy.lang.Script;
4239
import groovy.text.SimpleTemplateEngine;
@@ -47,6 +44,7 @@
4744
import java.lang.reflect.Method;
4845
import java.net.URL;
4946
import java.text.DateFormat;
47+
import java.util.ArrayList;
5048
import java.util.Arrays;
5149
import java.util.Collections;
5250
import java.util.Date;
@@ -73,6 +71,9 @@
7371
import org.junit.Test;
7472
import org.jvnet.hudson.test.Issue;
7573

74+
import static org.hamcrest.CoreMatchers.*;
75+
import static org.junit.Assert.*;
76+
7677
public class SandboxInterceptorTest {
7778

7879
@Test public void genericWhitelist() throws Exception {
@@ -709,4 +710,29 @@ public static void assertRejected(Whitelist whitelist, String expectedSignature,
709710
}
710711
}
711712

713+
@Issue("JENKINS-37129")
714+
@Test public void methodMissingException() throws Exception {
715+
// the case where the unsafe receiver type causes the security check to fail
716+
try {
717+
assertEvaluate(new GenericWhitelist(), "should fail", "[].noSuchMethod()");
718+
} catch (MissingMethodException e) {
719+
assertEquals(e.getType(),ArrayList.class);
720+
assertThat(e.getMethod(),is("noSuchMethod"));
721+
}
722+
723+
// trying to call an existing method that's not safe
724+
try {
725+
assertEvaluate(new GenericWhitelist(), "should fail", "[].class.classLoader");
726+
} catch (RejectedAccessException e) {
727+
assertEquals("method java.lang.Class getClassLoader", e.getSignature());
728+
}
729+
730+
// the case where the safe receiver type causes the security check to pass
731+
try {
732+
assertEvaluate(new GenericWhitelist(), "should fail", "1.noSuchMethod()");
733+
} catch (MissingMethodException e) {
734+
assertEquals(e.getType(),Integer.class);
735+
assertThat(e.getMethod(),is("noSuchMethod"));
736+
}
737+
}
712738
}

0 commit comments

Comments
 (0)
Please sign in to comment.