Files
sqlite3/vfs/shm.go

184 lines
4.1 KiB
Go
Raw Normal View History

2024-04-24 01:07:17 +01:00
//go:build (darwin || linux) && (amd64 || arm64 || riscv64) && !(sqlite3_flock || sqlite3_noshm || sqlite3_nosys)
package vfs
import (
"context"
"io"
"os"
"github.com/ncruces/go-sqlite3/internal/util"
"github.com/tetratelabs/wazero/api"
"golang.org/x/sys/unix"
)
2024-04-28 10:33:39 +01:00
// SupportsSharedMemory is false on platforms that do not support shared memory.
// To use [WAL without shared-memory], you need to set [EXCLUSIVE locking mode].
//
// [WAL without shared-memory]: https://sqlite.org/wal.html#noshm
// [EXCLUSIVE locking mode]: https://sqlite.org/pragma.html#pragma_locking_mode
const SupportsSharedMemory = true
const (
_SHM_NLOCK = 8
_SHM_BASE = 120
_SHM_DMS = _SHM_BASE + _SHM_NLOCK
)
2024-04-27 20:53:54 +01:00
func (f *vfsFile) SharedMemory() SharedMemory { return f.shm }
// NewSharedMemory returns a shared-memory WAL-index
2024-04-28 10:33:39 +01:00
// backed by a file with the given path.
// It will return nil if shared-memory is not supported,
2024-04-27 20:53:54 +01:00
// or not appropriate for the given flags.
2024-04-28 10:33:39 +01:00
// Only [OPEN_MAIN_DB] databases may need a WAL-index.
// You must ensure all concurrent accesses to a database
// use shared-memory instances created with the same path.
2024-04-27 20:53:54 +01:00
func NewSharedMemory(path string, flags OpenFlag) SharedMemory {
2024-04-28 10:33:39 +01:00
if flags&OPEN_MAIN_DB == 0 || flags&(OPEN_DELETEONCLOSE|OPEN_MEMORY) != 0 {
2024-04-27 20:53:54 +01:00
return nil
}
return &vfsShm{
path: path,
readOnly: flags&OPEN_READONLY != 0,
}
}
type vfsShm struct {
*os.File
path string
2024-04-28 10:33:39 +01:00
regions []*util.MappedRegion
2024-04-27 20:53:54 +01:00
readOnly bool
}
2024-04-19 18:51:27 +01:00
2024-06-06 00:09:14 +01:00
func (s *vfsShm) shmOpen() _ErrorCode {
2024-04-27 20:53:54 +01:00
if s.File == nil {
var flag int
2024-04-27 20:53:54 +01:00
if s.readOnly {
2024-04-13 13:43:24 +01:00
flag = unix.O_RDONLY
} else {
2024-04-13 13:43:24 +01:00
flag = unix.O_RDWR
}
2024-04-27 20:53:54 +01:00
f, err := os.OpenFile(s.path,
2024-04-13 13:43:24 +01:00
flag|unix.O_CREAT|unix.O_NOFOLLOW, 0666)
if err != nil {
return _CANTOPEN
}
2024-04-27 20:53:54 +01:00
s.File = f
}
// Dead man's switch.
2024-04-27 20:53:54 +01:00
if lock, rc := osGetLock(s.File, _SHM_DMS, 1); rc != _OK {
return _IOERR_LOCK
} else if lock == unix.F_WRLCK {
return _BUSY
} else if lock == unix.F_UNLCK {
2024-04-27 20:53:54 +01:00
if s.readOnly {
return _READONLY_CANTINIT
}
2024-04-27 20:53:54 +01:00
if rc := osWriteLock(s.File, _SHM_DMS, 1, 0); rc != _OK {
return rc
}
2024-04-27 20:53:54 +01:00
if err := s.Truncate(0); err != nil {
return _IOERR_SHMOPEN
}
}
2024-04-27 20:53:54 +01:00
if rc := osReadLock(s.File, _SHM_DMS, 1, 0); rc != _OK {
return rc
}
2024-06-06 00:09:14 +01:00
return _OK
}
2024-06-06 00:09:14 +01:00
func (s *vfsShm) shmMap(ctx context.Context, mod api.Module, id, size int32, extend bool) (uint32, _ErrorCode) {
// Ensure size is a multiple of the OS page size.
if int(size)&(unix.Getpagesize()-1) != 0 {
return 0, _IOERR_SHMMAP
}
2024-06-06 00:09:14 +01:00
if rc := s.shmOpen(); rc != _OK {
return 0, rc
}
// Check if file is big enough.
2024-04-27 20:53:54 +01:00
o, err := s.Seek(0, io.SeekEnd)
if err != nil {
return 0, _IOERR_SHMSIZE
}
2024-04-27 20:53:54 +01:00
if n := (int64(id) + 1) * int64(size); n > o {
if !extend {
2024-06-06 00:09:14 +01:00
return 0, _OK
}
2024-04-27 20:53:54 +01:00
err := osAllocate(s.File, n)
if err != nil {
return 0, _IOERR_SHMSIZE
}
}
2024-04-13 13:43:24 +01:00
var prot int
2024-04-27 20:53:54 +01:00
if s.readOnly {
2024-04-13 13:43:24 +01:00
prot = unix.PROT_READ
} else {
prot = unix.PROT_READ | unix.PROT_WRITE
}
2024-04-27 20:53:54 +01:00
r, err := util.MapRegion(ctx, mod, s.File, int64(id)*int64(size), size, prot)
if err != nil {
2024-06-06 00:09:14 +01:00
return 0, _IOERR_SHMMAP
}
2024-04-27 20:53:54 +01:00
s.regions = append(s.regions, r)
2024-06-10 00:24:15 +01:00
if s.readOnly {
return r.Ptr, _READONLY
}
2024-06-06 00:09:14 +01:00
return r.Ptr, _OK
}
2024-06-06 00:09:14 +01:00
func (s *vfsShm) shmLock(offset, n int32, flags _ShmFlag) _ErrorCode {
// Argument check.
2024-04-11 12:00:17 +01:00
if n <= 0 || offset < 0 || offset+n > _SHM_NLOCK {
panic(util.AssertErr())
}
switch flags {
case
_SHM_LOCK | _SHM_SHARED,
_SHM_LOCK | _SHM_EXCLUSIVE,
_SHM_UNLOCK | _SHM_SHARED,
_SHM_UNLOCK | _SHM_EXCLUSIVE:
//
default:
panic(util.AssertErr())
}
if n != 1 && flags&_SHM_EXCLUSIVE == 0 {
panic(util.AssertErr())
}
switch {
case flags&_SHM_UNLOCK != 0:
2024-04-27 20:53:54 +01:00
return osUnlock(s.File, _SHM_BASE+int64(offset), int64(n))
case flags&_SHM_SHARED != 0:
2024-04-27 20:53:54 +01:00
return osReadLock(s.File, _SHM_BASE+int64(offset), int64(n), 0)
case flags&_SHM_EXCLUSIVE != 0:
2024-04-27 20:53:54 +01:00
return osWriteLock(s.File, _SHM_BASE+int64(offset), int64(n), 0)
default:
panic(util.AssertErr())
}
}
2024-04-27 20:53:54 +01:00
func (s *vfsShm) shmUnmap(delete bool) {
2024-04-28 10:33:39 +01:00
if s.File == nil {
return
}
// Unmap regions.
2024-04-27 20:53:54 +01:00
for _, r := range s.regions {
r.Unmap()
}
2024-04-27 20:53:54 +01:00
clear(s.regions)
s.regions = s.regions[:0]
// Close the file.
2024-04-28 10:33:39 +01:00
if delete {
os.Remove(s.path)
}
s.Close()
2024-04-27 20:53:54 +01:00
s.File = nil
}