-
Notifications
You must be signed in to change notification settings - Fork 178
/
write_darwin_arm64.s
63 lines (59 loc) · 1.78 KB
/
write_darwin_arm64.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
/*
* Copyright 2022 ByteDance Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "textflag.h"
#define NOP64 WORD $0x1f2003d5; WORD $0x1f2003d5;
#define NOP512 NOP64; NOP64; NOP64; NOP64; NOP64; NOP64; NOP64; NOP64;
#define NOP4096 NOP512; NOP512; NOP512; NOP512; NOP512; NOP512; NOP512; NOP512;
#define NOP16384 NOP4096; NOP4096; NOP4096; NOP4096; NOP4096; NOP4096; NOP4096; NOP4096;
#define protRW $(0x1|0x2|0x10)
#define mProtect $(0x2000000+74)
TEXT ·write(SB),NOSPLIT,$24
B START
NOP16384
START:
MOVD mProtect, R16
MOVD page+24(FP), R0
MOVD pageSize+32(FP), R1
MOVD protRW, R2
SVC $0x80
CMP $0, R0
BEQ PROTECT_OK
CALL mach_task_self(SB)
MOVD target+0(FP), R1
MOVD len+16(FP), R2
MOVD $0, R3
MOVD protRW, R4
CALL mach_vm_protect(SB)
CMP $0, R0
BNE RETURN
PROTECT_OK:
MOVD target+0(FP), R0
MOVD data+8(FP), R1
MOVD len+16(FP), R2
MOVD R0, to-24(SP)
MOVD R1, from-16(SP)
MOVD R2, n-8(SP)
CALL runtime·memmove(SB)
MOVD mProtect, R16
MOVD page+24(FP), R0
MOVD pageSize+32(FP), R1
MOVD oriProt+40(FP), R2
SVC $0x80
B RETURN
NOP16384
RETURN:
MOVD R0, ret+48(FP)
RET