-
Notifications
You must be signed in to change notification settings - Fork 31
/
syscall_handler.h.S
63 lines (51 loc) · 1.19 KB
/
syscall_handler.h.S
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
/*
* syscall_handler.S -- PS3 Jailbreak payload : hook for tracing syscalls
*
* Copyright (C) Youness Alaoui (KaKaRoTo)
*
* This software is distributed under the terms of the GNU General Public
* License ("GPL") version 3, as published by the Free Software Foundation.
*
*/
#ifndef __SYSCALL_HANDLER_H_S__
#define __SYSCALL_HANDLER_H_S__
#include "trace_helpers.h.S"
syscall_handler:
mflr %r0
stdu %r1, -0x100(%r1)
std %r30, 0xC0(%r1)
std %r31, 0xC8(%r1)
std %r0, 0x110(%r1)
li %r31, 0
/* do not log the mutex lock/unlock syscalls, floods the network */
cmplwi %r11, 102*8 // lock
beq l_syscall_handler_done
cmplwi %r11, 104*8 // unlock
beq l_syscall_handler_done
cmplwi %r11, 103*8 // trylock
beq l_syscall_handler_done
li %r31, 1
bl store_regs
rldicl %r11, %r11, 61, 3 // r11 is the sc_num*8
mr %r30, %r11
li %r12, 0
bl send_trace
bl load_regs
l_syscall_handler_done:
mtctr %r13
bctrl
cmplwi %r31, 0
beq l_syscall_handler_return
bl store_regs
mr %r11, %r30
li %r12, 1
bl send_trace
bl load_regs
l_syscall_handler_return:
ld %r30, 0xC0(%r1)
ld %r31, 0xC8(%r1)
ld %r0, 0x110(%r1)
addi %r1, %r1, 0x100
mtlr %r0
blr
#endif /* __SYSCALL_HANDLER_H_S__ */