-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpatches.c
792 lines (732 loc) · 24 KB
/
patches.c
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
/* patches.c -- main patch system
*
* Copyright (C) 2016 Yifan Lu
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
#include <psp2kern/types.h>
#include <psp2kern/kernel/cpu.h>
#include <psp2kern/kernel/sysmem.h>
#include <psp2kern/kernel/threadmgr.h>
#include <string.h>
#include "error.h"
#include "taihen_internal.h"
#include "patches.h"
#include "proc_map.h"
#include "slab.h"
#include "substitute/lib/substitute.h"
/**
* @brief Hooks are added to a linked list and injections are written
* directly.
*
* The original code/data is always stored so it can be restored.
* The ordering of hooks is not defined and the developer should
* expect that the hooks will execute in any order.
*/
/** Size of the heap pool for storing patches and patch metadata in bytes. */
#define PATCHES_POOL_SIZE 0x10000
/** Number of buckets in proc map. */
#define NUM_PROC_MAP_BUCKETS 16
/** Helper macro to make function pointer to data pointer. */
#define FUNC_TO_UINTPTR_T(x) (((uintptr_t)(x))&0xFFFFFFFE)
/** Address range for public (shared) memory. */
#define MEM_SHARED_START ((void*)0xE0000000)
/** Patches pool resource id. Also used in posix-compat.c */
SceUID g_patch_pool;
/** The map of processes to list of patches */
static tai_proc_map_t *g_map;
/** Lock for handling hooks */
static SceUID g_hooks_lock;
/** UID class for taiHEN */
static SceClass g_taihen_class;
/**
* @brief Callback to initialize a patch
*
* @param dat The patch to initialize
*
* @return Zero
*/
static int init_patch(void *dat) {
tai_patch_t *patch;
patch = (tai_patch_t *)dat;
LOG("init of: %p", patch);
return 0;
}
/**
* @brief Callback to free a patch
*
* @param dat The patch to free
*
* @return Zero
*/
static int free_patch(void *dat) {
tai_patch_t *patch;
patch = (tai_patch_t *)dat;
LOG("cleanup of: %p", patch);
return 0;
}
/**
* @brief Initializes the patch system
*
* Requires `proc_map_init` to be called first! Should be called on startup.
*
* @return Zero on success, < 0 on error
*/
int patches_init(void) {
SceKernelHeapCreateOpt opt;
int ret;
memset(&opt, 0, sizeof(opt));
opt.size = sizeof(opt);
opt.uselock = 1;
g_patch_pool = ksceKernelCreateHeap("tai_patches", PATCHES_POOL_SIZE, &opt);
LOG("ksceKernelCreateHeap(tai_patches): 0x%08X", g_patch_pool);
if (g_patch_pool < 0) {
return g_patch_pool;
}
g_map = proc_map_alloc(NUM_PROC_MAP_BUCKETS);
if (g_map == NULL) {
LOG("Failed to create proc map.");
return TAI_ERROR_SYSTEM;
}
g_hooks_lock = ksceKernelCreateMutex("tai_hooks_lock", SCE_KERNEL_MUTEX_ATTR_RECURSIVE, 0, NULL);
LOG("ksceKernelCreateMutex(tai_hooks_lock): 0x%08X", g_hooks_lock);
if (g_hooks_lock < 0) {
return g_hooks_lock;
}
ret = ksceKernelCreateClass(&g_taihen_class, "taiHENClass", ksceKernelGetUidClass(), sizeof(tai_patch_t), init_patch, free_patch);
LOG("ksceKernelCreateClass(taiHENClass): 0x%08X", ret);
if (ret < 0) {
return ret;
}
return TAI_SUCCESS;
}
/**
* @brief Cleans up the patch system
*
* Should be called before exit.
*/
void patches_deinit(void) {
LOG("Cleaning up patches subsystem.");
// TODO: Find out how to clean up class
ksceKernelDeleteMutex(g_hooks_lock);
ksceKernelDeleteHeap(g_patch_pool);
proc_map_free(g_map);
g_map = NULL;
g_patch_pool = 0;
g_hooks_lock = 0;
}
/**
* @brief Dump data to log
*
* @param[in] paddr The paddr
* @param[in] addr The address
* @param[in] size The size to dump
*/
static inline void hex_dump(uintptr_t paddr, const char *addr, unsigned int size)
{
unsigned int i;
for (i = 0; i < (size >> 4); i++)
{
LOG("0x%08X: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n",
paddr,
addr[0], addr[1], addr[2], addr[3], addr[4], addr[5], addr[6], addr[7], addr[8],
addr[9], addr[10], addr[11], addr[12], addr[13], addr[14], addr[15]
);
paddr += 0x10;
addr += 0x10;
}
}
#ifdef __arm__
/**
* @brief Flush L1 and L2 cache for an address
*
* For thread safety, interrupts may be disabled for the duration of
* this call. That plus the act of cache flushing itself makes this
* an expensive operation.
*
* @param[in] pid The pid
* @param[in] vma The vma
* @param[in] len The length
*/
void cache_flush(SceUID pid, uintptr_t vma, size_t len) {
uintptr_t vma_align;
int flags;
int my_context[3];
int ret;
int *other_context;
int dacr;
vma_align = vma & ~0x1F;
len = ((vma + len + 0x1F) & ~0x1F) - vma_align;
LOG("cache flush: vma %p, vma_align %p, len %x", vma, vma_align, len);
if (pid == KERNEL_PID) {
ksceKernelCpuDcacheWritebackInvalidateRange((void *)vma_align, len);
ksceKernelCpuIcacheAndL2WritebackInvalidateRange((void *)vma_align, len);
hex_dump(vma_align, (char *)vma_align, len);
} else {
// TODO: Take care of SHARED_PID
flags = ksceKernelCpuDisableInterrupts();
ksceKernelCpuSaveContext(my_context);
ret = ksceKernelGetPidContext(pid, &other_context);
if (ret >= 0) {
ksceKernelCpuRestoreContext(other_context);
asm volatile ("mrc p15, 0, %0, c3, c0, 0" : "=r" (dacr));
asm volatile ("mcr p15, 0, %0, c3, c0, 0" :: "r" (0x15450FC3));
ksceKernelCpuDcacheWritebackInvalidateRange((void *)vma_align, len);
ksceKernelCpuIcacheAndL2WritebackInvalidateRange((void *)vma_align, len);
hex_dump(vma_align, (char *)vma_align, len);
asm volatile ("mcr p15, 0, %0, c3, c0, 0" :: "r" (dacr));
}
ksceKernelCpuRestoreContext(my_context);
ksceKernelCpuEnableInterrupts(flags);
LOG("sceKernelSwitchVmaForPid(%d): 0x%08X\n", pid, ret);
}
asm volatile ("isb" ::: "memory");
}
#endif
/**
* @brief Used by `do_hooking`
*/
struct hook_args {
SceUID pid;
struct substitute_function_hook *hook;
struct substitute_function_hook_record **saved;
};
/**
* @brief Function that does the hooking
*
* This is needed because the syscall stack is not large enough for
* substitute to run. For user hooks, we disable interrupts to
* prevent problems with the DACR being set back after an interrupt.
* For the future, we will modify libsubtitute to run safely without
* disabling interrupts for user.
*
* @param args The arguments
*
* @return Zero for success, < 0 on error
*/
static int do_hooking(void *args) {
int flags;
int ret;
int my_context[3];
int *other_context;
int dacr;
struct hook_args *uargs = (struct hook_args *)args;
if (uargs->pid == KERNEL_PID) {
ret = substitute_hook_functions(uargs->hook, 1, uargs->saved, SUBSTITUTE_RELAXED);
} else {
flags = ksceKernelCpuDisableInterrupts();
ksceKernelCpuSaveContext(my_context);
ret = ksceKernelGetPidContext(uargs->pid, &other_context);
if (ret >= 0) {
ksceKernelCpuRestoreContext(other_context);
asm volatile ("mrc p15, 0, %0, c3, c0, 0" : "=r" (dacr));
asm volatile ("mcr p15, 0, %0, c3, c0, 0" :: "r" (0x15450FC3));
ret = substitute_hook_functions(uargs->hook, 1, uargs->saved, SUBSTITUTE_RELAXED);
asm volatile ("mcr p15, 0, %0, c3, c0, 0" :: "r" (dacr));
}
ksceKernelCpuRestoreContext(my_context);
ksceKernelCpuEnableInterrupts(flags);
}
return ret;
}
/**
* @brief Function that does the unhooking
*
* Same as above, we have to call this with a larger stack size.
*
* @param saved The saved record
*
* @return Zero for success, < 0 on error
*/
static int do_unhooking(void *saved) {
return substitute_free_hooks((struct substitute_function_hook_record *)saved, 1);
}
/**
* @brief Adds a hook to a function using libsubstitute
*
* @param[in] slab The slab to allocate exec memory from
* @param[in] target_func The function to hook
* @param[in] src_func The hook function
* @param[out] old A pointer to call the original implementation
* @param[out] saved Saved data for freeing the hook
*
* @return Zero on success, < 0 on error
*/
static int tai_hook_function(struct slab_chain *slab, void *target_func, const void *src_func, void **old, void **saved) {
struct hook_args uargs;
struct substitute_function_hook hook;
int ret;
if (target_func == src_func) {
LOG("no hook needed");
return TAI_SUCCESS; // no need for hook
}
hook.function = target_func;
hook.replacement = (void *)src_func;
hook.old_ptr = old;
hook.options = 0;
hook.opt = slab;
LOG("Calling substitute_hook_functions");
// TODO: Take care of SHARED_PID
uargs.pid = slab->pid;
uargs.hook = &hook;
uargs.saved = (struct substitute_function_hook_record **)saved;
ret = ksceKernelRunWithStack(0x4000, do_hooking, &uargs);
LOG("Done hooking");
if (ret != SUBSTITUTE_OK) {
LOG("libsubstitute error: %s", substitute_strerror(ret));
return TAI_ERROR_HOOK_ERROR;
}
return TAI_SUCCESS;
}
/**
* @brief Removes a hook using libsubstitute
*
* @param[in] saved The saved data from `tai_hook_function`
*
* @return Zero on success, < 0 on error
*/
static int tai_unhook_function(void *saved) {
int ret;
LOG("Calling substitute_free_hooks");
ret = ksceKernelRunWithStack(0x4000, do_unhooking, saved);
if (ret != SUBSTITUTE_OK) {
LOG("libsubstitute error: %s", substitute_strerror(ret));
return TAI_ERROR_HOOK_ERROR;
}
return TAI_SUCCESS;
}
/**
* @brief Memcpy within process without the pesky permissions
*
* This function will write raw data from `src` to `dst` for `size`.
* It works even if `dst` is read only. All levels of caches will be
* flushed.
*
* @param[in] dst_pid The target process
* @param dst The target address
* @param[in] src The source kernel address
* @param[in] size The size
*
* @return Zero on success, < 0 on error
*/
static int tai_force_memcpy(SceUID dst_pid, void *dst, const void *src, size_t size) {
int ret;
if (dst_pid == KERNEL_PID) {
ret = ksceKernelCpuUnrestrictedMemcpy(dst, src, size);
LOG("ksceKernelCpuUnrestrictedMemcpy(%p, %p, 0x%08X): 0x%08X", dst, src, size, ret);
} else {
ret = ksceKernelRxMemcpyKernelToUserForPid(dst_pid, (uintptr_t)dst, src, size);
LOG("ksceKernelRxMemcpyKernelToUserForPid(%x, %p, %p, 0x%08X): 0x%08X", dst_pid, dst, src, size, ret);
}
cache_flush(dst_pid, (uintptr_t)dst, size);
return ret;
}
/**
* @brief Memcpy from a process to kernel
*
* @param[in] src_pid The source process (can be kernel)
* @param dst The target address
* @param[in] src The source
* @param[in] size The size
*
* @return Zero on success, < 0 on error
*/
int tai_memcpy_to_kernel(SceUID src_pid, void *dst, const char *src, size_t size) {
int ret;
if (src_pid == KERNEL_PID) {
memcpy(dst, src, size);
LOG("memcpy(%p, %p, 0x%08X)", dst, src, size);
} else {
ret = ksceKernelMemcpyUserToKernelForPid(src_pid, dst, (uintptr_t)src, size);
LOG("ksceKernelMemcpyUserToKernelForPid(%x, %p, %p, 0x%08X): 0x%08X", src_pid, dst, src, size, ret);
}
return 0;
}
/**
* @brief Adds a hook to a chain, patching the original function if needed
*
* If this is the first hook in a chain, the original function will
* be patched. Otherwise, it will be placed into the chain. The
* order in the chain is not defined.
*
* @param hooks The chain of hooks to add to
* @param item The hook to add
*
* @return Zero if new hook added, 1 if it exists, < 0 on error
*/
static int hooks_add_hook(tai_hook_list_t *hooks, tai_hook_t *item) {
tai_hook_t *head;
int ret;
LOG("Adding hook %p to chain %p", item, hooks);
ksceKernelLockMutex(g_hooks_lock, 1, NULL);
if (hooks->head == NULL) { // first hook for this list
ret = tai_hook_function(item->patch->slab, hooks->func, item->u.func, &hooks->old, &hooks->saved);
if (ret >= 0) {
hooks->head = item;
item->next = NULL;
item->u.next = (uintptr_t)NULL;
item->u.old = hooks->old;
cache_flush(item->patch->pid, slab_getmirror(item->patch->slab, item), sizeof(tai_hook_t));
} else {
LOG("Hook failed, do not add to chain");
}
} else {
head = hooks->head;
item->next = head->next;
item->u.next = head->u.next;
item->u.old = hooks->old;
head->next = item;
head->u.next = slab_getmirror(item->patch->slab, item);
LOG("Added hook to existing chain %p", head);
// flush cache for head + item, which were modified
cache_flush(item->patch->pid, slab_getmirror(item->patch->slab, head), sizeof(tai_hook_t));
cache_flush(item->patch->pid, head->u.next, sizeof(tai_hook_t));
ret = 1;
}
ksceKernelUnlockMutex(g_hooks_lock, 1);
return ret;
}
/**
* @brief Removes a hook from a chain, patching the original function if
* needed
*
* If the hook to remove is the first hook in a chain, the patched
* function will be restored to its original state. If there is
* another hook in the chain, the function will be patched again to
* jump to that hook.
*
* @param hooks The chain of hooks to remove from
* @param item The hook to remove
*
* @return Zero on success, < 0 on error or if item is not found
*/
static int hooks_remove_hook(tai_hook_list_t *hooks, tai_hook_t *item) {
tai_hook_t **cur;
uintptr_t tmp, *cur_user;
int ret;
LOG("Removing hook %p for %p", item, hooks);
ksceKernelLockMutex(g_hooks_lock, 1, NULL);
if (hooks->head == item) { // first hook for this list
// we must remove the patch
tai_unhook_function(hooks->saved);
hooks->saved = NULL;
// set head to the next item
hooks->head = item->next;
if (hooks->head != NULL) {
// add a patch to the new head
ret = tai_hook_function(item->patch->slab, hooks->func, hooks->head->u.func, &hooks->old, &hooks->saved);
// update the old pointers
for (cur = &hooks->head; *cur != NULL; cur = &(*cur)->next) {
(*cur)->u.old = hooks->old;
}
// clear cache of mirror for the last item since it uses the old pointer
cache_flush(item->patch->pid, (uintptr_t)cur - offsetof(tai_hook_t, next), sizeof(tai_hook_t));
} else {
ret = 0;
}
} else {
cur = &hooks->head;
cur_user = &tmp;
ret = -1;
while (1) {
if (*cur) {
if (*cur == item) {
*cur = item->next; // remove from list
*cur_user = item->u.next;
// clear cache since pointers were changed
cache_flush(item->patch->pid, (uintptr_t)cur - offsetof(tai_hook_t, next), sizeof(tai_hook_t));
ret = 0;
break;
} else {
cur = &(*cur)->next;
cur_user = &(*cur)->u.next;
}
} else {
break;
}
}
}
ksceKernelUnlockMutex(g_hooks_lock, 1);
return ret;
}
/**
* @brief Inserts a hook given an absolute address and PID of the function
*
* @param[out] p_hook Outputs a reference object if successful
* @param[in] pid PID of the address space to hook
* @param dest_func The destination function
* @param[in] hook_func The hook function
*
* @return UID for the hook on success, < 0 on error
*/
SceUID tai_hook_func_abs(tai_hook_ref_t *p_hook, SceUID pid, void *dest_func, const void *hook_func) {
SceCreateUidObjOpt opt;
tai_patch_t *patch, *tmp;
tai_hook_t *hook;
int ret;
struct slab_chain *slab;
uintptr_t exe_addr;
LOG("Hooking %p to %p for pid %x", hook_func, dest_func, pid);
if (hook_func >= MEM_SHARED_START) {
if (pid == KERNEL_PID) {
return TAI_ERROR_INVALID_KERNEL_ADDR; // invalid hook address
} else {
return TAI_ERROR_NOT_IMPLEMENTED; // TODO: add support for this
}
}
hook = NULL;
if (pid == KERNEL_PID) {
ret = ksceKernelCreateUidObj(&g_taihen_class, "tai_patch_hook", NULL, (SceObjectBase **)&patch);
} else {
memset(&opt, 0, sizeof(opt));
opt.flags = 8;
opt.pid = pid;
ret = ksceKernelCreateUidObj(&g_taihen_class, "tai_patch_hook_user", &opt, (SceObjectBase **)&patch);
}
LOG("ksceKernelCreateUidObj(tai_patch_hook): 0x%08X, %p", ret, patch);
if (ret < 0) {
return ret;
}
ksceKernelLockMutex(g_hooks_lock, 1, NULL);
patch->type = HOOKS;
patch->uid = ret;
patch->pid = pid;
patch->addr = FUNC_TO_UINTPTR_T(dest_func);
patch->size = FUNC_SAVE_SIZE;
patch->next = NULL;
patch->data.hooks.func = dest_func;
patch->data.hooks.saved = NULL;
patch->data.hooks.head = NULL;
if (proc_map_try_insert(g_map, patch, &tmp) < 1) {
ret = ksceKernelDeleteUid(patch->uid);
LOG("ksceKernelDeleteUid(old): 0x%08X", ret);
if (tmp == NULL || tmp->type != HOOKS) {
// error
LOG("this hook overlaps an existing hook");
ret = TAI_ERROR_PATCH_EXISTS;
goto err;
} else {
// we have an existing patch
LOG("found existing patch %p, discarding %p", tmp, patch);
patch = tmp;
}
}
hook = slab_alloc(patch->slab, &exe_addr);
if (hook == NULL) {
ret = -1;
goto err;
}
hook->u.func = (void *)hook_func;
hook->patch = patch;
ret = hooks_add_hook(&patch->data.hooks, hook);
if (ret < 0 && patch->data.hooks.head == NULL) {
LOG("failed to add hook and patch is now empty, freeing hook %p", hook);
slab_free(patch->slab, hook);
hook = NULL;
proc_map_remove(g_map, patch);
ksceKernelDeleteUid(patch->uid);
patch = NULL;
} else if (ret >= 0) {
ret = patch->uid;
*p_hook = slab_getmirror(patch->slab, hook);
}
err:
// error and we have allocated a hook
if (ret < 0 && patch && hook) {
LOG("freeing hook %p", hook);
slab_free(patch->slab, hook);
}
ksceKernelUnlockMutex(g_hooks_lock, 1);
return ret;
}
/**
* @brief Removes a hook and restores original function if chain is empty
*
* @param[in] uid The uid reference
* @param[in] hook_ref The hook
*
* @return Zero on success, < 0 on error
*/
int tai_hook_release(SceUID uid, tai_hook_ref_t hook_ref) {
tai_hook_t **cur, *hook;
tai_patch_t *patch;
struct slab_chain *slab;
int ret;
ret = ksceKernelGetObjForUid(uid, &g_taihen_class, (SceObjectBase **)&patch);
LOG("ksceKernelGetObjForUid(%x): 0x%08X", uid, ret);
if (ret < 0) {
return ret;
}
ksceKernelLockMutex(g_hooks_lock, 1, NULL);
slab = patch->slab;
for (cur = &patch->data.hooks.head; *cur != NULL; cur = &(*cur)->next) {
if (slab_getmirror(slab, *cur) == hook_ref) {
hook = *cur;
LOG("Found hook %p for ref %p", hook, hook_ref);
ret = hooks_remove_hook(&patch->data.hooks, hook);
*cur = hook->next;
LOG("freeing hook");
slab_free(slab, hook);
if (patch->data.hooks.head == NULL) {
LOG("patch is now empty, freeing it");
proc_map_remove(g_map, patch);
ksceKernelUidRelease(uid);
ksceKernelDeleteUid(patch->uid);
}
ret = TAI_SUCCESS;
goto end;
}
}
LOG("Cannot find hook for uid %x ref %p", uid, hook_ref);
ret = TAI_ERROR_NOT_FOUND;
ksceKernelUidRelease(uid);
end:
ksceKernelUnlockMutex(g_hooks_lock, 1);
return ret;
}
/**
* @brief Inserts a raw data injection given an absolute address and PID of
* the address space
*
* @param[in] pid The pid of the src and dest pointers address space
* @param dest The destination
* @param[in] src The source
* @param[in] size The size
*
* @return UID for the injection on success, < 0 on error
* - TAI_ERROR_PATCH_EXISTS if a hook or injection is already
* inserted
*/
SceUID tai_inject_abs(SceUID pid, void *dest, const void *src, size_t size) {
tai_patch_t *patch, *tmp;
void *saved;
int ret;
// TODO: Check that dest is not inside our slab structure... that could corrupt kernel code
LOG("Injecting %p with %p for size 0x%08X at pid %x", dest, src, size, pid);
ret = ksceKernelCreateUidObj(&g_taihen_class, "tai_patch_inject", NULL, (SceObjectBase **)&patch);
LOG("ksceKernelCreateUidObj(tai_patch_inject): 0x%08X, %p", ret, patch);
if (ret < 0) {
return ret;
}
saved = ksceKernelAllocHeapMemory(g_patch_pool, size);
LOG("ksceKernelAllocHeapMemory(g_patch_pool, 0x%08X): %p", size, saved);
if (saved == NULL) {
ksceKernelDeleteUid(ret);
return TAI_ERROR_MEMORY;
}
// try to save old data
if (tai_memcpy_to_kernel(pid, saved, dest, size) < 0) {
LOG("Invalid address for memcpy");
ksceKernelDeleteUid(ret);
ksceKernelFreeHeapMemory(g_patch_pool, saved);
return TAI_ERROR_INVALID_ARGS;
}
ksceKernelLockMutex(g_hooks_lock, 1, NULL);
patch->type = INJECTION;
patch->uid = ret;
patch->pid = pid;
patch->addr = (uintptr_t)dest;
patch->size = size;
patch->next = NULL;
patch->data.inject.saved = saved;
patch->data.inject.size = size;
patch->data.inject.patch = patch;
if (proc_map_try_insert(g_map, patch, &tmp) < 1) {
ret = TAI_ERROR_PATCH_EXISTS;
} else {
ret = tai_force_memcpy(pid, dest, src, size);
}
if (ret < 0) {
ksceKernelDeleteUid(patch->uid);
ksceKernelFreeHeapMemory(g_patch_pool, saved);
} else {
ret = patch->uid;
}
ksceKernelUnlockMutex(g_hooks_lock, 1);
return ret;
}
/**
* @brief Removes an injection and restores the original data
*
* @param inject The injection
*
* @return Zero on success, < 0 on error
*/
int tai_inject_release(SceUID uid) {
tai_inject_t *inject;
tai_patch_t *patch;
void *saved;
void *dest;
size_t size;
int ret;
SceUID pid;
ret = ksceKernelGetObjForUid(uid, &g_taihen_class, (SceObjectBase **)&patch);
LOG("ksceKernelGetObjForUid(%x): 0x%08X", uid, ret);
if (ret < 0) {
return ret;
}
if (patch->type != INJECTION || patch->uid != uid) {
LOG("internal error: trying to free an invalid injection");
ksceKernelUidRelease(uid);
return TAI_ERROR_SYSTEM;
}
inject = &patch->data.inject;
LOG("Releasing injection %p for patch %p", inject, patch);
ksceKernelLockMutex(g_hooks_lock, 1, NULL);
pid = patch->pid;
dest = (void *)patch->addr;
saved = inject->saved;
size = inject->size;
if (!proc_map_remove(g_map, patch)) {
LOG("internal error, cannot remove patch from proc_map");
ret = TAI_ERROR_SYSTEM;
ksceKernelUidRelease(patch->uid);
} else {
ret = tai_force_memcpy(pid, dest, saved, size);
ksceKernelFreeHeapMemory(g_patch_pool, saved);
ksceKernelUidRelease(patch->uid);
ksceKernelDeleteUid(patch->uid);
}
ksceKernelUnlockMutex(g_hooks_lock, 1);
return ret;
}
/**
* @brief Called on process exist to force remove private hooks
*
* It is the caller's responsibilty to clean up before it
* terminates! However in the case where that doesn't happen, we try
* to salvage the situation by manually freeing all patches for a
* PID. This is a dirty free that does not attempt to write back the
* original data, so it should only be used at process termination.
* THIS NOT NOTE FREE PUBLIC HOOKS! There is no free way of keeping
* track of which PIDs have handles to a public hook internally, so
* we assume that public hooks stay resident forever unless the
* release call is made by the caller.
*
* @param[in] pid The pid
*
* @return Zero always
*/
int tai_try_cleanup_process(SceUID pid) {
tai_patch_t *patch, *next;
LOG("Calling patches cleanup for pid %x", pid);
ksceKernelLockMutex(g_hooks_lock, 1, NULL);
if (proc_map_remove_all_pid(g_map, pid, &patch) > 0) {
while (patch != NULL) {
next = patch->next;
if (patch->type == INJECTION) {
LOG("freeing injection saved data");
ksceKernelFreeHeapMemory(g_patch_pool, patch->data.inject.saved);
} else if (patch->type == HOOKS) {
LOG("freeing hook saved data");
free(patch->data.hooks.saved);
}
LOG("deleting patch: %x", patch->uid);
ksceKernelDeleteUid(patch->uid);
patch = next;
}
}
ksceKernelUnlockMutex(g_hooks_lock, 1);
return 0;
}