-
Notifications
You must be signed in to change notification settings - Fork 17.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
os: handle file creation with close-on-exec flag correctly on darwin,…
… freebsd Fixes #7187. Update #7193 LGTM=bradfitz R=golang-codereviews, dave, rsc, minux.ma, bradfitz CC=golang-codereviews https://golang.org/cl/64510043
- Loading branch information
Showing
5 changed files
with
75 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright 2014 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. | ||
|
||
package os | ||
|
||
import "syscall" | ||
|
||
// supportsCloseOnExec reports whether the platform supports the | ||
// O_CLOEXEC flag. | ||
var supportsCloseOnExec bool | ||
|
||
func init() { | ||
// Seems like kern.osreldate is veiled on latest OS X. We use | ||
// kern.osrelease instead. | ||
osver, err := syscall.Sysctl("kern.osrelease") | ||
if err != nil { | ||
return | ||
} | ||
var i int | ||
for i = range osver { | ||
if osver[i] != '.' { | ||
continue | ||
} | ||
} | ||
// The O_CLOEXEC flag was introduced in OS X 10.7 (Darwin | ||
// 11.0.0). See http://support.apple.com/kb/HT1633. | ||
if i > 2 || i == 2 && osver[0] >= '1' && osver[1] >= '1' { | ||
supportsCloseOnExec = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright 2014 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. | ||
|
||
package os | ||
|
||
import "syscall" | ||
|
||
// supportsCloseOnExec reports whether the platform supports the | ||
// O_CLOEXEC flag. | ||
var supportsCloseOnExec bool | ||
|
||
func init() { | ||
osrel, err := syscall.SysctlUint32("kern.osreldate") | ||
if err != nil { | ||
return | ||
} | ||
// The O_CLOEXEC flag was introduced in FreeBSD 8.3. | ||
// See http://www.freebsd.org/doc/en/books/porters-handbook/freebsd-versions.html. | ||
if osrel >= 803000 { | ||
supportsCloseOnExec = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright 2014 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. | ||
|
||
package os | ||
|
||
// supportsCloseOnExec reports whether the platform supports the | ||
// O_CLOEXEC flag. | ||
const supportsCloseOnExec = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright 2014 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. | ||
|
||
// +build dragonfly linux netbsd openbsd solaris | ||
|
||
package os | ||
|
||
// supportsCloseOnExec reports whether the platform supports the | ||
// O_CLOEXEC flag. | ||
const supportsCloseOnExec = true |