File: sasl_map.c

package info (click to toggle)
389-ds-base 2.3.1%2Bdfsg1-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 37,536 kB
  • sloc: ansic: 306,972; python: 96,937; cpp: 10,257; perl: 2,854; makefile: 2,046; sh: 925; yacc: 806; xml: 379; lex: 366; javascript: 148; java: 50
file content (725 lines) | stat: -rw-r--r-- 22,525 bytes parent folder | download | duplicates (2)
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
/** BEGIN COPYRIGHT BLOCK
 * Copyright (C) 2005 Red Hat, Inc.
 * All rights reserved.
 *
 * License: GPL (version 3 or any later version).
 * See LICENSE for details.
 * END COPYRIGHT BLOCK **/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif


#include "slap.h"
#include "slapi-plugin.h"
#include "fe.h"

/*
 * Map SASL identities to LDAP searches
 */

static char *configDN = "cn=mapping,cn=sasl,cn=config";
#define LOW_PRIORITY 100
#define LOW_PRIORITY_STR "100"

/*
 * DBDB: this is ugly, but right now there is _no_ server-wide
 * dynamic structure (like a Slapi_Server * type thing). All the code
 * that needs such a thing instead maintains a static or global variable.
 * Until we implement the 'right thing', we'll just follow suit here :(
 */

static sasl_map_private *sasl_map_static_priv = NULL;

static sasl_map_private *
sasl_map_get_global_priv(void)
{
    /* ASSERT(sasl_map_static_priv) */
    return sasl_map_static_priv;
}

static sasl_map_private *
sasl_map_new_private(void)
{
    Slapi_RWLock *new_lock = slapi_new_rwlock();
    sasl_map_private *new_priv = NULL;
    if (NULL == new_lock) {
        return NULL;
    }
    new_priv = (sasl_map_private *)slapi_ch_calloc(1, sizeof(sasl_map_private));
    new_priv->lock = new_lock;
    return new_priv;
}

static void
sasl_map_free_private(sasl_map_private **priv)
{
    slapi_destroy_rwlock((*priv)->lock);
    slapi_ch_free((void **)priv);
    *priv = NULL;
}

/* This function does a shallow copy on the payload data supplied, so the caller should not free it, and it needs to be allocated using slapi_ch_malloc() */
static sasl_map_data *
sasl_map_new_data(char *name, char *regex, char *dntemplate, char *filtertemplate, int priority)
{
    sasl_map_data *new_dp = (sasl_map_data *)slapi_ch_calloc(1, sizeof(sasl_map_data));
    new_dp->name = name;
    new_dp->regular_expression = regex;
    new_dp->template_base_dn = dntemplate;
    new_dp->template_search_filter = filtertemplate;
    new_dp->priority = priority;
    new_dp->next = NULL;
    new_dp->prev = NULL;
    return new_dp;
}

static sasl_map_data *
sasl_map_next(sasl_map_data *dp)
{
    return dp->next;
}

static void
sasl_map_free_data(sasl_map_data **dp)
{
    slapi_ch_free_string(&(*dp)->name);
    slapi_ch_free_string(&(*dp)->regular_expression);
    slapi_ch_free_string(&(*dp)->template_base_dn);
    slapi_ch_free_string(&(*dp)->template_search_filter);
    slapi_ch_free((void **)dp);
}

static int
sasl_map_remove_list_entry(sasl_map_private *priv, char *removeme)
{
    int ret = 0;
    int foundit = 0;
    sasl_map_data *current = NULL;
    sasl_map_data *prev = NULL;
    sasl_map_data *next = NULL;

    slapi_rwlock_wrlock(priv->lock);
    current = priv->map_data_list;
    while (current) {
        next = current->next;
        if (0 == strcmp(current->name, removeme)) {
            foundit = 1;
            prev = current->prev;
            if (prev) {
                /* Unlink it */
                if (next) {
                    next->prev = prev;
                }
                prev->next = next;
            } else {
                /* That was the first list entry */
                if (next) {
                    next->prev = NULL;
                }
                priv->map_data_list = next;
            }
            /* Payload free */
            sasl_map_free_data(&current);
            /* And no need to look further */
            break;
        }
        current = next;
    }
    slapi_rwlock_unlock(priv->lock);
    if (!foundit) {
        ret = -1;
    }

    return ret;
}

static int
sasl_map_cmp_data(sasl_map_data *dp0, sasl_map_data *dp1)
{
    int rc = 0;
    if (NULL == dp0) {
        if (NULL == dp1) {
            return 0;
        } else {
            return -1;
        }
    } else {
        if (NULL == dp1) {
            return 1;
        }
    }

    rc = PL_strcmp(dp0->name, dp1->name);
    if (0 != rc) {
        /* did not match */
        return rc;
    }
    rc = PL_strcmp(dp0->regular_expression, dp1->regular_expression);
    if (0 != rc) {
        /* did not match */
        return rc;
    }
    rc = PL_strcmp(dp0->template_base_dn, dp1->template_base_dn);
    if (0 != rc) {
        /* did not match */
        return rc;
    }
    rc = PL_strcmp(dp0->template_search_filter, dp1->template_search_filter);
    return rc;
}

static int
sasl_map_insert_list_entry(sasl_map_private *priv, sasl_map_data *dp)
{
    int ret = 0;
    int ishere = 0;
    sasl_map_data *current = NULL;
    sasl_map_data *last = NULL;
    sasl_map_data *prev = NULL;

    if (NULL == dp) {
        return ret;
    }

    slapi_rwlock_wrlock(priv->lock);

    /* Check to see if it's here already */
    current = priv->map_data_list;
    while (current) {
        if (0 == sasl_map_cmp_data(current, dp)) {
            ishere = 1;
            break;
        }
        if (current->next) {
            current = current->next;
        } else {
            break;
        }
    }
    if (ishere) {
        slapi_rwlock_unlock(priv->lock);
        return -1;
    }

    /* insert the map in its proper place */
    if (NULL == priv->map_data_list) {
        priv->map_data_list = dp;
    } else {
        current = priv->map_data_list;
        while (current) {
            last = current;
            if (current->priority > dp->priority) {
                prev = current->prev;
                if (prev) {
                    prev->next = dp;
                    dp->prev = prev;
                } else {
                    /* this is now the head of the list */
                    priv->map_data_list = dp;
                }
                current->prev = dp;
                dp->next = current;
                slapi_rwlock_unlock(priv->lock);
                return ret;
            }
            current = current->next;
        }
        /* add the map at the end of the list */
        last->next = dp;
        dp->prev = last;
    }
    slapi_rwlock_unlock(priv->lock);

    return ret;
}

/*
 * Functions to handle config operations
 */

/**
 * Get a list of child DNs
 * DBDB these functions should be folded into libslapd because it's a copy of a function in ssl.c
 */
static char **
getChildren(char *dn)
{
    Slapi_PBlock *new_pb = NULL;
    Slapi_Entry **e;
    int search_result = 1;
    int nEntries = 0;
    char **list = NULL;

    new_pb = slapi_search_internal(dn, LDAP_SCOPE_ONELEVEL,
                                   "(objectclass=nsSaslMapping)",
                                   NULL, NULL, 0);

    slapi_pblock_get(new_pb, SLAPI_NENTRIES, &nEntries);
    if (nEntries > 0) {
        slapi_pblock_get(new_pb, SLAPI_PLUGIN_INTOP_RESULT, &search_result);
        slapi_pblock_get(new_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &e);
        if (e != NULL) {
            int i;
            list = (char **)slapi_ch_malloc(sizeof(*list) * (nEntries + 1));
            for (i = 0; e[i] != NULL; i++) {
                list[i] = slapi_ch_strdup(slapi_entry_get_dn(e[i]));
            }
            list[nEntries] = NULL;
        }
    }
    slapi_free_search_results_internal(new_pb);
    slapi_pblock_destroy(new_pb);
    return list;
}

/**
 * Free a list of child DNs
 */
static void
freeChildren(char **list)
{
    if (list != NULL) {
        int i;
        for (i = 0; list[i] != NULL; i++) {
            slapi_ch_free((void **)(&list[i]));
        }
        slapi_ch_free((void **)(&list));
    }
}


/**
 * Get a particular entry
 */
static Slapi_Entry *
getConfigEntry(const char *dn, Slapi_Entry **e2)
{
    Slapi_DN sdn;

    slapi_sdn_init_dn_byref(&sdn, dn);
    slapi_search_internal_get_entry(&sdn, NULL, e2,
                                    plugin_get_default_component_id());
    slapi_sdn_done(&sdn);
    return *e2;
}

/**
 * Free an entry
 */
static void
freeConfigEntry(Slapi_Entry **e)
{
    if ((e != NULL) && (*e != NULL)) {
        slapi_entry_free(*e);
        *e = NULL;
    }
}

/*
 * unescape parenthesis in the regular expression.
 * E.g., ^u:\(.*\) ==> ^u:(.*)
 * This unescape is necessary for the new regex code using PCRE
 * to keep the backward compatibility.
 */
char *
_sasl_unescape_parenthesis(char *input)
{
    char *s = NULL;
    char *d = NULL;

    for (s = input, d = input; s && *s; s++) {
        if (*s == '\\' && *(s + 1) && (*(s + 1) == '(' || *(s + 1) == ')')) {
            *d++ = *(++s);
        } else {
            *d++ = *s;
        }
    }
    if (d) {
        *d = '\0';
    }
    return input;
}

static int
sasl_map_config_parse_entry(Slapi_Entry *entry, sasl_map_data **new_dp)
{
    int ret = 0;
    int priority;
    char *regex = NULL;
    char *basedntemplate = NULL;
    char *filtertemplate = NULL;
    char *priority_str = NULL;
    char *map_name = NULL;

    *new_dp = NULL;
    regex = _sasl_unescape_parenthesis(slapi_entry_attr_get_charptr(entry, "nsSaslMapRegexString"));
    basedntemplate = slapi_entry_attr_get_charptr(entry, "nsSaslMapBaseDNTemplate");
    filtertemplate = slapi_entry_attr_get_charptr(entry, "nsSaslMapFilterTemplate");
    map_name = slapi_entry_attr_get_charptr(entry, "cn");
    priority_str = slapi_entry_attr_get_charptr(entry, "nsSaslMapPriority");

    if (priority_str) {
        priority = atoi(priority_str);
    } else {
        priority = LOW_PRIORITY;
    }
    if (priority < 1 || priority > LOW_PRIORITY) {
        struct berval desc;
        struct berval *newval[2] = {0, 0};

        desc.bv_val = LOW_PRIORITY_STR;
        desc.bv_len = strlen(desc.bv_val);
        newval[0] = &desc;
        if (entry_replace_values(entry, "nsSaslMapPriority", newval) != 0) {
            slapi_log_err(SLAPI_LOG_ERR, "sasl_map_config_parse_entry", "Failed to reset entry "
                                                                        "priority to (%d) - previous value (%s)\n",
                          LOW_PRIORITY, priority_str);
        } else {
            slapi_log_err(SLAPI_LOG_ERR, "sasl_map_config_parse_entry", "Resetting invalid nsSaslMapPriority "
                                                                        " value (%s) to the lowest priority (%d)\n",
                          priority_str, LOW_PRIORITY);
        }
        priority = LOW_PRIORITY;
    }
    if ((NULL == map_name) || (NULL == regex) ||
        (NULL == basedntemplate) || (NULL == filtertemplate)) {
        /* Invalid entry */
        ret = -1;
    } else {
        /* Make the new dp */
        *new_dp = sasl_map_new_data(map_name, regex, basedntemplate, filtertemplate, priority);
    }

    if (ret) {
        slapi_ch_free_string(&map_name);
        slapi_ch_free_string(&regex);
        slapi_ch_free_string(&basedntemplate);
        slapi_ch_free_string(&filtertemplate);
    }
    slapi_ch_free_string(&priority_str);

    return ret;
}

static int
sasl_map_read_config_startup(sasl_map_private *priv)
{
    char **map_entry_list = NULL;
    int ret = 0;

    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_read_config_startup", "=>\n");
    if ((map_entry_list = getChildren(configDN))) {
        char **map_entry = NULL;
        Slapi_Entry *entry = NULL;
        sasl_map_data *dp = NULL;

        for (map_entry = map_entry_list; *map_entry && !ret; map_entry++) {
            slapi_log_err(SLAPI_LOG_CONFIG, "sasl_map_read_config_startup", "Processing [%s]\n", *map_entry);
            getConfigEntry(*map_entry, &entry);
            if (entry == NULL) {
                continue;
            }
            ret = sasl_map_config_parse_entry(entry, &dp);
            if (ret) {
                slapi_log_err(SLAPI_LOG_ERR, "sasl_map_read_config_startup", "Failed to parse entry\n");
            } else {
                ret = sasl_map_insert_list_entry(priv, dp);
                if (ret) {
                    slapi_log_err(SLAPI_LOG_ERR, "sasl_map_read_config_startup", "Failed to insert entry\n");
                } else {
                    slapi_log_err(SLAPI_LOG_CONFIG, "sasl_map_read_config_startup", "Processed [%s]\n", *map_entry);
                }
            }
            freeConfigEntry(&entry);
        }
        freeChildren(map_entry_list);
    }
    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_read_config_startup", "<= %d\n", ret);
    return ret;
}

int
sasl_map_config_add(Slapi_PBlock *pb __attribute__((unused)),
                    Slapi_Entry *entryBefore,
                    Slapi_Entry *e __attribute__((unused)),
                    int *returncode,
                    char *returntext,
                    void *arg __attribute__((unused)))
{
    int ret = 0;
    sasl_map_data *dp = NULL;
    sasl_map_private *priv = sasl_map_get_global_priv();
    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_config_add", "=>\n");
    ret = sasl_map_config_parse_entry(entryBefore, &dp);
    if (!ret && dp) {
        ret = sasl_map_insert_list_entry(priv, dp);
    }
    if (0 == ret) {
        ret = SLAPI_DSE_CALLBACK_OK;
    } else {
        returntext = "sasl map entry rejected";
        *returncode = LDAP_UNWILLING_TO_PERFORM;
        ret = SLAPI_DSE_CALLBACK_ERROR;
    }
    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_config_add", "<= %d\n", ret);
    return ret;
}

int
sasl_map_config_modify(Slapi_PBlock *pb __attribute__((unused)),
                       Slapi_Entry *entryBefore,
                       Slapi_Entry *e,
                       int *returncode __attribute__((unused)),
                       char *returntext __attribute__((unused)),
                       void *arg __attribute__((unused)))
{
    sasl_map_private *priv = sasl_map_get_global_priv();
    sasl_map_data *dp;
    char *map_name = NULL;
    int ret = SLAPI_DSE_CALLBACK_ERROR;

    if ((map_name = (char *)slapi_entry_attr_get_ref(entryBefore, "cn")) == NULL) {
        slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_config_modify", "Could not find name of map\n");
        return ret;
    }
    if (sasl_map_remove_list_entry(priv, map_name) == 0) {
        ret = sasl_map_config_parse_entry(e, &dp);
        if (!ret && dp) {
            ret = sasl_map_insert_list_entry(priv, dp);
            if (ret == 0) {
                ret = SLAPI_DSE_CALLBACK_OK;
            }
        }
    }
    if (ret == SLAPI_DSE_CALLBACK_ERROR) {
        slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_config_modify", "Failed to update map(%s)\n", map_name);
    }

    return ret;
}

int
sasl_map_config_delete(Slapi_PBlock *pb __attribute__((unused)),
                       Slapi_Entry *entryBefore,
                       Slapi_Entry *e __attribute__((unused)),
                       int *returncode,
                       char *returntext,
                       void *arg __attribute__((unused)))
{
    int ret = 0;
    sasl_map_private *priv = sasl_map_get_global_priv();
    char *entry_name = NULL;

    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_config_delete", "=>\n");
    entry_name = (char *)slapi_entry_attr_get_ref(entryBefore, "cn");
    if (entry_name) {
        /* remove this entry from the list */
        ret = sasl_map_remove_list_entry(priv, entry_name);
    }
    if (ret) {
        ret = SLAPI_DSE_CALLBACK_ERROR;
        returntext = "can't delete sasl map entry";
        *returncode = LDAP_OPERATIONS_ERROR;
    } else {
        ret = SLAPI_DSE_CALLBACK_OK;
    }
    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_config_delete", "<= %d\n", ret);
    return ret;
}

/* Start and stop the sasl mapping code */
int
sasl_map_init()
{
    int ret = 0;
    sasl_map_private *priv = NULL;
    /* Make the private structure */
    priv = sasl_map_new_private();
    if (priv) {
        /* Store in the static var */
        sasl_map_static_priv = priv;
        /* Read the config on startup */
        ret = sasl_map_read_config_startup(priv);
    } else {
        ret = -1;
    }
    return ret;
}

int
sasl_map_done()
{
    int ret = 0;
    sasl_map_private *priv = sasl_map_get_global_priv();
    sasl_map_data *dp = NULL;

    /* there is no sasl map in referral mode */
    if (!priv || !priv->lock || !priv->map_data_list) {
        return 0;
    }

    /* Free the map list */
    slapi_rwlock_wrlock(priv->lock);
    dp = priv->map_data_list;
    while (dp) {
        sasl_map_data *dp_next = dp->next;
        sasl_map_free_data(&dp);
        dp = dp_next;
    }
    slapi_rwlock_unlock(priv->lock);

    /* Free the private structure */
    sasl_map_free_private(&priv);
    return ret;
}

static int
sasl_map_check(sasl_map_data *dp, char *sasl_user_and_realm, char **ldap_search_base, char **ldap_search_filter)
{
    Slapi_Regex *re = NULL;
    int ret = 0;
    int matched = 0;
    char *recomp_result = NULL;

    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_check", "=>\n");
    /* Compiles the regex */
    re = slapi_re_comp(dp->regular_expression, &recomp_result);
    if (NULL == re) {
        slapi_log_err(SLAPI_LOG_ERR,
                      "sasl_map_check", "slapi_re_comp failed for expression (%s): %s\n",
                      dp->regular_expression, recomp_result ? recomp_result : "unknown");
        slapi_ch_free_string(&recomp_result);
    } else {
        /* Matches the compiled regex against sasl_user_and_realm */
        matched = slapi_re_exec_nt(re, sasl_user_and_realm);
        slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_check", "regex: %s, id: %s, %s\n",
                      dp->regular_expression, sasl_user_and_realm,
                      matched ? "matched" : "didn't match");
    }
    if (matched) {
        if (matched == 1) {
            char escape_base[BUFSIZ];
            char escape_filt[BUFSIZ];
            int ldap_search_base_len, ldap_search_filter_len;
            int rc = 0;

            /* Allocate buffers for the returned strings */
            /* We already computed this, so we could pass it in to speed up
             * a little */
            size_t userrealmlen = strlen(sasl_user_and_realm);
            /* These lengths could be precomputed and stored in the dp */
            ldap_search_base_len =
                userrealmlen + strlen(dp->template_base_dn) + 1;
            ldap_search_filter_len =
                userrealmlen + strlen(dp->template_search_filter) + 1;
            *ldap_search_base = (char *)slapi_ch_malloc(ldap_search_base_len);
            *ldap_search_filter =
                (char *)slapi_ch_malloc(ldap_search_filter_len);
            /* Substitutes '&' and/or "\#" in template_base_dn */
            rc = slapi_re_subs(re, sasl_user_and_realm, dp->template_base_dn,
                               ldap_search_base, ldap_search_base_len);
            if (0 != rc) {
                slapi_log_err(SLAPI_LOG_ERR,
                              "sasl_map_check", "slapi_re_subs failed: "
                                                "subject: %s, subst str: %s (%d)\n",
                              sasl_user_and_realm, dp->template_base_dn, rc);
                slapi_ch_free_string(ldap_search_base);
                slapi_ch_free_string(ldap_search_filter);
            } else {
                /* Substitutes '&' and/or "\#" in template_search_filter */
                rc = slapi_re_subs_ext(re, sasl_user_and_realm,
                                       dp->template_search_filter, ldap_search_filter,
                                       ldap_search_filter_len, 1);
                if (0 != rc) {
                    slapi_log_err(SLAPI_LOG_ERR,
                                  "sasl_map_check", "slapi_re_subs failed: "
                                                    "subject: %s, subst str: %s (%d)\n",
                                  sasl_user_and_realm, dp->template_search_filter, rc);
                    slapi_ch_free_string(ldap_search_base);
                    slapi_ch_free_string(ldap_search_filter);
                } else {
                    /* these values are internal regex representations with
                     * lots of unprintable control chars - escape for logging */
                    slapi_log_err(SLAPI_LOG_TRACE,
                                  "sasl_map_check", "mapped base dn: %s, filter: %s\n",
                                  escape_string(*ldap_search_base, escape_base),
                                  escape_string(*ldap_search_filter, escape_filt));
                    ret = 1;
                }
            }
        } else {
            slapi_log_err(SLAPI_LOG_ERR,
                          "sasl_map_check", "slapi_re_exec_nt failed: "
                                            "regex: %s, subject: %s (%d)\n",
                          dp->regular_expression, sasl_user_and_realm, matched);
        }
    }
    slapi_re_free(re);
    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_check", "<= %d\n", ret);
    return ret;
}

static char *
sasl_map_str_concat(char *s1, char *s2)
{
    if (NULL == s2) {
        return (slapi_ch_strdup(s1));
    } else {
        char *newstr = slapi_ch_smprintf("%s@%s", s1, s2);
        return newstr;
    }
}

/* Actually perform a mapping
 * Takes a sasl identity string, and returns an LDAP search spec to be used to find the entry
 * returns 1 if matched, 0 otherwise
 */
int
sasl_map_domap(sasl_map_data **map, char *sasl_user, char *sasl_realm, char **ldap_search_base, char **ldap_search_filter)
{
    sasl_map_private *priv = sasl_map_get_global_priv();
    char *sasl_user_and_realm = NULL;
    int ret = 0;

    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_domap", "=>\n");
    if (map == NULL) {
        slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_domap", "<= Internal error, mapping is NULL\n");
        return ret;
    }
    *ldap_search_base = NULL;
    *ldap_search_filter = NULL;
    sasl_user_and_realm = sasl_map_str_concat(sasl_user, sasl_realm);
    /* Walk the list of maps */
    if (*map == NULL)
        *map = priv->map_data_list;
    while (*map) {
        /* If one matches, then make the search params */
        slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_domap", "Trying map [%s]\n", (*map)->name);
        if ((ret = sasl_map_check(*map, sasl_user_and_realm, ldap_search_base, ldap_search_filter))) {
            *map = sasl_map_next(*map);
            break;
        }
        *map = sasl_map_next(*map);
    }
    if (sasl_user_and_realm) {
        slapi_ch_free((void **)&sasl_user_and_realm);
    }
    slapi_log_err(SLAPI_LOG_TRACE, "sasl_map_domap", "<= (%s)\n", (1 == ret) ? "mapped" : "not mapped");
    return ret;
}

void
sasl_map_read_lock()
{
    sasl_map_private *priv = sasl_map_get_global_priv();
    slapi_rwlock_rdlock(priv->lock);
}

void
sasl_map_read_unlock()
{
    sasl_map_private *priv = sasl_map_get_global_priv();
    slapi_rwlock_unlock(priv->lock);
}