Skip to content

Commit d14e375

Browse files
committedAug 1, 2024
8337585: [lworld] VM crashes if primitive type signatures are present in the LoadableDescriptors attribute
Reviewed-by: coleenp
1 parent 39b4d21 commit d14e375

File tree

3 files changed

+116
-1
lines changed

3 files changed

+116
-1
lines changed
 

‎src/hotspot/share/oops/instanceKlass.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1026,6 +1026,7 @@ bool InstanceKlass::link_class_impl(TRAPS) {
10261026
HandleMark hm(THREAD);
10271027
for (int i = 0; i < loadable_descriptors()->length(); i++) {
10281028
Symbol* sig = constants()->symbol_at(loadable_descriptors()->at(i));
1029+
if (!Signature::has_envelope(sig)) continue;
10291030
TempNewSymbol class_name = Signature::strip_envelope(sig);
10301031
if (class_name == name()) continue;
10311032
log_info(class, preload)("Preloading class %s during linking of class %s because of the class is listed in the LoadableDescriptors attribute", sig->as_C_string(), name()->as_C_string());

‎test/hotspot/jtreg/runtime/valhalla/inlinetypes/classfileparser/ValueClassValidation.java

+3
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,8 @@ public static void main(String[] args) throws Exception {
111111

112112
// Test an abstract value class with a non-static synchronized method
113113
runTest("SynchMethodInAbstractValue", "Method m in class SynchMethodInAbstractValue (not an identity class) has illegal modifiers: 0x21", null);
114+
115+
// Test a class with a primitive descriptor in its LoadableDescriptors attribute:
116+
runTest("PrimitiveInLoadableDescriptors", null, null);
114117
}
115118
}

‎test/hotspot/jtreg/runtime/valhalla/inlinetypes/classfileparser/cfpValueClassValidation.jcod

+112-1
Original file line numberDiff line numberDiff line change
@@ -1144,4 +1144,115 @@ class SynchMethodInAbstractValue {
11441144
#14;
11451145
} // end SourceFile
11461146
} // Attributes
1147-
} // end class SynchMethodInAbstractValue
1147+
} // end class SynchMethodInAbstractValue
1148+
1149+
// Class to test invalid entries in LoadableDescriptors Attributes
1150+
// Class generated from this source:
1151+
// public class PrimitiveInLoadableDescriptors {
1152+
// int i;
1153+
// void foo(Integer i) { }
1154+
// }
1155+
1156+
class PrimitiveInLoadableDescriptors {
1157+
0xCAFEBABE;
1158+
65535; // minor version
1159+
67; // version
1160+
[] { // Constant Pool
1161+
; // first element is empty
1162+
Method #2 #3; // #1
1163+
class #4; // #2
1164+
NameAndType #5 #6; // #3
1165+
Utf8 "java/lang/Object"; // #4
1166+
Utf8 "<init>"; // #5
1167+
Utf8 "()V"; // #6
1168+
class #8; // #7
1169+
Utf8 "PrimitiveInLoadableDescriptors"; // #8
1170+
Utf8 "i"; // #9
1171+
Utf8 "I"; // #10
1172+
Utf8 "Code"; // #11
1173+
Utf8 "LineNumberTable"; // #12
1174+
Utf8 "foo"; // #13
1175+
Utf8 "(Ljava/lang/Integer;)V"; // #14
1176+
Utf8 "SourceFile"; // #15
1177+
Utf8 "PrimitiveInLoadableDescriptors.java"; // #16
1178+
Utf8 "LoadableDescriptors"; // #17
1179+
Utf8 "I"; // #18 // Modified from "Ljava/lang/Integer;" to "I"
1180+
} // Constant Pool
1181+
1182+
0x0021; // access
1183+
#7;// this_cpx
1184+
#2;// super_cpx
1185+
1186+
[] { // Interfaces
1187+
} // Interfaces
1188+
1189+
[] { // Fields
1190+
{ // field
1191+
0x0000; // access
1192+
#9; // name_index
1193+
#10; // descriptor_index
1194+
[] { // Attributes
1195+
} // Attributes
1196+
}
1197+
} // Fields
1198+
1199+
[] { // Methods
1200+
{ // method
1201+
0x0001; // access
1202+
#5; // name_index
1203+
#6; // descriptor_index
1204+
[] { // Attributes
1205+
Attr(#11) { // Code
1206+
1; // max_stack
1207+
1; // max_locals
1208+
Bytes[]{
1209+
0x2AB70001B1;
1210+
}
1211+
[] { // Traps
1212+
} // end Traps
1213+
[] { // Attributes
1214+
Attr(#12) { // LineNumberTable
1215+
[] { // line_number_table
1216+
0 1;
1217+
}
1218+
} // end LineNumberTable
1219+
} // Attributes
1220+
} // end Code
1221+
} // Attributes
1222+
}
1223+
;
1224+
{ // method
1225+
0x0000; // access
1226+
#13; // name_index
1227+
#14; // descriptor_index
1228+
[] { // Attributes
1229+
Attr(#11) { // Code
1230+
0; // max_stack
1231+
2; // max_locals
1232+
Bytes[]{
1233+
0xB1;
1234+
}
1235+
[] { // Traps
1236+
} // end Traps
1237+
[] { // Attributes
1238+
Attr(#12) { // LineNumberTable
1239+
[] { // line_number_table
1240+
0 3;
1241+
}
1242+
} // end LineNumberTable
1243+
} // Attributes
1244+
} // end Code
1245+
} // Attributes
1246+
}
1247+
} // Methods
1248+
1249+
[] { // Attributes
1250+
Attr(#15) { // SourceFile
1251+
#16;
1252+
} // end SourceFile
1253+
;
1254+
Attr(#17) { // LoadableDescriptors
1255+
0x00010012;
1256+
} // end LoadableDescriptors
1257+
} // Attributes
1258+
} // end class PrimitiveInLoadableDescriptors

0 commit comments

Comments
 (0)
Please sign in to comment.