hotspot/src/os/posix/vm/os_posix.hpp
author rdurbin
Fri, 09 Sep 2016 11:14:57 -0700
changeset 41070 496463b4e206
parent 36355 dd339cbafd31
child 42906 1a8db9cf1407
permissions -rw-r--r--
8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option Summary: Split the single thread_min_stack_allowed into three distinct values (java_thread_min_stack_allowed, compiler_thread_min_stack_allowed and vm_internal_thread_min_stack_allowed) on non-Windows platforms. Reviewed-by: dcubed, gthornbr, dholmes, coleenp, fparain, aph
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
/*
41070
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
     2
 * Copyright (c) 1999, 2016, 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
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    46
  // the VM to completely create the thread and enter user code)
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    47
  static size_t _compiler_thread_min_stack_allowed;
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    48
  static size_t _java_thread_min_stack_allowed;
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    49
  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
    50
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    51
public:
41070
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    52
  // 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
    53
  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
    54
  // Check and sets minimum stack sizes
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    55
  static jint set_minimum_stack_sizes();
496463b4e206 8140520: segfault on solaris-amd64 with "-XX:VMThreadStackSize=1" option
rdurbin
parents: 36355
diff changeset
    56
  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
    57
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    58
  // Returns true if signal is valid.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    59
  static bool is_valid_signal(int sig);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    60
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    61
  // Helper function, returns a string (e.g. "SIGILL") for a signal.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    62
  // Returned string is a constant. For unknown signals "UNKNOWN" is returned.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    63
  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
    64
34621
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    65
  // 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
    66
  // 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
    67
  // "SEGV" or "SIGSEGV" work. Name must be uppercase.
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    68
  // Returns -1 for an unknown signal name.
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    69
  static int get_signal_number(const char* signal_name);
7676bec20997 8143291: Remove redundant coding around os::exception_name
stuefe
parents: 34305
diff changeset
    70
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    71
  // 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
    72
  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
    73
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    74
  // Prints a short one-line description of a signal set.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    75
  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
    76
34305
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    77
  // unblocks the signal masks for current thread
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    78
  static int unblock_thread_signal_mask(const sigset_t *set);
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    79
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    80
  // 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
    81
  // into a user provided buffer. Returns that buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    82
  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
    83
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    84
  // 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
    85
  static void print_sa_flags(outputStream* st, int flags);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    86
35077
8b86440d3bf1 8145114: const-correctness for ucontext_t* reading functions
stuefe
parents: 34621
diff changeset
    87
  static address ucontext_get_pc(const ucontext_t* ctx);
34305
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    88
  // Set PC into context. Needed for continuation after signal.
e399e6b44631 8136978: Much nearly duplicated code for vmError support
sebastian
parents: 25468
diff changeset
    89
  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
    90
dd339cbafd31 8149036: Add tracing for thread related events at os level
stuefe
parents: 35176
diff changeset
    91
  // 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
    92
  // to buf with len buflen; buf is returned.
dd339cbafd31 8149036: Add tracing for thread related events at os level
stuefe
parents: 35176
diff changeset
    93
  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
    94
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    95
};
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    96
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    97
/*
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    98
 * Crash protection for the watcher thread. Wrap the callback
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    99
 * with a sigsetjmp and in case of a SIGSEGV/SIGBUS we siglongjmp
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   100
 * back.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   101
 * 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
   102
 * don't make OS library calls, don't allocate memory, don't print,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   103
 * 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
   104
 * 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
   105
 */
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   106
class WatcherThreadCrashProtection : public StackObj {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   107
public:
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   108
  WatcherThreadCrashProtection();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   109
  bool call(os::CrashProtectionCallback& cb);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   110
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   111
  static void check_crash_protection(int signal, Thread* thread);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   112
private:
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   113
  void restore();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   114
  sigjmp_buf _jmpbuf;
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
   115
};
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
   116
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
   117
#endif // OS_POSIX_VM_OS_POSIX_HPP