I work at Rogue Amoeba, and while investigating a crasher involving Airfoil and Plex, I discovered what appears to be an incompatibility between Plex and the system libxml.
The crash involves a Python subprocess spawned by Plex. The interesting bit of the crash looks like this (I’ll post the full crash log below, don’t worry):
Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 libiconv.2.dylib 0x91849af3 libiconv_close + 19897
1 libicucore.A.dylib 0x957c1c2b icu::UCharCharacterIterator::clone() const + 953
2 libxml2.2.dylib 0x969e0da5 xmlCharEncOutFunc + 234
3 libxml2.2-osx.dylib 0x0103333a xmlAllocOutputBuffer + 122
4 etree.so 0x005f1664 __pyx_f_4lxml_5etree__tostring + 164
…
What’s interesting is that stack frame #3 is the libxml that’s embedded in ~/Library/Application Support/Plex Media Server/Plug-ins/Framework.bundle, but stack frame #2 is the libxml that’s found in /usr/lib. I really don’t think these two should be calling each other, and I’m guessing that this is the ultimate cause of the crash.
The ultimate problem appears to be due to the system libxml getting loaded into the process. The problem is completely reproducible without using any Rogue Amoeba products by making dyld load the system libxml manually, like so:
DYLD_INSERT_LIBRARIES=/usr/lib/libxml2.2.dylib /Applications/Plex.app/Contents/MacOS/Plex
This will reproduce the subprocess crash every time (on my system, anyway).
Now, going around and loading libraries into other processes isn’t the sort of thing that you can always expect to get away with. However, I wonder if this is indicative of a deeper bug, and it seems likely that there might be other, more legitimate ways that libxml could find its way into this process in the future. It seems like it might be a good idea to make Plex robust against this scenario for that (plus making it work better with Airfoil).
I’m completely unfamiliar with Plex’s code, so I don’t really know what the fix would be like. It appears to me that there’s no need to ship a custom libxml on the Mac, and that you could just use the system one instead, which ought to solve that problem. However, there certainly could be good reasons to have it there that I’m not aware of.
A full crash log follows:
Process: Python [13323]
Path: /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python
Identifier: Python
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: Plex Media Server [13322]
PlugIn Path: /Users/mikeash/Library/Application Support/Plex Media Server/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Frameworks/libxml2.2-osx.dylib
PlugIn Identifier: libxml2.2-osx.dylib
PlugIn Version: ??? (???)
Date/Time: 2010-02-15 15:45:37.061 -0500
OS Version: Mac OS X 10.6.2 (10C540)
Report Version: 6
Anonymous UUID: B2B3130A-DA2B-46BB-886B-B7558361E986
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 libiconv.2.dylib 0x91849af3 libiconv_close + 19897
1 libicucore.A.dylib 0x957c1c2b icu::UCharCharacterIterator::clone() const + 953
2 libxml2.2.dylib 0x969e0da5 xmlCharEncOutFunc + 234
3 libxml2.2-osx.dylib 0x0103333a xmlAllocOutputBuffer + 122
4 etree.so 0x005f1664 __pyx_f_4lxml_5etree__tostring + 164
5 etree.so 0x005f24cf __pyx_pf_4lxml_5etree_tostring + 495
6 org.python.python 0x0000c268 PyObject_Call + 50
7 org.python.python 0x0007c2f9 PyEval_EvalFrameEx + 21901
8 org.python.python 0x0007ae8e PyEval_EvalFrameEx + 16674
9 org.python.python 0x0007ae8e PyEval_EvalFrameEx + 16674
10 org.python.python 0x0007ae8e PyEval_EvalFrameEx + 16674
11 org.python.python 0x0007ae8e PyEval_EvalFrameEx + 16674
12 org.python.python 0x0007ca8a PyEval_EvalCodeEx + 1734
13 org.python.python 0x0007cb2f PyEval_EvalCode + 87
14 org.python.python 0x00094a03 Py_CompileString + 111
15 org.python.python 0x00094aaf PyRun_FileExFlags + 139
16 org.python.python 0x00095f34 PyRun_SimpleFileExFlags + 784
17 org.python.python 0x000a1f2c Py_Main + 3226
18 org.python.pythonapp 0x00001eb5 0x1000 + 3765
Thread 1: Dispatch queue: com.apple.libdispatch-manager
0 libSystem.B.dylib 0x95b000ea kevent + 10
1 libSystem.B.dylib 0x95b00804 _dispatch_mgr_invoke + 215
2 libSystem.B.dylib 0x95affcc3 _dispatch_queue_invoke + 163
3 libSystem.B.dylib 0x95affa68 _dispatch_worker_thread2 + 234
4 libSystem.B.dylib 0x95aff4f1 _pthread_wqthread + 390
5 libSystem.B.dylib 0x95aff336 start_wqthread + 30
Thread 2:
0 libSystem.B.dylib 0x95aff182 __workq_kernreturn + 10
1 libSystem.B.dylib 0x95aff718 _pthread_wqthread + 941
2 libSystem.B.dylib 0x95aff336 start_wqthread + 30
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0xbfffe1a0 ebx: 0x91849ac5 ecx: 0x00000001 edx: 0x00000000
edi: 0x00000000 esi: 0x0001001c ebp: 0xbfffe178 esp: 0xbfffe130
ss: 0x0000001f efl: 0x00010202 eip: 0x91849af3 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0x00000010
Binary Images:
0x1000 - 0x1ff7 org.python.pythonapp 2.5.4 (2.5.4a0) <26061A05-36BD-5AB7-62A8-EEC4C5523606> /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python
0x5000 - 0xd8fff org.python.python 2.5.4 (2.5) <48AA8ADD-2ED0-73B3-C3AF-D2CEA0B5155A> /System/Library/Frameworks/Python.framework/Versions/2.5/Python
0x1c0000 - 0x1c1ff7 time.so ??? (???) <9D37FE7C-E18E-360C-5581-D5DDFA8502C7> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/time.so
0x1c8000 - 0x1caff7 collections.so ??? (???) <6BF96159-107A-4089-5D04-70EB57AC4430> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/collections.so
0x1cf000 - 0x1d2ff7 _struct.so ??? (???) <49EDAB93-F76A-487E-EECB-AB8C98463A4B> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_struct.so
0x1d7000 - 0x1d9fe7 binascii.so ??? (???) <2D206EBD-CC5F-A487-14DD-504FA2AF0ACE> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/binascii.so
0x1dd000 - 0x1deff7 cStringIO.so ??? (???) <6FDF923B-CAF5-925C-3D90-3C07123D536B> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/cStringIO.so
0x1e2000 - 0x1e4ff7 strop.so ??? (???) <179BAB41-342E-E831-2704-6F212B0808D1> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/strop.so
0x1e9000 - 0x1efff7 _socket.so ??? (???) <06CF4CEA-758D-287F-9C5C-07DBB44FFB83> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_socket.so
0x1f6000 - 0x1f7ff7 _ssl.so ??? (???) <3387EFBB-0262-C422-1336-8AF01457065C> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_ssl.so
0x1fc000 - 0x1fcff7 _bisect.so ??? (???) <0C2C78FA-56C6-7DBE-71DB-E174F0F67967> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_bisect.so
0x4e7000 - 0x4e8ff7 math.so ??? (???) <06A1C602-B608-3902-48FA-3C8A92F0567F> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/math.so
0x4ec000 - 0x4edff7 _hashlib.so ??? (???) /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_hashlib.so
0x4f1000 - 0x4f2ff7 _random.so ??? (???) <5D50F9AD-3400-35C4-4374-922EF4486056> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_random.so
0x4f6000 - 0x4f7ff7 fcntl.so ??? (???) <33EC771D-0E99-4546-0A12-DB0354F8BA43> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/fcntl.so
0x53b000 - 0x544fe7 datetime.so ??? (???) <42DC1347-A945-D4D3-9E43-354FE2EC4DC9> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/datetime.so
0x5ac000 - 0x5adff7 _locale.so ??? (???) /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_locale.so
0x5b1000 - 0x5b3ff7 operator.so ??? (???) <797AEE93-42DD-454D-C8AE-CEB6A710AFCA> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/operator.so
0x5b8000 - 0x6b1ff9 +etree.so ??? (???) <08CC0EEB-0AE3-42C9-D069-5D9F87ABFE32> /Users/mikeash/Library/Application Support/Plex Media Server/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/__lib/lxml/etree.so
0x73d000 - 0x749fe7 libexslt.0.dylib ??? (???) <43856244-CC36-9DE9-3D60-D4F4D6F2825C> /usr/lib/libexslt.0.dylib
0x7cf000 - 0x7d0ff7 icglue.so ??? (???) /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/icglue.so
0x7d4000 - 0x7d7ff7 _Res.so ??? (???) <7EF19866-D375-83AD-D25F-8CC2096BA9A5> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_Res.so
0x7dd000 - 0x7e4ff7 _File.so ??? (???) <8A7A063E-AEE7-9501-AD38-B94D24CFB0BC> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_File.so
0x7ea000 - 0x7ebff7 MacOS.so ??? (???) <80D8B2CA-283E-7E73-0FB7-7C6295149283> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/MacOS.so
0x1000000 - 0x1104fef +libxml2.2-osx.dylib ??? (???) <656F7A35-DA0C-F083-5456-4BC4BC436313> /Users/mikeash/Library/Application Support/Plex Media Server/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Frameworks/libxml2.2-osx.dylib
0x1176000 - 0x11d9ff7 unicodedata.so ??? (???) <5B024145-3E11-E926-F013-234C502401F5> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/unicodedata.so
0x1580000 - 0x1582ff7 zlib.so ??? (???) <3DC8AD7E-CD44-53B1-D337-9D3BEDEF6581> /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/zlib.so
0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
0x90003000 - 0x90072ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x900a0000 - 0x9013dfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x90199000 - 0x9019cfe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
0x9042c000 - 0x90440ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x90441000 - 0x9044ffe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
0x90450000 - 0x9046eff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x90473000 - 0x90569ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x905e2000 - 0x905f4ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x905f5000 - 0x90918fef com.apple.HIToolbox 1.6.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x90919000 - 0x9092efff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x90981000 - 0x90984ff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x90a88000 - 0x90a8ffff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x90c73000 - 0x90d77fe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
0x90da3000 - 0x90e1dfef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x90e1e000 - 0x90e64ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
0x91027000 - 0x91070fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91071000 - 0x91097fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x910c4000 - 0x910e6fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x911e7000 - 0x9154eff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x91588000 - 0x9158efff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x915b1000 - 0x915b1ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x915ed000 - 0x91631fe7 com.apple.Metadata 10.6.2 (507.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91632000 - 0x91696ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x916a7000 - 0x91707fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x91708000 - 0x91834feb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x91835000 - 0x91929fe7 libiconv.2.dylib ??? (???) <0C578460-3929-29DD-585A-DB1E0C977425> /usr/lib/libiconv.2.dylib
0x919b1000 - 0x91b6dfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91b6e000 - 0x91b78ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x91b8b000 - 0x91bcdfe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x91c43000 - 0x91c4fff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
0x91c50000 - 0x91c68ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x91c69000 - 0x91ecbfe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x91ecc000 - 0x91eecfe7 libresolv.9.dylib ??? (???) /usr/lib/libresolv.9.dylib
0x91eed000 - 0x91f0dfe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x91f0e000 - 0x91fbcff3 com.apple.ink.framework 1.3.1 (105) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x91fbd000 - 0x92027fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
0x920a4000 - 0x920e1ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x92194000 - 0x92230fe7 com.apple.ApplicationServices.ATS 4.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x92339000 - 0x923cafe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x92a35000 - 0x92a35ff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x92c7f000 - 0x92d27ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x92d28000 - 0x92d6cff3 com.apple.coreui 2 (113) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x92e52000 - 0x92e6efe3 com.apple.openscripting 1.3.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x93070000 - 0x93072ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x93073000 - 0x93097ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x93107000 - 0x93107ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x93147000 - 0x93466fe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x93467000 - 0x93467ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x934aa000 - 0x934edff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x937e8000 - 0x9395ffef com.apple.CoreFoundation 6.6.1 (550.13) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x93960000 - 0x939b0fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x939b1000 - 0x941944b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x95165000 - 0x95166ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x95402000 - 0x95403ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x954ef000 - 0x955c9ff3 com.apple.DesktopServices 1.5.3 (1.5.3) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x955ed000 - 0x95620ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x95774000 - 0x958f6fe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
0x958f7000 - 0x958fcff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x95ad9000 - 0x95c7dfeb libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
0x95c8d000 - 0x95d0fffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x95d10000 - 0x95d47fe7 libssl.0.9.8.dylib ??? (???) <95FE66AC-C850-4AB4-DD3F-7F198A5E1EAC> /usr/lib/libssl.0.9.8.dylib
0x95d91000 - 0x95e5bfef com.apple.CoreServices.OSServices 352 (352) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x96058000 - 0x960a5feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x960c4000 - 0x96171fe7 libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
0x969dc000 - 0x96addfe7 libxml2.2.dylib ??? (???) /usr/lib/libxml2.2.dylib
0x96ade000 - 0x96af2fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
0x96af3000 - 0x96f09ff7 libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x96f31000 - 0x96f3eff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x96f3f000 - 0x96f74ff7 libGLImage.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x96f75000 - 0x96fcfff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x96fea000 - 0x9741fff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x97420000 - 0x97690ffb com.apple.Foundation 6.6.1 (751.14) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x976f1000 - 0x976f4ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x97742000 - 0x97746ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x9776f000 - 0x97778ff7 com.apple.DiskArbitration 2.3 (2.3) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x97819000 - 0x9781dff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x97c01000 - 0x97c81feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x97c82000 - 0x97c8cfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x980a7000 - 0x980cfff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
0x98133000 - 0x9813dffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x98157000 - 0x98210fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
0x98211000 - 0x982c0ff3 com.apple.ColorSync 4.6.2 (4.6.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x982c1000 - 0x98368fe7 com.apple.CFNetwork 454.5 (454.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x98369000 - 0x9836bff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x9836c000 - 0x9841ffff libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x98420000 - 0x98431ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9843a000 - 0x9843aff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x9843e000 - 0x98442ff7 IOSurface ??? (???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x986a3000 - 0x9873bfe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x98793000 - 0x987e3ff7 com.apple.framework.familycontrols 2.0 (2.0) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x98855000 - 0x988a6ff7 com.apple.HIServices 1.8.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x988a7000 - 0x98984ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x98985000 - 0x98995ff7 libsasl2.2.dylib ??? (???) /usr/lib/libsasl2.2.dylib
0x98a5f000 - 0x98a5fff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x99530000 - 0x9954bff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x9954c000 - 0x99559ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x99599000 - 0x995ceff7 libcups.2.dylib ??? (???) /usr/lib/libcups.2.dylib
0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 15 GB, SMC 1.7f10
Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
Memory Module: global_name
Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
Network Service: Ethernet 1, Ethernet, en0
PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-1
Serial ATA Device: WDC WD2500JS-41SGB0, 232.89 GB
Serial ATA Device: WDC WD5000AAJS-22YFA0, 465.76 GB
Serial ATA Device: ST31500341AS, 1.36 TB
Parallel ATA Device: SONY DVD RW DW-D150A
USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd500000
USB Device: USB-PS/2 Optical Mouse, 0x046d (Logitech Inc.), 0xc03d, 0xfd530000
USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd520000
USB Device: WinTV HVR-980, 0x2040 (Hauppauge Computer Works, Inc.), 0x6513, 0xfd400000
USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
USB Device: Logitech Extreme 3D, 0x046d (Logitech Inc.), 0xc215, 0x3d100000
FireWire Device: built-in_hub, Up to 800 Mb/sec
An update: it looks like the root of the problem is that Plex’s custom libxml was built without a two-level namespace:
otool -hv /usr/lib/libxml2.2.dylib <br />
/usr/lib/libxml2.2.dylib:<br />
Mach header<br />
magic cputype cpusubtype caps filetype ncmds sizeofcmds flags<br />
MH_MAGIC I386 ALL 0x00 DYLIB 13 1464 NOUNDEFS DYLDLINK TWOLEVEL NO_REEXPORTED_DYLIBS<br />
otool -hv Frameworks/libxml2.2-osx.dylib
Frameworks/libxml2.2-osx.dylib:
Mach header
magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
MH_MAGIC I386 ALL 0x00 DYLIB 13 1364 DYLDLINK NO_REEXPORTED_DYLIBS
Note how the /usr/lib version includes the TWOLEVEL flag, but the bundled one doesn’t, presumably because it was built with the -flat_namespace option. This causes all references to C functions to be purely by name, with no reference to which library they’re in. If another library contains a function of the same name at runtime (e.g. because another copy of libxml is being loaded) then the reference will resolve to the wrong place. If I’m right, removing the -flat_namespace option when building the custom libxml should fix the problem. (As should removing it entirely and just using the system libxml. But again, I don’t know how practical that would be.)
Thanks very much the great feedback, I’ll be sure to fix that!
It looks like I have the same kind of trouble because I’m using plex 9.1.13 and Airfoil
see http://forums.plexapp.com/index.php/topic/22781-python-crashes/page__pid__142095#entry142095
does anyone can help?
Any news on this? We were just doing some Plex testing for some other things and noticed that this crash is still present. If there’s any further information or assistance I might be able to provide, I’d be happy to help.
I’ve just started having the same problem also: (any solutions yet?)
Process: Python [6231]
Path:
/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python
Identifier: Python
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: Plex Media Server [6054]
Interval Since Last Report: 1640 sec
Crashes Since Last Report: 14
Per-App Interval Since Last Report: 0 sec
Per-App Crashes Since Last Report: 14
Date/Time: 2011-02-26 00:07:53.336 +0000
OS Version: Mac OS X 10.5.8 (9L31a)
Report Version: 6
Anonymous UUID: 5D6292AE-D3C1-4B3F-9825-734E4BF4C9C2
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffffff4
Crashed Thread: 0
Thread 0 Crashed:
0 libSystem.B.dylib 0x95beec2f szone_free + 2101
1 libSystem.B.dylib 0x95bf3374 szone_realloc + 2406
2 libSystem.B.dylib 0x95bf29ce malloc_zone_realloc + 88
3 libSystem.B.dylib 0x95bf2941 realloc + 209
4 libxml2.2-osx.dylib 0x01054cea xmlXPathCompExprAdd + 394
5 libxml2.2-osx.dylib 0x010613bc xmlXPathCompStep + 1004
6 libxml2.2-osx.dylib 0x01061dc2
xmlXPathCompRelativeLocationPath + 98
7 libxml2.2-osx.dylib 0x010627e5 xmlXPathCompPathExpr + 1973
8 libxml2.2-osx.dylib 0x010632eb xmlXPathCompUnaryExpr + 427
9 libxml2.2-osx.dylib 0x0106341f
xmlXPathCompMultiplicativeExpr + 15
10 libxml2.2-osx.dylib 0x0106360f xmlXPathCompAdditiveExpr + 15
11 libxml2.2-osx.dylib 0x0106375f xmlXPathCompRelationalExpr + 15
12 libxml2.2-osx.dylib 0x0106390f xmlXPathCompEqualityExpr + 15
13 libxml2.2-osx.dylib 0x01063a6f xmlXPathCompAndExpr + 15
14 libxml2.2-osx.dylib 0x01063be2 xmlXPathCompileExpr + 18
15 libxml2.2-osx.dylib 0x01068caa xmlXPathCtxtCompile + 90
16 etree.so 0x00661216
pyx_pf_4lxml_5etree_5XPath___init + 550
17 org.python.python 0x0015e58e PyType_IsSubtype + 1288
18 org.python.python 0x00121505 PyObject_Call + 50
19 org.python.python 0x0018f832 PyEval_EvalFrameEx + 17904
20 org.python.python 0x00191173 PyEval_EvalCodeEx + 1638
21 org.python.python 0x00191260 PyEval_EvalCode + 87
22 org.python.python 0x001a1315 PyImport_ExecCodeModuleEx + 238
23 org.python.python 0x001a183c PyImport_ExecCodeModuleEx + 1557
24 org.python.python 0x001a206c PyImport_ExecCodeModule + 955
25 org.python.python 0x001a26c1 PyImport_ReloadModule + 1159
26 org.python.python 0x001a2b74 PyImport_ReloadModule + 2362
27 org.python.python 0x001a2f84 PyImport_ReloadModule + 3402
28 org.python.python 0x001a301a PyImport_ImportModuleLevel + 50
29 org.python.python 0x00185ff5 PyAST_FromNode + 5362
30 org.python.python 0x00121505 PyObject_Call + 50
31 org.python.python 0x0018a82d
PyEval_CallObjectWithKeywords + 211
32 org.python.python 0x0018e939 PyEval_EvalFrameEx + 14071
33 org.python.python 0x00191173 PyEval_EvalCodeEx + 1638
34 org.python.python 0x00191260 PyEval_EvalCode + 87
35 org.python.python 0x001a1315 PyImport_ExecCodeModuleEx + 238
36 org.python.python 0x001a183c PyImport_ExecCodeModuleEx + 1557
37 org.python.python 0x001a26c1 PyImport_ReloadModule + 1159
38 org.python.python 0x001a28b0 PyImport_ReloadModule + 1654
39 org.python.python 0x001a2e6a PyImport_ReloadModule + 3120
40 org.python.python 0x001a301a PyImport_ImportModuleLevel + 50
41 org.python.python 0x00185ff5 PyAST_FromNode + 5362
42 org.python.python 0x00121505 PyObject_Call + 50
43 org.python.python 0x0018a82d
PyEval_CallObjectWithKeywords + 211
44 org.python.python 0x0018e939 PyEval_EvalFrameEx + 14071
45 org.python.python 0x00191173 PyEval_EvalCodeEx + 1638
46 org.python.python 0x00191260 PyEval_EvalCode + 87
47 org.python.python 0x001a1315 PyImport_ExecCodeModuleEx + 238
48 org.python.python 0x001a183c PyImport_ExecCodeModuleEx + 1557
49 org.python.python 0x001a206c PyImport_ExecCodeModule + 955
50 org.python.python 0x001a26c1 PyImport_ReloadModule + 1159
51 org.python.python 0x001a28b0 PyImport_ReloadModule + 1654
52 org.python.python 0x001a2e6a PyImport_ReloadModule + 3120
53 org.python.python 0x001a301a PyImport_ImportModuleLevel + 50
54 org.python.python 0x00185ff5 PyAST_FromNode + 5362
55 org.python.python 0x00121505 PyObject_Call + 50
56 org.python.python 0x0018a82d
PyEval_CallObjectWithKeywords + 211
57 org.python.python 0x0018e939 PyEval_EvalFrameEx + 14071
58 org.python.python 0x00191173 PyEval_EvalCodeEx + 1638
59 org.python.python 0x00191260 PyEval_EvalCode + 87
60 org.python.python 0x001a1315 PyImport_ExecCodeModuleEx + 238
61 org.python.python 0x001a183c PyImport_ExecCodeModuleEx + 1557
62 org.python.python 0x001a206c PyImport_ExecCodeModule + 955
63 org.python.python 0x001a26c1 PyImport_ReloadModule + 1159
64 org.python.python 0x001a28b0 PyImport_ReloadModule + 1654
65 org.python.python 0x001a2e6a PyImport_ReloadModule + 3120
66 org.python.python 0x001a301a PyImport_ImportModuleLevel + 50
67 org.python.python 0x00185ff5 PyAST_FromNode + 5362
68 org.python.python 0x00121505 PyObject_Call + 50
69 org.python.python 0x0018a82d
PyEval_CallObjectWithKeywords + 211
70 org.python.python 0x0018e939 PyEval_EvalFrameEx + 14071
71 org.python.python 0x00191173 PyEval_EvalCodeEx + 1638
72 org.python.python 0x00191260 PyEval_EvalCode + 87
73 org.python.python 0x001a883c PyErr_Display + 1896
74 org.python.python 0x001a8e66 PyRun_FileExFlags + 135
75 org.python.python 0x001aa7d2 PyRun_SimpleFileExFlags + 421
76 org.python.python 0x001b5a57 Py_Main + 3095
77 org.python.pythonapp 0x00001fca 0x1000 + 4042
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0xfffffff0 ebx: 0x95bee411 ecx: 0xffffffff edx: 0x00000008
edi: 0x003aa480 esi: 0x00000020 ebp: 0xbfff9518 esp: 0xbfff93d0
ss: 0x0000001f efl: 0x00010202 eip: 0x95beec2f cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0xfffffff4
Binary Images:
0x1000 - 0x1ffe org.python.pythonapp 2.5.0 (2.5.0a0)
/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python
0x6000 - 0x6ff7 libignitor.dylib ??? (???)
<2b3ab8cd2f40f2f6bcaf6fbdc220fa58> /usr/lib/libignitor.dylib
0x52000 - 0x53fff time.so ??? (???)
<6f1f660593f46bb791053389cd76360d>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/time.so
0x98000 - 0x99fff math.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/math.so
0x9d000 - 0x9efff _random.so ??? (???)
<4278b7a92a5f6c99f93d407581dbbf9e>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_random.so
0xa2000 - 0xa2ffd fcntl.so ??? (???)
<5b355c78953705870d6d52ea606185d4>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/fcntl.so
0xa6000 - 0xa7ffc _locale.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_locale.so
0xab000 - 0xabffd _bisect.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_bisect.so
0xb1000 - 0xb3ffd strop.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/strop.so
0xb8000 - 0xbdfff _socket.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_socket.so
0xc4000 - 0xc5fff _ssl.so ??? (???)
<4dd59d40efd24c5bbd948510af65ed99>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_ssl.so
0xc9000 - 0xc9ffd _weakref.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_weakref.so
0x119000 - 0x1e5feb org.python.python 2.5 (2.5)
/System/Library/Frameworks/Python.framework/Versions/2.5/Python
0x278000 - 0x279ffd _hashlib.so ??? (???)
<407ee9f86d6f0e670cf3e86ca9fe2f78>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_hashlib.so
0x27d000 - 0x280ffe _sha256.so ??? (???)
<90ae46ba3031e6c1f75abaeb4cbe76aa>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_sha256.so
0x284000 - 0x291ffd _sha512.so ??? (???)
<6d3722258f66ef02eb31dff8cff4b972>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_sha512.so
0x295000 - 0x297ffb _struct.so ??? (???)
<4aa986ff9a9a881615b7a28c3225dcf9>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/_struct.so
0x29b000 - 0x29cffe binascii.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/binascii.so
0x2a1000 - 0x2a2fff cStringIO.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/cStringIO.so
0x2a6000 - 0x2a7fff collections.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/collections.so
0x2ee000 - 0x2f7fff datetime.so ??? (???)
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/datetime.so
0x440000 - 0x447ffc parser.so ??? (???)
<833f5aa8657e33c14a138482636cc85a>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/parser.so
0x44b000 - 0x44dfff operator.so ??? (???)
<13502369248273d14649e78362a764cd>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/operator.so
0x4dc000 - 0x4dfffe array.so ??? (???)
<84955c2eb4bb6358e9c92e159f73be72>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/array.so
0x585000 - 0x589fff +_speedups.so ??? (???)
/Users/sukhidehal/Library/Application Support/Plex Media
Server/Plug-ins/Framework.bundle/Contents/Resources/Platforms/MacOSX/i386/Libraries/simplejson/_speedups.so
0x58e000 - 0x590ffd zlib.so ??? (???)
<588eab0b51a6ccc886a3a755d2d4f5de>
/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload/zlib.so
0x5d5000 - 0x5dffff libexslt.0.dylib ??? (???)
<2d56b8c39848d8a524cb0ae8d6299f19> /usr/lib/libexslt.0.dylib
0x62d000 - 0x726ff9 +etree.so ??? (???)
<08cc0eeb0ae342c9d0695d9f87abfe32>
/Users/sukhidehal/Library/Application Support/Plex Media
Server/Plug-ins/Framework.bundle/Contents/Resources/Platforms/MacOSX/i386/Libraries/lxml/etree.so
0x1000000 - 0x1104fef +libxml2.2-osx.dylib ??? (???)
<656f7a35da0cf08354564bc4bc436313>
/Users/sukhidehal/Library/Application Support/Plex Media
Server/Plug-ins/Framework.bundle/Contents/Resources/Platforms/MacOSX/i386/Frameworks/libxml2.2-osx.dylib
0x8fe00000 - 0x8fe2db43 dyld 97.1 (???)
<458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
0x90003000 - 0x90018ffb com.apple.ImageCapture 5.0.2 (5.0.2)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x90057000 - 0x90112fe3 com.apple.CoreServices.OSServices 228.1
(228.1) <76fdc146b4d9937f9c5cbaa1512e0023>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90113000 - 0x9015cfef com.apple.Metadata 10.5.8 (398.26)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x9015d000 - 0x9015dff8 com.apple.ApplicationServices 34 (34)
<8f910fa65f01d401ad8d04cc933cf887>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x90878000 - 0x908b6fff libGLImage.dylib ??? (???)
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x90a0a000 - 0x90aebff7 libxml2.2.dylib ??? (???)
/usr/lib/libxml2.2.dylib
0x90aec000 - 0x90afcfff com.apple.speech.synthesis.framework 3.7.1
(3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x90afd000 - 0x90b59ff7 com.apple.htmlrendering 68 (1.1.3)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x90b5a000 - 0x90c01feb com.apple.QD 3.11.57 (???)
<35f058678972d42b88ebdf652df79956>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x90c02000 - 0x90c95ff3 com.apple.ApplicationServices.ATS 3.8 (???)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90c96000 - 0x90d46fff edu.mit.Kerberos 6.0.14 (6.0.14)
<673f107cdae80c084774a27bc7bc46c1>
/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x90d47000 - 0x90d6bfff libxslt.1.dylib ??? (???)
<0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
0x90d6c000 - 0x90df9ff7 com.apple.framework.IOKit 1.5.2 (???)
<7a3cc24f78f93931731203854ae0d891>
/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90dfa000 - 0x90e57ffb libstdc++.6.dylib ??? (???)
<04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
0x90edd000 - 0x90eddfff com.apple.Carbon 136 (136)
<98a5e3bc0c4fa44bbb09713bb88707fe>
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x90ede000 - 0x913affbe libGLProgrammability.dylib ??? (???)
<7f18294a7bd0b6afe4319f29187fc70d>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x913c8000 - 0x913e3ff3 libPng.dylib ??? (???)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x9194f000 - 0x9194fffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2)
/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91950000 - 0x91c58fe7 com.apple.HIToolbox 1.5.6 (???)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x91c59000 - 0x91c82fff libcups.2.dylib ??? (???)
<2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
0x91c83000 - 0x92093fef libBLAS.dylib ??? (???)
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x92094000 - 0x920c1feb libvDSP.dylib ??? (???)
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x920c2000 - 0x921fbff7 libicucore.A.dylib ??? (???)
/usr/lib/libicucore.A.dylib
0x92304000 - 0x9230afff com.apple.print.framework.Print 218.0.3
(220.2) <5b7f4ef7c2df36aff9605377775781e4>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x9230b000 - 0x92388fef libvMisc.dylib ??? (???)
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x9261d000 - 0x92639ff3 com.apple.CoreVideo 1.6.1 (48.6)
<186cb311c17ea8714e918273c86d3c13>
/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9264c000 - 0x92926ff3 com.apple.CoreServices.CarbonCore 786.16
(786.16) <60b518e4ad02b91826240199a6311286>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x92937000 - 0x92a7fff7 com.apple.ImageIO.framework 2.0.7 (2.0.7)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x92a8d000 - 0x92aabfff libresolv.9.dylib ??? (???)
/usr/lib/libresolv.9.dylib
0x92aac000 - 0x92bdffe7 com.apple.CoreFoundation 6.5.7 (476.19)
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x92be0000 - 0x92bf6fff com.apple.DictionaryServices 1.0.0 (1.0.0)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x92bf7000 - 0x92c74feb com.apple.audio.CoreAudio 3.1.2 (3.1.2)
<782a08c44be4698597f4bbd79cac21c6>
/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x92ca8000 - 0x92d73fef com.apple.ColorSync 4.5.3 (4.5.3)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x92d74000 - 0x92d9ffe7 libauto.dylib ??? (???)
<42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
0x93d3f000 - 0x93d63feb libssl.0.9.7.dylib ??? (???)
<5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
0x93d6c000 - 0x93d73fe9 libgcc_s.1.dylib ??? (???)
/usr/lib/libgcc_s.1.dylib
0x93d74000 - 0x93ff0fe7 com.apple.Foundation 6.5.9 (677.26)
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x93ff1000 - 0x93ff5fff libmathCommon.A.dylib ??? (???)
/usr/lib/system/libmathCommon.A.dylib
0x94070000 - 0x94088fff com.apple.openscripting 1.2.8 (???)
<572c7452d7e740e8948a5ad07a99602b>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x94089000 - 0x94099ffc com.apple.LangAnalysis 1.6.5 (1.6.5)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9409a000 - 0x94458fea libLAPACK.dylib ??? (???)
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x94472000 - 0x944ecff8 com.apple.print.framework.PrintCore 5.5.4
(245.6) <03d0585059c20cb0bde5e000438c49e1>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x944ed000 - 0x944fafe7 com.apple.opengl 1.5.10 (1.5.10)
<5a2813f80c9441170cc1ab8a3dac5038>
/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x944fb000 - 0x94582ff7 libsqlite3.0.dylib ??? (???)
<3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
0x945b1000 - 0x945f3fef com.apple.NavigationServices 3.5.2 (163)
<91844980804067b07a0b6124310d3f31>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x945f4000 - 0x94c94fef com.apple.CoreGraphics 1.409.7 (???)
<7b65edcce394f39b6a1954d5e30bc34c>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x94c95000 - 0x94c9cffe libbsm.dylib ??? (???)
/usr/lib/libbsm.dylib
0x94c9d000 - 0x94ca7feb com.apple.audio.SoundManager 3.9.2 (3.9.2)
<0f2ba6e891d3761212cf5a5e6134d683>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x94ca8000 - 0x94d4ffec com.apple.CFNetwork 438.16 (438.16)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x94d50000 - 0x94d52fff com.apple.securityhi 3.0 (30817)
<2b2854123fed609d1820d2779e2e0963>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x9584e000 - 0x9585cffd libz.1.dylib ??? (???)
<5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
0x9585d000 - 0x958aeff7 com.apple.HIServices 1.7.1 (???)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x95a6d000 - 0x95a8cffa libJPEG.dylib ??? (???)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x95a8e000 - 0x95a96fff com.apple.DiskArbitration 2.2.1 (2.2.1)
<75b0c8d8940a8a27816961dddcac8e0f>
/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x95b5c000 - 0x95be6ff7 com.apple.DesktopServices 1.4.9 (1.4.9)
/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x95be7000 - 0x95d4eff3 libSystem.B.dylib ??? (???)
/usr/lib/libSystem.B.dylib
0x95e88000 - 0x95f68fff libobjc.A.dylib ??? (???)
<7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
0x95f9c000 - 0x9602ffff com.apple.ink.framework 101.3 (86)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x96030000 - 0x96030ffa com.apple.CoreServices 32 (32)
<2fcc8f3bd5bbfc000b476cad8e6a3dd2>
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x96054000 - 0x96060ffe libGL.dylib ??? (???)
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x9614a000 - 0x961a3ff7 libGLU.dylib ??? (???)
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x961a4000 - 0x961a8fff libGIF.dylib ??? (???)
<36f7b0255a81d97c7b360c3b11b4e462>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x961a9000 - 0x961d8fe3 com.apple.AE 402.3 (402.3)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x961d9000 - 0x96233ff7 com.apple.CoreText 2.0.5 (???)
<5483518a613464d043455ac661a9dcbe>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x96234000 - 0x9626bfff com.apple.SystemConfiguration 1.9.2 (1.9.2)
<8b26ebf26a009a098484f1ed01ec499c>
/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x96a6b000 - 0x96b5fff4 libiconv.2.dylib ??? (???)
/usr/lib/libiconv.2.dylib
0x96b6c000 - 0x96b6dffc libffi.dylib ??? (???)
/usr/lib/libffi.dylib
0x96cc3000 - 0x96d75ffb libcrypto.0.9.7.dylib ??? (???)
/usr/lib/libcrypto.0.9.7.dylib
0x96d76000 - 0x96f47ff3 com.apple.security 5.0.6 (37592)
<0b25e1e4cc34431630f01edb3fdf54d1>
/System/Library/Frameworks/Security.framework/Versions/A/Security
0x96f48000 - 0x96f82fe7 com.apple.coreui 1.2 (62)
/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x9715a000 - 0x97221ff2 com.apple.vImage 3.0 (3.0)
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x97222000 - 0x975bffef com.apple.QuartzCore 1.5.8 (1.5.8)
/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x975f7000 - 0x97600fff com.apple.speech.recognition.framework 3.7.24
(3.7.24)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x97759000 - 0x977d8ff5 com.apple.SearchKit 1.2.2 (1.2.2)
<3b5f3ab6a363a4d8a2bbbf74213ab0e5>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9787c000 - 0x9787ffff com.apple.help 1.1 (36)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x97880000 - 0x97880ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib
3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x97881000 - 0x97883ff5 libRadiance.dylib ??? (???)
<276f13ab6429e05b093a8dda251e3b53>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x97884000 - 0x97884ffb com.apple.installserver.framework 1.0 (8)
/System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer
0x97885000 - 0x978c4fef libTIFF.dylib ??? (???)
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x978c5000 - 0x97952ff7 com.apple.LaunchServices 292 (292)
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x97953000 - 0x97958fff com.apple.CommonPanels 1.2.4 (85)
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
Hi,
I’m having the exact same problem as this.
Anyone got any idea what’s causing it, is it a problem with Airfoil?
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.