blob: a76d0a99771784f2f1ad47bdb62939f09bf8c640 [file] [log] [blame]
Jonathan Lu780a1342013-11-26 16:40:31 +01001/*
2 * Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
3 * Copyright 2013 SAP AG. All rights reserved.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation. Oracle designates this
9 * particular file as subject to the "Classpath" exception as provided
10 * by Oracle in the LICENSE file that accompanied this code.
11 *
12 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * version 2 for more details (a copy is included in the LICENSE file that
16 * accompanied this code).
17 *
18 * You should have received a copy of the GNU General Public License version
19 * 2 along with this work; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23 * or visit www.oracle.com if you need additional information or have any
24 * questions.
25 */
26package sun.tools.attach;
27
28import com.sun.tools.attach.VirtualMachine;
29import com.sun.tools.attach.AgentLoadException;
30import com.sun.tools.attach.AttachNotSupportedException;
31import com.sun.tools.attach.spi.AttachProvider;
32import java.io.InputStream;
33import java.io.IOException;
34import java.io.File;
35import java.util.Properties;
36
Mandy Chung6533d2d2014-08-26 14:35:33 -070037// Based on linux/classes/sun/tools/attach/VirtualMachineImpl.java.
Jonathan Lu780a1342013-11-26 16:40:31 +010038
39/*
40 * Aix implementation of HotSpotVirtualMachine
41 */
Mandy Chung6533d2d2014-08-26 14:35:33 -070042public class VirtualMachineImpl extends HotSpotVirtualMachine {
Jonathan Lu780a1342013-11-26 16:40:31 +010043 // "/tmp" is used as a global well-known location for the files
44 // .java_pid<pid>. and .attach_pid<pid>. It is important that this
45 // location is the same for all processes, otherwise the tools
46 // will not be able to find all Hotspot processes.
47 // Any changes to this needs to be synchronized with HotSpot.
48 private static final String tmpdir = "/tmp";
49
50 // The patch to the socket file created by the target VM
51 String path;
52
53 /**
54 * Attaches to the target VM
55 */
Mandy Chung6533d2d2014-08-26 14:35:33 -070056 VirtualMachineImpl(AttachProvider provider, String vmid)
Jonathan Lu780a1342013-11-26 16:40:31 +010057 throws AttachNotSupportedException, IOException
58 {
59 super(provider, vmid);
60
61 // This provider only understands pids
62 int pid;
63 try {
64 pid = Integer.parseInt(vmid);
65 } catch (NumberFormatException x) {
66 throw new AttachNotSupportedException("Invalid process identifier");
67 }
68
69 // Find the socket file. If not found then we attempt to start the
70 // attach mechanism in the target VM by sending it a QUIT signal.
71 // Then we attempt to find the socket file again.
72 path = findSocketFile(pid);
73 if (path == null) {
74 File f = createAttachFile(pid);
75 try {
76 sendQuitTo(pid);
77
78 // give the target VM time to start the attach mechanism
79 int i = 0;
80 long delay = 200;
81 int retries = (int)(attachTimeout() / delay);
82 do {
83 try {
84 Thread.sleep(delay);
85 } catch (InterruptedException x) { }
86 path = findSocketFile(pid);
87 i++;
88 } while (i <= retries && path == null);
89 if (path == null) {
90 throw new AttachNotSupportedException(
91 "Unable to open socket file: target process not responding " +
92 "or HotSpot VM not loaded");
93 }
94 } finally {
95 f.delete();
96 }
97 }
98
99 // Check that the file owner/permission to avoid attaching to
100 // bogus process
101 checkPermissions(path);
102
103 // Check that we can connect to the process
104 // - this ensures we throw the permission denied error now rather than
105 // later when we attempt to enqueue a command.
106 int s = socket();
107 try {
108 connect(s, path);
109 } finally {
110 close(s);
111 }
112 }
113
114 /**
115 * Detach from the target VM
116 */
117 public void detach() throws IOException {
118 synchronized (this) {
119 if (this.path != null) {
120 this.path = null;
121 }
122 }
123 }
124
125 // protocol version
126 private final static String PROTOCOL_VERSION = "1";
127
128 // known errors
129 private final static int ATTACH_ERROR_BADVERSION = 101;
130
131 /**
132 * Execute the given command in the target VM.
133 */
134 InputStream execute(String cmd, Object ... args) throws AgentLoadException, IOException {
135 assert args.length <= 3; // includes null
136
137 // did we detach?
138 String p;
139 synchronized (this) {
140 if (this.path == null) {
141 throw new IOException("Detached from target VM");
142 }
143 p = this.path;
144 }
145
146 // create UNIX socket
147 int s = socket();
148
149 // connect to target VM
150 try {
151 connect(s, p);
152 } catch (IOException x) {
153 close(s);
154 throw x;
155 }
156
157 IOException ioe = null;
158
159 // connected - write request
160 // <ver> <cmd> <args...>
161 try {
162 writeString(s, PROTOCOL_VERSION);
163 writeString(s, cmd);
164
165 for (int i=0; i<3; i++) {
166 if (i < args.length && args[i] != null) {
167 writeString(s, (String)args[i]);
168 } else {
169 writeString(s, "");
170 }
171 }
172 } catch (IOException x) {
173 ioe = x;
174 }
175
176
177 // Create an input stream to read reply
178 SocketInputStream sis = new SocketInputStream(s);
179
180 // Read the command completion status
181 int completionStatus;
182 try {
183 completionStatus = readInt(sis);
184 } catch (IOException x) {
185 sis.close();
186 if (ioe != null) {
187 throw ioe;
188 } else {
189 throw x;
190 }
191 }
192
193 if (completionStatus != 0) {
194 sis.close();
195
196 // In the event of a protocol mismatch then the target VM
197 // returns a known error so that we can throw a reasonable
198 // error.
199 if (completionStatus == ATTACH_ERROR_BADVERSION) {
200 throw new IOException("Protocol mismatch with target VM");
201 }
202
203 // Special-case the "load" command so that the right exception is
204 // thrown.
205 if (cmd.equals("load")) {
206 throw new AgentLoadException("Failed to load agent library");
207 } else {
208 throw new IOException("Command failed in target VM");
209 }
210 }
211
212 // Return the input stream so that the command output can be read
213 return sis;
214 }
215
216 /*
217 * InputStream for the socket connection to get target VM
218 */
219 private class SocketInputStream extends InputStream {
220 int s;
221
222 public SocketInputStream(int s) {
223 this.s = s;
224 }
225
226 public synchronized int read() throws IOException {
227 byte b[] = new byte[1];
228 int n = this.read(b, 0, 1);
229 if (n == 1) {
230 return b[0] & 0xff;
231 } else {
232 return -1;
233 }
234 }
235
236 public synchronized int read(byte[] bs, int off, int len) throws IOException {
237 if ((off < 0) || (off > bs.length) || (len < 0) ||
238 ((off + len) > bs.length) || ((off + len) < 0)) {
239 throw new IndexOutOfBoundsException();
240 } else if (len == 0)
241 return 0;
242
Mandy Chung6533d2d2014-08-26 14:35:33 -0700243 return VirtualMachineImpl.read(s, bs, off, len);
Jonathan Lu780a1342013-11-26 16:40:31 +0100244 }
245
246 public void close() throws IOException {
Mandy Chung6533d2d2014-08-26 14:35:33 -0700247 VirtualMachineImpl.close(s);
Jonathan Lu780a1342013-11-26 16:40:31 +0100248 }
249 }
250
251 // Return the socket file for the given process.
252 private String findSocketFile(int pid) {
253 File f = new File(tmpdir, ".java_pid" + pid);
254 if (!f.exists()) {
255 return null;
256 }
257 return f.getPath();
258 }
259
260 // On Solaris/Linux/Aix a simple handshake is used to start the attach mechanism
261 // if not already started. The client creates a .attach_pid<pid> file in the
262 // target VM's working directory (or temp directory), and the SIGQUIT handler
263 // checks for the file.
264 private File createAttachFile(int pid) throws IOException {
265 String fn = ".attach_pid" + pid;
266 String path = "/proc/" + pid + "/cwd/" + fn;
267 File f = new File(path);
268 try {
269 f.createNewFile();
270 } catch (IOException x) {
271 f = new File(tmpdir, fn);
272 f.createNewFile();
273 }
274 return f;
275 }
276
277 /*
278 * Write/sends the given to the target VM. String is transmitted in
279 * UTF-8 encoding.
280 */
281 private void writeString(int fd, String s) throws IOException {
282 if (s.length() > 0) {
283 byte b[];
284 try {
285 b = s.getBytes("UTF-8");
286 } catch (java.io.UnsupportedEncodingException x) {
287 throw new InternalError(x);
288 }
Mandy Chung6533d2d2014-08-26 14:35:33 -0700289 VirtualMachineImpl.write(fd, b, 0, b.length);
Jonathan Lu780a1342013-11-26 16:40:31 +0100290 }
291 byte b[] = new byte[1];
292 b[0] = 0;
293 write(fd, b, 0, 1);
294 }
295
296
297 //-- native methods
298
299 static native void sendQuitTo(int pid) throws IOException;
300
301 static native void checkPermissions(String path) throws IOException;
302
303 static native int socket() throws IOException;
304
305 static native void connect(int fd, String path) throws IOException;
306
307 static native void close(int fd) throws IOException;
308
309 static native int read(int fd, byte buf[], int off, int bufLen) throws IOException;
310
311 static native void write(int fd, byte buf[], int off, int bufLen) throws IOException;
312
313 static {
314 System.loadLibrary("attach");
315 }
316}