-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GR-42113] Fixes for serialization reflection registration.
PullRequest: graal/15226
- Loading branch information
Showing
12 changed files
with
347 additions
and
54 deletions.
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
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
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
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
52 changes: 52 additions & 0 deletions
52
...core/src/com/oracle/svm/core/reflect/serialize/MissingSerializationRegistrationError.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,52 @@ | ||
/* | ||
* Copyright (c) 2023, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package com.oracle.svm.core.reflect.serialize; | ||
|
||
import java.io.Serial; | ||
|
||
/** | ||
* Error thrown when types are not <a href= | ||
* "https://www.graalvm.org/latest/reference-manual/native-image/metadata/#serialization">registered</a> | ||
* for serialization or deserialization. | ||
* <p/> | ||
* The purpose of this exception is to easily discover unregistered elements and to assure that all | ||
* serialization or deserialization operations have expected behavior. | ||
*/ | ||
public final class MissingSerializationRegistrationError extends Error { | ||
@Serial private static final long serialVersionUID = 2764341882856270641L; | ||
private final Class<?> culprit; | ||
|
||
public MissingSerializationRegistrationError(String message, Class<?> cl) { | ||
super(message); | ||
this.culprit = cl; | ||
} | ||
|
||
/** | ||
* Returns the class that was not registered for serialization or deserialization. | ||
*/ | ||
public Class<?> getCulprit() { | ||
return culprit; | ||
} | ||
} |
91 changes: 91 additions & 0 deletions
91
...core/src/com/oracle/svm/core/reflect/serialize/MissingSerializationRegistrationUtils.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,91 @@ | ||
/* | ||
* Copyright (c) 2023, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package com.oracle.svm.core.reflect.serialize; | ||
|
||
import static com.oracle.svm.core.MissingRegistrationUtils.ERROR_EMPHASIS_INDENT; | ||
|
||
import java.io.ObjectInputStream; | ||
import java.io.ObjectOutputStream; | ||
import java.io.ObjectStreamClass; | ||
import java.util.Arrays; | ||
import java.util.Map; | ||
import java.util.Set; | ||
import java.util.stream.Collectors; | ||
|
||
import com.oracle.svm.core.MissingRegistrationUtils; | ||
|
||
public final class MissingSerializationRegistrationUtils { | ||
|
||
public static void missingSerializationRegistration(Class<?> cl, String... msg) { | ||
report(new MissingSerializationRegistrationError(errorMessage(msg), cl)); | ||
} | ||
|
||
private static String errorMessage(String... type) { | ||
var typeStr = Arrays.stream(type).collect(Collectors.joining(System.lineSeparator(), ERROR_EMPHASIS_INDENT, "")); | ||
return """ | ||
The program tried to serialize or deserialize | ||
%s | ||
without it being registered for serialization. Add this class to the serialization metadata to solve this problem. | ||
See https://www.graalvm.org/latest/reference-manual/native-image/metadata/#serialization for help | ||
""".replaceAll("\n", System.lineSeparator()) | ||
.formatted(typeStr); | ||
} | ||
|
||
private static void report(MissingSerializationRegistrationError exception) { | ||
StackTraceElement responsibleClass = getResponsibleClass(exception); | ||
MissingRegistrationUtils.report(exception, responsibleClass); | ||
} | ||
|
||
/* | ||
* This is a list of all public JDK methods that end up potentially throwing missing | ||
* registration errors. This should be implemented using wrapping substitutions once they are | ||
* available. | ||
*/ | ||
private static final Map<String, Set<String>> serializationEntryPoints = Map.of( | ||
ObjectOutputStream.class.getTypeName(), Set.of("writeObject", "writeUnshared"), | ||
ObjectInputStream.class.getTypeName(), Set.of("readObject", "readUnshared"), | ||
ObjectStreamClass.class.getTypeName(), Set.of("lookup"), | ||
"sun.reflect.ReflectionFactory", Set.of("newConstructorForSerialization"), | ||
"jdk.internal.reflect.ReflectionFactory", Set.of("newConstructorForSerialization")); | ||
|
||
private static StackTraceElement getResponsibleClass(MissingSerializationRegistrationError t) { | ||
StackTraceElement[] stackTrace = t.getStackTrace(); | ||
boolean previous = false; | ||
StackTraceElement lastElem = null; | ||
for (StackTraceElement stackTraceElement : stackTrace) { | ||
if (previous) { | ||
previous = false; | ||
lastElem = stackTraceElement; | ||
} | ||
if (serializationEntryPoints.getOrDefault(stackTraceElement.getClassName(), Set.of()) | ||
.contains(stackTraceElement.getMethodName())) { | ||
previous = true; | ||
} | ||
} | ||
return lastElem; | ||
} | ||
} |
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
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
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
Oops, something went wrong.