annotate src/os/linux/vm/jvm_linux.cpp @ 1552:c18cbe5936b8

6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
author trims
date Thu, 27 May 2010 19:08:38 -0700
parents f139919897d2
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 199
diff changeset
2 * Copyright (c) 1999, 2007, 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: 199
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 199
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: 199
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 "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_jvm_linux.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #include <signal.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
31 * FIXME: This is temporary hack to keep Linux Runtime.exec()
a61af66fc99e Initial load
duke
parents:
diff changeset
32 * code happy. See $JDK/src/linux/native/java/lang/UnixProcess_md.c
a61af66fc99e Initial load
duke
parents:
diff changeset
33 */
a61af66fc99e Initial load
duke
parents:
diff changeset
34 int _JVM_native_threads = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // sun.misc.Signal ///////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Signal code is mostly copied from classic vm, signals_md.c 1.4 98/08/23
a61af66fc99e Initial load
duke
parents:
diff changeset
38 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
39 * This function is included primarily as a debugging aid. If Java is
a61af66fc99e Initial load
duke
parents:
diff changeset
40 * running in a console window, then pressing <CTRL-\\> will cause
a61af66fc99e Initial load
duke
parents:
diff changeset
41 * the current state of all active threads and monitors to be written
a61af66fc99e Initial load
duke
parents:
diff changeset
42 * to the console window.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 */
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // Copied from classic vm
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // signals_md.c 1.4 98/08/23
a61af66fc99e Initial load
duke
parents:
diff changeset
48 void* newHandler = handler == (void *)2
a61af66fc99e Initial load
duke
parents:
diff changeset
49 ? os::user_handler()
a61af66fc99e Initial load
duke
parents:
diff changeset
50 : handler;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 switch (sig) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 /* The following are already used by the VM. */
a61af66fc99e Initial load
duke
parents:
diff changeset
53 case INTERRUPT_SIGNAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
54 case SIGFPE:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 case SIGILL:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 case SIGSEGV:
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 /* The following signal is used by the VM to dump thread stacks unless
a61af66fc99e Initial load
duke
parents:
diff changeset
59 ReduceSignalUsage is set, in which case the user is allowed to set
a61af66fc99e Initial load
duke
parents:
diff changeset
60 his own _native_ handler for this signal; thus, in either case,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 we do not allow JVM_RegisterSignal to change the handler. */
a61af66fc99e Initial load
duke
parents:
diff changeset
62 case BREAK_SIGNAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
63 return (void *)-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 /* The following signals are used for Shutdown Hooks support. However, if
a61af66fc99e Initial load
duke
parents:
diff changeset
66 ReduceSignalUsage (-Xrs) is set, Shutdown Hooks must be invoked via
a61af66fc99e Initial load
duke
parents:
diff changeset
67 System.exit(), Java is not allowed to use these signals, and the the
a61af66fc99e Initial load
duke
parents:
diff changeset
68 user is allowed to set his own _native_ handler for these signals and
a61af66fc99e Initial load
duke
parents:
diff changeset
69 invoke System.exit() as needed. Terminator.setup() is avoiding
a61af66fc99e Initial load
duke
parents:
diff changeset
70 registration of these signals when -Xrs is present.
a61af66fc99e Initial load
duke
parents:
diff changeset
71 - If the HUP signal is ignored (from the nohup) command, then Java
a61af66fc99e Initial load
duke
parents:
diff changeset
72 is not allowed to use this signal.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 */
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 case SHUTDOWN1_SIGNAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 case SHUTDOWN2_SIGNAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
77 case SHUTDOWN3_SIGNAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
78 if (ReduceSignalUsage) return (void*)-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if (os::Linux::is_sig_ignored(sig)) return (void*)1;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void* oldHandler = os::signal(sig, newHandler);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (oldHandler == os::user_handler()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 return (void *)2;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return oldHandler;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 JVM_END
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 JVM_ENTRY_NO_ENV(jboolean, JVM_RaiseSignal(jint sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
92 if (ReduceSignalUsage) {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // do not allow SHUTDOWN1_SIGNAL,SHUTDOWN2_SIGNAL,SHUTDOWN3_SIGNAL,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // BREAK_SIGNAL to be raised when ReduceSignalUsage is set, since
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // no handler for them is actually registered in JVM or via
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // JVM_RegisterSignal.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
98 sig == SHUTDOWN3_SIGNAL || sig == BREAK_SIGNAL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 else if ((sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
103 sig == SHUTDOWN3_SIGNAL) && os::Linux::is_sig_ignored(sig)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // do not allow SHUTDOWN1_SIGNAL to be raised when SHUTDOWN1_SIGNAL
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // is ignored, since no handler for them is actually registered in JVM
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // or via JVM_RegisterSignal.
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // This also applies for SHUTDOWN2_SIGNAL and SHUTDOWN3_SIGNAL
a61af66fc99e Initial load
duke
parents:
diff changeset
108 return JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 os::signal_raise(sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return JNI_TRUE;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 JVM_END
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
116 All the defined signal names for Linux.
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 NOTE that not all of these names are accepted by our Java implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 Via an existing claim by the VM, sigaction restrictions, or
a61af66fc99e Initial load
duke
parents:
diff changeset
121 the "rules of Unix" some of these names will be rejected at runtime.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 For example the VM sets up to handle USR1, sigaction returns EINVAL for
a61af66fc99e Initial load
duke
parents:
diff changeset
123 STOP, and Linux simply doesn't allow catching of KILL.
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 Here are the names currently accepted by a user of sun.misc.Signal with
a61af66fc99e Initial load
duke
parents:
diff changeset
126 1.4.1 (ignoring potential interaction with use of chaining, etc):
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 HUP, INT, TRAP, ABRT, IOT, BUS, USR2, PIPE, ALRM, TERM, STKFLT,
a61af66fc99e Initial load
duke
parents:
diff changeset
129 CLD, CHLD, CONT, TSTP, TTIN, TTOU, URG, XCPU, XFSZ, VTALRM, PROF,
a61af66fc99e Initial load
duke
parents:
diff changeset
130 WINCH, POLL, IO, PWR, SYS
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 */
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 struct siglabel {
199
f139919897d2 6681796: hotspot build failure on gcc 4.2.x (ubuntu 8.04) w/ openjdk 6
xlu
parents: 0
diff changeset
135 const char *name;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
136 int number;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 };
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 struct siglabel siglabels[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 /* derived from /usr/include/bits/signum.h on RH7.2 */
a61af66fc99e Initial load
duke
parents:
diff changeset
141 "HUP", SIGHUP, /* Hangup (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
142 "INT", SIGINT, /* Interrupt (ANSI). */
a61af66fc99e Initial load
duke
parents:
diff changeset
143 "QUIT", SIGQUIT, /* Quit (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
144 "ILL", SIGILL, /* Illegal instruction (ANSI). */
a61af66fc99e Initial load
duke
parents:
diff changeset
145 "TRAP", SIGTRAP, /* Trace trap (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
146 "ABRT", SIGABRT, /* Abort (ANSI). */
a61af66fc99e Initial load
duke
parents:
diff changeset
147 "IOT", SIGIOT, /* IOT trap (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
148 "BUS", SIGBUS, /* BUS error (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
149 "FPE", SIGFPE, /* Floating-point exception (ANSI). */
a61af66fc99e Initial load
duke
parents:
diff changeset
150 "KILL", SIGKILL, /* Kill, unblockable (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
151 "USR1", SIGUSR1, /* User-defined signal 1 (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
152 "SEGV", SIGSEGV, /* Segmentation violation (ANSI). */
a61af66fc99e Initial load
duke
parents:
diff changeset
153 "USR2", SIGUSR2, /* User-defined signal 2 (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
154 "PIPE", SIGPIPE, /* Broken pipe (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
155 "ALRM", SIGALRM, /* Alarm clock (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
156 "TERM", SIGTERM, /* Termination (ANSI). */
a61af66fc99e Initial load
duke
parents:
diff changeset
157 #ifdef SIGSTKFLT
a61af66fc99e Initial load
duke
parents:
diff changeset
158 "STKFLT", SIGSTKFLT, /* Stack fault. */
a61af66fc99e Initial load
duke
parents:
diff changeset
159 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
160 "CLD", SIGCLD, /* Same as SIGCHLD (System V). */
a61af66fc99e Initial load
duke
parents:
diff changeset
161 "CHLD", SIGCHLD, /* Child status has changed (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
162 "CONT", SIGCONT, /* Continue (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
163 "STOP", SIGSTOP, /* Stop, unblockable (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
164 "TSTP", SIGTSTP, /* Keyboard stop (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
165 "TTIN", SIGTTIN, /* Background read from tty (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
166 "TTOU", SIGTTOU, /* Background write to tty (POSIX). */
a61af66fc99e Initial load
duke
parents:
diff changeset
167 "URG", SIGURG, /* Urgent condition on socket (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
168 "XCPU", SIGXCPU, /* CPU limit exceeded (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
169 "XFSZ", SIGXFSZ, /* File size limit exceeded (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
170 "VTALRM", SIGVTALRM, /* Virtual alarm clock (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
171 "PROF", SIGPROF, /* Profiling alarm clock (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
172 "WINCH", SIGWINCH, /* Window size change (4.3 BSD, Sun). */
a61af66fc99e Initial load
duke
parents:
diff changeset
173 "POLL", SIGPOLL, /* Pollable event occurred (System V). */
a61af66fc99e Initial load
duke
parents:
diff changeset
174 "IO", SIGIO, /* I/O now possible (4.2 BSD). */
a61af66fc99e Initial load
duke
parents:
diff changeset
175 "PWR", SIGPWR, /* Power failure restart (System V). */
a61af66fc99e Initial load
duke
parents:
diff changeset
176 #ifdef SIGSYS
a61af66fc99e Initial load
duke
parents:
diff changeset
177 "SYS", SIGSYS /* Bad system call. Only on some Linuxen! */
a61af66fc99e Initial load
duke
parents:
diff changeset
178 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
179 };
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 /* find and return the named signal's number */
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 for(uint i=0; i<ARRAY_SIZE(siglabels); i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if(!strcmp(name, siglabels[i].name))
a61af66fc99e Initial load
duke
parents:
diff changeset
187 return siglabels[i].number;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 JVM_END
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // used by os::exception_name()
a61af66fc99e Initial load
duke
parents:
diff changeset
194 extern bool signal_name(int signo, char* buf, size_t len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 for(uint i = 0; i < ARRAY_SIZE(siglabels); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 if (signo == siglabels[i].number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 jio_snprintf(buf, len, "SIG%s", siglabels[i].name);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }