1 /*
2  * Copyright (c) 1999, 2019, 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_OS_BSD_INLINE_HPP
26 #define OS_BSD_OS_BSD_INLINE_HPP
27 
28 #include "runtime/os.hpp"
29 #include "os_posix.inline.hpp"
30 
31 // System includes
32 
33 #include <unistd.h>
34 #include <sys/socket.h>
35 #include <poll.h>
36 #include <netdb.h>
37 
uses_stack_guard_pages()38 inline bool os::uses_stack_guard_pages() {
39   return true;
40 }
41 
must_commit_stack_guard_pages()42 inline bool os::must_commit_stack_guard_pages() {
43   assert(uses_stack_guard_pages(), "sanity check");
44 #if !defined(__FreeBSD__) || __FreeBSD__ < 5
45   // Since FreeBSD 4 uses malloc() for allocating the thread stack
46   // there is no need to do anything extra to allocate the guard pages
47   return false;
48 #else
49   // FreeBSD 5+ uses mmap MAP_STACK for allocating the thread stacks.
50   // Must 'allocate' them or guard pages are ignored.
51   return true;
52 #endif
53 }
54 
55 
56 // On Bsd, reservations are made on a page by page basis, nothing to do.
pd_split_reserved_memory(char * base,size_t size,size_t split,bool realloc)57 inline void os::pd_split_reserved_memory(char *base, size_t size,
58                                       size_t split, bool realloc) {
59 }
60 
61 
62 // Bang the shadow pages if they need to be touched to be mapped.
map_stack_shadow_pages(address sp)63 inline void os::map_stack_shadow_pages(address sp) {
64 }
65 
dll_unload(void * lib)66 inline void os::dll_unload(void *lib) {
67   ::dlclose(lib);
68 }
69 
lseek(int fd,jlong offset,int whence)70 inline jlong os::lseek(int fd, jlong offset, int whence) {
71   return (jlong) ::lseek(fd, offset, whence);
72 }
73 
fsync(int fd)74 inline int os::fsync(int fd) {
75   return ::fsync(fd);
76 }
77 
ftruncate(int fd,jlong length)78 inline int os::ftruncate(int fd, jlong length) {
79   return ::ftruncate(fd, length);
80 }
81 
82 // macros for restartable system calls
83 
84 #define RESTARTABLE(_cmd, _result) do { \
85     _result = _cmd; \
86   } while(((int)_result == OS_ERR) && (errno == EINTR))
87 
88 #define RESTARTABLE_RETURN_INT(_cmd) do { \
89   int _result; \
90   RESTARTABLE(_cmd, _result); \
91   return _result; \
92 } while(false)
93 
numa_has_static_binding()94 inline bool os::numa_has_static_binding()   { return true; }
numa_has_group_homing()95 inline bool os::numa_has_group_homing()     { return false;  }
96 
write(int fd,const void * buf,unsigned int nBytes)97 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) {
98   size_t res;
99   RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
100   return res;
101 }
102 
close(int fd)103 inline int os::close(int fd) {
104   return ::close(fd);
105 }
106 
socket_close(int fd)107 inline int os::socket_close(int fd) {
108   return ::close(fd);
109 }
110 
socket(int domain,int type,int protocol)111 inline int os::socket(int domain, int type, int protocol) {
112   return ::socket(domain, type, protocol);
113 }
114 
recv(int fd,char * buf,size_t nBytes,uint flags)115 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) {
116   RESTARTABLE_RETURN_INT(::recv(fd, buf, nBytes, flags));
117 }
118 
send(int fd,char * buf,size_t nBytes,uint flags)119 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) {
120   RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
121 }
122 
raw_send(int fd,char * buf,size_t nBytes,uint flags)123 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) {
124   return os::send(fd, buf, nBytes, flags);
125 }
126 
connect(int fd,struct sockaddr * him,socklen_t len)127 inline int os::connect(int fd, struct sockaddr* him, socklen_t len) {
128   RESTARTABLE_RETURN_INT(::connect(fd, him, len));
129 }
130 
get_host_by_name(char * name)131 inline struct hostent* os::get_host_by_name(char* name) {
132   return ::gethostbyname(name);
133 }
134 
supports_monotonic_clock()135 inline bool os::supports_monotonic_clock() {
136 #ifdef __APPLE__
137   return true;
138 #else
139   return Bsd::_clock_gettime != NULL;
140 #endif
141 }
142 
exit(int num)143 inline void os::exit(int num) {
144   ::exit(num);
145 }
146 
147 #endif // OS_BSD_OS_BSD_INLINE_HPP
148