Howard Chu pushed to branch mdb.master3 at openldap / OpenLDAP
Commits:
14c7ff33 by Howard Chu at 2024-10-16T22:47:42+01:00
Move the crypto module helpers into main liblmdb.
Just makes things easier than using the individual mdb_env_set APIs.
- - - - -
9 changed files:
- libraries/liblmdb/Makefile
- libraries/liblmdb/lmdb.h
- libraries/liblmdb/mdb.c
- libraries/liblmdb/mdb_copy.c
- libraries/liblmdb/mdb_drop.c
- libraries/liblmdb/mdb_dump.c
- libraries/liblmdb/mdb_load.c
- libraries/liblmdb/mdb_stat.c
- libraries/liblmdb/mtest_enc2.c
View it on GitLab: https://git.openldap.org/openldap/openldap/-/commit/14c7ff334759278d12db0aa…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/commit/14c7ff334759278d12db0aa…
You're receiving this email because of your account on git.openldap.org.
Howard Chu pushed to branch mdb.master3 at openldap / OpenLDAP
Commits:
e895f5fd by Howard Chu at 2024-10-14T19:39:32+01:00
ITS#9920 crypto: use libsodium instead of OpenSSL
Note: even though the same algorithms were used, the data produced by
this module doesn't work with the OpenSSL-based module and vice versa.
- - - - -
c277aed1 by Howard Chu at 2024-10-14T19:40:26+01:00
ITS#9920 lmdb: fix data races in rpage decryption
- - - - -
3 changed files:
- libraries/liblmdb/Makefile
- libraries/liblmdb/crypto.c
- libraries/liblmdb/mdb.c
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/49726aa38bd62497c3ef6f…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/49726aa38bd62497c3ef6f…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch OPENLDAP_REL_ENG_2_6 at openldap / OpenLDAP
Commits:
84a64fe3 by Howard Chu at 2024-10-04T21:41:34+00:00
ITS#10237 back-ldap: fix usage of multi-precision add for op counters
- - - - -
836cb913 by Quanah Gibson-Mount at 2024-10-04T21:47:30+00:00
ITS#10237
- - - - -
efa9f173 by HAMANO Tsukasa at 2024-10-04T21:49:50+00:00
ITS#10233 - fix idl intersection
The `mdb_idl_intersection()` and `wt_idl_intersection()` functions derived from back-bdb return wrong results.
expect:
[1, 3] ∩ [2] = []
actual:
[1, 3] ∩ [2] = [2]
also
- Add scope checking for back-wt
- fix compiler warning
- - - - -
af4dfade by Quanah Gibson-Mount at 2024-10-04T21:53:57+00:00
ITS#7400 - Fix exattr to exattrs option
- - - - -
72df6b39 by Quanah Gibson-Mount at 2024-10-04T21:59:09+00:00
ITS#10233
- - - - -
bfe0b374 by Ryan Tandy at 2024-10-04T21:59:24+00:00
ITS#10253 Fix incompatible pointer type with GnuTLS
- - - - -
3c330926 by Quanah Gibson-Mount at 2024-10-04T21:59:40+00:00
ITS#10253
- - - - -
bec0946c by Howard Chu at 2024-10-04T22:00:01+00:00
ITS#10256 cn=config: reject modify requests on cn=schema,cn=config
Add requests already handled it specially; corresponding treatment
for modify requests was missing. The docs have always stated that
cn=schema,cn=config is only for slapd's hardcoded schema so this
only affects users who don't read docs.
- - - - -
3a9afeac by Quanah Gibson-Mount at 2024-10-04T22:00:54+00:00
ITS#10256
- - - - -
99327d31 by Ondřej Kuzník at 2024-10-04T22:02:24+00:00
ITS#10249 slapo-nestgroup: plug leak in nestgroup_memberFilter
- - - - -
90611ffd by Quanah Gibson-Mount at 2024-10-04T22:02:56+00:00
ITS#10249
- - - - -
a6f6c2f8 by Ondřej Kuzník at 2024-10-04T22:03:39+00:00
ITS#10248 Always generate a result on the original op
- - - - -
12eeb27d by Michael Nolta at 2024-10-04T22:03:44+00:00
ITS#10248 Regression test script
- - - - -
1b72eb26 by Quanah Gibson-Mount at 2024-10-04T22:04:40+00:00
ITS#10248
- - - - -
c451a39f by Ondřej Kuzník at 2024-10-04T22:06:18+00:00
ITS#10232 Reset cs_refreshing on config delete
- - - - -
121beab8 by Quanah Gibson-Mount at 2024-10-04T22:07:10+00:00
ITS#10232
- - - - -
67bef41c by Ondřej Kuzník at 2024-10-04T22:08:03+00:00
ITS#10234 Reinit retry state on refreshDone
- - - - -
f12f1f02 by Quanah Gibson-Mount at 2024-10-04T22:08:31+00:00
ITS#10234
- - - - -
25 changed files:
- CHANGES
- doc/man/man5/slapo-memberof.5
- libraries/libldap/tls_g.c
- servers/slapd/back-ldap/add.c
- servers/slapd/back-ldap/bind.c
- servers/slapd/back-ldap/compare.c
- servers/slapd/back-ldap/delete.c
- servers/slapd/back-ldap/extended.c
- servers/slapd/back-ldap/modify.c
- servers/slapd/back-ldap/modrdn.c
- servers/slapd/back-ldap/search.c
- servers/slapd/back-mdb/idl.c
- servers/slapd/back-wt/id2entry.c
- servers/slapd/back-wt/idl.c
- servers/slapd/back-wt/search.c
- servers/slapd/bconfig.c
- servers/slapd/overlays/nestgroup.c
- servers/slapd/overlays/translucent.c
- servers/slapd/syncrepl.c
- tests/data/nestgroup.out.1
- tests/data/nestgroup.out.2
- + tests/data/regressions/its10248/its10248
- + tests/data/regressions/its10248/slapd-local.conf
- + tests/data/regressions/its10248/subuser.ldif
- tests/scripts/test089-nestgroup
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/0f984dd3543a4d1f5be228…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/0f984dd3543a4d1f5be228…
You're receiving this email because of your account on git.openldap.org.