A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via b1170bc0352a0e7c87ea252441972d0c3a242f12 (commit)
from 47e0e3fdb59d8be9cc44e814ba03684d352916a6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b1170bc0352a0e7c87ea252441972d0c3a242f12
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Fri Feb 7 11:34:20 2020 +0000
Revert "ITS#9160 OOM handling in mdb tools", wrong branch.
This reverts commit be61a967e632fdf7836b6efb4e0fc2776d9d3e52.
-----------------------------------------------------------------------
Summary of changes:
libraries/liblmdb/mdb_dump.c | 4 ----
libraries/liblmdb/mdb_stat.c | 4 ----
2 files changed, 8 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via 47e0e3fdb59d8be9cc44e814ba03684d352916a6 (commit)
via 73368277693c72bdc2347c71c046e5aff9305446 (commit)
via 4bb239bd769df2cfc84f2ccc72732eae1393d826 (commit)
via 816d94b221c8368a38d0fd2155c5ae0439b0e57b (commit)
via be61a967e632fdf7836b6efb4e0fc2776d9d3e52 (commit)
via 9835662927a3dc43875bc1f8780c1f49f6c34e69 (commit)
via 28828e1b402ee0f6b365216917dbbcf1e528a80f (commit)
via af5ed7c6e27d596dbed440c9a20c2f28f125f846 (commit)
via 8bb8905b64204c38b3c490ea2cf5ea4ce0743bbc (commit)
via 7e3822f3bbe60c1df910d2172c0e06c691f973c8 (commit)
from 02eb0b6fe845e7eecf3f8d3e4e5c91e684cd06bf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 47e0e3fdb59d8be9cc44e814ba03684d352916a6
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Thu Jan 30 09:03:59 2020 +0000
ITS#9160 OOM handling in back-asyncmeta
commit 73368277693c72bdc2347c71c046e5aff9305446
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Thu Jan 30 09:03:41 2020 +0000
ITS#9160 OOM handling in back-meta
commit 4bb239bd769df2cfc84f2ccc72732eae1393d826
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Thu Jan 30 09:02:25 2020 +0000
ITS#9160 OOM handling in libldap
commit 816d94b221c8368a38d0fd2155c5ae0439b0e57b
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Thu Jan 30 09:01:32 2020 +0000
ITS#9160 OOM handling in slapd
commit be61a967e632fdf7836b6efb4e0fc2776d9d3e52
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Thu Jan 30 08:59:57 2020 +0000
ITS#9160 OOM handling in mdb tools
commit 9835662927a3dc43875bc1f8780c1f49f6c34e69
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Thu Jan 30 08:58:50 2020 +0000
ITS#9160 OOM handling in test programs
commit 28828e1b402ee0f6b365216917dbbcf1e528a80f
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Thu Jan 30 08:55:59 2020 +0000
ITS#9160 OOM handling in contrib
commit af5ed7c6e27d596dbed440c9a20c2f28f125f846
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Tue Nov 12 10:35:53 2019 +0000
ITS#8575 Accept parameters for hashing new passwords
commit 8bb8905b64204c38b3c490ea2cf5ea4ce0743bbc
Author: Ondřej Kuzník <ondra(a)mistotebe.net>
Date: Mon Nov 11 17:42:03 2019 +0000
ITS#8575 Add a libsodium based implementation
commit 7e3822f3bbe60c1df910d2172c0e06c691f973c8
Author: Simon Levermann <simon(a)slevermann.de>
Date: Wed Jan 25 15:11:06 2017 +0100
ITS#8575 Implement argon2 password hashing as a module
This change implements argon2, which won the Password Hashing
Competition (https://password-hashing.net/) as a contrib-module in order
to provide a modern password hashing alternative in openldap. The
currently available password hashing algorithms are relatively old, and
modern hardware, especially GPUs can compute quite a few (ranging from
tens of thousands to millions) of hashes per second. Argon2 was designed
to withstand such attacks.
This implementation uses the default work factors used in the argon2
command line client, but the resulting hashes are stored in a way that
would allow retroactive changes to these values, or even exposing them
as configuration in the module.
-----------------------------------------------------------------------
Summary of changes:
contrib/slapd-modules/allowed/allowed.c | 12 +-
contrib/slapd-modules/authzid/authzid.c | 4 +-
.../passwd/{pbkdf2 => argon2}/Makefile | 35 ++--
contrib/slapd-modules/passwd/argon2/README | 109 +++++++++++
contrib/slapd-modules/passwd/argon2/pw-argon2.c | 213 +++++++++++++++++++++
contrib/slapd-modules/samba4/rdnval.c | 6 +-
contrib/slapd-modules/samba4/vernum.c | 8 +-
libraries/libldap/deref.c | 13 ++
libraries/libldap/getdn.c | 29 +++
libraries/libldap/ldif.c | 6 +
libraries/libldap/ldifutil.c | 15 ++
libraries/libldap/options.c | 16 ++
libraries/libldap/result.c | 5 +
libraries/libldap/schema.c | 15 ++
libraries/liblmdb/mdb_dump.c | 4 +
libraries/liblmdb/mdb_stat.c | 4 +
servers/slapd/aci.c | 10 +-
servers/slapd/back-asyncmeta/meta_result.c | 4 +-
servers/slapd/back-asyncmeta/search.c | 24 +--
servers/slapd/back-meta/config.c | 4 +-
servers/slapd/back-meta/map.c | 57 +++++-
servers/slapd/back-meta/search.c | 4 +-
servers/slapd/bconfig.c | 4 +-
servers/slapd/modify.c | 2 +-
servers/slapd/schema_init.c | 6 +-
servers/slapd/slapmodify.c | 4 +-
servers/slapd/value.c | 4 +-
tests/progs/slapd-bind.c | 8 +
tests/progs/slapd-modrdn.c | 12 ++
tests/progs/slapd-mtread.c | 4 +
tests/progs/slapd-read.c | 8 +
tests/progs/slapd-search.c | 8 +
32 files changed, 586 insertions(+), 71 deletions(-)
copy contrib/slapd-modules/passwd/{pbkdf2 => argon2}/Makefile (70%)
create mode 100644 contrib/slapd-modules/passwd/argon2/README
create mode 100644 contrib/slapd-modules/passwd/argon2/pw-argon2.c
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_4 has been updated
via 1f1c240152f36622c7cc18a7a05b718532c8911d (commit)
via e22c4b641ac8d70a38d53f0e5feec6cf6b6278f7 (commit)
from 33760eec4490aac024542d9e9da06ded03703fb7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1f1c240152f36622c7cc18a7a05b718532c8911d
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Thu Feb 6 20:25:03 2020 +0000
ITS#8890
commit e22c4b641ac8d70a38d53f0e5feec6cf6b6278f7
Author: Thorsten Glaser <tg(a)debian.org>
Date: Wed Aug 1 20:23:48 2018 +0000
ITS#8890 fix benign typos
No functional impact
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 2 ++
clients/tools/common.c | 2 +-
servers/slapd/backend.c | 2 +-
servers/slapd/overlays/constraint.c | 2 +-
servers/slapd/syntax.c | 4 ++--
5 files changed, 7 insertions(+), 5 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_5 has been updated
via 96030d54568761ea22ccb4c55cd5276647d44f72 (commit)
via 02eb0b6fe845e7eecf3f8d3e4e5c91e684cd06bf (commit)
from 4c0009f72a147f0c11b6abf776daf0103d6f0fb6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 96030d54568761ea22ccb4c55cd5276647d44f72
Merge: 4c0009f 02eb0b6
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Tue Feb 4 22:04:03 2020 +0000
Merge remote-tracking branch 'origin/master' into OPENLDAP_REL_ENG_2_5
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/overlays/dynlist.c | 4 ++++
1 file changed, 4 insertions(+)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via 02eb0b6fe845e7eecf3f8d3e4e5c91e684cd06bf (commit)
from d2c9ef8cc41f47c84cbdceacb8ae3fba8a973463 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 02eb0b6fe845e7eecf3f8d3e4e5c91e684cd06bf
Author: Howard Chu <hyc(a)openldap.org>
Date: Tue Feb 4 16:35:56 2020 +0000
ITS#9121 fix filtering of dyngroups with memberof
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/overlays/dynlist.c | 4 ++++
1 file changed, 4 insertions(+)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_5 has been updated
via 4c0009f72a147f0c11b6abf776daf0103d6f0fb6 (commit)
from bf64a7436279df67bff3a1c6a2f2f2a5721ad147 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4c0009f72a147f0c11b6abf776daf0103d6f0fb6
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Feb 3 22:06:26 2020 +0000
Minor updates
-----------------------------------------------------------------------
Summary of changes:
ANNOUNCEMENT | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_4 has been updated
via 33760eec4490aac024542d9e9da06ded03703fb7 (commit)
via 826e5580ea514d551b418105924a877a43e8251a (commit)
from a88a908bc06c9b6bf19e227cc0ba2ff9591610fd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 33760eec4490aac024542d9e9da06ded03703fb7
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Feb 3 19:17:38 2020 +0000
ITS#7855 for ldapc++ contrib
commit 826e5580ea514d551b418105924a877a43e8251a
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Feb 3 19:12:36 2020 +0000
ITS#7855 - Update config.guess and config.sub for ldapc++ contrib module
Update config.guess and config.sub from official upstream project at https://savannah.gnu.org/projects/config/
Specifically in this case, commit 5256817ace8493502ec88501a19e4051c2e220b0 for the date Wed Jan 1 19:36:58 2020 +1100
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 2 +
contrib/ldapc++/config.guess | 1300 +++++++++++++----------
contrib/ldapc++/config.sub | 2361 +++++++++++++++++++++++-------------------
3 files changed, 2038 insertions(+), 1625 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_5 has been updated
via bf64a7436279df67bff3a1c6a2f2f2a5721ad147 (commit)
via d2c9ef8cc41f47c84cbdceacb8ae3fba8a973463 (commit)
from 5dde3097e3cdb18c8fe20151cae218157e7760d3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit bf64a7436279df67bff3a1c6a2f2f2a5721ad147
Merge: 5dde309 d2c9ef8
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Feb 3 19:13:03 2020 +0000
Merge remote-tracking branch 'origin/master' into OPENLDAP_REL_ENG_2_5
-----------------------------------------------------------------------
Summary of changes:
contrib/ldapc++/config.guess | 1300 +++++++++++++----------
contrib/ldapc++/config.sub | 2361 +++++++++++++++++++++++-------------------
2 files changed, 2036 insertions(+), 1625 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, master has been updated
via d2c9ef8cc41f47c84cbdceacb8ae3fba8a973463 (commit)
from 165c632249adee51c142380629e9ac5f30cc989f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d2c9ef8cc41f47c84cbdceacb8ae3fba8a973463
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Feb 3 19:12:36 2020 +0000
ITS#7855 - Update config.guess and config.sub for ldapc++ contrib module
Update config.guess and config.sub from official upstream project at https://savannah.gnu.org/projects/config/
Specifically in this case, commit 5256817ace8493502ec88501a19e4051c2e220b0 for the date Wed Jan 1 19:36:58 2020 +1100
-----------------------------------------------------------------------
Summary of changes:
contrib/ldapc++/config.guess | 1300 +++++++++++++----------
contrib/ldapc++/config.sub | 2361 +++++++++++++++++++++++-------------------
2 files changed, 2036 insertions(+), 1625 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git
A ref change was pushed to the OpenLDAP (openldap.git) repository.
It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_5 has been updated
via 5dde3097e3cdb18c8fe20151cae218157e7760d3 (commit)
via 165c632249adee51c142380629e9ac5f30cc989f (commit)
via 7244a7b6d8cb05bd2c4036287053a2e6b51ef8ba (commit)
via 0dbbe8c0120f6cc4f66b967e3a7d21ed0150b1b4 (commit)
via 707d2a9211d8ba840a51172f8e4a837baf175caa (commit)
via 6b81910fcd91592838bb2d5ec2ab48cae9e76936 (commit)
via 4d2fa65969e28cf4b1057b5265f49139af0ef56f (commit)
from e58ab4df696bd867810154c111abd9e5f4455061 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5dde3097e3cdb18c8fe20151cae218157e7760d3
Merge: e58ab4d 165c632
Author: Quanah Gibson-Mount <quanah(a)openldap.org>
Date: Mon Feb 3 16:59:22 2020 +0000
Merge remote-tracking branch 'origin/master' into OPENLDAP_REL_ENG_2_5
-----------------------------------------------------------------------
Summary of changes:
servers/slapd/back-mdb/id2entry.c | 2 ++
servers/slapd/slap.h | 4 ++--
servers/slapd/syncrepl.c | 31 ++-----------------------------
3 files changed, 6 insertions(+), 31 deletions(-)
---
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git