Quanah Gibson-Mount pushed to branch master at openldap / OpenLDAP
Commits:
49504c16 by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
Fix whitespace in ppolicy.c
- - - - -
3e0447f4 by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
ITS#7089 Skip lockout checks/modifications if password attribute missing
- - - - -
3ec005a0 by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
ITS#7788 Report if there is a policy that applies
- - - - -
0b6ac3fd by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
ITS#7788 Skip lockout processing if no policy applies
- - - - -
a030aacc by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
ITS#7788 Allow pwdFailureTime tracking be disabled in policy
- - - - -
376d5d65 by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
ITS#7084 ACL of 'manage' gives pasword administrator access
Password administrators can bypass safeModify, password quality checks
and trigger reset if policy instructs the server to.
- - - - -
e05c09b9 by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
ITS#8762 Clear pwdFailureTime on unlock
- - - - -
5bf16496 by OndÅ™ej KuznÃk at 2020-07-03T20:42:14+00:00
ITS#7084, ITS#7089, ITS#7788 Update test to account for new functionality
- - - - -
4 changed files:
- doc/man/man5/slapo-ppolicy.5
- servers/slapd/overlays/ppolicy.c
- tests/data/slapd-ppolicy.conf
- tests/scripts/test022-ppolicy
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/a3bee867005e6f4f19f406…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/a3bee867005e6f4f19f406…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch OPENLDAP_REL_ENG_2_5 at openldap / OpenLDAP
Commits:
4e8f9130 by Quanah Gibson-Mount at 2020-05-27T19:51:16+00:00
Issue#9239 - Fix case where e->e_dn may be NULL causing a segfault on some platforms
- - - - -
528ab11f by OndÅ™ej KuznÃk at 2020-05-28T16:02:02+00:00
ITS#9271 Document ldap_parse_intermediate
- - - - -
2286e2ed by Quanah Gibson-Mount at 2020-05-31T22:32:53+00:00
Issue#9248 - Fix default prefix value
- - - - -
47974536 by Quanah Gibson-Mount at 2020-06-01T19:05:26+00:00
Issue #8888 - Change numbered list to Note format
- - - - -
2346dfd2 by Howard Chu at 2020-06-21T00:45:45+01:00
ITS#9262 check referral
- - - - -
f3e0707e by Quanah Gibson-Mount at 2020-06-21T16:37:48+00:00
Cleanup links to old ITS system
- - - - -
57b0ed90 by OndÅ™ej KuznÃk at 2020-06-21T18:55:09+00:00
ITS#8434 Allow cleanup at the end of a failed back-config add
- - - - -
0d0d5072 by Quanah Gibson-Mount at 2020-06-21T22:04:46+00:00
ITS#8140 - Update bind operations to note bind_ssf vs overall connection ssf
- - - - -
e5105e70 by OndÅ™ej KuznÃk at 2020-06-21T22:53:14+00:00
ITS#8473 Mark olcPlugin as ordered
- - - - -
6b46232a by OndÅ™ej KuznÃk at 2020-06-21T22:53:14+00:00
ITS#8473 Implement ordering stable (de)registration
- - - - -
71560032 by OndÅ™ej KuznÃk at 2020-06-21T22:53:14+00:00
ITS#8949 Check eblock exists before freeing
cn=config changes might cause slapi_plugins_used transition from 0
during the lifetime of operation (cn=config change or syncrepl) or
a connection and we should be able to deal with that.
- - - - -
79960723 by OndÅ™ej KuznÃk at 2020-06-22T09:28:26+01:00
ITS#7796 Move 'not indexed' messages to loglevel filter
- - - - -
ee7502ac by Sergio Gelato at 2020-06-22T17:27:30+00:00
ITS#8204 Remove bias towards the first record in RFC2782 shuffle implementation.
Prior to this change, given two records of weight 1 the algorithm would
return them in the order (0,1) with 100% probability instead of the
desired 50%. This was due to an off-by-one error in the range test.
srv_rand() returns a float in the range [0.0, 1.0[, so r is an integer in the
range [0, total[. The correct probability for record 0 to be chosen is
a[0].weight/total, not (a[0].weight+1)/total.
- - - - -
8006ee58 by Sergio Gelato at 2020-06-22T17:27:30+00:00
ITS#8204 Improved RFC2782 shuffle when several, but not all, records have weight 0.
The fallback to a straight Fisher-Yates shuffle needs to occur whenever the
sum of the *remaining* weights is zero, or else the remaining records will
not be reordered. Testing only once at the beginning covers the case when
all weights are zero, and obviously no shuffling is needed when only one
weight is zero; but other weight combinations are possible, such as (1, 0, 0).
- - - - -
3e5490f4 by OndÅ™ej KuznÃk at 2020-06-22T18:20:22+00:00
ITS#9043 More descriptive logs for syncrepl traffic and decisions
- - - - -
58c97882 by Quanah Gibson-Mount at 2020-06-22T20:44:12+00:00
Issue#9020 - Use consistent namespaces for overlays
- - - - -
42d72389 by Brett Sheffield at 2020-06-23T10:31:08+01:00
ITS#8603 Add ldif_open_mem()
ldif_open_mem() is the fmemopen(3) equivalent of ldif_open() which opens
an ldif steam from memory, rather than from a file.
- - - - -
eae2dfde by OndÅ™ej KuznÃk at 2020-06-23T15:29:26+00:00
ITS#9280 Add ppolicy_disable_write
- - - - -
d1e874c6 by OndÅ™ej KuznÃk at 2020-06-23T16:06:09+00:00
ITS#8768 Introduce delcsn into our syncrepl cookies
- - - - -
182ec30a by OndÅ™ej KuznÃk at 2020-06-23T16:06:09+00:00
ITS#8768 Accept delcsn from the server
- - - - -
e24a6bf5 by OndÅ™ej KuznÃk at 2020-06-23T16:06:09+00:00
ITS#8768 Do not update main CSN during delete phase
- - - - -
64d11337 by Quanah Gibson-Mount at 2020-06-23T17:14:16+00:00
ITS#8603 - Regenerate configure
- - - - -
e3e725cd by Quanah Gibson-Mount at 2020-06-23T17:15:24+00:00
Merge remote-tracking branch 'origin/master' into OPENLDAP_REL_ENG_2_5
- - - - -
30 changed files:
- configure
- configure.in
- contrib/slapd-modules/autogroup/autogroup.c
- contrib/slapd-modules/autogroup/slapo-autogroup.5
- contrib/slapd-modules/passwd/argon2/Makefile
- contrib/slapd-modules/passwd/pbkdf2/Makefile
- doc/devel/todo
- doc/guide/admin/overlays.sdf
- doc/man/man3/ldap_parse_result.3
- doc/man/man3/ldap_parse_result.3.links
- doc/man/man5/slapo-dyngroup.5
- doc/man/man5/slapo-dynlist.5
- doc/man/man5/slapo-memberof.5
- include/ldif.h
- include/portable.hin
- libraries/libldap/dnssrv.c
- libraries/libldap/ldif.c
- servers/slapd/back-ldap/chain.c
- servers/slapd/back-mdb/filterindex.c
- servers/slapd/back-wt/filterindex.c
- servers/slapd/bconfig.c
- servers/slapd/bind.c
- servers/slapd/connection.c
- servers/slapd/ldapsync.c
- servers/slapd/overlays/autoca.c
- servers/slapd/overlays/dyngroup.c
- servers/slapd/overlays/dynlist.c
- servers/slapd/overlays/memberof.c
- servers/slapd/overlays/ppolicy.c
- servers/slapd/overlays/syncprov.c
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/5a22509ab708ec42012024…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/5a22509ab708ec42012024…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch master at openldap / OpenLDAP
Commits:
d1e874c6 by OndÅ™ej KuznÃk at 2020-06-23T16:06:09+00:00
ITS#8768 Introduce delcsn into our syncrepl cookies
- - - - -
182ec30a by OndÅ™ej KuznÃk at 2020-06-23T16:06:09+00:00
ITS#8768 Accept delcsn from the server
- - - - -
e24a6bf5 by OndÅ™ej KuznÃk at 2020-06-23T16:06:09+00:00
ITS#8768 Do not update main CSN during delete phase
- - - - -
5 changed files:
- servers/slapd/ldapsync.c
- servers/slapd/overlays/syncprov.c
- servers/slapd/proto-slap.h
- servers/slapd/slap.h
- servers/slapd/syncrepl.c
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/eae2dfde04a66173adb999…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/eae2dfde04a66173adb999…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch master at openldap / OpenLDAP
Commits:
ee7502ac by Sergio Gelato at 2020-06-22T17:27:30+00:00
ITS#8204 Remove bias towards the first record in RFC2782 shuffle implementation.
Prior to this change, given two records of weight 1 the algorithm would
return them in the order (0,1) with 100% probability instead of the
desired 50%. This was due to an off-by-one error in the range test.
srv_rand() returns a float in the range [0.0, 1.0[, so r is an integer in the
range [0, total[. The correct probability for record 0 to be chosen is
a[0].weight/total, not (a[0].weight+1)/total.
- - - - -
8006ee58 by Sergio Gelato at 2020-06-22T17:27:30+00:00
ITS#8204 Improved RFC2782 shuffle when several, but not all, records have weight 0.
The fallback to a straight Fisher-Yates shuffle needs to occur whenever the
sum of the *remaining* weights is zero, or else the remaining records will
not be reordered. Testing only once at the beginning covers the case when
all weights are zero, and obviously no shuffling is needed when only one
weight is zero; but other weight combinations are possible, such as (1, 0, 0).
- - - - -
1 changed file:
- libraries/libldap/dnssrv.c
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/799607231d60c332f1d1f2…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/799607231d60c332f1d1f2…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch master at openldap / OpenLDAP
Commits:
e5105e70 by OndÅ™ej KuznÃk at 2020-06-21T22:53:14+00:00
ITS#8473 Mark olcPlugin as ordered
- - - - -
6b46232a by OndÅ™ej KuznÃk at 2020-06-21T22:53:14+00:00
ITS#8473 Implement ordering stable (de)registration
- - - - -
71560032 by OndÅ™ej KuznÃk at 2020-06-21T22:53:14+00:00
ITS#8949 Check eblock exists before freeing
cn=config changes might cause slapi_plugins_used transition from 0
during the lifetime of operation (cn=config change or syncrepl) or
a connection and we should be able to deal with that.
- - - - -
4 changed files:
- servers/slapd/bconfig.c
- servers/slapd/slapi/plugin.c
- servers/slapd/slapi/proto-slapi.h
- servers/slapd/slapi/slapi_ext.c
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/0d0d50724a9ca87642a883…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/0d0d50724a9ca87642a883…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch master at openldap / OpenLDAP
Commits:
f3e0707e by Quanah Gibson-Mount at 2020-06-21T16:37:48+00:00
Cleanup links to old ITS system
- - - - -
8 changed files:
- doc/devel/todo
- tests/data/regressions/its8444/its8444
- tests/data/regressions/its8521/its8521
- tests/data/regressions/its8616/its8616
- tests/data/regressions/its8663/its8663
- tests/data/regressions/its8667/its8667
- tests/data/regressions/its8752/its8752
- tests/data/regressions/its8800/its8800
View it on GitLab: https://git.openldap.org/openldap/openldap/-/commit/f3e0707e343a0c2f7a78b51…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/commit/f3e0707e343a0c2f7a78b51…
You're receiving this email because of your account on git.openldap.org.
Howard Chu pushed to branch mdb.RE/0.9 at openldap / OpenLDAP
Commits:
f683ffdc by Howard Chu at 2020-06-16T19:56:16+01:00
ITS#9278 fix robust mutex cleanup for FreeBSD
FreeBSD 11 supports robust process-shared POSIX mutexes,
but requires them to be explicitly destroyed before munmap
- - - - -
f681a076 by Howard Chu at 2020-06-16T19:57:41+01:00
Silence stupid fallthru warning
- - - - -
1 changed file:
- libraries/liblmdb/mdb.c
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/1ce8c2bcea5f97efa77205…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/1ce8c2bcea5f97efa77205…
You're receiving this email because of your account on git.openldap.org.