2011-04-02 15:28:58 -06:00
|
|
|
// Copyright 2009 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.
|
|
|
|
|
2018-03-04 04:16:18 -07:00
|
|
|
// +build darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris windows
|
build: add build comments to core packages
The go/build package already recognizes
system-specific file names like
mycode_darwin.go
mycode_darwin_386.go
mycode_386.s
However, it is also common to write files that
apply to multiple architectures, so a recent CL added
to go/build the ability to process comments
listing a set of conditions for building. For example:
// +build darwin freebsd openbsd/386
says that this file should be compiled only on
OS X, FreeBSD, or 32-bit x86 OpenBSD systems.
These conventions are not yet documented
(hence this long CL description).
This CL adds build comments to the multi-system
files in the core library, a step toward making it
possible to use go/build to build them.
With this change go/build can handle crypto/rand,
exec, net, path/filepath, os/user, and time.
os and syscall need additional adjustments.
R=golang-dev, r, gri, r, gustavo
CC=golang-dev
https://golang.org/cl/5011046
2011-09-15 14:48:57 -06:00
|
|
|
|
2011-04-02 15:28:58 -06:00
|
|
|
package os
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
2011-11-30 10:01:46 -07:00
|
|
|
"time"
|
2011-04-02 15:28:58 -06:00
|
|
|
)
|
|
|
|
|
2011-04-25 14:58:00 -06:00
|
|
|
func sigpipe() // implemented in package runtime
|
|
|
|
|
2012-02-12 20:21:39 -07:00
|
|
|
// Readlink returns the destination of the named symbolic link.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Readlink(name string) (string, error) {
|
2011-04-02 15:28:58 -06:00
|
|
|
for len := 128; ; len *= 2 {
|
|
|
|
b := make([]byte, len)
|
2016-10-28 11:01:51 -06:00
|
|
|
n, e := fixCount(syscall.Readlink(fixLongPath(name), b))
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
|
|
|
return "", &PathError{"readlink", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
if n < len {
|
|
|
|
return string(b[0:n]), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-19 16:45:18 -07:00
|
|
|
// syscallMode returns the syscall-specific mode bits from Go's portable mode bits.
|
|
|
|
func syscallMode(i FileMode) (o uint32) {
|
|
|
|
o |= uint32(i.Perm())
|
|
|
|
if i&ModeSetuid != 0 {
|
|
|
|
o |= syscall.S_ISUID
|
|
|
|
}
|
|
|
|
if i&ModeSetgid != 0 {
|
|
|
|
o |= syscall.S_ISGID
|
|
|
|
}
|
|
|
|
if i&ModeSticky != 0 {
|
|
|
|
o |= syscall.S_ISVTX
|
|
|
|
}
|
|
|
|
// No mapping for Go's ModeTemporary (plan9 only).
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-06-29 16:47:29 -06:00
|
|
|
// See docs in file.go:Chmod.
|
|
|
|
func chmod(name string, mode FileMode) error {
|
2017-06-28 11:09:15 -06:00
|
|
|
if e := syscall.Chmod(fixLongPath(name), syscallMode(mode)); e != nil {
|
2011-11-13 20:44:52 -07:00
|
|
|
return &PathError{"chmod", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-29 16:47:29 -06:00
|
|
|
// See docs in file.go:(*File).Chmod.
|
|
|
|
func (f *File) chmod(mode FileMode) error {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("chmod"); err != nil {
|
|
|
|
return err
|
2013-08-19 22:33:03 -06:00
|
|
|
}
|
2017-02-10 16:17:38 -07:00
|
|
|
if e := f.pfd.Fchmod(syscallMode(mode)); e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
return f.wrapErr("chmod", e)
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chown changes the numeric uid and gid of the named file.
|
|
|
|
// If the file is a symbolic link, it changes the uid and gid of the link's target.
|
2018-04-11 16:51:17 -06:00
|
|
|
// A uid or gid of -1 means to not change that value.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2017-06-29 16:47:29 -06:00
|
|
|
//
|
2018-04-11 16:51:17 -06:00
|
|
|
// On Windows or Plan 9, Chown always returns the syscall.EWINDOWS or
|
|
|
|
// EPLAN9 error, wrapped in *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Chown(name string, uid, gid int) error {
|
2011-11-13 20:44:52 -07:00
|
|
|
if e := syscall.Chown(name, uid, gid); e != nil {
|
|
|
|
return &PathError{"chown", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lchown changes the numeric uid and gid of the named file.
|
|
|
|
// If the file is a symbolic link, it changes the uid and gid of the link itself.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2017-06-29 16:47:29 -06:00
|
|
|
//
|
|
|
|
// On Windows, it always returns the syscall.EWINDOWS error, wrapped
|
|
|
|
// in *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func Lchown(name string, uid, gid int) error {
|
2011-11-13 20:44:52 -07:00
|
|
|
if e := syscall.Lchown(name, uid, gid); e != nil {
|
|
|
|
return &PathError{"lchown", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chown changes the numeric uid and gid of the named file.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2017-06-29 16:47:29 -06:00
|
|
|
//
|
|
|
|
// On Windows, it always returns the syscall.EWINDOWS error, wrapped
|
|
|
|
// in *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func (f *File) Chown(uid, gid int) error {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("chown"); err != nil {
|
|
|
|
return err
|
2013-08-19 22:33:03 -06:00
|
|
|
}
|
2017-02-10 16:17:38 -07:00
|
|
|
if e := f.pfd.Fchown(uid, gid); e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
return f.wrapErr("chown", e)
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Truncate changes the size of the file.
|
|
|
|
// It does not change the I/O offset.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func (f *File) Truncate(size int64) error {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("truncate"); err != nil {
|
|
|
|
return err
|
2013-08-19 22:33:03 -06:00
|
|
|
}
|
2017-02-10 16:17:38 -07:00
|
|
|
if e := f.pfd.Ftruncate(size); e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
return f.wrapErr("truncate", e)
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync commits the current contents of the file to stable storage.
|
|
|
|
// Typically, this means flushing the file system's in-memory copy
|
|
|
|
// of recently written data to disk.
|
2015-07-17 09:26:29 -06:00
|
|
|
func (f *File) Sync() error {
|
2016-10-06 22:46:56 -06:00
|
|
|
if err := f.checkValid("sync"); err != nil {
|
|
|
|
return err
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
2017-02-10 16:17:38 -07:00
|
|
|
if e := f.pfd.Fsync(); e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
return f.wrapErr("sync", e)
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chtimes changes the access and modification times of the named
|
|
|
|
// file, similar to the Unix utime() or utimes() functions.
|
|
|
|
//
|
2011-11-30 10:01:46 -07:00
|
|
|
// The underlying filesystem may truncate or round the values to a
|
|
|
|
// less precise time unit.
|
2012-02-08 22:55:36 -07:00
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-30 10:01:46 -07:00
|
|
|
func Chtimes(name string, atime time.Time, mtime time.Time) error {
|
2012-12-13 14:02:39 -07:00
|
|
|
var utimes [2]syscall.Timespec
|
|
|
|
utimes[0] = syscall.NsecToTimespec(atime.UnixNano())
|
|
|
|
utimes[1] = syscall.NsecToTimespec(mtime.UnixNano())
|
2016-10-28 11:01:51 -06:00
|
|
|
if e := syscall.UtimesNano(fixLongPath(name), utimes[0:]); e != nil {
|
2011-11-13 20:44:52 -07:00
|
|
|
return &PathError{"chtimes", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-02-10 16:17:38 -07:00
|
|
|
|
|
|
|
// Chdir changes the current working directory to the file,
|
|
|
|
// which must be a directory.
|
|
|
|
// If there is an error, it will be of type *PathError.
|
|
|
|
func (f *File) Chdir() error {
|
|
|
|
if err := f.checkValid("chdir"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if e := f.pfd.Fchdir(); e != nil {
|
2017-04-25 18:47:34 -06:00
|
|
|
return f.wrapErr("chdir", e)
|
2017-02-10 16:17:38 -07:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-10-17 14:57:34 -06:00
|
|
|
// setDeadline sets the read and write deadline.
|
|
|
|
func (f *File) setDeadline(t time.Time) error {
|
|
|
|
if err := f.checkValid("SetDeadline"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return f.pfd.SetDeadline(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
// setReadDeadline sets the read deadline.
|
|
|
|
func (f *File) setReadDeadline(t time.Time) error {
|
|
|
|
if err := f.checkValid("SetReadDeadline"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return f.pfd.SetReadDeadline(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
// setWriteDeadline sets the write deadline.
|
|
|
|
func (f *File) setWriteDeadline(t time.Time) error {
|
|
|
|
if err := f.checkValid("SetWriteDeadline"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return f.pfd.SetWriteDeadline(t)
|
|
|
|
}
|
|
|
|
|
2017-02-10 16:17:38 -07:00
|
|
|
// checkValid checks whether f is valid for use.
|
|
|
|
// If not, it returns an appropriate error, perhaps incorporating the operation name op.
|
|
|
|
func (f *File) checkValid(op string) error {
|
|
|
|
if f == nil {
|
|
|
|
return ErrInvalid
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|