here's some more info-- Is there a way to submit a ticket on this here--
Here's where the problem happens-- we have 3 INBOX for it to scan. It logs in, scans the first, gets authenticated TLS/SSL and the does a IMAP Logout. Right after than it does a boatload of stuff internally, getting to:
Code:
lstat64...
lstat64...
lstat64...
fstat64(7, {st_mode=S_IFREG|0644, st_size=18674, ...}) = 0
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb76cf000
read(7, "<?php\r\n/* vim: set expandtab tab"..., 8192) = 8192
read(7, "B6, 0xEBADFE6E, 0xEAC31F66,\r\n "..., 8192) = 8192
read(7, "88D40, 0xCCD2017F, 0x6BB4E3BB,\r\n"..., 8192) = 2290
read(7, "", 8192) = 0
mmap2(NULL, 528384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb764e000
close(7) = 0
alarm(0) = 0
alarm(0) = 0
alarm(0) = 0
time(NULL) = 1179902787 ...
then we see:
Code:
socket(PF_FILE, SOCK_STREAM, 0) = 7
fcntl64(7, F_GETFL) = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK) = 0
connect(7, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(7) = 0
socket(PF_FILE, SOCK_STREAM, 0) = 7
fcntl64(7, F_GETFL) = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK) = 0
connect(7, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(7) = 0
open("/etc/host.conf", O_RDONLY) = 7
fstat64(7, {st_mode=S_IFREG|0644, st_size=17, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb764d000
read(7, "order hosts,bind\n", 4096) = 17
read(7, "", 4096) = 0
close(7) = 0
munmap(0xb764d000, 4096) = 0
futex(0x680f00, FUTEX_WAKE, 2147483647) = 0
open("/etc/hosts", O_RDONLY) = 7
fcntl64(7, F_GETFD) = 0
fcntl64(7, F_SETFD, FD_CLOEXEC) = 0
fstat64(7, {st_mode=S_IFREG|0444, st_size=205, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb764d000
read(7, "# Do not remove the following li"..., 4096) = 205
close(7) = 0
munmap(0xb764d000, 4096) = 0
open("/etc/protocols", O_RDONLY) = 7 ...
Code:
open("/usr/share/ssl/cert.pem", O_RDONLY) = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=249373, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb764d000 then it does a bunch of reads of the key...
then a "getpeername()" call..
then it opens /etc/hosts...
then we get right down to the crash:
Code:
alarm(0) = 0
alarm(0) = 0
time(NULL) = 1179902787
alarm(0) = 0
alarm(0) = 0
write(7, "\25\3\1\0 \f\315\313\253\315\352\201\316\374+\364\27\34"..., 37) = 37
open("/dev/tty", O_RDWR|O_NONBLOCK|O_NOCTTY) = 8
writev(8, [{"*** glibc detected *** ", 23}, {"free(): invalid pointer", 23}, {": 0x", 4}, {"0067f878", 8}, {" ***\n", 5}], 5*** glibc detected *** free(): invalid pointer: 0x0067f878 ***
) = 63
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++
Bookmarks