summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/internal/toolchain/umask_unix.go
blob: cbe4307311f806a64f5c02d8cd7c5ce5c69b986f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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
}