1 /*
   2  * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef OS_BSD_VM_OS_BSD_INLINE_HPP
  26 #define OS_BSD_VM_OS_BSD_INLINE_HPP
  27 
  28 #include "runtime/os.hpp"
  29 
  30 // System includes
  31 
  32 #include <unistd.h>
  33 #include <sys/socket.h>
  34 #include <poll.h>
  35 #include <netdb.h>
  36 
  37 // File names are case-insensitive on windows only
  38 inline int os::file_name_strncmp(const char* s1, const char* s2, size_t num) {
  39   return strncmp(s1, s2, num);
  40 }
  41 
  42 inline bool os::obsolete_option(const JavaVMOption *option) {
  43   return false;
  44 }
  45 
  46 inline bool os::uses_stack_guard_pages() {
  47   return true;
  48 }
  49 
  50 inline bool os::must_commit_stack_guard_pages() {
  51   assert(uses_stack_guard_pages(), "sanity check");
  52 #if !defined(__FreeBSD__) || __FreeBSD__ < 5
  53   // Since FreeBSD 4 uses malloc() for allocating the thread stack
  54   // there is no need to do anything extra to allocate the guard pages
  55   return false;
  56 #else
  57   // FreeBSD 5+ uses mmap MAP_STACK for allocating the thread stacks.
  58   // Must 'allocate' them or guard pages are ignored.
  59   return true;
  60 #endif
  61 }
  62 
  63 
  64 // On Bsd, reservations are made on a page by page basis, nothing to do.
  65 inline void os::pd_split_reserved_memory(char *base, size_t size,
  66                                       size_t split, bool realloc) {
  67 }
  68 
  69 
  70 // Bang the shadow pages if they need to be touched to be mapped.
  71 inline void os::map_stack_shadow_pages(address sp) {
  72 }
  73 
  74 inline void os::dll_unload(void *lib) {
  75   ::dlclose(lib);
  76 }
  77 
  78 inline const int os::default_file_open_flags() { return 0;}
  79 
  80 inline jlong os::lseek(int fd, jlong offset, int whence) {
  81   return (jlong) ::lseek(fd, offset, whence);
  82 }
  83 
  84 inline int os::fsync(int fd) {
  85   return ::fsync(fd);
  86 }
  87 
  88 inline int os::ftruncate(int fd, jlong length) {
  89   return ::ftruncate(fd, length);
  90 }
  91 
  92 // macros for restartable system calls
  93 
  94 #define RESTARTABLE(_cmd, _result) do { \
  95     _result = _cmd; \
  96   } while(((int)_result == OS_ERR) && (errno == EINTR))
  97 
  98 #define RESTARTABLE_RETURN_INT(_cmd) do { \
  99   int _result; \
 100   RESTARTABLE(_cmd, _result); \
 101   return _result; \
 102 } while(false)
 103 
 104 inline bool os::numa_has_static_binding()   { return true; }
 105 inline bool os::numa_has_group_homing()     { return false;  }
 106 
 107 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
 108   size_t res;
 109   RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res);
 110   return res;
 111 }
 112 
 113 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
 114   size_t res;
 115   RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
 116   return res;
 117 }
 118 
 119 inline int os::close(int fd) {
 120   return ::close(fd);
 121 }
 122 
 123 inline int os::socket_close(int fd) {
 124   return ::close(fd);
 125 }
 126 
 127 inline int os::socket(int domain, int type, int protocol) {
 128   return ::socket(domain, type, protocol);
 129 }
 130 
 131 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) {
 132   RESTARTABLE_RETURN_INT(::recv(fd, buf, nBytes, flags));
 133 }
 134 
 135 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) {
 136   RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
 137 }
 138 
 139 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) {
 140   return os::send(fd, buf, nBytes, flags);
 141 }
 142 
 143 inline int os::connect(int fd, struct sockaddr* him, socklen_t len) {
 144   RESTARTABLE_RETURN_INT(::connect(fd, him, len));
 145 }
 146 
 147 inline struct hostent* os::get_host_by_name(char* name) {
 148   return ::gethostbyname(name);
 149 }
 150 
 151 inline bool os::supports_monotonic_clock() {
 152 #ifdef __APPLE__
 153   return true;
 154 #else
 155   return Bsd::_clock_gettime != NULL;
 156 #endif
 157 }
 158 
 159 inline void os::exit(int num) {
 160   ::exit(num);
 161 }
 162 
 163 #endif // OS_BSD_VM_OS_BSD_INLINE_HPP