2021-08-18 21:35:22 -04:00
|
|
|
//go:build solaris
|
2017-02-09 01:27:35 -05:00
|
|
|
// +build solaris
|
|
|
|
|
2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-02-09 01:27:35 -05:00
|
|
|
|
|
|
|
package lock
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2017-06-12 20:40:28 -04:00
|
|
|
// lockedOpenFile is an internal function.
|
|
|
|
func lockedOpenFile(path string, flag int, perm os.FileMode, rlockType int) (*LockedFile, error) {
|
2017-02-09 01:27:35 -05:00
|
|
|
var lockType int16
|
|
|
|
switch flag {
|
|
|
|
case syscall.O_RDONLY:
|
|
|
|
lockType = syscall.F_RDLCK
|
|
|
|
case syscall.O_WRONLY:
|
|
|
|
fallthrough
|
|
|
|
case syscall.O_RDWR:
|
|
|
|
fallthrough
|
|
|
|
case syscall.O_WRONLY | syscall.O_CREAT:
|
|
|
|
fallthrough
|
|
|
|
case syscall.O_RDWR | syscall.O_CREAT:
|
|
|
|
lockType = syscall.F_WRLCK
|
|
|
|
default:
|
2019-09-11 13:21:43 -04:00
|
|
|
return nil, &os.PathError{
|
|
|
|
Op: "open",
|
|
|
|
Path: path,
|
|
|
|
Err: syscall.EINVAL,
|
|
|
|
}
|
2017-02-09 01:27:35 -05:00
|
|
|
}
|
|
|
|
|
2017-06-12 20:40:28 -04:00
|
|
|
var lock = syscall.Flock_t{
|
|
|
|
Start: 0,
|
|
|
|
Len: 0,
|
|
|
|
Pid: 0,
|
|
|
|
Type: lockType,
|
|
|
|
Whence: 0,
|
|
|
|
}
|
2017-02-09 01:27:35 -05:00
|
|
|
|
|
|
|
f, err := os.OpenFile(path, flag, perm)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-06-12 20:40:28 -04:00
|
|
|
if err = syscall.FcntlFlock(f.Fd(), rlockType, &lock); err != nil {
|
2017-02-09 01:27:35 -05:00
|
|
|
f.Close()
|
2017-06-12 20:40:28 -04:00
|
|
|
if err == syscall.EAGAIN {
|
2017-06-13 11:29:07 -04:00
|
|
|
err = ErrAlreadyLocked
|
2017-06-12 20:40:28 -04:00
|
|
|
}
|
2017-02-09 01:27:35 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
st, err := os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
f.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if st.IsDir() {
|
|
|
|
f.Close()
|
|
|
|
return nil, &os.PathError{
|
|
|
|
Op: "open",
|
|
|
|
Path: path,
|
|
|
|
Err: syscall.EISDIR,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &LockedFile{f}, nil
|
|
|
|
}
|
2017-06-12 20:40:28 -04:00
|
|
|
|
|
|
|
// TryLockedOpenFile - tries a new write lock, functionality
|
|
|
|
// it is similar to LockedOpenFile with with syscall.LOCK_EX
|
|
|
|
// mode but along with syscall.LOCK_NB such that the function
|
|
|
|
// doesn't wait forever but instead returns if it cannot
|
|
|
|
// acquire a write lock.
|
|
|
|
func TryLockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error) {
|
|
|
|
return lockedOpenFile(path, flag, perm, syscall.F_SETLK)
|
|
|
|
}
|
|
|
|
|
|
|
|
// LockedOpenFile - initializes a new lock and protects
|
|
|
|
// the file from concurrent access across mount points.
|
|
|
|
// This implementation doesn't support all the open
|
|
|
|
// flags and shouldn't be considered as replacement
|
|
|
|
// for os.OpenFile().
|
|
|
|
func LockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error) {
|
|
|
|
return lockedOpenFile(path, flag, perm, syscall.F_SETLKW)
|
|
|
|
}
|
2018-07-13 21:37:02 -04:00
|
|
|
|
|
|
|
// Open - Call os.OpenFile
|
|
|
|
func Open(path string, flag int, perm os.FileMode) (*os.File, error) {
|
|
|
|
return os.OpenFile(path, flag, perm)
|
|
|
|
}
|