annotate agent/src/os/linux/ps_proc.c @ 22838:7e2e246df4e9

8069030: support new PTRACE_GETREGSET Summary: use PTRACE_GETREGSET if other options are not available Reviewed-by: sla, dholmes
author dlong
date Mon, 02 Feb 2015 23:26:33 -0500
parents f2512d89ad0c
children d06b64fc150f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
8058
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
2 * Copyright (c) 2003, 2013, 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: 196
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
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: 196
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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include <stdio.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include <stdlib.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
27 #include <string.h>
8058
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
28 #include <signal.h>
0
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #include <errno.h>
22838
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
30 #include <elf.h>
12329
f2512d89ad0c 8025613: clang: remove -Wno-unused-value
twisti
parents: 8058
diff changeset
31 #include <sys/types.h>
f2512d89ad0c 8025613: clang: remove -Wno-unused-value
twisti
parents: 8058
diff changeset
32 #include <sys/wait.h>
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 #include <sys/ptrace.h>
22838
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
34 #include <sys/uio.h>
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35 #include "libproc_impl.h"
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #if defined(x86_64) && !defined(amd64)
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #define amd64 1
a61af66fc99e Initial load
duke
parents:
diff changeset
39 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 #ifndef __WALL
a61af66fc99e Initial load
duke
parents:
diff changeset
42 #define __WALL 0x40000000 // Copied from /usr/include/linux/wait.h
a61af66fc99e Initial load
duke
parents:
diff changeset
43 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // This file has the libproc implementation specific to live process
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // For core files, refer to ps_core.c
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static inline uintptr_t align(uintptr_t ptr, size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 return (ptr & ~(size - 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // ---------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // ptrace functions
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // ---------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // read "size" bytes of data from "addr" within the target process.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // unlike the standard ptrace() function, process_read_data() can handle
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // unaligned address - alignment check, if required, should be done
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // before calling process_read_data.
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static bool process_read_data(struct ps_prochandle* ph, uintptr_t addr, char *buf, size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 long rslt;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 size_t i, words;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 uintptr_t end_addr = addr + size;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 uintptr_t aligned_addr = align(addr, sizeof(long));
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if (aligned_addr != addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 char *ptr = (char *)&rslt;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 errno = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 rslt = ptrace(PTRACE_PEEKDATA, ph->pid, aligned_addr, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 if (errno) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 print_debug("ptrace(PTRACE_PEEKDATA, ..) failed for %d bytes @ %lx\n", size, addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 for (; aligned_addr != addr; aligned_addr++, ptr++);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 for (; ((intptr_t)aligned_addr % sizeof(long)) && aligned_addr < end_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 aligned_addr++)
a61af66fc99e Initial load
duke
parents:
diff changeset
78 *(buf++) = *(ptr++);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 words = (end_addr - aligned_addr) / sizeof(long);
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // assert((intptr_t)aligned_addr % sizeof(long) == 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 for (i = 0; i < words; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 errno = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 rslt = ptrace(PTRACE_PEEKDATA, ph->pid, aligned_addr, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 if (errno) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 print_debug("ptrace(PTRACE_PEEKDATA, ..) failed for %d bytes @ %lx\n", size, addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 *(long *)buf = rslt;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 buf += sizeof(long);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 aligned_addr += sizeof(long);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 if (aligned_addr != end_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 char *ptr = (char *)&rslt;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 errno = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 rslt = ptrace(PTRACE_PEEKDATA, ph->pid, aligned_addr, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 if (errno) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 print_debug("ptrace(PTRACE_PEEKDATA, ..) failed for %d bytes @ %lx\n", size, addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 for (; aligned_addr != end_addr; aligned_addr++)
a61af66fc99e Initial load
duke
parents:
diff changeset
105 *(buf++) = *(ptr++);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // null implementation for write
a61af66fc99e Initial load
duke
parents:
diff changeset
111 static bool process_write_data(struct ps_prochandle* ph,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 uintptr_t addr, const char *buf , size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // "user" should be a pointer to a user_regs_struct
a61af66fc99e Initial load
duke
parents:
diff changeset
117 static bool process_get_lwp_regs(struct ps_prochandle* ph, pid_t pid, struct user_regs_struct *user) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // we have already attached to all thread 'pid's, just use ptrace call
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // to get regset now. Note that we don't cache regset upfront for processes.
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // Linux on x86 and sparc are different. On x86 ptrace(PTRACE_GETREGS, ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // uses pointer from 4th argument and ignores 3rd argument. On sparc it uses
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // pointer from 3rd argument and ignores 4th argument
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #if defined(sparc) || defined(sparcv9)
a61af66fc99e Initial load
duke
parents:
diff changeset
124 #define ptrace_getregs(request, pid, addr, data) ptrace(request, pid, addr, data)
a61af66fc99e Initial load
duke
parents:
diff changeset
125 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
126 #define ptrace_getregs(request, pid, addr, data) ptrace(request, pid, data, addr)
a61af66fc99e Initial load
duke
parents:
diff changeset
127 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
128
1990
401fbd7ff77c 7003789: PTRACE_GETREGS problems with SA on Linux.
kevinw
parents: 1681
diff changeset
129 #if defined(_LP64) && defined(PTRACE_GETREGS64)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
130 #define PTRACE_GETREGS_REQ PTRACE_GETREGS64
1990
401fbd7ff77c 7003789: PTRACE_GETREGS problems with SA on Linux.
kevinw
parents: 1681
diff changeset
131 #elif defined(PTRACE_GETREGS)
401fbd7ff77c 7003789: PTRACE_GETREGS problems with SA on Linux.
kevinw
parents: 1681
diff changeset
132 #define PTRACE_GETREGS_REQ PTRACE_GETREGS
401fbd7ff77c 7003789: PTRACE_GETREGS problems with SA on Linux.
kevinw
parents: 1681
diff changeset
133 #elif defined(PT_GETREGS)
401fbd7ff77c 7003789: PTRACE_GETREGS problems with SA on Linux.
kevinw
parents: 1681
diff changeset
134 #define PTRACE_GETREGS_REQ PT_GETREGS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #ifdef PTRACE_GETREGS_REQ
a61af66fc99e Initial load
duke
parents:
diff changeset
138 if (ptrace_getregs(PTRACE_GETREGS_REQ, pid, user, NULL) < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 print_debug("ptrace(PTRACE_GETREGS, ...) failed for lwp %d\n", pid);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 return true;
22838
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
143 #elif defined(PTRACE_GETREGSET)
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
144 struct iovec iov;
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
145 iov.iov_base = user;
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
146 iov.iov_len = sizeof(*user);
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
147 if (ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, (void*) &iov) < 0) {
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
148 print_debug("ptrace(PTRACE_GETREGSET, ...) failed for lwp %d\n", pid);
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
149 return false;
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
150 }
7e2e246df4e9 8069030: support new PTRACE_GETREGSET
dlong
parents: 12329
diff changeset
151 return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
153 print_debug("ptrace(PTRACE_GETREGS, ...) not supported\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
154 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158
8058
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
159 static bool ptrace_continue(pid_t pid, int signal) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
160 // pass the signal to the process so we don't swallow it
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
161 if (ptrace(PTRACE_CONT, pid, NULL, signal) < 0) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
162 print_debug("ptrace(PTRACE_CONT, ..) failed for %d\n", pid);
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
163 return false;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
164 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
165 return true;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
166 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
167
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
168 // waits until the ATTACH has stopped the process
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
169 // by signal SIGSTOP
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
170 static bool ptrace_waitpid(pid_t pid) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
171 int ret;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
172 int status;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
173 while (true) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
174 // Wait for debuggee to stop.
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
175 ret = waitpid(pid, &status, 0);
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
176 if (ret == -1 && errno == ECHILD) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
177 // try cloned process.
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
178 ret = waitpid(pid, &status, __WALL);
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
179 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
180 if (ret >= 0) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
181 if (WIFSTOPPED(status)) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
182 // Any signal will stop the thread, make sure it is SIGSTOP. Otherwise SIGSTOP
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
183 // will still be pending and delivered when the process is DETACHED and the process
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
184 // will go to sleep.
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
185 if (WSTOPSIG(status) == SIGSTOP) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
186 // Debuggee stopped by SIGSTOP.
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
187 return true;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
188 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
189 if (!ptrace_continue(pid, WSTOPSIG(status))) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
190 print_error("Failed to correctly attach to VM. VM might HANG! [PTRACE_CONT failed, stopped by %d]\n", WSTOPSIG(status));
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
191 return false;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
192 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
193 } else {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
194 print_debug("waitpid(): Child process exited/terminated (status = 0x%x)\n", status);
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
195 return false;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
196 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
197 } else {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
198 switch (errno) {
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
199 case EINTR:
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
200 continue;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
201 break;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
202 case ECHILD:
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
203 print_debug("waitpid() failed. Child process pid (%d) does not exist \n", pid);
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
204 break;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
205 case EINVAL:
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
206 print_debug("waitpid() failed. Invalid options argument.\n");
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
207 break;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
208 default:
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
209 print_debug("waitpid() failed. Unexpected error %d\n",errno);
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
210 break;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
211 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
212 return false;
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
213 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
214 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
215 }
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
216
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // attach to a process/thread specified by "pid"
a61af66fc99e Initial load
duke
parents:
diff changeset
218 static bool ptrace_attach(pid_t pid) {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if (ptrace(PTRACE_ATTACH, pid, NULL, NULL) < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 print_debug("ptrace(PTRACE_ATTACH, ..) failed for %d\n", pid);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
222 } else {
8058
2394a89e89f4 8008088: SA can hang the VM
rbackman
parents: 2042
diff changeset
223 return ptrace_waitpid(pid);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // -------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // functions for obtaining library information
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // -------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
232 * splits a string _str_ into substrings with delimiter _delim_ by replacing old * delimiters with _new_delim_ (ideally, '\0'). the address of each substring
a61af66fc99e Initial load
duke
parents:
diff changeset
233 * is stored in array _ptrs_ as the return value. the maximum capacity of _ptrs_ * array is specified by parameter _n_.
a61af66fc99e Initial load
duke
parents:
diff changeset
234 * RETURN VALUE: total number of substrings (always <= _n_)
a61af66fc99e Initial load
duke
parents:
diff changeset
235 * NOTE: string _str_ is modified if _delim_!=_new_delim_
a61af66fc99e Initial load
duke
parents:
diff changeset
236 */
a61af66fc99e Initial load
duke
parents:
diff changeset
237 static int split_n_str(char * str, int n, char ** ptrs, char delim, char new_delim)
a61af66fc99e Initial load
duke
parents:
diff changeset
238 {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 for(i = 0; i < n; i++) ptrs[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 if (str == NULL || n < 1 ) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 i = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // skipping leading blanks
a61af66fc99e Initial load
duke
parents:
diff changeset
246 while(*str&&*str==delim) str++;
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 while(*str&&i<n){
a61af66fc99e Initial load
duke
parents:
diff changeset
249 ptrs[i++] = str;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 while(*str&&*str!=delim) str++;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 while(*str&&*str==delim) *(str++) = new_delim;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 return i;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
258 * fgets without storing '\n' at the end of the string
a61af66fc99e Initial load
duke
parents:
diff changeset
259 */
a61af66fc99e Initial load
duke
parents:
diff changeset
260 static char * fgets_no_cr(char * buf, int n, FILE *fp)
a61af66fc99e Initial load
duke
parents:
diff changeset
261 {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 char * rslt = fgets(buf, n, fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 if (rslt && buf && *buf){
a61af66fc99e Initial load
duke
parents:
diff changeset
264 char *p = strchr(buf, '\0');
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (*--p=='\n') *p='\0';
a61af66fc99e Initial load
duke
parents:
diff changeset
266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return rslt;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // callback for read_thread_info
a61af66fc99e Initial load
duke
parents:
diff changeset
271 static bool add_new_thread(struct ps_prochandle* ph, pthread_t pthread_id, lwpid_t lwp_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 return add_thread_info(ph, pthread_id, lwp_id) != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 static bool read_lib_info(struct ps_prochandle* ph) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 char fname[32];
a61af66fc99e Initial load
duke
parents:
diff changeset
277 char buf[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
278 FILE *fp = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 sprintf(fname, "/proc/%d/maps", ph->pid);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 fp = fopen(fname, "r");
a61af66fc99e Initial load
duke
parents:
diff changeset
282 if (fp == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 print_debug("can't open /proc/%d/maps file\n", ph->pid);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 while(fgets_no_cr(buf, 256, fp)){
a61af66fc99e Initial load
duke
parents:
diff changeset
288 char * word[6];
a61af66fc99e Initial load
duke
parents:
diff changeset
289 int nwords = split_n_str(buf, 6, word, ' ', '\0');
a61af66fc99e Initial load
duke
parents:
diff changeset
290 if (nwords > 5 && find_lib(ph, word[5]) == false) {
a61af66fc99e Initial load
duke
parents:
diff changeset
291 intptr_t base;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 lib_info* lib;
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
293 #ifdef _LP64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
294 sscanf(word[0], "%lx", &base);
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
295 #else
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
296 sscanf(word[0], "%x", &base);
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
297 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298 if ((lib = add_lib_info(ph, word[5], (uintptr_t)base)) == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
299 continue; // ignore, add_lib_info prints error
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // we don't need to keep the library open, symtab is already
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // built. Only for core dump we need to keep the fd open.
a61af66fc99e Initial load
duke
parents:
diff changeset
303 close(lib->fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
304 lib->fd = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 fclose(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // detach a given pid
a61af66fc99e Initial load
duke
parents:
diff changeset
312 static bool ptrace_detach(pid_t pid) {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 if (pid && ptrace(PTRACE_DETACH, pid, NULL, NULL) < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 print_debug("ptrace(PTRACE_DETACH, ..) failed for %d\n", pid);
a61af66fc99e Initial load
duke
parents:
diff changeset
315 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // detach all pids of a ps_prochandle
a61af66fc99e Initial load
duke
parents:
diff changeset
322 static void detach_all_pids(struct ps_prochandle* ph) {
a61af66fc99e Initial load
duke
parents:
diff changeset
323 thread_info* thr = ph->threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
324 while (thr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 ptrace_detach(thr->lwp_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 thr = thr->next;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 static void process_cleanup(struct ps_prochandle* ph) {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 detach_all_pids(ph);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 static ps_prochandle_ops process_ops = {
50
485d403e94e1 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 0
diff changeset
335 .release= process_cleanup,
485d403e94e1 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 0
diff changeset
336 .p_pread= process_read_data,
485d403e94e1 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 0
diff changeset
337 .p_pwrite= process_write_data,
485d403e94e1 6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers
dcubed
parents: 0
diff changeset
338 .get_lwp_regs= process_get_lwp_regs
0
a61af66fc99e Initial load
duke
parents:
diff changeset
339 };
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // attach to the process. One and only one exposed stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
342 struct ps_prochandle* Pgrab(pid_t pid) {
a61af66fc99e Initial load
duke
parents:
diff changeset
343 struct ps_prochandle* ph = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 thread_info* thr = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 if ( (ph = (struct ps_prochandle*) calloc(1, sizeof(struct ps_prochandle))) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 print_debug("can't allocate memory for ps_prochandle\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
348 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 if (ptrace_attach(pid) != true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 free(ph);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // initialize ps_prochandle
a61af66fc99e Initial load
duke
parents:
diff changeset
357 ph->pid = pid;
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // initialize vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
360 ph->ops = &process_ops;
a61af66fc99e Initial load
duke
parents:
diff changeset
361
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // read library info and symbol tables, must do this before attaching threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // as the symbols in the pthread library will be used to figure out
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // the list of threads within the same process.
a61af66fc99e Initial load
duke
parents:
diff changeset
365 read_lib_info(ph);
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 // read thread info
a61af66fc99e Initial load
duke
parents:
diff changeset
368 read_thread_info(ph, add_new_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // attach to the threads
a61af66fc99e Initial load
duke
parents:
diff changeset
371 thr = ph->threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 while (thr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // don't attach to the main thread again
a61af66fc99e Initial load
duke
parents:
diff changeset
374 if (ph->pid != thr->lwp_id && ptrace_attach(thr->lwp_id) != true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // even if one attach fails, we get return NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
376 Prelease(ph);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
379 thr = thr->next;
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381 return ph;
a61af66fc99e Initial load
duke
parents:
diff changeset
382 }