libnx  v4.7.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  InfoType_IoRegionHint = 27, ///< [16.0.0+] Low bits of the physical address for a KIoRegion.
213  InfoType_AliasRegionExtraSize = 28, ///< [18.0.0+] Extra size added to the reserved region.
214 
215  InfoType_ThreadTickCountDeprecated = 0xF0000002, ///< [1.0.0-12.1.0] Number of ticks spent on thread.
216 } InfoType;
217 
218 /// GetSystemInfo IDs.
219 typedef enum {
220  SystemInfoType_TotalPhysicalMemorySize = 0, ///< Total amount of DRAM available to system.
221  SystemInfoType_UsedPhysicalMemorySize = 1, ///< Current amount of DRAM used by system.
222  SystemInfoType_InitialProcessIdRange = 2, ///< Min/max initial process IDs.
224 
225 /// GetInfo Idle/Thread Tick Count Sub IDs.
226 typedef enum {
227  TickCountInfo_Core0 = 0, ///< Tick count on core 0.
228  TickCountInfo_Core1 = 1, ///< Tick count on core 1.
229  TickCountInfo_Core2 = 2, ///< Tick count on core 2.
230  TickCountInfo_Core3 = 3, ///< Tick count on core 3.
231 
232  TickCountInfo_Total = UINT64_MAX, ///< Tick count on all cores.
233 } TickCountInfo;
234 
235 /// GetInfo InitialProcessIdRange Sub IDs.
236 typedef enum {
237  InitialProcessIdRangeInfo_Minimum = 0, ///< Lowest initial process ID.
238  InitialProcessIdRangeInfo_Maximum = 1, ///< Highest initial process ID.
240 
241 /// GetSystemInfo PhysicalMemory Sub IDs.
242 typedef enum {
243  PhysicalMemorySystemInfo_Application = 0, ///< Memory allocated for application usage.
244  PhysicalMemorySystemInfo_Applet = 1, ///< Memory allocated for applet usage.
245  PhysicalMemorySystemInfo_System = 2, ///< Memory allocated for system usage.
246  PhysicalMemorySystemInfo_SystemUnsafe = 3, ///< Memory allocated for unsafe system usage (accessible to devices).
248 
249 /// SleepThread yield types.
250 typedef enum {
251  YieldType_WithoutCoreMigration = 0l, ///< Yields to another thread on the same core.
252  YieldType_WithCoreMigration = -1l, ///< Yields to another thread (possibly on a different core).
253  YieldType_ToAnyThread = -2l, ///< Yields and performs forced load-balancing.
254 } YieldType;
255 
256 /// SignalToAddress behaviors.
257 typedef enum {
258  SignalType_Signal = 0, ///< Signals the address.
259  SignalType_SignalAndIncrementIfEqual = 1, ///< Signals the address and increments its value if equal to argument.
260  SignalType_SignalAndModifyBasedOnWaitingThreadCountIfEqual = 2, ///< Signals the address and updates its value if equal to argument.
261 } SignalType;
262 
263 /// WaitForAddress behaviors.
264 typedef enum {
265  ArbitrationType_WaitIfLessThan = 0, ///< Wait if the value is less than argument.
266  ArbitrationType_DecrementAndWaitIfLessThan = 1, ///< Decrement the value and wait if it is less than argument.
267  ArbitrationType_WaitIfEqual = 2, ///< Wait if the value is equal to argument.
269 
270 /// Context of a scheduled thread.
271 typedef struct {
272  u64 fp; ///< Frame Pointer for the thread.
273  u64 sp; ///< Stack Pointer for the thread.
274  u64 lr; ///< Link Register for the thread.
275  u64 pc; ///< Program Counter for the thread.
277 
278 /// Memory mapping type.
279 typedef enum {
280  MemoryMapping_IoRegister = 0, ///< Mapping IO registers.
281  MemoryMapping_Uncached = 1, ///< Mapping normal memory without cache.
282  MemoryMapping_Memory = 2, ///< Mapping normal memory.
283 } MemoryMapping;
284 
285 /// Io Pools.
286 typedef enum {
287  IoPoolType_PcieA2 = 0, ///< Physical address range 0x12000000-0x1FFFFFFF
288 } IoPoolType;
289 
290 ///@name Memory management
291 ///@{
292 
293 /**
294  * @brief Set the process heap to a given size. It can both extend and shrink the heap.
295  * @param[out] out_addr Variable to which write the address of the heap (which is randomized and fixed by the kernel)
296  * @param[in] size Size of the heap, must be a multiple of 0x200000 and [2.0.0+] less than 0x18000000.
297  * @return Result code.
298  * @note Syscall number 0x01.
299  */
300 Result svcSetHeapSize(void** out_addr, u64 size);
301 
302 /**
303  * @brief Set the memory permissions of a (page-aligned) range of memory.
304  * @param[in] addr Start address of the range.
305  * @param[in] size Size of the range, in bytes.
306  * @param[in] perm Permissions (see \ref Permission).
307  * @return Result code.
308  * @remark Perm_X is not allowed. Setting write-only is not allowed either (Perm_W).
309  * This can be used to move back and forth between Perm_None, Perm_R and Perm_Rw.
310  * @note Syscall number 0x02.
311  */
312 Result svcSetMemoryPermission(void* addr, u64 size, u32 perm);
313 
314 /**
315  * @brief Set the memory attributes of a (page-aligned) range of memory.
316  * @param[in] addr Start address of the range.
317  * @param[in] size Size of the range, in bytes.
318  * @param[in] val0 State0
319  * @param[in] val1 State1
320  * @return Result code.
321  * @remark See <a href="https://switchbrew.org/wiki/SVC#svcSetMemoryAttribute">switchbrew.org Wiki</a> for more details.
322  * @note Syscall number 0x03.
323  */
324 Result svcSetMemoryAttribute(void* addr, u64 size, u32 val0, u32 val1);
325 
326 /**
327  * @brief Maps a memory range into a different range. Mainly used for adding guard pages around stack.
328  * Source range gets reprotected to Perm_None (it can no longer be accessed), and \ref MemAttr_IsBorrowed is set in the source \ref MemoryAttribute.
329  * @param[in] dst_addr Destination address.
330  * @param[in] src_addr Source address.
331  * @param[in] size Size of the range.
332  * @return Result code.
333  * @note Syscall number 0x04.
334  */
335 Result svcMapMemory(void* dst_addr, void* src_addr, u64 size);
336 
337 /**
338  * @brief Unmaps a region that was previously mapped with \ref svcMapMemory.
339  * @param[in] dst_addr Destination address.
340  * @param[in] src_addr Source address.
341  * @param[in] size Size of the range.
342  * @return Result code.
343  * @note Syscall number 0x05.
344  */
345 Result svcUnmapMemory(void* dst_addr, void* src_addr, u64 size);
346 
347 /**
348  * @brief Query information about an address. Will always fetch the lowest page-aligned mapping that contains the provided address.
349  * @param[out] meminfo_ptr \ref MemoryInfo structure which will be filled in.
350  * @param[out] pageinfo Page information which will be filled in.
351  * @param[in] addr Address to query.
352  * @return Result code.
353  * @note Syscall number 0x06.
354  */
355 Result svcQueryMemory(MemoryInfo* meminfo_ptr, u32 *pageinfo, u64 addr);
356 
357 ///@}
358 
359 ///@name Process and thread management
360 ///@{
361 
362 /**
363  * @brief Exits the current process.
364  * @note Syscall number 0x07.
365  */
366 
368 
369 /**
370  * @brief Creates a thread.
371  * @return Result code.
372  * @note Syscall number 0x08.
373  */
374 Result svcCreateThread(Handle* out, void* entry, void* arg, void* stack_top, int prio, int cpuid);
375 
376 /**
377  * @brief Starts a freshly created thread.
378  * @return Result code.
379  * @note Syscall number 0x09.
380  */
382 
383 /**
384  * @brief Exits the current thread.
385  * @note Syscall number 0x0A.
386  */
388 
389 /**
390  * @brief Sleeps the current thread for the specified amount of time.
391  * @param[in] nano Number of nanoseconds to sleep, or \ref YieldType for yield.
392  * @note Syscall number 0x0B.
393  */
394 void svcSleepThread(s64 nano);
395 
396 /**
397  * @brief Gets a thread's priority.
398  * @return Result code.
399  * @note Syscall number 0x0C.
400  */
402 
403 /**
404  * @brief Sets a thread's priority.
405  * @return Result code.
406  * @note Syscall number 0x0D.
407  */
409 
410 /**
411  * @brief Gets a thread's core mask.
412  * @return Result code.
413  * @note Syscall number 0x0E.
414  */
415 Result svcGetThreadCoreMask(s32* preferred_core, u64* affinity_mask, Handle handle);
416 
417 /**
418  * @brief Sets a thread's core mask.
419  * @return Result code.
420  * @note Syscall number 0x0F.
421  */
422 Result svcSetThreadCoreMask(Handle handle, s32 preferred_core, u32 affinity_mask);
423 
424 /**
425  * @brief Gets the current processor's number.
426  * @return The current processor's number.
427  * @note Syscall number 0x10.
428  */
430 
431 ///@}
432 
433 ///@name Synchronization
434 ///@{
435 
436 /**
437  * @brief Sets an event's signalled status.
438  * @return Result code.
439  * @note Syscall number 0x11.
440  */
442 
443 /**
444  * @brief Clears an event's signalled status.
445  * @return Result code.
446  * @note Syscall number 0x12.
447  */
449 
450 ///@}
451 
452 ///@name Inter-process memory sharing
453 ///@{
454 
455 /**
456  * @brief Maps a block of shared memory.
457  * @return Result code.
458  * @note Syscall number 0x13.
459  */
460 Result svcMapSharedMemory(Handle handle, void* addr, size_t size, u32 perm);
461 
462 /**
463  * @brief Unmaps a block of shared memory.
464  * @return Result code.
465  * @note Syscall number 0x14.
466  */
467 Result svcUnmapSharedMemory(Handle handle, void* addr, size_t size);
468 
469 /**
470  * @brief Creates a block of transfer memory.
471  * @return Result code.
472  * @note Syscall number 0x15.
473  */
474 Result svcCreateTransferMemory(Handle* out, void* addr, size_t size, u32 perm);
475 
476 ///@}
477 
478 ///@name Miscellaneous
479 ///@{
480 
481 /**
482  * @brief Closes a handle, decrementing the reference count of the corresponding kernel object.
483  * This might result in the kernel freeing the object.
484  * @param handle Handle to close.
485  * @return Result code.
486  * @note Syscall number 0x16.
487  */
489 
490 ///@}
491 
492 ///@name Synchronization
493 ///@{
494 
495 /**
496  * @brief Resets a signal.
497  * @return Result code.
498  * @note Syscall number 0x17.
499  */
501 
502 ///@}
503 
504 ///@name Synchronization
505 ///@{
506 
507 /**
508  * @brief Waits on one or more synchronization objects, optionally with a timeout.
509  * @return Result code.
510  * @note Syscall number 0x18.
511  * @note \p handleCount must not be greater than \ref MAX_WAIT_OBJECTS. This is a Horizon kernel limitation.
512  * @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.
513  */
514 Result svcWaitSynchronization(s32* index, const Handle* handles, s32 handleCount, u64 timeout);
515 
516 /**
517  * @brief Waits on a single synchronization object, optionally with a timeout.
518  * @return Result code.
519  * @note Wrapper for \ref svcWaitSynchronization.
520  * @note This is the raw syscall, which can be cancelled by \ref svcCancelSynchronization or other means. \ref waitSingleHandle should normally be used instead.
521  */
522 static inline Result svcWaitSynchronizationSingle(Handle handle, u64 timeout) {
523  s32 tmp;
524  return svcWaitSynchronization(&tmp, &handle, 1, timeout);
525 }
526 
527 /**
528  * @brief Waits a \ref svcWaitSynchronization operation being done on a synchronization object in another thread.
529  * @return Result code.
530  * @note Syscall number 0x19.
531  */
533 
534 /**
535  * @brief Arbitrates a mutex lock operation in userspace.
536  * @return Result code.
537  * @note Syscall number 0x1A.
538  */
539 Result svcArbitrateLock(u32 wait_tag, u32* tag_location, u32 self_tag);
540 
541 /**
542  * @brief Arbitrates a mutex unlock operation in userspace.
543  * @return Result code.
544  * @note Syscall number 0x1B.
545  */
547 
548 /**
549  * @brief Performs a condition variable wait operation in userspace.
550  * @return Result code.
551  * @note Syscall number 0x1C.
552  */
553 Result svcWaitProcessWideKeyAtomic(u32* key, u32* tag_location, u32 self_tag, u64 timeout);
554 
555 /**
556  * @brief Performs a condition variable wake-up operation in userspace.
557  * @note Syscall number 0x1D.
558  */
560 
561 ///@}
562 
563 ///@name Miscellaneous
564 ///@{
565 
566 /**
567  * @brief Gets the current system tick.
568  * @return The current system tick.
569  * @note Syscall number 0x1E.
570  */
572 
573 ///@}
574 
575 ///@name Inter-process communication (IPC)
576 ///@{
577 
578 /**
579  * @brief Connects to a registered named port.
580  * @return Result code.
581  * @note Syscall number 0x1F.
582  */
583 Result svcConnectToNamedPort(Handle* session, const char* name);
584 
585 /**
586  * @brief Sends a light IPC synchronization request to a session.
587  * @return Result code.
588  * @note Syscall number 0x20.
589  */
591 
592 /**
593  * @brief Sends an IPC synchronization request to a session.
594  * @return Result code.
595  * @note Syscall number 0x21.
596  */
598 
599 /**
600  * @brief Sends an IPC synchronization request to a session from an user allocated buffer.
601  * @return Result code.
602  * @remark size must be allocated to 0x1000 bytes.
603  * @note Syscall number 0x22.
604  */
605 Result svcSendSyncRequestWithUserBuffer(void* usrBuffer, u64 size, Handle session);
606 
607 /**
608  * @brief Sends an IPC synchronization request to a session from an user allocated buffer (asynchronous version).
609  * @return Result code.
610  * @remark size must be allocated to 0x1000 bytes.
611  * @note Syscall number 0x23.
612  */
613 Result svcSendAsyncRequestWithUserBuffer(Handle* handle, void* usrBuffer, u64 size, Handle session);
614 
615 ///@}
616 
617 ///@name Process and thread management
618 ///@{
619 
620 /**
621  * @brief Gets the PID associated with a process.
622  * @return Result code.
623  * @note Syscall number 0x24.
624  */
625 Result svcGetProcessId(u64 *processID, Handle handle);
626 
627 /**
628  * @brief Gets the TID associated with a process.
629  * @return Result code.
630  * @note Syscall number 0x25.
631  */
632 Result svcGetThreadId(u64 *threadID, Handle handle);
633 
634 ///@}
635 
636 ///@name Miscellaneous
637 ///@{
638 
639 /**
640  * @brief Breaks execution.
641  * @param[in] breakReason Break reason (see \ref BreakReason).
642  * @param[in] address Address of the buffer to pass to the debugger.
643  * @param[in] size Size of the buffer to pass to the debugger.
644  * @return Result code.
645  * @note Syscall number 0x26.
646  */
647 Result svcBreak(u32 breakReason, uintptr_t address, uintptr_t size);
648 
649 ///@}
650 
651 ///@name Debugging
652 ///@{
653 
654 /**
655  * @brief Outputs debug text, if used during debugging.
656  * @param[in] str Text to output.
657  * @param[in] size Size of the text in bytes.
658  * @return Result code.
659  * @note Syscall number 0x27.
660  */
661 Result svcOutputDebugString(const char *str, u64 size);
662 
663 ///@}
664 
665 ///@name Miscellaneous
666 ///@{
667 
668 /**
669  * @brief Returns from an exception.
670  * @param[in] res Result code.
671  * @note Syscall number 0x28.
672  */
674 
675 /**
676  * @brief Retrieves information about the system, or a certain kernel object.
677  * @param[out] out Variable to which store the information.
678  * @param[in] id0 First ID of the property to retrieve.
679  * @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system.
680  * @param[in] id1 Second ID of the property to retrieve.
681  * @return Result code.
682  * @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetInfo">switchbrew.org wiki</a>.
683  * @note Syscall number 0x29.
684  */
685 Result svcGetInfo(u64* out, u32 id0, Handle handle, u64 id1);
686 
687 ///@}
688 
689 ///@name Cache Management
690 ///@{
691 
692 /**
693  * @brief Flushes the entire data cache (by set/way).
694  * @note Syscall number 0x2A.
695  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
696  * @warning This syscall is dangerous, and should not be used.
697  */
699 
700 /**
701  * @brief Flushes data cache for a virtual address range.
702  * @param[in] address Address of region to flush.
703  * @param[in] size Size of region to flush.
704  * @remark armDCacheFlush should be used instead of this syscall whenever possible.
705  * @note Syscall number 0x2B.
706  */
707 Result svcFlushDataCache(void *address, size_t size);
708 
709 ///@}
710 
711 ///@name Memory management
712 ///@{
713 
714 /**
715  * @brief Maps new heap memory at the desired address. [3.0.0+]
716  * @return Result code.
717  * @note Syscall number 0x2C.
718  */
719 Result svcMapPhysicalMemory(void *address, u64 size);
720 
721 /**
722  * @brief Undoes the effects of \ref svcMapPhysicalMemory. [3.0.0+]
723  * @return Result code.
724  * @note Syscall number 0x2D.
725  */
726 Result svcUnmapPhysicalMemory(void *address, u64 size);
727 
728 ///@}
729 
730 ///@name Process and thread management
731 ///@{
732 
733 /**
734  * @brief Gets information about a thread that will be scheduled in the future. [5.0.0+]
735  * @param[out] out_context Output \ref LastThreadContext for the thread that will be scheduled.
736  * @param[out] out_thread_id Output thread id for the thread that will be scheduled.
737  * @param[in] debug Debug handle.
738  * @param[in] ns Nanoseconds in the future to get scheduled thread at.
739  * @return Result code.
740  * @note Syscall number 0x2E.
741  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
742  */
743 Result svcGetDebugFutureThreadInfo(LastThreadContext *out_context, u64 *out_thread_id, Handle debug, s64 ns);
744 
745 /**
746  * @brief Gets information about the previously-scheduled thread.
747  * @param[out] out_context Output \ref LastThreadContext for the previously scheduled thread.
748  * @param[out] out_tls_address Output tls address for the previously scheduled thread.
749  * @param[out] out_flags Output flags for the previously scheduled thread.
750  * @return Result code.
751  * @note Syscall number 0x2F.
752  */
753 Result svcGetLastThreadInfo(LastThreadContext *out_context, u64 *out_tls_address, u32 *out_flags);
754 
755 ///@}
756 
757 ///@name Resource Limit Management
758 ///@{
759 
760 /**
761  * @brief Gets the maximum value a LimitableResource can have, for a Resource Limit handle.
762  * @return Result code.
763  * @note Syscall number 0x30.
764  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
765  */
767 
768 /**
769  * @brief Gets the maximum value a LimitableResource can have, for a Resource Limit handle.
770  * @return Result code.
771  * @note Syscall number 0x31.
772  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
773  */
775 
776 ///@}
777 
778 ///@name Process and thread management
779 ///@{
780 
781 /**
782  * @brief Configures the pause/unpause status of a thread.
783  * @return Result code.
784  * @note Syscall number 0x32.
785  */
787 
788 /**
789  * @brief Dumps the registers of a thread paused by @ref svcSetThreadActivity (register groups: all).
790  * @param[out] ctx Output thread context (register dump).
791  * @param[in] thread Thread handle.
792  * @return Result code.
793  * @note Syscall number 0x33.
794  * @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.
795  */
797 
798 ///@}
799 
800 ///@name Synchronization
801 ///@{
802 
803 /**
804  * @brief Arbitrates an address depending on type and value. [4.0.0+]
805  * @param[in] address Address to arbitrate.
806  * @param[in] arb_type \ref ArbitrationType to use.
807  * @param[in] value Value to arbitrate on.
808  * @param[in] timeout Maximum time in nanoseconds to wait.
809  * @return Result code.
810  * @note Syscall number 0x34.
811  */
812 Result svcWaitForAddress(void *address, u32 arb_type, s32 value, s64 timeout);
813 
814 /**
815  * @brief Signals (and updates) an address depending on type and value. [4.0.0+]
816  * @param[in] address Address to arbitrate.
817  * @param[in] signal_type \ref SignalType to use.
818  * @param[in] value Value to arbitrate on.
819  * @param[in] count Number of waiting threads to signal.
820  * @return Result code.
821  * @note Syscall number 0x35.
822  */
823 Result svcSignalToAddress(void *address, u32 signal_type, s32 value, s32 count);
824 
825 ///@}
826 
827 ///@name Miscellaneous
828 ///@{
829 
830 /**
831  * @brief Sets thread preemption state (used during abort/panic). [8.0.0+]
832  * @note Syscall number 0x36.
833  */
835 
836 ///@}
837 
838 ///@name Resource Limit Management
839 ///@{
840 
841 /**
842  * @brief Gets the peak value a LimitableResource has had, for a Resource Limit handle. [11.0.0+]
843  * @return Result code.
844  * @note Syscall number 0x37.
845  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
846  */
848 
849 ///@}
850 
851 ///@name Memory Management
852 ///@{
853 
854 /**
855  * @brief Creates an IO Pool. [13.0.0+]
856  * @return Result code.
857  * @note Syscall number 0x39.
858  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
859  */
860 Result svcCreateIoPool(Handle *out_handle, u32 pool_type);
861 
862 /**
863  * @brief Creates an IO Region. [13.0.0+]
864  * @return Result code.
865  * @note Syscall number 0x3A.
866  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
867  */
868 Result svcCreateIoRegion(Handle *out_handle, Handle io_pool_h, u64 physical_address, u64 size, u32 memory_mapping, u32 perm);
869 
870 ///@}
871 
872 ///@name Debugging
873 ///@{
874 /**
875  * @brief Causes the kernel to dump debug information. [1.0.0-3.0.2]
876  * @param[in] dump_info_type Type of information to dump.
877  * @param[in] arg0 Argument to the debugging operation.
878  * @note Syscall number 0x3C.
879  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
880  */
881 void svcDumpInfo(u32 dump_info_type, u64 arg0);
882 
883 /**
884  * @brief Performs a debugging operation on the kernel. [4.0.0+]
885  * @param[in] kern_debug_type Type of debugging operation to perform.
886  * @param[in] arg0 First argument to the debugging operation.
887  * @param[in] arg1 Second argument to the debugging operation.
888  * @param[in] arg2 Third argument to the debugging operation.
889  * @note Syscall number 0x3C.
890  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
891  */
892 void svcKernelDebug(u32 kern_debug_type, u64 arg0, u64 arg1, u64 arg2);
893 
894 /**
895  * @brief Performs a debugging operation on the kernel. [4.0.0+]
896  * @param[in] kern_trace_state Type of tracing the kernel should perform.
897  * @note Syscall number 0x3D.
898  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
899  */
900 void svcChangeKernelTraceState(u32 kern_trace_state);
901 
902 ///@}
903  \
904 ///@name Inter-process communication (IPC)
905 ///@{
906 
907 /**
908  * @brief Creates an IPC session.
909  * @return Result code.
910  * @note Syscall number 0x40.
911  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
912  */
913 Result svcCreateSession(Handle *server_handle, Handle *client_handle, u32 unk0, u64 unk1);//unk* are normally 0?
914 
915 /**
916  * @brief Accepts an IPC session.
917  * @return Result code.
918  * @note Syscall number 0x41.
919  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
920  */
921 Result svcAcceptSession(Handle *session_handle, Handle port_handle);
922 
923 /**
924  * @brief Performs light IPC input/output.
925  * @return Result code.
926  * @param[in] handle Server or port handle to act on.
927  * @note Syscall number 0x42.
928  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
929  */
931 
932 /**
933  * @brief Performs IPC input/output.
934  * @return Result code.
935  * @note Syscall number 0x43.
936  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
937  */
938 Result svcReplyAndReceive(s32* index, const Handle* handles, s32 handleCount, Handle replyTarget, u64 timeout);
939 
940 /**
941  * @brief Performs IPC input/output from an user allocated buffer.
942  * @return Result code.
943  * @note Syscall number 0x44.
944  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
945  */
946 Result svcReplyAndReceiveWithUserBuffer(s32* index, void* usrBuffer, u64 size, const Handle* handles, s32 handleCount, Handle replyTarget, u64 timeout);
947 
948 ///@}
949 
950 ///@name Synchronization
951 ///@{
952 
953 /**
954  * @brief Creates a system event.
955  * @return Result code.
956  * @note Syscall number 0x45.
957  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
958  */
959 Result svcCreateEvent(Handle* server_handle, Handle* client_handle);
960 
961 ///@}
962 
963 ///@name Memory management
964 ///@{
965 
966 /**
967  * @brief Maps an IO Region. [13.0.0+]
968  * @return Result code.
969  * @note Syscall number 0x46.
970  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
971  */
972 Result svcMapIoRegion(Handle io_region_h, void *address, u64 size, u32 perm);
973 
974 /**
975  * @brief Undoes the effects of \ref svcMapIoRegion. [13.0.0+]
976  * @return Result code.
977  * @note Syscall number 0x47.
978  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
979  */
980 Result svcUnmapIoRegion(Handle io_region_h, void *address, u64 size);
981 
982 /**
983  * @brief Maps unsafe memory (usable for GPU DMA) for a system module at the desired address. [5.0.0+]
984  * @return Result code.
985  * @note Syscall number 0x48.
986  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
987  */
988 Result svcMapPhysicalMemoryUnsafe(void *address, u64 size);
989 
990 /**
991  * @brief Undoes the effects of \ref svcMapPhysicalMemoryUnsafe. [5.0.0+]
992  * @return Result code.
993  * @note Syscall number 0x49.
994  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
995  */
997 
998 /**
999  * @brief Sets the system-wide limit for unsafe memory mappable using \ref svcMapPhysicalMemoryUnsafe. [5.0.0+]
1000  * @return Result code.
1001  * @note Syscall number 0x4A.
1002  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1003  */
1005 
1006 ///@}
1007 
1008 
1009 ///@name Code memory / Just-in-time (JIT) compilation support
1010 ///@{
1011 
1012 /**
1013  * @brief Creates code memory in the caller's address space [4.0.0+].
1014  * @return Result code.
1015  * @note Syscall number 0x4B.
1016  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1017  */
1018 Result svcCreateCodeMemory(Handle* code_handle, void* src_addr, u64 size);
1019 
1020 /**
1021  * @brief Maps code memory in the caller's address space [4.0.0+].
1022  * @return Result code.
1023  * @note Syscall number 0x4C.
1024  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1025  */
1026 Result svcControlCodeMemory(Handle code_handle, CodeMapOperation op, void* dst_addr, u64 size, u64 perm);
1027 
1028 ///@}
1029 
1030 ///@name Power Management
1031 ///@{
1032 
1033 /**
1034  * @brief Causes the system to enter deep sleep.
1035  * @note Syscall number 0x4D.
1036  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1037  */
1038 void svcSleepSystem(void);
1039 
1040 ///@}
1041 
1042 ///@name Device memory-mapped I/O (MMIO)
1043 ///@{
1044 
1045 /**
1046  * @brief Reads/writes a protected MMIO register.
1047  * @return Result code.
1048  * @note Syscall number 0x4E.
1049  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1050  */
1051 Result svcReadWriteRegister(u32* outVal, u64 regAddr, u32 rwMask, u32 inVal);
1052 
1053 ///@}
1054 
1055 ///@name Process and thread management
1056 ///@{
1057 
1058 /**
1059  * @brief Configures the pause/unpause status of a process.
1060  * @return Result code.
1061  * @note Syscall number 0x4F.
1062  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1063  */
1065 
1066 ///@}
1067 
1068 ///@name Inter-process memory sharing
1069 ///@{
1070 
1071 /**
1072  * @brief Creates a block of shared memory.
1073  * @return Result code.
1074  * @note Syscall number 0x50.
1075  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1076  */
1077 Result svcCreateSharedMemory(Handle* out, size_t size, u32 local_perm, u32 other_perm);
1078 
1079 /**
1080  * @brief Maps a block of transfer memory.
1081  * @return Result code.
1082  * @note Syscall number 0x51.
1083  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1084  */
1085 Result svcMapTransferMemory(Handle tmem_handle, void* addr, size_t size, u32 perm);
1086 
1087 /**
1088  * @brief Unmaps a block of transfer memory.
1089  * @return Result code.
1090  * @note Syscall number 0x52.
1091  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1092  */
1093 Result svcUnmapTransferMemory(Handle tmem_handle, void* addr, size_t size);
1094 
1095 ///@}
1096 
1097 ///@name Device memory-mapped I/O (MMIO)
1098 ///@{
1099 
1100 /**
1101  * @brief Creates an event and binds it to a specific hardware interrupt.
1102  * @return Result code.
1103  * @note Syscall number 0x53.
1104  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1105  */
1107 
1108 /**
1109  * @brief Queries information about a certain virtual address, including its physical address.
1110  * @return Result code.
1111  * @note Syscall number 0x54.
1112  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1113  */
1115 
1116 /**
1117  * @brief Returns a virtual address mapped to a given IO range.
1118  * @return Result code.
1119  * @note Syscall number 0x55.
1120  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1121  * @warning Only exists on [10.0.0+]. For older versions use \ref svcLegacyQueryIoMapping.
1122  */
1123 Result svcQueryMemoryMapping(u64* virtaddr, u64* out_size, u64 physaddr, u64 size);
1124 
1125 /**
1126  * @brief Returns a virtual address mapped to a given IO range.
1127  * @return Result code.
1128  * @note Syscall number 0x55.
1129  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1130  * @warning Only exists on [1.0.0-9.2.0]. For newer versions use \ref svcQueryMemoryMapping.
1131  */
1132 Result svcLegacyQueryIoMapping(u64* virtaddr, u64 physaddr, u64 size);
1133 
1134 ///@}
1135 
1136 ///@name I/O memory management unit (IOMMU)
1137 ///@{
1138 
1139 /**
1140  * @brief Creates a virtual address space for binding device address spaces.
1141  * @return Result code.
1142  * @note Syscall number 0x56.
1143  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1144  */
1145 Result svcCreateDeviceAddressSpace(Handle *handle, u64 dev_addr, u64 dev_size);
1146 
1147 /**
1148  * @brief Attaches a device address space to a device.
1149  * @return Result code.
1150  * @note Syscall number 0x57.
1151  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1152  */
1154 
1155 /**
1156  * @brief Detaches a device address space from a device.
1157  * @return Result code.
1158  * @note Syscall number 0x58.
1159  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1160  */
1162 
1163 /**
1164  * @brief Maps an attached device address space to an userspace address.
1165  * @return Result code.
1166  * @remark The userspace destination address must have the \ref MemState_MapDeviceAllowed bit set.
1167  * @note Syscall number 0x59.
1168  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1169  */
1170 Result svcMapDeviceAddressSpaceByForce(Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 option);
1171 
1172 /**
1173  * @brief Maps an attached device address space to an userspace address.
1174  * @return Result code.
1175  * @remark The userspace destination address must have the \ref MemState_MapDeviceAlignedAllowed bit set.
1176  * @note Syscall number 0x5A.
1177  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1178  */
1179 Result svcMapDeviceAddressSpaceAligned(Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 option);
1180 
1181 /**
1182  * @brief Maps an attached device address space to an userspace address. [1.0.0-12.1.0]
1183  * @return Result code.
1184  * @remark The userspace destination address must have the \ref MemState_MapDeviceAlignedAllowed bit set.
1185  * @note Syscall number 0x5B.
1186  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1187  */
1188 Result svcMapDeviceAddressSpace(u64 *out_mapped_size, Handle handle, Handle proc_handle, u64 map_addr, u64 dev_size, u64 dev_addr, u32 perm);
1189 
1190 /**
1191  * @brief Unmaps an attached device address space from an userspace address.
1192  * @return Result code.
1193  * @note Syscall number 0x5C.
1194  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1195  */
1196 Result svcUnmapDeviceAddressSpace(Handle handle, Handle proc_handle, u64 map_addr, u64 map_size, u64 dev_addr);
1197 
1198 ///@}
1199 
1200 ///@name Cache Management
1201 ///@{
1202 
1203 /**
1204  * @brief Invalidates data cache for a virtual address range within a process.
1205  * @param[in] address Address of region to invalidate.
1206  * @param[in] size Size of region to invalidate.
1207  * @note Syscall number 0x5D.
1208  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1209  */
1210 Result svcInvalidateProcessDataCache(Handle process, uintptr_t address, size_t size);
1211 
1212 /**
1213  * @brief Stores data cache for a virtual address range within a process.
1214  * @param[in] address Address of region to store.
1215  * @param[in] size Size of region to store.
1216  * @note Syscall number 0x5E.
1217  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1218  */
1219 Result svcStoreProcessDataCache(Handle process, uintptr_t address, size_t size);
1220 
1221 /**
1222  * @brief Flushes data cache for a virtual address range within a process.
1223  * @param[in] address Address of region to flush.
1224  * @param[in] size Size of region to flush.
1225  * @note Syscall number 0x5F.
1226  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1227  */
1228 Result svcFlushProcessDataCache(Handle process, uintptr_t address, size_t size);
1229 
1230 ///@}
1231 
1232 ///@name Debugging
1233 ///@{
1234 
1235 /**
1236  * @brief Debugs an active process.
1237  * @return Result code.
1238  * @note Syscall number 0x60.
1239  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1240  */
1242 
1243 /**
1244  * @brief Breaks an active debugging session.
1245  * @return Result code.
1246  * @note Syscall number 0x61.
1247  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1248  */
1250 
1251 /**
1252  * @brief Terminates the process of an active debugging session.
1253  * @return Result code.
1254  * @note Syscall number 0x62.
1255  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1256  */
1258 
1259 /**
1260  * @brief Gets an incoming debug event from a debugging session.
1261  * @return Result code.
1262  * @note Syscall number 0x63.
1263  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1264  */
1265 Result svcGetDebugEvent(void* event_out, Handle debug);
1266 
1267 /**
1268  * @brief Continues a debugging session.
1269  * @return Result code.
1270  * @note Syscall number 0x64.
1271  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1272  * @warning Only exists on [3.0.0+]. For older versions use \ref svcLegacyContinueDebugEvent.
1273  */
1274 Result svcContinueDebugEvent(Handle debug, u32 flags, u64* tid_list, u32 num_tids);
1275 
1276 /**
1277  * @brief Continues a debugging session.
1278  * @return Result code.
1279  * @note Syscall number 0x64.
1280  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1281  * @warning Only exists on [1.0.0-2.3.0]. For newer versions use \ref svcContinueDebugEvent.
1282  */
1284 
1285 /**
1286  * @brief Gets the context (dump the registers) of a thread in a debugging session.
1287  * @return Result code.
1288  * @param[out] ctx Output thread context (register dump).
1289  * @param[in] debug Debug handle.
1290  * @param[in] threadID ID of the thread to dump the context of.
1291  * @param[in] flags Register groups to select, combination of @ref RegisterGroup flags.
1292  * @note Syscall number 0x67.
1293  * @warning Official kernel will not dump any CPU GPR if the thread is currently executing a system call (except @ref svcBreak and @ref svcReturnFromException).
1294  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1295  */
1297 
1298 /**
1299  * @brief Gets the context (dump the registers) of a thread in a debugging session.
1300  * @return Result code.
1301  * @param[in] debug Debug handle.
1302  * @param[in] threadID ID of the thread to set the context of.
1303  * @param[in] ctx Input thread context (register dump).
1304  * @param[in] flags Register groups to select, combination of @ref RegisterGroup flags.
1305  * @note Syscall number 0x68.
1306  * @warning Official kernel will return an error if the thread is currently executing a system call (except @ref svcBreak and @ref svcReturnFromException).
1307  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1308  */
1309 Result svcSetDebugThreadContext(Handle debug, u64 threadID, const ThreadContext* ctx, u32 flags);
1310 
1311 ///@}
1312 
1313 ///@name Process and thread management
1314 ///@{
1315 
1316 /**
1317  * @brief Retrieves a list of all running processes.
1318  * @return Result code.
1319  * @note Syscall number 0x65.
1320  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1321  */
1322 Result svcGetProcessList(s32 *num_out, u64 *pids_out, u32 max_pids);
1323 
1324 /**
1325  * @brief Retrieves a list of all threads for a debug handle (or zero).
1326  * @return Result code.
1327  * @note Syscall number 0x66.
1328  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1329  */
1330 Result svcGetThreadList(s32 *num_out, u64 *tids_out, u32 max_tids, Handle debug);
1331 
1332 ///@}
1333 
1334 ///@name Debugging
1335 ///@{
1336 
1337 /**
1338  * @brief Queries memory information from a process that is being debugged.
1339  * @return Result code.
1340  * @note Syscall number 0x69.
1341  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1342  */
1343 Result svcQueryDebugProcessMemory(MemoryInfo* meminfo_ptr, u32* pageinfo, Handle debug, u64 addr);
1344 
1345 /**
1346  * @brief Reads memory from a process that is being debugged.
1347  * @return Result code.
1348  * @note Syscall number 0x6A.
1349  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1350  */
1351 Result svcReadDebugProcessMemory(void* buffer, Handle debug, u64 addr, u64 size);
1352 
1353 /**
1354  * @brief Writes to memory in a process that is being debugged.
1355  * @return Result code.
1356  * @note Syscall number 0x6B.
1357  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1358  */
1359 Result svcWriteDebugProcessMemory(Handle debug, const void* buffer, u64 addr, u64 size);
1360 
1361 /**
1362  * @brief Sets one of the hardware breakpoints.
1363  * @return Result code.
1364  * @note Syscall number 0x6C.
1365  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1366  */
1368 
1369 /**
1370  * @brief Gets parameters from a thread in a debugging session.
1371  * @return Result code.
1372  * @note Syscall number 0x6D.
1373  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1374  */
1375 Result svcGetDebugThreadParam(u64* out_64, u32* out_32, Handle debug, u64 threadID, DebugThreadParam param);
1376 
1377 ///@}
1378 
1379 ///@name Miscellaneous
1380 ///@{
1381 
1382 /**
1383  * @brief Retrieves privileged information about the system, or a certain kernel object.
1384  * @param[out] out Variable to which store the information.
1385  * @param[in] id0 First ID of the property to retrieve.
1386  * @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system.
1387  * @param[in] id1 Second ID of the property to retrieve.
1388  * @return Result code.
1389  * @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetSystemInfo">switchbrew.org wiki</a>.
1390  * @note Syscall number 0x6F.
1391  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1392  */
1393 Result svcGetSystemInfo(u64* out, u64 id0, Handle handle, u64 id1);
1394 
1395 ///@}
1396 
1397 ///@name Inter-process communication (IPC)
1398 ///@{
1399 
1400 /**
1401  * @brief Creates a port.
1402  * @return Result code.
1403  * @note Syscall number 0x70.
1404  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1405  */
1406 Result svcCreatePort(Handle* portServer, Handle *portClient, s32 max_sessions, bool is_light, const char* name);
1407 
1408 /**
1409  * @brief Manages a named port.
1410  * @return Result code.
1411  * @note Syscall number 0x71.
1412  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1413  */
1414 Result svcManageNamedPort(Handle* portServer, const char* name, s32 maxSessions);
1415 
1416 /**
1417  * @brief Manages a named port.
1418  * @return Result code.
1419  * @note Syscall number 0x72.
1420  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1421  */
1423 
1424 ///@}
1425 
1426 ///@name Memory management
1427 ///@{
1428 
1429 /**
1430  * @brief Sets the memory permissions for the specified memory with the supplied process handle.
1431  * @param[in] proc Process handle.
1432  * @param[in] addr Address of the memory.
1433  * @param[in] size Size of the memory.
1434  * @param[in] perm Permissions (see \ref Permission).
1435  * @return Result code.
1436  * @remark This returns an error (0xD801) when \p perm is >0x5, hence -WX and RWX are not allowed.
1437  * @note Syscall number 0x73.
1438  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1439  */
1441 
1442 /**
1443  * @brief Maps the src address from the supplied process handle into the current process.
1444  * @param[in] dst Address to which map the memory in the current process.
1445  * @param[in] proc Process handle.
1446  * @param[in] src Source mapping address.
1447  * @param[in] size Size of the memory.
1448  * @return Result code.
1449  * @remark This allows mapping code and rodata with RW- permission.
1450  * @note Syscall number 0x74.
1451  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1452  */
1453 Result svcMapProcessMemory(void* dst, Handle proc, u64 src, u64 size);
1454 
1455 /**
1456  * @brief Undoes the effects of \ref svcMapProcessMemory.
1457  * @param[in] dst Destination mapping address
1458  * @param[in] proc Process handle.
1459  * @param[in] src Address of the memory in the process.
1460  * @param[in] size Size of the memory.
1461  * @return Result code.
1462  * @remark This allows mapping code and rodata with RW- permission.
1463  * @note Syscall number 0x75.
1464  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1465  */
1466 Result svcUnmapProcessMemory(void* dst, Handle proc, u64 src, u64 size);
1467 
1468 /**
1469  * @brief Equivalent to \ref svcQueryMemory, for another process.
1470  * @param[out] meminfo_ptr \ref MemoryInfo structure which will be filled in.
1471  * @param[out] pageinfo Page information which will be filled in.
1472  * @param[in] proc Process handle.
1473  * @param[in] addr Address to query.
1474  * @return Result code.
1475  * @note Syscall number 0x76.
1476  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1477  */
1478 Result svcQueryProcessMemory(MemoryInfo* meminfo_ptr, u32 *pageinfo, Handle proc, u64 addr);
1479 
1480 /**
1481  * @brief Maps normal heap in a certain process as executable code (used when loading NROs).
1482  * @param[in] proc Process handle (cannot be \ref CUR_PROCESS_HANDLE).
1483  * @param[in] dst Destination mapping address.
1484  * @param[in] src Source mapping address.
1485  * @param[in] size Size of the mapping.
1486  * @return Result code.
1487  * @note Syscall number 0x77.
1488  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1489  */
1491 
1492 /**
1493  * @brief Undoes the effects of \ref svcMapProcessCodeMemory.
1494  * @param[in] proc Process handle (cannot be \ref CUR_PROCESS_HANDLE).
1495  * @param[in] dst Destination mapping address.
1496  * @param[in] src Source mapping address.
1497  * @param[in] size Size of the mapping.
1498  * @return Result code.
1499  * @note Syscall number 0x78.
1500  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1501  */
1503 
1504 ///@}
1505 
1506 ///@name Process and thread management
1507 ///@{
1508 
1509 /**
1510  * @brief Creates a new process.
1511  * @return Result code.
1512  * @note Syscall number 0x79.
1513  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1514  */
1515 Result svcCreateProcess(Handle* out, const void* proc_info, const u32* caps, u64 cap_num);
1516 
1517 /**
1518  * @brief Starts executing a freshly created process.
1519  * @return Result code.
1520  * @note Syscall number 0x7A.
1521  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1522  */
1523 Result svcStartProcess(Handle proc, s32 main_prio, s32 default_cpu, u32 stack_size);
1524 
1525 /**
1526  * @brief Terminates a running process.
1527  * @return Result code.
1528  * @note Syscall number 0x7B.
1529  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1530  */
1532 
1533 /**
1534  * @brief Gets a \ref ProcessInfoType for a process.
1535  * @return Result code.
1536  * @note Syscall number 0x7C.
1537  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1538  */
1540 
1541 ///@}
1542 
1543 ///@name Resource Limit Management
1544 ///@{
1545 
1546 /**
1547  * @brief Creates a new Resource Limit handle.
1548  * @return Result code.
1549  * @note Syscall number 0x7D.
1550  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1551  */
1553 
1554 /**
1555  * @brief Sets the value for a \ref LimitableResource for a Resource Limit handle.
1556  * @return Result code.
1557  * @note Syscall number 0x7E.
1558  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1559  */
1561 
1562 ///@}
1563 
1564 ///@name ( ͡° ͜ʖ ͡°)
1565 ///@{
1566 
1567 /**
1568  * @brief Calls a secure monitor function (TrustZone, EL3).
1569  * @param regs Arguments to pass to the secure monitor.
1570  * @note Syscall number 0x7F.
1571  * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
1572  */
1574 
1575 ///@}
1576 
1577 ///@name Memory management
1578 ///@{
1579 
1580 /**
1581  * @brief Maps new insecure memory at the desired address. [15.0.0+]
1582  * @return Result code.
1583  * @note Syscall number 0x90.
1584  */
1586 
1587 /**
1588  * @brief Undoes the effects of \ref svcMapInsecureMemory. [15.0.0+]
1589  * @return Result code.
1590  * @note Syscall number 0x91.
1591  */
1593 
1594 ///@}
Context of a scheduled thread.
Definition: svc.h:271
u64 fp
Frame Pointer for the thread.
Definition: svc.h:272
u64 lr
Link Register for the thread.
Definition: svc.h:274
u64 sp
Stack Pointer for the thread.
Definition: svc.h:273
u64 pc
Program Counter for the thread.
Definition: svc.h:275
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:264
@ ArbitrationType_WaitIfEqual
Wait if the value is equal to argument.
Definition: svc.h:267
@ ArbitrationType_DecrementAndWaitIfLessThan
Decrement the value and wait if it is less than argument.
Definition: svc.h:266
@ ArbitrationType_WaitIfLessThan
Wait if the value is less than argument.
Definition: svc.h:265
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:242
@ PhysicalMemorySystemInfo_SystemUnsafe
Memory allocated for unsafe system usage (accessible to devices).
Definition: svc.h:246
@ PhysicalMemorySystemInfo_Applet
Memory allocated for applet usage.
Definition: svc.h:244
@ PhysicalMemorySystemInfo_System
Memory allocated for system usage.
Definition: svc.h:245
@ PhysicalMemorySystemInfo_Application
Memory allocated for application usage.
Definition: svc.h:243
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:250
@ YieldType_WithCoreMigration
Yields to another thread (possibly on a different core).
Definition: svc.h:252
@ YieldType_ToAnyThread
Yields and performs forced load-balancing.
Definition: svc.h:253
@ YieldType_WithoutCoreMigration
Yields to another thread on the same core.
Definition: svc.h:251
MemoryMapping
Memory mapping type.
Definition: svc.h:279
@ MemoryMapping_Memory
Mapping normal memory.
Definition: svc.h:282
@ MemoryMapping_Uncached
Mapping normal memory without cache.
Definition: svc.h:281
@ MemoryMapping_IoRegister
Mapping IO registers.
Definition: svc.h:280
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_IoRegionHint
[16.0.0+] Low bits of the physical address for a KIoRegion.
Definition: svc.h:212
@ 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:215
@ 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_AliasRegionExtraSize
[18.0.0+] Extra size added to the reserved region.
Definition: svc.h:213
@ 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:236
@ InitialProcessIdRangeInfo_Maximum
Highest initial process ID.
Definition: svc.h:238
@ InitialProcessIdRangeInfo_Minimum
Lowest initial process ID.
Definition: svc.h:237
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:522
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:257
@ SignalType_Signal
Signals the address.
Definition: svc.h:258
@ SignalType_SignalAndModifyBasedOnWaitingThreadCountIfEqual
Signals the address and updates its value if equal to argument.
Definition: svc.h:260
@ SignalType_SignalAndIncrementIfEqual
Signals the address and increments its value if equal to argument.
Definition: svc.h:259
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:286
@ IoPoolType_PcieA2
Physical address range 0x12000000-0x1FFFFFFF.
Definition: svc.h:287
Result svcReplyAndReceive(s32 *index, const Handle *handles, s32 handleCount, Handle replyTarget, u64 timeout)
Performs IPC input/output.
SystemInfoType
GetSystemInfo IDs.
Definition: svc.h:219
@ SystemInfoType_TotalPhysicalMemorySize
Total amount of DRAM available to system.
Definition: svc.h:220
@ SystemInfoType_UsedPhysicalMemorySize
Current amount of DRAM used by system.
Definition: svc.h:221
@ SystemInfoType_InitialProcessIdRange
Min/max initial process IDs.
Definition: svc.h:222
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:226
@ TickCountInfo_Core3
Tick count on core 3.
Definition: svc.h:230
@ TickCountInfo_Core2
Tick count on core 2.
Definition: svc.h:229
@ TickCountInfo_Core0
Tick count on core 0.
Definition: svc.h:227
@ TickCountInfo_Core1
Tick count on core 1.
Definition: svc.h:228
@ TickCountInfo_Total
Tick count on all cores.
Definition: svc.h:232
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