-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: "panic: runtime error: growslice: cap out of range" when creating slice from an unsafe.Pointer in another part of program #34288
Comments
Your
Are you sure you're doing that? A safer bet is to do:
Then there's no chance a missing write barrier could corrupt the world (like I think might be happening with your code). |
Thanks a lot for your help. Unfortunately changing diff --git a/process/process_windows.go b/process/process_windows.go
index 1abf7ac..3582b72 100644
--- a/process/process_windows.go
+++ b/process/process_windows.go
@@ -7,6 +7,7 @@ import (
"fmt"
"os"
"reflect"
+ "runtime"
"strings"
"syscall"
"time"
@@ -304,8 +305,10 @@ type unicodeString struct {
}
func (u unicodeString) String() string {
- var s []uint16
+ s := (*[1e9]uint16)(unsafe.Pointer(u.Buffer))[:u.Length/2]
+ defer runtime.KeepAlive(s)
hdr := (*reflect.SliceHeader)(unsafe.Pointer(&s))
+ defer runtime.KeepAlive(hdr)
hdr.Data = uintptr(unsafe.Pointer(u.Buffer))
hdr.Len = int(u.Length / 2)
hdr.Cap = int(u.MaximumLength / 2) |
You want just:
|
Same behavior when redefining the unicodeString.String() function like this unfortunately (and it even still works properly as an elevated user also). |
I don't know what the problem might be then. |
I don't have time to debug this code. Sorry. Alex |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes (1.13, also reproducible on 1.12.9)
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
As we are calling specific win32 API not available on previous versions, Windows 8.1+ is needed to reproduce.
main.go
What did you expect to see?
The commandline for all (non-elevated) processes on the host. Extract sample using WMI (current implementation in gopsutil master):
What did you see instead?
When running as an elevated user, the main.go sample is able to retrieve every possible process commandline it can retrieve like the WMI implementation. The issue occurs with non-elevated user with a panic runtime as explained in shirou/gopsutil#250 (comment).
Commenting out this line doesn't trigger the panic and hints that the issue resides in the unicodeString.String() function (got it from an UNICODE_STRING implementation in hillu/go-ntdll). What's puzzling is that it works properly running as an elevated user and that the stacktrace looks completely unrelated (in fmt stdlib), the stacktrace appears even for a PID where
buf.String()
is not even called, hinting about some memory/stack corruption maybe?The text was updated successfully, but these errors were encountered: