2018-11-16 22:36:14 +08:00
|
|
|
package main // import "moul.io/sshportal"
|
2017-09-30 19:12:43 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
2017-11-14 08:29:25 +08:00
|
|
|
"math/rand"
|
2017-09-30 19:12:43 +08:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
|
2017-10-31 00:12:04 +08:00
|
|
|
_ "github.com/jinzhu/gorm/dialects/mysql"
|
2017-10-30 23:48:14 +08:00
|
|
|
_ "github.com/jinzhu/gorm/dialects/sqlite"
|
2017-09-30 19:12:43 +08:00
|
|
|
"github.com/urfave/cli"
|
2020-02-25 18:49:38 +08:00
|
|
|
"moul.io/srand"
|
2017-09-30 19:12:43 +08:00
|
|
|
)
|
|
|
|
|
2017-11-14 07:38:23 +08:00
|
|
|
var (
|
2017-12-04 01:18:17 +08:00
|
|
|
// Version should be updated by hand at each release
|
2019-06-24 17:43:32 +08:00
|
|
|
Version = "1.10.0+dev"
|
2017-12-04 01:18:17 +08:00
|
|
|
// GitTag will be overwritten automatically by the build system
|
|
|
|
GitTag string
|
|
|
|
// GitSha will be overwritten automatically by the build system
|
|
|
|
GitSha string
|
|
|
|
// GitBranch will be overwritten automatically by the build system
|
|
|
|
GitBranch string
|
2017-11-14 07:38:23 +08:00
|
|
|
)
|
2017-11-02 05:09:08 +08:00
|
|
|
|
2017-09-30 19:12:43 +08:00
|
|
|
func main() {
|
2020-02-25 18:49:38 +08:00
|
|
|
rand.Seed(srand.Secure())
|
2017-11-14 08:29:25 +08:00
|
|
|
|
2017-09-30 19:12:43 +08:00
|
|
|
app := cli.NewApp()
|
|
|
|
app.Name = path.Base(os.Args[0])
|
|
|
|
app.Author = "Manfred Touron"
|
2017-12-04 01:18:17 +08:00
|
|
|
app.Version = Version + " (" + GitSha + ")"
|
2018-11-16 22:36:14 +08:00
|
|
|
app.Email = "https://moul.io/sshportal"
|
2017-12-31 23:31:25 +08:00
|
|
|
app.Commands = []cli.Command{
|
|
|
|
{
|
2018-01-07 02:46:00 +08:00
|
|
|
Name: "server",
|
|
|
|
Usage: "Start sshportal server",
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
if err := ensureLogDirectory(c.String("logs-location")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-01 01:39:45 +08:00
|
|
|
cfg, err := parseServerConfig(c)
|
2018-01-07 02:46:00 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return server(cfg)
|
|
|
|
},
|
2017-12-31 23:31:25 +08:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "bind-address, b",
|
|
|
|
EnvVar: "SSHPORTAL_BIND",
|
|
|
|
Value: ":2222",
|
|
|
|
Usage: "SSH server bind address",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
2018-11-19 19:49:31 +08:00
|
|
|
Name: "db-driver",
|
|
|
|
EnvVar: "SSHPORTAL_DB_DRIVER",
|
|
|
|
Value: "sqlite3",
|
|
|
|
Usage: "GORM driver (sqlite3)",
|
2017-12-31 23:31:25 +08:00
|
|
|
},
|
|
|
|
cli.StringFlag{
|
2018-11-19 19:49:31 +08:00
|
|
|
Name: "db-conn",
|
|
|
|
EnvVar: "SSHPORTAL_DATABASE_URL",
|
|
|
|
Value: "./sshportal.db",
|
|
|
|
Usage: "GORM connection string",
|
2017-12-31 23:31:25 +08:00
|
|
|
},
|
|
|
|
cli.BoolFlag{
|
2018-11-19 19:49:31 +08:00
|
|
|
Name: "debug, D",
|
|
|
|
EnvVar: "SSHPORTAL_DEBUG",
|
|
|
|
Usage: "Display debug information",
|
2017-12-31 23:31:25 +08:00
|
|
|
},
|
|
|
|
cli.StringFlag{
|
2018-11-19 19:49:31 +08:00
|
|
|
Name: "aes-key",
|
|
|
|
EnvVar: "SSHPORTAL_AES_KEY",
|
|
|
|
Usage: "Encrypt sensitive data in database (length: 16, 24 or 32)",
|
2017-12-31 23:31:25 +08:00
|
|
|
},
|
2018-01-02 23:31:34 +08:00
|
|
|
cli.StringFlag{
|
2018-11-19 19:49:31 +08:00
|
|
|
Name: "logs-location",
|
|
|
|
EnvVar: "SSHPORTAL_LOGS_LOCATION",
|
|
|
|
Value: "./log",
|
|
|
|
Usage: "Store user session files",
|
2018-01-02 23:31:34 +08:00
|
|
|
},
|
2018-11-16 02:38:18 +08:00
|
|
|
cli.DurationFlag{
|
|
|
|
Name: "idle-timeout",
|
|
|
|
Value: 0,
|
|
|
|
Usage: "Duration before an inactive connection is timed out (0 to disable)",
|
|
|
|
},
|
2017-12-31 23:31:25 +08:00
|
|
|
},
|
2018-01-01 17:41:21 +08:00
|
|
|
}, {
|
|
|
|
Name: "healthcheck",
|
2018-01-07 02:46:00 +08:00
|
|
|
Action: func(c *cli.Context) error { return healthcheck(c.String("addr"), c.Bool("wait"), c.Bool("quiet")) },
|
2018-01-01 17:41:21 +08:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "addr, a",
|
|
|
|
Value: "localhost:2222",
|
2018-01-01 17:54:58 +08:00
|
|
|
Usage: "sshportal server address",
|
|
|
|
},
|
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "wait, w",
|
|
|
|
Usage: "Loop indefinitely until sshportal is ready",
|
|
|
|
},
|
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "quiet, q",
|
|
|
|
Usage: "Do not print errors, if any",
|
2018-01-01 17:41:21 +08:00
|
|
|
},
|
|
|
|
},
|
2018-01-02 17:57:18 +08:00
|
|
|
}, {
|
|
|
|
Name: "_test_server",
|
|
|
|
Hidden: true,
|
|
|
|
Action: testServer,
|
2017-11-24 21:29:41 +08:00
|
|
|
},
|
2017-09-30 19:12:43 +08:00
|
|
|
}
|
2017-11-02 17:32:35 +08:00
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
|
|
log.Fatalf("error: %v", err)
|
|
|
|
}
|
2017-09-30 19:12:43 +08:00
|
|
|
}
|