-
Notifications
You must be signed in to change notification settings - Fork 179
/
write_darwin_amd64.s
64 lines (60 loc) · 1.81 KB
/
write_darwin_amd64.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
64
/*
* 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 NOP8 BYTE $0x90; BYTE $0x90; BYTE $0x90; BYTE $0x90; BYTE $0x90; BYTE $0x90; BYTE $0x90; BYTE $0x90;
#define NOP64 NOP8; NOP8; NOP8; NOP8; NOP8; NOP8; NOP8; NOP8;
#define NOP512 NOP64; NOP64; NOP64; NOP64; NOP64; NOP64; NOP64; NOP64;
#define NOP4096 NOP512; NOP512; NOP512; NOP512; NOP512; NOP512; NOP512; NOP512;
#define protRW $(0x1|0x2|0x10)
#define mProtect $(0x2000000+74)
TEXT ·write(SB),NOSPLIT,$24
JMP START
NOP4096
START:
MOVQ mProtect, AX
MOVQ page+24(FP), DI
MOVQ pageSize+32(FP), SI
MOVQ protRW, DX
SYSCALL
CMPQ AX, $0
JZ PROTECT_OK
CALL mach_task_self(SB)
MOVQ AX, DI
MOVQ target+0(FP), SI
MOVQ len+16(FP), DX
MOVQ $0, CX
MOVQ protRW, R8
CALL mach_vm_protect(SB)
CMPQ AX, $0
JNZ RETURN
PROTECT_OK:
MOVQ target+0(FP), DI
MOVQ data+8(FP), SI
MOVQ len+16(FP), CX
MOVQ DI, to-24(SP)
MOVQ SI, from-16(SP)
MOVQ CX, n-8(SP)
CALL runtime·memmove(SB)
MOVQ mProtect, AX
MOVQ page+24(FP), DI
MOVQ pageSize+32(FP), SI
MOVQ oriProt+40(FP), DX
SYSCALL
JMP RETURN
NOP4096
RETURN:
MOVQ AX, ret+48(FP)
RET