fortify: clean up config loading
Move duplicate code to function. Also handle - as config from stdin. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
parent
c109ac2653
commit
70bffeaa1e
71
main.go
71
main.go
@ -2,7 +2,6 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
_ "embed"
|
_ "embed"
|
||||||
"encoding/json"
|
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os/user"
|
"os/user"
|
||||||
@ -129,64 +128,21 @@ func main() {
|
|||||||
// Ignore errors; set is set for ExitOnError.
|
// Ignore errors; set is set for ExitOnError.
|
||||||
_ = set.Parse(args[1:])
|
_ = set.Parse(args[1:])
|
||||||
|
|
||||||
if len(set.Args()) != 1 {
|
|
||||||
fmsg.Fatal("show requires 1 argument")
|
|
||||||
}
|
|
||||||
|
|
||||||
likePrefix := false
|
|
||||||
if len(set.Args()[0]) <= 32 {
|
|
||||||
likePrefix = true
|
|
||||||
for _, c := range set.Args()[0] {
|
|
||||||
if c >= '0' && c <= '9' {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if c >= 'a' && c <= 'f' {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
likePrefix = false
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
config *fst.Config
|
config *fst.Config
|
||||||
instance *state.State
|
instance *state.State
|
||||||
|
name string
|
||||||
)
|
)
|
||||||
|
|
||||||
// try to match from state store
|
if len(set.Args()) != 1 {
|
||||||
if likePrefix && len(set.Args()[0]) >= 8 {
|
fmsg.Fatal("show requires 1 argument")
|
||||||
fmsg.VPrintln("argument looks like prefix")
|
} else {
|
||||||
|
name = set.Args()[0]
|
||||||
s := state.NewMulti(os.Paths().RunDirPath)
|
config, instance = tryShort(name)
|
||||||
if entries, err := state.Join(s); err != nil {
|
|
||||||
fmsg.Printf("cannot join store: %v", err)
|
|
||||||
// drop to fetch from file
|
|
||||||
} else {
|
|
||||||
for id := range entries {
|
|
||||||
v := id.String()
|
|
||||||
if strings.HasPrefix(v, set.Args()[0]) {
|
|
||||||
// match, use config from this state entry
|
|
||||||
instance = entries[id]
|
|
||||||
config = instance.Config
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
fmsg.VPrintf("instance %s skipped", v)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if config == nil {
|
if config == nil {
|
||||||
fmsg.VPrintf("reading from file")
|
config = tryPath(name)
|
||||||
|
|
||||||
config = new(fst.Config)
|
|
||||||
if f, err := os.Open(set.Args()[0]); err != nil {
|
|
||||||
fmsg.Fatalf("cannot access config file %q: %s", set.Args()[0], err)
|
|
||||||
panic("unreachable")
|
|
||||||
} else if err = json.NewDecoder(f).Decode(&config); err != nil {
|
|
||||||
fmsg.Fatalf("cannot parse config file %q: %s", set.Args()[0], err)
|
|
||||||
panic("unreachable")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
printShow(instance, config, short)
|
printShow(instance, config, short)
|
||||||
@ -196,20 +152,13 @@ func main() {
|
|||||||
fmsg.Fatal("app requires at least 1 argument")
|
fmsg.Fatal("app requires at least 1 argument")
|
||||||
}
|
}
|
||||||
|
|
||||||
config := new(fst.Config)
|
// config extraArgs...
|
||||||
if f, err := os.Open(args[1]); err != nil {
|
config := tryPath(args[1])
|
||||||
fmsg.Fatalf("cannot access config file %q: %s", args[1], err)
|
|
||||||
panic("unreachable")
|
|
||||||
} else if err = json.NewDecoder(f).Decode(&config); err != nil {
|
|
||||||
fmsg.Fatalf("cannot parse config file %q: %s", args[1], err)
|
|
||||||
panic("unreachable")
|
|
||||||
}
|
|
||||||
|
|
||||||
// append extra args
|
|
||||||
config.Command = append(config.Command, args[2:]...)
|
config.Command = append(config.Command, args[2:]...)
|
||||||
|
|
||||||
// invoke app
|
// invoke app
|
||||||
runApp(config)
|
runApp(config)
|
||||||
|
panic("unreachable")
|
||||||
case "run": // run app in permissive defaults usage pattern
|
case "run": // run app in permissive defaults usage pattern
|
||||||
set := flag.NewFlagSet("run", flag.ExitOnError)
|
set := flag.NewFlagSet("run", flag.ExitOnError)
|
||||||
|
|
||||||
|
78
parse.go
Normal file
78
parse.go
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"io"
|
||||||
|
direct "os"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.gensokyo.uk/security/fortify/fst"
|
||||||
|
"git.gensokyo.uk/security/fortify/internal/fmsg"
|
||||||
|
"git.gensokyo.uk/security/fortify/internal/state"
|
||||||
|
)
|
||||||
|
|
||||||
|
func tryPath(name string) (config *fst.Config) {
|
||||||
|
var r io.Reader
|
||||||
|
config = new(fst.Config)
|
||||||
|
|
||||||
|
if name != "-" {
|
||||||
|
if f, err := os.Open(name); err != nil {
|
||||||
|
fmsg.Fatalf("cannot access configuration file %q: %s", name, err)
|
||||||
|
panic("unreachable")
|
||||||
|
} else {
|
||||||
|
// finalizer closes f
|
||||||
|
r = f
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
r = direct.Stdin
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := json.NewDecoder(r).Decode(&config); err != nil {
|
||||||
|
fmsg.Fatalf("cannot load configuration: %v", err)
|
||||||
|
panic("unreachable")
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func tryShort(name string) (config *fst.Config, instance *state.State) {
|
||||||
|
likePrefix := false
|
||||||
|
if len(name) <= 32 {
|
||||||
|
likePrefix = true
|
||||||
|
for _, c := range name {
|
||||||
|
if c >= '0' && c <= '9' {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if c >= 'a' && c <= 'f' {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
likePrefix = false
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// try to match from state store
|
||||||
|
if likePrefix && len(name) >= 8 {
|
||||||
|
fmsg.VPrintln("argument looks like prefix")
|
||||||
|
|
||||||
|
s := state.NewMulti(os.Paths().RunDirPath)
|
||||||
|
if entries, err := state.Join(s); err != nil {
|
||||||
|
fmsg.Printf("cannot join store: %v", err)
|
||||||
|
// drop to fetch from file
|
||||||
|
} else {
|
||||||
|
for id := range entries {
|
||||||
|
v := id.String()
|
||||||
|
if strings.HasPrefix(v, name) {
|
||||||
|
// match, use config from this state entry
|
||||||
|
instance = entries[id]
|
||||||
|
config = instance.Config
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
fmsg.VPrintf("instance %s skipped", v)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user