ussd/cmd/ssh/main.go

93 lines
2.2 KiB
Go
Raw Normal View History

2024-09-22 04:06:24 +02:00
package main
import (
"context"
"flag"
"fmt"
"path"
"os"
"sync"
"git.defalsify.org/vise.git/db"
"git.defalsify.org/vise.git/engine"
"git.defalsify.org/vise.git/logging"
"git.grassecon.net/urdt/ussd/internal/storage"
2024-09-22 15:41:01 +02:00
"git.grassecon.net/urdt/ussd/internal/ssh"
2024-09-22 04:06:24 +02:00
)
var (
wg sync.WaitGroup
keyStore db.Db
logg = logging.NewVanilla()
scriptDir = path.Join("services", "registration")
)
func main() {
var dbDir string
var resourceDir string
var size uint
var engineDebug bool
var stateDebug bool
var host string
var port uint
flag.StringVar(&dbDir, "dbdir", ".state", "database dir to read from")
flag.StringVar(&resourceDir, "resourcedir", path.Join("services", "registration"), "resource dir")
flag.BoolVar(&engineDebug, "engine-debug", false, "use engine debug output")
flag.BoolVar(&stateDebug, "state-debug", false, "use engine debug output")
flag.UintVar(&size, "s", 160, "max size of output")
flag.StringVar(&host, "h", "127.0.0.1", "http host")
flag.UintVar(&port, "p", 7122, "http port")
flag.Parse()
sshKeyFile := flag.Arg(0)
_, err := os.Stat(sshKeyFile)
if err != nil {
fmt.Fprintf(os.Stderr, "cannot open ssh server private key file: %v\n", err)
os.Exit(1)
}
logg.Infof("start command", "dbdir", dbDir, "resourcedir", resourceDir, "outputsize", size, "keyfile", sshKeyFile, "host", host, "port", port)
ctx := context.Background()
pfp := path.Join(scriptDir, "pp.csv")
cfg := engine.Config{
Root: "root",
OutputSize: uint32(size),
FlagCount: uint32(16),
}
if stateDebug {
cfg.StateDebug = true
}
if engineDebug {
cfg.EngineDebug = true
}
2024-09-22 15:41:01 +02:00
keyStoreFile := path.Join(dbDir, "ssh_authorized_keys.gdbm")
authKeyStore := storage.NewThreadGdbmDb()
err = authKeyStore.Connect(ctx, keyStoreFile)
2024-09-22 04:06:24 +02:00
if err != nil {
2024-09-22 15:41:01 +02:00
fmt.Fprintf(os.Stderr, "keystore file open error: %v", err)
2024-09-22 04:06:24 +02:00
os.Exit(1)
}
2024-09-22 15:41:01 +02:00
defer func() {
err := authKeyStore.Close()
if err != nil {
logg.ErrorCtxf(ctx, "keystore close error", "err", err)
}
}()
2024-09-22 04:06:24 +02:00
2024-09-22 15:41:01 +02:00
runner := &ssh.SshRunner{
2024-09-22 04:06:24 +02:00
Cfg: cfg,
Debug: engineDebug,
FlagFile: pfp,
DbDir: dbDir,
ResourceDir: resourceDir,
2024-09-22 15:41:01 +02:00
SrvKeyFile: sshKeyFile,
2024-09-22 04:06:24 +02:00
Host: host,
Port: port,
}
2024-09-22 15:41:01 +02:00
runner.Run(ctx, authKeyStore)
2024-09-22 04:06:24 +02:00
}