Difference between revisions of "Loader services"

From Nintendo Switch Brew
Jump to navigation Jump to search
(Removed ro info as it is now on its own page.)
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= ldr:dmnt =
+
= ldr:shel =
This is "nn::ldr::detail::IDebugMonitorInterface".
+
This is "nn::ldr::detail::IShellInterface".
  
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
Line 6: Line 6:
 
! Cmd || Name
 
! Cmd || Name
 
|-
 
|-
| 0 || [[Loader_services#AddProcessToDebugLaunchQueue|AddProcessToDebugLaunchQueue]]
+
| 0 || [[#SetProgramArgument]]
|-
 
| 1 || [[Loader_services#ClearDebugLaunchQueue|ClearDebugLaunchQueue]]
 
 
|-
 
|-
| 2 || [[Loader_services#GetNsoInfos|GetNsoInfos]]
+
| 1 || [[#FlushArguments]]
 
|}
 
|}
  
== AddProcessToDebugLaunchQueue ==
+
== SetProgramArgument ==
Same as [[Loader_services#AddProcessToLaunchQueue|AddProcessToLaunchQueue]] but for processes marked as debug.
+
Takes a type-0x9 input buffer with launch arguments (as string), an u32 (size of arguments string), and an input title-id.
  
== ClearDebugLaunchQueue ==
+
Loads a process for the specified title-id and passes along the supplied arguments.
Same as [[Loader_services#ClearLaunchQueue|ClearLaunchQueue]].
+
Loaded processes are kept in a queue waiting for PM to launch them. The maximum number of waiting processes in this list is 10.
  
== GetNsoInfos ==
+
== FlushArguments ==
Takes in a u64 ProcessID, and a C descriptor. Returns the number of NsoInfos copied to output.
+
Clears the loaded processes waiting queue.
  
NsoInfo has the following layout:
+
= ldr:dmnt =
 +
This is "nn::ldr::detail::IDebugMonitorInterface".
  
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
! Offset
+
! Cmd || Name
! Size
 
! Description
 
 
|-
 
|-
| 0x0
+
| 0 || [[#SetProgramArgument]]
| 0x20
 
| "Build ID", from NSO header+0x40.
 
 
|-
 
|-
| 0x20
+
| 1 || [[#FlushArguments]]
| 0x8
 
| Mapped address for this NSO
 
|-
 
| 0x28
 
| 0x8
 
| Mapped size for this NSO
 
 
|-
 
|-
 +
| 2 || [[#GetProcessModuleInfo]]
 
|}
 
|}
  
 +
== GetProcessModuleInfo ==
 +
Takes in a u64 Process ID, and a C descriptor out array of [[#ModuleInfo]]s. Returns the number of ModuleInfos copied to output.
  
 
= ldr:pm =
 
= ldr:pm =
Line 56: Line 48:
 
| 1 || [[#GetProgramInfo]]
 
| 1 || [[#GetProgramInfo]]
 
|-
 
|-
| 2 || [[#RegisterTitle]]
+
| 2 || [[#PinProgram]]
 
|-
 
|-
| 3 || [[#UnregisterTitle]]
+
| 3 || [[#UnpinProgram]]
 
|}
 
|}
  
 
== GetProgramInfo ==
 
== GetProgramInfo ==
Takes a TitleId + StorageId, parses the NPDM, and writes output to a C descriptor buffer as follows:
+
Takes an ncm::ProgramLocation, parses the NPDM, and writes a [[#ProgramInfo]] to a C descriptor buffer.
 +
 
 +
== PinProgram ==
 +
Takes an ncm::ProgramLocation, returns a u64 "PinId".
 +
 
 +
== UnpinProgram ==
 +
Takes a PinId from [[#PinProgram]].
  
 +
= ModuleInfo =
 +
{| class="wikitable" border="1"
 +
|-
 +
! Offset
 +
! Size
 +
! Description
 +
|-
 +
| 0x0
 +
| 0x20
 +
| ModuleId
 +
|-
 +
| 0x20
 +
| 0x8
 +
| ImageAddress
 +
|-
 +
| 0x28
 +
| 0x8
 +
| ImageSize
 +
|}
 +
 +
= ProgramInfo =
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
Line 126: Line 145:
 
| ACI0 [[NPDM#FS Access Control|FS Access Control]]
 
| ACI0 [[NPDM#FS Access Control|FS Access Control]]
 
|}
 
|}
 
== RegisterTitle ==
 
Takes a TitleId + StorageId, returns an index.
 
 
== UnregisterTitle ==
 
Takes the index from [[#RegisterTitle]].
 
 
= ldr:shel =
 
This is "nn::ldr::detail::IShellInterface".
 
 
{| class="wikitable" border="1"
 
|-
 
! Cmd || Name
 
|-
 
| 0 || [[#AddProcessToLaunchQueue]]
 
|-
 
| 1 || [[#ClearLaunchQueue]]
 
|}
 
 
== AddProcessToLaunchQueue ==
 
Takes a type-0x19 input buffer with launch arguments (as string), an u32 (size of arguments string), and an input title-id.
 
 
Loads a process for the specified title-id and passes along the supplied arguments.
 
Loaded processes are kept in a queue waiting for PM to launch them. The maximum number of waiting processes in this list is 10.
 
 
== ClearLaunchQueue ==
 
Clears the loaded processes waiting queue.
 
  
 
[[Category:Services]]
 
[[Category:Services]]

Revision as of 20:13, 22 February 2020

ldr:shel

This is "nn::ldr::detail::IShellInterface".

Cmd Name
0 #SetProgramArgument
1 #FlushArguments

SetProgramArgument

Takes a type-0x9 input buffer with launch arguments (as string), an u32 (size of arguments string), and an input title-id.

Loads a process for the specified title-id and passes along the supplied arguments. Loaded processes are kept in a queue waiting for PM to launch them. The maximum number of waiting processes in this list is 10.

FlushArguments

Clears the loaded processes waiting queue.

ldr:dmnt

This is "nn::ldr::detail::IDebugMonitorInterface".

Cmd Name
0 #SetProgramArgument
1 #FlushArguments
2 #GetProcessModuleInfo

GetProcessModuleInfo

Takes in a u64 Process ID, and a C descriptor out array of #ModuleInfos. Returns the number of ModuleInfos copied to output.

ldr:pm

This is "nn::ldr::detail::IProcessManagerInterface".

Cmd Name
0 CreateProcess
1 #GetProgramInfo
2 #PinProgram
3 #UnpinProgram

GetProgramInfo

Takes an ncm::ProgramLocation, parses the NPDM, and writes a #ProgramInfo to a C descriptor buffer.

PinProgram

Takes an ncm::ProgramLocation, returns a u64 "PinId".

UnpinProgram

Takes a PinId from #PinProgram.

ModuleInfo

Offset Size Description
0x0 0x20 ModuleId
0x20 0x8 ImageAddress
0x28 0x8 ImageSize

ProgramInfo

Offset Size Description
0x0 0x1 MainThreadPrio. Arg1 to svcStartProcess
0x1 0x1 DefaultCpuId. Arg2 to svcStartProcess
0x2 0x1 ApplicationType, see here.
0x3 0x1 Padding
0x4 0x4 MainThreadStackSize. Arg3 to svcStartProcess
0x8 0x8 TitleIdRange_Min
0x10 0x4 ACID Service Access Control list size
0x14 0x4 ACI0 Service Access Control list size
0x18 0x4 ACID FS Access Control buffer size
0x1C 0x4 ACI0 FS Access Control buffer size
0x20 <Varies> ACID Service Access Control list
<Varies> <Varies> ACI0 Service Access Control list
<Varies> <Varies> ACID FS Access Control buffer
<Varies> <Varies> ACI0 FS Access Control