All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
native_internal.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2013, 2014 Ludwig Knüpfer
3 * Copyright (C) 2025 carl-tud
4 *
5 * This file is subject to the terms and conditions of the GNU Lesser
6 * General Public License v2.1. See the file LICENSE in the top level
7 * directory for more details.
8 */
9
35#ifndef NATIVE_INTERNAL_H
36#define NATIVE_INTERNAL_H
37
38#include "util/ucontext.h"
39#include <stdio.h>
40#include <stdint.h>
41#include <poll.h>
42
43#include <stdbool.h>
44#include <netdb.h>
45#include <ifaddrs.h>
46#include <time.h>
47#include <sys/time.h>
48#include <sys/stat.h>
49#include <sys/statvfs.h>
50#include <sys/uio.h>
51#include <dirent.h>
52
53#include "cpu_conf.h"
54#include "thread.h"
55#include "sched.h"
56
57#ifdef __cplusplus
58extern "C" {
59#endif
60
61#include "syscalls.h"
62
63/* MARK: - Internal native CPU API */
72typedef void (*_native_callback_t)(void);
73
77void native_cpu_init(void);
80/* MARK: - Native Signal Handling */
90extern volatile bool _native_interrupts_enabled;
91
98extern int _signal_pipe_fd[2];
99
104extern volatile int _native_pending_signals;
105
110
120
129
139void _native_call_sig_handlers_and_switch(void);
140
146extern void _native_sig_leave_tramp(void);
150/* MARK: - System Calls */
161extern volatile int _native_pending_syscalls;
162
166static inline void _native_pending_syscalls_up(void) {
167 _native_pending_syscalls += 1;
168}
169
173static inline void _native_pending_syscalls_down(void) {
174 _native_pending_syscalls -= 1;
175}
176
187void _native_syscall_leave(void);
188
195void _native_syscall_enter(void);
196
205/* MARK: - Native Context Switching */
214extern volatile uintptr_t _native_user_fptr;
215
219extern volatile int _native_in_isr;
220
225
229extern ucontext_t *_native_isr_context;
230
238extern void _native_isr_leave(void);
239
245static inline void _native_isr_context_make(void (*func)(void)) {
246 _native_isr_context->uc_stack.ss_sp = _isr_stack;
247 _native_isr_context->uc_stack.ss_size = sizeof(_isr_stack);
248 _native_isr_context->uc_stack.ss_flags = 0;
249
250 /* Create the ISR context, will execute _isr_schedule_and_switch */
251 makecontext(_native_isr_context, func, 0);
252}
253
258static inline ucontext_t* _native_user_context(void) {
259 /* Use intermediate cast to uintptr_t to silence -Wcast-align.
260 * stacks are manually word aligned in thread_static_init() */
261 return (ucontext_t *)(uintptr_t)thread_get_active()->sp;
262}
265/* MARK: - Native Process State */
274extern const char *_progname;
275
280extern char **_native_argv;
281
286extern pid_t _native_pid;
287
292extern pid_t _native_id;
293
298extern unsigned int _native_rng_seed;
299
307extern int _native_rng_mode;
310/* MARK: - Native Read/Write Methods */
318ssize_t _native_read(int fd, void *buf, size_t count);
319
323ssize_t _native_write(int fd, const void *buf, size_t count);
324
328ssize_t _native_writev(int fildes, const struct iovec *iov, int iovcnt);
331#ifdef __cplusplus
332}
333#endif
334
335#endif /* NATIVE_INTERNAL_H */
static thread_t * thread_get_active(void)
Returns a pointer to the Thread Control Block of the currently running thread.
Definition thread.h:407
void _native_sig_leave_tramp(void)
Switches to ISR context, then enables IRQ and returns to userspace.
static void _native_pending_syscalls_up(void)
Increment spending system call counter.
static void _native_isr_context_make(void(*func)(void))
Makes ISR context so that execution continues at func when the context is applied.
void native_cpu_init(void)
Initializes native CPU.
volatile int _native_in_isr
A boolean variable indicating whether program execution currently takes place in an ISR context.
ssize_t _native_read(int fd, void *buf, size_t count)
Reads file, populates given buffer.
volatile uintptr_t _native_user_fptr
Points to instruction in userspace where RIOT left off and switched to ISR context.
ssize_t _native_write(int fd, const void *buf, size_t count)
Writes given data into file.
void _native_init_syscalls(void)
Registers system calls.
void native_interrupt_init(void)
Registers signal handlers for the native CPU.
int native_register_interrupt(int sig, _native_callback_t handler)
Register interrupt handler handler for interrupt signal.
char _isr_stack[THREAD_STACKSIZE_DEFAULT]
Stack used in ISR context.
ssize_t _native_writev(int fildes, const struct iovec *iov, int iovcnt)
Performs a vectored write operation.
void(* _native_callback_t)(void)
Prototype for native's internal callbacks.
static void _native_pending_syscalls_down(void)
Decrements pending system call counter.
int native_unregister_interrupt(int sig)
Unregister interrupt handler for interrupt signal.
static ucontext_t * _native_user_context(void)
Retrieves user context.
ucontext_t * _native_isr_context
ISR context.
Native CPU configuration.
Scheduler API definition.
POSIX compatible sys/statvfs.h definitions.
char * sp
thread's stack pointer
Definition thread.h:169
Structure for scatter/gather I/O.
Definition uio.h:33
#define THREAD_STACKSIZE_DEFAULT
A reasonable default stack size that will suffice most smaller tasks.
libc header for scatter/gather I/O