hotspot/src/os/posix/vm/os_posix.hpp
author goetz
Fri, 26 Jul 2013 00:59:18 +0200
changeset 22826 3ee6886e718d
parent 18943 7d0ef675e808
child 22872 b6902ee5bc8d
permissions -rw-r--r--
8020775: PPC64 (part 12): posix signal printing Summary: Implement methods printing posix signal information and call them in unix os files. Reviewed-by: kvn, dholmes, twisti Contributed-by: thomas.stuefe@sap.com
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
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 12735
diff changeset
     2
 * Copyright (c) 1999, 2012, 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
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    25
#ifndef OS_POSIX_VM_OS_POSIX_HPP
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    26
#define OS_POSIX_VM_OS_POSIX_HPP
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    27
class Posix {
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    28
  friend class os;
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    29
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    30
protected:
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    31
  static void print_distro_info(outputStream* st);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    32
  static void print_rlimit_info(outputStream* st);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    33
  static void print_uname_info(outputStream* st);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    34
  static void print_libversion_info(outputStream* st);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    35
  static void print_load_average(outputStream* st);
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    36
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    37
public:
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    38
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    39
  // Returns true if signal is valid.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    40
  static bool is_valid_signal(int sig);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    41
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    42
  // Helper function, returns a string (e.g. "SIGILL") for a signal.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    43
  // Returned string is a constant. For unknown signals "UNKNOWN" is returned.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    44
  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
    45
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    46
  // 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
    47
  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
    48
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    49
  // Prints a short one-line description of a signal set.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    50
  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
    51
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    52
  // 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
    53
  // into a user provided buffer. Returns that buffer.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    54
  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
    55
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    56
  // 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
    57
  static void print_sa_flags(outputStream* st, int flags);
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    58
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    59
  // A POSIX conform, platform-independend siginfo print routine.
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    60
  static void print_siginfo_brief(outputStream* os, const siginfo_t* si);
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    61
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    62
};
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    63
18943
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    64
/*
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    65
 * Crash protection for the watcher thread. Wrap the callback
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    66
 * with a sigsetjmp and in case of a SIGSEGV/SIGBUS we siglongjmp
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    67
 * back.
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    68
 * 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
    69
 * don't make OS library calls, don't allocate memory, don't print,
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    70
 * 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
    71
 * 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
    72
 */
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    73
class WatcherThreadCrashProtection : public StackObj {
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    74
public:
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    75
  WatcherThreadCrashProtection();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    76
  bool call(os::CrashProtectionCallback& cb);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    77
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    78
  static void check_crash_protection(int signal, Thread* thread);
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    79
private:
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    80
  void restore();
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    81
  sigjmp_buf _jmpbuf;
7d0ef675e808 8020701: Avoid crashes in WatcherThread
rbackman
parents: 13963
diff changeset
    82
};
12735
3e2e491f4f69 7165755: OS Information much longer on linux than other platforms
nloodin
parents:
diff changeset
    83
22826
3ee6886e718d 8020775: PPC64 (part 12): posix signal printing
goetz
parents: 18943
diff changeset
    84
#endif // OS_POSIX_VM_OS_POSIX_HPP