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 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
|
/* Copyright (C) 1997-2002 Luke Howard.
This file is part of the nss_ldap library.
Contributed by Luke Howard, <lukeh@padl.com>, 1997.
(The author maintains a non-exclusive licence to distribute this file
under their own conditions.)
The nss_ldap library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The nss_ldap library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the nss_ldap library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include "config.h"
#ifdef HAVE_THREAD_H
#include <thread.h>
#elif defined(HAVE_PTHREAD_H)
#include <pthread.h>
#endif
#include <stdio.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <stdlib.h>
#include <sys/param.h>
#include <netdb.h>
#include <syslog.h>
#include <string.h>
#ifdef HAVE_LBER_H
#include <lber.h>
#endif
#ifdef HAVE_LDAP_H
#include <ldap.h>
#endif
#ifndef HAVE_SNPRINTF
#include "snprintf.h"
#endif
#include "ldap-nss.h"
#include "globals.h"
#include "util.h"
static char rcsId[] = "$Id: util.c,v 2.78 2002/03/19 08:02:36 lukeh Exp $";
static NSS_STATUS do_getrdnvalue (const char *dn,
const char *rdntype,
char **rval, char **buffer,
size_t * buflen);
#ifdef AT_OC_MAP
enum ldap_map_type
{
MAP_ATTRIBUTE,
MAP_OBJECTCLASS
};
typedef enum ldap_map_type ldap_map_type_t;
static NSS_STATUS do_parse_map_statement (ldap_config_t * cfg,
const char *statement,
ldap_map_type_t type);
#endif /* AT_OC_MAP */
static NSS_STATUS do_searchdescriptorconfig (const char *key,
const char *value,
size_t valueLength,
ldap_service_search_descriptor_t
** result, char **buffer,
size_t * buflen);
/*
* Use db_185.h first, as that's an old DB wrapper
* around DB 2.x. If we don't have that, use db1/db.h,
* which I think may me the original DB library.
* Last resort, use db.h, which we hope has the
* right API!
*/
#ifdef RFC2307BIS
#ifdef HAVE_DB3_DB_185_H
#include <db3/db_185.h>
#else
#ifdef HAVE_DB_185_H
#include <db_185.h>
#define DN2UID_CACHE
#elif defined(HAVE_DB1_DB_H)
#include <db1/db.h>
#define DN2UID_CACHE
#elif defined(HAVE_DB_H)
#include <db.h>
#define DN2UID_CACHE
#endif /* HAVE_DB1_DB_H */
#endif /* HAVE_DB3_DB_H */
#ifdef DN2UID_CACHE
#include <fcntl.h>
static DB *__cache = NULL;
NSS_LDAP_DEFINE_LOCK(__cache_lock);
#define cache_lock() NSS_LDAP_LOCK(__cache_lock)
#define cache_unlock() NSS_LDAP_UNLOCK(__cache_lock)
static NSS_STATUS
dn2uid_cache_put (const char *dn, const char *uid)
{
DBT key, val;
int rc;
cache_lock ();
if (__cache == NULL)
{
__cache = dbopen (NULL, O_RDWR, 0600, DB_HASH, NULL);
if (__cache == NULL)
{
cache_unlock ();
return NSS_TRYAGAIN;
}
}
key.data = (void *) dn;
key.size = strlen (dn);
val.data = (void *) uid;
val.size = strlen (uid);
rc = (__cache->put) (__cache, &key, &val, 0);
cache_unlock ();
return rc ? NSS_TRYAGAIN : NSS_SUCCESS;
}
static NSS_STATUS
dn2uid_cache_get (const char *dn, char **uid, char **buffer, size_t * buflen)
{
DBT key, val;
cache_lock ();
if (__cache == NULL)
{
cache_unlock ();
return NSS_NOTFOUND;
}
key.data = (void *) dn;
key.size = strlen (dn);
if ((__cache->get) (__cache, &key, &val, 0) != 0)
{
cache_unlock ();
return NSS_NOTFOUND;
}
if ((val.size + 1) > *buflen)
{
cache_unlock ();
return NSS_NOTFOUND;
}
*uid = *buffer;
strncpy (*uid, (char *) val.data, val.size);
(*uid)[val.size] = '\0';
*buffer += val.size + 1;
*buflen -= val.size + 1;
cache_unlock ();
return NSS_SUCCESS;
}
#endif /* DN2UID_CACHE */
NSS_STATUS
_nss_ldap_dn2uid (LDAP * ld,
const char *dn, char **uid, char **buffer, size_t * buflen)
{
NSS_STATUS status;
debug ("==> _nss_ldap_dn2uid");
status = do_getrdnvalue (dn, AT (uid), uid, buffer, buflen);
if (status != NSS_SUCCESS)
{
#ifdef DN2UID_CACHE
status = dn2uid_cache_get (dn, uid, buffer, buflen);
if (status != NSS_SUCCESS)
{
#endif /* DN2UID_CACHE */
const char *attrs[2];
LDAPMessage *res;
attrs[0] = AT (uid);
attrs[1] = NULL;
status = NSS_NOTFOUND;
if (_nss_ldap_read (dn, attrs, &res) == NSS_SUCCESS)
{
LDAPMessage *e = ldap_first_entry (ld, res);
if (e != NULL)
{
status =
_nss_ldap_assign_attrval (ld, e, AT (uid), uid, buffer,
buflen);
#ifdef DN2UID_CACHE
if (status == NSS_SUCCESS)
dn2uid_cache_put (dn, *uid);
}
#endif /* DN2UID_CACHE */
}
ldap_msgfree (res);
}
}
debug ("<== _nss_ldap_dn2uid");
return status;
}
#endif /* RFC2307BIS */
NSS_STATUS
_nss_ldap_getrdnvalue (LDAP * ld,
LDAPMessage * entry,
const char *rdntype,
char **rval, char **buffer, size_t * buflen)
{
char *dn;
NSS_STATUS status;
dn = ldap_get_dn (ld, entry);
if (dn == NULL)
{
return NSS_NOTFOUND;
}
status = do_getrdnvalue (dn, rdntype, rval, buffer, buflen);
#ifdef HAVE_LDAP_MEMFREE
ldap_memfree (dn);
#else
free (dn);
#endif /* HAVE_LDAP_MEMFREE */
/*
* If examining the DN failed, then pick the nominal first
* value of cn as the canonical name (recall that attributes
* are sets, not sequences)
*/
if (status == NSS_NOTFOUND)
{
char **vals;
vals = ldap_get_values (ld, entry, rdntype);
if (vals != NULL)
{
int rdnlen = strlen (*vals);
if (*buflen >= rdnlen)
{
char *rdnvalue = *buffer;
strncpy (rdnvalue, *vals, rdnlen);
rdnvalue[rdnlen] = '\0';
*buffer += rdnlen + 1;
*buflen -= rdnlen + 1;
*rval = rdnvalue;
status = NSS_SUCCESS;
}
else
{
status = NSS_TRYAGAIN;
}
ldap_value_free (vals);
}
}
return status;
}
NSS_STATUS
do_getrdnvalue (const char *dn,
const char *rdntype,
char **rval, char **buffer, size_t * buflen)
{
char **exploded_dn;
char *rdnvalue = NULL;
char rdnava[64];
int rdnlen = 0, rdnavalen;
snprintf (rdnava, sizeof rdnava, "%s=", rdntype);
rdnavalen = strlen (rdnava);
exploded_dn = ldap_explode_dn (dn, 0);
if (exploded_dn != NULL)
{
/*
* attempt to get the naming attribute's principal
* value by parsing the RDN. We need to support
* multivalued RDNs (as they're essentially mandated
* for services)
*/
#ifdef HAVE_LDAP_EXPLODE_RDN
/*
* use ldap_explode_rdn() API, as it's cleaner than
* strtok(). This code has not been tested!
*/
char **p, **exploded_rdn;
exploded_rdn = ldap_explode_rdn (*exploded_dn, 0);
if (exploded_rdn != NULL)
{
for (p = exploded_rdn; *p != NULL; p++)
{
if (strncasecmp (*p, rdnava, rdnavalen) == 0)
{
char *r = *p + rdnavalen;
rdnlen = strlen (r);
if (*buflen < rdnlen)
{
ldap_value_free (exploded_rdn);
ldap_value_free (exploded_dn);
return NSS_TRYAGAIN;
}
rdnvalue = *buffer;
strncpy (rdnvalue, r, rdnlen);
break;
}
}
ldap_value_free (exploded_rdn);
}
#else
/*
* we don't have Netscape's ldap_explode_rdn() API,
* so we fudge it with strtok(). Note that this will
* not handle escaping properly.
*/
char *p, *r = *exploded_dn;
#ifdef HAVE_STRTOK_R
char *st = NULL;
#endif
#ifndef HAVE_STRTOK_R
for (p = strtok (r, "+");
#else
for (p = strtok_r (r, "+", &st);
#endif
p != NULL;
#ifndef HAVE_STRTOK_R
p = strtok (NULL, "+"))
#else
p = strtok_r (NULL, "+", &st))
#endif
{
if (strncasecmp (p, rdnava, rdnavalen) == 0)
{
p += rdnavalen;
rdnlen = strlen (p);
if (*buflen < rdnlen)
{
ldap_value_free (exploded_dn);
return NSS_TRYAGAIN;
}
rdnvalue = *buffer;
strncpy (rdnvalue, p, rdnlen);
break;
}
if (r != NULL)
r = NULL;
}
#endif /* HAVE_LDAP_EXPLODE_RDN */
}
if (exploded_dn != NULL)
{
ldap_value_free (exploded_dn);
}
if (rdnvalue != NULL)
{
rdnvalue[rdnlen] = '\0';
*buffer += rdnlen + 1;
*buflen -= rdnlen + 1;
*rval = rdnvalue;
return NSS_SUCCESS;
}
return NSS_NOTFOUND;
}
#ifdef AT_OC_MAP
static NSS_STATUS
do_parse_map_statement (ldap_config_t * cfg,
const char *statement, ldap_map_type_t type)
{
/**
* statement has already been prepared in _nss_ldap_readconfig
* => only a split dumping white space inbetween is necessary!
*/
NSS_STATUS stat;
char *key, *val;
key = (char *) statement;
val = key;
while (*val != ' ' && *val != '\t')
val++;
*(val++) = '\0';
while (*val == ' ' || *val == '\t')
val++;
if (type == MAP_ATTRIBUTE)
stat = _nss_ldap_atmap_put (cfg, key, val);
else /* type == MAP_OBJECTCLASS */
stat = _nss_ldap_ocmap_put (cfg, key, val);
return stat;
}
#endif /* AT_OC_MAP */
static NSS_STATUS
do_searchdescriptorconfig (const char *key, const char *value, size_t len,
ldap_service_search_descriptor_t ** result,
char **buffer, size_t * buflen)
{
ldap_service_search_descriptor_t **t;
char *base;
char *filter, *s;
int scope;
t = NULL;
filter = NULL;
scope = -1;
if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_PASSWD))
t = &result[LM_PASSWD];
if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_SHADOW))
t = &result[LM_SHADOW];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_GROUP))
t = &result[LM_GROUP];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_HOSTS))
t = &result[LM_HOSTS];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_SERVICES))
t = &result[LM_SERVICES];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_NETWORKS))
t = &result[LM_NETWORKS];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_PROTOCOLS))
t = &result[LM_PROTOCOLS];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_RPC))
t = &result[LM_RPC];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_ETHERS))
t = &result[LM_ETHERS];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_NETMASKS))
t = &result[LM_NETMASKS];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_BOOTPARAMS))
t = &result[LM_BOOTPARAMS];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_ALIASES))
t = &result[LM_ALIASES];
else if (!strcasecmp (key, NSS_LDAP_KEY_NSS_BASE_NETGROUP))
t = &result[LM_NETGROUP];
if (t == NULL)
return NSS_SUCCESS;
/* we have already checked for room for the value */
/* len is set to the length of value */
base = *buffer;
strncpy (base, value, len);
base[len] = '\0';
*buffer += len + 1;
*buflen -= len + 1;
/* probably is some funky escaping needed here. later... */
s = strchr (base, '?');
if (s != NULL)
{
*s = '\0';
s++;
if (!strcasecmp (s, "sub"))
scope = LDAP_SCOPE_SUBTREE;
else if (!strcasecmp (s, "one"))
scope = LDAP_SCOPE_ONELEVEL;
else if (!strcasecmp (s, "base"))
scope = LDAP_SCOPE_BASE;
filter = strchr (s, '?');
if (filter != NULL)
{
*filter = '\0';
filter++;
}
}
if (bytesleft (*buffer, *buflen, ldap_service_search_descriptor_t) <
sizeof (ldap_service_search_descriptor_t))
return NSS_UNAVAIL;
align (*buffer, *buflen, ldap_service_search_descriptor_t);
*t = (ldap_service_search_descriptor_t *) * buffer;
(*t)->lsd_base = base;
(*t)->lsd_scope = scope;
(*t)->lsd_filter = filter;
*buffer += sizeof (ldap_service_search_descriptor_t);
*buflen -= sizeof (ldap_service_search_descriptor_t);
return NSS_SUCCESS;
}
NSS_STATUS
_nss_ldap_readconfig (ldap_config_t ** presult, char *buffer, size_t buflen)
{
FILE *fp;
char b[NSS_LDAP_CONFIG_BUFSIZ];
NSS_STATUS stat = NSS_SUCCESS;
ldap_config_t *result;
if (*presult == NULL)
{
*presult = (ldap_config_t *) calloc (1, sizeof (*result));
if (*presult == NULL)
return NSS_UNAVAIL;
}
result = *presult;
result->ldc_scope = LDAP_SCOPE_SUBTREE;
result->ldc_deref = LDAP_DEREF_NEVER;
result->ldc_host = NULL;
result->ldc_base = NULL;
result->ldc_port = 0;
result->ldc_binddn = NULL;
result->ldc_bindpw = NULL;
result->ldc_saslid = NULL;
result->ldc_usesasl = 0;
result->ldc_rootbinddn = NULL;
result->ldc_rootbindpw = NULL;
result->ldc_rootsaslid = NULL;
result->ldc_rootusesasl = 0;
#ifdef LDAP_VERSION3
result->ldc_version = LDAP_VERSION3;
#else
result->ldc_version = LDAP_VERSION2;
#endif /* LDAP_VERSION3 */
result->ldc_timelimit = LDAP_NO_LIMIT;
result->ldc_bind_timelimit = 30;
result->ldc_ssl_on = SSL_OFF;
result->ldc_sslpath = NULL;
result->ldc_referrals = 1;
result->ldc_restart = 1;
result->ldc_uri = NULL;
result->ldc_tls_checkpeer = 0;
result->ldc_tls_cacertfile = NULL;
result->ldc_tls_cacertdir = NULL;
result->ldc_tls_ciphers = NULL;
result->ldc_tls_cert = NULL;
result->ldc_tls_key = NULL;
result->ldc_idle_timelimit = 0;
#ifdef AT_OC_MAP
result->ldc_at_map = NULL;
result->ldc_oc_map = NULL;
result->ldc_password_type = LU_RFC2307_USERPASSWORD;
#endif /* AT_OC_MAP */
result->ldc_next = result;
fp = fopen (NSS_LDAP_PATH_CONF, "r");
if (fp == NULL)
{
free (result);
return NSS_UNAVAIL;
}
while (fgets (b, sizeof (b), fp) != NULL)
{
char *k, *v;
int len;
char **t = NULL;
if (*b == '\n' || *b == '#')
continue;
k = b;
v = k;
/* skip past all characters in keyword */
while (*v != '\0' && *v != ' ' && *v != '\t')
v++;
if (*v == '\0')
continue;
/* terminate keyword */
*(v++) = '\0';
/* skip all whitespaces between keyword and value */
/* Lars Oergel <lars.oergel@innominate.de>, 05.10.2000 */
while (*v == ' ' || *v == '\t')
v++;
/* kick off all whitespaces and newline at the end of value */
/* Bob Guo <bob@mail.ied.ac.cn>, 08.10.2001 */
len = strlen (v)-1;
while (v[len] == ' ' || v[len] == '\t' || v[len] =='\n' )
--len;
v[++len] = '\0';
if (buflen < (size_t) (len + 1))
{
/*
* fix in nss_ldap-127: don't return NSS_TRYAGAIN,
* as we have no way to increase the buffer size.
*/
stat = NSS_UNAVAIL;
break;
}
if (!strcasecmp (k, NSS_LDAP_KEY_HOST))
{
t = &result->ldc_host;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_URI))
{
t = &result->ldc_uri;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_BASE))
{
t = &result->ldc_base;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_BINDDN))
{
t = &result->ldc_binddn;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_BINDPW))
{
t = &result->ldc_bindpw;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_USESASL))
{
result->ldc_usesasl = (!strcasecmp (v, "on")
|| !strcasecmp (v, "yes")
|| !strcasecmp (v, "true"));
}
else if (!strcasecmp (k, NSS_LDAP_KEY_SASLID))
{
t = &result->ldc_saslid;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_ROOTBINDDN))
{
t = &result->ldc_rootbinddn;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_ROOTUSESASL))
{
result->ldc_rootusesasl = (!strcasecmp (v, "on")
|| !strcasecmp (v, "yes")
|| !strcasecmp (v, "true"));
}
else if (!strcasecmp (k, NSS_LDAP_KEY_ROOTSASLID))
{
t = &result->ldc_rootsaslid;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_SSLPATH))
{
t = &result->ldc_sslpath;
}
else if (!strcasecmp (k, NSS_LDAP_KEY_SCOPE))
{
if (!strcasecmp (v, "sub"))
{
result->ldc_scope = LDAP_SCOPE_SUBTREE;
}
else if (!strcasecmp (v, "one"))
{
result->ldc_scope = LDAP_SCOPE_ONELEVEL;
}
else if (!strcasecmp (v, "base"))
{
result->ldc_scope = LDAP_SCOPE_BASE;
}
}
else if (!strcasecmp (k, NSS_LDAP_KEY_DEREF))
{
if (!strcasecmp (v, "never"))
{
result->ldc_deref = LDAP_DEREF_NEVER;
}
else if (!strcasecmp (v, "searching"))
{
result->ldc_deref = LDAP_DEREF_SEARCHING;
}
else if (!strcasecmp (v, "finding"))
{
result->ldc_deref = LDAP_DEREF_FINDING;
}
else if (!strcasecmp (v, "always"))
{
result->ldc_deref = LDAP_DEREF_ALWAYS;
}
}
else if (!strcasecmp (k, NSS_LDAP_KEY_PORT))
{
result->ldc_port = atoi (v);
}
else if (!strcasecmp (k, NSS_LDAP_KEY_SSL))
{
if (!strcasecmp (v, "on") || !strcasecmp (v, "yes")
|| !strcasecmp (v, "true"))
{
result->ldc_ssl_on = SSL_LDAPS;
}
else if (!strcasecmp (v, "start_tls"))
{
result->ldc_ssl_on = SSL_START_TLS;
}
}
else if (!strcasecmp (k, NSS_LDAP_KEY_REFERRALS))
{
result->ldc_referrals = (!strcasecmp (v, "on")
|| !strcasecmp (v, "yes")
|| !strcasecmp (v, "true"));
}
else if (!strcasecmp (k, NSS_LDAP_KEY_RESTART))
{
result->ldc_restart = (!strcasecmp (v, "on")
|| !strcasecmp (v, "yes")
|| !strcasecmp (v, "true"));
}
else if (!strcasecmp (k, NSS_LDAP_KEY_LDAP_VERSION))
{
result->ldc_version = atoi (v);
}
else if (!strcasecmp (k, NSS_LDAP_KEY_TIMELIMIT))
{
result->ldc_timelimit = atoi (v);
}
else if (!strcasecmp (k, NSS_LDAP_KEY_BIND_TIMELIMIT))
{
result->ldc_bind_timelimit = atoi (v);
}
else if (!strcasecmp (k, NSS_LDAP_KEY_IDLE_TIMELIMIT))
{
result->ldc_idle_timelimit = atoi (v);
}
else if (!strcasecmp (k, "tls_checkpeer"))
{
if (!strcasecmp (v, "on") || !strcasecmp (v, "yes")
|| !strcasecmp (v, "true"))
{
result->ldc_tls_checkpeer = 1;
}
else if (!strcasecmp (v, "off") || !strcasecmp (v, "no")
|| !strcasecmp (v, "false"))
{
result->ldc_tls_checkpeer = 0;
}
}
else if (!strcasecmp (k, "tls_cacertfile"))
{
t = &result->ldc_tls_cacertfile;
}
else if (!strcasecmp (k, "tls_cacertdir"))
{
t = &result->ldc_tls_cacertdir;
}
else if (!strcasecmp (k, "tls_ciphers"))
{
t = &result->ldc_tls_ciphers;
}
else if (!strcasecmp (k, "tls_cert"))
{
t = &result->ldc_tls_cert;
}
else if (!strcasecmp (k, "tls_key"))
{
t = &result->ldc_tls_key;
}
#ifdef AT_OC_MAP
else if (!strncasecmp (k, NSS_LDAP_KEY_MAP_ATTRIBUTE,
strlen (NSS_LDAP_KEY_MAP_ATTRIBUTE)))
{
do_parse_map_statement (result, v, MAP_ATTRIBUTE);
}
else if (!strncasecmp (k, NSS_LDAP_KEY_MAP_OBJECTCLASS,
strlen (NSS_LDAP_KEY_MAP_OBJECTCLASS)))
{
do_parse_map_statement (result, v, MAP_OBJECTCLASS);
}
#endif /* AT_OC_MAP */
else
{
/*
* check whether the key is a naming context key
* if yes, parse; otherwise just return NSS_SUCCESS
* so we can ignore keys we don't understand.
*/
stat =
do_searchdescriptorconfig (k, v, len, result->ldc_sds, &buffer,
&buflen);
if (stat == NSS_UNAVAIL)
{
break;
}
}
if (t != NULL)
{
strncpy (buffer, v, len);
buffer[len] = '\0';
*t = buffer;
buffer += len + 1;
/* fix in nss_ldap-127: decrement buflen */
buflen -= len + 1;
}
}
fclose (fp);
/*
* fix in nss_ldap-127: return if out of buffer space
*/
if (stat != NSS_SUCCESS)
{
free (result);
return stat;
}
if (result->ldc_rootbinddn != NULL)
{
fp = fopen (NSS_LDAP_PATH_ROOTPASSWD, "r");
if (fp)
{
if (fgets (b, sizeof (b), fp) != NULL)
{
int len;
len = strlen (b);
if (len > 0)
len--;
/* fix in nss_ldap-127: check for enough buffer space */
if (buflen < (size_t) (len + 1))
{
free (result);
return NSS_UNAVAIL;
}
strncpy (buffer, b, len);
buffer[len] = '\0';
result->ldc_rootbindpw = buffer;
buffer += len + 1;
/* fix in nss_ldap-127: decrement buflen */
buflen -= len + 1;
}
fclose (fp);
}
else if (!result->ldc_rootusesasl)
{
result->ldc_rootbinddn = NULL;
}
}
if (result->ldc_host == NULL
#ifdef HAVE_LDAP_INITIALIZE
&& result->ldc_uri == NULL
#endif
)
{
free (result);
return NSS_NOTFOUND;
}
if (result->ldc_port == 0)
{
#ifdef LDAPS_PORT
if (result->ldc_ssl_on == SSL_LDAPS)
{
result->ldc_port = LDAPS_PORT;
}
else
#endif /* SSL */
result->ldc_port = LDAP_PORT;
}
return stat;
}
NSS_STATUS _nss_ldap_escape_string (const char *str, char *buf, size_t buflen)
{
int ret = NSS_TRYAGAIN;
char *p = buf;
char *limit = p + buflen - 3;
const char *s = str;
while (p < limit && *s)
{
switch (*s)
{
case '*':
strcpy (p, "\\2a");
p += 3;
break;
case '(':
strcpy (p, "\\28");
p += 3;
break;
case ')':
strcpy (p, "\\29");
p += 3;
break;
case '\\':
strcpy (p, "\\5c");
p += 3;
break;
default:
*p++ = *s;
break;
}
s++;
}
if (*s == '\0')
{
/* got to end */
*p = '\0';
ret = NSS_SUCCESS;
}
return ret;
}
|