2014-08-12 17:29:00 -07:00
|
|
|
/*
|
2017-04-05 18:15:09 -04:00
|
|
|
* Copyright (c) 2014, 2017, 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "precompiled.hpp"
|
|
|
|
#include "classfile/classLoader.hpp"
|
|
|
|
#include "classfile/classLoaderData.inline.hpp"
|
|
|
|
#include "classfile/sharedPathsMiscInfo.hpp"
|
2016-02-25 13:09:17 -05:00
|
|
|
#include "logging/log.hpp"
|
2017-07-21 09:50:12 +02:00
|
|
|
#include "logging/logStream.hpp"
|
2014-08-12 17:29:00 -07:00
|
|
|
#include "memory/allocation.inline.hpp"
|
|
|
|
#include "memory/metaspaceShared.hpp"
|
2016-04-04 12:57:48 -04:00
|
|
|
#include "memory/resourceArea.hpp"
|
2014-08-12 17:29:00 -07:00
|
|
|
#include "runtime/arguments.hpp"
|
2016-02-25 13:09:17 -05:00
|
|
|
#include "utilities/ostream.hpp"
|
2014-08-12 17:29:00 -07:00
|
|
|
|
2017-11-28 21:43:45 +01:00
|
|
|
SharedPathsMiscInfo::SharedPathsMiscInfo() {
|
|
|
|
_buf_size = INITIAL_BUF_SIZE;
|
|
|
|
_cur_ptr = _buf_start = NEW_C_HEAP_ARRAY(char, _buf_size, mtClass);
|
|
|
|
_allocated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
SharedPathsMiscInfo::~SharedPathsMiscInfo() {
|
|
|
|
if (_allocated) {
|
|
|
|
FREE_C_HEAP_ARRAY(char, _buf_start);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 17:29:00 -07:00
|
|
|
void SharedPathsMiscInfo::add_path(const char* path, int type) {
|
2016-04-29 22:40:51 -04:00
|
|
|
log_info(class, path)("type=%s ", type_name(type));
|
2016-02-25 13:09:17 -05:00
|
|
|
ClassLoader::trace_class_path("add misc shared path ", path);
|
2014-08-12 17:29:00 -07:00
|
|
|
write(path, strlen(path) + 1);
|
|
|
|
write_jint(jint(type));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SharedPathsMiscInfo::ensure_size(size_t needed_bytes) {
|
|
|
|
assert(_allocated, "cannot modify buffer during validation.");
|
|
|
|
int used = get_used_bytes();
|
|
|
|
int target = used + int(needed_bytes);
|
|
|
|
if (target > _buf_size) {
|
|
|
|
_buf_size = _buf_size * 2 + (int)needed_bytes;
|
|
|
|
_buf_start = REALLOC_C_HEAP_ARRAY(char, _buf_start, _buf_size, mtClass);
|
|
|
|
_cur_ptr = _buf_start + used;
|
|
|
|
_end_ptr = _buf_start + _buf_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SharedPathsMiscInfo::write(const void* ptr, size_t size) {
|
|
|
|
ensure_size(size);
|
|
|
|
memcpy(_cur_ptr, ptr, size);
|
|
|
|
_cur_ptr += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SharedPathsMiscInfo::read(void* ptr, size_t size) {
|
|
|
|
if (_cur_ptr + size <= _end_ptr) {
|
|
|
|
memcpy(ptr, _cur_ptr, size);
|
|
|
|
_cur_ptr += size;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SharedPathsMiscInfo::fail(const char* msg, const char* name) {
|
2016-02-25 13:09:17 -05:00
|
|
|
ClassLoader::trace_class_path(msg, name);
|
2014-08-12 17:29:00 -07:00
|
|
|
MetaspaceShared::set_archive_loading_failed();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-21 09:50:12 +02:00
|
|
|
void SharedPathsMiscInfo::print_path(outputStream* out, int type, const char* path) {
|
2016-02-25 13:09:17 -05:00
|
|
|
switch (type) {
|
|
|
|
case BOOT:
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
out->print("Expecting BOOT path=%s", path);
|
2016-02-25 13:09:17 -05:00
|
|
|
break;
|
|
|
|
case NON_EXIST:
|
|
|
|
out->print("Expecting that %s does not exist", path);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ShouldNotReachHere();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 17:29:00 -07:00
|
|
|
bool SharedPathsMiscInfo::check() {
|
|
|
|
// The whole buffer must be 0 terminated so that we can use strlen and strcmp
|
|
|
|
// without fear.
|
|
|
|
_end_ptr -= sizeof(jint);
|
|
|
|
if (_cur_ptr >= _end_ptr) {
|
|
|
|
return fail("Truncated archive file header");
|
|
|
|
}
|
|
|
|
if (*_end_ptr != 0) {
|
|
|
|
return fail("Corrupted archive file header");
|
|
|
|
}
|
|
|
|
|
|
|
|
while (_cur_ptr < _end_ptr) {
|
|
|
|
jint type;
|
|
|
|
const char* path = _cur_ptr;
|
|
|
|
_cur_ptr += strlen(path) + 1;
|
|
|
|
if (!read_jint(&type)) {
|
|
|
|
return fail("Corrupted archive file header");
|
|
|
|
}
|
2017-07-21 09:50:12 +02:00
|
|
|
LogTarget(Info, class, path) lt;
|
|
|
|
if (lt.is_enabled()) {
|
|
|
|
lt.print("type=%s ", type_name(type));
|
|
|
|
LogStream ls(lt);
|
|
|
|
print_path(&ls, type, path);
|
|
|
|
ls.cr();
|
|
|
|
}
|
2014-08-12 17:29:00 -07:00
|
|
|
if (!check(type, path)) {
|
|
|
|
if (!PrintSharedArchiveAndExit) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2016-02-25 13:09:17 -05:00
|
|
|
ClassLoader::trace_class_path("ok");
|
2014-08-12 17:29:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SharedPathsMiscInfo::check(jint type, const char* path) {
|
|
|
|
switch (type) {
|
|
|
|
case BOOT:
|
2014-12-03 14:21:14 +00:00
|
|
|
if (os::file_name_strcmp(path, Arguments::get_sysclasspath()) != 0) {
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Christian Tornqvist <christian.tornqvist@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: George Triantafillou <george.triantafillou@oracle.com>
Co-authored-by: Igor Ignatyev <igor.ignatyev@oracle.com>
Co-authored-by: Ioi Lam <ioi.lam@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jiangli Zhou <jiangli.zhou@oracle.com>
Co-authored-by: Markus Gronlund <markus.gronlund@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: acorn, ccheung, coleenp, ctornqvi, dholmes, dsimms, gtriantafill, iklam, jiangli, mgronlun, mseledtsov, cjplummer, sspitsyn, stefank, twisti, hseigel, lfoltan, alanb, mchung, dfazunen
2016-03-17 19:04:01 +00:00
|
|
|
return fail("[BOOT classpath mismatch, actual =", Arguments::get_sysclasspath());
|
2014-08-12 17:29:00 -07:00
|
|
|
}
|
|
|
|
break;
|
2017-04-05 18:15:09 -04:00
|
|
|
case NON_EXIST:
|
2014-08-12 17:29:00 -07:00
|
|
|
{
|
|
|
|
struct stat st;
|
2017-04-05 18:15:09 -04:00
|
|
|
if (os::stat(path, &st) == 0) {
|
2014-08-12 17:29:00 -07:00
|
|
|
// The file actually exists
|
2017-04-05 18:15:09 -04:00
|
|
|
// But we want it to not exist -> fail
|
|
|
|
return fail("File must not exist");
|
2014-08-12 17:29:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return fail("Corrupted archive file header");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|