Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
a customer is having this issue when updating to openldap latest version.
Version-Release number of selected component (if applicable): openldap-servers-2.4.40-12.el6.x86_64
How reproducible: not always
The stack trace is this one:
Backtrace of the crash:
(gdb) bt
#0 ppolicy_modify (op=0x7f8edd477440, rs=0x7f8edd4775b0) at ../../../../servers/slapd/overlays/ppolicy.c:1671
#1 0x00007f8ee73f936a in overlay_op_walk (op=0x7f8edd477440, rs=0x7f8edd4775b0, which=op_modify, oi=0x7f8ee922f110, on=0x7f8ee922f2f0) at ../../../servers/slapd/backover.c:661
#2 0x00007f8ee73f9eb4 in over_op_func (op=0x7f8edd477440, rs=<value optimized out>, which=<value optimized out>) at ../../../servers/slapd/backover.c:723
#3 0x00007f8ee0ee20eb in ?? ()
#4 0x0000000000000000 in ?? ()
(gdb) list
1666
1667 for ( sc = op->o_callback; sc; sc=sc->sc_next ) {
1668 if ( sc->sc_response == slap_null_cb &&
1669 sc->sc_private ) {
1670 req_pwdexop_s *qpw = sc->sc_private;
1671 newpw = qpw->rs_new;
1672 oldpw = qpw->rs_old;
1673 is_pwdexop = 1;
1674 break;
1675 }
(gdb)
(gdb) print qpw
$2 = (req_pwdexop_s *) 0xf
(gdb)
there's a check missing ( qpw == NULL ? ) when there's a password modify extended operation
I am attaching the full stacktrace in a moment.
Description of problem: a customer is having this issue when updating to openldap latest version. Version-Release number of selected component (if applicable): openldap-servers-2.4.40-12.el6.x86_64 How reproducible: not always The stack trace is this one: Backtrace of the crash: (gdb) bt #0 ppolicy_modify (op=0x7f8edd477440, rs=0x7f8edd4775b0) at ../../../../servers/slapd/overlays/ppolicy.c:1671 #1 0x00007f8ee73f936a in overlay_op_walk (op=0x7f8edd477440, rs=0x7f8edd4775b0, which=op_modify, oi=0x7f8ee922f110, on=0x7f8ee922f2f0) at ../../../servers/slapd/backover.c:661 #2 0x00007f8ee73f9eb4 in over_op_func (op=0x7f8edd477440, rs=<value optimized out>, which=<value optimized out>) at ../../../servers/slapd/backover.c:723 #3 0x00007f8ee0ee20eb in ?? () #4 0x0000000000000000 in ?? () (gdb) list 1666 1667 for ( sc = op->o_callback; sc; sc=sc->sc_next ) { 1668 if ( sc->sc_response == slap_null_cb && 1669 sc->sc_private ) { 1670 req_pwdexop_s *qpw = sc->sc_private; 1671 newpw = qpw->rs_new; 1672 oldpw = qpw->rs_old; 1673 is_pwdexop = 1; 1674 break; 1675 } (gdb) (gdb) print qpw $2 = (req_pwdexop_s *) 0xf (gdb) there's a check missing ( qpw == NULL ? ) when there's a password modify extended operation I am attaching the full stacktrace in a moment.