src/hotspot/share/classfile/classFileStream.cpp
author iklam
Sat, 23 Mar 2019 21:51:07 -0700
changeset 54257 21702e87efdf
parent 54042 6dd6f988b4e4
permissions -rw-r--r--
8220095: Assertion failure when symlink (with different name) is used for lib/modules file Summary: Removed confusing function ClassLoader::is_modules_image(char*) Reviewed-by: lfoltan, ccheung Contributed-by: Jiangli Zhou <jianglizhou@google.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54257
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 54042
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/classFileStream.hpp"
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    27
#include "classfile/classLoader.hpp"
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    28
#include "classfile/dictionary.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "classfile/vmSymbols.hpp"
37248
11a660dbbb8e 8132524: Missing includes to resourceArea.hpp
jprovino
parents: 34666
diff changeset
    30
#include "memory/resourceArea.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    32
const bool ClassFileStream::verify = true;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    33
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    34
void ClassFileStream::truncated_file_error(TRAPS) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  THROW_MSG(vmSymbols::java_lang_ClassFormatError(), "Truncated class file");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    38
ClassFileStream::ClassFileStream(const u1* buffer,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    39
                                 int length,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    40
                                 const char* source,
54257
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 54042
diff changeset
    41
                                 bool verify_stream,
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 54042
diff changeset
    42
                                 bool from_boot_loader_modules_image) :
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    43
  _buffer_start(buffer),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    44
  _buffer_end(buffer + length),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    45
  _current(buffer),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    46
  _source(source),
54257
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 54042
diff changeset
    47
  _need_verify(verify_stream),
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 54042
diff changeset
    48
  _from_boot_loader_modules_image(from_boot_loader_modules_image) {}
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    49
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    50
const u1* ClassFileStream::clone_buffer() const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    51
  u1* const new_buffer_start = NEW_RESOURCE_ARRAY(u1, length());
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    52
  memcpy(new_buffer_start, _buffer_start, length());
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    53
  return new_buffer_start;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    56
const char* const ClassFileStream::clone_source() const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    57
  const char* const src = source();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    58
  char* source_copy = NULL;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    59
  if (src != NULL) {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    60
    size_t source_len = strlen(src);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    61
    source_copy = NEW_RESOURCE_ARRAY(char, source_len + 1);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    62
    strncpy(source_copy, src, source_len + 1);
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    63
  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    64
  return source_copy;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    65
}
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    66
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    67
// Caller responsible for ResourceMark
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    68
// clone stream with a rewound position
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    69
const ClassFileStream* ClassFileStream::clone() const {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    70
  const u1* const new_buffer_start = clone_buffer();
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    71
  return new ClassFileStream(new_buffer_start,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    72
                             length(),
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    73
                             clone_source(),
54257
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 54042
diff changeset
    74
                             need_verify(),
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 54042
diff changeset
    75
                             from_boot_loader_modules_image());
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    76
}
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 26419
diff changeset
    77
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    78
uint64_t ClassFileStream::compute_fingerprint() const {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    79
  int classfile_size = length();
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    80
  int classfile_crc = ClassLoader::crc32(0, (const char*)buffer(), length());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    81
  uint64_t fingerprint = (uint64_t(classfile_size) << 32) | uint64_t(uint32_t(classfile_crc));
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    82
  assert(fingerprint != 0, "must not be zero");
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    83
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    84
  return fingerprint;
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 37248
diff changeset
    85
}