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_LINUX_VM_OS_LINUX_INLINE_HPP
  26 #define OS_LINUX_VM_OS_LINUX_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 // Use threadsafe version of strtok
  38 inline char* os::strtok(char *str, const char *delim, char **saveptr) {
  39   return strtok_r(str, delim, saveptr);
  40 }
  41 
  42 // File names are case-insensitive on windows only
  43 inline int os::file_name_strncmp(const char* s1, const char* s2, size_t num) {
  44   return strncmp(s1, s2, num);
  45 }
  46 
  47 inline bool os::uses_stack_guard_pages() {
  48   return true;
  49 }
  50 
  51 inline bool os::must_commit_stack_guard_pages() {
  52   assert(uses_stack_guard_pages(), "sanity check");
  53   return true;
  54 }
  55 
  56 
  57 // On Linux, reservations are made on a page by page basis, nothing to do.
  58 inline void os::pd_split_reserved_memory(char *base, size_t size,
  59                                       size_t split, bool realloc) {
  60 }
  61 
  62 
  63 // Bang the shadow pages if they need to be touched to be mapped.
  64 inline void os::map_stack_shadow_pages(address sp) {
  65 }
  66 
  67 inline void os::dll_unload(void *lib) {
  68   ::dlclose(lib);
  69 }
  70 
  71 inline const int os::default_file_open_flags() { return 0;}
  72 
  73 inline jlong os::lseek(int fd, jlong offset, int whence) {
  74   return (jlong) ::lseek64(fd, offset, whence);
  75 }
  76 
  77 inline int os::fsync(int fd) {
  78   return ::fsync(fd);
  79 }
  80 
  81 inline int os::ftruncate(int fd, jlong length) {
  82   return ::ftruncate64(fd, length);
  83 }
  84 
  85 // macros for restartable system calls
  86 
  87 #define RESTARTABLE(_cmd, _result) do { \
  88     _result = _cmd; \
  89   } while(((int)_result == OS_ERR) && (errno == EINTR))
  90 
  91 #define RESTARTABLE_RETURN_INT(_cmd) do { \
  92   int _result; \
  93   RESTARTABLE(_cmd, _result); \
  94   return _result; \
  95 } while(false)
  96 
  97 inline bool os::numa_has_static_binding()   { return true; }
  98 inline bool os::numa_has_group_homing()     { return false;  }
  99 
 100 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) {
 101   size_t res;
 102   RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res);
 103   return res;
 104 }
 105 
 106 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
 107   size_t res;
 108   RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
 109   return res;
 110 }
 111 
 112 inline int os::close(int fd) {
 113   return ::close(fd);
 114 }
 115 
 116 inline int os::socket_close(int fd) {
 117   return ::close(fd);
 118 }
 119 
 120 inline int os::socket(int domain, int type, int protocol) {
 121   return ::socket(domain, type, protocol);
 122 }
 123 
 124 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) {
 125   RESTARTABLE_RETURN_INT(::recv(fd, buf, nBytes, flags));
 126 }
 127 
 128 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) {
 129   RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
 130 }
 131 
 132 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) {
 133   return os::send(fd, buf, nBytes, flags);
 134 }
 135 
 136 inline int os::connect(int fd, struct sockaddr* him, socklen_t len) {
 137   RESTARTABLE_RETURN_INT(::connect(fd, him, len));
 138 }
 139 
 140 inline struct hostent* os::get_host_by_name(char* name) {
 141   return ::gethostbyname(name);
 142 }
 143 
 144 inline bool os::supports_monotonic_clock() {
 145   return os::Posix::supports_monotonic_clock();
 146 }
 147 
 148 inline void os::exit(int num) {
 149   ::exit(num);
 150 }
 151 
 152 #endif // OS_LINUX_VM_OS_LINUX_INLINE_HPP