2024-09-22 00:29:36 +09:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2024-10-16 14:38:57 +09:00
|
|
|
|
2024-12-18 13:45:55 +09:00
|
|
|
"git.ophivana.moe/security/fortify/fipc"
|
2024-09-22 00:29:36 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
type Store interface {
|
|
|
|
// Do calls f exactly once and ensures store exclusivity until f returns.
|
|
|
|
// Returns whether f is called and any errors during the locking process.
|
|
|
|
// Backend provided to f becomes invalid as soon as f returns.
|
|
|
|
Do(f func(b Backend)) (bool, error)
|
|
|
|
|
|
|
|
// Close releases any resources held by Store.
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Backend provides access to the store
|
|
|
|
type Backend interface {
|
|
|
|
Save(state *State) error
|
|
|
|
Destroy(pid int) error
|
|
|
|
Load() ([]*State, error)
|
|
|
|
Len() (int, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// State is the on-disk format for a fortified process's state information
|
|
|
|
type State struct {
|
2024-12-18 13:45:55 +09:00
|
|
|
// fortify instance id
|
|
|
|
ID [16]byte `json:"instance"`
|
2024-09-22 00:29:36 +09:00
|
|
|
// child process PID value
|
2024-12-18 13:45:55 +09:00
|
|
|
PID int `json:"pid"`
|
|
|
|
// sealed app configuration
|
|
|
|
Config *fipc.Config `json:"config"`
|
2024-09-22 00:29:36 +09:00
|
|
|
|
|
|
|
// process start time
|
|
|
|
Time time.Time
|
|
|
|
}
|