src/hotspot/os/posix/os_posix.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 52585 f7f90fddce02
child 53461 08d6edeb3145
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52585
diff changeset
     2
 * Copyright (c) 1999, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52585
diff changeset
    27
#ifndef OS_POSIX_OS_POSIX_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52585
diff changeset
    28
#define OS_POSIX_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
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    55
public:
46507
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
    56
  static void init(void);  // early initialization - no logging available
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
    57
  static void init_2(void);// later initialization - logging available
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
    58
41070
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    59
  // 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
    60
  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
    61
  // Check and sets minimum stack sizes
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    62
  static jint set_minimum_stack_sizes();
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    63
  static size_t get_initial_stack_size(ThreadType thr_type, size_t req_stack_size);
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    64
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    65
  // Returns true if signal is valid.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    66
  static bool is_valid_signal(int sig);
50177
9806f23d5e5e 8134537: Much nearly duplicated code for sun.misc.Signal support
coleenp
parents: 47216
diff changeset
    67
  static bool is_sig_ignored(int sig);
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    68
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    69
  // Helper function, returns a string (e.g. "SIGILL") for a signal.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    70
  // Returned string is a constant. For unknown signals "UNKNOWN" is returned.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    71
  static const char* get_signal_name(int sig, char* out, size_t outlen);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    72
34621
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    73
  // 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
    74
  // 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
    75
  // "SEGV" or "SIGSEGV" work. Name must be uppercase.
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    76
  // Returns -1 for an unknown signal name.
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    77
  static int get_signal_number(const char* signal_name);
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    78
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    79
  // Returns one-line short description of a signal set in a user provided buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    80
  static const char* describe_signal_set_short(const sigset_t* set, char* buffer, size_t size);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    81
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    82
  // Prints a short one-line description of a signal set.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    83
  static void print_signal_set_short(outputStream* st, const sigset_t* set);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    84
34305
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    85
  // unblocks the signal masks for current thread
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    86
  static int unblock_thread_signal_mask(const sigset_t *set);
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    87
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    88
  // Writes a one-line description of a combination of sigaction.sa_flags
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    89
  // into a user provided buffer. Returns that buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    90
  static const char* describe_sa_flags(int flags, char* buffer, size_t size);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    91
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    92
  // Prints a one-line description of a combination of sigaction.sa_flags.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    93
  static void print_sa_flags(outputStream* st, int flags);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    94
35077
8b86440d3bf1 8145114: const-correctness for ucontext_t* reading functions
stuefe
parents: 34621
diff changeset
    95
  static address ucontext_get_pc(const ucontext_t* ctx);
34305
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    96
  // Set PC into context. Needed for continuation after signal.
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    97
  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
    98
dd339cbafd31 8149036: Add tracing for thread related events at os level
stuefe
parents: 35176
diff changeset
    99
  // 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
   100
  // to buf with len buflen; buf is returned.
dd339cbafd31 8149036: Add tracing for thread related events at os level
stuefe
parents: 35176
diff changeset
   101
  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
   102
46331
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   103
  // A safe implementation of realpath which will not cause a buffer overflow if the resolved path
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   104
  //   is longer than PATH_MAX.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   105
  // On success, returns 'outbuf', which now contains the path.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   106
  // On error, it will return NULL and set errno. The content of 'outbuf' is undefined.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   107
  // On truncation error ('outbuf' too small), it will return NULL and set errno to ENAMETOOLONG.
e3017116b9e5 8173848: realpath is unsafe
stuefe
parents: 42906
diff changeset
   108
  static char* realpath(const char* filename, char* outbuf, size_t outbuflen);
50333
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   109
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   110
  // Returns true if given uid is root.
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   111
  static bool is_root(uid_t uid);
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   112
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   113
  // Returns true if given uid is effective or root uid.
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   114
  static bool matches_effective_uid_or_root(uid_t uid);
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   115
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   116
  // Returns true if either given uid is effective uid and given gid is
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   117
  // effective gid, or if given uid is root.
7cea35f78b50 8197387: jcmd started by "root" must be allowed to access all VM processes
dtitov
parents: 50177
diff changeset
   118
  static bool matches_effective_uid_and_gid_or_root(uid_t uid, gid_t gid);
51989
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   119
52585
f7f90fddce02 8211326: add OS user related information to hs_err file
mbaesken
parents: 52460
diff changeset
   120
  static void print_umask(outputStream* st, mode_t umsk);
f7f90fddce02 8211326: add OS user related information to hs_err file
mbaesken
parents: 52460
diff changeset
   121
f7f90fddce02 8211326: add OS user related information to hs_err file
mbaesken
parents: 52460
diff changeset
   122
  static void print_user_info(outputStream* st);
f7f90fddce02 8211326: add OS user related information to hs_err file
mbaesken
parents: 52460
diff changeset
   123
51989
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   124
#ifdef SUPPORTS_CLOCK_MONOTONIC
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   125
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   126
  static bool supports_monotonic_clock();
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   127
  static int clock_gettime(clockid_t clock_id, struct timespec *tp);
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   128
  static int clock_getres(clockid_t clock_id, struct timespec *tp);
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   129
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   130
#else
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   131
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   132
  static bool supports_monotonic_clock() { return false; }
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   133
7ac0ac1e57b6 8211175: Remove temporary clock initialization duplication
dholmes
parents: 50333
diff changeset
   134
#endif
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
   135
};
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
   136
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   137
/*
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   138
 * Crash protection for the watcher thread. Wrap the callback
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   139
 * with a sigsetjmp and in case of a SIGSEGV/SIGBUS we siglongjmp
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   140
 * back.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   141
 * To be able to use this - don't take locks, don't rely on destructors,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   142
 * don't make OS library calls, don't allocate memory, don't print,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   143
 * don't call code that could leave the heap / memory in an inconsistent state,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   144
 * or anything else where we are not in control if we suddenly jump out.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   145
 */
46644
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   146
class ThreadCrashProtection : public StackObj {
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   147
public:
46644
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   148
  static bool is_crash_protected(Thread* thr) {
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   149
    return _crash_protection != NULL && _protected_thread == thr;
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   150
  }
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   151
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   152
  ThreadCrashProtection();
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   153
  bool call(os::CrashProtectionCallback& cb);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   154
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   155
  static void check_crash_protection(int signal, Thread* thread);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   156
private:
46644
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   157
  static Thread* _protected_thread;
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   158
  static ThreadCrashProtection* _crash_protection;
a5813fb66270 8183925: Decouple crash protection from watcher thread
rehn
parents: 46604
diff changeset
   159
  static volatile intptr_t _crash_mux;
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   160
  void restore();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   161
  sigjmp_buf _jmpbuf;
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   162
};
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
   163
46507
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   164
#ifndef SOLARIS
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   165
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   166
/*
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   167
 * This is the platform-specific implementation underpinning
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   168
 * the ParkEvent class, which itself underpins Java-level monitor
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   169
 * operations. See park.hpp for details.
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   170
 * These event objects are type-stable and immortal - we never delete them.
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   171
 * Events are associated with a thread for the lifetime of the thread.
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   172
 */
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   173
class PlatformEvent : public CHeapObj<mtInternal> {
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   174
 private:
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   175
  double cachePad[4];        // Increase odds that _mutex is sole occupant of cache line
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   176
  volatile int _event;       // Event count/permit: -1, 0 or 1
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   177
  volatile int _nParked;     // Indicates if associated thread is blocked: 0 or 1
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   178
  pthread_mutex_t _mutex[1]; // Native mutex for locking
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   179
  pthread_cond_t  _cond[1];  // Native condition variable for blocking
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   180
  double postPad[2];
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   181
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   182
 protected:       // TODO-FIXME: make dtor private
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   183
  ~PlatformEvent() { guarantee(false, "invariant"); } // immortal so can't delete
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   184
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   185
 public:
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   186
  PlatformEvent();
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   187
  void park();
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   188
  int  park(jlong millis);
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   189
  void unpark();
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   190
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   191
  // Use caution with reset() and fired() -- they may require MEMBARs
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   192
  void reset() { _event = 0; }
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   193
  int  fired() { return _event; }
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   194
};
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   195
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   196
// JSR166 support
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   197
// PlatformParker provides the platform dependent base class for the
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   198
// Parker class. It basically provides the internal data structures:
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   199
// - mutex and convars
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   200
// which are then used directly by the Parker methods defined in the OS
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   201
// specific implementation files.
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   202
// There is significant overlap between the funcionality supported in the
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   203
// combination of Parker+PlatformParker and PlatformEvent (above). If Parker
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   204
// were more like ObjectMonitor we could use PlatformEvent in both (with some
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   205
// API updates of course). But Parker methods use fastpaths that break that
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   206
// level of encapsulation - so combining the two remains a future project.
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   207
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   208
class PlatformParker : public CHeapObj<mtInternal> {
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   209
 protected:
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   210
  enum {
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   211
    REL_INDEX = 0,
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   212
    ABS_INDEX = 1
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   213
  };
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   214
  int _cur_index;  // which cond is in use: -1, 0, 1
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   215
  pthread_mutex_t _mutex[1];
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   216
  pthread_cond_t  _cond[2]; // one for relative times and one for absolute
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   217
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   218
 public:       // TODO-FIXME: make dtor private
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   219
  ~PlatformParker() { guarantee(false, "invariant"); }
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   220
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   221
 public:
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   222
  PlatformParker();
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   223
};
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   224
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   225
#endif // !SOLARIS
7db40fa6eff7 8174231: Factor out and share PlatformEvent and Parker code for POSIX systems
dholmes
parents: 46331
diff changeset
   226
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52585
diff changeset
   227
#endif // OS_POSIX_OS_POSIX_HPP