https://bugs.openldap.org/show_bug.cgi?id=6445
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|bugs(a)openldap.org |hyc(a)openldap.org
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=6212
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|2.6.0 |---
Status|RESOLVED |VERIFIED
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=6212
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |SUSPENDED
Status|UNCONFIRMED |RESOLVED
--- Comment #4 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
Need confirmation this error still occurs.
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=5971
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|2.6.0 |---
Status|RESOLVED |VERIFIED
--- Comment #7 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
likely also already fixed in 2.5
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=5971
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution|--- |SUSPENDED
--- Comment #6 from Quanah Gibson-Mount <quanah(a)openldap.org> ---
suspending, need valid configs and more detailed information about underlying
issue.
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=5738
Quanah Gibson-Mount <quanah(a)openldap.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|2.6.0 |2.7.0
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=9588
Issue ID: 9588
Summary: MODRDN on group's parent entry does not update
memberOf for members
Product: OpenLDAP
Version: 2.4.59
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: ---
Component: overlays
Assignee: bugs(a)openldap.org
Reporter: rouazana(a)linagora.com
Target Milestone: ---
Suppose I have a group like this:
dn: cn=group,ou=branch,dc=suffix
objectClass: groupOfNames
member: cn=user,ou=users,dc=suffix
If I modify the entry ou=branch,dc=suffix to become
ou=branch-modified,dc=suffix then attribute memberOf of the user
cn=user,ou=users,dc=suffix is not updated to reflect the change, and point now
to an non-existent DN.
It seems the memberOf overlay should not only check for MODRDN on groups, but
also for MODRDN on groups' parent entries.
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8589
Ondřej Kuzník <ondra(a)mistotebe.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://bugs.openldap.org/s
| |how_bug.cgi?id=9584
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=8102
Ondřej Kuzník <ondra(a)mistotebe.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://bugs.openldap.org/s
| |how_bug.cgi?id=9584
--
You are receiving this mail because:
You are on the CC list for the issue.
https://bugs.openldap.org/show_bug.cgi?id=9583
Issue ID: 9583
Summary: possible memory corruption in avl_buildlist
Product: OpenLDAP
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: ---
Component: libraries
Assignee: bugs(a)openldap.org
Reporter: grapvar(a)gmail.com
Target Milestone: ---
In the excerpt below: if avl_maxlist is large enough then address
(NULL + avl_maxlist * sizeof(pointer))
may be mapped into the address space. If ber_memrealloc fails,
avl_list[avl_maxlist]=… will corrupt program state before it eventually crash.
libraries/libldap/avl.c:
> static int slots;
> static int
> avl_buildlist( void* data, … ) {
> if ( avl_list == 0 ) {
> slots = 100;
> avl_list = ber_memalloc(100 * sizeof(void*));
> …
> } else if ( avl_maxlist == slots ) {
> slots += 100;
> avl_list = ber_memrealloc( avl_list, slots * sizeof(void*));
> …
> }
> avl_list[ avl_maxlist++ ] = data;
Be advised please that this issue has been reported by accidental visitor, from
a developer point of view, not a user point of view, so I won't define, provide
or construct any “valid use case”.
--
You are receiving this mail because:
You are on the CC list for the issue.