123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- package sasl
- import (
- "bufio"
- "bytes"
- "encoding/base64"
- "encoding/hex"
- "errors"
- "fmt"
- "io"
- "log"
- "net"
- "os"
- "strconv"
- "strings"
- "time"
- "git.semlanik.org/semlanik/gostfix/auth"
- "git.semlanik.org/semlanik/gostfix/config"
- "github.com/google/uuid"
- )
- type SaslServer struct {
- pid int
- cuid int
- authenticator *auth.Authenticator
- }
- const (
- Version = "VERSION"
- CPid = "CPID"
- SPid = "SPID"
- Cuid = "CUID"
- Cookie = "COOKIE"
- Mech = "MECH"
- Done = "DONE"
- Auth = "AUTH"
- Fail = "FAIL"
- Cont = "CONT"
- Ok = "OK"
- )
- const (
- ContinueStateNone = iota
- ContinueStateCredentials
- )
- func NewSaslServer() (*SaslServer, error) {
- authenticator, err := auth.NewAuthenticator()
- if err != nil {
- return nil, err
- }
- return &SaslServer{
- pid: os.Getpid(),
- cuid: 0,
- authenticator: authenticator,
- }, nil
- }
- func (s *SaslServer) Run() {
- go func() {
- l, err := net.Listen("tcp", "127.0.0.1:"+config.ConfigInstance().SASLPort)
- if err != nil {
- log.Fatalf("Coulf not start SASL server: %s\n", err)
- return
- }
- defer l.Close()
- log.Printf("Listen sasl on: %s\n", l.Addr().String())
- for {
- conn, err := l.Accept()
- s.cuid++
- if err != nil {
- log.Println("Error accepting: ", err.Error())
- continue
- }
- go s.handleRequest(conn)
- }
- }()
- }
- func (s *SaslServer) handleRequest(conn net.Conn) {
- conn.SetReadDeadline(time.Time{})
- defer conn.Close()
- connectionReader := bufio.NewReader(conn)
- continueState := ContinueStateNone
- for {
- fullbuf, err := connectionReader.ReadString('\n')
- if err == io.EOF {
- break
- }
- if err != nil {
- log.Printf("Read error %s\n", err)
- break
- }
- currentMessage := fullbuf
- ids := strings.Split(currentMessage, "\t")
- if len(ids) < 2 {
- break
- }
- switch ids[0] {
- case Version:
- if len(ids) < 3 {
- break
- }
- if major, err := strconv.Atoi(ids[1]); err != nil || major != 1 {
- break
- }
- cookieUuid := uuid.New()
- fmt.Fprintf(conn, "%s\t%d\t%d\n", Version, 1, 2)
- fmt.Fprintf(conn, "%s\t%s\t%s\n", Mech, "PLAIN", "plaintext")
- fmt.Fprintf(conn, "%s\t%s\t%s\n", Mech, "LOGIN", "plaintext")
- fmt.Fprintf(conn, "%s\t%d\n", SPid, s.pid)
- fmt.Fprintf(conn, "%s\t%d\n", Cuid, s.cuid)
- fmt.Fprintf(conn, "%s\t%s\n", Cookie, hex.EncodeToString(cookieUuid[:]))
- fmt.Fprintf(conn, "%s\n", Done)
- case Auth:
- for _, authId := range ids {
- if strings.Index(authId, "resp=") == 0 {
- login, err := s.checkCredentials(authId[5:])
- if err != nil {
- fmt.Fprintf(conn, "%s\t%s\treason=%s\n", Fail, ids[1], err.Error())
- } else {
- fmt.Fprintf(conn, "%s\t%s\tuser=%s\n", Ok, ids[1], login)
- }
- continueState = ContinueStateNone
- continue
- }
- }
- fmt.Fprintf(conn, "%s\t%s\t%s\n", Cont, ids[1], base64.StdEncoding.EncodeToString([]byte("Username:")))
- continueState = ContinueStateCredentials
- case Cont:
- if len(ids) < 2 {
- break
- }
- if continueState == ContinueStateCredentials {
- if len(ids) < 3 {
- fmt.Fprintf(conn, "%s\t%s\treason=%s\n", Fail, ids[1], "invalid base64 data")
- return
- }
- login, err := s.checkCredentials(ids[2])
- if err != nil {
- fmt.Fprintf(conn, "%s\t%s\treason=%s\n", Fail, ids[1], err.Error())
- } else {
- fmt.Fprintf(conn, "%s\t%s\tuser=%s\n", Ok, ids[1], login)
- }
- continueState = ContinueStateNone
- } else {
- fmt.Fprintf(conn, "%s\t%s\treason=%s\n", Fail, ids[1], "invalid user or password")
- }
- }
- }
- }
- func (s *SaslServer) checkCredentials(credentialsBase64 string) (string, error) {
- credentials, err := base64.StdEncoding.DecodeString(credentialsBase64)
- if err != nil {
- return "", errors.New("invalid base64 data")
- }
- credentialList := bytes.Split(credentials, []byte{0})
- if len(credentialList) < 3 {
- return "", errors.New("invalid user or password")
- }
- identity := string(credentialList[0])
- login := string(credentialList[1])
- password := string(credentialList[2])
- if identity == "token" {
- if s.authenticator.Verify(login, password) {
- return login, nil
- }
- } else {
- if err := s.authenticator.CheckUser(login, password); err == nil {
- return login, nil
- }
- }
- return "", errors.New("invalid user or password")
- }
|