Wrapping fortify is slow, painful and error-prone. Start apps in-process instead. Signed-off-by: Ophestra <cat@gensokyo.uk>
24 lines
413 B
Go
24 lines
413 B
Go
package internal
|
|
|
|
import (
|
|
"log"
|
|
"path"
|
|
|
|
"git.gensokyo.uk/security/fortify/internal/fmsg"
|
|
)
|
|
|
|
var (
|
|
fsu = compPoison
|
|
)
|
|
|
|
func MustFsuPath() string {
|
|
if name, ok := checkPath(fsu); ok {
|
|
return name
|
|
}
|
|
fmsg.BeforeExit()
|
|
log.Fatal("invalid fsu path, this program is compiled incorrectly")
|
|
return compPoison
|
|
}
|
|
|
|
func checkPath(p string) (string, bool) { return p, p != compPoison && p != "" && path.IsAbs(p) }
|