forked from ml0renz0/openldap_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scraper.go
429 lines (384 loc) · 10.2 KB
/
scraper.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
package openldap_exporter
import (
"context"
"crypto/tls"
"crypto/x509"
"errors"
"fmt"
"io/ioutil"
"net/url"
"os"
"regexp"
"strconv"
"strings"
"time"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
"gopkg.in/ldap.v2"
)
const (
baseDN = "cn=Monitor"
opsBaseDN = "cn=Operations,cn=Monitor"
monitorCounterObject = "monitorCounterObject"
monitorCounter = "monitorCounter"
monitoredObject = "monitoredObject"
monitoredInfo = "monitoredInfo"
monitorOperation = "monitorOperation"
monitorOpCompleted = "monitorOpCompleted"
monitorReplicationFilter = "contextCSN"
monitorReplication = "monitorReplication"
SchemeLDAPS = "ldaps"
SchemeLDAP = "ldap"
SchemeLDAPI = "ldapi"
)
type query struct {
baseDN string
searchFilter string
searchAttr string
metric *prometheus.GaugeVec
setData func([]*ldap.Entry, *query)
}
var (
monitoredObjectGauge = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Subsystem: "openldap",
Name: "monitored_object",
Help: help(baseDN, objectClass(monitoredObject), monitoredInfo),
},
[]string{"dn"},
)
monitorCounterObjectGauge = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Subsystem: "openldap",
Name: "monitor_counter_object",
Help: help(baseDN, objectClass(monitorCounterObject), monitorCounter),
},
[]string{"dn"},
)
monitorOperationGauge = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Subsystem: "openldap",
Name: "monitor_operation",
Help: help(opsBaseDN, objectClass(monitorOperation), monitorOpCompleted),
},
[]string{"dn"},
)
bindCounter = prometheus.NewCounterVec(
prometheus.CounterOpts{
Subsystem: "openldap",
Name: "bind",
Help: "successful vs unsuccessful ldap bind attempts",
},
[]string{"result"},
)
dialCounter = prometheus.NewCounterVec(
prometheus.CounterOpts{
Subsystem: "openldap",
Name: "dial",
Help: "successful vs unsuccessful ldap dial attempts",
},
[]string{"result"},
)
scrapeCounter = prometheus.NewCounterVec(
prometheus.CounterOpts{
Subsystem: "openldap",
Name: "scrape",
Help: "successful vs unsuccessful ldap scrape attempts",
},
[]string{"result"},
)
monitorReplicationGauge = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Subsystem: "openldap",
Name: "monitor_replication",
Help: help(baseDN, monitorReplication),
},
[]string{"id", "type"},
)
queries = []*query{
{
baseDN: baseDN,
searchFilter: objectClass(monitoredObject),
searchAttr: monitoredInfo,
metric: monitoredObjectGauge,
setData: setValue,
}, {
baseDN: baseDN,
searchFilter: objectClass(monitorCounterObject),
searchAttr: monitorCounter,
metric: monitorCounterObjectGauge,
setData: setValue,
},
{
baseDN: opsBaseDN,
searchFilter: objectClass(monitorOperation),
searchAttr: monitorOpCompleted,
metric: monitorOperationGauge,
setData: setValue,
},
{
baseDN: opsBaseDN,
searchFilter: objectClass(monitorOperation),
searchAttr: monitorOpCompleted,
metric: monitorOperationGauge,
setData: setValue,
},
}
)
func init() {
prometheus.MustRegister(
monitoredObjectGauge,
monitorCounterObjectGauge,
monitorOperationGauge,
monitorReplicationGauge,
scrapeCounter,
bindCounter,
dialCounter,
)
}
func help(msg ...string) string {
return strings.Join(msg, " ")
}
func objectClass(name string) string {
return fmt.Sprintf("(objectClass=%v)", name)
}
func setValue(entries []*ldap.Entry, q *query) {
for _, entry := range entries {
val := entry.GetAttributeValue(q.searchAttr)
if val == "" {
// not every entry will have this attribute
continue
}
num, err := strconv.ParseFloat(val, 64)
if err != nil {
// some of these attributes are not numbers
continue
}
q.metric.WithLabelValues(entry.DN).Set(num)
}
}
// parse value for replication and handle multiple values for contextCSN attribute
func setReplicationValue(entries []*ldap.Entry, q *query) {
for _, entry := range entries {
attributeValues := entry.GetAttributeValues(q.searchAttr) // with multiple node on replications, attribute can have multiple value
for _, context := range attributeValues {
if context == "" {
// not every entry will have this attribute
continue
}
fields := log.Fields{
"filter": q.searchFilter,
"attr": q.searchAttr,
"value": context,
}
valueBuffer := strings.Split(context, "#")
gt, err := time.Parse("20060102150405.999999Z", valueBuffer[0])
if err != nil {
log.WithFields(fields).WithError(err).Warn("unexpected gt value")
continue
}
count, err := strconv.ParseFloat(valueBuffer[1], 64)
if err != nil {
log.WithFields(fields).WithError(err).Warn("unexpected count value")
continue
}
sid := valueBuffer[2]
mod, err := strconv.ParseFloat(valueBuffer[3], 64)
if err != nil {
log.WithFields(fields).WithError(err).Warn("unexpected mod value")
continue
}
q.metric.WithLabelValues(sid, "gt").Set(float64(gt.Unix()))
q.metric.WithLabelValues(sid, "count").Set(count)
q.metric.WithLabelValues(sid, "mod").Set(mod)
}
}
}
type LDAPConfig struct {
UseTLS bool
UseStartTLS bool
Scheme string
Addr string
Host string
Port string
Protocol string
Username string
Password string
TLSConfig tls.Config
}
type Scraper struct {
LDAPConfig LDAPConfig
Tick time.Duration
log log.FieldLogger
Sync []string
}
func (config *LDAPConfig) ProcessTLSoptions(addr string, useStartTLS bool, skipInsecure bool) error {
var u *url.URL
u, err := url.Parse(addr)
if err != nil {
// Well, so far the easy way....
u = &url.URL{}
}
if u.Host == "" {
if strings.HasPrefix(addr, SchemeLDAPI) {
u.Scheme = SchemeLDAPI
u.Host, _ = url.QueryUnescape(strings.Replace(addr, SchemeLDAPI+"://", "", 1))
} else if strings.HasPrefix(addr, SchemeLDAPS) {
u.Scheme = SchemeLDAPS
u.Host = strings.Replace(addr, SchemeLDAPS+"://", "", 1)
} else {
u.Scheme = SchemeLDAP
u.Host = strings.Replace(addr, SchemeLDAP+"://", "", 1)
}
}
config.Addr = u.Host
config.Scheme = u.Scheme
config.Host = u.Hostname()
r, _ := regexp.Compile(":[0-9]+")
if u.Scheme == SchemeLDAPS {
config.UseTLS = true
if !r.MatchString(config.Addr) {
config.Port = "636"
config.Addr += ":" + config.Port
}
} else if u.Scheme == SchemeLDAP {
config.UseTLS = false
if !r.MatchString(config.Addr) {
config.Port = "389"
config.Addr += ":" + config.Port
}
} else if u.Scheme == SchemeLDAPI {
config.Protocol = "unix"
} else {
return errors.New(u.Scheme + " is not a scheme i understand, refusing to continue")
}
config.TLSConfig.InsecureSkipVerify = skipInsecure
config.TLSConfig.ServerName = config.Host
if !config.UseTLS {
// useStartTLS only relevant if not using TLS
config.UseStartTLS = useStartTLS
}
return nil
}
func (config *LDAPConfig) LoadCACert(cafile string) error {
if _, err := os.Stat(cafile); os.IsNotExist(err) {
return errors.New("CA Certificate file does not exists")
}
cert, err := ioutil.ReadFile(cafile)
if err != nil {
return errors.New("CA Certificate file is not readable")
}
config.TLSConfig.RootCAs = x509.NewCertPool()
if !config.TLSConfig.RootCAs.AppendCertsFromPEM(cert) {
return errors.New("Could not parse CA")
}
return nil
}
func NewLDAPConfig() LDAPConfig {
conf := LDAPConfig{}
conf.Scheme = SchemeLDAP
conf.Host = "localhost"
conf.Port = "389"
conf.Addr = conf.Host + ":" + conf.Port
conf.Protocol = "tcp"
conf.UseTLS = false
conf.UseStartTLS = false
conf.TLSConfig = tls.Config{}
return conf
}
func (s *Scraper) addReplicationQueries() {
for _, q := range s.Sync {
queries = append(queries,
&query{
baseDN: q,
searchFilter: objectClass("*"),
searchAttr: monitorReplicationFilter,
metric: monitorReplicationGauge,
setData: setReplicationValue,
},
)
}
}
func (s *Scraper) Start(ctx context.Context) {
s.log = log.WithField("component", "scraper")
s.addReplicationQueries()
security := "None"
if s.LDAPConfig.UseTLS {
security = "TLS"
} else if s.LDAPConfig.UseStartTLS {
security = "StartTLS"
}
if s.LDAPConfig.TLSConfig.InsecureSkipVerify {
security += "/InsecureSkipVerify"
}
address := s.LDAPConfig.Scheme + "://" + s.LDAPConfig.Addr
s.log.WithField("addr", address).WithField("security", security).Info("starting monitor loop")
ticker := time.NewTicker(s.Tick)
defer ticker.Stop()
for {
select {
case <-ticker.C:
s.scrape()
case <-ctx.Done():
return
}
}
}
func (s *Scraper) scrape() {
var conn *ldap.Conn
var err error
if s.LDAPConfig.UseTLS {
conn, err = ldap.DialTLS(s.LDAPConfig.Protocol, s.LDAPConfig.Addr, &s.LDAPConfig.TLSConfig)
} else {
conn, err = ldap.Dial(s.LDAPConfig.Protocol, s.LDAPConfig.Addr)
if err != nil {
s.log.WithError(err).Error("dial failed")
dialCounter.WithLabelValues("fail").Inc()
return
}
if s.LDAPConfig.UseStartTLS {
err = conn.StartTLS(&s.LDAPConfig.TLSConfig)
if err != nil {
s.log.WithError(err).Error("StartTLS failed")
dialCounter.WithLabelValues("fail").Inc()
return
}
}
}
if err != nil {
s.log.WithError(err).Error("dial failed")
dialCounter.WithLabelValues("fail").Inc()
return
}
dialCounter.WithLabelValues("ok").Inc()
defer conn.Close()
if s.LDAPConfig.Username != "" && s.LDAPConfig.Password != "" {
err = conn.Bind(s.LDAPConfig.Username, s.LDAPConfig.Password)
if err != nil {
s.log.WithError(err).Error("bind failed")
bindCounter.WithLabelValues("fail").Inc()
return
}
bindCounter.WithLabelValues("ok").Inc()
}
scrapeRes := "ok"
for _, q := range queries {
if err = scrapeQuery(conn, q); err != nil {
s.log.WithError(err).WithField("filter", q.searchFilter).Warn("query failed")
scrapeRes = "fail"
}
}
scrapeCounter.WithLabelValues(scrapeRes).Inc()
}
func scrapeQuery(conn *ldap.Conn, q *query) error {
req := ldap.NewSearchRequest(
q.baseDN, ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false,
q.searchFilter, []string{q.searchAttr}, nil,
)
sr, err := conn.Search(req)
if err != nil {
return err
}
q.setData(sr.Entries, q)
return nil
}