Bug #494
closed"Bus error" or "Segmenation fault" with regular expressions
Description
Hello,
I'm using Mac OS X (iMac Intel) and followed exactly these guidelines:
http://hivelogic.com/articles/2005/12/01/ruby_rails_lighttpd_mysql_tiger
When I use regular expressions in the configuration file, lighttpd won't start with a "Bus error" or "Segmentation fault" depending of the type of option using a regex in the conf.
I tried with both lighttpd 1.4.8 and 1.4.9 (the problem is the same).
For example, if I put these lines in the conf:
$HTTP["host"] =~ "^.*\.([^.]+\.com)$" { url.rewrite = ( "^/(.*)" => "/%0/$1" ) }
I get a "Bus error" message and it doesn't start.
Else, it starts and works well.
I get these lines in my {{{system.log}}system.log
}:
Feb 5 01:33:36 Roman crashdump[26462]: lighttpd crashed Feb 5 01:33:36 Roman crashdump[26462]: crash report written to: /Library/Logs/CrashReporter/lighttpd.crash.log
And this in {{{lighttpd.crash.log}}lighttpd.crash.log
}:
Host Name: Roman Date/Time: 2006-02-05 01:22:17.301 +0100 OS Version: 10.4.4 (Build 8G1165) Report Version: 4 Command: lighttpd Path: /usr/local/sbin/lighttpd Parent: bash [3272] Version: ??? (???) PID: 26449 Thread: 0 Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x0000003f Thread 0 Crashed: 0 libpcre.0.dylib 0x000b6170 compile_regex + 2431 (pcre_compile.c:1925) 1 libpcre.0.dylib 0x000b5dd7 compile_regex + 1510 (pcre_compile.c:3129) 2 libpcre.0.dylib 0x000b957f pcre_compile2 + 4127 (pcre_compile.c:4932) 3 libpcre.0.dylib 0x000b9c88 pcre_compile + 53 (pcre_compile.c:3856) 4 lighttpd 0x0000dd76 configparser + 4914 (configparser.y:431) 5 lighttpd 0x0000ab22 config_parse + 875 (configfile.c:783) 6 lighttpd 0x0000ba2f config_parse_file + 130 (configfile.c:847) 7 lighttpd 0x0000bbe6 config_read + 284 (configfile.c:942) 8 lighttpd 0x00002e32 main + 1055 (server.c:343) 9 lighttpd 0x0000265e _start + 228 (crt.c:272) 10 lighttpd 0x00002579 start + 41 Thread 0 crashed with i386 Thread State: eax: 0x0000005d ebx: 0x000b5802 ecx:0x00000000 edx: 0x0030124a edi: 0x00000080 esi: 0x00000000 ebp:0xbfffeda8 esp: 0xbfffec10 ss: 0x0000002f efl: 0x00010246 eip:0x000b6170 cs: 0x00000027 ds: 0x0000002f es: 0x0000002f fs:0x00000000 gs: 0x00000037 Binary Images Description: 0x1000 - 0x12fff lighttpd /usr/local/sbin/lighttpd 0x4b000 - 0x58fff liblightcomp.dylib /usr/local/lib/liblightcomp.dylib 0xb4000 - 0xc3fff libpcre.0.dylib /usr/local/lib/libpcre.0.dylib 0x8fe00000 - 0x8fe4bfff dyld 44.17 /usr/lib/dyld 0x90000000 - 0x9016efff libSystem.B.dylib /usr/lib/libSystem.B.dylib 0x901be000 - 0x901c0fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
I don't know if it comes from a mistake, lighttpd or pcre.
Thank you.
-- roman2k
Updated by moo about 19 years ago
we need a osx box to trace it, with gdb is available.
Updated by Anonymous almost 18 years ago
i just found this problem today on intel-based os x (but with apache 2.2.4). compile_regex will fail.
the quickest way to fix it (for apache 2.2.4) is
replace:
./configure
with:
./configure CFLAGS="-arch i386 -O1"
i'm not sure which of the CFLAGS fixes the problem exactly yet, perhaps both are required.
note that the original hivelogic article referenced by the submitted makes mention of "-O1". information about this problem, including the CFLAG "-arch i386", can be found on this page:
http://switch.richard5.net/isp-in-a-box-v2/installing-apache-on-mac-os-x/
please pass along to me any new info..
-- chris
Updated by Anonymous almost 18 years ago
I think I have made some progress on this bug. The problem appears to be in configparser.y in the #IFDEF HAVE_PCRE_H block starting around line 460. More specifically, the assignment to dc->regex_study seems to wipe out the pointer at dc->key->ptr. The bus error occurs when this now null pointer is subsequently dreferenced.
I am really surprised that this problem also arises in Apache because it seems to actually have nothing to do with PCRE. It looks more like some kind of malloc bug.
-- ron
Updated by Anonymous almost 18 years ago
Oh, bloody hell, never mind. I'm an idiot. I was accidentally picking up the wrong dynamic library. (Forgot that it's DYLD_LIBRARY_PATH instead of LD_LIBRARY_PATH on OS X.) Seems to work just fine now.
-- ron at flownet.com
Updated by jan over 17 years ago
- Status changed from New to Fixed
- Resolution set to invalid
closed as requested
Also available in: Atom