mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2025-08-12 20:09:18 +02:00
Add support for PAM authentication
This commit is contained in:
parent
6499f9b7a5
commit
390f6acbcd
5 changed files with 94 additions and 3 deletions
2
.github/workflows/go.yml
vendored
2
.github/workflows/go.yml
vendored
|
@ -16,7 +16,7 @@ jobs:
|
||||||
- name: Set up Go 1.x
|
- name: Set up Go 1.x
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: ^1.16
|
go-version: ^1.19
|
||||||
id: go
|
id: go
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
- name: Check out code into the Go module directory
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -1,6 +1,7 @@
|
||||||
BINDIR := $(CURDIR)/bin
|
BINDIR := $(CURDIR)/bin
|
||||||
INSTALL_PATH ?= /usr/local/bin
|
INSTALL_PATH ?= /usr/local/bin
|
||||||
BINNAME ?= rdpgw
|
BINNAME ?= rdpgw
|
||||||
|
BINNAME2 ?= auth
|
||||||
|
|
||||||
# Rebuild the binary if any of these files change
|
# Rebuild the binary if any of these files change
|
||||||
SRC := $(shell find . -type f -name '*.go' -print) go.mod go.sum
|
SRC := $(shell find . -type f -name '*.go' -print) go.mod go.sum
|
||||||
|
@ -35,6 +36,7 @@ build: $(BINDIR)/$(BINNAME)
|
||||||
|
|
||||||
$(BINDIR)/$(BINNAME): $(SRC)
|
$(BINDIR)/$(BINNAME): $(SRC)
|
||||||
go build $(GOFLAGS) -trimpath -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o '$(BINDIR)'/$(BINNAME) ./cmd/rdpgw
|
go build $(GOFLAGS) -trimpath -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o '$(BINDIR)'/$(BINNAME) ./cmd/rdpgw
|
||||||
|
go build $(GOFLAGS) -trimpath -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o '$(BINDIR)'/$(BINNAME2) ./cmd/auth
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# install
|
# install
|
||||||
|
@ -48,7 +50,7 @@ install: build
|
||||||
|
|
||||||
.PHONY: mod
|
.PHONY: mod
|
||||||
mod:
|
mod:
|
||||||
go mod tidy -compat=1.17
|
go mod tidy -compat=1.19
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# test
|
# test
|
||||||
|
|
72
cmd/auth/auth.go
Normal file
72
cmd/auth/auth.go
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"github.com/golang/protobuf/proto"
|
||||||
|
ipc "github.com/james-barrow/golang-ipc"
|
||||||
|
"github.com/msteinert/pam"
|
||||||
|
"github.com/thought-machine/go-flags"
|
||||||
|
"log"
|
||||||
|
)
|
||||||
|
|
||||||
|
var opts struct {
|
||||||
|
serviceName string `short:"s" long:"service" default:"rdpgw" description:"the PAM service name to use"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func auth(service, user, passwd string) error {
|
||||||
|
t, err := pam.StartFunc(service, user, func(s pam.Style, msg string) (string, error) {
|
||||||
|
switch s {
|
||||||
|
case pam.PromptEchoOff:
|
||||||
|
return passwd, nil
|
||||||
|
case pam.PromptEchoOn, pam.ErrorMsg, pam.TextInfo:
|
||||||
|
return "", nil
|
||||||
|
}
|
||||||
|
return "", errors.New("unrecognized PAM message style")
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = t.Authenticate(0); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
_, err := flags.Parse(&opts)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
config := &ipc.ServerConfig{UnmaskPermissions: true}
|
||||||
|
sc, err := ipc.StartServer("rdpgw-auth", config)
|
||||||
|
for {
|
||||||
|
msg, err := sc.Read()
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("server error, %s", err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if msg.MsgType > 0 {
|
||||||
|
req := &UserPass{}
|
||||||
|
if err = proto.Unmarshal(msg.Data, req); err != nil {
|
||||||
|
log.Printf("cannot unmarshal request %s", string(msg.Data))
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
err := auth(opts.serviceName, req.Username, req.Password)
|
||||||
|
if err != nil {
|
||||||
|
res := &Response{Status: "cannot authenticate"}
|
||||||
|
out, err := proto.Marshal(res)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("cannot marshal response due to %s", err)
|
||||||
|
}
|
||||||
|
sc.Write(1, out)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("cannot authenticate due to %s", err)
|
||||||
|
}
|
||||||
|
}
|
14
cmd/auth/proto/auth.proto
Normal file
14
cmd/auth/proto/auth.proto
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package main;
|
||||||
|
|
||||||
|
option go_package = "./auth;main";
|
||||||
|
|
||||||
|
message UserPass {
|
||||||
|
string username = 1;
|
||||||
|
string password = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Response {
|
||||||
|
string status = 1;
|
||||||
|
}
|
5
go.mod
5
go.mod
|
@ -1,13 +1,15 @@
|
||||||
module github.com/bolkedebruin/rdpgw
|
module github.com/bolkedebruin/rdpgw
|
||||||
|
|
||||||
go 1.17
|
go 1.19
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/coreos/go-oidc/v3 v3.2.0
|
github.com/coreos/go-oidc/v3 v3.2.0
|
||||||
github.com/go-jose/go-jose/v3 v3.0.0
|
github.com/go-jose/go-jose/v3 v3.0.0
|
||||||
github.com/gorilla/sessions v1.2.1
|
github.com/gorilla/sessions v1.2.1
|
||||||
github.com/gorilla/websocket v1.5.0
|
github.com/gorilla/websocket v1.5.0
|
||||||
|
github.com/james-barrow/golang-ipc v1.0.0
|
||||||
github.com/knadh/koanf v1.4.2
|
github.com/knadh/koanf v1.4.2
|
||||||
|
github.com/msteinert/pam v1.0.0
|
||||||
github.com/patrickmn/go-cache v2.1.0+incompatible
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
||||||
github.com/prometheus/client_golang v1.12.1
|
github.com/prometheus/client_golang v1.12.1
|
||||||
github.com/thought-machine/go-flags v1.6.1
|
github.com/thought-machine/go-flags v1.6.1
|
||||||
|
@ -15,6 +17,7 @@ require (
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
github.com/Microsoft/go-winio v0.4.16 // indirect
|
||||||
github.com/beorn7/perks v1.0.1 // indirect
|
github.com/beorn7/perks v1.0.1 // indirect
|
||||||
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
||||||
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue