2014-08-12 17:29:00 -07:00
|
|
|
/*
|
2018-03-05 14:24:45 -05:00
|
|
|
* Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
|
2014-08-12 17:29:00 -07:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP
|
|
|
|
#define SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP
|
|
|
|
|
|
|
|
#include "classfile/classLoader.hpp"
|
2018-04-10 11:43:40 -07:00
|
|
|
#include "classfile/moduleEntry.hpp"
|
2017-11-27 20:21:34 -08:00
|
|
|
#include "utilities/macros.hpp"
|
2014-08-12 17:29:00 -07:00
|
|
|
|
2017-11-27 20:21:34 -08:00
|
|
|
CDS_ONLY(class SharedPathsMiscInfoExt;)
|
|
|
|
CDS_ONLY(class ClassListParser;)
|
2015-08-18 11:27:23 -07:00
|
|
|
|
2014-08-12 17:29:00 -07:00
|
|
|
class ClassLoaderExt: public ClassLoader { // AllStatic
|
|
|
|
public:
|
2017-11-27 20:21:34 -08:00
|
|
|
enum SomeConstants {
|
|
|
|
max_classpath_index = 0x7fff
|
|
|
|
};
|
|
|
|
// ClassLoaderExt::Context --
|
|
|
|
//
|
|
|
|
// This is used by DumpSharedSpaces only - it enforces the same classloader
|
|
|
|
// delegation model as would be in run-time. I.e.,
|
|
|
|
// + classes defined by the NULL class loader cannot load classes in the PLATFORM or APP paths.
|
|
|
|
// + classes defined by the PLATFORM class loader cannot load classes in the APP paths.
|
2014-08-12 17:29:00 -07:00
|
|
|
class Context {
|
2017-11-27 20:21:34 -08:00
|
|
|
static Thread* _dump_thread;
|
|
|
|
const char* _class_name;
|
2014-08-12 17:29:00 -07:00
|
|
|
const char* _file_name;
|
|
|
|
public:
|
2017-11-27 20:21:34 -08:00
|
|
|
const char* class_name() {
|
|
|
|
return _class_name;
|
|
|
|
}
|
|
|
|
const char* file_name() {
|
|
|
|
return _file_name;
|
|
|
|
}
|
|
|
|
|
2014-08-12 17:29:00 -07:00
|
|
|
Context(const char* class_name, const char* file_name, TRAPS) {
|
2017-11-27 20:21:34 -08:00
|
|
|
_class_name = class_name;
|
2014-08-12 17:29:00 -07:00
|
|
|
_file_name = file_name;
|
2017-11-27 20:21:34 -08:00
|
|
|
#if INCLUDE_CDS
|
|
|
|
if (!DumpSharedSpaces && !UseSharedSpaces) {
|
2018-04-10 11:43:40 -07:00
|
|
|
// Must not modify _app_class_paths_start_index if we're not using CDS.
|
|
|
|
assert(_app_class_paths_start_index == ClassLoaderExt::max_classpath_index, "must be");
|
2017-11-27 20:21:34 -08:00
|
|
|
}
|
|
|
|
#endif
|
2014-08-12 17:29:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool should_verify(int classpath_index) {
|
2018-04-10 11:43:40 -07:00
|
|
|
CDS_ONLY(return (classpath_index >= _app_class_paths_start_index);)
|
2017-11-27 20:21:34 -08:00
|
|
|
NOT_CDS(return false;)
|
2014-08-12 17:29:00 -07:00
|
|
|
}
|
|
|
|
|
2017-11-19 23:30:41 -05:00
|
|
|
void record_result(Symbol* class_name,
|
|
|
|
const s2 classpath_index,
|
2017-11-27 20:21:34 -08:00
|
|
|
InstanceKlass* result,
|
|
|
|
TRAPS) {
|
|
|
|
#if INCLUDE_CDS
|
|
|
|
ClassLoaderExt::record_result(this, class_name, classpath_index, result, THREAD);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
~Context() {
|
2016-06-08 18:47:05 -04:00
|
|
|
#if INCLUDE_CDS
|
2017-11-27 20:21:34 -08:00
|
|
|
if (!DumpSharedSpaces && !UseSharedSpaces) {
|
2018-04-10 11:43:40 -07:00
|
|
|
// Must not modify app_class_paths_start_index if we're not using CDS.
|
|
|
|
assert(_app_class_paths_start_index == ClassLoaderExt::max_classpath_index, "must be");
|
2014-08-12 17:29:00 -07:00
|
|
|
}
|
2017-11-19 23:30:41 -05:00
|
|
|
#endif
|
2014-08-12 17:29:00 -07:00
|
|
|
}
|
2017-11-27 20:21:34 -08:00
|
|
|
}; // end ClassLoaderExt::Context
|
|
|
|
|
|
|
|
private:
|
|
|
|
#if INCLUDE_CDS
|
|
|
|
static char* get_class_path_attr(const char* jar_path, char* manifest, jint manifest_size);
|
|
|
|
static void setup_app_search_path(); // Only when -Xshare:dump
|
2018-04-10 11:43:40 -07:00
|
|
|
static void process_module_table(ModuleEntryTable* met, TRAPS);
|
|
|
|
static void setup_module_search_path(TRAPS);
|
2017-11-27 20:21:34 -08:00
|
|
|
static SharedPathsMiscInfoExt* shared_paths_misc_info() {
|
|
|
|
return (SharedPathsMiscInfoExt*)_shared_paths_misc_info;
|
|
|
|
}
|
2018-04-10 11:43:40 -07:00
|
|
|
// index of first app JAR in shared classpath entry table
|
|
|
|
static jshort _app_class_paths_start_index;
|
|
|
|
// index of first modular JAR in shared modulepath entry table
|
|
|
|
static jshort _app_module_paths_start_index;
|
|
|
|
|
2017-11-27 20:21:34 -08:00
|
|
|
static bool _has_app_classes;
|
|
|
|
static bool _has_platform_classes;
|
|
|
|
#endif
|
2014-08-12 17:29:00 -07:00
|
|
|
|
2017-11-27 20:21:34 -08:00
|
|
|
public:
|
|
|
|
CDS_ONLY(static void process_jar_manifest(ClassPathEntry* entry, bool check_for_duplicates);)
|
|
|
|
|
|
|
|
// Called by JVMTI code to add boot classpath
|
2014-11-18 03:38:50 -08:00
|
|
|
static void append_boot_classpath(ClassPathEntry* new_entry) {
|
2017-11-27 20:21:34 -08:00
|
|
|
#if INCLUDE_CDS
|
|
|
|
if (UseAppCDS) {
|
|
|
|
warning("UseAppCDS is disabled because bootstrap classpath has been appended");
|
|
|
|
UseAppCDS = false;
|
|
|
|
}
|
|
|
|
#endif
|
2017-11-19 23:30:41 -05:00
|
|
|
ClassLoader::add_to_boot_append_entries(new_entry);
|
2014-11-18 03:38:50 -08:00
|
|
|
}
|
2017-11-27 20:21:34 -08:00
|
|
|
|
|
|
|
static void setup_search_paths() NOT_CDS_RETURN;
|
2018-04-10 11:43:40 -07:00
|
|
|
static void setup_module_paths(TRAPS) NOT_CDS_RETURN;
|
2017-11-27 20:21:34 -08:00
|
|
|
|
2017-08-28 15:34:04 -07:00
|
|
|
#if INCLUDE_CDS
|
2017-11-27 20:21:34 -08:00
|
|
|
private:
|
|
|
|
static char* read_manifest(ClassPathEntry* entry, jint *manifest_size, bool clean_text, TRAPS);
|
|
|
|
static ClassPathEntry* find_classpath_entry_from_cache(const char* path, TRAPS);
|
|
|
|
|
|
|
|
public:
|
2017-08-28 15:34:04 -07:00
|
|
|
static char* read_manifest(ClassPathEntry* entry, jint *manifest_size, TRAPS) {
|
2017-11-27 20:21:34 -08:00
|
|
|
// Remove all the new-line continuations (which wrap long lines at 72 characters, see
|
|
|
|
// http://docs.oracle.com/javase/6/docs/technotes/guides/jar/jar.html#JAR%20Manifest), so
|
|
|
|
// that the manifest is easier to parse.
|
|
|
|
return read_manifest(entry, manifest_size, true, THREAD);
|
|
|
|
}
|
|
|
|
static char* read_raw_manifest(ClassPathEntry* entry, jint *manifest_size, TRAPS) {
|
|
|
|
// Do not remove new-line continuations, so we can easily pass it as an argument to
|
|
|
|
// java.util.jar.Manifest.getManifest() at run-time.
|
|
|
|
return read_manifest(entry, manifest_size, false, THREAD);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void finalize_shared_paths_misc_info();
|
|
|
|
|
2018-04-10 11:43:40 -07:00
|
|
|
static jshort app_class_paths_start_index() { return _app_class_paths_start_index; }
|
|
|
|
|
|
|
|
static jshort app_module_paths_start_index() { return _app_module_paths_start_index; }
|
2017-11-27 20:21:34 -08:00
|
|
|
|
|
|
|
static void init_paths_start_index(jshort app_start) {
|
2018-04-10 11:43:40 -07:00
|
|
|
_app_class_paths_start_index = app_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_app_module_paths_start_index(jshort module_start) {
|
|
|
|
_app_module_paths_start_index = module_start;
|
2017-11-27 20:21:34 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_boot_classpath(int classpath_index) {
|
2018-04-10 11:43:40 -07:00
|
|
|
return classpath_index < _app_class_paths_start_index;
|
2017-11-27 20:21:34 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool has_platform_or_app_classes() {
|
|
|
|
return _has_app_classes || _has_platform_classes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void record_result(class ClassLoaderExt::Context *context,
|
|
|
|
Symbol* class_name,
|
|
|
|
const s2 classpath_index,
|
|
|
|
InstanceKlass* result, TRAPS);
|
|
|
|
static InstanceKlass* load_class(Symbol* h_name, const char* path, TRAPS);
|
|
|
|
static Klass* load_one_class(ClassListParser* parser, TRAPS);
|
|
|
|
static void set_has_app_classes() {
|
|
|
|
_has_app_classes = true;
|
|
|
|
}
|
|
|
|
static void set_has_platform_classes() {
|
|
|
|
_has_platform_classes = true;
|
2017-08-28 15:34:04 -07:00
|
|
|
}
|
|
|
|
#endif
|
2014-08-12 17:29:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP
|