Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/src/jdk.attach/linux/classes/sun/tools/attach/VirtualMachineImpl.java
67699 views
1
/*
2
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
package sun.tools.attach;
26
27
import com.sun.tools.attach.AttachOperationFailedException;
28
import com.sun.tools.attach.AgentLoadException;
29
import com.sun.tools.attach.AttachNotSupportedException;
30
import com.sun.tools.attach.spi.AttachProvider;
31
32
import java.io.InputStream;
33
import java.io.IOException;
34
import java.io.File;
35
import java.nio.charset.StandardCharsets;
36
import java.nio.file.Path;
37
import java.nio.file.Paths;
38
import java.nio.file.Files;
39
40
/*
41
* Linux implementation of HotSpotVirtualMachine
42
*/
43
public class VirtualMachineImpl extends HotSpotVirtualMachine {
44
// "/tmp" is used as a global well-known location for the files
45
// .java_pid<pid>. and .attach_pid<pid>. It is important that this
46
// location is the same for all processes, otherwise the tools
47
// will not be able to find all Hotspot processes.
48
// Any changes to this needs to be synchronized with HotSpot.
49
private static final String tmpdir = "/tmp";
50
String socket_path;
51
/**
52
* Attaches to the target VM
53
*/
54
VirtualMachineImpl(AttachProvider provider, String vmid)
55
throws AttachNotSupportedException, IOException
56
{
57
super(provider, vmid);
58
59
// This provider only understands pids
60
int pid;
61
try {
62
pid = Integer.parseInt(vmid);
63
if (pid < 1) {
64
throw new NumberFormatException();
65
}
66
} catch (NumberFormatException x) {
67
throw new AttachNotSupportedException("Invalid process identifier: " + vmid);
68
}
69
70
// Try to resolve to the "inner most" pid namespace
71
int ns_pid = getNamespacePid(pid);
72
73
// Find the socket file. If not found then we attempt to start the
74
// attach mechanism in the target VM by sending it a QUIT signal.
75
// Then we attempt to find the socket file again.
76
File socket_file = findSocketFile(pid, ns_pid);
77
socket_path = socket_file.getPath();
78
if (!socket_file.exists()) {
79
// Keep canonical version of File, to delete, in case target process ends and /proc link has gone:
80
File f = createAttachFile(pid, ns_pid).getCanonicalFile();
81
try {
82
sendQuitTo(pid);
83
84
// give the target VM time to start the attach mechanism
85
final int delay_step = 100;
86
final long timeout = attachTimeout();
87
long time_spend = 0;
88
long delay = 0;
89
do {
90
// Increase timeout on each attempt to reduce polling
91
delay += delay_step;
92
try {
93
Thread.sleep(delay);
94
} catch (InterruptedException x) { }
95
96
time_spend += delay;
97
if (time_spend > timeout/2 && !socket_file.exists()) {
98
// Send QUIT again to give target VM the last chance to react
99
sendQuitTo(pid);
100
}
101
} while (time_spend <= timeout && !socket_file.exists());
102
if (!socket_file.exists()) {
103
throw new AttachNotSupportedException(
104
String.format("Unable to open socket file %s: " +
105
"target process %d doesn't respond within %dms " +
106
"or HotSpot VM not loaded", socket_path, pid,
107
time_spend));
108
}
109
} finally {
110
f.delete();
111
}
112
}
113
114
// Check that the file owner/permission to avoid attaching to
115
// bogus process
116
checkPermissions(socket_path);
117
118
// Check that we can connect to the process
119
// - this ensures we throw the permission denied error now rather than
120
// later when we attempt to enqueue a command.
121
int s = socket();
122
try {
123
connect(s, socket_path);
124
} finally {
125
close(s);
126
}
127
}
128
129
/**
130
* Detach from the target VM
131
*/
132
public void detach() throws IOException {
133
synchronized (this) {
134
if (socket_path != null) {
135
socket_path = null;
136
}
137
}
138
}
139
140
// protocol version
141
private final static String PROTOCOL_VERSION = "1";
142
143
// known errors
144
private final static int ATTACH_ERROR_BADVERSION = 101;
145
146
/**
147
* Execute the given command in the target VM.
148
*/
149
InputStream execute(String cmd, Object ... args) throws AgentLoadException, IOException {
150
assert args.length <= 3; // includes null
151
152
// did we detach?
153
synchronized (this) {
154
if (socket_path == null) {
155
throw new IOException("Detached from target VM");
156
}
157
}
158
159
// create UNIX socket
160
int s = socket();
161
162
// connect to target VM
163
try {
164
connect(s, socket_path);
165
} catch (IOException x) {
166
close(s);
167
throw x;
168
}
169
170
IOException ioe = null;
171
172
// connected - write request
173
// <ver> <cmd> <args...>
174
try {
175
writeString(s, PROTOCOL_VERSION);
176
writeString(s, cmd);
177
178
for (int i = 0; i < 3; i++) {
179
if (i < args.length && args[i] != null) {
180
writeString(s, (String)args[i]);
181
} else {
182
writeString(s, "");
183
}
184
}
185
} catch (IOException x) {
186
ioe = x;
187
}
188
189
190
// Create an input stream to read reply
191
SocketInputStream sis = new SocketInputStream(s);
192
193
// Read the command completion status
194
int completionStatus;
195
try {
196
completionStatus = readInt(sis);
197
} catch (IOException x) {
198
sis.close();
199
if (ioe != null) {
200
throw ioe;
201
} else {
202
throw x;
203
}
204
}
205
206
if (completionStatus != 0) {
207
// read from the stream and use that as the error message
208
String message = readErrorMessage(sis);
209
sis.close();
210
211
// In the event of a protocol mismatch then the target VM
212
// returns a known error so that we can throw a reasonable
213
// error.
214
if (completionStatus == ATTACH_ERROR_BADVERSION) {
215
throw new IOException("Protocol mismatch with target VM");
216
}
217
218
// Special-case the "load" command so that the right exception is
219
// thrown.
220
if (cmd.equals("load")) {
221
String msg = "Failed to load agent library";
222
if (!message.isEmpty())
223
msg += ": " + message;
224
throw new AgentLoadException(msg);
225
} else {
226
if (message.isEmpty())
227
message = "Command failed in target VM";
228
throw new AttachOperationFailedException(message);
229
}
230
}
231
232
// Return the input stream so that the command output can be read
233
return sis;
234
}
235
236
/*
237
* InputStream for the socket connection to get target VM
238
*/
239
private class SocketInputStream extends InputStream {
240
int s = -1;
241
242
public SocketInputStream(int s) {
243
this.s = s;
244
}
245
246
public synchronized int read() throws IOException {
247
byte b[] = new byte[1];
248
int n = this.read(b, 0, 1);
249
if (n == 1) {
250
return b[0] & 0xff;
251
} else {
252
return -1;
253
}
254
}
255
256
public synchronized int read(byte[] bs, int off, int len) throws IOException {
257
if ((off < 0) || (off > bs.length) || (len < 0) ||
258
((off + len) > bs.length) || ((off + len) < 0)) {
259
throw new IndexOutOfBoundsException();
260
} else if (len == 0) {
261
return 0;
262
}
263
264
return VirtualMachineImpl.read(s, bs, off, len);
265
}
266
267
public synchronized void close() throws IOException {
268
if (s != -1) {
269
int toClose = s;
270
s = -1;
271
VirtualMachineImpl.close(toClose);
272
}
273
}
274
}
275
276
// Return the socket file for the given process.
277
private File findSocketFile(int pid, int ns_pid) {
278
// A process may not exist in the same mount namespace as the caller.
279
// Instead, attach relative to the target root filesystem as exposed by
280
// procfs regardless of namespaces.
281
String root = "/proc/" + pid + "/root/" + tmpdir;
282
return new File(root, ".java_pid" + ns_pid);
283
}
284
285
// On Linux a simple handshake is used to start the attach mechanism
286
// if not already started. The client creates a .attach_pid<pid> file in the
287
// target VM's working directory (or temp directory), and the SIGQUIT handler
288
// checks for the file.
289
private File createAttachFile(int pid, int ns_pid) throws IOException {
290
String fn = ".attach_pid" + ns_pid;
291
String path = "/proc/" + pid + "/cwd/" + fn;
292
File f = new File(path);
293
try {
294
// Do not canonicalize the file path, or we will fail to attach to a VM in a container.
295
f.createNewFile();
296
} catch (IOException x) {
297
String root;
298
if (pid != ns_pid) {
299
// A process may not exist in the same mount namespace as the caller.
300
// Instead, attach relative to the target root filesystem as exposed by
301
// procfs regardless of namespaces.
302
root = "/proc/" + pid + "/root/" + tmpdir;
303
} else {
304
root = tmpdir;
305
}
306
f = new File(root, fn);
307
f.createNewFile();
308
}
309
return f;
310
}
311
312
/*
313
* Write/sends the given to the target VM. String is transmitted in
314
* UTF-8 encoding.
315
*/
316
private void writeString(int fd, String s) throws IOException {
317
if (s.length() > 0) {
318
byte b[];
319
try {
320
b = s.getBytes("UTF-8");
321
} catch (java.io.UnsupportedEncodingException x) {
322
throw new InternalError(x);
323
}
324
VirtualMachineImpl.write(fd, b, 0, b.length);
325
}
326
byte b[] = new byte[1];
327
b[0] = 0;
328
write(fd, b, 0, 1);
329
}
330
331
332
// Return the inner most namespaced PID if there is one,
333
// otherwise return the original PID.
334
private int getNamespacePid(int pid) throws AttachNotSupportedException, IOException {
335
// Assuming a real procfs sits beneath, reading this doesn't block
336
// nor will it consume a lot of memory.
337
String statusFile = "/proc/" + pid + "/status";
338
File f = new File(statusFile);
339
if (!f.exists()) {
340
return pid; // Likely a bad pid, but this is properly handled later.
341
}
342
343
Path statusPath = Paths.get(statusFile);
344
345
try {
346
for (String line : Files.readAllLines(statusPath, StandardCharsets.UTF_8)) {
347
String[] parts = line.split(":");
348
if (parts.length == 2 && parts[0].trim().equals("NSpid")) {
349
parts = parts[1].trim().split("\\s+");
350
// The last entry represents the PID the JVM "thinks" it is.
351
// Even in non-namespaced pids these entries should be
352
// valid. You could refer to it as the inner most pid.
353
int ns_pid = Integer.parseInt(parts[parts.length - 1]);
354
return ns_pid;
355
}
356
}
357
// Old kernels may not have NSpid field (i.e. 3.10).
358
// Fallback to original pid in the event we cannot deduce.
359
return pid;
360
} catch (NumberFormatException | IOException x) {
361
throw new AttachNotSupportedException("Unable to parse namespace");
362
}
363
}
364
365
366
//-- native methods
367
368
static native void sendQuitTo(int pid) throws IOException;
369
370
static native void checkPermissions(String path) throws IOException;
371
372
static native int socket() throws IOException;
373
374
static native void connect(int fd, String path) throws IOException;
375
376
static native void close(int fd) throws IOException;
377
378
static native int read(int fd, byte buf[], int off, int bufLen) throws IOException;
379
380
static native void write(int fd, byte buf[], int off, int bufLen) throws IOException;
381
382
static {
383
System.loadLibrary("attach");
384
}
385
}
386
387