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 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
|
$Header: /home/project/cvs/nss_ldap/ChangeLog,v 2.194 2002/04/04 01:19:11 lukeh Exp $
===============================================================
186 Luke Howard <lukeh@padl.com>
* integrated patch for Debian Bug report #140854,
where nss_ldap could in some cases close a
descriptor it did not own. Patch was provided
by Luca Filipozzi.
185 Luke Howard <lukeh@padl.com>
* updated copyrights
* fix for bug #82: set close on exec (Debian bug 136953)
184 Luke Howard <lukeh@padl.com>
* return NSS_TRYAGAIN if no buffer space in ldap-grp.c
183 Luke Howard <lukeh@padl.com>
* return error strings in AIX authentication routine
* initialise schema in getgroupsbymember()
* fix for tls_checkpeer; pass NULL session in to
set global option
* BUG#77: configurable config file locations
181 Luke Howard <lukeh@padl.com>
* ignore SIGPIPE whilst inside nss_ldap library routines
to prevent crashing on down LDAP server; possible fix
for Debian bug 130006
* removed --enable-no-so-keepalive; always try to
disable SO_KEEPALIVE on underlying socket to LDAP
server
* include local copy of irs.h under AIX
* general cleanup of locking code
* _nss_ldap_no_members appears to only need defining for
when RFC2307bis is enabled
180 Luke Howard <lukeh@padl.com>
* pull in libpthreads on AIX
179 Luke Howard <lukeh@padl.com>
* a couple more patches for AIX
178 Luke Howard <lukeh@padl.com>
* patch from Gabor Gombas for AIX support
* Makefile.am: sasl.o needed by NSS_LDAP
* aix_authmeth.c: method_passwordexpired is
really method_passwdexpired; but since the struct
was bzero()ed no need to set it to NULL
* configure.in: support both gcc and xlc_r
* exports.aix: sv_byport was not exported
* ldap-grp.c: getgrset() returned group names instead of
gid numbers
177 Luke Howard <lukeh@padl.com>
* patch for building on AIX from IBM
* added simple authentication support for AIX
* cleaned up SASL patch to not break if Cyrus
SASL is not installed
176 Luke Howard <lukeh@padl.com>
* fixed bug in SASL patch which had required
OpenLDAP headers
175 Luke Howard <lukeh@padl.com>
* incorporated GSS-API SASL patches
* rebind to server on LDAP_LOCAL_ERROR
174 Luke Howard <lukeh@padl.com>
* added patches from Maxim Batourine for compiling
with Sun workshop compiler
* added notes re: 64-bit compile on Solaris from
above source
173 Luke Howard <lukeh@padl.com>
* notes on IRS in doc/README.IRS
* added irs.h for AIX compat
* patch from Bob Guo for stripping trailing
spaces in ldap.conf.
172 Luke Howard <lukeh@padl.com>
* fixed schema mapping bug by storing a copy of the
mapped schema in the Berkeley DB rather than the
element itself. Because the DB library returns
static storage, this was causing problems where
the schema mapping calls were used to build the
attribute table in ldap-schema.c. This bugfix was
sponsored by n2h2.com; thanks!
171 Luke Howard <lukeh@padl.com>
* added ldap.conf stanza for AIX
* workaround for schema mapping bug.
170 Luke Howard <lukeh@padl.com>
* use _nss_ldap_getrdnvalue() for determining canonical
group name
169 Luke Howard <lukeh@padl.com>
* fixed typo in ldap-service.c; prefix filters now
with _nss_ldap
168 Luke Howard <lukeh@padl.com>
* initialize old_handler to SIG_DFL
* incorporate Stephan Cremer's mapping patches,
a big thanks to Stephan for these!
* use LDAP_OPT_NETWORK_TIMEOUT if available for
network connect timeout
* removed hard-coded schema mapping for
authPassword, NDS and MSSFU
167 Luke Howard <lukeh@padl.com>
* support for new OpenLDAP rebind proc prototype
* in rebind function, respect timeout
* fix for PADL Release Control
166 Luke Howard <lukeh@padl.com>
* corrected small typos
165 Luke Howard <lukeh@padl.com>
* posixMember is a distinguished name, don't pretend it
is a login name
* cleaned up code referencing different member syntaxes
164 Luke Howard <lukeh@padl.com>
* removed IDS_UID code, never worked properly
163 Luke Howard <lukeh@padl.com>
* removed context_free function, usage confusing
162 Luke Howard <lukeh@padl.com>
* in reconnect harness, do not treat entry not found
errors as requiring a reconnect
161 Luke Howard <lukeh@padl.com>
* hopefully fixed use of synchronous searches in
_nss_ldap_getbyname()
160 Luke Howard <lukeh@padl.com>
* patch from RedHat to check for DB3, override
install user/group optionally
* use synchoronous searches for _nss_ldap_getbyname()
* only set SSL options if we have values for those
options
159 Luke Howard <lukeh@padl.com>
* make do_ssl_options() take a config parameter;
avoid segfault with SSL?
158 Luke Howard <lukeh@padl.com>
* in the distinguished name to login cache (dn2uid)
make sure we use the AT(uid) macro for the uid
attribute rather than the hard-coded value of "uid"
This should enable the cache for MSSFU support.
157 Luke Howard <lukeh@padl.com>
* for MSSFU, use posixMember for group memberships
rather than member (reported by Andy Rechenberg)
* ignore SIGPIPE before calling do_close() for
idle_timeout
156 Luke Howard <lukeh@padl.com>
* logic was around the wrong way in do_search(),
all searches were broken!
* --disable-ssl option for configure
* removed "Obsoletes: pam_ldap" from spec file
155 Luke Howard <lukeh@padl.com>
* do not use private API when setting OpenLDAP TLS
options (do_ssl_options())
154 Luke Howard <lukeh@padl.com>
* notes from Scott M. Stone <sstone@foo3.com>
* idle timeout patch from Steve Barrus
153 Luke Howard <lukeh@padl.com>
* SSL fix
152 Luke Howard <lukeh@padl.com>
* further patch from Jarkko for TLS/SSL auth:
support for LDAPS/cipher suite selection/
client key/cert authentication
151 Luke Howard <lukeh@padl.com>
* patch from Andrew Rechenberg for Active
Directory schema support
* patch from Jarkko Turkulainen <jt@wapit.com> for
peer certificate support with OpenLDAP
150 Luke Howard <lukeh@padl.com>
* patch from Anselm Kruis for URI support
149 Luke Howard <lukeh@padl.com>
* fixed compile on Solaris, broken in 145 by
malformed Linux patch
148 Luke Howard <lukeh@padl.com>
* check for HAVE_LDAP_SET_OPTION always
147 Luke Howard <lukeh@padl.com>
* check for ldap_set_option(), as LDAP_OPT_REFERRALS
is defined for OpenLDAP 1.x but without the
ldap_set_option() function
146 Luke Howard <lukeh@padl.com>
* mass reindentation, GNU style
* patch from Simon Wilkinson <sxw@sxw.org.uk>
for compatibility with old initgroups entry
point
* request authPassword attribute if
--enable-authpassword
* authPassword support in ldap-spwd.c (shadow)
145 Luke Howard <lukeh@padl.com>
* preliminary support for authPassword attribute
* updated COPYING
* patch from Szymon Juraszczyk to suppot
_nss_ldap_initgroups_dyn prototype
144 Luke Howard <lukeh@padl.com>
* when specifying filters with nss_base_XXX,
only escape the filter argument not the entire
filter
143 Luke Howard <lukeh@padl.com>
* patch from nalin@redhat.com to avoid
corrupting the heap when the configuration
file exists but has no host and base values.
_nss_ldap_readconfigfromdns() will write to
the region which was already freed.
142 Luke Howard <lukeh@padl.com>
* patch from Simon Wilkinson <sxw@sxw.org.uk>
for memory leak in ldap-service.c
141 Luke Howard <lukeh@padl.com>
* fix for BUG#54 (AIX detection broken)
* use -rpath on all platforms except Solaris,
not just Linux
140 Luke Howard <lukeh@padl.com>
* fix configure bug for DISABLE_SO_KEEPALIVE
* fix alignment bug in util.c; this was causing
Solaris to crash whenever per-map search
descriptors were specified in ldap.conf
139 Luke Howard <lukeh@padl.com>
* updated INSTALL file with boilerplate
* fixed pointer error in ldap-nss.c
138 Luke Howard <lukeh@padl.com>
* close config file FILE * if out of buffer space
for parsing search descriptor
* fixed bug where non-recognized directives in
ldap.conf would cause the configuration file to
not be parsed at all, if they were the last
entries in the config file.
137.1 Luke Howard <lukeh@padl.com>
* patch from nalin@redhat.com; return { NULL } not
NULL for no group members
* cleaned up usage of libc-lock.h weak aliases
to pthreads API; use in ltf.c also
* use __libc_atfork() or pthread_atfork() to
close off connection on fork, rather than
checking PIDs; this is expensive and breaks
on Linux where each thread may have a
different PID.
137 Gabor Gombas <gombasg@inf.elte.hu>
* build nss_ldap as a loadable module on AIX
* doco on AIX
136 Luke Howard <lukeh@padl.com>
* define -DPIC for FreeBSD
* link with -shared not --shared
* fixes for AIX
135 Luke Howard <lukeh@padl.com>
* merged ldap.conf
* fixed bug in concatenating relative search
bases in ldap-nss.c (profile support)
134 Luke Howard <lukeh@padl.com>
* fixed Makefile.am
* reordered DB search order in util.c
133 Luke Howard <lukeh@padl.com>
* make /usr/lib directory in Makefile.am
* new spec file from Joe Little
132 Luke Howard <lukeh@padl.com>
* fixed rebind preprocessor logic
131 Luke Howard <lukeh@padl.com>
* created files for automake happiness
130 Luke Howard <lukeh@padl.com>
* fixed typo preventing build with Netscape
client library
129 Luke Howard <lukeh@padl.com>
* updated version number
* fixed build bug on Solaris
128 Luke Howard <lukeh@padl.com>
* fixed logic bug in util.c introduced in
nss_ldap-127
127 Luke Howard <lukeh@padl.com>
* updating copyright notices
* autoconf support; IRIX and OSF/1 support has
been dropped (dl-*.[ch]) as no one really
used this, the implementation was a hack,
and these operating systems have their
own LDAP implementations now
* added support for "referrals" and "restart"
options to ldap.conf
* use OpenLDAP 2.x rebind proc with correct
arguments
* added "timelimit" and "bind_timelimit"
directives to ldap.conf
* fixed bug with dereferencing aliases
* preliminary support for profiles; recognise
profile semantics in ldap-nss.c/util.c
* parity with pam_ldap; "ssl" directive in
ldap.conf can now specify "yes" or
"start_tls" for Start TLS
* hopefully fixed Berkeley DB include
mess in util.c
* fixed potential buffer overflow in util.c
* default to LDAP protocol version 3
* fixed leaks in util.c, dnsconfig.c
* accept on/yes/true for boolean configuration
values
* tested building on FreeBSD, Solaris 8, Linux
* tested functionality on RedHat 6.2
126 Luke Howard <lukeh@padl.com>
125 Luke Howard <lukeh@padl.com>
* fixed up Linux Makefiles to build libnss_ldap
124 Luke Howard <lukeh@padl.com>
* patch from nalin@redhat.com for StartTLS
* fixed up indenting
123 Luke Howard <lukeh@padl.com>
* rolled in BUG#52 branch with fixes for AIX
122.BZ52.2 Luke Howard <lukeh@padl.com>
* included ldap-schema.c; omitted from previous
checkpoint
122.BZ52.1 Luke Howard <lukeh@padl.com>
* preliminary fix for BUG#52 (support for different
naming contexts for each map)
* fixed bug in enumerating services map
122 Luke Howard <lukeh@padl.com>
* fixed BUG#50 (check return value of ldap_simple_bind())
121 Luke Howard <lukeh@padl.com>
* fixed BUG#49 (fix acknowledged race condition)
120 Luke Howard <lukeh@padl.com>
* added Makefile.aix and exports.aix (forgot)
119 Luke Howard <lukeh@padl.com>
* patch from Gabor Gombas <gombasg@inf.elte.hu>
to support AIX implementation of BIND IRS
118 Luke Howard <lukeh@padl.com>
* Makefile.RPM.openldap2 from Joe Little
117 Luke Howard <lukeh@padl.com>
* permanently ignore SIGPIPE when using SSL. This
bug should be fixed properly.
116 Luke Howard <lukeh@padl.com>
* added irs-nss.diff and README.IRS from Emile
Heitor
115 Luke Howard <lukeh@padl.com>
* fixed filter escaping
* call ldapssl_client_init() once only
* include db_185.h not db.h for dn2uid cache
* fixes for FreeBSD (IRS) support from Emile
Heitor
113 Luke Howard <lukeh@padl.com>
* patch from Ben Collins to escape '*' in filters
110 Luke Howrad <lukeh@padl.com>
* patch from Phlilip Liu for async binds
109 Luke Howard <lukeh@padl.com>
* omit socket check for -DSSL; it doesn't work
* updated CONTRIBUTORS
* updated README re HAVE_LDAP_LD_FREE
108 Luke Howard <lukeh@padl.com>
* included "deref" option in /etc/ldap.conf, compatible
with OpenLDAP syntax. Patch from Michael Mattice.
107 Luke Howard <lukeh@padl.com>
* fixed argument to _nss_ldap_getent() in ldap-ethers.c
106.2 Luke Howard <lukeh@padl.com>
* if root, use rootbinddn/rootbindpw in rebind proc
* include objectClass in pwd required attributes
106.1 Luke Howard <lukeh@padl.com>
* if user is a shadowAccount, then don't return password
in getpwent(), getpwuid() or getpwnam()
* incorporated patch (from Doug Nazar):
* allow getgrent() to be called without setgrent();
note arguments to _nss_ldap_getent() have changed.
* return NSS_NOTFOUND instead of NSS_UNAVAIL at the
end of a search
* initialize len for getpeername()
105 Luke Howard <lukeh@padl.com>
* incorporated patch for deadlock under Solaris (from
Dave Begley)
104 Luke Howard <lukeh@padl.com>
* new spec file
103 Luke Howard <lukeh@padl.com>
* don't call ldap_parse_result() with V2 API
102 Luke Howard <lukeh@padl.com>
* added defines for LDAP_MSG_ONE et al if not in ldap.h
* removed LDAP_MORE_RESULTS_TO_RETURN test
101 Luke Howard <lukeh@padl.com>
* fixed spec file
100 Luke Howard <lukeh@padl.com>
* support for asynchronous search API!
* added some contributors
* notes about ldap_ld_free()
* merged in ChangeLog
99 Luke Howard <lukeh@padl.com>
* added some netgroup implementation tips
* do_close_no_unbind() cleanup
98 Luke Howard <lukeh@padl.com>
* /etc/nss_ldap.secret -> /etc/ldap.secret (sorry,
Doug!)
* deleted crypt-mechanism code. Junk.
* fixed call to _nss_ldap_read() after changing
prototypes in nss_ldap-88
97 Luke Howard <lukeh@padl.com>
* #ifndef HAVE_LDAP_LD_FREE, still call ldap_unbind(),
but having closed the descriptor.
96 Luke Howard <lukeh@padl.com>
* re-orged
95 Luke Howard <lukeh@padl.com>
* disable SO_KEEPALIVE on socket rather than blocking
SIGPIPE. Need to figure out the right way to do this.
94 Luke Howard <lukeh@padl.com>
* committed some changes for the parent/child close
problem. It relies on internal libldap APIs so
it may be non-portable but should work with OpenLDAP
and Netscape client libraries, and perhaps most UMich-
derived client libraries. There's a possible workaround
for client libraries without this; undefine
HAVE_LDAP_LD_FREE to test this.
93 Luke Howard <lukeh@padl.com>
* important fix: make sure return status is reset
after do_open() == NSS_SUCCESS, just in case
no entries are returned. This bug was introduced
in nss_ldap-88 and could potentially cause a
security hole.
92 Luke Howard <lukeh@padl.com>
* signal handling fix: don't restore handler
unnecessarily.
* don't open nss_ldap.secret unless a root pw
is specified in ldap.conf
91 Luke Howard <lukeh@padl.com>
* reorganized SIGPIPE blocking code
* added SSL support
90 Luke Howard <lukeh@padl.com>
* only reconnect if we've changed to/from root
89 Luke Howard <lukeh@padl.com>
* cleaned up a few things
88 Luke Howard <lukeh@padl.com>
* added breaks to switch in _nss_ldap_lookup
(thanks to Nathan.Hawkins@FMR.COM for pointing
this out)
* save signal handler and ignore SIGPIPE for
appropriate sections of do_open() and confirm
connection is still active (patch from
rpatel@globix.com)
* allow root users to bind as a different user,
to provide quasi-shadow password support (patch
from nazard@dragoninc.on.ca)
* under Linux, make Makefile look at last libc
version (patch from nazard@dragoninc.on.ca)
* never clobber nsswitch.ldap/ldap.conf when
making install (patch from nazard@dragoninc.on.ca)
* change do_open() to not unbind the parent ldap
connection when the pid changes but simply open a
new connection (patch from nazard@dragoninc.on.ca)
* changed _nss_ldap_lookup() and _nss_ldap_read()
prototypes to return NSS_STATUS error codes,
so that NSS_UNAVAIL percolates as appropriate.
87 Luke Howard <lukeh@padl.com>
* fixed looking up DN-membered groups by member. Thanks
to Jeff Mandel for spotting this hard to find bug.
86 Luke Howard <lukeh@padl.com>
* member for NDS vs uniqueMember (needs further
investigation; -DNDS)
85 Luke Howard <lukeh@padl.com>
* check non-NULLity of userdn before freeing
* use AT(uid) for groupsbymember filter
84 Luke Howard <lukeh@padl.com>
* implemented _nss_ldap_initgroups()
81 Luke Howard <lukeh@padl.com>
* removed extraneous do_sleep() code
* updated spec file
80 Luke Howard <lukeh@padl.com>
* (really 2.80) changed version number a la Solaris 7!
* cleaned up schema stuff into ldap-schema.h
2.79 Luke Howard <lukeh@padl.com>
* implemented exponential backoff reconnect logic
2.78 Luke Howard <lukeh@padl.com>
* removed ldap.conf.ragenet from lineup
* removed spurious do_close()
2.76 Luke Howard <lukeh@padl.com>
* added -lresolv to Solaris makefiles
2.75 Luke Howard <lukeh@padl.com>
* incorporated RPM patches from stein@terminator.net
2.72 Luke Howard <lukeh@padl.com>
* implemented getgroupsbymember() for Solaris.
Supplementary groups should be initialized now.
(NB: doesn't appear to be quite working for
RFC2307bis yet.)
* GNU indent-ified
2.71 Luke Howard <lukeh@padl.com>
* removed -DDEBUG as default build flag
2.70 Luke Howard <lukeh@padl.com>
* put /usr/ucblib back into linker search path for
Solaris.
2.69 Luke Howard <lukeh@padl.com>
* added timeout, unavailable, and server busy
conditions to rebind logic
* indent -gnu all source files
2.68 Luke Howard <lukeh@padl.com>
* mods for glibc 2.1 (__set_errno is obselete it seems)
2.65 Luke Howard <lukeh@padl.com>
* mods to compile with OpenLDAP 2
2.64 Luke Howard <lukeh@padl.com>
* changed alias schema to Sun SDS nisMailAlias schema
* updated TODO list to reflect Bugzilla entries
* restored capitalization of attributes for "niceness"
2.63 Luke Howard <lukeh@padl.com>
* added patch from gero@faveve.uni-stuttgart.de for
parsing of ldap.conf with tabs
* some fixes for BSDI BSD/OS IRS
2.62 Luke Howard <lukeh@padl.com>
* added experimental support for DN-membered groups;
to enable, define RFC2307BIS
* fixed align bug (where buflen wasn't being
decremented after pointer alignment)
2.61 Luke Howard <lukeh@padl.com>
* added warning about compiling with DS 4.1 LDAP SDK
2.60 Luke Howard <lukeh@padl.com>
* fixed missing close brace
2.59 Luke Howard <lukeh@padl.com>
* pw_comment field defaults to pw_gecos (Solaris only)
2.56 Luke Howard <lukeh@padl.com>
* fixed Makefile.linux.mozilla NSSLIBVER
2.55 Luke Howard <lukeh@padl.com>
* merged in glibc-2.1 branch
2.54.6 Luke Howard <lukeh@padl.com>
* misc fixes.
2.54.5 Luke Howard <lukeh@padl.com>
* misc fixes.
2.54.4 Luke Howard <lukeh@padl.com>
* glibc-2.1 patches from bcollins@debian.org
2.54.3 Luke Howard <lukeh@padl.com>
* glibc-2.1 support. (Recall #93)
* set erange correctly on Solaris (related to above)
2.51 Luke Howaed <lukeh@padl.com>
* added rebind function
2.51 Luke Howard <lukeh@padl.com>
* added stuff for RC
2.49 Luke Howard <lukeh@padl.com>
* configuration file is now case insensitive
2.47 Luke Howard <lukeh@xedoc.com>
* RFC2052BIS (_ldap._tcp) support
2.45 Luke Howard <lukeh@xedoc.com>
* added #include <stdlib.h> to globals.c
2.44 Luke Howard <lukeh@xedoc.com>
* NULL search base allowed (omit basedn from config file)
2.42 Luke Howard <lukeh@xedoc.com>
* fixed potential crasher in dnsconfig.c
* LDAP session is now persistent for performance reasons.
Removed references to the session anywhere outside
ldap-nss.c. The process ID is cached and the session
reopened after a fork().
2.39 Luke Howard <lukeh@xedoc.com>
* fixed warning in ldap-ethers.c (removed const from
struct ether)
* added ldap_version keyword to ldap.conf for parity with
pam_ldap
2.38 Luke Howard <lukeh@xedoc.com>
* debugged ldap_explode_rdn() code
* added support for Mozilla LDAP client library; see
Makefile.linux.mozilla and ltf.c for more information.
Thanks to Netscape for making their library
available.
2.37 Luke Howard <lukeh@xedoc.com>
* moved to CVS repository and Linux as development
environment
* incorporated ldap-service.c fix from Greg
2.36 Luke Howard <lukeh@xedoc.com>
* util.c: will use ldap_explode_rdn() if it exists
2.35 Luke Howard <lukeh@xedoc.com>
* made util.c compile again. Silly me.
2.34 Luke Howard <lukeh@xedoc.com>
* fixed #endif in testpw.c
* fixed another DN freeing leak in util.c
* added RFC 2307 to distribution (fixed the two
typos in it:
* fixed bug in ...getrdnvalue() (thanks, Greg)
% diff rfc2307.txt ~/rfc2307.txt
480c480
< MUST ( cn $ ipProtocolNumber )
---
> MUST ( cn $ ipProtocolNumber $ description )
1038c1038
< lester:X5/DBrWPOQQaI:10:10:Lester:/home/lester:/bin/csh
---
> lester:X5/DBrWPOQQaI:10:10:Lester:/home/lester:/bin/sh
2.33 Luke Howard <lukeh@xedoc.com>
* rolled in more patches from greg@rage.net:
* removed _r from setXXXent and endXXXent functions
for GNU_NSS
* cleaned up testpw.c to use pthreads and protos
* fixed prototype for gethostbyaddr_r on GNU_NSS
* braced conditional in getservbyname_r
* merged in Makefile.linux and README.LINUX diffs
* added htons(port) in getservbyport_r
* added nsswitch.test
* added ldaptest.pl
* added ldap.conf.ragenet
2.32 Luke Howard <lukeh@xedoc.com>
* moved Makefile to Makefile.solaris
* cleaned up mutex code for Linux, hopefully
2.31 Luke Howard <lukeh@xedoc.com>
* fixed leak in util.c (need to free dn)
* rolled in patches from greg@rage.net:
* fixed ldap-ethers.c to use struct ether
* fixed bracing in ldap-hosts.c (?)
* added SSLEAY patch to ldap-nss.h
* fixed locking in ldap-nss.h
* Makefile changes incorporated into Makefile.linux
2.30 Luke Howard <lukeh@xedoc.com>
* synced into DevMan repository again
* RFC 2307 is the one!
2.29e Luke Howard <lhoward@apple.com>
* util.c: fixed memory leak (call to ldap_value_free())
2.29d Luke Howard <lhoward@apple.com>
* ldap-ethers.c: fixed to use HOSTNAME attribute
2.29c Luke Howard <lhoward@apple.com>
* ieee8022Device -> ieee802Device
2.29b Luke Howard <lhoward@apple.com>
* added ieee8022Device and bootableDevice classes,
at Sun's request.
2.29a Luke Howard <lhoward@apple.com>
* dc -> cn
2.29 Luke Howard <lukeh@xedoc.com>
* changed host/network/ethers naming schema
see the -02 draft revision for more info
2.28 Luke Howard <lukeh@xedoc.com>
* ldap-pwd.c, ldap-spwd.c: fixed tmpbuf stuff. Yuck.
2.27 Luke Howard <lukeh@xedoc.com>
* ANNOUNCE: reflected draft-howard-nis-schema-01.txt
* ldap-spwd.c: default for shadow integer values is -1, not 0
and fixed crasher (thanks to dj@gregor.com)
2.26 Luke Howard <lukeh@xedoc.com>
* globals.c: added offset stuff back for mapping errnumbers.
Weird: this stuff *was* in an earlier version of the work
area. I have no idea where it went. Scary.
2.25 Luke Howard <lukeh@xedoc.com>
* irs-nss.h: added prototype for irs_ldap_acc()
* ldap-*.[ch]: removed redundent PARSER macro
* unbroke for GNU NSS (context_key_t changed to context_handle_t)
2.24 Luke Howard <lukeh@xedoc.com>
* irs-nss.c: added dispatch table for IRS library
* testpw5.c: added additional test program
* ldap-nss.c: removed spurious debug statement
* ldap-nss.c, util.c, dnsconfig.c: cleaned up memory
allocation for config. (This could be improved, but
there is no longer a static ldap_config_t structure.)
* Makefile: general cleanup
2.23 Luke Howard <lukeh@xedoc.com>
* default destructor is now simply wrapped around by individual backend
destructors
* __EXTENSIONS__ defined for Solaris 2.6 to import strncasecmp()
* getbyname: fixed crasher in ldap-nss.c due to uninitialized variable
* ldap-parse.h, assorted others: tidied up resolver calls to use
NSS_ARGS() macro and not to interfere with the previous backend's
status (bad thing!)
* ldap-service.c: cleaned up potential uninitialized var in parser
* ldap-nss.c: no valued arrays are now { NULL } instead of NULL.
2.22 Luke Howard <lukeh@xedoc.com>
* testpw.c: XXX problem. dies with segfault, but gdb doesn't give
me enough information; it's definitely within nss_ldap.so though.
I just can't see the symbols. (Maybe dbx would be better...)
However, testpw doesn't work at *all* under 2.5.1, and technically
it shouldn't as it's not linked against liblthread. I haven't been
able to duplicate this with testpw2, which is the same code linked
with the thread library.
* backported to NeXT
2.21 Luke Howard <lukeh@xedoc.com>
* resolve.h: renamed functions so as to keep namespace clean
* snprintf.h: tidied up for systems which already have snprintf()
and renamed anyway to keep namespace clean (_nss_ldap_snprintf)
* ldap-*.h: made character constants const to avoid nasty warnings
* globals.[ch]: as above
* README, TODO, ANNOUNCE: general documentation updates
* ldap-nss.c, et al: general work on Solaris 2.6 port, to get
nscd working. Lots of fiddling with the locking.
* Major architectural changes to Solaris NSS implementation.
Thread specific data is now stored in the backend, where it
should be: just like it is in IRS. Locking is a little more
coarse now, but it will do for the moment.
* Paul Henson's DCE module gave me the inspiration to do the
backend stuff the "right" way -- thanks, Paul!
* As a result, a lot of the bugs listed in TODO have mysteriously
fixed themselves. :-)
2.20 Luke Howard <lukeh@xedoc.com>
* Makefile.*: ensured resolve.[ch] and dnsconfig.[ch] were there.
* Makefile: should link now with gcc -shared instead of requiring
cc.
2.19 Luke Howard <lukeh@xedoc.com>
* testpw4.c: added irs hostbyname() test
* Makefile: added correct flags to build position indepdenent
code with Sun's compiler (thanks, Bill). Added SRV sources.
* testpw.c: works under NeXT, cleaned up a bit.
* ldap.conf: documented what this file does
* util.c: ignore blank lines in ldap.conf properly
* resolve.h: fixed up for Solaris
2.18 Luke Howard <lukeh@xedoc.com>
* ldap-network.c: fixed infinite loop in getnetbyname()
* util.c: goto out causes a compiler warning under Solaris.
Documented this. Should fix this, I suppose, but we need
to break out of two blocks. (We could remove the code that
handles multivalued DNs, as it's fairly unlikely that someone
will use a DN of o=Xedoc+dc=xedoc,c=US+dc=com, but who knows?)
* ldap-ethers.c: line 215, result was not assigned to an
lvalue (should have been args->status, not args). Fixed.
2.17 Luke Howard <lukeh@xedoc.com>
* Cleaned up documentation and testpw4.c
* dnsconfig.c: Fixed strtok() bug which was clobbering domain
2.16 Luke Howard <lukeh@xedoc.com>
* util.c (_nss_ldap_readconfig) fixed strtok() typo
2.15 Luke Howard <lukeh@xedoc.com>
* dnsconfig.c: got DNS SRV support working under NEXTSTEP
* util.c: (_nss_ldap_getdomainname) made host and network DN parsing
compliant with current draft
2.2 - 2.14 Luke Howard <lukeh@xedoc.com>
* I'll get around to merging in the RCS log here one day.
Nothing very exciting happened, I just backported the code to
NEXTSTEP and compiled it.
2.1 Luke Howard <lukeh@xedoc.com>
* merged in old RCS tree (now nss_ldap 0.2)
1.x Luke Howard <lukeh@xedoc.com>
* old RCS repository (corresponds to nss_ldap 0.1)
|