Sanitized root snapshot from private source commit a72903c63e1753f9e6ffbf40453c0830bdfc05c5 and tree 295641e67eef5979da76746d8ae271249568263e. Private development history and workflows are excluded by the exact allowlist. AI-assisted: OpenAI Codex helped implement, test, and audit this preview. Signed-off-by: Cole Speelman <crspeelman@gmail.com>
33 lines
667 B
Go
33 lines
667 B
Go
//go:build linux
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
package deploy
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
type fileLock struct{ file *os.File }
|
|
|
|
func acquireLock(path string) (*fileLock, error) {
|
|
file, err := os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0o600)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := syscall.Flock(int(file.Fd()), syscall.LOCK_EX|syscall.LOCK_NB); err != nil {
|
|
_ = file.Close()
|
|
return nil, errors.New("deployment lock is held")
|
|
}
|
|
return &fileLock{file: file}, nil
|
|
}
|
|
func (l *fileLock) Close() error {
|
|
if l == nil || l.file == nil {
|
|
return nil
|
|
}
|
|
_ = syscall.Flock(int(l.file.Fd()), syscall.LOCK_UN)
|
|
return l.file.Close()
|
|
}
|