feat: command auth

This commit is contained in:
Toby 2023-08-12 13:12:36 -07:00
parent d3db1e4a1d
commit 25b8eef959
4 changed files with 37 additions and 0 deletions

View file

@ -98,6 +98,7 @@ type serverConfigAuth struct {
Password string `mapstructure:"password"`
UserPass map[string]string `mapstructure:"userpass"`
HTTP serverConfigAuthHTTP `mapstructure:"http"`
Command string `mapstructure:"command"`
}
type serverConfigResolverTCP struct {
@ -405,6 +406,12 @@ func (c *serverConfig) fillAuthenticator(hyConfig *server.Config) error {
}
hyConfig.Authenticator = auth.NewHTTPAuthenticator(c.Auth.HTTP.URL, c.Auth.HTTP.Insecure)
return nil
case "command", "cmd":
if c.Auth.Command == "" {
return configError{Field: "auth.command", Err: errors.New("empty auth command")}
}
hyConfig.Authenticator = &auth.CommandAuthenticator{Cmd: c.Auth.Command}
return nil
default:
return configError{Field: "auth.type", Err: errors.New("unsupported auth type")}
}

View file

@ -70,6 +70,7 @@ func TestServerConfig(t *testing.T) {
URL: "http://127.0.0.1:5000/auth",
Insecure: true,
},
Command: "/etc/some_command",
},
Resolver: serverConfigResolver{
Type: "udp",

View file

@ -49,6 +49,7 @@ auth:
http:
url: http://127.0.0.1:5000/auth
insecure: true
command: /etc/some_command
resolver:
type: udp

28
extras/auth/command.go Normal file
View file

@ -0,0 +1,28 @@
package auth
import (
"net"
"os/exec"
"strconv"
"strings"
"github.com/apernet/hysteria/core/server"
)
var _ server.Authenticator = &CommandAuthenticator{}
type CommandAuthenticator struct {
Cmd string
}
func (a *CommandAuthenticator) Authenticate(addr net.Addr, auth string, tx uint64) (ok bool, id string) {
cmd := exec.Command(a.Cmd, addr.String(), auth, strconv.Itoa(int(tx)))
out, err := cmd.Output()
if err != nil {
// This includes failing to execute the command,
// or the command exiting with a non-zero exit code.
return false, ""
} else {
return true, strings.TrimSpace(string(out))
}
}