1 /*
   2  * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_MEMORY_FILEMAP_HPP
  26 #define SHARE_VM_MEMORY_FILEMAP_HPP
  27 
  28 #include "memory/metaspaceShared.hpp"
  29 #include "memory/metaspace.hpp"
  30 
  31 // Layout of the file:
  32 //  header: dump of archive instance plus versioning info, datestamp, etc.
  33 //   [magic # = 0xF00BABA2]
  34 //  ... padding to align on page-boundary
  35 //  read-write space
  36 //  read-only space
  37 //  misc data (block offset table, string table, symbols, dictionary, etc.)
  38 //  tag(666)
  39 
  40 static const int JVM_IDENT_MAX = 256;
  41 
  42 class Metaspace;
  43 
  44 class SharedClassPathEntry VALUE_OBJ_CLASS_SPEC {
  45 public:
  46   const char *_name;
  47   time_t _timestamp;          // jar timestamp,  0 if is directory or other
  48   long   _filesize;           // jar file size, -1 if is directory, -2 if other
  49   bool is_jar() {
  50     return _timestamp != 0;
  51   }
  52   bool is_dir() {
  53     return _filesize == -1;
  54   }
  55 };
  56 
  57 class FileMapInfo : public CHeapObj<mtInternal> {
  58 private:
  59   friend class ManifestStream;
  60   enum {
  61     _invalid_version = -1,
  62     _current_version = 2
  63   };
  64 
  65   bool  _file_open;
  66   int   _fd;
  67   size_t  _file_offset;
  68 
  69 private:
  70   static SharedClassPathEntry* _classpath_entry_table;
  71   static int                   _classpath_entry_table_size;
  72   static size_t                _classpath_entry_size;
  73   static bool                  _validating_classpath_entry_table;
  74 
  75   // FileMapHeader describes the shared space data in the file to be
  76   // mapped.  This structure gets written to a file.  It is not a class, so
  77   // that the compilers don't add any compiler-private data to it.
  78 
  79 public:
  80   struct FileMapHeaderBase : public CHeapObj<mtClass> {
  81     virtual bool validate() = 0;
  82     virtual void populate(FileMapInfo* info, size_t alignment) = 0;
  83   };
  84   struct FileMapHeader : FileMapHeaderBase {
  85     // Use data() and data_size() to memcopy to/from the FileMapHeader. We need to
  86     // avoid read/writing the C++ vtable pointer.
  87     static size_t data_size();
  88     char* data() {
  89       return ((char*)this) + sizeof(FileMapHeaderBase);
  90     }
  91 
  92     int    _magic;                    // identify file type.
  93     int    _crc;                      // header crc checksum.
  94     int    _version;                  // (from enum, above.)
  95     size_t _alignment;                // how shared archive should be aligned
  96     int    _obj_alignment;            // value of ObjectAlignmentInBytes
  97     int    _narrow_oop_shift;         // compressed oop encoding shift
  98     bool   _compact_strings;          // value of CompactStrings
  99     uintx  _max_heap_size;            // java max heap size during dumping
 100     Universe::NARROW_OOP_MODE _narrow_oop_mode; // compressed oop encoding mode
 101     int     _narrow_klass_shift;      // save narrow klass base and shift
 102     address _narrow_klass_base;
 103     char*   _misc_data_patching_start;
 104     address _cds_i2i_entry_code_buffers;
 105     size_t  _cds_i2i_entry_code_buffers_size;
 106 
 107     struct space_info {
 108       int    _crc;           // crc checksum of the current space
 109       size_t _file_offset;   // sizeof(this) rounded to vm page size
 110       union {
 111         char*  _base;        // copy-on-write base address
 112         intx   _offset;      // offset from the compressed oop encoding base, only used
 113                              // by string space
 114       } _addr;
 115       size_t _capacity;      // for validity checking
 116       size_t _used;          // for setting space top on read
 117       bool   _read_only;     // read only space?
 118       bool   _allow_exec;    // executable code in space?
 119     } _space[MetaspaceShared::n_regions];
 120 
 121     // The following fields are all sanity checks for whether this archive
 122     // will function correctly with this JVM and the bootclasspath it's
 123     // invoked with.
 124     char  _jvm_ident[JVM_IDENT_MAX];      // identifier for jvm
 125 
 126     // The _paths_misc_info is a variable-size structure that records "miscellaneous"
 127     // information during dumping. It is generated and validated by the
 128     // SharedPathsMiscInfo class. See SharedPathsMiscInfo.hpp and sharedClassUtil.hpp for
 129     // detailed description.
 130     //
 131     // The _paths_misc_info data is stored as a byte array in the archive file header,
 132     // immediately after the _header field. This information is used only when
 133     // checking the validity of the archive and is deallocated after the archive is loaded.
 134     //
 135     // Note that the _paths_misc_info does NOT include information for JAR files
 136     // that existed during dump time. Their information is stored in _classpath_entry_table.
 137     int _paths_misc_info_size;
 138 
 139     // The following is a table of all the class path entries that were used
 140     // during dumping. At run time, we require these files to exist and have the same
 141     // size/modification time, or else the archive will refuse to load.
 142     //
 143     // All of these entries must be JAR files. The dumping process would fail if a non-empty
 144     // directory was specified in the classpaths. If an empty directory was specified
 145     // it is checked by the _paths_misc_info as described above.
 146     //
 147     // FIXME -- if JAR files in the tail of the list were specified but not used during dumping,
 148     // they should be removed from this table, to save space and to avoid spurious
 149     // loading failures during runtime.
 150     int _classpath_entry_table_size;
 151     size_t _classpath_entry_size;
 152     SharedClassPathEntry* _classpath_entry_table;
 153 
 154     char* region_addr(int idx);
 155 
 156     virtual bool validate();
 157     virtual void populate(FileMapInfo* info, size_t alignment);
 158     int compute_crc();
 159   };
 160 
 161   FileMapHeader * _header;
 162 
 163   const char* _full_path;
 164   char* _paths_misc_info;
 165 
 166   static FileMapInfo* _current_info;
 167 
 168   bool  init_from_file(int fd);
 169   void  align_file_position();
 170   bool  validate_header_impl();
 171 
 172 public:
 173   FileMapInfo();
 174   ~FileMapInfo();
 175 
 176   static int current_version()        { return _current_version; }
 177   int    compute_header_crc()         { return _header->compute_crc(); }
 178   void   set_header_crc(int crc)      { _header->_crc = crc; }
 179   void   populate_header(size_t alignment);
 180   bool   validate_header();
 181   void   invalidate();
 182   int    version()                    { return _header->_version; }
 183   size_t alignment()                  { return _header->_alignment; }
 184   Universe::NARROW_OOP_MODE narrow_oop_mode() { return _header->_narrow_oop_mode; }
 185   int    narrow_oop_shift()           { return _header->_narrow_oop_shift; }
 186   uintx  max_heap_size()              { return _header->_max_heap_size; }
 187   address narrow_klass_base() const   { return _header->_narrow_klass_base; }
 188   int     narrow_klass_shift() const  { return _header->_narrow_klass_shift; }
 189   size_t space_capacity(int i)        { return _header->_space[i]._capacity; }
 190   struct FileMapHeader* header()      { return _header; }
 191   char* misc_data_patching_start()            { return _header->_misc_data_patching_start; }
 192   void set_misc_data_patching_start(char* p)  { _header->_misc_data_patching_start = p; }
 193 
 194   address cds_i2i_entry_code_buffers() {
 195     return _header->_cds_i2i_entry_code_buffers;
 196   }
 197   void set_cds_i2i_entry_code_buffers(address addr) {
 198     _header->_cds_i2i_entry_code_buffers = addr;
 199   }
 200   size_t cds_i2i_entry_code_buffers_size() {
 201     return _header->_cds_i2i_entry_code_buffers_size;
 202   }
 203   void set_cds_i2i_entry_code_buffers_size(size_t s) {
 204     _header->_cds_i2i_entry_code_buffers_size = s;
 205   }
 206 
 207   static FileMapInfo* current_info() {
 208     CDS_ONLY(return _current_info;)
 209     NOT_CDS(return NULL;)
 210   }
 211 
 212   static void assert_mark(bool check);
 213 
 214   // File manipulation.
 215   bool  initialize() NOT_CDS_RETURN_(false);
 216   bool  open_for_read();
 217   void  open_for_write();
 218   void  write_header();
 219   void  write_space(int i, Metaspace* space, bool read_only);
 220   void  write_region(int region, char* base, size_t size,
 221                      size_t capacity, bool read_only, bool allow_exec);
 222   void  write_string_regions(GrowableArray<MemRegion> *regions);
 223   void  write_bytes(const void* buffer, int count);
 224   void  write_bytes_aligned(const void* buffer, int count);
 225   char* map_region(int i);
 226   bool  map_string_regions();
 227   bool  verify_string_regions();
 228   void  fixup_string_regions();
 229   void  unmap_region(int i);
 230   void  dealloc_string_regions();
 231   bool  verify_region_checksum(int i);
 232   void  close();
 233   bool  is_open() { return _file_open; }
 234   ReservedSpace reserve_shared_memory();
 235 
 236   // JVM/TI RedefineClasses() support:
 237   // Remap the shared readonly space to shared readwrite, private.
 238   bool  remap_shared_readonly_as_readwrite();
 239 
 240   // Errors.
 241   static void fail_stop(const char *msg, ...) ATTRIBUTE_PRINTF(1, 2);
 242   static void fail_continue(const char *msg, ...) ATTRIBUTE_PRINTF(1, 2);
 243 
 244   // Return true if given address is in the mapped shared space.
 245   bool is_in_shared_space(const void* p) NOT_CDS_RETURN_(false);
 246   void print_shared_spaces() NOT_CDS_RETURN;
 247 
 248   static size_t shared_spaces_size() {
 249     return align_size_up(SharedReadOnlySize + SharedReadWriteSize +
 250                          SharedMiscDataSize + SharedMiscCodeSize,
 251                          os::vm_allocation_granularity());
 252   }
 253 
 254   // Stop CDS sharing and unmap CDS regions.
 255   static void stop_sharing_and_unmap(const char* msg);
 256 
 257   static void allocate_classpath_entry_table();
 258   bool validate_classpath_entry_table();
 259 
 260   static SharedClassPathEntry* shared_classpath(int index) {
 261     char* p = (char*)_classpath_entry_table;
 262     p += _classpath_entry_size * index;
 263     return (SharedClassPathEntry*)p;
 264   }
 265   static const char* shared_classpath_name(int index) {
 266     return shared_classpath(index)->_name;
 267   }
 268 
 269   static int get_number_of_share_classpaths() {
 270     return _classpath_entry_table_size;
 271   }
 272 };
 273 
 274 #endif // SHARE_VM_MEMORY_FILEMAP_HPP