Bug #373
closedsuricata 1.1 crash for Illegal instruction
Description
set args -c /etc/suricata/suricata.yaml --pfring
run
[Thread debugging using libthread_db enabled]
[New process 22627]
[22627] 11/11/2011 -- 15:57:11 - (suricata.c:649) <Info> (main) -- This is Suricata version 1.1 (rev )
[22627] 11/11/2011 -- 15:57:11 - (util-cpu.c:171) <Info> (UtilCpuPrintSummary) -- CPUs/cores online: 1
[22627] 11/11/2011 -- 15:57:11 - (util-ioctl.c:85) <Info> (GetIfaceMTU) -- Failure when trying to get MTU via ioctl: 19
[New Thread -1219356096 (LWP 22627)]
Program received signal SIGILL, Illegal instruction.
[Switching to Thread -1219356096 (LWP 22627)]
0x0816414c in DefragInit () at defrag.c:1238
1238 defrag.c: No such file or directory.
in defrag.c
(gdb) bt
#0 0x0816414c in DefragInit () at defrag.c:1238
#1 0x0804d7ff in main (argc=4, argv=0xbfe69504) at suricata.c:1161
(gdb) frame 0
#0 0x0816414c in DefragInit () at defrag.c:1238
1238 in defrag.c
==>LIne 1238 is : defrag_hash_rand = (int)( DEFAULT_DEFRAG_HASH_SIZE * (rand_r(&seed) / RAND_MAX + 1.0));
(gdb) info args
No arguments.
(gdb) info locals
seed = 4059467122
FUNCTION = "DefragInit"
(gdb) call rand_r(&seed)
$1 = 1408555743
(gdb) call rand_r(&seed)
$2 = 1238339832
(gdb) call rand_r(&seed)
$3 = 1866603133
(gdb) call rand_r(&seed)
$4 = 1128750617
- uname -a
Linux test 2.6.39.4 #21 SMP Wed Oct 26 21:30:22 CST 2011 i686 GNU/Linux - cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 13
model name : Intel(R) Pentium(R) M processor 2.13GHz
stepping : 8
cpu MHz : 2127.573
cache size : 2048 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 2
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov clflush dts acpi mmx fxsr sse sse2 ss tm pbe nx up bts est tm2
bogomips : 4255.14
clflush size : 64
cache_alignment : 64
address sizes : 32 bits physical, 32 bits virtual
power management:
Updated by Victor Julien almost 13 years ago
Did you compile your Suricata on this same box? If not, the --march=native option we use by default with gcc might be the issue. Try adding --disable-gccmarch-native to ./configure.
Updated by delta yeh almost 13 years ago
You are right, add --disable-gccmarch-native fix this issue.
I think we should not turn on --march=native on, because
in most time, suri is not run on the box where suri is compiled.
Updated by Victor Julien almost 13 years ago
- Status changed from New to Closed
I disagree. We want the best out of the box performance. Distributions and others that distribute binaries can use the --disable-gccmarch-native option, as they are doing already.