annotate src/os/solaris/vm/perfMemory_solaris.cpp @ 21818:5ca2ea5eeff0

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