| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/go/src/cmd/go/internal/toolchain/ |
Upload File : |
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build darwin || freebsd || linux || netbsd || openbsd
package toolchain
import (
"io/fs"
"syscall"
)
// sysWriteBits determines which bits to OR into the mode to make a directory writable.
// It must be called when there are no other file system operations happening.
func sysWriteBits() fs.FileMode {
// Read current umask. There's no way to read it without also setting it,
// so set it conservatively and then restore the original one.
m := syscall.Umask(0o777)
syscall.Umask(m) // restore bits
if m&0o22 == 0o22 { // group and world are unwritable by default
return 0o700
}
if m&0o2 == 0o2 { // group is writable by default, but not world
return 0o770
}
return 0o777 // everything is writable by default
}