1 | // SPDX-License-Identifier: GPL-3.0-or-later |
2 | // Kernel syscall declarations |
3 | // This file was generated by scripts/gen_syscall.py |
4 | |
5 | #pragma once |
6 | |
7 | #include <mos/filesystem/fs_types.h> |
8 | #include <mos/io/io_types.h> |
9 | #include <mos/mos_global.h> |
10 | #include <mos/tasks/signal_types.h> |
11 | #include <mos/types.h> |
12 | #include <sys/poll.h> |
13 | #include <sys/select.h> |
14 | #include <sys/uio.h> |
15 | |
16 | fd_t impl_syscall_vfs_openat(fd_t dirfd, const char *file_path, open_flags flags); |
17 | |
18 | long impl_syscall_vfs_fstatat(fd_t dirfd, const char *file_path, file_stat_t *stat_buf, fstatat_flags flags); |
19 | |
20 | size_t impl_syscall_io_read(fd_t fd, void *buffer, size_t size); |
21 | |
22 | size_t impl_syscall_io_write(fd_t fd, const void *buffer, size_t size); |
23 | |
24 | bool impl_syscall_io_close(fd_t fd); |
25 | |
26 | __attribute__((__noreturn__)) void impl_syscall_exit(u32 exit_code); |
27 | |
28 | void impl_syscall_yield_cpu(void); |
29 | |
30 | pid_t impl_syscall_fork(void); |
31 | |
32 | pid_t impl_syscall_get_pid(void); |
33 | |
34 | pid_t impl_syscall_get_parent_pid(void); |
35 | |
36 | pid_t impl_syscall_spawn(const char *file_path, const char *const *argv, const char *const *envp); |
37 | |
38 | tid_t impl_syscall_create_thread(const char *name, thread_entry_t entry, void *arg, size_t stack_size, void *stack); |
39 | |
40 | tid_t impl_syscall_get_tid(void); |
41 | |
42 | __attribute__((__noreturn__)) void impl_syscall_thread_exit(void); |
43 | |
44 | bool impl_syscall_wait_for_thread(tid_t tid); |
45 | |
46 | bool impl_syscall_futex_wait(futex_word_t *futex, u32 val); |
47 | |
48 | bool impl_syscall_futex_wake(futex_word_t *futex, size_t count); |
49 | |
50 | fd_t impl_syscall_ipc_create(const char *name, size_t max_pending_connections); |
51 | |
52 | fd_t impl_syscall_ipc_accept(fd_t fd); |
53 | |
54 | fd_t impl_syscall_ipc_connect(const char *name, size_t buffer_size); |
55 | |
56 | u64 impl_syscall_arch_syscall(u64 nr, u64 arg1, u64 arg2, u64 arg3, u64 arg4); |
57 | |
58 | long impl_syscall_vfs_mount(const char *device, const char *mount_point, const char *fs_type, const char *options); |
59 | |
60 | ssize_t impl_syscall_vfs_readlinkat(fd_t dirfd, const char *path, char *buf, size_t buf_size); |
61 | |
62 | long impl_syscall_vfs_unlinkat(fd_t dirfd, const char *path); |
63 | |
64 | long impl_syscall_vfs_symlink(const char *link_path, const char *target); |
65 | |
66 | long impl_syscall_vfs_mkdir(const char *path); |
67 | |
68 | size_t impl_syscall_vfs_list_dir(fd_t fd, char *buffer, size_t buffer_size); |
69 | |
70 | long impl_syscall_fd_manipulate(fd_t fd, u64 cmd, void *arg); |
71 | |
72 | void *impl_syscall_mmap_anonymous(ptr_t hint_addr, size_t size, mem_perm_t perm, mmap_flags_t flags); |
73 | |
74 | void *impl_syscall_mmap_file(ptr_t hint_addr, size_t size, mem_perm_t perm, mmap_flags_t flags, fd_t fd, off_t offset); |
75 | |
76 | pid_t impl_syscall_wait_for_process(pid_t pid, u32 *exit_code, u32 flags); |
77 | |
78 | bool impl_syscall_munmap(void *addr, size_t size); |
79 | |
80 | long impl_syscall_vfs_chdirat(fd_t dirfd, const char *path); |
81 | |
82 | ssize_t impl_syscall_vfs_getcwd(char *buf, size_t buf_size); |
83 | |
84 | off_t impl_syscall_io_seek(fd_t fd, off_t offset, io_seek_whence_t whence); |
85 | |
86 | off_t impl_syscall_io_tell(fd_t fd); |
87 | |
88 | bool impl_syscall_signal_register(signal_t signum, const sigaction_t *action); |
89 | |
90 | long impl_syscall_signal_process(pid_t pid, signal_t signum); |
91 | |
92 | long impl_syscall_signal_thread(tid_t tid, signal_t signum); |
93 | |
94 | void impl_syscall_poweroff(bool reboot, u32 magic); |
95 | |
96 | __attribute__((__noreturn__)) void impl_syscall_signal_return(void *sp); |
97 | |
98 | bool impl_syscall_vm_protect(void *addr, size_t size, mem_perm_t perm); |
99 | |
100 | int impl_syscall_io_poll(struct pollfd *fds, nfds_t nfds, int timeout); |
101 | |
102 | int impl_syscall_io_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timespec *timeout, const sigset_t *sigmask); |
103 | |
104 | long impl_syscall_execveat(fd_t dirfd, const char *file_path, const char *const *argv, const char *const *envp, u32 flags); |
105 | |
106 | long impl_syscall_clock_msleep(u64 ms); |
107 | |
108 | fd_t impl_syscall_io_dup(fd_t fd); |
109 | |
110 | fd_t impl_syscall_io_dup2(fd_t old_fd, fd_t new_fd); |
111 | |
112 | bool impl_syscall_dmabuf_alloc(size_t n_pages, ptr_t *out_paddr, ptr_t *out_vaddr); |
113 | |
114 | bool impl_syscall_dmabuf_free(ptr_t vaddr, ptr_t paddr); |
115 | |
116 | bool impl_syscall_dmabuf_share(void *buf, size_t bufsize, ptr_t *out_paddr); |
117 | |
118 | bool impl_syscall_dmabuf_unshare(ptr_t paddr, size_t size, void *vaddr); |
119 | |
120 | long impl_syscall_pipe(fd_t *out_read_fd, fd_t *out_write_fd, fd_flags_t flags); |
121 | |
122 | ssize_t impl_syscall_io_readv(fd_t fd, const struct iovec *iov, int iov_count); |
123 | |
124 | long impl_syscall_vfs_unmount(const char *mount_point); |
125 | |
126 | long impl_syscall_clock_gettimeofday(struct timespec *tv); |
127 | |
128 | long impl_syscall_thread_setname(tid_t tid, const char *name); |
129 | |
130 | ssize_t impl_syscall_thread_getname(tid_t tid, char *buf, size_t buf_size); |
131 | |
132 | long impl_syscall_vfs_fchmodat(fd_t dirfd, const char *path, int mode, int flags); |
133 | |
134 | long impl_syscall_io_pread(fd_t fd, void *buf, size_t count, off_t offset); |
135 | |
136 | fd_t impl_syscall_memfd_create(const char *name, u32 flags); |
137 | |
138 | long impl_syscall_signal_mask_op(int how, const sigset_t *set, sigset_t *oldset); |
139 | |
140 | long impl_syscall_vfs_fsync(fd_t fd, bool data_only); |
141 | |
142 | #define define_syscall(name) impl_syscall_##name |
143 | |