Files
sqlite3/vfs/os_bsd.go

111 lines
3.0 KiB
Go
Raw Normal View History

2024-11-29 15:51:51 +00:00
//go:build ((freebsd || openbsd || netbsd || dragonfly || illumos) && !sqlite3_dotlk) || sqlite3_flock
2023-03-29 15:01:25 +01:00
2023-06-01 18:11:37 +01:00
package vfs
2023-03-29 15:01:25 +01:00
import (
"os"
"golang.org/x/sys/unix"
)
2024-09-17 23:09:05 +01:00
func osGetSharedLock(file *os.File) _ErrorCode {
2024-12-16 13:15:00 +00:00
return osFlock(file, unix.LOCK_SH|unix.LOCK_NB, _IOERR_RDLOCK)
2023-03-29 15:01:25 +01:00
}
2024-09-17 23:09:05 +01:00
func osGetReservedLock(file *os.File) _ErrorCode {
2024-12-16 13:15:00 +00:00
rc := osFlock(file, unix.LOCK_EX|unix.LOCK_NB, _IOERR_LOCK)
2024-06-12 20:41:51 +01:00
if rc == _BUSY {
2024-11-07 12:18:42 +00:00
// The documentation states that a lock is upgraded by
// releasing the previous lock, then acquiring the new lock.
// Going over the source code of various BSDs, though,
// with LOCK_NB, the lock is not released,
// and EAGAIN is returned holding the shared lock.
// Still, if we're already in a transaction, we want to abort it,
// so return BUSY_SNAPSHOT here. If there's no transaction active,
// SQLite will change this back to SQLITE_BUSY,
// and invoke the busy handler if appropriate.
2024-06-12 20:41:51 +01:00
return _BUSY_SNAPSHOT
}
return rc
2023-03-29 15:01:25 +01:00
}
2024-09-17 23:09:05 +01:00
func osGetExclusiveLock(file *os.File, state *LockLevel) _ErrorCode {
if *state >= LOCK_RESERVED {
return _OK
}
return osGetReservedLock(file)
}
func osDowngradeLock(file *os.File, _ LockLevel) _ErrorCode {
2024-12-16 13:15:00 +00:00
rc := osFlock(file, unix.LOCK_SH|unix.LOCK_NB, _IOERR_RDLOCK)
2024-09-17 23:09:05 +01:00
if rc == _BUSY {
2024-11-07 12:18:42 +00:00
// The documentation states that a lock is downgraded by
// releasing the previous lock then acquiring the new lock.
// Going over the source code of various BSDs, though,
// with LOCK_SH|LOCK_NB this should never happen.
// Return IOERR_RDLOCK, as BUSY would cause an assert to fail.
2024-09-17 23:09:05 +01:00
return _IOERR_RDLOCK
}
return _OK
}
func osReleaseLock(file *os.File, _ LockLevel) _ErrorCode {
2025-03-13 23:38:50 +00:00
for {
err := unix.Flock(int(file.Fd()), unix.LOCK_UN)
if err == nil {
return _OK
}
if err != unix.EINTR {
return _IOERR_UNLOCK
}
2024-09-17 23:09:05 +01:00
}
}
func osCheckReservedLock(file *os.File) (bool, _ErrorCode) {
2024-11-07 12:18:42 +00:00
// Test the RESERVED lock with fcntl(F_GETLK).
// This only works on systems where fcntl and flock are compatible.
// However, SQLite only calls this while holding a shared lock,
// so the difference is immaterial.
2024-09-17 23:09:05 +01:00
lock, rc := osTestLock(file, _RESERVED_BYTE, 1)
return lock == unix.F_WRLCK, rc
}
2024-12-16 13:15:00 +00:00
func osFlock(file *os.File, how int, def _ErrorCode) _ErrorCode {
2024-09-17 23:09:05 +01:00
err := unix.Flock(int(file.Fd()), how)
return osLockErrorCode(err, def)
}
2024-12-16 13:15:00 +00:00
func osReadLock(file *os.File, start, len int64) _ErrorCode {
return osLock(file, unix.F_RDLCK, start, len, _IOERR_RDLOCK)
}
func osWriteLock(file *os.File, start, len int64) _ErrorCode {
return osLock(file, unix.F_WRLCK, start, len, _IOERR_LOCK)
}
func osLock(file *os.File, typ int16, start, len int64, def _ErrorCode) _ErrorCode {
err := unix.FcntlFlock(file.Fd(), unix.F_SETLK, &unix.Flock_t{
Type: typ,
Start: start,
Len: len,
})
return osLockErrorCode(err, def)
}
func osUnlock(file *os.File, start, len int64) _ErrorCode {
2025-03-13 23:38:50 +00:00
lock := unix.Flock_t{
2024-12-16 13:15:00 +00:00
Type: unix.F_UNLCK,
Start: start,
Len: len,
}
2025-03-13 23:38:50 +00:00
for {
err := unix.FcntlFlock(file.Fd(), unix.F_SETLK, &lock)
if err == nil {
return _OK
}
if err != unix.EINTR {
return _IOERR_UNLOCK
}
}
2024-12-16 13:15:00 +00:00
}