1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#ifndef _PSP2_KERNEL_MODULEMGR_H_
#define _PSP2_KERNEL_MODULEMGR_H_
#include <psp2/types.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Return values for plugins `module_start` and `module_stop`
*/
/** @{ */
#define SCE_KERNEL_START_SUCCESS (0)
#define SCE_KERNEL_START_RESIDENT SCE_KERNEL_START_SUCCESS
#define SCE_KERNEL_START_NO_RESIDENT (1)
#define SCE_KERNEL_START_FAILED (2)
#define SCE_KERNEL_STOP_SUCCESS (0)
#define SCE_KERNEL_STOP_FAIL (1)
#define SCE_KERNEL_STOP_CANCEL SCE_KERNEL_STOP_FAIL
/** @} */
typedef struct SceKernelSegmentInfo
{
SceUInt size; //!< sizeof(SceKernelSegmentInfo)
SceUInt perms; //!< probably rwx in low bits
void *vaddr; //!< address in memory
SceUInt memsz; //!< size in memory
SceUInt flags; //!< meaning unknown
SceUInt res; //!< unused?
} SceKernelSegmentInfo;
typedef struct
{
SceUInt size; //!< 0x1B8 for Vita 1.x
SceUInt handle; //!< kernel module handle?
SceUInt flags; //!< some bits. could be priority or whatnot
char module_name[28];
SceUInt unk28;
void *module_start;
SceUInt unk30;
void *module_stop;
void *exidxTop;
void *exidxBtm;
SceUInt unk40;
SceUInt unk44;
void *tlsInit;
SceSize tlsInitSize;
SceSize tlsAreaSize;
char path[256];
SceKernelSegmentInfo segments[4];
SceUInt type; //!< 6 = user-mode PRX?
} SceKernelModuleInfo;
typedef struct {
SceSize size;
} SceKernelLMOption;
typedef struct {
SceSize size;
} SceKernelULMOption;
int sceKernelGetModuleList(int flags, SceUID *modids, int *num);
int sceKernelGetModuleInfo(SceUID modid, SceKernelModuleInfo *info);
SceUID sceKernelLoadModule(char *path, int flags, SceKernelLMOption *option);
int sceKernelUnloadModule(SceUID modid, int flags, SceKernelULMOption *option);
int sceKernelStartModule(SceUID modid, SceSize args, void *argp, int flags, void *option, int *status);
int sceKernelStopModule(SceUID modid, SceSize args, void *argp, int flags, void *option, int *status);
SceUID sceKernelLoadStartModule(char *path, SceSize args, void *argp, int flags, SceKernelLMOption *option, int *status);
int sceKernelStopUnloadModule(SceUID modid, SceSize args, void *argp, int flags, SceKernelULMOption *option, int *status);
typedef struct
{
SceSize size;
char versionString[16];
SceUInt unk_14;
SceUInt unk_18;
SceUInt unk_1C;
SceUInt version;
SceUInt unk_24;
} SceKernelFwInfo;
int sceKernelGetSystemSwVersion(SceKernelFwInfo *data);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_KERNEL_MODULEMGR_H_ */
|