[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: ITS#5375



ecizaguirre@gmv.com wrote:
> Hi Quanah, I have followed your instructions. As you can check the slapd binary is not stripped:
> 
> -bash-3.00# file slapd
> 
> slapd: ELF 32-bit MSB executable SPARC Version 1, dynamically linked, not stripped
> 
> The backtrace of the slapd process is the following:
> 
> <<< dnPretty: <cn=Eduardo Izaguirre Pazos,ou=SISTEMAS,ou=people,dc=gmv,dc=es>
> 
> Assertion failed: ( nvals == NULL && (*a)->a_nvals == (*a)->a_vals ) || ( nvals != NULL && ( ( (*a)->a_vals == NULL && (*a)->a_nvals == NULL ) || ( (*a)->a_nvals != (*a)->a_vals ) ) ), file attr.c, line 480

^^^ this is very interesting, as it's supposed to never happen.  In
order to try to figure out what is actually happening, I need your
configuration and the exact operation that triggered this issue.  In the
meanwhile, you could probably post the contents of the variables used in
that assert.  For this purpose, from within gdb, you should:

(gdb) frame 4
(gdb) p nvals
(gdb) p (*a)->a_vals
(gdb) p (*a)->a_nvals

unless any of the above is NULL, you should also print its contents up
to the first value of the array, namely

(gdb) p vals[0]
(gdb) p nvals[0]
(gdb) p (*a)->a_vals[0]
(gdb) p (*a)->a_nvals[0]

If any of the above contains info that you consider sensible, do not
post it; only tell whether the value is present or NULL (note: by NULL I
mean the corresponding struct berval has a NULL bv_val member)

Also, please do

(gdb) p (*a)->a_desc[0]
(gdb) p (*a)->a_numvals
(gdb) p (*a)->a_flags

> Program received signal SIGABRT, Aborted.
> [Switching to LWP 4]
> 0xfe2c12a4 in _lwp_kill () from /usr/lib/libc.so.1
> (gdb) bt
> #0 0xfe2c12a4 in _lwp_kill () from /usr/lib/libc.so.1
> #1 0xfe25fe20 in raise () from /usr/lib/libc.so.1
> #2 0xfe240040 in abort () from /usr/lib/libc.so.1
> #3 0xfe24027c in _assert () from /usr/lib/libc.so.1
> #4 0x0005e104 in attr_merge (e=0xfcbfeaf0, desc=0x33a9b0, vals=0x3da650, nvals=0x3d8b08) at attr.c:477
> #5 0x000d3854 in modify_add_values (e=0xfcbfeaf0, mod=0xfcbfead0, permissive=1, text=0xfcbfeb24, textbuf=0xfcbfe9d0 "",
> textlen=256) at mods.c:155
> #6 0x001be108 in rwm_attrs (op=0x3c1490, rs=0xfcbffc90, a_first=0x49bc00, stripEntryDN=1) at rwm.c:1232
> #7 0x001be3b0 in rwm_send_entry (op=0x3c1490, rs=0xfcbffc90) at rwm.c:1323
> #8 0x001be930 in rwm_response (op=0x3c1490, rs=0xfcbffc90) at rwm.c:1518
> #9 0x000f17dc in over_back_response (op=0x3c1490, rs=0xfcbffc90) at backover.c:241 #10 0x0006918c in slap_response_play (op=0x3c1490, rs=0xfcbffc90) at result.c:307
> #11 0x0006b3c4 in slap_send_search_entry (op=0x3c1490, rs=0xfcbffc90) at result.c:771
> #12 0x00135aa0 in meta_send_entry (op=0x3c1490, rs=0xfcbffc90, mc=0x3c18f8, target=0, e=0x4d9320) at search.c:2071
> #13 0x00132a40 in meta_back_search (op=0x3c1490, rs=0xfcbffc90) at search.c:1128
> #14 0x000f2668 in overlay_op_walk (op=0x3c1490, rs=0xfcbffc90, which=op_search, oi=0x35ef80, on=0x0) at backover.c:652
> #15 0x000f2874 in over_op_func (op=0x3c1490, rs=0xfcbffc90, which=op_search) at backover.c:704
> #16 0x000f2924 in over_op_search (op=0x3c1490, rs=0xfcbffc90) at backover.c:726
> #17 0x00053adc in fe_op_search (op=0x3c1490, rs=0xfcbffc90) at search.c:368
> #18 0x00053294 in do_search (op=0x3c1490, rs=0xfcbffc90) at search.c:217
> #19 0x0004f4f8 in connection_operation (ctx=0xfcbffe00, arg_v=0x3c1490) at connection.c:1083 #20 0x0004fc30 in connection_read_thread (ctx=0xfcbffe00, argv=0xb) at connection.c:1210
> #21 0x001f58d8 in ldap_int_thread_pool_wrapper (xpool=0x33cdb0) at tpool.c:625
> #22 0xfe2c00b8 in _lwp_start () from /usr/lib/libc.so.1
> #23 0xfe2c00b8 in _lwp_start () from /usr/lib/libc.so.1 Backtrace stopped: previous frame identical to this frame (corrupt stack?)

p.



Ing. Pierangelo Masarati
OpenLDAP Core Team

SysNet s.r.l.
via Dossi, 8 - 27100 Pavia - ITALIA
http://www.sys-net.it
---------------------------------------
Office:  +39 02 23998309
Mobile:  +39 333 4963172
Email:   pierangelo.masarati@sys-net.it
---------------------------------------