gomonkey: macOS permission denied
Line 19: - permission denied goroutine 4 [running]:
发生在
err := syscall.Mprotect(page, syscall.PROT_READ|syscall.PROT_WRITE|syscall.PROT_EXEC)
if err != nil {
panic(err)
}
环境
- MacOS 11.6.1 (ARM64 M1 以及 X86都如此)
- 运行
GoMonkey
的最新Demo - 使用的gomonkey 2.2.0
描述:
- 使用
GOARCH=amd64
可以解决, 但是无法debug很不幸. - 在Linux/Windows都是正常
- macos-golink-wrapper 方案可以解决x86上此问题, 但是arm64依然不行
- 如果使用单元测试框架结果导致无法断点调试也是太影响了
About this issue
- Original URL
- State: open
- Created 3 years ago
- Reactions: 2
- Comments: 59 (5 by maintainers)
Suggest to give up
换armd64无法断点调试, 而且编译性能差, 基本上等于没解决
on macos, you can try command [go test -ldflags=“-extldflags=”-Wl,-segprot,__TEXT,rwx,rx""],go test command with option extldflags. which have same effect with https://github.com/eisenxp/macos-golink-wrapper, but do not need wrap go link
Waiting for a solution
it is fixed by a very easy way.
err := syscall.Mprotect(page, syscall.PROT_READ|syscall.PROT_WRITE|syscall.PROT_EXEC)
change to
err := syscall.Mprotect(page, syscall.PROT_READ|syscall.PROT_WRITE)
in the function `func modifyBinary(target uintptr, bytes []byte) { function := entryAddress(target, len(bytes))
}`
“github.com/agiledragon/gomonkey/v2” modify_binary_darwin.go
这个测试可用,但是这里的表述有点问题,我补充一下: 1、只需要修改文件
modify_binary_darwin.go
第7行,删除参数:syscall.PROT_EXEC 最终:err := mprotectCrossPage(target, len(bytes), syscall.PROT_READ|syscall.PROT_WRITE)
2、使用go test -gcflags=all=-l 进行测试v2.11.0 has been released!
not work for me
I do some test of mprotect on m1.
conclusion: m1 memory page can’t has W+X at same time, and TEXT segment must have X, so we can’t write TEXT segment😭
GOARCH=amd64
is the only wayI tried this and it…sort of worked? However, there seemed to be some sort of timing issue - I noticed that the patch reset wasn’t taking effect.
Adding a small sleep seemed to fix that, but without understanding the problem, I don’t trust that as a solution. For reference, here was my full
modifyBinary()
frommodify_binary_darwin.go
:After this change, the tests in
gomonkey/test
suite failed in similar ways between my M1 and non-M1 machines.More specifically, everything passed except
apply_private_method_test.go
. On M1, I get anunexpected fault address
, whereas on non-M1 I getretrieve method by name failed
.I update gomonkey from v2.9.0 to v2.11.0 and finally fix this problem!
Additional info:
It works on my M2 Mac! 🎉
Not work for me 😦
My env: M1 Pro, 13.3.1, Go, go1.20.1 darwin/arm64
I tried with this file
when I run this file, I got
segmentation fault
Test ok at Mac M1 13.2.1 Please follow step below to solve problem “permission denied” follow this issues steam solution and test at Mac M1.
modify_binary_darwin.go
in yourGoProjects/pkg
we have implemented a compile-time code rewrite to support any function mock, in general it does not rely on any architecture hack, anyone interested ? we’re using it to bootstrap our test cases, wish it could finally be a solution to function-level mock problems.
This will make it impossible to debug with breakpoints
in mac M1 I get
Process finished with the exit code 139 (interrupted by signal 11: SIGSEGV)
my code is
im using version 2.11.0, golang 1.20.5
The solution for mac with intel: add go tool args:
-gcflags "all=-N -l" -ldflags="-extldflags="-Wl,-segprot,__TEXT,rwx,rx""
收到!
@agiledragon Hi guy I made it here: https://github.com/xhd2015/go-mock, the brief idea is take from https://go.dev/blog/cover, that we insert a Trap call in beginning of each function’s body, to catch the control flow of the original function, meanwhile does not change the line layout of the original files so that debugging info are still accurate.
@xhd2015 Show your code.
arm64 MacOS can use amd64 version go, I change to go1.16.11 darwin/amd64,and https://github.com/eisenxp/macos-golink-wrapper
still got “permission denied”
https://github.com/eisenxp/macos-golink-wrapper