mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 05:57:39 +03:00
117 lines
2.5 KiB
Go
117 lines
2.5 KiB
Go
// +build !windows
|
|
|
|
package shadow
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/foxcpp/maddy/framework/config"
|
|
"github.com/foxcpp/maddy/framework/log"
|
|
"github.com/foxcpp/maddy/framework/module"
|
|
"github.com/foxcpp/maddy/internal/auth/external"
|
|
)
|
|
|
|
type Auth struct {
|
|
instName string
|
|
useHelper bool
|
|
helperPath string
|
|
|
|
Log log.Logger
|
|
}
|
|
|
|
func New(modName, instName string, _, inlineArgs []string) (module.Module, error) {
|
|
if len(inlineArgs) != 0 {
|
|
return nil, errors.New("shadow: inline arguments are not used")
|
|
}
|
|
return &Auth{
|
|
instName: instName,
|
|
Log: log.Logger{Name: modName},
|
|
}, nil
|
|
}
|
|
|
|
func (a *Auth) Name() string {
|
|
return "shadow"
|
|
}
|
|
|
|
func (a *Auth) InstanceName() string {
|
|
return a.instName
|
|
}
|
|
|
|
func (a *Auth) Init(cfg *config.Map) error {
|
|
cfg.Bool("debug", true, false, &a.Log.Debug)
|
|
cfg.Bool("use_helper", false, false, &a.useHelper)
|
|
if _, err := cfg.Process(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if a.useHelper {
|
|
a.helperPath = filepath.Join(config.LibexecDirectory, "maddy-shadow-helper")
|
|
if _, err := os.Stat(a.helperPath); err != nil {
|
|
return fmt.Errorf("shadow: no helper binary (maddy-shadow-helper) found in %s", config.LibexecDirectory)
|
|
}
|
|
} else {
|
|
f, err := os.Open("/etc/shadow")
|
|
if err != nil {
|
|
if os.IsPermission(err) {
|
|
return fmt.Errorf("shadow: can't read /etc/shadow due to permission error, use helper binary or run maddy as a privileged user")
|
|
}
|
|
return fmt.Errorf("shadow: can't read /etc/shadow: %v", err)
|
|
}
|
|
f.Close()
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (a *Auth) Lookup(username string) (string, bool, error) {
|
|
if a.useHelper {
|
|
return "", false, fmt.Errorf("shadow: table lookup are not possible when using a helper")
|
|
}
|
|
|
|
ent, err := Lookup(username)
|
|
if err != nil {
|
|
return "", false, nil
|
|
}
|
|
|
|
if !ent.IsAccountValid() {
|
|
return "", false, nil
|
|
}
|
|
|
|
return "", true, nil
|
|
}
|
|
|
|
func (a *Auth) AuthPlain(username, password string) error {
|
|
if a.useHelper {
|
|
return external.AuthUsingHelper(a.helperPath, username, password)
|
|
}
|
|
|
|
ent, err := Lookup(username)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !ent.IsAccountValid() {
|
|
return fmt.Errorf("shadow: account is expired")
|
|
}
|
|
|
|
if !ent.IsPasswordValid() {
|
|
return fmt.Errorf("shadow: password is expired")
|
|
}
|
|
|
|
if err := ent.VerifyPassword(password); err != nil {
|
|
if err == ErrWrongPassword {
|
|
return module.ErrUnknownCredentials
|
|
}
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
module.RegisterDeprecated("shadow", "auth.shadow", New)
|
|
module.Register("auth.shadow", New)
|
|
}
|