Source file src/runtime/set_vma_name_linux.go

     1  // Copyright 2025 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  
     5  //go:build linux
     6  
     7  package runtime
     8  
     9  import (
    10  	"internal/runtime/atomic"
    11  	"internal/runtime/syscall"
    12  	"unsafe"
    13  )
    14  
    15  var prSetVMAUnsupported atomic.Bool
    16  
    17  // setVMAName calls prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, start, len, name)
    18  func setVMAName(start unsafe.Pointer, length uintptr, name string) {
    19  	if debug.decoratemappings == 0 || prSetVMAUnsupported.Load() {
    20  		return
    21  	}
    22  
    23  	var sysName [80]byte
    24  	n := copy(sysName[:], " Go: ")
    25  	copy(sysName[n:79], name) // leave final byte zero
    26  
    27  	_, _, err := syscall.Syscall6(syscall.SYS_PRCTL, syscall.PR_SET_VMA, syscall.PR_SET_VMA_ANON_NAME, uintptr(start), length, uintptr(unsafe.Pointer(&sysName[0])), 0)
    28  	if err == _EINVAL {
    29  		prSetVMAUnsupported.Store(true)
    30  	}
    31  	// ignore other errors
    32  }
    33  

View as plain text