executable_sysctl.go 891 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Copyright 2016 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build freebsd || dragonfly
  5. package os
  6. import (
  7. "syscall"
  8. "unsafe"
  9. )
  10. func executable() (string, error) {
  11. mib := [4]int32{_CTL_KERN, _KERN_PROC, _KERN_PROC_PATHNAME, -1}
  12. n := uintptr(0)
  13. // get length
  14. _, _, err := syscall.Syscall6(syscall.SYS___SYSCTL, uintptr(unsafe.Pointer(&mib[0])), 4, 0, uintptr(unsafe.Pointer(&n)), 0, 0)
  15. if err != 0 {
  16. return "", err
  17. }
  18. if n == 0 { // shouldn't happen
  19. return "", nil
  20. }
  21. buf := make([]byte, n)
  22. _, _, err = syscall.Syscall6(syscall.SYS___SYSCTL, uintptr(unsafe.Pointer(&mib[0])), 4, uintptr(unsafe.Pointer(&buf[0])), uintptr(unsafe.Pointer(&n)), 0, 0)
  23. if err != 0 {
  24. return "", err
  25. }
  26. if n == 0 { // shouldn't happen
  27. return "", nil
  28. }
  29. return string(buf[:n-1]), nil
  30. }