2020-08-21 02:03:53 -05:00
|
|
|
package ldap
|
|
|
|
|
|
|
|
import (
|
2020-08-22 22:49:54 -05:00
|
|
|
"strings"
|
2020-08-21 02:03:53 -05:00
|
|
|
|
|
|
|
ldap "github.com/ps78674/ldapserver"
|
|
|
|
)
|
|
|
|
|
|
|
|
// New returns a new ldap server instance
|
2022-08-27 16:46:54 -05:00
|
|
|
func New(opts ...Option) *server {
|
2020-08-21 02:03:53 -05:00
|
|
|
x := new(server)
|
2022-08-27 16:46:54 -05:00
|
|
|
for _, o := range opts {
|
|
|
|
o(x)
|
|
|
|
}
|
2020-08-21 02:03:53 -05:00
|
|
|
x.Server = ldap.NewServer()
|
|
|
|
|
2020-08-23 02:14:41 -05:00
|
|
|
x.routes = ldap.NewRouteMux()
|
|
|
|
x.routes.NotFound(x.handleNotFound)
|
|
|
|
x.routes.Abandon(x.handleAbandon)
|
|
|
|
x.routes.Bind(x.handleBind)
|
2020-08-21 02:03:53 -05:00
|
|
|
|
2020-08-23 02:14:41 -05:00
|
|
|
x.routes.Search(x.handleSearchDSE).
|
2020-08-21 02:03:53 -05:00
|
|
|
BaseDn("").
|
|
|
|
Scope(ldap.SearchRequestScopeBaseObject).
|
|
|
|
Filter("(objectclass=*)").
|
|
|
|
Label("Search - ROOT DSE")
|
|
|
|
|
2020-08-23 02:14:41 -05:00
|
|
|
x.Handle(x.routes)
|
2020-08-21 02:03:53 -05:00
|
|
|
|
|
|
|
return x
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serve serves a plaintext DSA on the provided bind string.
|
|
|
|
func (s *server) Serve(bind string) error {
|
|
|
|
chErr := make(chan error)
|
|
|
|
go s.ListenAndServe(bind, chErr)
|
|
|
|
if err := <-chErr; err != nil {
|
|
|
|
s.l.Error("Error from main server thread", "error", err)
|
|
|
|
return err
|
|
|
|
}
|
2020-08-23 17:31:20 -05:00
|
|
|
return nil
|
|
|
|
}
|
2020-08-21 02:03:53 -05:00
|
|
|
|
2020-08-23 21:35:21 -05:00
|
|
|
// ServeTLS serves a TLS encrypted DSA on the provided bindstring
|
|
|
|
// using a key/cert pair located at the paths provided. Key and
|
|
|
|
// certificate should be PEM encoded.
|
|
|
|
func (s *server) ServeTLS(bind, keypath, certpath string) error {
|
|
|
|
chErr := make(chan error)
|
|
|
|
go s.ListenAndServeTLS(bind, certpath, keypath, chErr)
|
|
|
|
if err := <-chErr; err != nil {
|
|
|
|
s.l.Error("Error from main server thread", "error", err)
|
|
|
|
return err
|
|
|
|
}
|
2020-08-21 02:03:53 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *server) handleNotFound(w ldap.ResponseWriter, r *ldap.Message) {
|
|
|
|
switch r.ProtocolOpType() {
|
|
|
|
case ldap.ApplicationBindRequest:
|
|
|
|
res := ldap.NewBindResponse(ldap.LDAPResultSuccess)
|
|
|
|
res.SetDiagnosticMessage("Default binding behavior set to return Success")
|
|
|
|
|
|
|
|
w.Write(res)
|
|
|
|
|
|
|
|
default:
|
|
|
|
res := ldap.NewResponse(ldap.LDAPResultUnwillingToPerform)
|
|
|
|
res.SetDiagnosticMessage("Operation not implemented by server")
|
|
|
|
w.Write(res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *server) handleAbandon(w ldap.ResponseWriter, m *ldap.Message) {
|
|
|
|
var req = m.GetAbandonRequest()
|
|
|
|
// retreive the request to abandon, and send a abort signal to it
|
|
|
|
if requestToAbandon, ok := m.Client.GetMessageByID(int(req)); ok {
|
|
|
|
requestToAbandon.Abandon()
|
|
|
|
}
|
|
|
|
}
|
2020-08-22 22:49:54 -05:00
|
|
|
|
|
|
|
func (s *server) SetDomain(domain string) {
|
|
|
|
nc := "dc=netauth,"
|
|
|
|
parts := strings.Split(domain, ".")
|
|
|
|
for i := range parts {
|
|
|
|
nc += "dc=" + parts[i] + ","
|
|
|
|
}
|
|
|
|
nc = strings.TrimSuffix(nc, ",")
|
|
|
|
|
|
|
|
s.nc = strings.Split(nc, ",")
|
|
|
|
for i := range s.nc {
|
|
|
|
s.nc[i] = strings.TrimSpace(s.nc[i])
|
|
|
|
}
|
2020-08-23 02:14:41 -05:00
|
|
|
|
|
|
|
// Register routes that are dependent on the namingConvention
|
|
|
|
entitySearchDN := "ou=entities," + strings.Join(s.nc, ",")
|
|
|
|
s.routes.Search(s.handleSearchEntities).
|
|
|
|
BaseDn(entitySearchDN).
|
|
|
|
Scope(ldap.SearchRequestHomeSubtree).
|
|
|
|
Label("Search - Entities")
|
|
|
|
|
2020-08-23 02:50:43 -05:00
|
|
|
groupSearchDN := "ou=groups," + strings.Join(s.nc, ",")
|
|
|
|
s.routes.Search(s.handleSearchGroups).
|
|
|
|
BaseDn(groupSearchDN).
|
|
|
|
Scope(ldap.SearchRequestHomeSubtree).
|
|
|
|
Label("Search - Entities")
|
|
|
|
|
2024-07-04 10:07:25 -05:00
|
|
|
s.routes.Search(s.handleSearchGroups).
|
|
|
|
BaseDn(groupSearchDN).
|
|
|
|
Scope(ldap.SearchRequestHomeSubtree).
|
|
|
|
Filter("(&(members=*)(cn=gitea_users))").
|
|
|
|
Label("Search - Group Members")
|
2020-08-22 22:49:54 -05:00
|
|
|
}
|