hotspot/src/share/vm/memory/filemap.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 2131 98f9cef66a34
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_filemap.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
# include <sys/stat.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
# include <errno.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#ifndef O_BINARY       // if defined (Win32) use binary files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#define O_BINARY 0     // otherwise do nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
extern address JVM_FunctionAtStart();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
extern address JVM_FunctionAtEnd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Complain and stop. All error conditions occuring during the writing of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// an archive file should stop the process.  Unrecoverable errors during
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// the reading of the archive file should stop the process.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
static void fail(const char *msg, va_list ap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // This occurs very early during initialization: tty is not initialized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  jio_fprintf(defaultStream::error_stream(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
              "An error has occured while processing the"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
              " shared archive file.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  jio_vfprintf(defaultStream::error_stream(), msg, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  jio_fprintf(defaultStream::error_stream(), "\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  vm_exit_during_initialization("Unable to use shared archive.", NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
void FileMapInfo::fail_stop(const char *msg, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
        va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  va_start(ap, msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  fail(msg, ap);        // Never returns.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  va_end(ap);           // for completeness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// Complain and continue.  Recoverable errors during the reading of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// archive file may continue (with sharing disabled).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// If we continue, then disable shared spaces and close the file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
void FileMapInfo::fail_continue(const char *msg, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  va_start(ap, msg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  if (RequireSharedSpaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    fail(msg, ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  UseSharedSpaces = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// Fill in the fileMapInfo structure with data about this VM instance.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
void FileMapInfo::populate_header(size_t alignment) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _header._magic = 0xf00baba2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  _header._version = _current_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  _header._alignment = alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // The following fields are for sanity checks for whether this archive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // will function correctly with this JVM and the bootclasspath it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // invoked with.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // JVM version string ... changes on each build.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  const char *vm_version = VM_Version::internal_vm_info_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (strlen(vm_version) < (JVM_IDENT_MAX-1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    strcpy(_header._jvm_ident, vm_version);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    fail_stop("JVM Ident field for shared archive is too long"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
              " - truncated to <%s>", _header._jvm_ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Build checks on classpath and jar files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  _header._num_jars = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  ClassPathEntry *cpe = ClassLoader::classpath_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  for ( ; cpe != NULL; cpe = cpe->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    if (cpe->is_jar_file()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      if (_header._num_jars >= JVM_SHARED_JARS_MAX) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        fail_stop("Too many jar files to share.", NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      // Jar file - record timestamp and file size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
      struct stat st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      const char *path = cpe->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      if (os::stat(path, &st) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
        // If we can't access a jar file in the boot path, then we can't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
        // make assumptions about where classes get loaded from.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
        fail_stop("Unable to open jar file %s.", path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      _header._jar[_header._num_jars]._timestamp = st.st_mtime;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      _header._jar[_header._num_jars]._filesize = st.st_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      _header._num_jars++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      // If directories appear in boot classpath, they must be empty to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      // avoid having to verify each individual class file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      const char* name = ((ClassPathDirEntry*)cpe)->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
      if (!os::dir_is_empty(name)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
        fail_stop("Boot classpath directory %s is not empty.", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// Read the FileMapInfo information from the file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
bool FileMapInfo::init_from_file(int fd) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  size_t n = read(fd, &_header, sizeof(struct FileMapHeader));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  if (n != sizeof(struct FileMapHeader)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    fail_continue("Unable to read the file header.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  if (_header._version != current_version()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    fail_continue("The shared archive file has the wrong version.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  _file_offset = (long)n;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// Read the FileMapInfo information from the file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
bool FileMapInfo::open_for_read() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  _full_path = Arguments::GetSharedArchivePath();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  int fd = open(_full_path, O_RDONLY | O_BINARY, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  if (fd < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    if (errno == ENOENT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      // Not locating the shared archive is ok.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
      fail_continue("Specified shared archive not found.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      fail_continue("Failed to open shared archive file (%s).",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
                    strerror(errno));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _fd = fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  _file_open = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// Write the FileMapInfo information to the file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
void FileMapInfo::open_for_write() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
 _full_path = Arguments::GetSharedArchivePath();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  if (PrintSharedSpaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    tty->print_cr("Dumping shared data to file: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    tty->print_cr("   %s", _full_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Remove the existing file in case another process has it open.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  remove(_full_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  int fd = open(_full_path, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0444);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  if (fd < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    fail_stop("Unable to create shared archive file %s.", _full_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  _fd = fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  _file_offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  _file_open = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// Write the header to the file, seek to the next allocation boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
void FileMapInfo::write_header() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  write_bytes_aligned(&_header, sizeof(FileMapHeader));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
// Dump shared spaces to file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
void FileMapInfo::write_space(int i, CompactibleSpace* space, bool read_only) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  align_file_position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  write_region(i, (char*)space->bottom(), space->used(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
               space->capacity(), read_only, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// Dump region to file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
void FileMapInfo::write_region(int region, char* base, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
                               size_t capacity, bool read_only,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                               bool allow_exec) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[region];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (_file_open) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    guarantee(si->_file_offset == _file_offset, "file offset mismatch.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    if (PrintSharedSpaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      tty->print_cr("Shared file region %d: 0x%x bytes, addr 0x%x,"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                    " file offset 0x%x", region, size, base, _file_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    si->_file_offset = _file_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  si->_base = base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  si->_used = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  si->_capacity = capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  si->_read_only = read_only;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  si->_allow_exec = allow_exec;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  write_bytes_aligned(base, (int)size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// Dump bytes to file -- at the current file position.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
void FileMapInfo::write_bytes(const void* buffer, int nbytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  if (_file_open) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    int n = ::write(_fd, buffer, nbytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    if (n != nbytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      // It is dangerous to leave the corrupted shared archive file around,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      // close and remove the file. See bug 6372906.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      remove(_full_path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      fail_stop("Unable to write to shared archive file.", NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  _file_offset += nbytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// Align file position to an allocation unit boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
void FileMapInfo::align_file_position() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  long new_file_offset = align_size_up(_file_offset, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  if (new_file_offset != _file_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    _file_offset = new_file_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    if (_file_open) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      // Seek one byte back from the target and write a byte to insure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      // that the written file is the correct length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      _file_offset -= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      if (lseek(_fd, _file_offset, SEEK_SET) < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
        fail_stop("Unable to seek.", NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      char zero = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      write_bytes(&zero, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// Dump bytes to file -- at the current file position.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
void FileMapInfo::write_bytes_aligned(const void* buffer, int nbytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  align_file_position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  write_bytes(buffer, nbytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  align_file_position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
// Close the shared archive file.  This does NOT unmap mapped regions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
void FileMapInfo::close() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  if (_file_open) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    if (::close(_fd) < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      fail_stop("Unable to close the shared archive file.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    _file_open = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    _fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
// Memory map a shared space from the archive file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
bool FileMapInfo::map_space(int i, ReservedSpace rs, ContiguousSpace* space) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  if (space != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    if (si->_base != (char*)space->bottom() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
        si->_capacity != space->capacity()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
      fail_continue("Shared space base address does not match.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  bool result = (map_region(i, rs) != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  if (space != NULL && result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
    space->set_top((HeapWord*)(si->_base + si->_used));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    space->set_saved_mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// JVM/TI RedefineClasses() support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
// Remap the shared readonly space to shared readwrite, private.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
bool FileMapInfo::remap_shared_readonly_as_readwrite() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  if (!si->_read_only) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    // the space is already readwrite so we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  size_t used = si->_used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  size_t size = align_size_up(used, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  if (!open_for_read()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  char *base = os::remap_memory(_fd, _full_path, si->_file_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
                                si->_base, size, false /* !read_only */,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
                                si->_allow_exec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  if (base == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    fail_continue("Unable to remap shared readonly space (errno=%d).", errno);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  if (base != si->_base) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    fail_continue("Unable to remap shared readonly space at required address.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  si->_read_only = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
// Memory map a region in the address space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
char* FileMapInfo::map_region(int i, ReservedSpace rs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  size_t used = si->_used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  size_t size = align_size_up(used, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  ReservedSpace mapped_rs = rs.first_part(size, true, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  ReservedSpace unmapped_rs = rs.last_part(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  mapped_rs.release();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  return map_region(i, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
// Memory map a region in the address space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
char* FileMapInfo::map_region(int i, bool address_must_match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  size_t used = si->_used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  size_t size = align_size_up(used, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  char *requested_addr = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if (address_must_match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    requested_addr = si->_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  char *base = os::map_memory(_fd, _full_path, si->_file_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
                              requested_addr, size, si->_read_only,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
                              si->_allow_exec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  if (base == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    fail_continue("Unable to map shared space.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  if (address_must_match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    if (base != si->_base) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      fail_continue("Unable to map shared space at required address.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    si->_base = base;          // save mapped address for unmapping.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  return base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// Unmap a memory region in the address space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
void FileMapInfo::unmap_region(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  size_t used = si->_used;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  size_t size = align_size_up(used, os::vm_allocation_granularity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  if (!os::unmap_memory(si->_base, size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    fail_stop("Unable to unmap shared space.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
void FileMapInfo::assert_mark(bool check) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  if (!check) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
    fail_stop("Mark mismatch while restoring from shared file.", NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
FileMapInfo* FileMapInfo::_current_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// Open the shared archive file, read and validate the header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
// information (version, boot classpath, etc.).  If initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
// fails, shared spaces are disabled and the file is closed. [See
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
// fail_continue.]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
bool FileMapInfo::initialize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  assert(UseSharedSpaces, "UseSharedSpaces expected.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  if (JvmtiExport::can_modify_any_class() || JvmtiExport::can_walk_any_space()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    fail_continue("Tool agent requires sharing to be disabled.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  if (!open_for_read()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  init_from_file(_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  if (!validate()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  SharedReadOnlySize =  _header._space[0]._capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  SharedReadWriteSize = _header._space[1]._capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  SharedMiscDataSize =  _header._space[2]._capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  SharedMiscCodeSize =  _header._space[3]._capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
bool FileMapInfo::validate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  if (_header._version != current_version()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    fail_continue("The shared archive file is the wrong version.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  if (_header._magic != (int)0xf00baba2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    fail_continue("The shared archive file has a bad magic number.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  if (strncmp(_header._jvm_ident, VM_Version::internal_vm_info_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
              JVM_IDENT_MAX-1) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    fail_continue("The shared archive file was created by a different"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
                  " version or build of HotSpot.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // Cannot verify interpreter yet, as it can only be created after the GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  // heap has been initialized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  if (_header._num_jars >= JVM_SHARED_JARS_MAX) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    fail_continue("Too many jar files to share.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  // Build checks on classpath and jar files
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  int num_jars_now = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  ClassPathEntry *cpe = ClassLoader::classpath_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  for ( ; cpe != NULL; cpe = cpe->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    if (cpe->is_jar_file()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      if (num_jars_now < _header._num_jars) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
        // Jar file - verify timestamp and file size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
        struct stat st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
        const char *path = cpe->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
        if (os::stat(path, &st) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
          fail_continue("Unable to open jar file %s.", path);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
          return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
        if (_header._jar[num_jars_now]._timestamp != st.st_mtime ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
            _header._jar[num_jars_now]._filesize != st.st_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
          fail_continue("A jar file is not the one used while building"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
                        " the shared archive file.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
          return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      ++num_jars_now;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
      // If directories appear in boot classpath, they must be empty to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      // avoid having to verify each individual class file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
      const char* name = ((ClassPathDirEntry*)cpe)->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
      if (!os::dir_is_empty(name)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
        fail_continue("Boot classpath directory %s is not empty.", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  if (num_jars_now < _header._num_jars) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    fail_continue("The number of jar files in the boot classpath is"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
                  " less than the number the shared archive was created with.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
// The following method is provided to see whether a given pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
// falls in the mapped shared space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
// Param:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
// p, The given pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
// Return:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
// True if the p is within the mapped shared space, otherwise, false.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
bool FileMapInfo::is_in_shared_space(const void* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  for (int i = 0; i < CompactingPermGenGen::n_regions; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    if (p >= _header._space[i]._base &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
        p < _header._space[i]._base + _header._space[i]._used) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
}