Skip to content

Commit 831e983

Browse files
committedJul 26, 2020
Merge
2 parents 091b0c9 + dfd3080 commit 831e983

File tree

29 files changed

+465
-353
lines changed

29 files changed

+465
-353
lines changed
 

‎src/hotspot/share/classfile/javaClasses.cpp

+5-25
Original file line numberDiff line numberDiff line change
@@ -1121,8 +1121,9 @@ void java_lang_Class::archive_basic_type_mirrors(TRAPS) {
11211121
assert(HeapShared::is_heap_object_archiving_allowed(),
11221122
"HeapShared::is_heap_object_archiving_allowed() must be true");
11231123

1124-
for (int t = 0; t <= T_VOID; t++) {
1125-
oop m = Universe::_mirrors[t];
1124+
for (int t = T_BOOLEAN; t < T_VOID+1; t++) {
1125+
BasicType bt = (BasicType)t;
1126+
oop m = Universe::_mirrors[t].resolve();
11261127
if (m != NULL) {
11271128
// Update the field at _array_klass_offset to point to the relocated array klass.
11281129
oop archived_m = HeapShared::archive_heap_object(m, THREAD);
@@ -1142,33 +1143,12 @@ void java_lang_Class::archive_basic_type_mirrors(TRAPS) {
11421143

11431144
log_trace(cds, heap, mirror)(
11441145
"Archived %s mirror object from " PTR_FORMAT " ==> " PTR_FORMAT,
1145-
type2name((BasicType)t), p2i(Universe::_mirrors[t]), p2i(archived_m));
1146+
type2name(bt), p2i(m), p2i(archived_m));
11461147

1147-
Universe::_mirrors[t] = archived_m;
1148+
Universe::replace_mirror(bt, archived_m);
11481149
}
11491150
}
1150-
1151-
assert(Universe::_mirrors[T_INT] != NULL &&
1152-
Universe::_mirrors[T_FLOAT] != NULL &&
1153-
Universe::_mirrors[T_DOUBLE] != NULL &&
1154-
Universe::_mirrors[T_BYTE] != NULL &&
1155-
Universe::_mirrors[T_BOOLEAN] != NULL &&
1156-
Universe::_mirrors[T_CHAR] != NULL &&
1157-
Universe::_mirrors[T_LONG] != NULL &&
1158-
Universe::_mirrors[T_SHORT] != NULL &&
1159-
Universe::_mirrors[T_VOID] != NULL, "sanity");
1160-
1161-
Universe::set_int_mirror(Universe::_mirrors[T_INT]);
1162-
Universe::set_float_mirror(Universe::_mirrors[T_FLOAT]);
1163-
Universe::set_double_mirror(Universe::_mirrors[T_DOUBLE]);
1164-
Universe::set_byte_mirror(Universe::_mirrors[T_BYTE]);
1165-
Universe::set_bool_mirror(Universe::_mirrors[T_BOOLEAN]);
1166-
Universe::set_char_mirror(Universe::_mirrors[T_CHAR]);
1167-
Universe::set_long_mirror(Universe::_mirrors[T_LONG]);
1168-
Universe::set_short_mirror(Universe::_mirrors[T_SHORT]);
1169-
Universe::set_void_mirror(Universe::_mirrors[T_VOID]);
11701151
}
1171-
11721152
//
11731153
// After the mirror object is successfully archived, the archived
11741154
// klass is set with _has_archived_raw_mirror flag.

‎src/hotspot/share/memory/metaspaceShared.cpp

+2-15
Original file line numberDiff line numberDiff line change
@@ -714,19 +714,6 @@ static void remove_java_mirror_in_classes() {
714714
}
715715
}
716716

717-
static void clear_basic_type_mirrors() {
718-
assert(!HeapShared::is_heap_object_archiving_allowed(), "Sanity");
719-
Universe::set_int_mirror(NULL);
720-
Universe::set_float_mirror(NULL);
721-
Universe::set_double_mirror(NULL);
722-
Universe::set_byte_mirror(NULL);
723-
Universe::set_bool_mirror(NULL);
724-
Universe::set_char_mirror(NULL);
725-
Universe::set_long_mirror(NULL);
726-
Universe::set_short_mirror(NULL);
727-
Universe::set_void_mirror(NULL);
728-
}
729-
730717
static void rewrite_nofast_bytecode(const methodHandle& method) {
731718
BytecodeStream bcs(method);
732719
while (!bcs.is_last_bytecode()) {
@@ -1540,7 +1527,7 @@ char* VM_PopulateDumpSharedSpace::dump_read_only_tables() {
15401527

15411528
log_info(cds)("Removing java_mirror ... ");
15421529
if (!HeapShared::is_heap_object_archiving_allowed()) {
1543-
clear_basic_type_mirrors();
1530+
Universe::clear_basic_type_mirrors();
15441531
}
15451532
remove_java_mirror_in_classes();
15461533
log_info(cds)("done. ");
@@ -2092,7 +2079,7 @@ void ReadClosure::do_tag(int tag) {
20922079
void ReadClosure::do_oop(oop *p) {
20932080
narrowOop o = (narrowOop)nextPtr();
20942081
if (o == 0 || !HeapShared::open_archive_heap_region_mapped()) {
2095-
p = NULL;
2082+
*p = NULL;
20962083
} else {
20972084
assert(HeapShared::is_heap_object_archiving_allowed(),
20982085
"Archived heap object is not allowed");

‎src/hotspot/share/memory/universe.cpp

+70-76
Original file line numberDiff line numberDiff line change
@@ -88,25 +88,10 @@
8888
#include "utilities/ostream.hpp"
8989
#include "utilities/preserveException.hpp"
9090

91-
#define PRIMITIVE_MIRRORS_DO(func) \
92-
func(_int_mirror) \
93-
func(_float_mirror) \
94-
func(_double_mirror) \
95-
func(_byte_mirror) \
96-
func(_bool_mirror) \
97-
func(_char_mirror) \
98-
func(_long_mirror) \
99-
func(_short_mirror) \
100-
func(_void_mirror)
101-
102-
#define DEFINE_PRIMITIVE_MIRROR(m) \
103-
oop Universe::m = NULL;
104-
10591
// Known objects
106-
PRIMITIVE_MIRRORS_DO(DEFINE_PRIMITIVE_MIRROR)
10792
Klass* Universe::_typeArrayKlassObjs[T_LONG+1] = { NULL /*, NULL...*/ };
10893
Klass* Universe::_objectArrayKlassObj = NULL;
109-
oop Universe::_mirrors[T_VOID+1] = { NULL /*, NULL...*/ };
94+
OopHandle Universe::_mirrors[T_VOID+1];
11095

11196
OopHandle Universe::_main_thread_group;
11297
OopHandle Universe::_system_thread_group;
@@ -197,6 +182,35 @@ oop Universe::virtual_machine_error_instance() { return _virtual_machine_erro
197182

198183
oop Universe::the_null_sentinel() { return _the_null_sentinel.resolve(); }
199184

185+
oop Universe::int_mirror() { return check_mirror(_mirrors[T_INT].resolve()); }
186+
oop Universe::float_mirror() { return check_mirror(_mirrors[T_FLOAT].resolve()); }
187+
oop Universe::double_mirror() { return check_mirror(_mirrors[T_DOUBLE].resolve()); }
188+
oop Universe::byte_mirror() { return check_mirror(_mirrors[T_BYTE].resolve()); }
189+
oop Universe::bool_mirror() { return check_mirror(_mirrors[T_BOOLEAN].resolve()); }
190+
oop Universe::char_mirror() { return check_mirror(_mirrors[T_CHAR].resolve()); }
191+
oop Universe::long_mirror() { return check_mirror(_mirrors[T_LONG].resolve()); }
192+
oop Universe::short_mirror() { return check_mirror(_mirrors[T_SHORT].resolve()); }
193+
oop Universe::void_mirror() { return check_mirror(_mirrors[T_VOID].resolve()); }
194+
195+
oop Universe::java_mirror(BasicType t) {
196+
assert((uint)t < T_VOID+1, "range check");
197+
return check_mirror(_mirrors[t].resolve());
198+
}
199+
200+
// Used by CDS dumping
201+
void Universe::replace_mirror(BasicType t, oop new_mirror) {
202+
Universe::_mirrors[t].replace(new_mirror);
203+
}
204+
205+
// Not sure why CDS has to do this
206+
void Universe::clear_basic_type_mirrors() {
207+
for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
208+
if (!is_reference_type((BasicType)i)) {
209+
Universe::_mirrors[i].replace(NULL);
210+
}
211+
}
212+
}
213+
200214
void Universe::basic_type_classes_do(void f(Klass*)) {
201215
for (int i = T_BOOLEAN; i < T_LONG+1; i++) {
202216
f(_typeArrayKlassObjs[i]);
@@ -209,16 +223,7 @@ void Universe::basic_type_classes_do(KlassClosure *closure) {
209223
}
210224
}
211225

212-
#define DO_PRIMITIVE_MIRROR(m) \
213-
f->do_oop((oop*) &m);
214-
215226
void Universe::oops_do(OopClosure* f) {
216-
PRIMITIVE_MIRRORS_DO(DO_PRIMITIVE_MIRROR);
217-
218-
for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
219-
f->do_oop(&_mirrors[i]);
220-
}
221-
assert(_mirrors[0] == NULL && _mirrors[T_BOOLEAN - 1] == NULL, "checking");
222227

223228
f->do_oop(&_reference_pending_list);
224229
ThreadsSMRSupport::exiting_threads_oops_do(f);
@@ -248,29 +253,36 @@ void Universe::metaspace_pointers_do(MetaspaceClosure* it) {
248253
_do_stack_walk_cache->metaspace_pointers_do(it);
249254
}
250255

251-
#define ASSERT_MIRROR_NULL(m) \
252-
assert(m == NULL, "archived mirrors should be NULL");
253-
254-
#define SERIALIZE_MIRROR(m) \
255-
f->do_oop(&m); \
256-
if (m != NULL) { java_lang_Class::update_archived_primitive_mirror_native_pointers(m); }
257-
258256
// Serialize metadata and pointers to primitive type mirrors in and out of CDS archive
259257
void Universe::serialize(SerializeClosure* f) {
260258

259+
#if INCLUDE_CDS_JAVA_HEAP
260+
{
261+
oop mirror_oop;
262+
for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
263+
if (f->reading()) {
264+
f->do_oop(&mirror_oop); // read from archive
265+
assert(oopDesc::is_oop_or_null(mirror_oop), "is oop");
266+
// Only create an OopHandle for non-null mirrors
267+
if (mirror_oop != NULL) {
268+
_mirrors[i] = OopHandle(vm_global(), mirror_oop);
269+
}
270+
} else {
271+
mirror_oop = _mirrors[i].resolve();
272+
f->do_oop(&mirror_oop); // write to archive
273+
}
274+
if (mirror_oop != NULL) { // may be null if archived heap is disabled
275+
java_lang_Class::update_archived_primitive_mirror_native_pointers(mirror_oop);
276+
}
277+
}
278+
}
279+
#endif
280+
261281
for (int i = 0; i < T_LONG+1; i++) {
262282
f->do_ptr((void**)&_typeArrayKlassObjs[i]);
263283
}
264284

265285
f->do_ptr((void**)&_objectArrayKlassObj);
266-
267-
#if INCLUDE_CDS_JAVA_HEAP
268-
DEBUG_ONLY(if (DumpSharedSpaces && !HeapShared::is_heap_object_archiving_allowed()) {
269-
PRIMITIVE_MIRRORS_DO(ASSERT_MIRROR_NULL);
270-
});
271-
PRIMITIVE_MIRRORS_DO(SERIALIZE_MIRROR);
272-
#endif
273-
274286
f->do_ptr((void**)&_the_array_interfaces_array);
275287
f->do_ptr((void**)&_the_empty_int_array);
276288
f->do_ptr((void**)&_the_empty_short_array);
@@ -284,6 +296,7 @@ void Universe::serialize(SerializeClosure* f) {
284296
_do_stack_walk_cache->serialize(f);
285297
}
286298

299+
287300
void Universe::check_alignment(uintx size, uintx alignment, const char* name) {
288301
if (size < alignment || size % alignment != 0) {
289302
vm_exit_during_initialization(
@@ -435,51 +448,32 @@ void Universe::genesis(TRAPS) {
435448
#endif
436449
}
437450

438-
#define ASSERT_MIRROR_NOT_NULL(m) \
439-
assert(m != NULL, "archived mirrors should not be NULL");
440-
441451
void Universe::initialize_basic_type_mirrors(TRAPS) {
442452
#if INCLUDE_CDS_JAVA_HEAP
443453
if (UseSharedSpaces &&
444454
HeapShared::open_archive_heap_region_mapped() &&
445-
_int_mirror != NULL) {
455+
_mirrors[T_INT].resolve() != NULL) {
446456
assert(HeapShared::is_heap_object_archiving_allowed(), "Sanity");
447-
PRIMITIVE_MIRRORS_DO(ASSERT_MIRROR_NOT_NULL);
457+
458+
// check that all mirrors are mapped also
459+
for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
460+
if (!is_reference_type((BasicType)i)) {
461+
oop m = _mirrors[i].resolve();
462+
assert(m != NULL, "archived mirrors should not be NULL");
463+
}
464+
}
448465
} else
449-
// _int_mirror could be NULL if archived heap is not mapped.
466+
// _mirror[T_INT} could be NULL if archived heap is not mapped.
450467
#endif
451468
{
452-
_int_mirror =
453-
java_lang_Class::create_basic_type_mirror("int", T_INT, CHECK);
454-
_float_mirror =
455-
java_lang_Class::create_basic_type_mirror("float", T_FLOAT, CHECK);
456-
_double_mirror =
457-
java_lang_Class::create_basic_type_mirror("double", T_DOUBLE, CHECK);
458-
_byte_mirror =
459-
java_lang_Class::create_basic_type_mirror("byte", T_BYTE, CHECK);
460-
_bool_mirror =
461-
java_lang_Class::create_basic_type_mirror("boolean",T_BOOLEAN, CHECK);
462-
_char_mirror =
463-
java_lang_Class::create_basic_type_mirror("char", T_CHAR, CHECK);
464-
_long_mirror =
465-
java_lang_Class::create_basic_type_mirror("long", T_LONG, CHECK);
466-
_short_mirror =
467-
java_lang_Class::create_basic_type_mirror("short", T_SHORT, CHECK);
468-
_void_mirror =
469-
java_lang_Class::create_basic_type_mirror("void", T_VOID, CHECK);
469+
for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
470+
BasicType bt = (BasicType)i;
471+
if (!is_reference_type(bt)) {
472+
oop m = java_lang_Class::create_basic_type_mirror(type2name(bt), bt, CHECK);
473+
_mirrors[i] = OopHandle(vm_global(), m);
474+
}
475+
}
470476
}
471-
472-
_mirrors[T_INT] = _int_mirror;
473-
_mirrors[T_FLOAT] = _float_mirror;
474-
_mirrors[T_DOUBLE] = _double_mirror;
475-
_mirrors[T_BYTE] = _byte_mirror;
476-
_mirrors[T_BOOLEAN] = _bool_mirror;
477-
_mirrors[T_CHAR] = _char_mirror;
478-
_mirrors[T_LONG] = _long_mirror;
479-
_mirrors[T_SHORT] = _short_mirror;
480-
_mirrors[T_VOID] = _void_mirror;
481-
//_mirrors[T_OBJECT] = _object_klass->java_mirror();
482-
//_mirrors[T_ARRAY] = _object_klass->java_mirror();
483477
}
484478

485479
void Universe::fixup_mirrors(TRAPS) {

‎src/hotspot/share/memory/universe.hpp

+19-40
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -95,18 +95,6 @@ class Universe: AllStatic {
9595
static Klass* _objectArrayKlassObj;
9696

9797
// Known objects in the VM
98-
99-
// Primitive objects
100-
static oop _int_mirror;
101-
static oop _float_mirror;
102-
static oop _double_mirror;
103-
static oop _byte_mirror;
104-
static oop _bool_mirror;
105-
static oop _char_mirror;
106-
static oop _long_mirror;
107-
static oop _short_mirror;
108-
static oop _void_mirror;
109-
11098
static OopHandle _main_thread_group; // Reference to the main thread group object
11199
static OopHandle _system_thread_group; // Reference to the system thread group object
112100

@@ -232,33 +220,24 @@ class Universe: AllStatic {
232220
}
233221

234222
// Known objects in the VM
235-
static oop int_mirror() { return check_mirror(_int_mirror); }
236-
static oop float_mirror() { return check_mirror(_float_mirror); }
237-
static oop double_mirror() { return check_mirror(_double_mirror); }
238-
static oop byte_mirror() { return check_mirror(_byte_mirror); }
239-
static oop bool_mirror() { return check_mirror(_bool_mirror); }
240-
static oop char_mirror() { return check_mirror(_char_mirror); }
241-
static oop long_mirror() { return check_mirror(_long_mirror); }
242-
static oop short_mirror() { return check_mirror(_short_mirror); }
243-
static oop void_mirror() { return check_mirror(_void_mirror); }
244-
245-
static void set_int_mirror(oop m) { _int_mirror = m; }
246-
static void set_float_mirror(oop m) { _float_mirror = m; }
247-
static void set_double_mirror(oop m) { _double_mirror = m; }
248-
static void set_byte_mirror(oop m) { _byte_mirror = m; }
249-
static void set_bool_mirror(oop m) { _bool_mirror = m; }
250-
static void set_char_mirror(oop m) { _char_mirror = m; }
251-
static void set_long_mirror(oop m) { _long_mirror = m; }
252-
static void set_short_mirror(oop m) { _short_mirror = m; }
253-
static void set_void_mirror(oop m) { _void_mirror = m; }
254-
255-
// table of same
256-
static oop _mirrors[T_VOID+1];
257-
258-
static oop java_mirror(BasicType t) {
259-
assert((uint)t < T_VOID+1, "range check");
260-
return check_mirror(_mirrors[t]);
261-
}
223+
static oop int_mirror();
224+
static oop float_mirror();
225+
static oop double_mirror();
226+
static oop byte_mirror();
227+
static oop bool_mirror();
228+
static oop char_mirror();
229+
static oop long_mirror();
230+
static oop short_mirror();
231+
static oop void_mirror();
232+
233+
// Table of primitive type mirrors, excluding T_OBJECT and T_ARRAY
234+
// but including T_VOID, hence the index including T_VOID
235+
static OopHandle _mirrors[T_VOID+1];
236+
237+
static oop java_mirror(BasicType t);
238+
static void replace_mirror(BasicType t, oop obj);
239+
static void clear_basic_type_mirrors();
240+
262241
static oop main_thread_group();
263242
static void set_main_thread_group(oop group);
264243

‎src/java.base/share/classes/java/net/Authenticator.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -74,6 +74,11 @@ class Authenticator {
7474
private RequestorType requestingAuthType;
7575
private final String key = AuthenticatorKeys.computeKey(this);
7676

77+
/**
78+
* Constructor for subclasses to call.
79+
*/
80+
public Authenticator() {}
81+
7782
/**
7883
* The type of the entity requesting authentication.
7984
*

‎src/java.base/share/classes/java/net/CacheRequest.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -43,6 +43,11 @@
4343
*/
4444
public abstract class CacheRequest {
4545

46+
/**
47+
* Constructor for subclasses to call.
48+
*/
49+
public CacheRequest() {}
50+
4651
/**
4752
* Returns an OutputStream to which the response body can be
4853
* written.

‎src/java.base/share/classes/java/net/CacheResponse.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -41,6 +41,11 @@
4141
*/
4242
public abstract class CacheResponse {
4343

44+
/**
45+
* Constructor for subclasses to call.
46+
*/
47+
public CacheResponse() {}
48+
4449
/**
4550
* Returns the response headers as a Map.
4651
*

‎src/java.base/share/classes/java/net/ContentHandler.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1995, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -83,6 +83,11 @@
8383
*/
8484
public abstract class ContentHandler {
8585

86+
/**
87+
* Constructor for subclasses to call.
88+
*/
89+
public ContentHandler() {}
90+
8691
/**
8792
* Given a URL connect stream positioned at the beginning of the
8893
* representation of an object, this method reads that stream and

‎src/java.base/share/classes/java/net/CookieHandler.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -50,6 +50,11 @@
5050
* @since 1.5
5151
*/
5252
public abstract class CookieHandler {
53+
/**
54+
* Constructor for subclasses to call.
55+
*/
56+
public CookieHandler() {}
57+
5358
/**
5459
* The system-wide cookie handler that will apply cookies to the
5560
* request headers and manage cookies from the response headers.

‎src/java.base/share/classes/java/net/DatagramSocketImpl.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -57,6 +57,11 @@
5757

5858
public abstract class DatagramSocketImpl implements SocketOptions {
5959

60+
/**
61+
* Constructor for subclasses to call.
62+
*/
63+
public DatagramSocketImpl() {}
64+
6065
/**
6166
* The local port number.
6267
*/

‎src/java.base/share/classes/java/net/ProxySelector.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -80,6 +80,11 @@ public abstract class ProxySelector {
8080
}
8181
}
8282

83+
/**
84+
* Constructor for subclasses to call.
85+
*/
86+
public ProxySelector() {}
87+
8388
/**
8489
* Gets the system-wide proxy selector.
8590
*

‎src/java.base/share/classes/java/net/ResponseCache.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -60,6 +60,11 @@
6060
*/
6161
public abstract class ResponseCache {
6262

63+
/**
64+
* Constructor for subclasses to call.
65+
*/
66+
public ResponseCache() {}
67+
6368
/**
6469
* The system wide cache that provides access to a url
6570
* caching mechanism.

‎src/java.base/share/classes/java/net/SecureCacheResponse.java

+5
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
* @since 1.5
4040
*/
4141
public abstract class SecureCacheResponse extends CacheResponse {
42+
/**
43+
* Constructor for subclasses to call.
44+
*/
45+
public SecureCacheResponse() {}
46+
4247
/**
4348
* Returns the cipher suite in use on the original connection that
4449
* retrieved the network resource.

‎src/java.base/share/classes/java/net/SocketAddress.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -43,4 +43,8 @@ public abstract class SocketAddress implements java.io.Serializable {
4343
@java.io.Serial
4444
static final long serialVersionUID = 5215720748342549866L;
4545

46+
/**
47+
* Constructor for subclasses to call.
48+
*/
49+
public SocketAddress() {}
4650
}

‎src/java.base/share/classes/java/net/URLDecoder.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -81,6 +81,12 @@
8181

8282
public class URLDecoder {
8383

84+
/**
85+
* Do not call.
86+
*/
87+
@Deprecated(since="16", forRemoval=true)
88+
public URLDecoder() {}
89+
8490
// The platform default encoding
8591
static String dfltEncName = URLEncoder.dfltEncName;
8692

‎src/java.base/share/classes/java/net/URLStreamHandler.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1995, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -51,6 +51,11 @@
5151
* @since 1.0
5252
*/
5353
public abstract class URLStreamHandler {
54+
/**
55+
* Constructor for subclasses to call.
56+
*/
57+
public URLStreamHandler() {}
58+
5459
/**
5560
* Opens a connection to the object referenced by the
5661
* {@code URL} argument.

‎src/java.management/share/classes/javax/management/AttributeChangeNotificationFilter.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -50,6 +50,10 @@ public class AttributeChangeNotificationFilter implements NotificationFilter {
5050
*/
5151
private Vector<String> enabledAttributes = new Vector<String>();
5252

53+
/**
54+
* Constructs an {@code AttributeChangeNotificationFilter}.
55+
*/
56+
public AttributeChangeNotificationFilter() {}
5357

5458
/**
5559
* Invoked before sending the specified notification to the listener.

‎src/java.management/share/classes/javax/management/DefaultLoaderRepository.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -50,6 +50,11 @@
5050
*/
5151
@Deprecated
5252
public class DefaultLoaderRepository {
53+
/**
54+
* Constructs an {@code DefaultLoaderRepository}.
55+
*/
56+
public DefaultLoaderRepository() {}
57+
5358
/**
5459
* Go through the list of class loaders and try to load the requested class.
5560
* The method will stop as soon as the class is found. If the class

‎src/java.management/share/classes/javax/management/NotificationFilterSupport.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -68,6 +68,11 @@ public class NotificationFilterSupport implements NotificationFilter {
6868
private List<String> enabledTypes = new Vector<String>();
6969

7070

71+
/**
72+
* Constructs a {@code NotificationFilterSupport}.
73+
*/
74+
public NotificationFilterSupport() {}
75+
7176
/**
7277
* Invoked before sending the specified notification to the listener.
7378
* <BR>This filter compares the type of the specified notification with each enabled type.

‎src/java.management/share/classes/javax/management/QueryEval.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -41,6 +41,11 @@ public abstract class QueryEval implements Serializable {
4141
private static ThreadLocal<MBeanServer> server =
4242
new InheritableThreadLocal<MBeanServer>();
4343

44+
/**
45+
* Constructor for subclasses to call.
46+
*/
47+
public QueryEval() {}
48+
4449
/**
4550
* <p>Sets the MBean server on which the query is to be performed.
4651
* The setting is valid for the thread performing the set.

‎src/java.management/share/classes/javax/management/loading/DefaultLoaderRepository.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -55,6 +55,11 @@
5555
@Deprecated
5656
public class DefaultLoaderRepository {
5757

58+
/**
59+
* Constructs a {@code DefaultLoaderRepository}.
60+
*/
61+
public DefaultLoaderRepository() {}
62+
5863
/**
5964
* Go through the list of class loaders and try to load the requested
6065
* class.

‎src/java.management/share/classes/javax/management/monitor/Monitor.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -76,6 +76,11 @@ public abstract class Monitor
7676
extends NotificationBroadcasterSupport
7777
implements MonitorMBean, MBeanRegistration {
7878

79+
/**
80+
* Constructor for subclasses to call.
81+
*/
82+
public Monitor() {}
83+
7984
/*
8085
* ------------------------------------------
8186
* PACKAGE CLASSES

‎src/java.management/share/classes/javax/management/relation/RoleStatus.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -33,6 +33,12 @@
3333
*/
3434
public class RoleStatus {
3535

36+
/**
37+
* Do not call.
38+
*/
39+
@Deprecated(since="16", forRemoval=true)
40+
public RoleStatus() {}
41+
3642
//
3743
// Possible problems
3844
//

‎src/java.sql.rowset/share/classes/javax/sql/rowset/RowSetMetaDataImpl.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -52,6 +52,10 @@
5252
* @since 1.5
5353
*/
5454
public class RowSetMetaDataImpl implements RowSetMetaData, Serializable {
55+
/**
56+
* Constructs a {@code RowSetMetaDataImpl} object.
57+
*/
58+
public RowSetMetaDataImpl() {}
5559

5660
/**
5761
* The number of columns in the <code>RowSet</code> object that created

‎src/jdk.incubator.jpackage/linux/native/applauncher/LinuxLauncher.cpp

+60
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,24 @@
2424
*/
2525

2626
#include <stdio.h>
27+
#include <stdlib.h>
2728
#include "AppLauncher.h"
2829
#include "FileUtils.h"
2930
#include "UnixSysInfo.h"
3031
#include "Package.h"
32+
#include "Log.h"
33+
#include "ErrorHandling.h"
3134

3235

3336
namespace {
3437

38+
size_t hash(const std::string& str) {
39+
size_t h = 0;
40+
for(std::string::const_iterator it = str.begin(); it != str.end(); ++it) {
41+
h = 31 * h + (*it & 0xff);
42+
}
43+
return h;
44+
}
3545

3646
void launchApp() {
3747
setlocale(LC_ALL, "en_US.utf8");
@@ -57,6 +67,56 @@ void launchApp() {
5767
ownerPackage.initAppLauncher(appLauncher);
5868
}
5969

70+
const std::string _JPACKAGE_LAUNCHER = "_JPACKAGE_LAUNCHER";
71+
72+
std::string launchInfo = SysInfo::getEnvVariable(std::nothrow,
73+
_JPACKAGE_LAUNCHER, "");
74+
75+
const std::string thisLdLibraryPath = SysInfo::getEnvVariable(std::nothrow,
76+
"LD_LIBRARY_PATH", "");
77+
78+
const size_t thisHash = hash(thisLdLibraryPath);
79+
80+
if (!launchInfo.empty()) {
81+
LOG_TRACE(tstrings::any() << "Found "
82+
<< _JPACKAGE_LAUNCHER << "=[" << launchInfo << "]");
83+
84+
tistringstream iss(launchInfo);
85+
iss.exceptions(std::ios::failbit | std::ios::badbit);
86+
87+
size_t hash = 0;
88+
iss >> hash;
89+
90+
launchInfo = "";
91+
92+
if (thisHash != hash) {
93+
// This launcher execution is the result of execve() call from
94+
// withing JVM.
95+
// This means all JVM arguments are already configured in launcher
96+
// process command line.
97+
// No need to construct command line for JVM.
98+
LOG_TRACE("Not building JVM arguments from cfg file");
99+
appLauncher.setInitJvmFromCmdlineOnly(true);
100+
}
101+
} else {
102+
// Changed LD_LIBRARY_PATH environment variable might result in
103+
// execve() call from within JVM.
104+
// Set _JPACKAGE_LAUNCHER environment variable accordingly so that
105+
// restarted launcher process can detect a restart.
106+
107+
launchInfo = (tstrings::any() << thisHash).str();
108+
}
109+
110+
JP_TRY;
111+
if (0 != setenv(_JPACKAGE_LAUNCHER.c_str(), launchInfo.c_str(), 1)) {
112+
JP_THROW(tstrings::any() << "setenv(" << _JPACKAGE_LAUNCHER
113+
<< ", " << launchInfo << ") failed. Error: " << lastCRTError());
114+
} else {
115+
LOG_TRACE(tstrings::any() << "Set "
116+
<< _JPACKAGE_LAUNCHER << "=[" << launchInfo << "]");
117+
}
118+
JP_CATCH_ALL;
119+
60120
appLauncher.launch();
61121
}
62122

‎src/jdk.incubator.jpackage/share/native/applauncher/AppLauncher.cpp

+12-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636

3737
AppLauncher::AppLauncher() {
38+
setInitJvmFromCmdlineOnly(false);
3839
launcherPath = SysInfo::getProcessModulePath();
3940
args = SysInfo::getCommandArgs();
4041
}
@@ -116,8 +117,17 @@ Jvm* AppLauncher::createJvmLauncher() const {
116117

117118
(*jvm)
118119
.setPath(findJvmLib(cfgFile, defaultRuntimePath, jvmLibNames))
119-
.addArgument(launcherPath)
120-
.initFromConfigFile(cfgFile);
120+
.addArgument(launcherPath);
121+
122+
if (initJvmFromCmdlineOnly) {
123+
tstring_array::const_iterator argIt = args.begin();
124+
const tstring_array::const_iterator argEnd = args.end();
125+
for (; argIt != argEnd; ++argIt) {
126+
(*jvm).addArgument(*argIt);
127+
}
128+
} else {
129+
(*jvm).initFromConfigFile(cfgFile);
130+
}
121131

122132
return jvm.release();
123133
}

‎src/jdk.incubator.jpackage/share/native/applauncher/AppLauncher.h

+6
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ class AppLauncher {
5151
return *this;
5252
}
5353

54+
AppLauncher& setInitJvmFromCmdlineOnly(bool v) {
55+
initJvmFromCmdlineOnly = v;
56+
return *this;
57+
}
58+
5459
AppLauncher& addJvmLibName(const tstring& v) {
5560
jvmLibNames.push_back(v);
5661
return *this;
@@ -78,6 +83,7 @@ class AppLauncher {
7883
tstring appDirPath;
7984
tstring imageRoot;
8085
tstring_array jvmLibNames;
86+
bool initJvmFromCmdlineOnly;
8187
};
8288

8389
#endif // AppLauncher_h

‎src/jdk.jartool/share/classes/sun/security/tools/jarsigner/Main.java

+164-171
Large diffs are not rendered by default.

‎test/jdk/sun/security/tools/jarsigner/TimestampCheck.java

+9-5
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
/*
5959
* @test
60-
* @bug 6543842 6543440 6939248 8009636 8024302 8163304 8169911 8180289 8172404
60+
* @bug 6543842 6543440 6939248 8009636 8024302 8163304 8169911 8180289 8172404 8247960
6161
* @summary checking response of timestamp
6262
* @modules java.base/sun.security.pkcs
6363
* java.base/sun.security.timestamp
@@ -293,23 +293,27 @@ public static void main(String[] args) throws Throwable {
293293
signVerbose(null, "unsigned.jar", "sha1alg.jar", "signer",
294294
"-strict", "-digestalg", "SHA-1")
295295
.shouldHaveExitValue(0)
296-
.shouldContain("jar signed, with signer errors")
296+
.shouldContain("jar signed")
297+
.shouldNotContain("with signer errors")
297298
.shouldMatch("SHA-1.*-digestalg.*will be disabled");
298299
verify("sha1alg.jar", "-strict")
299300
.shouldHaveExitValue(0)
300-
.shouldContain("jar verified, with signer errors")
301+
.shouldContain("jar verified")
302+
.shouldNotContain("with signer errors")
301303
.shouldContain("SHA-1 digest algorithm is considered a security risk")
302304
.shouldContain("This algorithm will be disabled in a future update")
303305
.shouldNotContain("is disabled");
304306

305307
sign("sha1tsaalg", "-tsadigestalg", "SHA-1", "-strict")
306308
.shouldHaveExitValue(0)
307-
.shouldContain("jar signed, with signer errors")
309+
.shouldContain("jar signed")
310+
.shouldNotContain("with signer errors")
308311
.shouldMatch("SHA-1.*-tsadigestalg.*will be disabled")
309312
.shouldNotContain("is disabled");
310313
verify("sha1tsaalg.jar", "-strict")
311314
.shouldHaveExitValue(0)
312-
.shouldContain("jar verified, with signer errors")
315+
.shouldContain("jar verified")
316+
.shouldNotContain("with signer errors")
313317
.shouldContain("SHA-1 timestamp digest algorithm is considered a security risk")
314318
.shouldNotContain("is disabled");
315319

0 commit comments

Comments
 (0)
Please sign in to comment.