libnx  v4.6.0
svc.h
Go to the documentation of this file.
1 /**
2  * @file svc.h
3  * @brief Wrappers for kernel syscalls.
4  * @copyright libnx Authors
5  */
6 #pragma once
7 #include "../types.h"
8 #include "../arm/thread_context.h"
9 
10 /// Pseudo handle for the current process.
11 #define CUR_PROCESS_HANDLE 0xFFFF8001
12 
13 /// Pseudo handle for the current thread.
14 #define CUR_THREAD_HANDLE 0xFFFF8000
15 
16 /// Maximum number of objects that can be waited on by \ref svcWaitSynchronization (Horizon kernel limitation).
17 #define MAX_WAIT_OBJECTS 0x40
18 
19 /// Memory type enumeration (lower 8 bits of \ref MemoryState)
20 typedef enum {
21  MemType_Unmapped=0x00, ///< Unmapped memory.
22  MemType_Io=0x01, ///< Mapped by kernel capability parsing in \ref svcCreateProcess.
23  MemType_Normal=0x02, ///< Mapped by kernel capability parsing in \ref svcCreateProcess.
24  MemType_CodeStatic=0x03, ///< Mapped during \ref svcCreateProcess.
25  MemType_CodeMutable=0x04, ///< Transition from MemType_CodeStatic performed by \ref svcSetProcessMemoryPermission.
26  MemType_Heap=0x05, ///< Mapped using \ref svcSetHeapSize.
27  MemType_SharedMem=0x06, ///< Mapped using \ref svcMapSharedMemory.
28  MemType_WeirdMappedMem=0x07, ///< Mapped using \ref svcMapMemory.
29  MemType_ModuleCodeStatic=0x08, ///< Mapped using \ref svcMapProcessCodeMemory.
30  MemType_ModuleCodeMutable=0x09, ///< Transition from \ref MemType_ModuleCodeStatic performed by \ref svcSetProcessMemoryPermission.
31  MemType_IpcBuffer0=0x0A, ///< IPC buffers with descriptor flags=0.
32  MemType_MappedMemory=0x0B, ///< Mapped using \ref svcMapMemory.
33  MemType_ThreadLocal=0x0C, ///< Mapped during \ref svcCreateThread.
34  MemType_TransferMemIsolated=0x0D, ///< Mapped using \ref svcMapTransferMemory when the owning process has perm=0.
35  MemType_TransferMem=0x0E, ///< Mapped using \ref svcMapTransferMemory when the owning process has perm!=0.
36  MemType_ProcessMem=0x0F, ///< Mapped using \ref svcMapProcessMemory.
37  MemType_Reserved=0x10, ///< Reserved.
38  MemType_IpcBuffer1=0x11, ///< IPC buffers with descriptor flags=1.
39  MemType_IpcBuffer3=0x12, ///< IPC buffers with descriptor flags=3.
40  MemType_KernelStack=0x13, ///< Mapped in kernel during \ref svcCreateThread.
41  MemType_CodeReadOnly=0x14, ///< Mapped in kernel during \ref svcControlCodeMemory.
42  MemType_CodeWritable=0x15, ///< Mapped in kernel during \ref svcControlCodeMemory.
43  MemType_Coverage=0x16, ///< Not available.
44  MemType_Insecure=0x17, ///< Mapped in kernel during \ref svcMapInsecurePhysicalMemory.
45 } MemoryType;
46 
47 /// Memory state bitmasks.
48 typedef enum {
49  MemState_Type=0xFF, ///< Type field (see \ref MemoryType).
50  MemState_PermChangeAllowed=BIT(8), ///< Permission change allowed.
51  MemState_ForceRwByDebugSyscalls=BIT(9), ///< Force read/writable by debug syscalls.
52  MemState_IpcSendAllowed_Type0=BIT(10), ///< IPC type 0 send allowed.
53  MemState_IpcSendAllowed_Type3=BIT(11), ///< IPC type 3 send allowed.
54  MemState_IpcSendAllowed_Type1=BIT(12), ///< IPC type 1 send allowed.
55  MemState_ProcessPermChangeAllowed=BIT(14), ///< Process permission change allowed.
56  MemState_MapAllowed=BIT(15), ///< Map allowed.
57  MemState_UnmapProcessCodeMemAllowed=BIT(16), ///< Unmap process code memory allowed.
58  MemState_TransferMemAllowed=BIT(17), ///< Transfer memory allowed.
59  MemState_QueryPAddrAllowed=BIT(18), ///< Query physical address allowed.
60  MemState_MapDeviceAllowed=BIT(19), ///< Map device allowed (\ref svcMapDeviceAddressSpace and \ref svcMapDeviceAddressSpaceByForce).
61  MemState_MapDeviceAlignedAllowed=BIT(20), ///< Map device aligned allowed.
62  MemState_IpcBufferAllowed=BIT(21), ///< IPC buffer allowed.
63  MemState_IsPoolAllocated=BIT(22), ///< Is pool allocated.
64  MemState_IsRefCounted=MemState_IsPoolAllocated, ///< Alias for \ref MemState_IsPoolAllocated.
65  MemState_MapProcessAllowed=BIT(23), ///< Map process allowed.
66  MemState_AttrChangeAllowed=BIT(24), ///< Attribute change allowed.
67  MemState_CodeMemAllowed=BIT(25), ///< Code memory allowed.
68 } MemoryState;
69 
70 /// Memory attribute bitmasks.
71 typedef enum {
72  MemAttr_IsBorrowed=BIT(0), ///< Is borrowed memory.
73  MemAttr_IsIpcMapped=BIT(1), ///< Is IPC mapped (when IpcRefCount > 0).
74  MemAttr_IsDeviceMapped=BIT(2), ///< Is device mapped (when DeviceRefCount > 0).
75  MemAttr_IsUncached=BIT(3), ///< Is uncached.
76  MemAttr_IsPermissionLocked=BIT(4), ///< Is permission locked.
78 
79 /// Memory permission bitmasks.
80 typedef enum {
81  Perm_None = 0, ///< No permissions.
82  Perm_R = BIT(0), ///< Read permission.
83  Perm_W = BIT(1), ///< Write permission.
84  Perm_X = BIT(2), ///< Execute permission.
85  Perm_Rw = Perm_R | Perm_W, ///< Read/write permissions.
86  Perm_Rx = Perm_R | Perm_X, ///< Read/execute permissions.
87  Perm_DontCare = BIT(28), ///< Don't care
88 } Permission;
89 
90 /// Memory information structure.
91 typedef struct {
92  u64 addr; ///< Base address.
93  u64 size; ///< Size.
94  u32 type; ///< Memory type (see lower 8 bits of \ref MemoryState).
95  u32 attr; ///< Memory attributes (see \ref MemoryAttribute).
96  u32 perm; ///< Memory permissions (see \ref Permission).
97  u32 ipc_refcount; ///< IPC reference count.
98  u32 device_refcount; ///< Device reference count.
99  u32 padding; ///< Padding.
100 } MemoryInfo;
101 
102 /// Physical memory information structure.
103 typedef struct {
104  u64 physical_address; ///< Physical address.
105  u64 virtual_address; ///< Virtual address.
106  u64 size; ///< Size.
108 
109 /// Secure monitor arguments.
110 typedef struct {
111  u64 X[8]; ///< Values of X0 through X7.
113 
114 /// Break reasons
115 typedef enum {
116  BreakReason_Panic = 0,
117  BreakReason_Assert = 1,
118  BreakReason_User = 2,
119  BreakReason_PreLoadDll = 3,
120  BreakReason_PostLoadDll = 4,
121  BreakReason_PreUnloadDll = 5,
122  BreakReason_PostUnloadDll = 6,
123  BreakReason_CppException = 7,
124 
125  BreakReason_NotificationOnlyFlag = 0x80000000,
126 } BreakReason;
127 
128 /// Code memory mapping operations
129 typedef enum {
130  CodeMapOperation_MapOwner=0, ///< Map owner.
131  CodeMapOperation_MapSlave=1, ///< Map slave.
132  CodeMapOperation_UnmapOwner=2, ///< Unmap owner.
133  CodeMapOperation_UnmapSlave=3, ///< Unmap slave.
135 
136 /// Limitable Resources.
137 typedef enum {
138  LimitableResource_Memory=0, ///<How much memory can a process map.
139  LimitableResource_Threads=1, ///<How many threads can a process spawn.
140  LimitableResource_Events=2, ///<How many events can a process have.
141  LimitableResource_TransferMemories=3, ///<How many transfer memories can a process make.
142  LimitableResource_Sessions=4, ///<How many sessions can a process own.
144 
145 /// Thread Activity.
146 typedef enum {
147  ThreadActivity_Runnable = 0, ///< Thread can run.
148  ThreadActivity_Paused = 1, ///< Thread is paused.
150 
151 /// Process Information.
152 typedef enum {
153  ProcessInfoType_ProcessState=0, ///<What state is a process in.
155 
156 /// Process States.
157 typedef enum {
158  ProcessState_Created=0, ///<Newly-created process, not yet started.
159  ProcessState_CreatedAttached=1, ///<Newly-created process, not yet started but attached to debugger.
160  ProcessState_Running=2, ///<Process that is running normally (and detached from any debugger).
161  ProcessState_Crashed=3, ///<Process that has just crashed.
162  ProcessState_RunningAttached=4, ///<Process that is running normally, attached to a debugger.
163  ProcessState_Exiting=5, ///<Process has begun exiting.
164  ProcessState_Exited=6, ///<Process has finished exiting.
165  ProcessState_DebugSuspended=7, ///<Process execution suspended by debugger.
166 } ProcessState;
167 
168 /// Process Activity.
169 typedef enum {
170  ProcessActivity_Runnable = 0, ///< Process can run.
171  ProcessActivity_Paused = 1, ///< Process is paused.
173 
174 /// Debug Thread Parameters.
175 typedef enum {
176  DebugThreadParam_ActualPriority=0,
177  DebugThreadParam_State=1,
178  DebugThreadParam_IdealCore=2,
179  DebugThreadParam_CurrentCore=3,
180  DebugThreadParam_CoreMask=4,
182 
183 /// GetInfo IDs.
184 typedef enum {
185  InfoType_CoreMask = 0, ///< Bitmask of allowed Core IDs.
186  InfoType_PriorityMask = 1, ///< Bitmask of allowed Thread Priorities.
187  InfoType_AliasRegionAddress = 2, ///< Base of the Alias memory region.
188  InfoType_AliasRegionSize = 3, ///< Size of the Alias memory region.
189  InfoType_HeapRegionAddress = 4, ///< Base of the Heap memory region.
190  InfoType_HeapRegionSize = 5, ///< Size of the Heap memory region.
191  InfoType_TotalMemorySize = 6, ///< Total amount of memory available for process.
192  InfoType_UsedMemorySize = 7, ///< Amount of memory currently used by process.
193  InfoType_DebuggerAttached = 8, ///< Whether current process is being debugged.
194  InfoType_ResourceLimit = 9, ///< Current process's resource limit handle.
195  InfoType_IdleTickCount = 10, ///< Number of idle ticks on CPU.
196  InfoType_RandomEntropy = 11, ///< [2.0.0+] Random entropy for current process.
197  InfoType_AslrRegionAddress = 12, ///< [2.0.0+] Base of the process's address space.
198  InfoType_AslrRegionSize = 13, ///< [2.0.0+] Size of the process's address space.
199  InfoType_StackRegionAddress = 14, ///< [2.0.0+] Base of the Stack memory region.
200  InfoType_StackRegionSize = 15, ///< [2.0.0+] Size of the Stack memory region.
201  InfoType_SystemResourceSizeTotal = 16, ///< [3.0.0+] Total memory allocated for process memory management.
202  InfoType_SystemResourceSizeUsed = 17, ///< [3.0.0+] Amount of memory currently used by process memory management.
203  InfoType_ProgramId = 18, ///< [3.0.0+] Program ID for the process.
204  InfoType_InitialProcessIdRange = 19, ///< [4.0.0-4.1.0] Min/max initial process IDs.
205  InfoType_UserExceptionContextAddress = 20, ///< [5.0.0+] Address of the process's exception context (for break).
206  InfoType_TotalNonSystemMemorySize = 21, ///< [6.0.0+] Total amount of memory available for process, excluding that for process memory management.
207  InfoType_UsedNonSystemMemorySize = 22, ///< [6.0.0+] Amount of memory used by process, excluding that for process memory management.
208  InfoType_IsApplication = 23, ///< [9.0.0+] Whether the specified process is an Application.
209  InfoType_FreeThreadCount = 24, ///< [11.0.0+] The number of free threads available to the process's resource limit.
210  InfoType_ThreadTickCount = 25, ///< [13.0.0+] Number of ticks spent on thread.
211  InfoType_IsSvcPermitted = 26, ///< [14.0.0+] Does process have access to SVC (only usable with \ref svcSynchronizePreemptionState at present).
212 
213  InfoType_ThreadTickCountDeprecated = 0xF0000002, ///< [1.0.0-12.1.0] Number of ticks spent on thread.
214 } InfoType;
215 
216 /// GetSystemInfo IDs.
217 typedef enum {
218  SystemInfoType_TotalPhysicalMemorySize = 0, ///< Total amount of DRAM available to system.
219  SystemInfoType_UsedPhysicalMemorySize = 1, ///< Current amount of DRAM used by system.
220  SystemInfoType_InitialProcessIdRange = 2, ///< Min/max initial process IDs.
222 
223 /// GetInfo Idle/Thread Tick Count Sub IDs.
224 typedef enum {
225  TickCountInfo_Core0 = 0, ///< Tick count on core 0.
226  TickCountInfo_Core1 = 1, ///< Tick count on core 1.
227  TickCountInfo_Core2 = 2, ///< Tick count on core 2.
228  TickCountInfo_Core3 = 3, ///< Tick count on core 3.
229 
230  TickCountInfo_Total = UINT64_MAX, ///< Tick count on all cores.
231 } TickCountInfo;
232 
233 /// GetInfo InitialProcessIdRange Sub IDs.
234 typedef enum {
235  InitialProcessIdRangeInfo_Minimum = 0, ///< Lowest initial process ID.
236  InitialProcessIdRangeInfo_Maximum = 1, ///< Highest initial process ID.
238 
239 /// GetSystemInfo PhysicalMemory Sub IDs.
240 typedef enum {
241  PhysicalMemorySystemInfo_Application = 0, ///< Memory allocated for application usage.
242  PhysicalMemorySystemInfo_Applet = 1, ///< Memory allocated for applet usage.
243  PhysicalMemorySystemInfo_System = 2, ///< Memory allocated for system usage.
244  PhysicalMemorySystemInfo_SystemUnsafe = 3, ///< Memory allocated for unsafe system usage (accessible to devices).
246 
247 /// SleepThread yield types.
248 typedef enum {
249  YieldType_WithoutCoreMigration = 0l, ///< Yields to another thread on the same core.
250  YieldType_WithCoreMigration = -1l, ///< Yields to another thread (possibly on a different core).
251  YieldType_ToAnyThread = -2l, ///< Yields and performs forced load-balancing.
252 } YieldType;
253 
254 /// SignalToAddress behaviors.
255 typedef enum {
256  SignalType_Signal = 0, ///< Signals the address.
257  SignalType_SignalAndIncrementIfEqual = 1, ///< Signals the address and increments its value if equal to argument.
258  SignalType_SignalAndModifyBasedOnWaitingThreadCountIfEqual = 2, ///< Signals the address and updates its value if equal to argument.
259 } SignalType;
260 
261 /// WaitForAddress behaviors.
262 typedef enum {
263  ArbitrationType_WaitIfLessThan = 0, ///< Wait if the value is less than argument.
264  ArbitrationType_DecrementAndWaitIfLessThan = 1, ///< Decrement the value and wait if it is less than argument.
265  ArbitrationType_WaitIfEqual = 2, ///< Wait if the value is equal to argument.
267 
268 /// Context of a scheduled thread.
269 typedef struct {
270  u64 fp; ///< Frame Pointer for the thread.
271  u64 sp; ///< Stack Pointer for the thread.
272  u64 lr; ///< Link Register for the thread.
273  u64 pc; ///< Program Counter for the thread.
275 
276 /// Memory mapping type.
277 typedef enum {
278  MemoryMapping_IoRegister = 0, ///< Mapping IO registers.
279  MemoryMapping_Uncached = 1, ///< Mapping normal memory without cache.
280  MemoryMapping_Memory = 2, ///< Mapping normal memory.
281 } MemoryMapping;
282 
283 /// Io Pools.
284 typedef enum {
285  IoPoolType_PcieA2 = 0, ///< Physical address range 0x12000000-0x1FFFFFFF
286 } IoPoolType;
287 
288 ///@name Memory management
289 ///@{
290 
291 /**
292  * @brief Set the process heap to a given size. It can both extend and shrink the heap.
293  * @param[out] out_addr Variable to which write the address of the heap (which is randomized and fixed by the kernel)
294  * @param[in] size Size of the heap, must be a multiple of 0x200000 and [2.0.0+] less than 0x18000000.
295  * @return Result code.
296  * @note Syscall number 0x01.
297  */
298 Result svcSetHeapSize(void** out_addr, u64 size);
299 
300 /**
301  * @brief Set the memory permissions of a (page-aligned) range of memory.
302  * @param[in] addr Start address of the range.
303  * @param[in] size Size of the range, in bytes.
304  * @param[in] perm Permissions (see \ref Permission).
305  * @return Result code.
306  * @remark Perm_X is not allowed. Setting write-only is not allowed either (Perm_W).
307  * This can be used to move back and forth between Perm_None, Perm_R and Perm_Rw.
308  * @note Syscall number 0x02.
309  */
310 Result svcSetMemoryPermission(void* addr, u64 size, u32 perm);
311 
312 /**
313  * @brief Set the memory attributes of a (page-aligned) range of memory.
314  * @param[in] addr Start address of the range.
315  * @param[in] size Size of the range, in bytes.
316  * @param[in] val0 State0
317  * @param[in] val1 State1
318  * @return Result code.
319  * @remark See <a href="https://switchbrew.org/wiki/SVC#svcSetMemoryAttribute">switchbrew.org Wiki</a> for more details.
320  * @note Syscall number 0x03.
321  */
322 Result svcSetMemoryAttribute(void* addr, u64 size, u32 val0, u32 val1);
323 
324 /**
325  * @brief Maps a memory range into a different range. Mainly used for adding guard pages around stack.
326  * Source range gets reprotected to Perm_None (it can no longer be accessed), and \ref MemAttr_IsBorrowed is set in the source \ref MemoryAttribute.
327  * @param[in] dst_addr Destination address.
328  * @param[in] src_addr Source address.
329  * @param[in] size Size of the range.
330  * @return Result code.
331  * @note Syscall number 0x04.
332  */
333 Result svcMapMemory(void* dst_addr, void* src_addr, u64 size);
334 
335 /**
336  * @brief Unmaps a region that was previously mapped with \ref svcMapMemory.
337  * @param[in] dst_addr Destination address.
338  * @param[in] src_addr Source address.
339  * @param[in] size Size of the range.
340  * @return Result code.
341  * @note Syscall number 0x05.
342  */
343 Result svcUnmapMemory(void* dst_addr, void* src_addr, u64 size);
344 
345 /**
346  * @brief Query information about an address. Will always fetch the lowest page-aligned mapping that contains the provided address.
347  * @param[out] meminfo_ptr \ref MemoryInfo structure which will be filled in.
348  * @param[out] pageinfo Page information which will be filled in.
349  * @param[in] addr Address to query.
350  * @return Result code.
351  * @note Syscall number 0x06.
352  */
353 Result svcQueryMemory(MemoryInfo* meminfo_ptr, u32 *pageinfo, u64 addr);
354 
355 ///@}
356 
357 ///@name Process and thread management
358 ///@{
359 
360 /**
361  * @brief Exits the current process.
362  * @note Syscall number 0x07.
363  */
364 
366 
367 /**
368  * @brief Creates a thread.
369  * @return Result code.
370  * @note Syscall number 0x08.
371  */
372 Result svcCreateThread(Handle* out, void* entry, void* arg, void* stack_top, int prio, int cpuid);
373 
374 /**
375  * @brief Starts a freshly created thread.
376  * @return Result code.
377  * @note Syscall number 0x09.
378  */
380 
381 /**
382  * @brief Exits the current thread.
383  * @note Syscall number 0x0A.
384  */
386 
387 /**
388  * @brief Sleeps the current thread for the specified amount of time.
389  * @param[in] nano Number of nanoseconds to sleep, or \ref YieldType for yield.
390  * @note Syscall number 0x0B.
391  */
392 void svcSleepThread(s64 nano);
393 
394 /**
395  * @brief Gets a thread's priority.
396  * @return Result code.
397  * @note Syscall number 0x0C.
398  */
400 
401 /**
402  * @brief Sets a thread's priority.
403  * @return Result code.
404  * @note Syscall number 0x0D.
405  */
407 
408 /**
409  * @brief Gets a thread's core mask.
410  * @return Result code.
411  * @note Syscall number 0x0E.
412  */
413 Result svcGetThreadCoreMask(s32* preferred_core, u64* affinity_mask, Handle handle);
414 
415 /**
416  * @brief Sets a thread's core mask.
417  * @return Result code.
418  * @note Syscall number 0x0F.
419  */
420 Result svcSetThreadCoreMask(Handle handle, s32 preferred_core, u32 affinity_mask);
421 
422 /**
423  * @brief Gets the current processor's number.
424  * @return The current processor's number.
425  * @note Syscall number 0x10.
426  */
428 
429 ///@}
430 
431 ///@name Synchronization
432 ///@{
433 
434 /**
435  * @brief Sets an event's signalled status.
436  * @return Result code.
437  * @note Syscall number 0x11.
438  */
440 
441 /**
442  * @brief Clears an event's signalled status.
443  * @return Result code.
444  * @note Syscall number 0x12.
445  */
447 
448 ///@}
449 
450 ///@name Inter-process memory sharing
451 ///@{
452 
453 /**
454  * @brief Maps a block of shared memory.
455  * @return Result code.
456  * @note Syscall number 0x13.
457  */
458 Result svcMapSharedMemory(Handle handle, void* addr, size_t size, u32 perm);
459 
460 /**
461  * @brief Unmaps a block of shared memory.
462  * @return Result code.
463  * @note Syscall number 0x14.
464  */
465 Result svcUnmapSharedMemory(Handle handle, void* addr, size_t size);
466 
467 /**
468  * @brief Creates a block of transfer memory.
469  * @return Result code.
470  * @note Syscall number 0x15.
471  */
472 Result svcCreateTransferMemory(Handle* out, void* addr, size_t size, u32 perm);
473 
474 ///@}
475 
476 ///@name Miscellaneous
477 ///@{
478 
479 /**
480  * @brief Closes a handle, decrementing the reference count of the corresponding kernel object.
481  * This might result in the kernel freeing the object.
482  * @param handle Handle to close.
483  * @return Result code.
484  * @note Syscall number 0x16.
485  */
487 
488 ///@}
489 
490 ///@name Synchronization
491 ///@{
492 
493 /**
494  * @brief Resets a signal.
495  * @return Result code.
496  * @note Syscall number 0x17.
497  */
499 
500 ///@}
501 
502 ///@name Synchronization
503 ///@{
504 
505 /**
506  * @brief Waits on one or more synchronization objects, optionally with a timeout.
507  * @return Result code.
508  * @note Syscall number 0x18.
509  * @note \p handleCount must not be greater than \ref MAX_WAIT_OBJECTS. This is a Horizon kernel limitation.
510  * @note This is the raw syscall, which can be cancelled by \ref svcCancelSynchronization or other means. \ref waitHandles or \ref waitMultiHandle should normally be used instead.
511  */
512 Result svcWaitSynchronization(s32* index, const Handle* handles, s32 handleCount, u64 timeout);
513 
514 /**
515  * @brief Waits on a single synchronization object, optionally with a timeout.
516  * @return Result code.
517  * @note Wrapper for \ref svcWaitSynchronization.
518  * @note This is the raw syscall, which can be cancelled by \ref svcCancelSynchronization or other means. \ref waitSingleHandle should normally be used instead.
519  */
520 static inline Result svcWaitSynchronizationSingle(Handle handle, u64 timeout) {
521  s32 tmp;
522  return svcWaitSynchronization(&tmp, &handle, 1, timeout);
523 }
524 
525 /**
526  * @brief Waits a \ref svcWaitSynchronization operation being done on a synchronization object in another thread.
527  * @return Result code.
528  * @note Syscall number 0x19.
529  */
531 
532 /**
533  * @brief Arbitrates a mutex lock operation in userspace.
534  * @return Result code.
535  * @note Syscall number 0x1A.
536  */
537 Result svcArbitrateLock(u32 wait_tag, u32* tag_location, u32 self_tag);
538 
539 /**
540  * @brief Arbitrates a mutex unlock operation in userspace.
541  * @return Result code.
542  * @note Syscall number 0x1B.
543  */
545 
546 /**
547  * @brief Performs a condition variable wait operation in userspace.
548  * @return Result code.
549  * @note Syscall number 0x1C.
550  */
551 Result svcWaitProcessWideKeyAtomic(u32* key, u32* tag_location, u32 self_tag, u64 timeout);
552 
553 /**
554  * @brief Performs a condition variable wake-up operation in userspace.
555  * @note Syscall number 0x1D.
556  */
558 
559 ///@}
560 
561 ///@name Miscellaneous
562 ///@{
563 
564 /**
565  * @brief Gets the current system tick.
566  * @return The current system tick.
567  * @note Syscall number 0x1E.
568  */
570 
571 ///@}
572 
573 ///@name Inter-process communication (IPC)
574 ///@{
575 
576 /**
577  * @brief Connects to a registered named port.
578  * @return Result code.
579  * @note Syscall number 0x1F.
580  */
581 Result svcConnectToNamedPort(Handle* session, const char* name);
582 
583 /**
584  * @brief Sends a light IPC synchronization request to a session.
585  * @return Result code.
586  * @note Syscall number 0x20.
587  */
589 
590 /**
591  * @brief Sends an IPC synchronization request to a session.
592  * @return Result code.
593  * @note Syscall number 0x21.
594  */
596 
597 /**
598  * @brief Sends an IPC synchronization request to a session from an user allocated buffer.
599  * @return Result code.
600  * @remark size must be allocated to 0x1000 bytes.
601  * @note Syscall number 0x22.
602  */
603 Result svcSendSyncRequestWithUserBuffer(void* usrBuffer, u64 size, Handle session);
604 
605 /**
606  * @brief Sends an IPC synchronization request to a session from an user allocated buffer (asynchronous version).
607  * @return Result code.
608  * @remark size must be allocated to 0x1000 bytes.
609  * @note Syscall number 0x23.
610  */
611 Result svcSendAsyncRequestWithUserBuffer(Handle* handle, void* usrBuffer, u64 size, Handle session);
612 
613 ///@}
614 
615 ///@name Process and thread management
616 ///@{
617 
618 /**
619  * @brief Gets the PID associated with a process.
620  * @return Result code.
621  * @note Syscall number 0x24.
622  */
623 Result svcGetProcessId(u64 *processID, Handle handle);
624 
625 /**
626  * @brief Gets the TID associated with a process.
627  * @return Result code.
628  * @note Syscall number 0x25.
629  */
630 Result svcGetThreadId(u64 *threadID, Handle handle);
631 
632 ///@}
633 
634 ///@name Miscellaneous
635 ///@{
636 
637 /**
638  * @brief Breaks execution.
639  * @param[in] breakReason Break reason (see \ref BreakReason).
640  * @param[in] address Address of the buffer to pass to the debugger.
641  * @param[in] size Size of the buffer to pass to the debugger.
642  * @return Result code.
643  * @note Syscall number 0x26.
644  */
645 Result svcBreak(u32 breakReason, uintptr_t address, uintptr_t size);
646 
647 ///@}
648 
649 ///@name Debugging
650 ///@{
651 
652 /**
653  * @brief Outputs debug text, if used during debugging.
654  * @param[in] str Text to output.
655  * @param[in] size Size of the text in bytes.
656  * @return Result code.
657  * @note Syscall number 0x27.
658  */
659 Result svcOutputDebugString(const char *str, u64 size);
660 
661 ///@}
662 
663 ///@name Miscellaneous
664 ///@{
665 
666 /**
667  * @brief Returns from an exception.
668  * @param[in] res Result code.
669  * @note Syscall number 0x28.
670  */
672 
673 /**
674  * @brief Retrieves information about the system, or a certain kernel object.
675  * @param[out] out Variable to which store the information.
676  * @param[in] id0 First ID of the property to retrieve.
677  * @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system.
678  * @param[in] id1 Second ID of the property to retrieve.
679  * @return Result code.
680  * @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetInfo">switchbrew.org wiki</a>.
681  * @note Syscall number 0x29.
682  */
683 Result svcGetInfo(u64* out, u32 id0, Handle handle, u64 id1);
684 
685 ///@}
686 
687 ///@name Cache Management
688 ///@{
689 
690 /**
691  * @brief Flushes the entire data cache (by set/way).
692  * @note Syscall number 0x2A.
693  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
694  * @warning This syscall is dangerous, and should not be used.
695  */
697 
698 /**
699  * @brief Flushes data cache for a virtual address range.
700  * @param[in] address Address of region to flush.
701  * @param[in] size Size of region to flush.
702  * @remark armDCacheFlush should be used instead of this syscall whenever possible.
703  * @note Syscall number 0x2B.
704  */
705 Result svcFlushDataCache(void *address, size_t size);
706 
707 ///@}
708 
709 ///@name Memory management
710 ///@{
711 
712 /**
713  * @brief Maps new heap memory at the desired address. [3.0.0+]
714  * @return Result code.
715  * @note Syscall number 0x2C.
716  */
717 Result svcMapPhysicalMemory(void *address, u64 size);
718 
719 /**
720  * @brief Undoes the effects of \ref svcMapPhysicalMemory. [3.0.0+]
721  * @return Result code.
722  * @note Syscall number 0x2D.
723  */
724 Result svcUnmapPhysicalMemory(void *address, u64 size);
725 
726 ///@}
727 
728 ///@name Process and thread management
729 ///@{
730 
731 /**
732  * @brief Gets information about a thread that will be scheduled in the future. [5.0.0+]
733  * @param[out] out_context Output \ref LastThreadContext for the thread that will be scheduled.
734  * @param[out] out_thread_id Output thread id for the thread that will be scheduled.
735  * @param[in] debug Debug handle.
736  * @param[in] ns Nanoseconds in the future to get scheduled thread at.
737  * @return Result code.
738  * @note Syscall number 0x2E.
739  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
740  */
741 Result svcGetDebugFutureThreadInfo(LastThreadContext *out_context, u64 *out_thread_id, Handle debug, s64 ns);
742 
743 /**
744  * @brief Gets information about the previously-scheduled thread.
745  * @param[out] out_context Output \ref LastThreadContext for the previously scheduled thread.
746  * @param[out] out_tls_address Output tls address for the previously scheduled thread.
747  * @param[out] out_flags Output flags for the previously scheduled thread.
748  * @return Result code.
749  * @note Syscall number 0x2F.
750  */
751 Result svcGetLastThreadInfo(LastThreadContext *out_context, u64 *out_tls_address, u32 *out_flags);
752 
753 ///@}
754 
755 ///@name Resource Limit Management
756 ///@{
757 
758 /**
759  * @brief Gets the maximum value a LimitableResource can have, for a Resource Limit handle.
760  * @return Result code.
761  * @note Syscall number 0x30.
762  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
763  */
765 
766 /**
767  * @brief Gets the maximum value a LimitableResource can have, for a Resource Limit handle.
768  * @return Result code.
769  * @note Syscall number 0x31.
770  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
771  */
773 
774 ///@}
775 
776 ///@name Process and thread management
777 ///@{
778 
779 /**
780  * @brief Configures the pause/unpause status of a thread.
781  * @return Result code.
782  * @note Syscall number 0x32.
783  */
785 
786 /**
787  * @brief Dumps the registers of a thread paused by @ref svcSetThreadActivity (register groups: all).
788  * @param[out] ctx Output thread context (register dump).
789  * @param[in] thread Thread handle.
790  * @return Result code.
791  * @note Syscall number 0x33.
792  * @warning Official kernel will not dump x0..x18 if the thread is currently executing a system call, and prior to 6.0.0 doesn't dump TPIDR_EL0.
793  */
795 
796 ///@}
797 
798 ///@name Synchronization
799 ///@{
800 
801 /**
802  * @brief Arbitrates an address depending on type and value. [4.0.0+]
803  * @param[in] address Address to arbitrate.
804  * @param[in] arb_type \ref ArbitrationType to use.
805  * @param[in] value Value to arbitrate on.
806  * @param[in] timeout Maximum time in nanoseconds to wait.
807  * @return Result code.
808  * @note Syscall number 0x34.
809  */
810 Result svcWaitForAddress(void *address, u32 arb_type, s32 value, s64 timeout);
811 
812 /**
813  * @brief Signals (and updates) an address depending on type and value. [4.0.0+]
814  * @param[in] address Address to arbitrate.
815  * @param[in] signal_type \ref SignalType to use.
816  * @param[in] value Value to arbitrate on.
817  * @param[in] count Number of waiting threads to signal.
818  * @return Result code.
819  * @note Syscall number 0x35.
820  */
821 Result svcSignalToAddress(void *address, u32 signal_type, s32 value, s32 count);
822 
823 ///@}
824 
825 ///@name Miscellaneous
826 ///@{
827 
828 /**
829  * @brief Sets thread preemption state (used during abort/panic). [8.0.0+]
830  * @note Syscall number 0x36.
831  */
833 
834 ///@}
835 
836 ///@name Resource Limit Management
837 ///@{
838 
839 /**
840  * @brief Gets the peak value a LimitableResource has had, for a Resource Limit handle. [11.0.0+]
841  * @return Result code.
842  * @note Syscall number 0x37.
843  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
844  */
846 
847 ///@}
848 
849 ///@name Memory Management
850 ///@{
851 
852 /**
853  * @brief Creates an IO Pool. [13.0.0+]
854  * @return Result code.
855  * @note Syscall number 0x39.
856  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
857  */
858 Result svcCreateIoPool(Handle *out_handle, u32 pool_type);
859 
860 /**
861  * @brief Creates an IO Region. [13.0.0+]
862  * @return Result code.
863  * @note Syscall number 0x3A.
864  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
865  */
866 Result svcCreateIoRegion(Handle *out_handle, Handle io_pool_h, u64 physical_address, u64 size, u32 memory_mapping, u32 perm);
867 
868 ///@}
869 
870 ///@name Debugging
871 ///@{
872 /**
873  * @brief Causes the kernel to dump debug information. [1.0.0-3.0.2]
874  * @param[in] dump_info_type Type of information to dump.
875  * @param[in] arg0 Argument to the debugging operation.
876  * @note Syscall number 0x3C.
877  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
878  */
879 void svcDumpInfo(u32 dump_info_type, u64 arg0);
880 
881 /**
882  * @brief Performs a debugging operation on the kernel. [4.0.0+]
883  * @param[in] kern_debug_type Type of debugging operation to perform.
884  * @param[in] arg0 First argument to the debugging operation.
885  * @param[in] arg1 Second argument to the debugging operation.
886  * @param[in] arg2 Third argument to the debugging operation.
887  * @note Syscall number 0x3C.
888  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
889  */
890 void svcKernelDebug(u32 kern_debug_type, u64 arg0, u64 arg1, u64 arg2);
891 
892 /**
893  * @brief Performs a debugging operation on the kernel. [4.0.0+]
894  * @param[in] kern_trace_state Type of tracing the kernel should perform.
895  * @note Syscall number 0x3D.
896  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
897  */
898 void svcChangeKernelTraceState(u32 kern_trace_state);
899 
900 ///@}
901  \
902 ///@name Inter-process communication (IPC)
903 ///@{
904 
905 /**
906  * @brief Creates an IPC session.
907  * @return Result code.
908  * @note Syscall number 0x40.
909  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
910  */
911 Result svcCreateSession(Handle *server_handle, Handle *client_handle, u32 unk0, u64 unk1);//unk* are normally 0?
912 
913 /**
914  * @brief Accepts an IPC session.
915  * @return Result code.
916  * @note Syscall number 0x41.
917  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
918  */
919 Result svcAcceptSession(Handle *session_handle, Handle port_handle);
920 
921 /**
922  * @brief Performs light IPC input/output.
923  * @return Result code.
924  * @param[in] handle Server or port handle to act on.
925  * @note Syscall number 0x42.
926  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
927  */
929 
930 /**
931  * @brief Performs IPC input/output.
932  * @return Result code.
933  * @note Syscall number 0x43.
934  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
935  */
936 Result svcReplyAndReceive(s32* index, const Handle* handles, s32 handleCount, Handle replyTarget, u64 timeout);
937 
938 /**
939  * @brief Performs IPC input/output from an user allocated buffer.
940  * @return Result code.
941  * @note Syscall number 0x44.
942  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
943  */
944 Result svcReplyAndReceiveWithUserBuffer(s32* index, void* usrBuffer, u64 size, const Handle* handles, s32 handleCount, Handle replyTarget, u64 timeout);
945 
946 ///@}
947 
948 ///@name Synchronization
949 ///@{
950 
951 /**
952  * @brief Creates a system event.
953  * @return Result code.
954  * @note Syscall number 0x45.
955  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
956  */
957 Result svcCreateEvent(Handle* server_handle, Handle* client_handle);
958 
959 ///@}
960 
961 ///@name Memory management
962 ///@{
963 
964 /**
965  * @brief Maps an IO Region. [13.0.0+]
966  * @return Result code.
967  * @note Syscall number 0x46.
968  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
969  */
970 Result svcMapIoRegion(Handle io_region_h, void *address, u64 size, u32 perm);
971 
972 /**
973  * @brief Undoes the effects of \ref svcMapIoRegion. [13.0.0+]
974  * @return Result code.
975  * @note Syscall number 0x47.
976  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
977  */
978 Result svcUnmapIoRegion(Handle io_region_h, void *address, u64 size);
979 
980 /**
981  * @brief Maps unsafe memory (usable for GPU DMA) for a system module at the desired address. [5.0.0+]
982  * @return Result code.
983  * @note Syscall number 0x48.
984  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
985  */
986 Result svcMapPhysicalMemoryUnsafe(void *address, u64 size);
987 
988 /**
989  * @brief Undoes the effects of \ref svcMapPhysicalMemoryUnsafe. [5.0.0+]
990  * @return Result code.
991  * @note Syscall number 0x49.
992  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
993  */
995 
996 /**
997  * @brief Sets the system-wide limit for unsafe memory mappable using \ref svcMapPhysicalMemoryUnsafe. [5.0.0+]
998  * @return Result code.
999  * @note Syscall number 0x4A.
1000  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1001  */
1003 
1004 ///@}
1005 
1006 
1007 ///@name Code memory / Just-in-time (JIT) compilation support
1008 ///@{
1009 
1010 /**
1011  * @brief Creates code memory in the caller's address space [4.0.0+].
1012  * @return Result code.
1013  * @note Syscall number 0x4B.
1014  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1015  */
1016 Result svcCreateCodeMemory(Handle* code_handle, void* src_addr, u64 size);
1017 
1018 /**
1019  * @brief Maps code memory in the caller's address space [4.0.0+].
1020  * @return Result code.
1021  * @note Syscall number 0x4C.
1022  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1023  */
1024 Result svcControlCodeMemory(Handle code_handle, CodeMapOperation op, void* dst_addr, u64 size, u64 perm);
1025 
1026 ///@}
1027 
1028 ///@name Power Management
1029 ///@{
1030 
1031 /**
1032  * @brief Causes the system to enter deep sleep.
1033  * @note Syscall number 0x4D.
1034  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1035  */
1036 void svcSleepSystem(void);
1037 
1038 ///@}
1039 
1040 ///@name Device memory-mapped I/O (MMIO)
1041 ///@{
1042 
1043 /**
1044  * @brief Reads/writes a protected MMIO register.
1045  * @return Result code.
1046  * @note Syscall number 0x4E.
1047  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1048  */
1049 Result svcReadWriteRegister(u32* outVal, u64 regAddr, u32 rwMask, u32 inVal);
1050 
1051 ///@}
1052 
1053 ///@name Process and thread management
1054 ///@{
1055 
1056 /**
1057  * @brief Configures the pause/unpause status of a process.
1058  * @return Result code.
1059  * @note Syscall number 0x4F.
1060  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1061  */
1063 
1064 ///@}
1065 
1066 ///@name Inter-process memory sharing
1067 ///@{
1068 
1069 /**
1070  * @brief Creates a block of shared memory.
1071  * @return Result code.
1072  * @note Syscall number 0x50.
1073  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1074  */
1075 Result svcCreateSharedMemory(Handle* out, size_t size, u32 local_perm, u32 other_perm);
1076 
1077 /**
1078  * @brief Maps a block of transfer memory.
1079  * @return Result code.
1080  * @note Syscall number 0x51.
1081  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1082  */
1083 Result svcMapTransferMemory(Handle tmem_handle, void* addr, size_t size, u32 perm);
1084 
1085 /**
1086  * @brief Unmaps a block of transfer memory.
1087  * @return Result code.
1088  * @note Syscall number 0x52.
1089  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1090  */
1091 Result svcUnmapTransferMemory(Handle tmem_handle, void* addr, size_t size);
1092 
1093 ///@}
1094 
1095 ///@name Device memory-mapped I/O (MMIO)
1096 ///@{
1097 
1098 /**
1099  * @brief Creates an event and binds it to a specific hardware interrupt.
1100  * @return Result code.
1101  * @note Syscall number 0x53.
1102  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1103  */
1105 
1106 /**
1107  * @brief Queries information about a certain virtual address, including its physical address.
1108  * @return Result code.
1109  * @note Syscall number 0x54.
1110  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1111  */
1113 
1114 /**
1115  * @brief Returns a virtual address mapped to a given IO range.
1116  * @return Result code.
1117  * @note Syscall number 0x55.
1118  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1119  * @warning Only exists on [10.0.0+]. For older versions use \ref svcLegacyQueryIoMapping.
1120  */
1121 Result svcQueryMemoryMapping(u64* virtaddr, u64* out_size, u64 physaddr, u64 size);
1122 
1123 /**
1124  * @brief Returns a virtual address mapped to a given IO range.
1125  * @return Result code.
1126  * @note Syscall number 0x55.
1127  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1128  * @warning Only exists on [1.0.0-9.2.0]. For newer versions use \ref svcQueryMemoryMapping.
1129  */
1130 Result svcLegacyQueryIoMapping(u64* virtaddr, u64 physaddr, u64 size);
1131 
1132 ///@}
1133 
1134 ///@name I/O memory management unit (IOMMU)
1135 ///@{
1136 
1137 /**
1138  * @brief Creates a virtual address space for binding device address spaces.
1139  * @return Result code.
1140  * @note Syscall number 0x56.
1141  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1142  */
1143 Result svcCreateDeviceAddressSpace(Handle *handle, u64 dev_addr, u64 dev_size);
1144 
1145 /**
1146  * @brief Attaches a device address space to a device.
1147  * @return Result code.
1148  * @note Syscall number 0x57.
1149  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1150  */
1152 
1153 /**
1154  * @brief Detaches a device address space from a device.
1155  * @return Result code.
1156  * @note Syscall number 0x58.
1157  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1158  */
1160 
1161 /**
1162  * @brief Maps an attached device address space to an userspace address.
1163  * @return Result code.
1164  * @remark The userspace destination address must have the \ref MemState_MapDeviceAllowed bit set.
1165  * @note Syscall number 0x59.
1166  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1167  */
1168 Result svcMapDeviceAddressSpaceByForce(Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 option);
1169 
1170 /**
1171  * @brief Maps an attached device address space to an userspace address.
1172  * @return Result code.
1173  * @remark The userspace destination address must have the \ref MemState_MapDeviceAlignedAllowed bit set.
1174  * @note Syscall number 0x5A.
1175  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1176  */
1177 Result svcMapDeviceAddressSpaceAligned(Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 option);
1178 
1179 /**
1180  * @brief Maps an attached device address space to an userspace address. [1.0.0-12.1.0]
1181  * @return Result code.
1182  * @remark The userspace destination address must have the \ref MemState_MapDeviceAlignedAllowed bit set.
1183  * @note Syscall number 0x5B.
1184  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1185  */
1186 Result svcMapDeviceAddressSpace(u64 *out_mapped_size, Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 perm);
1187 
1188 /**
1189  * @brief Unmaps an attached device address space from an userspace address.
1190  * @return Result code.
1191  * @note Syscall number 0x5C.
1192  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1193  */
1194 Result svcUnmapDeviceAddressSpace(Handle handle, Handle proc_handle, u64 map_addr, u64 map_size, u64 dev_addr);
1195 
1196 ///@}
1197 
1198 ///@name Cache Management
1199 ///@{
1200 
1201 /**
1202  * @brief Invalidates data cache for a virtual address range within a process.
1203  * @param[in] address Address of region to invalidate.
1204  * @param[in] size Size of region to invalidate.
1205  * @note Syscall number 0x5D.
1206  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1207  */
1208 Result svcInvalidateProcessDataCache(Handle process, uintptr_t address, size_t size);
1209 
1210 /**
1211  * @brief Stores data cache for a virtual address range within a process.
1212  * @param[in] address Address of region to store.
1213  * @param[in] size Size of region to store.
1214  * @note Syscall number 0x5E.
1215  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1216  */
1217 Result svcStoreProcessDataCache(Handle process, uintptr_t address, size_t size);
1218 
1219 /**
1220  * @brief Flushes data cache for a virtual address range within a process.
1221  * @param[in] address Address of region to flush.
1222  * @param[in] size Size of region to flush.
1223  * @note Syscall number 0x5F.
1224  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1225  */
1226 Result svcFlushProcessDataCache(Handle process, uintptr_t address, size_t size);
1227 
1228 ///@}
1229 
1230 ///@name Debugging
1231 ///@{
1232 
1233 /**
1234  * @brief Debugs an active process.
1235  * @return Result code.
1236  * @note Syscall number 0x60.
1237  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1238  */
1240 
1241 /**
1242  * @brief Breaks an active debugging session.
1243  * @return Result code.
1244  * @note Syscall number 0x61.
1245  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1246  */
1248 
1249 /**
1250  * @brief Terminates the process of an active debugging session.
1251  * @return Result code.
1252  * @note Syscall number 0x62.
1253  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1254  */
1256 
1257 /**
1258  * @brief Gets an incoming debug event from a debugging session.
1259  * @return Result code.
1260  * @note Syscall number 0x63.
1261  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1262  */
1263 Result svcGetDebugEvent(void* event_out, Handle debug);
1264 
1265 /**
1266  * @brief Continues a debugging session.
1267  * @return Result code.
1268  * @note Syscall number 0x64.
1269  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1270  * @warning Only exists on [3.0.0+]. For older versions use \ref svcLegacyContinueDebugEvent.
1271  */
1272 Result svcContinueDebugEvent(Handle debug, u32 flags, u64* tid_list, u32 num_tids);
1273 
1274 /**
1275  * @brief Continues a debugging session.
1276  * @return Result code.
1277  * @note Syscall number 0x64.
1278  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1279  * @warning Only exists on [1.0.0-2.3.0]. For newer versions use \ref svcContinueDebugEvent.
1280  */
1282 
1283 /**
1284  * @brief Gets the context (dump the registers) of a thread in a debugging session.
1285  * @return Result code.
1286  * @param[out] ctx Output thread context (register dump).
1287  * @param[in] debug Debug handle.
1288  * @param[in] threadID ID of the thread to dump the context of.
1289  * @param[in] flags Register groups to select, combination of @ref RegisterGroup flags.
1290  * @note Syscall number 0x67.
1291  * @warning Official kernel will not dump any CPU GPR if the thread is currently executing a system call (except @ref svcBreak and @ref svcReturnFromException).
1292  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1293  */
1295 
1296 /**
1297  * @brief Gets the context (dump the registers) of a thread in a debugging session.
1298  * @return Result code.
1299  * @param[in] debug Debug handle.
1300  * @param[in] threadID ID of the thread to set the context of.
1301  * @param[in] ctx Input thread context (register dump).
1302  * @param[in] flags Register groups to select, combination of @ref RegisterGroup flags.
1303  * @note Syscall number 0x68.
1304  * @warning Official kernel will return an error if the thread is currently executing a system call (except @ref svcBreak and @ref svcReturnFromException).
1305  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1306  */
1307 Result svcSetDebugThreadContext(Handle debug, u64 threadID, const ThreadContext* ctx, u32 flags);
1308 
1309 ///@}
1310 
1311 ///@name Process and thread management
1312 ///@{
1313 
1314 /**
1315  * @brief Retrieves a list of all running processes.
1316  * @return Result code.
1317  * @note Syscall number 0x65.
1318  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1319  */
1320 Result svcGetProcessList(s32 *num_out, u64 *pids_out, u32 max_pids);
1321 
1322 /**
1323  * @brief Retrieves a list of all threads for a debug handle (or zero).
1324  * @return Result code.
1325  * @note Syscall number 0x66.
1326  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1327  */
1328 Result svcGetThreadList(s32 *num_out, u64 *tids_out, u32 max_tids, Handle debug);
1329 
1330 ///@}
1331 
1332 ///@name Debugging
1333 ///@{
1334 
1335 /**
1336  * @brief Queries memory information from a process that is being debugged.
1337  * @return Result code.
1338  * @note Syscall number 0x69.
1339  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1340  */
1341 Result svcQueryDebugProcessMemory(MemoryInfo* meminfo_ptr, u32* pageinfo, Handle debug, u64 addr);
1342 
1343 /**
1344  * @brief Reads memory from a process that is being debugged.
1345  * @return Result code.
1346  * @note Syscall number 0x6A.
1347  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1348  */
1349 Result svcReadDebugProcessMemory(void* buffer, Handle debug, u64 addr, u64 size);
1350 
1351 /**
1352  * @brief Writes to memory in a process that is being debugged.
1353  * @return Result code.
1354  * @note Syscall number 0x6B.
1355  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1356  */
1357 Result svcWriteDebugProcessMemory(Handle debug, const void* buffer, u64 addr, u64 size);
1358 
1359 /**
1360  * @brief Sets one of the hardware breakpoints.
1361  * @return Result code.
1362  * @note Syscall number 0x6C.
1363  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1364  */
1366 
1367 /**
1368  * @brief Gets parameters from a thread in a debugging session.
1369  * @return Result code.
1370  * @note Syscall number 0x6D.
1371  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1372  */
1373 Result svcGetDebugThreadParam(u64* out_64, u32* out_32, Handle debug, u64 threadID, DebugThreadParam param);
1374 
1375 ///@}
1376 
1377 ///@name Miscellaneous
1378 ///@{
1379 
1380 /**
1381  * @brief Retrieves privileged information about the system, or a certain kernel object.
1382  * @param[out] out Variable to which store the information.
1383  * @param[in] id0 First ID of the property to retrieve.
1384  * @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system.
1385  * @param[in] id1 Second ID of the property to retrieve.
1386  * @return Result code.
1387  * @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetSystemInfo">switchbrew.org wiki</a>.
1388  * @note Syscall number 0x6F.
1389  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1390  */
1391 Result svcGetSystemInfo(u64* out, u64 id0, Handle handle, u64 id1);
1392 
1393 ///@}
1394 
1395 ///@name Inter-process communication (IPC)
1396 ///@{
1397 
1398 /**
1399  * @brief Creates a port.
1400  * @return Result code.
1401  * @note Syscall number 0x70.
1402  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1403  */
1404 Result svcCreatePort(Handle* portServer, Handle *portClient, s32 max_sessions, bool is_light, const char* name);
1405 
1406 /**
1407  * @brief Manages a named port.
1408  * @return Result code.
1409  * @note Syscall number 0x71.
1410  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1411  */
1412 Result svcManageNamedPort(Handle* portServer, const char* name, s32 maxSessions);
1413 
1414 /**
1415  * @brief Manages a named port.
1416  * @return Result code.
1417  * @note Syscall number 0x72.
1418  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1419  */
1421 
1422 ///@}
1423 
1424 ///@name Memory management
1425 ///@{
1426 
1427 /**
1428  * @brief Sets the memory permissions for the specified memory with the supplied process handle.
1429  * @param[in] proc Process handle.
1430  * @param[in] addr Address of the memory.
1431  * @param[in] size Size of the memory.
1432  * @param[in] perm Permissions (see \ref Permission).
1433  * @return Result code.
1434  * @remark This returns an error (0xD801) when \p perm is >0x5, hence -WX and RWX are not allowed.
1435  * @note Syscall number 0x73.
1436  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1437  */
1439 
1440 /**
1441  * @brief Maps the src address from the supplied process handle into the current process.
1442  * @param[in] dst Address to which map the memory in the current process.
1443  * @param[in] proc Process handle.
1444  * @param[in] src Source mapping address.
1445  * @param[in] size Size of the memory.
1446  * @return Result code.
1447  * @remark This allows mapping code and rodata with RW- permission.
1448  * @note Syscall number 0x74.
1449  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1450  */
1451 Result svcMapProcessMemory(void* dst, Handle proc, u64 src, u64 size);
1452 
1453 /**
1454  * @brief Undoes the effects of \ref svcMapProcessMemory.
1455  * @param[in] dst Destination mapping address
1456  * @param[in] proc Process handle.
1457  * @param[in] src Address of the memory in the process.
1458  * @param[in] size Size of the memory.
1459  * @return Result code.
1460  * @remark This allows mapping code and rodata with RW- permission.
1461  * @note Syscall number 0x75.
1462  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1463  */
1464 Result svcUnmapProcessMemory(void* dst, Handle proc, u64 src, u64 size);
1465 
1466 /**
1467  * @brief Equivalent to \ref svcQueryMemory, for another process.
1468  * @param[out] meminfo_ptr \ref MemoryInfo structure which will be filled in.
1469  * @param[out] pageinfo Page information which will be filled in.
1470  * @param[in] proc Process handle.
1471  * @param[in] addr Address to query.
1472  * @return Result code.
1473  * @note Syscall number 0x76.
1474  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1475  */
1476 Result svcQueryProcessMemory(MemoryInfo* meminfo_ptr, u32 *pageinfo, Handle proc, u64 addr);
1477 
1478 /**
1479  * @brief Maps normal heap in a certain process as executable code (used when loading NROs).
1480  * @param[in] proc Process handle (cannot be \ref CUR_PROCESS_HANDLE).
1481  * @param[in] dst Destination mapping address.
1482  * @param[in] src Source mapping address.
1483  * @param[in] size Size of the mapping.
1484  * @return Result code.
1485  * @note Syscall number 0x77.
1486  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1487  */
1489 
1490 /**
1491  * @brief Undoes the effects of \ref svcMapProcessCodeMemory.
1492  * @param[in] proc Process handle (cannot be \ref CUR_PROCESS_HANDLE).
1493  * @param[in] dst Destination mapping address.
1494  * @param[in] src Source mapping address.
1495  * @param[in] size Size of the mapping.
1496  * @return Result code.
1497  * @note Syscall number 0x78.
1498  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1499  */
1501 
1502 ///@}
1503 
1504 ///@name Process and thread management
1505 ///@{
1506 
1507 /**
1508  * @brief Creates a new process.
1509  * @return Result code.
1510  * @note Syscall number 0x79.
1511  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1512  */
1513 Result svcCreateProcess(Handle* out, const void* proc_info, const u32* caps, u64 cap_num);
1514 
1515 /**
1516  * @brief Starts executing a freshly created process.
1517  * @return Result code.
1518  * @note Syscall number 0x7A.
1519  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1520  */
1521 Result svcStartProcess(Handle proc, s32 main_prio, s32 default_cpu, u32 stack_size);
1522 
1523 /**
1524  * @brief Terminates a running process.
1525  * @return Result code.
1526  * @note Syscall number 0x7B.
1527  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1528  */
1530 
1531 /**
1532  * @brief Gets a \ref ProcessInfoType for a process.
1533  * @return Result code.
1534  * @note Syscall number 0x7C.
1535  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1536  */
1538 
1539 ///@}
1540 
1541 ///@name Resource Limit Management
1542 ///@{
1543 
1544 /**
1545  * @brief Creates a new Resource Limit handle.
1546  * @return Result code.
1547  * @note Syscall number 0x7D.
1548  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1549  */
1551 
1552 /**
1553  * @brief Sets the value for a \ref LimitableResource for a Resource Limit handle.
1554  * @return Result code.
1555  * @note Syscall number 0x7E.
1556  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1557  */
1559 
1560 ///@}
1561 
1562 ///@name ( ͡° ͜ʖ ͡°)
1563 ///@{
1564 
1565 /**
1566  * @brief Calls a secure monitor function (TrustZone, EL3).
1567  * @param regs Arguments to pass to the secure monitor.
1568  * @note Syscall number 0x7F.
1569  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1570  */
1572 
1573 ///@}
1574 
1575 ///@name Memory management
1576 ///@{
1577 
1578 /**
1579  * @brief Maps new insecure memory at the desired address. [15.0.0+]
1580  * @return Result code.
1581  * @note Syscall number 0x90.
1582  */
1584 
1585 /**
1586  * @brief Undoes the effects of \ref svcMapInsecureMemory. [15.0.0+]
1587  * @return Result code.
1588  * @note Syscall number 0x91.
1589  */
1591 
1592 ///@}
Context of a scheduled thread.
Definition: svc.h:269
u64 fp
Frame Pointer for the thread.
Definition: svc.h:270
u64 lr
Link Register for the thread.
Definition: svc.h:272
u64 sp
Stack Pointer for the thread.
Definition: svc.h:271
u64 pc
Program Counter for the thread.
Definition: svc.h:273
Memory information structure.
Definition: svc.h:91
u32 attr
Memory attributes (see MemoryAttribute).
Definition: svc.h:95
u32 type
Memory type (see lower 8 bits of MemoryState).
Definition: svc.h:94
u32 ipc_refcount
IPC reference count.
Definition: svc.h:97
u32 perm
Memory permissions (see Permission).
Definition: svc.h:96
u64 addr
Base address.
Definition: svc.h:92
u64 size
Size.
Definition: svc.h:93
u32 padding
Padding.
Definition: svc.h:99
u32 device_refcount
Device reference count.
Definition: svc.h:98
Physical memory information structure.
Definition: svc.h:103
u64 virtual_address
Virtual address.
Definition: svc.h:105
u64 physical_address
Physical address.
Definition: svc.h:104
u64 size
Size.
Definition: svc.h:106
Secure monitor arguments.
Definition: svc.h:110
Thread context structure (register dump)
Definition: thread_context.h:49
void svcChangeKernelTraceState(u32 kern_trace_state)
Performs a debugging operation on the kernel.
ArbitrationType
WaitForAddress behaviors.
Definition: svc.h:262
@ ArbitrationType_WaitIfEqual
Wait if the value is equal to argument.
Definition: svc.h:265
@ ArbitrationType_DecrementAndWaitIfLessThan
Decrement the value and wait if it is less than argument.
Definition: svc.h:264
@ ArbitrationType_WaitIfLessThan
Wait if the value is less than argument.
Definition: svc.h:263
Result svcSetMemoryPermission(void *addr, u64 size, u32 perm)
Set the memory permissions of a (page-aligned) range of memory.
void svcSleepThread(s64 nano)
Sleeps the current thread for the specified amount of time.
Result svcSetProcessActivity(Handle process, ProcessActivity paused)
Configures the pause/unpause status of a process.
Result svcCloseHandle(Handle handle)
Closes a handle, decrementing the reference count of the corresponding kernel object.
Result svcSetHeapSize(void **out_addr, u64 size)
Set the process heap to a given size.
Result svcGetThreadCoreMask(s32 *preferred_core, u64 *affinity_mask, Handle handle)
Gets a thread's core mask.
Result svcMapInsecurePhysicalMemory(void *address, u64 size)
Maps new insecure memory at the desired address.
Result svcSetUnsafeLimit(u64 size)
Sets the system-wide limit for unsafe memory mappable using svcMapPhysicalMemoryUnsafe.
void svcExitProcess(void)
Exits the current process.
Permission
Memory permission bitmasks.
Definition: svc.h:80
@ Perm_W
Write permission.
Definition: svc.h:83
@ Perm_Rx
Read/execute permissions.
Definition: svc.h:86
@ Perm_None
No permissions.
Definition: svc.h:81
@ Perm_X
Execute permission.
Definition: svc.h:84
@ Perm_Rw
Read/write permissions.
Definition: svc.h:85
@ Perm_R
Read permission.
Definition: svc.h:82
@ Perm_DontCare
Don't care.
Definition: svc.h:87
Result svcUnmapInsecurePhysicalMemory(void *address, u64 size)
Undoes the effects of svcMapInsecureMemory.
Result svcSetThreadPriority(Handle handle, u32 priority)
Sets a thread's priority.
Result svcStoreProcessDataCache(Handle process, uintptr_t address, size_t size)
Stores data cache for a virtual address range within a process.
Result svcWaitSynchronization(s32 *index, const Handle *handles, s32 handleCount, u64 timeout)
Waits on one or more synchronization objects, optionally with a timeout.
LimitableResource
Limitable Resources.
Definition: svc.h:137
@ LimitableResource_Memory
How much memory can a process map.
Definition: svc.h:138
@ LimitableResource_Sessions
How many sessions can a process own.
Definition: svc.h:142
@ LimitableResource_Events
How many events can a process have.
Definition: svc.h:140
@ LimitableResource_Threads
How many threads can a process spawn.
Definition: svc.h:139
@ LimitableResource_TransferMemories
How many transfer memories can a process make.
Definition: svc.h:141
Result svcSetDebugThreadContext(Handle debug, u64 threadID, const ThreadContext *ctx, u32 flags)
Gets the context (dump the registers) of a thread in a debugging session.
void svcReturnFromException(Result res)
Returns from an exception.
void svcDumpInfo(u32 dump_info_type, u64 arg0)
Causes the kernel to dump debug information.
Result svcReadWriteRegister(u32 *outVal, u64 regAddr, u32 rwMask, u32 inVal)
Reads/writes a protected MMIO register.
void svcSignalProcessWideKey(u32 *key, s32 num)
Performs a condition variable wake-up operation in userspace.
Result svcUnmapSharedMemory(Handle handle, void *addr, size_t size)
Unmaps a block of shared memory.
Result svcSetThreadCoreMask(Handle handle, s32 preferred_core, u32 affinity_mask)
Sets a thread's core mask.
Result svcMapDeviceAddressSpaceByForce(Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 option)
Maps an attached device address space to an userspace address.
Result svcCancelSynchronization(Handle thread)
Waits a svcWaitSynchronization operation being done on a synchronization object in another thread.
Result svcCreateCodeMemory(Handle *code_handle, void *src_addr, u64 size)
Creates code memory in the caller's address space [4.0.0+].
PhysicalMemorySystemInfo
GetSystemInfo PhysicalMemory Sub IDs.
Definition: svc.h:240
@ PhysicalMemorySystemInfo_SystemUnsafe
Memory allocated for unsafe system usage (accessible to devices).
Definition: svc.h:244
@ PhysicalMemorySystemInfo_Applet
Memory allocated for applet usage.
Definition: svc.h:242
@ PhysicalMemorySystemInfo_System
Memory allocated for system usage.
Definition: svc.h:243
@ PhysicalMemorySystemInfo_Application
Memory allocated for application usage.
Definition: svc.h:241
ProcessState
Process States.
Definition: svc.h:157
@ ProcessState_RunningAttached
Process that is running normally, attached to a debugger.
Definition: svc.h:162
@ ProcessState_DebugSuspended
Process execution suspended by debugger.
Definition: svc.h:165
@ ProcessState_Crashed
Process that has just crashed.
Definition: svc.h:161
@ ProcessState_Created
Newly-created process, not yet started.
Definition: svc.h:158
@ ProcessState_Exited
Process has finished exiting.
Definition: svc.h:164
@ ProcessState_Running
Process that is running normally (and detached from any debugger).
Definition: svc.h:160
@ ProcessState_CreatedAttached
Newly-created process, not yet started but attached to debugger.
Definition: svc.h:159
@ ProcessState_Exiting
Process has begun exiting.
Definition: svc.h:163
YieldType
SleepThread yield types.
Definition: svc.h:248
@ YieldType_WithCoreMigration
Yields to another thread (possibly on a different core).
Definition: svc.h:250
@ YieldType_ToAnyThread
Yields and performs forced load-balancing.
Definition: svc.h:251
@ YieldType_WithoutCoreMigration
Yields to another thread on the same core.
Definition: svc.h:249
MemoryMapping
Memory mapping type.
Definition: svc.h:277
@ MemoryMapping_Memory
Mapping normal memory.
Definition: svc.h:280
@ MemoryMapping_Uncached
Mapping normal memory without cache.
Definition: svc.h:279
@ MemoryMapping_IoRegister
Mapping IO registers.
Definition: svc.h:278
u64 svcGetSystemTick(void)
Gets the current system tick.
Result svcArbitrateUnlock(u32 *tag_location)
Arbitrates a mutex unlock operation in userspace.
Result svcWriteDebugProcessMemory(Handle debug, const void *buffer, u64 addr, u64 size)
Writes to memory in a process that is being debugged.
Result svcGetProcessId(u64 *processID, Handle handle)
Gets the PID associated with a process.
Result svcSendSyncRequest(Handle session)
Sends an IPC synchronization request to a session.
Result svcWaitForAddress(void *address, u32 arb_type, s32 value, s64 timeout)
Arbitrates an address depending on type and value.
Result svcReadDebugProcessMemory(void *buffer, Handle debug, u64 addr, u64 size)
Reads memory from a process that is being debugged.
BreakReason
Break reasons.
Definition: svc.h:115
MemoryType
Memory type enumeration (lower 8 bits of MemoryState)
Definition: svc.h:20
@ MemType_Normal
Mapped by kernel capability parsing in svcCreateProcess.
Definition: svc.h:23
@ MemType_Heap
Mapped using svcSetHeapSize.
Definition: svc.h:26
@ MemType_CodeReadOnly
Mapped in kernel during svcControlCodeMemory.
Definition: svc.h:41
@ MemType_Unmapped
Unmapped memory.
Definition: svc.h:21
@ MemType_IpcBuffer0
IPC buffers with descriptor flags=0.
Definition: svc.h:31
@ MemType_CodeWritable
Mapped in kernel during svcControlCodeMemory.
Definition: svc.h:42
@ MemType_WeirdMappedMem
Mapped using svcMapMemory.
Definition: svc.h:28
@ MemType_Insecure
Mapped in kernel during svcMapInsecurePhysicalMemory.
Definition: svc.h:44
@ MemType_MappedMemory
Mapped using svcMapMemory.
Definition: svc.h:32
@ MemType_IpcBuffer1
IPC buffers with descriptor flags=1.
Definition: svc.h:38
@ MemType_ModuleCodeMutable
Transition from MemType_ModuleCodeStatic performed by svcSetProcessMemoryPermission.
Definition: svc.h:30
@ MemType_CodeStatic
Mapped during svcCreateProcess.
Definition: svc.h:24
@ MemType_Coverage
Not available.
Definition: svc.h:43
@ MemType_Reserved
Reserved.
Definition: svc.h:37
@ MemType_TransferMem
Mapped using svcMapTransferMemory when the owning process has perm!=0.
Definition: svc.h:35
@ MemType_ModuleCodeStatic
Mapped using svcMapProcessCodeMemory.
Definition: svc.h:29
@ MemType_ThreadLocal
Mapped during svcCreateThread.
Definition: svc.h:33
@ MemType_IpcBuffer3
IPC buffers with descriptor flags=3.
Definition: svc.h:39
@ MemType_ProcessMem
Mapped using svcMapProcessMemory.
Definition: svc.h:36
@ MemType_TransferMemIsolated
Mapped using svcMapTransferMemory when the owning process has perm=0.
Definition: svc.h:34
@ MemType_CodeMutable
Transition from MemType_CodeStatic performed by svcSetProcessMemoryPermission.
Definition: svc.h:25
@ MemType_KernelStack
Mapped in kernel during svcCreateThread.
Definition: svc.h:40
@ MemType_SharedMem
Mapped using svcMapSharedMemory.
Definition: svc.h:27
@ MemType_Io
Mapped by kernel capability parsing in svcCreateProcess.
Definition: svc.h:22
Result svcGetResourceLimitCurrentValue(s64 *out, Handle reslimit_h, LimitableResource which)
Gets the maximum value a LimitableResource can have, for a Resource Limit handle.
Result svcLegacyQueryIoMapping(u64 *virtaddr, u64 physaddr, u64 size)
Returns a virtual address mapped to a given IO range.
Result svcAcceptSession(Handle *session_handle, Handle port_handle)
Accepts an IPC session.
Result svcSendSyncRequestWithUserBuffer(void *usrBuffer, u64 size, Handle session)
Sends an IPC synchronization request to a session from an user allocated buffer.
Result svcUnmapProcessMemory(void *dst, Handle proc, u64 src, u64 size)
Undoes the effects of svcMapProcessMemory.
InfoType
GetInfo IDs.
Definition: svc.h:184
@ InfoType_HeapRegionSize
Size of the Heap memory region.
Definition: svc.h:190
@ InfoType_SystemResourceSizeUsed
[3.0.0+] Amount of memory currently used by process memory management.
Definition: svc.h:202
@ InfoType_StackRegionAddress
[2.0.0+] Base of the Stack memory region.
Definition: svc.h:199
@ InfoType_SystemResourceSizeTotal
[3.0.0+] Total memory allocated for process memory management.
Definition: svc.h:201
@ InfoType_PriorityMask
Bitmask of allowed Thread Priorities.
Definition: svc.h:186
@ InfoType_IsSvcPermitted
[14.0.0+] Does process have access to SVC (only usable with svcSynchronizePreemptionState at present)...
Definition: svc.h:211
@ InfoType_TotalMemorySize
Total amount of memory available for process.
Definition: svc.h:191
@ InfoType_AslrRegionSize
[2.0.0+] Size of the process's address space.
Definition: svc.h:198
@ InfoType_ThreadTickCountDeprecated
[1.0.0-12.1.0] Number of ticks spent on thread.
Definition: svc.h:213
@ InfoType_AslrRegionAddress
[2.0.0+] Base of the process's address space.
Definition: svc.h:197
@ InfoType_ResourceLimit
Current process's resource limit handle.
Definition: svc.h:194
@ InfoType_UsedNonSystemMemorySize
[6.0.0+] Amount of memory used by process, excluding that for process memory management.
Definition: svc.h:207
@ InfoType_DebuggerAttached
Whether current process is being debugged.
Definition: svc.h:193
@ InfoType_RandomEntropy
[2.0.0+] Random entropy for current process.
Definition: svc.h:196
@ InfoType_IdleTickCount
Number of idle ticks on CPU.
Definition: svc.h:195
@ InfoType_IsApplication
[9.0.0+] Whether the specified process is an Application.
Definition: svc.h:208
@ InfoType_FreeThreadCount
[11.0.0+] The number of free threads available to the process's resource limit.
Definition: svc.h:209
@ InfoType_ThreadTickCount
[13.0.0+] Number of ticks spent on thread.
Definition: svc.h:210
@ InfoType_ProgramId
[3.0.0+] Program ID for the process.
Definition: svc.h:203
@ InfoType_AliasRegionSize
Size of the Alias memory region.
Definition: svc.h:188
@ InfoType_StackRegionSize
[2.0.0+] Size of the Stack memory region.
Definition: svc.h:200
@ InfoType_UsedMemorySize
Amount of memory currently used by process.
Definition: svc.h:192
@ InfoType_HeapRegionAddress
Base of the Heap memory region.
Definition: svc.h:189
@ InfoType_InitialProcessIdRange
[4.0.0-4.1.0] Min/max initial process IDs.
Definition: svc.h:204
@ InfoType_TotalNonSystemMemorySize
[6.0.0+] Total amount of memory available for process, excluding that for process memory management.
Definition: svc.h:206
@ InfoType_CoreMask
Bitmask of allowed Core IDs.
Definition: svc.h:185
@ InfoType_AliasRegionAddress
Base of the Alias memory region.
Definition: svc.h:187
@ InfoType_UserExceptionContextAddress
[5.0.0+] Address of the process's exception context (for break).
Definition: svc.h:205
void svcSynchronizePreemptionState(void)
Sets thread preemption state (used during abort/panic).
InitialProcessIdRangeInfo
GetInfo InitialProcessIdRange Sub IDs.
Definition: svc.h:234
@ InitialProcessIdRangeInfo_Maximum
Highest initial process ID.
Definition: svc.h:236
@ InitialProcessIdRangeInfo_Minimum
Lowest initial process ID.
Definition: svc.h:235
Result svcReplyAndReceiveWithUserBuffer(s32 *index, void *usrBuffer, u64 size, const Handle *handles, s32 handleCount, Handle replyTarget, u64 timeout)
Performs IPC input/output from an user allocated buffer.
Result svcGetProcessInfo(s64 *out, Handle proc, ProcessInfoType which)
Gets a ProcessInfoType for a process.
ProcessActivity
Process Activity.
Definition: svc.h:169
@ ProcessActivity_Runnable
Process can run.
Definition: svc.h:170
@ ProcessActivity_Paused
Process is paused.
Definition: svc.h:171
CodeMapOperation
Code memory mapping operations.
Definition: svc.h:129
@ CodeMapOperation_UnmapSlave
Unmap slave.
Definition: svc.h:133
@ CodeMapOperation_UnmapOwner
Unmap owner.
Definition: svc.h:132
@ CodeMapOperation_MapSlave
Map slave.
Definition: svc.h:131
@ CodeMapOperation_MapOwner
Map owner.
Definition: svc.h:130
Result svcCreateInterruptEvent(Handle *handle, u64 irqNum, u32 flag)
Creates an event and binds it to a specific hardware interrupt.
Result svcMapSharedMemory(Handle handle, void *addr, size_t size, u32 perm)
Maps a block of shared memory.
Result svcMapMemory(void *dst_addr, void *src_addr, u64 size)
Maps a memory range into a different range.
Result svcStartProcess(Handle proc, s32 main_prio, s32 default_cpu, u32 stack_size)
Starts executing a freshly created process.
Result svcCreateIoPool(Handle *out_handle, u32 pool_type)
Creates an IO Pool.
Result svcTerminateProcess(Handle proc)
Terminates a running process.
Result svcSetMemoryAttribute(void *addr, u64 size, u32 val0, u32 val1)
Set the memory attributes of a (page-aligned) range of memory.
Result svcSetResourceLimitLimitValue(Handle reslimit, LimitableResource which, u64 value)
Sets the value for a LimitableResource for a Resource Limit handle.
Result svcSignalToAddress(void *address, u32 signal_type, s32 value, s32 count)
Signals (and updates) an address depending on type and value.
void svcExitThread(void)
Exits the current thread.
DebugThreadParam
Debug Thread Parameters.
Definition: svc.h:175
Result svcGetThreadList(s32 *num_out, u64 *tids_out, u32 max_tids, Handle debug)
Retrieves a list of all threads for a debug handle (or zero).
u32 svcGetCurrentProcessorNumber(void)
Gets the current processor's number.
Result svcMapDeviceAddressSpaceAligned(Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 option)
Maps an attached device address space to an userspace address.
Result svcCreateSharedMemory(Handle *out, size_t size, u32 local_perm, u32 other_perm)
Creates a block of shared memory.
Result svcArbitrateLock(u32 wait_tag, u32 *tag_location, u32 self_tag)
Arbitrates a mutex lock operation in userspace.
Result svcFlushProcessDataCache(Handle process, uintptr_t address, size_t size)
Flushes data cache for a virtual address range within a process.
Result svcGetLastThreadInfo(LastThreadContext *out_context, u64 *out_tls_address, u32 *out_flags)
Gets information about the previously-scheduled thread.
Result svcDebugActiveProcess(Handle *debug, u64 processID)
Debugs an active process.
static Result svcWaitSynchronizationSingle(Handle handle, u64 timeout)
Waits on a single synchronization object, optionally with a timeout.
Definition: svc.h:520
Result svcGetDebugThreadContext(ThreadContext *ctx, Handle debug, u64 threadID, u32 flags)
Gets the context (dump the registers) of a thread in a debugging session.
Result svcMapPhysicalMemoryUnsafe(void *address, u64 size)
Maps unsafe memory (usable for GPU DMA) for a system module at the desired address.
Result svcAttachDeviceAddressSpace(u64 device, Handle handle)
Attaches a device address space to a device.
ThreadActivity
Thread Activity.
Definition: svc.h:146
@ ThreadActivity_Paused
Thread is paused.
Definition: svc.h:148
@ ThreadActivity_Runnable
Thread can run.
Definition: svc.h:147
Result svcGetThreadContext3(ThreadContext *ctx, Handle thread)
Dumps the registers of a thread paused by svcSetThreadActivity (register groups: all).
Result svcSetHardwareBreakPoint(u32 which, u64 flags, u64 value)
Sets one of the hardware breakpoints.
MemoryAttribute
Memory attribute bitmasks.
Definition: svc.h:71
@ MemAttr_IsUncached
Is uncached.
Definition: svc.h:75
@ MemAttr_IsPermissionLocked
Is permission locked.
Definition: svc.h:76
@ MemAttr_IsBorrowed
Is borrowed memory.
Definition: svc.h:72
@ MemAttr_IsDeviceMapped
Is device mapped (when DeviceRefCount > 0).
Definition: svc.h:74
@ MemAttr_IsIpcMapped
Is IPC mapped (when IpcRefCount > 0).
Definition: svc.h:73
Result svcGetSystemInfo(u64 *out, u64 id0, Handle handle, u64 id1)
Retrieves privileged information about the system, or a certain kernel object.
Result svcMapProcessMemory(void *dst, Handle proc, u64 src, u64 size)
Maps the src address from the supplied process handle into the current process.
void svcSleepSystem(void)
Causes the system to enter deep sleep.
Result svcStartThread(Handle handle)
Starts a freshly created thread.
Result svcUnmapIoRegion(Handle io_region_h, void *address, u64 size)
Undoes the effects of svcMapIoRegion.
Result svcGetDebugFutureThreadInfo(LastThreadContext *out_context, u64 *out_thread_id, Handle debug, s64 ns)
Gets information about a thread that will be scheduled in the future.
Result svcGetThreadId(u64 *threadID, Handle handle)
Gets the TID associated with a process.
Result svcWaitProcessWideKeyAtomic(u32 *key, u32 *tag_location, u32 self_tag, u64 timeout)
Performs a condition variable wait operation in userspace.
Result svcBreakDebugProcess(Handle debug)
Breaks an active debugging session.
Result svcUnmapMemory(void *dst_addr, void *src_addr, u64 size)
Unmaps a region that was previously mapped with svcMapMemory.
Result svcFlushDataCache(void *address, size_t size)
Flushes data cache for a virtual address range.
Result svcGetDebugEvent(void *event_out, Handle debug)
Gets an incoming debug event from a debugging session.
Result svcCreateEvent(Handle *server_handle, Handle *client_handle)
Creates a system event.
Result svcQueryMemory(MemoryInfo *meminfo_ptr, u32 *pageinfo, u64 addr)
Query information about an address.
Result svcUnmapDeviceAddressSpace(Handle handle, Handle proc_handle, u64 map_addr, u64 map_size, u64 dev_addr)
Unmaps an attached device address space from an userspace address.
Result svcInvalidateProcessDataCache(Handle process, uintptr_t address, size_t size)
Invalidates data cache for a virtual address range within a process.
Result svcMapDeviceAddressSpace(u64 *out_mapped_size, Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 perm)
Maps an attached device address space to an userspace address.
Result svcUnmapProcessCodeMemory(Handle proc, u64 dst, u64 src, u64 size)
Undoes the effects of svcMapProcessCodeMemory.
Result svcMapIoRegion(Handle io_region_h, void *address, u64 size, u32 perm)
Maps an IO Region.
Result svcControlCodeMemory(Handle code_handle, CodeMapOperation op, void *dst_addr, u64 size, u64 perm)
Maps code memory in the caller's address space [4.0.0+].
Result svcConnectToNamedPort(Handle *session, const char *name)
Connects to a registered named port.
Result svcUnmapPhysicalMemory(void *address, u64 size)
Undoes the effects of svcMapPhysicalMemory.
SignalType
SignalToAddress behaviors.
Definition: svc.h:255
@ SignalType_Signal
Signals the address.
Definition: svc.h:256
@ SignalType_SignalAndModifyBasedOnWaitingThreadCountIfEqual
Signals the address and updates its value if equal to argument.
Definition: svc.h:258
@ SignalType_SignalAndIncrementIfEqual
Signals the address and increments its value if equal to argument.
Definition: svc.h:257
void svcCallSecureMonitor(SecmonArgs *regs)
Calls a secure monitor function (TrustZone, EL3).
Result svcCreateIoRegion(Handle *out_handle, Handle io_pool_h, u64 physical_address, u64 size, u32 memory_mapping, u32 perm)
Creates an IO Region.
ProcessInfoType
Process Information.
Definition: svc.h:152
@ ProcessInfoType_ProcessState
What state is a process in.
Definition: svc.h:153
Result svcResetSignal(Handle handle)
Resets a signal.
Result svcUnmapTransferMemory(Handle tmem_handle, void *addr, size_t size)
Unmaps a block of transfer memory.
Result svcLegacyContinueDebugEvent(Handle debug, u32 flags, u64 threadID)
Continues a debugging session.
Result svcOutputDebugString(const char *str, u64 size)
Outputs debug text, if used during debugging.
Result svcQueryPhysicalAddress(PhysicalMemoryInfo *out, u64 virtaddr)
Queries information about a certain virtual address, including its physical address.
Result svcCreateSession(Handle *server_handle, Handle *client_handle, u32 unk0, u64 unk1)
Creates an IPC session.
Result svcCreateTransferMemory(Handle *out, void *addr, size_t size, u32 perm)
Creates a block of transfer memory.
IoPoolType
Io Pools.
Definition: svc.h:284
@ IoPoolType_PcieA2
Physical address range 0x12000000-0x1FFFFFFF.
Definition: svc.h:285
Result svcReplyAndReceive(s32 *index, const Handle *handles, s32 handleCount, Handle replyTarget, u64 timeout)
Performs IPC input/output.
SystemInfoType
GetSystemInfo IDs.
Definition: svc.h:217
@ SystemInfoType_TotalPhysicalMemorySize
Total amount of DRAM available to system.
Definition: svc.h:218
@ SystemInfoType_UsedPhysicalMemorySize
Current amount of DRAM used by system.
Definition: svc.h:219
@ SystemInfoType_InitialProcessIdRange
Min/max initial process IDs.
Definition: svc.h:220
Result svcMapTransferMemory(Handle tmem_handle, void *addr, size_t size, u32 perm)
Maps a block of transfer memory.
Result svcConnectToPort(Handle *session, Handle port)
Manages a named port.
Result svcClearEvent(Handle handle)
Clears an event's signalled status.
Result svcUnmapPhysicalMemoryUnsafe(void *address, u64 size)
Undoes the effects of svcMapPhysicalMemoryUnsafe.
MemoryState
Memory state bitmasks.
Definition: svc.h:48
@ MemState_MapAllowed
Map allowed.
Definition: svc.h:56
@ MemState_IpcSendAllowed_Type0
IPC type 0 send allowed.
Definition: svc.h:52
@ MemState_MapDeviceAlignedAllowed
Map device aligned allowed.
Definition: svc.h:61
@ MemState_IsRefCounted
Alias for MemState_IsPoolAllocated.
Definition: svc.h:64
@ MemState_AttrChangeAllowed
Attribute change allowed.
Definition: svc.h:66
@ MemState_CodeMemAllowed
Code memory allowed.
Definition: svc.h:67
@ MemState_IpcSendAllowed_Type1
IPC type 1 send allowed.
Definition: svc.h:54
@ MemState_IpcBufferAllowed
IPC buffer allowed.
Definition: svc.h:62
@ MemState_IpcSendAllowed_Type3
IPC type 3 send allowed.
Definition: svc.h:53
@ MemState_TransferMemAllowed
Transfer memory allowed.
Definition: svc.h:58
@ MemState_Type
Type field (see MemoryType).
Definition: svc.h:49
@ MemState_ProcessPermChangeAllowed
Process permission change allowed.
Definition: svc.h:55
@ MemState_UnmapProcessCodeMemAllowed
Unmap process code memory allowed.
Definition: svc.h:57
@ MemState_IsPoolAllocated
Is pool allocated.
Definition: svc.h:63
@ MemState_QueryPAddrAllowed
Query physical address allowed.
Definition: svc.h:59
@ MemState_PermChangeAllowed
Permission change allowed.
Definition: svc.h:50
@ MemState_ForceRwByDebugSyscalls
Force read/writable by debug syscalls.
Definition: svc.h:51
@ MemState_MapDeviceAllowed
Map device allowed (svcMapDeviceAddressSpace and svcMapDeviceAddressSpaceByForce).
Definition: svc.h:60
@ MemState_MapProcessAllowed
Map process allowed.
Definition: svc.h:65
Result svcReplyAndReceiveLight(Handle handle)
Performs light IPC input/output.
Result svcContinueDebugEvent(Handle debug, u32 flags, u64 *tid_list, u32 num_tids)
Continues a debugging session.
void svcFlushEntireDataCache(void)
Flushes the entire data cache (by set/way).
Result svcCreatePort(Handle *portServer, Handle *portClient, s32 max_sessions, bool is_light, const char *name)
Creates a port.
Result svcQueryMemoryMapping(u64 *virtaddr, u64 *out_size, u64 physaddr, u64 size)
Returns a virtual address mapped to a given IO range.
Result svcGetInfo(u64 *out, u32 id0, Handle handle, u64 id1)
Retrieves information about the system, or a certain kernel object.
Result svcSetThreadActivity(Handle thread, ThreadActivity paused)
Configures the pause/unpause status of a thread.
Result svcSendSyncRequestLight(Handle session)
Sends a light IPC synchronization request to a session.
TickCountInfo
GetInfo Idle/Thread Tick Count Sub IDs.
Definition: svc.h:224
@ TickCountInfo_Core3
Tick count on core 3.
Definition: svc.h:228
@ TickCountInfo_Core2
Tick count on core 2.
Definition: svc.h:227
@ TickCountInfo_Core0
Tick count on core 0.
Definition: svc.h:225
@ TickCountInfo_Core1
Tick count on core 1.
Definition: svc.h:226
@ TickCountInfo_Total
Tick count on all cores.
Definition: svc.h:230
Result svcGetResourceLimitLimitValue(s64 *out, Handle reslimit_h, LimitableResource which)
Gets the maximum value a LimitableResource can have, for a Resource Limit handle.
Result svcCreateResourceLimit(Handle *out)
Creates a new Resource Limit handle.
Result svcMapProcessCodeMemory(Handle proc, u64 dst, u64 src, u64 size)
Maps normal heap in a certain process as executable code (used when loading NROs).
Result svcGetDebugThreadParam(u64 *out_64, u32 *out_32, Handle debug, u64 threadID, DebugThreadParam param)
Gets parameters from a thread in a debugging session.
Result svcCreateProcess(Handle *out, const void *proc_info, const u32 *caps, u64 cap_num)
Creates a new process.
void svcKernelDebug(u32 kern_debug_type, u64 arg0, u64 arg1, u64 arg2)
Performs a debugging operation on the kernel.
Result svcSendAsyncRequestWithUserBuffer(Handle *handle, void *usrBuffer, u64 size, Handle session)
Sends an IPC synchronization request to a session from an user allocated buffer (asynchronous version...
Result svcTerminateDebugProcess(Handle debug)
Terminates the process of an active debugging session.
Result svcGetThreadPriority(s32 *priority, Handle handle)
Gets a thread's priority.
Result svcManageNamedPort(Handle *portServer, const char *name, s32 maxSessions)
Manages a named port.
Result svcSetProcessMemoryPermission(Handle proc, u64 addr, u64 size, u32 perm)
Sets the memory permissions for the specified memory with the supplied process handle.
Result svcCreateDeviceAddressSpace(Handle *handle, u64 dev_addr, u64 dev_size)
Creates a virtual address space for binding device address spaces.
Result svcMapPhysicalMemory(void *address, u64 size)
Maps new heap memory at the desired address.
Result svcBreak(u32 breakReason, uintptr_t address, uintptr_t size)
Breaks execution.
Result svcSignalEvent(Handle handle)
Sets an event's signalled status.
Result svcGetProcessList(s32 *num_out, u64 *pids_out, u32 max_pids)
Retrieves a list of all running processes.
Result svcGetResourceLimitPeakValue(s64 *out, Handle reslimit_h, LimitableResource which)
Gets the peak value a LimitableResource has had, for a Resource Limit handle.
Result svcQueryDebugProcessMemory(MemoryInfo *meminfo_ptr, u32 *pageinfo, Handle debug, u64 addr)
Queries memory information from a process that is being debugged.
Result svcQueryProcessMemory(MemoryInfo *meminfo_ptr, u32 *pageinfo, Handle proc, u64 addr)
Equivalent to svcQueryMemory, for another process.
Result svcCreateThread(Handle *out, void *entry, void *arg, void *stack_top, int prio, int cpuid)
Creates a thread.
Result svcDetachDeviceAddressSpace(u64 device, Handle handle)
Detaches a device address space from a device.
int64_t s64
64-bit signed integer.
Definition: types.h:28
#define BIT(n)
Creates a bitmask from a bit number.
Definition: types.h:54
uint64_t u64
64-bit unsigned integer.
Definition: types.h:22
#define NX_PACKED
Packs a struct so that it won't include padding bytes.
Definition: types.h:63
u32 Handle
Kernel object handle.
Definition: types.h:43
u32 Result
Function error code result type.
Definition: types.h:44
#define NX_NORETURN
Marks a function as not returning, for the purposes of compiler optimization.
Definition: types.h:68
int32_t s32
32-bit signed integer.
Definition: types.h:27
uint32_t u32
32-bit unsigned integer.
Definition: types.h:21