You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2022/09/04 07:39:34 UTC

[groovy] 01/01: GROOVY-10747: Fix illegal access for object clone on JDK16+

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch GROOVY-10747
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit df3d21e0f08cf057d852cea5a21a89ac702053af
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sun Sep 4 15:39:13 2022 +0800

    GROOVY-10747: Fix illegal access for object clone on JDK16+
---
 .../org/codehaus/groovy/runtime/ObjectUtil.java    | 82 ++++++++++++++++++++++
 .../org/codehaus/groovy/vmplugin/v8/Selector.java  | 13 ++--
 src/test/groovy/bugs/Groovy9103.groovy             | 33 ++++++++-
 3 files changed, 123 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/codehaus/groovy/runtime/ObjectUtil.java b/src/main/java/org/codehaus/groovy/runtime/ObjectUtil.java
new file mode 100644
index 0000000000..c64b687398
--- /dev/null
+++ b/src/main/java/org/codehaus/groovy/runtime/ObjectUtil.java
@@ -0,0 +1,82 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you under the Apache License, Version 2.0 (the
+ *  "License"); you may not use this file except in compliance
+ *  with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing,
+ *  software distributed under the License is distributed on an
+ *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ *  KIND, either express or implied.  See the License for the
+ *  specific language governing permissions and limitations
+ *  under the License.
+ */
+package org.codehaus.groovy.runtime;
+
+import org.codehaus.groovy.GroovyBugError;
+
+import java.lang.invoke.MethodHandle;
+import java.lang.invoke.MethodHandles;
+import java.lang.reflect.Method;
+
+/**
+ * Util for cloning object with checks
+ * @since 4.0.5
+ */
+public class ObjectUtil {
+    /**
+     * Clone the specified object
+     *
+     * @param object the object to clone
+     * @return the cloned object
+     * @param <T> the object type
+     * @throws Throwable some exception or error
+     * @since 4.0.5
+     */
+    public static <T> T cloneObject(T object) throws Throwable {
+        if (null == object) return null;
+        if (!(object instanceof Cloneable)) throw new CloneNotSupportedException(object.getClass().getName());
+
+        final Method cloneMethod = object.getClass().getMethod("clone");
+        final MethodHandle cloneMethodHandle = MethodHandles.lookup().in(object.getClass()).unreflect(cloneMethod);
+
+        return (T) cloneMethodHandle.invokeWithArguments(object);
+    }
+
+    /**
+     * Returns the method handle of {@link ObjectUtil#cloneObject(Object)}
+     *
+     * @return the method handle
+     * @since 4.0.5
+     */
+    public static MethodHandle getCloneObjectMethodHandle() {
+        return MethodHandleHolder.CLONE_OBJECT_METHOD_HANDLE;
+    }
+
+    private static class MethodHandleHolder {
+        private static final MethodHandle CLONE_OBJECT_METHOD_HANDLE;
+        static {
+            final Class<ObjectUtil> objectUtilClass = ObjectUtil.class;
+            Method cloneObjectMethod;
+            try {
+                cloneObjectMethod = objectUtilClass.getDeclaredMethod("cloneObject", Object.class);
+            } catch (NoSuchMethodException e) {
+                throw new GroovyBugError("Failed to find `cloneObject` method in class `" + objectUtilClass.getName() + "`", e);
+            }
+
+            try {
+                CLONE_OBJECT_METHOD_HANDLE = MethodHandles.lookup().in(objectUtilClass).unreflect(cloneObjectMethod);
+            } catch (IllegalAccessException e) {
+                throw new GroovyBugError("Failed to create method handle for " + cloneObjectMethod);
+            }
+        }
+        private MethodHandleHolder() {}
+    }
+
+    private ObjectUtil() {}
+}
diff --git a/src/main/java/org/codehaus/groovy/vmplugin/v8/Selector.java b/src/main/java/org/codehaus/groovy/vmplugin/v8/Selector.java
index ed502974c7..aad14d1c5f 100644
--- a/src/main/java/org/codehaus/groovy/vmplugin/v8/Selector.java
+++ b/src/main/java/org/codehaus/groovy/vmplugin/v8/Selector.java
@@ -43,6 +43,7 @@ import org.codehaus.groovy.runtime.GeneratedClosure;
 import org.codehaus.groovy.runtime.GroovyCategorySupport;
 import org.codehaus.groovy.runtime.GroovyCategorySupport.CategoryMethod;
 import org.codehaus.groovy.runtime.NullObject;
+import org.codehaus.groovy.runtime.ObjectUtil;
 import org.codehaus.groovy.runtime.dgmimpl.NumberNumberMetaMethod;
 import org.codehaus.groovy.runtime.metaclass.ClosureMetaClass;
 import org.codehaus.groovy.runtime.metaclass.MetaClassRegistryImpl;
@@ -680,11 +681,15 @@ public abstract class Selector {
             final Class<?> declaringClass = m.getDeclaringClass();
             if (declaringClass == Class.class && parameterCount == 1 && methodName.equals("forName")) {
                 return MethodHandles.insertArguments(CLASS_FOR_NAME, 1, true, sender.getClassLoader());
-            } else if (declaringClass == Object.class && parameterCount == 0 && methodName.equals("clone") && null != args && 1 == args.length && args[0].getClass().isArray()) {
-                return ArrayUtil.getCloneArrayMethodHandle();
-            } else {
-                return LOOKUP.unreflect(m);
+            } else if (declaringClass == Object.class && parameterCount == 0 && methodName.equals("clone") && null != args && 1 == args.length) {
+                if (args[0].getClass().isArray()) {
+                    return ArrayUtil.getCloneArrayMethodHandle();
+                }
+
+                return ObjectUtil.getCloneObjectMethodHandle();
             }
+
+            return LOOKUP.unreflect(m);
         }
 
         /**
diff --git a/src/test/groovy/bugs/Groovy9103.groovy b/src/test/groovy/bugs/Groovy9103.groovy
index 721344f0c6..04b6f1608d 100644
--- a/src/test/groovy/bugs/Groovy9103.groovy
+++ b/src/test/groovy/bugs/Groovy9103.groovy
@@ -21,8 +21,8 @@ package groovy.bugs
 import org.junit.Test
 
 import static groovy.test.GroovyAssert.assertScript
+import static groovy.test.GroovyAssert.shouldFail
 
-// TODO: add JVM option `--illegal-access=deny` when all warnings fixed
 final class Groovy9103 {
 
     @Test
@@ -78,4 +78,35 @@ final class Groovy9103 {
             assert nums == cloned
         '''
     }
+
+    @Test
+    void testClone5() {
+        ['Object', 'Dolly'].each { typeName ->
+            assertScript """
+                class Dolly implements Cloneable {
+                    String name
+
+                    public ${typeName} clone() {
+                        return super.clone()
+                    }
+                }
+
+                def dolly = new Dolly(name: "The Sheep")
+                def cloned = dolly.clone()
+                assert cloned instanceof Dolly
+            """
+        }
+    }
+
+    @Test
+    void testClone6() {
+        shouldFail(CloneNotSupportedException, '''
+            class Dolly {
+                String name
+            }
+
+            def dolly = new Dolly(name: "The Sheep")
+            dolly.clone()
+        ''')
+    }
 }