aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/state/state.go
blob: bb23932a52a68b592e1b017f57da5921dc25fac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package state

import (
	"time"

	"git.ophivana.moe/security/fortify/fipc"
)

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 {
	// fortify instance id
	ID [16]byte `json:"instance"`
	// child process PID value
	PID int `json:"pid"`
	// sealed app configuration
	Config *fipc.Config `json:"config"`

	// process start time
	Time time.Time
}