1 //===-- sanitizer_rtems.cpp -----------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file is shared between various sanitizers' runtime libraries and
10 // implements RTEMS-specific functions.
11 //===----------------------------------------------------------------------===//
13 #include "sanitizer_rtems.h"
16 #define posix_memalign __real_posix_memalign
17 #define free __real_free
18 #define memset __real_memset
20 #include "sanitizer_file.h"
21 #include "sanitizer_symbolizer.h"
31 // There is no mmap on RTEMS. Use memalign, etc.
32 #define __mmap_alloc_aligned posix_memalign
33 #define __mmap_free free
34 #define __mmap_memset memset
36 namespace __sanitizer
{
38 #include "sanitizer_syscall_generic.inc"
40 void NORETURN
internal__exit(int exitcode
) {
44 uptr
internal_sched_yield() {
48 uptr
internal_getpid() {
52 bool FileExists(const char *filename
) {
54 if (stat(filename
, &st
))
56 // Sanity check: filename is a regular file.
57 return S_ISREG(st
.st_mode
);
60 uptr
GetThreadSelf() { return static_cast<uptr
>(pthread_self()); }
62 tid_t
GetTid() { return GetThreadSelf(); }
64 void Abort() { abort(); }
66 int Atexit(void (*function
)(void)) { return atexit(function
); }
68 void SleepForSeconds(int seconds
) { sleep(seconds
); }
70 void SleepForMillis(int millis
) { usleep(millis
* 1000); }
72 bool SupportsColoredOutput(fd_t fd
) { return false; }
74 void GetThreadStackTopAndBottom(bool at_initialization
,
75 uptr
*stack_top
, uptr
*stack_bottom
) {
77 pthread_attr_init(&attr
);
78 CHECK_EQ(pthread_getattr_np(pthread_self(), &attr
), 0);
81 CHECK_EQ(pthread_attr_getstack(&attr
, &base
, &size
), 0);
82 CHECK_EQ(pthread_attr_destroy(&attr
), 0);
84 *stack_bottom
= reinterpret_cast<uptr
>(base
);
85 *stack_top
= *stack_bottom
+ size
;
88 void GetThreadStackAndTls(bool main
, uptr
*stk_addr
, uptr
*stk_size
,
89 uptr
*tls_addr
, uptr
*tls_size
) {
90 uptr stack_top
, stack_bottom
;
91 GetThreadStackTopAndBottom(main
, &stack_top
, &stack_bottom
);
92 *stk_addr
= stack_bottom
;
93 *stk_size
= stack_top
- stack_bottom
;
94 *tls_addr
= *tls_size
= 0;
97 void InitializePlatformEarly() {}
100 void CheckMPROTECT() {}
101 void DisableCoreDumperIfNecessary() {}
102 void InstallDeadlySignalHandlers(SignalHandlerType handler
) {}
103 void SetAlternateSignalStack() {}
104 void UnsetAlternateSignalStack() {}
105 void InitTlsSize() {}
107 void PrintModuleMap() {}
109 void SignalContext::DumpAllRegisters(void *context
) {}
110 const char *DescribeSignalOrException(int signo
) { UNIMPLEMENTED(); }
112 enum MutexState
{ MtxUnlocked
= 0, MtxLocked
= 1, MtxSleeping
= 2 };
114 BlockingMutex::BlockingMutex() {
115 internal_memset(this, 0, sizeof(*this));
118 void BlockingMutex::Lock() {
120 atomic_uint32_t
*m
= reinterpret_cast<atomic_uint32_t
*>(&opaque_storage_
);
121 if (atomic_exchange(m
, MtxLocked
, memory_order_acquire
) == MtxUnlocked
)
123 while (atomic_exchange(m
, MtxSleeping
, memory_order_acquire
) != MtxUnlocked
) {
124 internal_sched_yield();
128 void BlockingMutex::Unlock() {
129 atomic_uint32_t
*m
= reinterpret_cast<atomic_uint32_t
*>(&opaque_storage_
);
130 u32 v
= atomic_exchange(m
, MtxUnlocked
, memory_order_release
);
131 CHECK_NE(v
, MtxUnlocked
);
134 void BlockingMutex::CheckLocked() {
135 atomic_uint32_t
*m
= reinterpret_cast<atomic_uint32_t
*>(&opaque_storage_
);
136 CHECK_NE(MtxUnlocked
, atomic_load(m
, memory_order_relaxed
));
139 uptr
GetPageSize() { return getpagesize(); }
141 uptr
GetMmapGranularity() { return GetPageSize(); }
143 uptr
GetMaxVirtualAddress() {
144 return (1ULL << 32) - 1; // 0xffffffff
147 void *MmapOrDie(uptr size
, const char *mem_type
, bool raw_report
) {
149 int res
= __mmap_alloc_aligned(&ptr
, GetPageSize(), size
);
151 ReportMmapFailureAndDie(size
, mem_type
, "allocate", res
, raw_report
);
152 __mmap_memset(ptr
, 0, size
);
153 IncreaseTotalMmap(size
);
157 void *MmapOrDieOnFatalError(uptr size
, const char *mem_type
) {
159 int res
= __mmap_alloc_aligned(&ptr
, GetPageSize(), size
);
163 ReportMmapFailureAndDie(size
, mem_type
, "allocate", false);
165 __mmap_memset(ptr
, 0, size
);
166 IncreaseTotalMmap(size
);
170 void *MmapAlignedOrDieOnFatalError(uptr size
, uptr alignment
,
171 const char *mem_type
) {
172 CHECK(IsPowerOfTwo(size
));
173 CHECK(IsPowerOfTwo(alignment
));
175 int res
= __mmap_alloc_aligned(&ptr
, alignment
, size
);
177 ReportMmapFailureAndDie(size
, mem_type
, "align allocate", res
, false);
178 __mmap_memset(ptr
, 0, size
);
179 IncreaseTotalMmap(size
);
183 void *MmapNoReserveOrDie(uptr size
, const char *mem_type
) {
184 return MmapOrDie(size
, mem_type
, false);
187 void UnmapOrDie(void *addr
, uptr size
) {
188 if (!addr
|| !size
) return;
190 DecreaseTotalMmap(size
);
193 fd_t
OpenFile(const char *filename
, FileAccessMode mode
, error_t
*errno_p
) {
196 case RdOnly
: flags
= O_RDONLY
; break;
197 case WrOnly
: flags
= O_WRONLY
| O_CREAT
| O_TRUNC
; break;
198 case RdWr
: flags
= O_RDWR
| O_CREAT
; break;
200 fd_t res
= open(filename
, flags
, 0660);
201 if (internal_iserror(res
, errno_p
))
206 void CloseFile(fd_t fd
) {
210 bool ReadFromFile(fd_t fd
, void *buff
, uptr buff_size
, uptr
*bytes_read
,
212 uptr res
= read(fd
, buff
, buff_size
);
213 if (internal_iserror(res
, error_p
))
220 bool WriteToFile(fd_t fd
, const void *buff
, uptr buff_size
, uptr
*bytes_written
,
222 uptr res
= write(fd
, buff
, buff_size
);
223 if (internal_iserror(res
, error_p
))
226 *bytes_written
= res
;
230 void ReleaseMemoryPagesToOS(uptr beg
, uptr end
) {}
231 void DumpProcessMap() {}
233 // There is no page protection so everything is "accessible."
234 bool IsAccessibleMemoryRange(uptr beg
, uptr size
) {
238 char **GetArgv() { return nullptr; }
239 char **GetEnviron() { return nullptr; }
241 const char *GetEnv(const char *name
) {
245 uptr
ReadBinaryName(/*out*/char *buf
, uptr buf_len
) {
246 internal_strncpy(buf
, "StubBinaryName", buf_len
);
247 return internal_strlen(buf
);
250 uptr
ReadLongProcessName(/*out*/ char *buf
, uptr buf_len
) {
251 internal_strncpy(buf
, "StubProcessName", buf_len
);
252 return internal_strlen(buf
);
255 bool IsPathSeparator(const char c
) {
259 bool IsAbsolutePath(const char *path
) {
260 return path
!= nullptr && IsPathSeparator(path
[0]);
263 void ReportFile::Write(const char *buffer
, uptr length
) {
265 static const char *kWriteError
=
266 "ReportFile::Write() can't output requested buffer!\n";
268 if (length
!= write(fd
, buffer
, length
)) {
269 write(fd
, kWriteError
, internal_strlen(kWriteError
));
274 uptr MainThreadStackBase
, MainThreadStackSize
;
275 uptr MainThreadTlsBase
, MainThreadTlsSize
;
277 } // namespace __sanitizer
279 #endif // SANITIZER_RTEMS