https://bugzilla.novell.com/show_bug.cgi?id=861488 https://bugzilla.novell.com/show_bug.cgi?id=861488#c5 Michael Meeks <mmeeks@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW InfoProvider|mmeeks@suse.com | --- Comment #5 from Michael Meeks <mmeeks@suse.com> 2014-02-11 14:43:33 UTC --- Ah ! there is one there, it subsequently crashed again on resume hopefully with similar symptoms; I guess this is the guy: (gdb) bt #0 0xb7799424 in __kernel_vsyscall () #1 0xb7677276 in raise (sig=sig@entry=11) at ./nptl/sysdeps/unix/sysv/linux/pt-raise.c:37 #2 0x08052a88 in crash (sig=11) at src/core/main.c:143 #3 <signal handler called> #4 __strnlen_sse2 () at ../sysdeps/i386/i686/multiarch/strlen-sse2.S:125 #5 0xb74fb7c6 in _IO_vfprintf_internal (s=s@entry=0xbfeeee20, format=<optimized out>, format@entry=0x8117dec "PRIORITY=%i\nSYSLOG_FACILITY=%i\n%s%.*s%s%s%.*i%s%s%.*s%s%s%.*s%sSYSLOG_IDENTIFIER=%s\n", ap=0xbfeeef78 "V\216\021\b\326|\021\b\001", ap@entry=0xbfeeef64 "\006") at vfprintf.c:1629 #6 0xb75b4580 in ___vsnprintf_chk (s=s@entry=0xbfeef2ec "PRIORITY=6\nSYSLOG_FACILITY=3\nCODE_FILE=", maxlen=<optimized out>, maxlen@entry=2048, flags=flags@entry=1, slen=slen@entry=4294967295, format=format@entry=0x8117dec "PRIORITY=%i\nSYSLOG_FACILITY=%i\n%s%.*s%s%s%.*i%s%s%.*s%s%s%.*s%sSYSLOG_IDENTIFIER=%s\n", args=args@entry=0xbfeeef64 "\006") at vsnprintf_chk.c:63 #7 0xb75b44a7 in ___snprintf_chk (s=s@entry=0xbfeef2ec "PRIORITY=6\nSYSLOG_FACILITY=3\nCODE_FILE=", maxlen=maxlen@entry=2048, flags=flags@entry=1, slen=slen@entry=4294967295, format=format@entry=0x8117dec "PRIORITY=%i\nSYSLOG_FACILITY=%i\n%s%.*s%s%s%.*i%s%s%.*s%s%s%.*s%sSYSLOG_IDENTIFIER=%s\n") at snprintf_chk.c:34 #8 0x080b8235 in snprintf (__fmt=0x8117dec "PRIORITY=%i\nSYSLOG_FACILITY=%i\n%s%.*s%s%s%.*i%s%s%.*s%s%s%.*s%sSYSLOG_IDENTIFIER=%s\n", __n=2048, __s=0xbfeef2ec "PRIORITY=6\nSYSLOG_FACILITY=3\nCODE_FILE=") at /usr/include/bits/stdio2.h:64 #9 log_do_header (header=header@entry=0xbfeef2ec "PRIORITY=6\nSYSLOG_FACILITY=3\nCODE_FILE=", level=level@entry=30, file=file@entry=0x80e5c6e "src/core/manager.c", line=line@entry=1736, func=func@entry=0x80e7556 <__func__.13183> "process_event", object_name=object_name@entry=0x0, object=object@entry=0x0, size=2048) at src/shared/log.c:445 #10 0x080b99d9 in log_struct_internal (level=30, level@entry=6, file=file@entry=0x80e5c6e "src/core/manager.c", line=line@entry=1736, func=func@entry=0x80e7556 <__func__.13183> "process_event", format=format@entry=0x80e6bf0 "MESSAGE_ID=%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x") at src/shared/log.c:750 #11 0x0805a66d in process_event (ev=0xbfeefba8, m=<optimized out>) at src/core/manager.c:1733 #12 manager_loop (m=0x8559658) at src/core/manager.c:1858 #13 0x080505e3 in main (argc=2, argv=0xbfef00c4) at src/core/main.c:1652 The bug is here: 441 static int log_do_header(char *header, size_t size, 442 int level, 443 const char *file, int line, const char *func, 444 const char *object_name, const char *object) { 445 snprintf(header, size, 446 "PRIORITY=%i\n" 447 "SYSLOG_FACILITY=%i\n" 448 "%s%.*s%s" 449 "%s%.*i%s" (gdb) 450 "%s%.*s%s" 451 "%s%.*s%s" 452 "SYSLOG_IDENTIFIER=%s\n", 453 LOG_PRI(level), 454 LOG_FAC(level), 455 file ? "CODE_FILE=" : "", 456 file ? LINE_MAX : 0, file, /* %.0s means no output */ 457 file ? "\n" : "", 458 line ? "CODE_LINE=" : "", 459 line ? 1 : 0, line, /* %.0d means no output too, special case for 0 */ (gdb) 460 line ? "\n" : "", 461 func ? "CODE_FUNCTION=" : "", 462 func ? LINE_MAX : 0, func, 463 func ? "\n" : "", 464 object ? object_name : "", 465 object ? LINE_MAX : 0, object, /* %.0s means no output */ 466 object ? "\n" : "", 467 program_invocation_short_name); 468 header[size - 1] = '\0'; 469 return 0; (gdb) p file $1 = 0x80e5c6e "src/core/manager.c" (gdb) p func $2 = 0x80e7556 <__func__.13183> "process_event" (gdb) p object $3 = 0x0 (gdb) p object_name $4 = 0x0 Patch attached ... will submit to the mailinglist ... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.