hotspot/src/os/linux/vm/perfMemory_linux.cpp
author gziemski
Fri, 01 Sep 2017 13:03:14 +0000
changeset 47107 8356043b90f0
parent 46405 17ab5460b2cb
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 40103
diff changeset
     2
 * Copyright (c) 2001, 2017, 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: 5237
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5237
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: 5237
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/vmSymbols.hpp"
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 40103
diff changeset
    27
#include "logging/log.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "os_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/handles.inline.hpp"
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
    33
#include "runtime/os.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/perfMemory.hpp"
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13963
diff changeset
    35
#include "services/memTracker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "utilities/exceptions.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// put OS-includes here
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
# include <sys/types.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
# include <sys/mman.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
# include <errno.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
# include <stdio.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
# include <unistd.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
# include <sys/stat.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
# include <signal.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
# include <pwd.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
static char* backing_store_file_name = NULL;  // name of the backing store
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                                              // file, if successfully created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// Standard Memory Implementation Details
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// create the PerfData memory region in standard memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
static char* create_standard_memory(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // allocate an aligned chuck of memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  char* mapAddress = os::reserve_memory(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  if (mapAddress == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // commit memory
18069
e6d4971c8650 8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents: 16674
diff changeset
    65
  if (!os::commit_memory(mapAddress, size, !ExecMem)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      warning("Could not commit PerfData memory\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    os::release_memory(mapAddress, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  return mapAddress;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// delete the PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
static void delete_standard_memory(char* addr, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // there are no persistent external resources to cleanup for standard
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // memory. since DestroyJavaVM does not support unloading of the JVM,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // cleanup of the memory resource is not performed. The memory will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // reclaimed by the OS upon termination of the process.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// save the specified memory region to the given file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// Note: this function might be called from signal handler (by os::abort()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// don't allocate heap memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
static void save_memory_to_file(char* addr, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
 const char* destfile = PerfMemory::get_perfdata_file_path();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
 assert(destfile[0] != '\0', "invalid PerfData file path");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  int result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  RESTARTABLE(::open(destfile, O_CREAT|O_WRONLY|O_TRUNC, S_IREAD|S_IWRITE),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
              result);;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  if (result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      warning("Could not create Perfdata save file: %s: %s\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   105
              destfile, os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    int fd = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    for (size_t remaining = size; remaining > 0;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      RESTARTABLE(::write(fd, addr, remaining), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      if (result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
        if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
          warning("Could not write Perfdata save file: %s: %s\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   116
                  destfile, os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      remaining -= (size_t)result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      addr += result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
18078
10417cf9967d 7178026: os::close can restart ::close but that is not a restartable syscall
rdurbin
parents: 18069
diff changeset
   125
    result = ::close(fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      if (result == OS_ERR) {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   128
        warning("Could not close %s: %s\n", destfile, os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   132
  FREE_C_HEAP_ARRAY(char, destfile);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// Shared Memory Implementation Details
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
// Note: the solaris and linux shared memory implementation uses the mmap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// interface with a backing store file to implement named shared memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
// Using the file system as the name space for shared memory allows a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
// common name space to be supported across a variety of platforms. It
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// also provides a name space that Java applications can deal with through
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// simple file apis.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// The solaris and linux implementations store the backing store file in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// a user specific temporary directory located in the /tmp file system,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// which is always a local file system and is sometimes a RAM based file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// system.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// return the user specific temporary directory name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
// the caller is expected to free the allocated memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
static char* get_user_tmp_dir(const char* user) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  const char* tmpdir = os::get_temp_directory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  const char* perfdir = PERFDATA_NAME;
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2131
diff changeset
   158
  size_t nbytes = strlen(tmpdir) + strlen(perfdir) + strlen(user) + 3;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   159
  char* dirname = NEW_C_HEAP_ARRAY(char, nbytes, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // construct the path name to user specific tmp directory
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2131
diff changeset
   162
  snprintf(dirname, nbytes, "%s/%s_%s", tmpdir, perfdir, user);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  return dirname;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// convert the given file name into a process id. if the file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// does not meet the file naming constraints, return 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
static pid_t filename_to_pid(const char* filename) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // a filename that doesn't begin with a digit is not a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // candidate for conversion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  if (!isdigit(*filename)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // check if file name can be converted to an integer without
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // any leftover characters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  char* remainder = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  errno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  pid_t pid = (pid_t)strtol(filename, &remainder, 10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  if (errno != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // check for left over characters. If any, then the filename is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // not a candidate for conversion.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  if (remainder != NULL && *remainder != '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // successful conversion, return the pid
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  return pid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   202
// Check if the given statbuf is considered a secure directory for
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   203
// the backing store files. Returns true if the directory is considered
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   204
// a secure location. Returns false if the statbuf is a symbolic link or
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   205
// if an error occurred.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   206
//
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   207
static bool is_statbuf_secure(struct stat *statp) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   208
  if (S_ISLNK(statp->st_mode) || !S_ISDIR(statp->st_mode)) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   209
    // The path represents a link or some non-directory file type,
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   210
    // which is not what we expected. Declare it insecure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   211
    //
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   212
    return false;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   213
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   214
  // We have an existing directory, check if the permissions are safe.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   215
  //
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   216
  if ((statp->st_mode & (S_IWGRP|S_IWOTH)) != 0) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   217
    // The directory is open for writing and could be subjected
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   218
    // to a symlink or a hard link attack. Declare it insecure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   219
    //
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   220
    return false;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   221
  }
32183
cd7ad76fe118 8075773: jps running as root fails after the fix of JDK-8050807
kevinw
parents: 28513
diff changeset
   222
  // If user is not root then see if the uid of the directory matches the effective uid of the process.
cd7ad76fe118 8075773: jps running as root fails after the fix of JDK-8050807
kevinw
parents: 28513
diff changeset
   223
  uid_t euid = geteuid();
cd7ad76fe118 8075773: jps running as root fails after the fix of JDK-8050807
kevinw
parents: 28513
diff changeset
   224
  if ((euid != 0) && (statp->st_uid != euid)) {
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   225
    // The directory was not created by this user, declare it insecure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   226
    //
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   227
    return false;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   228
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   229
  return true;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   230
}
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   231
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   232
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   233
// Check if the given path is considered a secure directory for
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// the backing store files. Returns true if the directory exists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// and is considered a secure location. Returns false if the path
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
   236
// is a symbolic link or if an error occurred.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
static bool is_directory_secure(const char* path) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  struct stat statbuf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  int result = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  RESTARTABLE(::lstat(path, &statbuf), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  if (result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   247
  // The path exists, see if it is secure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   248
  return is_statbuf_secure(&statbuf);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   249
}
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   250
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   251
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   252
// Check if the given directory file descriptor is considered a secure
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   253
// directory for the backing store files. Returns true if the directory
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   254
// exists and is considered a secure location. Returns false if the path
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   255
// is a symbolic link or if an error occurred.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   256
//
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   257
static bool is_dirfd_secure(int dir_fd) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   258
  struct stat statbuf;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   259
  int result = 0;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   260
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   261
  RESTARTABLE(::fstat(dir_fd, &statbuf), result);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   262
  if (result == OS_ERR) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   263
    return false;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   264
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   265
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   266
  // The path exists, now check its mode.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   267
  return is_statbuf_secure(&statbuf);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   268
}
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   269
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   270
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   271
// Check to make sure fd1 and fd2 are referencing the same file system object.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   272
//
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   273
static bool is_same_fsobject(int fd1, int fd2) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   274
  struct stat statbuf1;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   275
  struct stat statbuf2;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   276
  int result = 0;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   277
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   278
  RESTARTABLE(::fstat(fd1, &statbuf1), result);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   279
  if (result == OS_ERR) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   280
    return false;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   281
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   282
  RESTARTABLE(::fstat(fd2, &statbuf2), result);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   283
  if (result == OS_ERR) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   284
    return false;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   285
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   286
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   287
  if ((statbuf1.st_ino == statbuf2.st_ino) &&
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   288
      (statbuf1.st_dev == statbuf2.st_dev)) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   289
    return true;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   290
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   293
}
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   294
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   295
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   296
// Open the directory of the given path and validate it.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   297
// Return a DIR * of the open directory.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   298
//
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   299
static DIR *open_directory_secure(const char* dirname) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   300
  // Open the directory using open() so that it can be verified
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   301
  // to be secure by calling is_dirfd_secure(), opendir() and then check
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   302
  // to see if they are the same file system object.  This method does not
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   303
  // introduce a window of opportunity for the directory to be attacked that
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   304
  // calling opendir() and is_directory_secure() does.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   305
  int result;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   306
  DIR *dirp = NULL;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   307
  RESTARTABLE(::open(dirname, O_RDONLY|O_NOFOLLOW), result);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   308
  if (result == OS_ERR) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   309
    if (PrintMiscellaneous && Verbose) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   310
      if (errno == ELOOP) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   311
        warning("directory %s is a symlink and is not secure\n", dirname);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   312
      } else {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   313
        warning("could not open directory %s: %s\n", dirname, os::strerror(errno));
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   314
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    }
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   316
    return dirp;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   317
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   318
  int fd = result;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   319
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   320
  // Determine if the open directory is secure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   321
  if (!is_dirfd_secure(fd)) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   322
    // The directory is not a secure directory.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   323
    os::close(fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   324
    return dirp;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   325
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   326
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   327
  // Open the directory.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   328
  dirp = ::opendir(dirname);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   329
  if (dirp == NULL) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   330
    // The directory doesn't exist, close fd and return.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   331
    os::close(fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   332
    return dirp;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   333
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   334
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   335
  // Check to make sure fd and dirp are referencing the same file system object.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   336
  if (!is_same_fsobject(fd, dirfd(dirp))) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   337
    // The directory is not secure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   338
    os::close(fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   339
    os::closedir(dirp);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   340
    dirp = NULL;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   341
    return dirp;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   342
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   343
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   344
  // Close initial open now that we know directory is secure
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   345
  os::close(fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   346
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   347
  return dirp;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   348
}
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   349
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   350
// NOTE: The code below uses fchdir(), open() and unlink() because
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   351
// fdopendir(), openat() and unlinkat() are not supported on all
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   352
// versions.  Once the support for fdopendir(), openat() and unlinkat()
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   353
// is available on all supported versions the code can be changed
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   354
// to use these functions.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   355
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   356
// Open the directory of the given path, validate it and set the
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   357
// current working directory to it.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   358
// Return a DIR * of the open directory and the saved cwd fd.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   359
//
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   360
static DIR *open_directory_secure_cwd(const char* dirname, int *saved_cwd_fd) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   361
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   362
  // Open the directory.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   363
  DIR* dirp = open_directory_secure(dirname);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   364
  if (dirp == NULL) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   365
    // Directory doesn't exist or is insecure, so there is nothing to cleanup.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   366
    return dirp;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   367
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   368
  int fd = dirfd(dirp);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   369
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   370
  // Open a fd to the cwd and save it off.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   371
  int result;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   372
  RESTARTABLE(::open(".", O_RDONLY), result);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   373
  if (result == OS_ERR) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   374
    *saved_cwd_fd = -1;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   375
  } else {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   376
    *saved_cwd_fd = result;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   377
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   378
32387
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   379
  // Set the current directory to dirname by using the fd of the directory and
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   380
  // handle errors, otherwise shared memory files will be created in cwd.
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   381
  result = fchdir(fd);
32387
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   382
  if (result == OS_ERR) {
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   383
    if (PrintMiscellaneous && Verbose) {
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   384
      warning("could not change to directory %s", dirname);
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   385
    }
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   386
    if (*saved_cwd_fd != -1) {
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   387
      ::close(*saved_cwd_fd);
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   388
      *saved_cwd_fd = -1;
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   389
    }
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   390
    // Close the directory.
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   391
    os::closedir(dirp);
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   392
    return NULL;
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   393
  } else {
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   394
    return dirp;
a376fff9d4a5 8130910: hsperfdata file is created in wrong directory and not cleaned up if /tmp/hsperfdata_<username> has wrong permissions
dcubed
parents: 32183
diff changeset
   395
  }
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   396
}
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   397
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   398
// Close the directory and restore the current working directory.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   399
//
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   400
static void close_directory_secure_cwd(DIR* dirp, int saved_cwd_fd) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   401
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   402
  int result;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   403
  // If we have a saved cwd change back to it and close the fd.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   404
  if (saved_cwd_fd != -1) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   405
    result = fchdir(saved_cwd_fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   406
    ::close(saved_cwd_fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   407
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   408
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   409
  // Close the directory.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   410
  os::closedir(dirp);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   411
}
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   412
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   413
// Check if the given file descriptor is considered a secure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   414
//
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   415
static bool is_file_secure(int fd, const char *filename) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   416
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   417
  int result;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   418
  struct stat statbuf;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   419
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   420
  // Determine if the file is secure.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   421
  RESTARTABLE(::fstat(fd, &statbuf), result);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   422
  if (result == OS_ERR) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   423
    if (PrintMiscellaneous && Verbose) {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   424
      warning("fstat failed on %s: %s\n", filename, os::strerror(errno));
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   425
    }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   426
    return false;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   427
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   428
  if (statbuf.st_nlink > 1) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   429
    // A file with multiple links is not expected.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   430
    if (PrintMiscellaneous && Verbose) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   431
      warning("file %s has multiple links\n", filename);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   432
    }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   433
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
// return the user name for the given user id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
// the caller is expected to free the allocated memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
static char* get_user_name(uid_t uid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  struct passwd pwent;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // determine the max pwbuf size from sysconf, and hardcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // a default if this not available through sysconf.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  long bufsize = sysconf(_SC_GETPW_R_SIZE_MAX);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  if (bufsize == -1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    bufsize = 1024;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   454
  char* pwbuf = NEW_C_HEAP_ARRAY(char, bufsize, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // POSIX interface to getpwuid_r is used on LINUX
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  struct passwd* p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  int result = getpwuid_r(uid, &pwent, pwbuf, (size_t)bufsize, &p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  if (result != 0 || p == NULL || p->pw_name == NULL || *(p->pw_name) == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      if (result != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
        warning("Could not retrieve passwd entry: %s\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   464
                os::strerror(result));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      else if (p == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
        // this check is added to protect against an observed problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
        // with getpwuid_r() on RedHat 9 where getpwuid_r returns 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
        // indicating success, but has p == NULL. This was observed when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
        // inserting a file descriptor exhaustion fault prior to the call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
        // getpwuid_r() call. In this case, error is set to the appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
        // error condition, but this is undocumented behavior. This check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
        // is safe under any condition, but the use of errno in the output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
        // message may result in an erroneous message.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
        // Bug Id 89052 was opened with RedHat.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
        //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
        warning("Could not retrieve passwd entry: %s\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   478
                os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
        warning("Could not determine user name: %s\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
                p->pw_name == NULL ? "pw_name = NULL" :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
                                     "pw_name zero length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    }
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   486
    FREE_C_HEAP_ARRAY(char, pwbuf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   490
  char* user_name = NEW_C_HEAP_ARRAY(char, strlen(p->pw_name) + 1, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  strcpy(user_name, p->pw_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   493
  FREE_C_HEAP_ARRAY(char, pwbuf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  return user_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
// return the name of the user that owns the process identified by vmid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
// This method uses a slow directory search algorithm to find the backing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
// store file for the specified vmid and returns the user name, as determined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// by the user name suffix of the hsperfdata_<username> directory name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// the caller is expected to free the allocated memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
static char* get_user_name_slow(int vmid, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // short circuit the directory search if the process doesn't even exist.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  if (kill(vmid, 0) == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    if (errno == ESRCH) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
      THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
                  "Process not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    else /* EPERM */ {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   514
      THROW_MSG_0(vmSymbols::java_io_IOException(), os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  // directory search
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  char* oldest_user = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  time_t oldest_ctime = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  const char* tmpdirname = os::get_temp_directory();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   524
  // open the temp directory
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  DIR* tmpdirp = os::opendir(tmpdirname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  if (tmpdirp == NULL) {
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   528
    // Cannot open the directory to get the user name, return.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // for each entry in the directory that matches the pattern hsperfdata_*,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // open the directory and check if the file for the given vmid exists.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  // The file with the expected name and the latest creation date is used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // to determine the user name for the process id.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  struct dirent* dentry;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   538
  char* tdbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(tmpdirname), mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  errno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  while ((dentry = os::readdir(tmpdirp, (struct dirent *)tdbuf)) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    // check if the directory entry is a hsperfdata file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    if (strncmp(dentry->d_name, PERFDATA_NAME, strlen(PERFDATA_NAME)) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    char* usrdir_name = NEW_C_HEAP_ARRAY(char,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   548
                     strlen(tmpdirname) + strlen(dentry->d_name) + 2, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    strcpy(usrdir_name, tmpdirname);
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2131
diff changeset
   550
    strcat(usrdir_name, "/");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    strcat(usrdir_name, dentry->d_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   553
    // open the user directory
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   554
    DIR* subdirp = open_directory_secure(usrdir_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    if (subdirp == NULL) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   557
      FREE_C_HEAP_ARRAY(char, usrdir_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    // Since we don't create the backing store files in directories
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    // pointed to by symbolic links, we also don't follow them when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    // looking for the files. We check for a symbolic link after the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    // call to opendir in order to eliminate a small window where the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    // symlink can be exploited.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    if (!is_directory_secure(usrdir_name)) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   568
      FREE_C_HEAP_ARRAY(char, usrdir_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      os::closedir(subdirp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    struct dirent* udentry;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   574
    char* udbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(usrdir_name), mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    errno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    while ((udentry = os::readdir(subdirp, (struct dirent *)udbuf)) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      if (filename_to_pid(udentry->d_name) == vmid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
        struct stat statbuf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
        int result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
        char* filename = NEW_C_HEAP_ARRAY(char,
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   583
                   strlen(usrdir_name) + strlen(udentry->d_name) + 2, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
        strcpy(filename, usrdir_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
        strcat(filename, "/");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
        strcat(filename, udentry->d_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
        // don't follow symbolic links for the file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
        RESTARTABLE(::lstat(filename, &statbuf), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
        if (result == OS_ERR) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   592
           FREE_C_HEAP_ARRAY(char, filename);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
           continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
        // skip over files that are not regular files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
        if (!S_ISREG(statbuf.st_mode)) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   598
          FREE_C_HEAP_ARRAY(char, filename);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
        // compare and save filename with latest creation time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
        if (statbuf.st_size > 0 && statbuf.st_ctime > oldest_ctime) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
          if (statbuf.st_ctime > oldest_ctime) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
            char* user = strchr(dentry->d_name, '_') + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   608
            if (oldest_user != NULL) FREE_C_HEAP_ARRAY(char, oldest_user);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   609
            oldest_user = NEW_C_HEAP_ARRAY(char, strlen(user)+1, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
            strcpy(oldest_user, user);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
            oldest_ctime = statbuf.st_ctime;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   616
        FREE_C_HEAP_ARRAY(char, filename);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    os::closedir(subdirp);
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   620
    FREE_C_HEAP_ARRAY(char, udbuf);
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   621
    FREE_C_HEAP_ARRAY(char, usrdir_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  os::closedir(tmpdirp);
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   624
  FREE_C_HEAP_ARRAY(char, tdbuf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  return(oldest_user);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
// return the name of the user that owns the JVM indicated by the given vmid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
static char* get_user_name(int vmid, TRAPS) {
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 27007
diff changeset
   632
  return get_user_name_slow(vmid, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
// return the file name of the backing store file for the named
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
// shared memory region for the given user name and vmid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
// the caller is expected to free the allocated memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
static char* get_sharedmem_filename(const char* dirname, int vmid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  // add 2 for the file separator and a null terminator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  size_t nbytes = strlen(dirname) + UINT_CHARS + 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   645
  char* name = NEW_C_HEAP_ARRAY(char, nbytes, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
  snprintf(name, nbytes, "%s/%d", dirname, vmid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  return name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
// remove file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
// this method removes the file specified by the given path
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
static void remove_file(const char* path) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  int result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  // if the file is a directory, the following unlink will fail. since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // we don't expect to find directories in the user temp directory, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  // won't try to handle this situation. even if accidentially or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  // maliciously planted, the directory's presence won't hurt anything.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  RESTARTABLE(::unlink(path), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  if (PrintMiscellaneous && Verbose && result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    if (errno != ENOENT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
      warning("Could not unlink shared memory backing"
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   669
              " store file %s : %s\n", path, os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
// cleanup stale shared memory resources
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
// This method attempts to remove all stale shared memory files in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
// the named user temporary directory. It scans the named directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
// for files matching the pattern ^$[0-9]*$. For each file found, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
// process id is extracted from the file name and a test is run to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
// determine if the process is alive. If the process is not alive,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
// any stale file resources are removed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
static void cleanup_sharedmem_resources(const char* dirname) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   686
  int saved_cwd_fd;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   687
  // open the directory
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   688
  DIR* dirp = open_directory_secure_cwd(dirname, &saved_cwd_fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  if (dirp == NULL) {
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   690
    // directory doesn't exist or is insecure, so there is nothing to cleanup
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  // for each entry in the directory that matches the expected file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  // name pattern, determine if the file resources are stale and if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  // so, remove the file resources. Note, instrumented HotSpot processes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  // for this user may start and/or terminate during this search and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  // remove or create new files in this directory. The behavior of this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  // loop under these conditions is dependent upon the implementation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  // opendir/readdir.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  struct dirent* entry;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7690
diff changeset
   703
  char* dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(dirname), mtInternal);
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   704
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  errno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  while ((entry = os::readdir(dirp, (struct dirent *)dbuf)) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    pid_t pid = filename_to_pid(entry->d_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    if (pid == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
      if (strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
        // attempt to remove all unexpected files, except "." and ".."
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   714
        unlink(entry->d_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
      errno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    // we now have a file name that converts to a valid integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    // that could represent a process id . if this process id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    // matches the current process id or the process is not running,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    // then remove the stale file resources.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    // process liveness is detected by sending signal number 0 to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
    // the process id (see kill(2)). if kill determines that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
    // process does not exist, then the file resources are removed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    // if kill determines that that we don't have permission to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    // signal the process, then the file resources are assumed to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    // be stale and are removed because the resources for such a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    // process should be in a different user specific directory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    if ((pid == os::current_process_id()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
        (kill(pid, 0) == OS_ERR && (errno == ESRCH || errno == EPERM))) {
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   736
        unlink(entry->d_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    errno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  }
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   740
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   741
  // close the directory and reset the current working directory
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   742
  close_directory_secure_cwd(dirp, saved_cwd_fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   743
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   744
  FREE_C_HEAP_ARRAY(char, dbuf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
// make the user specific temporary directory. Returns true if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
// the directory exists and is secure upon return. Returns false
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
// if the directory exists but is either a symlink, is otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
// insecure, or if an error occurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
static bool make_user_tmp_dir(const char* dirname) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // create the directory with 0755 permissions. note that the directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  // will be owned by euid::egid, which may not be the same as uid::gid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  if (mkdir(dirname, S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH) == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    if (errno == EEXIST) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      // The directory already exists and was probably created by another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
      // JVM instance. However, this could also be the result of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
      // deliberate symlink. Verify that the existing directory is safe.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
      if (!is_directory_secure(dirname)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
        // directory is not secure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
        if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
          warning("%s directory is insecure\n", dirname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      // we encountered some other failure while attempting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
      // to create the directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
        warning("could not create directory %s: %s\n",
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   777
                dirname, os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
// create the shared memory file resources
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
// This method creates the shared memory file with the given size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
// This method also creates the user specific temporary directory, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
// it does not yet exist.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
static int create_sharedmem_resources(const char* dirname, const char* filename, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  // make the user temporary directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  if (!make_user_tmp_dir(dirname)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    // could not make/find the directory or the found directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    // was not secure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   800
  int saved_cwd_fd;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   801
  // open the directory and set the current working directory to it
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   802
  DIR* dirp = open_directory_secure_cwd(dirname, &saved_cwd_fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   803
  if (dirp == NULL) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   804
    // Directory doesn't exist or is insecure, so cannot create shared
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   805
    // memory file.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   806
    return -1;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   807
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   809
  // Open the filename in the current directory.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   810
  // Cannot use O_TRUNC here; truncation of an existing file has to happen
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   811
  // after the is_file_secure() check below.
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   812
  int result;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   813
  RESTARTABLE(::open(filename, O_RDWR|O_CREAT|O_NOFOLLOW, S_IREAD|S_IWRITE), result);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  if (result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
    if (PrintMiscellaneous && Verbose) {
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   816
      if (errno == ELOOP) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   817
        warning("file %s is a symlink and is not secure\n", filename);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   818
      } else {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   819
        warning("could not create file %s: %s\n", filename, os::strerror(errno));
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   820
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
    }
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   822
    // close the directory and reset the current working directory
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   823
    close_directory_secure_cwd(dirp, saved_cwd_fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   824
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  }
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   827
  // close the directory and reset the current working directory
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   828
  close_directory_secure_cwd(dirp, saved_cwd_fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  // save the file descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  int fd = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   833
  // check to see if the file is secure
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   834
  if (!is_file_secure(fd, filename)) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   835
    ::close(fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   836
    return -1;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   837
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   838
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   839
  // truncate the file to get rid of any existing data
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   840
  RESTARTABLE(::ftruncate(fd, (off_t)0), result);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   841
  if (result == OS_ERR) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   842
    if (PrintMiscellaneous && Verbose) {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   843
      warning("could not truncate shared memory file: %s\n", os::strerror(errno));
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   844
    }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   845
    ::close(fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   846
    return -1;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   847
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  // set the file size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  RESTARTABLE(::ftruncate(fd, (off_t)size), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
  if (result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    if (PrintMiscellaneous && Verbose) {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   852
      warning("could not set shared memory file size: %s\n", os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    }
18078
10417cf9967d 7178026: os::close can restart ::close but that is not a restartable syscall
rdurbin
parents: 18069
diff changeset
   854
    ::close(fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
7690
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   858
  // Verify that we have enough disk space for this file.
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   859
  // We'll get random SIGBUS crashes on memory accesses if
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   860
  // we don't.
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   861
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   862
  for (size_t seekpos = 0; seekpos < size; seekpos += os::vm_page_size()) {
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   863
    int zero_int = 0;
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   864
    result = (int)os::seek_to_file_offset(fd, (jlong)(seekpos));
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   865
    if (result == -1 ) break;
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   866
    RESTARTABLE(::write(fd, &zero_int, 1), result);
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   867
    if (result != 1) {
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   868
      if (errno == ENOSPC) {
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   869
        warning("Insufficient space for shared memory file:\n   %s\nTry using the -Djava.io.tmpdir= option to select an alternate temp location.\n", filename);
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   870
      }
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   871
      break;
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   872
    }
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   873
  }
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   874
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   875
  if (result != -1) {
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   876
    return fd;
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   877
  } else {
18078
10417cf9967d 7178026: os::close can restart ::close but that is not a restartable syscall
rdurbin
parents: 18069
diff changeset
   878
    ::close(fd);
7690
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   879
    return -1;
23de7f961fd2 7007769: VM crashes with SIGBUS writing PerfData if tmp space is full
bobv
parents: 7397
diff changeset
   880
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
// open the shared memory file for the given user and vmid. returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
// the file descriptor for the open file or -1 if the file could not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
// be opened.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
static int open_sharedmem_file(const char* filename, int oflags, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  // open the file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  int result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  RESTARTABLE(::open(filename, oflags), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  if (result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    if (errno == ENOENT) {
16674
3847a5ea1846 8006001: [parfait] Possible file leak in hotspot/src/os/linux/vm/perfMemory_linux.cpp
ccheung
parents: 14120
diff changeset
   894
      THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
40103
3c3569845229 8162869: Small fixes for AIX perf memory and attach listener
clanger
parents: 37113
diff changeset
   895
                 "Process not found", OS_ERR);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    else if (errno == EACCES) {
16674
3847a5ea1846 8006001: [parfait] Possible file leak in hotspot/src/os/linux/vm/perfMemory_linux.cpp
ccheung
parents: 14120
diff changeset
   898
      THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
40103
3c3569845229 8162869: Small fixes for AIX perf memory and attach listener
clanger
parents: 37113
diff changeset
   899
                 "Permission denied", OS_ERR);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    else {
40103
3c3569845229 8162869: Small fixes for AIX perf memory and attach listener
clanger
parents: 37113
diff changeset
   902
      THROW_MSG_(vmSymbols::java_io_IOException(),
3c3569845229 8162869: Small fixes for AIX perf memory and attach listener
clanger
parents: 37113
diff changeset
   903
                 os::strerror(errno), OS_ERR);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  }
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   906
  int fd = result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   908
  // check to see if the file is secure
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   909
  if (!is_file_secure(fd, filename)) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   910
    ::close(fd);
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   911
    return -1;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   912
  }
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   913
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   914
  return fd;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
// create a named shared memory region. returns the address of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
// memory region on success or NULL on failure. A return value of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
// NULL will ultimately disable the shared memory feature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
//
40103
3c3569845229 8162869: Small fixes for AIX perf memory and attach listener
clanger
parents: 37113
diff changeset
   921
// On Linux, the name space for shared memory objects
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
// is the file system name space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
// A monitoring application attaching to a JVM does not need to know
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
// the file system name of the shared memory object. However, it may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
// be convenient for applications to discover the existence of newly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
// created and terminating JVMs by watching the file system name space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
// for files being created or removed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
static char* mmap_create_shared(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  int result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  int fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  char* mapAddress;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  int vmid = os::current_process_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  char* user_name = get_user_name(geteuid());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  if (user_name == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  char* dirname = get_user_tmp_dir(user_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  char* filename = get_sharedmem_filename(dirname, vmid);
40103
3c3569845229 8162869: Small fixes for AIX perf memory and attach listener
clanger
parents: 37113
diff changeset
   945
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   946
  // get the short filename
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   947
  char* short_filename = strrchr(filename, '/');
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   948
  if (short_filename == NULL) {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   949
    short_filename = filename;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   950
  } else {
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   951
    short_filename++;
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   952
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  // cleanup any stale shared memory files
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  cleanup_sharedmem_resources(dirname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  assert(((size > 0) && (size % os::vm_page_size() == 0)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
         "unexpected PerfMemory region size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
   960
  fd = create_sharedmem_resources(dirname, short_filename, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   962
  FREE_C_HEAP_ARRAY(char, user_name);
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   963
  FREE_C_HEAP_ARRAY(char, dirname);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  if (fd == -1) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   966
    FREE_C_HEAP_ARRAY(char, filename);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  mapAddress = (char*)::mmap((char*)0, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
18078
10417cf9967d 7178026: os::close can restart ::close but that is not a restartable syscall
rdurbin
parents: 18069
diff changeset
   972
  result = ::close(fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  assert(result != OS_ERR, "could not close file");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  if (mapAddress == MAP_FAILED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    if (PrintMiscellaneous && Verbose) {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
   977
      warning("mmap failed -  %s\n", os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    remove_file(filename);
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   980
    FREE_C_HEAP_ARRAY(char, filename);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  // save the file name for use in delete_shared_memory()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  backing_store_file_name = filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  // clear the shared memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  (void)::memset((void*) mapAddress, 0, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13963
diff changeset
   990
  // it does not go through os api, the operation has to record from here
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24424
diff changeset
   991
  MemTracker::record_virtual_memory_reserve_and_commit((address)mapAddress, size, CURRENT_PC, mtInternal);
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13963
diff changeset
   992
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  return mapAddress;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
// release a named shared memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
static void unmap_shared(char* addr, size_t bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  os::release_memory(addr, bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
// create the PerfData memory region in shared memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
static char* create_shared_memory(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  // create the shared memory region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  return mmap_create_shared(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
// delete the shared PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
static void delete_shared_memory(char* addr, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  // cleanup the persistent shared memory resources. since DestroyJavaVM does
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  // not support unloading of the JVM, unmapping of the memory resource is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  // not performed. The memory will be reclaimed by the OS upon termination of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  // the process. The backing store file is deleted from the file system.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  assert(!PerfDisableSharedMem, "shouldn't be here");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  if (backing_store_file_name != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
    remove_file(backing_store_file_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
    // Don't.. Free heap memory could deadlock os::abort() if it is called
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
    // from signal handler. OS will reclaim the heap memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
    // FREE_C_HEAP_ARRAY(char, backing_store_file_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    backing_store_file_name = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
// return the size of the file for the given file descriptor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
// or 0 if it is not a valid size for a shared memory file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
static size_t sharedmem_filesize(int fd, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  struct stat statbuf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  int result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  RESTARTABLE(::fstat(fd, &statbuf), result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
  if (result == OS_ERR) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
    if (PrintMiscellaneous && Verbose) {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
  1041
      warning("fstat failed: %s\n", os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
    THROW_MSG_0(vmSymbols::java_io_IOException(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
                "Could not determine PerfMemory size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  if ((statbuf.st_size == 0) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
     ((size_t)statbuf.st_size % os::vm_page_size() != 0)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
    THROW_MSG_0(vmSymbols::java_lang_Exception(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
                "Invalid PerfMemory size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  return (size_t)statbuf.st_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
// attach to a named shared memory region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
static void mmap_attach_shared(const char* user, int vmid, PerfMemory::PerfMemoryMode mode, char** addr, size_t* sizep, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  char* mapAddress;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  int result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  int fd;
16674
3847a5ea1846 8006001: [parfait] Possible file leak in hotspot/src/os/linux/vm/perfMemory_linux.cpp
ccheung
parents: 14120
diff changeset
  1063
  size_t size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  const char* luser = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  int mmap_prot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  int file_flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  // map the high level access mode to the appropriate permission
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  // constructs for the file and the shared memory mapping.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  if (mode == PerfMemory::PERF_MODE_RO) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
    mmap_prot = PROT_READ;
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
  1075
    file_flags = O_RDONLY | O_NOFOLLOW;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  else if (mode == PerfMemory::PERF_MODE_RW) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
#ifdef LATER
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
    mmap_prot = PROT_READ | PROT_WRITE;
28513
9464a1b5c184 8050807: Better performing performance data handling
gthornbr
parents: 27883
diff changeset
  1080
    file_flags = O_RDWR | O_NOFOLLOW;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
              "Unsupported access mode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
              "Illegal access mode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  if (user == NULL || strlen(user) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
    luser = get_user_name(vmid, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    luser = user;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  if (luser == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
    THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
              "Could not map vmid to user Name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  char* dirname = get_user_tmp_dir(luser);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  // since we don't follow symbolic links when creating the backing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  // store file, we don't follow them when attaching either.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  if (!is_directory_secure(dirname)) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1109
    FREE_C_HEAP_ARRAY(char, dirname);
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27007
diff changeset
  1110
    if (luser != user) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1111
      FREE_C_HEAP_ARRAY(char, luser);
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 27007
diff changeset
  1112
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
    THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
              "Process not found");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  char* filename = get_sharedmem_filename(dirname, vmid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  // copy heap memory to resource memory. the open_sharedmem_file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  // method below need to use the filename, but could throw an
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  // exception. using a resource array prevents the leak that
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  // would otherwise occur.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  char* rfilename = NEW_RESOURCE_ARRAY(char, strlen(filename) + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  strcpy(rfilename, filename);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  // free the c heap resources that are no longer needed
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1127
  if (luser != user) FREE_C_HEAP_ARRAY(char, luser);
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1128
  FREE_C_HEAP_ARRAY(char, dirname);
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1129
  FREE_C_HEAP_ARRAY(char, filename);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  // open the shared memory file for the give vmid
22745
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1132
  fd = open_sharedmem_file(rfilename, file_flags, THREAD);
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1133
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1134
  if (fd == OS_ERR) {
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1135
    return;
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1136
  }
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1137
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1138
  if (HAS_PENDING_EXCEPTION) {
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1139
    ::close(fd);
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1140
    return;
4acf6ad4c462 8029775: Solaris code cleanup
coleenp
parents: 18086
diff changeset
  1141
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  if (*sizep == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
    size = sharedmem_filesize(fd, CHECK);
16674
3847a5ea1846 8006001: [parfait] Possible file leak in hotspot/src/os/linux/vm/perfMemory_linux.cpp
ccheung
parents: 14120
diff changeset
  1145
  } else {
3847a5ea1846 8006001: [parfait] Possible file leak in hotspot/src/os/linux/vm/perfMemory_linux.cpp
ccheung
parents: 14120
diff changeset
  1146
    size = *sizep;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
16674
3847a5ea1846 8006001: [parfait] Possible file leak in hotspot/src/os/linux/vm/perfMemory_linux.cpp
ccheung
parents: 14120
diff changeset
  1149
  assert(size > 0, "unexpected size <= 0");
3847a5ea1846 8006001: [parfait] Possible file leak in hotspot/src/os/linux/vm/perfMemory_linux.cpp
ccheung
parents: 14120
diff changeset
  1150
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  mapAddress = (char*)::mmap((char*)0, size, mmap_prot, MAP_SHARED, fd, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
18078
10417cf9967d 7178026: os::close can restart ::close but that is not a restartable syscall
rdurbin
parents: 18069
diff changeset
  1153
  result = ::close(fd);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  assert(result != OS_ERR, "could not close file");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  if (mapAddress == MAP_FAILED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
    if (PrintMiscellaneous && Verbose) {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 32387
diff changeset
  1158
      warning("mmap failed: %s\n", os::strerror(errno));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
    THROW_MSG(vmSymbols::java_lang_OutOfMemoryError(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
              "Could not map PerfMemory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13963
diff changeset
  1164
  // it does not go through os api, the operation has to record from here
25946
1572c9f03fb9 8046598: Scalable Native memory tracking development
zgu
parents: 24424
diff changeset
  1165
  MemTracker::record_virtual_memory_reserve_and_commit((address)mapAddress, size, CURRENT_PC, mtInternal);
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13963
diff changeset
  1166
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
  *addr = mapAddress;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  *sizep = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
46405
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 40103
diff changeset
  1170
  log_debug(perf, memops)("mapped " SIZE_FORMAT " bytes for vmid %d at "
17ab5460b2cb 8168122: Update logging in perfMemory to Unified Logging
rprotacio
parents: 40103
diff changeset
  1171
                          INTPTR_FORMAT "\n", size, vmid, p2i((void*)mapAddress));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
// create the PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
// This method creates the memory region used to store performance
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
// data for the JVM. The memory may be created in standard or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
// shared memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
void PerfMemory::create_memory_region(size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
  if (PerfDisableSharedMem) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    // do not share the memory for the performance data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
    _start = create_standard_memory(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    _start = create_shared_memory(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    if (_start == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
      // creation of the shared memory region failed, attempt
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
      // to create a contiguous, non-shared memory region instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
      if (PrintMiscellaneous && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
        warning("Reverting to non-shared PerfMemory region.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
      PerfDisableSharedMem = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
      _start = create_standard_memory(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
  if (_start != NULL) _capacity = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
// delete the PerfData memory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
// This method deletes the memory region used to store performance
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
// data for the JVM. The memory region indicated by the <address, size>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
// tuple will be inaccessible after a call to this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
void PerfMemory::delete_memory_region() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  assert((start() != NULL && capacity() > 0), "verify proper state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
  // If user specifies PerfDataSaveFile, it will save the performance data
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
  // to the specified file name no matter whether PerfDataSaveToFile is specified
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
  // or not. In other word, -XX:PerfDataSaveFile=.. overrides flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
  // -XX:+PerfDataSaveToFile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
  if (PerfDataSaveToFile || PerfDataSaveFile != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
    save_memory_to_file(start(), capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
  if (PerfDisableSharedMem) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
    delete_standard_memory(start(), capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    delete_shared_memory(start(), capacity());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
// attach to the PerfData memory region for another JVM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
// This method returns an <address, size> tuple that points to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
// a memory buffer that is kept reasonably synchronized with
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
// the PerfData memory region for the indicated JVM. This
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
// buffer may be kept in synchronization via shared memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
// or some other mechanism that keeps the buffer updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
// If the JVM chooses not to support the attachability feature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
// this method should throw an UnsupportedOperation exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
// This implementation utilizes named shared memory to map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
// the indicated process's PerfData memory region into this JVMs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
// address space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
void PerfMemory::attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
  if (vmid == 0 || vmid == os::current_process_id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
     *addrp = start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
     *sizep = capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
     return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  mmap_attach_shared(user, vmid, mode, addrp, sizep, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
// detach from the PerfData memory region of another JVM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
// This method detaches the PerfData memory region of another
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
// JVM, specified as an <address, size> tuple of a buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
// in this process's address space. This method may perform
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
// arbitrary actions to accomplish the detachment. The memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
// region specified by <address, size> will be inaccessible after
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
// a call to this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
// If the JVM chooses not to support the attachability feature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
// this method should throw an UnsupportedOperation exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
// This implementation utilizes named shared memory to detach
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
// the indicated process's PerfData memory region from this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
// process's address space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
void PerfMemory::detach(char* addr, size_t bytes, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  assert(addr != 0, "address sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
  assert(bytes > 0, "capacity sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  if (PerfMemory::contains(addr) || PerfMemory::contains(addr + bytes - 1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
    // prevent accidental detachment of this process's PerfMemory region
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  unmap_shared(addr, bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
}