author | stuefe |
Tue, 21 Mar 2017 14:14:06 +0100 | |
changeset 46361 | b4c026dd6128 |
parent 46331 | e3017116b9e5 |
child 46507 | 7db40fa6eff7 |
permissions | -rw-r--r-- |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
1 |
/* |
46331 | 2 |
* Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved. |
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
4 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
8 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
13 |
* accompanied this code). |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
14 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
18 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
21 |
* questions. |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
22 |
* |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
23 |
*/ |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
24 |
|
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
25 |
#include "runtime/os.hpp" |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
26 |
|
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
27 |
#ifndef OS_POSIX_VM_OS_POSIX_HPP |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
28 |
#define OS_POSIX_VM_OS_POSIX_HPP |
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
29 |
|
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
30 |
// File conventions |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
31 |
static const char* file_separator() { return "/"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
32 |
static const char* line_separator() { return "\n"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
33 |
static const char* path_separator() { return ":"; } |
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
22872
diff
changeset
|
34 |
|
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
35 |
class Posix { |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
36 |
friend class os; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
37 |
|
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
38 |
protected: |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
39 |
static void print_distro_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
40 |
static void print_rlimit_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
41 |
static void print_uname_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
42 |
static void print_libversion_info(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
43 |
static void print_load_average(outputStream* st); |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
44 |
|
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
45 |
// Minimum stack size a thread can be created with (allowing |
42906
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
46 |
// the VM to completely create the thread and enter user code). |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
47 |
// The initial values exclude any guard pages (by HotSpot or libc). |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
48 |
// set_minimum_stack_sizes() will add the size required for |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
49 |
// HotSpot guard pages depending on page size and flag settings. |
1a8db9cf1407
8170655: [posix] Fix minimum stack size computations
goetz
parents:
41070
diff
changeset
|
50 |
// Libc guard pages are never considered by these values. |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
51 |
static size_t _compiler_thread_min_stack_allowed; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
52 |
static size_t _java_thread_min_stack_allowed; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
53 |
static size_t _vm_internal_thread_min_stack_allowed; |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
54 |
|
22826 | 55 |
public: |
41070
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
56 |
// Return default stack size for the specified thread type |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
57 |
static size_t default_stack_size(os::ThreadType thr_type); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
58 |
// Check and sets minimum stack sizes |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
59 |
static jint set_minimum_stack_sizes(); |
496463b4e206
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents:
36355
diff
changeset
|
60 |
static size_t get_initial_stack_size(ThreadType thr_type, size_t req_stack_size); |
22826 | 61 |
|
62 |
// Returns true if signal is valid. |
|
63 |
static bool is_valid_signal(int sig); |
|
64 |
||
65 |
// Helper function, returns a string (e.g. "SIGILL") for a signal. |
|
66 |
// Returned string is a constant. For unknown signals "UNKNOWN" is returned. |
|
67 |
static const char* get_signal_name(int sig, char* out, size_t outlen); |
|
68 |
||
34621
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
69 |
// Helper function, returns a signal number for a given signal name, e.g. 11 |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
70 |
// for "SIGSEGV". Name can be given with or without "SIG" prefix, so both |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
71 |
// "SEGV" or "SIGSEGV" work. Name must be uppercase. |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
72 |
// Returns -1 for an unknown signal name. |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
73 |
static int get_signal_number(const char* signal_name); |
7676bec20997
8143291: Remove redundant coding around os::exception_name
stuefe
parents:
34305
diff
changeset
|
74 |
|
22826 | 75 |
// Returns one-line short description of a signal set in a user provided buffer. |
76 |
static const char* describe_signal_set_short(const sigset_t* set, char* buffer, size_t size); |
|
77 |
||
78 |
// Prints a short one-line description of a signal set. |
|
79 |
static void print_signal_set_short(outputStream* st, const sigset_t* set); |
|
80 |
||
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
81 |
// unblocks the signal masks for current thread |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
82 |
static int unblock_thread_signal_mask(const sigset_t *set); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
83 |
|
22826 | 84 |
// Writes a one-line description of a combination of sigaction.sa_flags |
85 |
// into a user provided buffer. Returns that buffer. |
|
86 |
static const char* describe_sa_flags(int flags, char* buffer, size_t size); |
|
87 |
||
88 |
// Prints a one-line description of a combination of sigaction.sa_flags. |
|
89 |
static void print_sa_flags(outputStream* st, int flags); |
|
90 |
||
35077
8b86440d3bf1
8145114: const-correctness for ucontext_t* reading functions
stuefe
parents:
34621
diff
changeset
|
91 |
static address ucontext_get_pc(const ucontext_t* ctx); |
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
92 |
// Set PC into context. Needed for continuation after signal. |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
25468
diff
changeset
|
93 |
static void ucontext_set_pc(ucontext_t* ctx, address pc); |
36355
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
94 |
|
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
95 |
// Helper function; describes pthread attributes as short string. String is written |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
96 |
// to buf with len buflen; buf is returned. |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
97 |
static char* describe_pthread_attr(char* buf, size_t buflen, const pthread_attr_t* attr); |
dd339cbafd31
8149036: Add tracing for thread related events at os level
stuefe
parents:
35176
diff
changeset
|
98 |
|
46331 | 99 |
// A safe implementation of realpath which will not cause a buffer overflow if the resolved path |
100 |
// is longer than PATH_MAX. |
|
101 |
// On success, returns 'outbuf', which now contains the path. |
|
102 |
// On error, it will return NULL and set errno. The content of 'outbuf' is undefined. |
|
103 |
// On truncation error ('outbuf' too small), it will return NULL and set errno to ENAMETOOLONG. |
|
104 |
static char* realpath(const char* filename, char* outbuf, size_t outbuflen); |
|
105 |
||
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
106 |
}; |
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
107 |
|
18943 | 108 |
/* |
109 |
* Crash protection for the watcher thread. Wrap the callback |
|
110 |
* with a sigsetjmp and in case of a SIGSEGV/SIGBUS we siglongjmp |
|
111 |
* back. |
|
112 |
* To be able to use this - don't take locks, don't rely on destructors, |
|
113 |
* don't make OS library calls, don't allocate memory, don't print, |
|
114 |
* don't call code that could leave the heap / memory in an inconsistent state, |
|
115 |
* or anything else where we are not in control if we suddenly jump out. |
|
116 |
*/ |
|
117 |
class WatcherThreadCrashProtection : public StackObj { |
|
118 |
public: |
|
119 |
WatcherThreadCrashProtection(); |
|
120 |
bool call(os::CrashProtectionCallback& cb); |
|
121 |
||
122 |
static void check_crash_protection(int signal, Thread* thread); |
|
123 |
private: |
|
124 |
void restore(); |
|
125 |
sigjmp_buf _jmpbuf; |
|
126 |
}; |
|
12735
3e2e491f4f69
7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff
changeset
|
127 |
|
22826 | 128 |
#endif // OS_POSIX_VM_OS_POSIX_HPP |