Files
ps5-linux-loader/source/prepare_resume.c
2026-05-17 11:54:10 +02:00

153 lines
4.0 KiB
C

#include "prepare_resume.h"
#include "../shellcode_kernel/shellcode_kernel.h"
#include "../shellcode_kernel/shellcode_kernel_args.h"
#include "config.h"
#include "iommu.h"
#include "offsets.h"
#include "utils.h"
#include <fcntl.h>
#include <stdio.h>
#include <sys/mman.h>
int remove_xotext(void) {
uint64_t start = ktext;
uint64_t end = kdata;
int n __attribute__((unused)) = 0;
for (uint64_t a = start; a < end; a += 0x1000) {
page_chain_set_rw(a);
n++;
}
return 0;
}
int kernel_pmap_invalidate_all(void) {
static uint64_t two_zero_pages[PAGE_SIZE * 2] = {0};
int pipe_fds[2];
if (pipe2(pipe_fds, O_NONBLOCK)) {
return -1;
}
if (write(pipe_fds[1], two_zero_pages, PAGE_SIZE * 2) < 0) {
close(pipe_fds[0]);
close(pipe_fds[1]);
return -1;
}
close(pipe_fds[1]);
uint64_t read_fd_file_data = kernel_get_proc_file(-1, pipe_fds[0]);
if (!INKERNEL(read_fd_file_data)) {
close(pipe_fds[0]);
return -1;
}
uint64_t read_fd_buffer;
kernel_copyout(read_fd_file_data + 0x10, &read_fd_buffer,
sizeof(read_fd_buffer));
if (!INKERNEL(read_fd_buffer)) {
close(pipe_fds[0]);
return -1;
}
if (!page_remove_global(read_fd_buffer)) {
close(pipe_fds[0]);
return -1;
}
close(pipe_fds[0]);
return 0;
}
int prepare_resume(void **shellcode_kernel, size_t *shellcode_kernel_len) {
if (env_offset.KERNEL_CODE_CAVE == 0) {
printf("Error: missing code cave offset\n");
return -1;
}
// Copy shellcode_kernel.
*shellcode_kernel =
mmap(NULL, ALIGN_UP(shellcode_kernel_bin_len, PAGE_SIZE),
PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0);
*shellcode_kernel_len = shellcode_kernel_bin_len;
memcpy(*shellcode_kernel, shellcode_kernel_bin, shellcode_kernel_bin_len);
uint64_t args_va = prepare_sck_args();
if (update_sck_args_ptr((uint64_t)*shellcode_kernel, args_va))
return -1;
// Install shellcode_kernel in kernel space.
for (int i = 0; i < shellcode_kernel_bin_len; i += PAGE_SIZE) {
install_page_syscore(kernel_cave_shellcode + i,
vtophys_user((uintptr_t)*shellcode_kernel + i), 0);
}
if (remove_xotext()) {
printf("Error: could not remove xo from text\n");
return -1;
}
if (kernel_pmap_invalidate_all()) {
printf("Error: could not invalidate pmap\n");
return -1;
}
return 0;
}
int update_sck_args_ptr(uint64_t shellcode, uint64_t args) {
// Find the address 0x11AA11AA11AA11AA used as marker
int offset = -1;
for (uint64_t i = 0; i < 0x40; i++) {
if (*(uint64_t *)(shellcode + i) == 0x11AA11AA11AA11AA) {
offset = i;
break;
}
}
if (offset == -1) {
notify("Could not find offset of args_ptr address - Aborting\n");
return -1;
}
*(uint64_t *)(shellcode + offset) = args;
return 0;
}
uint64_t prepare_sck_args(void) {
shellcode_kernel_args args;
args.fw_version = fw;
args.ktext = ktext;
args.kdata = kdata;
args.dmap_base = dmap;
args.fun_printf = ktext + env_offset.FUN_PRINTF;
args.fun_hv_iommu_set_buffers = ktext + env_offset.FUN_HV_IOMMU_SET_BUFFERS;
args.fun_hv_iommu_wait_completion =
ktext + env_offset.FUN_HV_IOMM_WAIT_COMPLETION;
args.fun_smp_rendezvous = ktext + env_offset.FUN_SMP_RENDEZVOUS;
args.fun_smp_no_rendevous_barrier =
ktext + env_offset.FUN_SMP_NO_RENDEVOUS_BARRIER;
args.g_vbios = ktext + env_offset.G_VBIOS;
args.fun_transmitter_control = ktext + env_offset.FUN_TRANSMITTER_CONTROL;
args.fun_mp3_initialize = ktext + env_offset.FUN_MP3_INITIALIZE;
args.fun_mp3_invoke = ktext + env_offset.FUN_MP3_INVOKE;
args.iommu_softc = ktext + env_offset.IOMMU_SOFTC;
args.kernel_uart_override = ktext + env_offset.KERNEL_UART_OVERRIDE;
args.kernel_cfi_check = ktext + env_offset.KERNEL_CFI_CHECK;
args.hv_handle_vmexit_pa = env_offset.HV_HANDLE_VMEXIT_PA;
args.hv_code_cave_pa = env_offset.HV_CODE_CAVE_PA;
args.linux_info_va = linux_i.linux_info;
uint64_t args_cave = pa_to_dmap(alloc_page());
kernel_copyin(&args, args_cave, sizeof(args));
return args_cave;
}