source: mainline/uspace/app/trace/syscalls.c

Last change on this file was d5b37b6, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 2 months ago

Use a new syscall, SYS_KIO_READ, for reading from KIO buffer

Originally, the buffer memory was shared between kernel and
uspace, presumably to avoid the overhead of syscalls.
However, this makes synchronization with kernel impossible,
so it is not possible to ensure it works reliably without
random glitches. Also, relative to everything else /app/kio
does with the data, the syscall overhead is positively tiny.

  • Property mode set to 100644
File size: 5.2 KB
RevLine 
[9a1b20c]1/*
[f35749e]2 * Copyright (c) 2025 Jiri Svoboda
[9a1b20c]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup trace
30 * @{
31 */
32/** @file
33 */
34
[c0699467]35#include <abi/syscall.h>
[9a1b20c]36#include "syscalls.h"
[f7176b1]37#include "trace.h"
[9a1b20c]38
39const sc_desc_t syscall_desc[] = {
[ef0a3375]40 /* System management syscalls. */
[904b1bc]41 [SYS_KIO] = { "kio", 3, V_INT_ERRNO },
[f35749e]42 [SYS_REBOOT] = { "reboot", 0, V_ERRNO },
[79ae36dd]43
[ef0a3375]44 /* Thread and task related syscalls. */
[904b1bc]45 [SYS_THREAD_CREATE] = { "thread_create", 3, V_ERRNO },
46 [SYS_THREAD_EXIT] = { "thread_exit", 1, V_ERRNO },
47 [SYS_THREAD_GET_ID] = { "thread_get_id", 1, V_ERRNO },
[ef0a3375]48 [SYS_THREAD_USLEEP] = { "thread_usleep", 1, V_ERRNO },
49 [SYS_THREAD_UDELAY] = { "thread_udelay", 1, V_ERRNO },
[9a1b20c]50
[904b1bc]51 [SYS_TASK_GET_ID] = { "task_get_id", 1, V_ERRNO },
52 [SYS_TASK_SET_NAME] = { "task_set_name", 2, V_ERRNO },
[ef0a3375]53 [SYS_TASK_KILL] = { "task_kill", 1, V_ERRNO },
54 [SYS_TASK_EXIT] = { "task_exit", 1, V_ERRNO },
55 [SYS_PROGRAM_SPAWN_LOADER] = { "program_spawn_loader", 2, V_ERRNO },
[9a1b20c]56
[ef0a3375]57 /* Synchronization related syscalls. */
58 [SYS_WAITQ_CREATE] = { "waitq_create", 1, V_ERRNO },
59 [SYS_WAITQ_SLEEP] = { "waitq_sleep", 3, V_ERRNO },
60 [SYS_WAITQ_WAKEUP] = { "waitq_wakeup", 1, V_ERRNO },
61 [SYS_WAITQ_DESTROY] = { "waitq_destroy", 1, V_ERRNO },
62 [SYS_SMC_COHERENCE] = { "smc_coherence", 2, V_ERRNO },
63
64 /* Address space related syscalls. */
[904b1bc]65 [SYS_AS_AREA_CREATE] = { "as_area_create", 5, V_ERRNO },
66 [SYS_AS_AREA_RESIZE] = { "as_area_resize", 3, V_ERRNO },
[ef0a3375]67 [SYS_AS_AREA_CHANGE_FLAGS] = { "as_area_change_flags", 2, V_ERRNO },
68 [SYS_AS_AREA_GET_INFO] = { "as_area_get_info", 2, V_ERRNO },
[904b1bc]69 [SYS_AS_AREA_DESTROY] = { "as_area_destroy", 1, V_ERRNO },
[9a1b20c]70
[ef0a3375]71 /* Page mapping related syscalls. */
72 [SYS_PAGE_FIND_MAPPING] = { "page_find_mapping", 2, V_ERRNO },
73
74 /* IPC related syscalls. */
[904b1bc]75 [SYS_IPC_CALL_ASYNC_FAST] = { "ipc_call_async_fast", 6, V_HASH },
76 [SYS_IPC_CALL_ASYNC_SLOW] = { "ipc_call_async_slow", 3, V_HASH },
77 [SYS_IPC_ANSWER_FAST] = { "ipc_answer_fast", 6, V_ERRNO },
78 [SYS_IPC_ANSWER_SLOW] = { "ipc_answer_slow", 2, V_ERRNO },
79 [SYS_IPC_FORWARD_FAST] = { "ipc_forward_fast", 6, V_ERRNO },
80 [SYS_IPC_FORWARD_SLOW] = { "ipc_forward_slow", 3, V_ERRNO },
81 [SYS_IPC_WAIT] = { "ipc_wait_for_call", 3, V_HASH },
82 [SYS_IPC_POKE] = { "ipc_poke", 0, V_ERRNO },
83 [SYS_IPC_HANGUP] = { "ipc_hangup", 1, V_ERRNO },
[ef0a3375]84 [SYS_IPC_CONNECT_KBOX] = { "ipc_connect_kbox", 2, V_ERRNO },
[9a1b20c]85
[ef0a3375]86 /* Event notification syscalls. */
[904b1bc]87 [SYS_IPC_EVENT_SUBSCRIBE] = { "ipc_event_subscribe", 2, V_ERRNO },
88 [SYS_IPC_EVENT_UNSUBSCRIBE] = { "ipc_event_unsubscribe", 1, V_ERRNO },
89 [SYS_IPC_EVENT_UNMASK] = { "ipc_event_unmask", 1, V_ERRNO },
[05641a9e]90
[ef0a3375]91 /* Permission related syscalls. */
[904b1bc]92 [SYS_PERM_GRANT] = { "perm_grant", 2, V_ERRNO },
93 [SYS_PERM_REVOKE] = { "perm_revoke", 2, V_ERRNO },
[ef0a3375]94
95 /* DDI related syscalls. */
[904b1bc]96 [SYS_PHYSMEM_MAP] = { "physmem_map", 4, V_ERRNO },
[ef0a3375]97 [SYS_PHYSMEM_UNMAP] = { "physmem_unmap", 1, V_ERRNO },
98 [SYS_DMAMEM_MAP] = { "dmamem_map", 6, V_ERRNO },
99 [SYS_DMAMEM_UNMAP] = { "dmamem_unmap", 3, V_ERRNO },
[904b1bc]100 [SYS_IOSPACE_ENABLE] = { "iospace_enable", 1, V_ERRNO },
[ef0a3375]101 [SYS_IOSPACE_DISABLE] = { "iospace_disable", 1, V_ERRNO },
[8820544]102
[904b1bc]103 [SYS_IPC_IRQ_SUBSCRIBE] = { "ipc_irq_subscribe", 4, V_ERRNO },
104 [SYS_IPC_IRQ_UNSUBSCRIBE] = { "ipc_irq_unsubscribe", 2, V_ERRNO },
[9a1b20c]105
[ef0a3375]106 /* Sysinfo syscalls. */
107 [SYS_SYSINFO_GET_KEYS_SIZE] = { "sysinfo_get_keys_size", 3, V_ERRNO },
108 [SYS_SYSINFO_GET_KEYS] = { "sysinfo_get_keys", 5, V_ERRNO },
[904b1bc]109 [SYS_SYSINFO_GET_VAL_TYPE] = { "sysinfo_get_val_type", 2, V_INTEGER },
110 [SYS_SYSINFO_GET_VALUE] = { "sysinfo_get_value", 3, V_ERRNO },
111 [SYS_SYSINFO_GET_DATA_SIZE] = { "sysinfo_get_data_size", 3, V_ERRNO },
112 [SYS_SYSINFO_GET_DATA] = { "sysinfo_get_data", 5, V_ERRNO },
[d9fae235]113
[ef0a3375]114 /* Kernel console syscalls. */
[904b1bc]115 [SYS_DEBUG_CONSOLE] = { "debug_console", 0, V_ERRNO },
[ef0a3375]116
[d5b37b6]117 [SYS_KLOG] = { "klog", 5, V_ERRNO },
118 [SYS_KIO_READ] = { "kio_read", 3, V_INTEGER },
[9a1b20c]119};
120
[a3b339b4]121const size_t syscall_desc_len = (sizeof(syscall_desc) / sizeof(sc_desc_t));
122
[9a1b20c]123/** @}
124 */
Note: See TracBrowser for help on using the repository browser.