http://bugs.winehq.org/show_bug.cgi?id=30567
Bug #: 30567 Summary: Paltalk Messenger not run in Ubuntu 12.04 64bits Product: Wine Version: unspecified Platform: x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: critical Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: in_festa@yahoo.com Classification: Unclassified
I Work under Ubuntu 12.04 64bits, processor AMD Quad 64bits, 4Gb memory DDRAM
I Install the last version of Paltalk with the last version of Wine. When I try run from console say that:
wine "c:\Program Files (x86)\Paltalk Messenger\paltalk.exe" fixme:service:scmdatabase_autostart_services Auto-start service L"UMWdf" failed to start: 2 p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no se puede abrir el archivo del objeto compartido: No existe el archivo o el directorio fixme:msxml:saxxmlreader_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:dwmapi:DwmIsCompositionEnabled 0x32c3a0 wine: Unhandled exception 0xc0000417 at address 0x7cd668 (thread 0009), starting debugger...
Can you help me? Thanks.
PD.- If posible answer in spanish, my english is limited :-)
http://bugs.winehq.org/show_bug.cgi?id=30567
Vitaliy Margolen vitaliy-bugzilla@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Paltalk Messenger not run |Paltalk Messenger crashes |in Ubuntu 12.04 64bits |on start Severity|critical |normal
--- Comment #1 from Vitaliy Margolen vitaliy-bugzilla@kievinfo.com 2012-05-01 18:58:39 CDT --- What Wine version? If it's not at least wine-1.5.2 - upgrade. If problem persists - attach complete terminal output as described here: http://wiki.winehq.org/FAQ#get_log
http://bugs.winehq.org/show_bug.cgi?id=30567
--- Comment #2 from Antonio Parra in_festa@yahoo.com 2012-05-02 14:09:25 CDT --- Created attachment 40001 --> http://bugs.winehq.org/attachment.cgi?id=40001 Paltalk Messenger crashes in Wine 1.5
I update to Wine 1.5. Also update x86 libraries from update-manager in Ubuntu 12.04 64 bits. I try run Paltalk Messenger and crashes. I attached file with the result.
http://bugs.winehq.org/show_bug.cgi?id=30567
--- Comment #3 from Antonio Parra in_festa@yahoo.com 2012-05-02 14:12:37 CDT --- I adjoint file with errors details of program Paltalk Messenger in Wine 1.5
http://bugs.winehq.org/show_bug.cgi?id=30567
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Version|unspecified |1.5.3 URL| |www.paltalk.com/download/0. | |x/pal_install_r110010.exe Keywords| |download Component|-unknown |kernel32 CC| |focht@gmx.net Ever Confirmed|0 |1 Summary|Paltalk Messenger crashes |Paltalk Messenger crashes |on start |on start | |(kernel32.OutputDebugString | |A needs to cope with NULL | |pointer)
--- Comment #4 from Anastasius Focht focht@gmx.net 2012-05-02 14:50:12 CDT --- Hello,
confirming. There is a crash when trying to login (you can use any input for testing).
The app makes extensive use of OutputDebugString() API for logging purpose.
--- snip --- ... 0037:Call KERNEL32.OutputDebugStringA(00882c34 "palserver::NetworkingError\n ") ret=006fcd54 0037:warn:debugstr:OutputDebugStringA "palserver::NetworkingError\n " 0037:Ret KERNEL32.OutputDebugStringA() retval=00000000 ret=006fcd54 0037:Call KERNEL32.OutputDebugStringA(00000000) ret=006fcd5e 0037:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7b835877 ip=7b835877 tid=0037 0037:trace:seh:raise_exception info[0]=00000000 0037:trace:seh:raise_exception info[1]=00000000 0037:trace:seh:raise_exception eax=00000000 ebx=7b8b06b0 ecx=ffffffff edx=00000000 esi=0d19e834 edi=00000000 0037:trace:seh:raise_exception ebp=0d19e908 esp=0d19e800 cs=0023 ds=002b es=002b fs=0063 gs=006b flags=00010212 --- snip ---
The relevant app code:
--- snip --- 006FCD40 55 PUSH EBP 006FCD41 8BEC MOV EBP,ESP 006FCD43 83EC 08 SUB ESP,8 006FCD46 894D F8 MOV DWORD PTR SS:[EBP-8],ECX 006FCD49 68 342C8800 PUSH OFFSET 00882C34 ; "palserver::NetworkingError " 006FCD4E FF15 B8B38600 CALL DWORD PTR DS:[<&KERNEL32.OutputDebugStringA>] 006FCD54 8B45 0C MOV EAX,DWORD PTR SS:[EBP+0C] 006FCD57 50 PUSH EAX ; NULL ptr 006FCD58 FF15 B8B38600 CALL DWORD PTR DS:[<&KERNEL32.OutputDebugStringA>] 006FCD5E 68 60DE8600 PUSH OFFSET 0086DE60 006FCD63 FF15 B8B38600 CALL DWORD PTR DS:[<&KERNEL32.OutputDebugStringA>] 006FCD69 8B4D F8 MOV ECX,DWORD PTR SS:[EBP-8] 006FCD6C 8B91 AC000000 MOV EDX,DWORD PTR DS:[ECX+0AC] 006FCD72 52 PUSH EDX 006FCD73 6A 00 PUSH 0 006FCD75 FF15 18B88600 CALL DWORD PTR DS:[<&USER32.KillTimer>] ... --- snip ---
The caller passes a hard-coded NULL pointer parameter to second OutputDebugStringA:
--- snip --- 006FCFFA 6A 00 PUSH 0 006FCFFC 6A 00 PUSH 0 006FCFFE 8B4D F8 MOV ECX,DWORD PTR SS:[EBP-8] 006FD001 E8 3AFDFFFF CALL 006FCD40 006FD006 33C0 XOR EAX,EAX --- snip ---
Wine needs to cope with NULL ptr passed to OutputDebugStringA.
Source: http://source.winehq.org/git/wine.git/blob/b5a33dab886df6352011457932713ed32...
--- snip --- 243 void WINAPI OutputDebugStringA( LPCSTR str ) 244 { 245 static HANDLE DBWinMutex = NULL; 246 static BOOL mutex_inited = FALSE; 247 248 /* send string to attached debugger */ 249 SERVER_START_REQ( output_debug_string ) 250 { 251 req->string = wine_server_client_ptr( str ); 252 req->length = strlen(str) + 1; 253 wine_server_call( req ); 254 } 255 SERVER_END_REQ; 256 257 WARN("%s\n", debugstr_a(str)); --- snip ---
Crash is at line 252 (strlen).
With OutputDebugStringA fixed the app doesn't crash and validates the login. I don't have an account to play further.
$ du -sh pal_install_r110010.exe 24M pal_install_r110010.exe
$ sha1sum pal_install_r110010.exe c83e74876b47a8b5e9f25fd3f4652704c0de1ee5 pal_install_r110010.exe
$ wine --version wine-1.5.3-73-g93a0ca7
Regards
http://bugs.winehq.org/show_bug.cgi?id=30567
--- Comment #5 from Stefan Leichter Stefan.Leichter@camLine.com 2012-05-31 13:54:47 CDT --- should be fixed by http://source.winehq.org/git/wine.git/commitdiff/68aa42a4191c50bb9bf2767c51a...
http://bugs.winehq.org/show_bug.cgi?id=30567
--- Comment #6 from Antonio Parra in_festa@yahoo.com 2012-06-04 07:03:33 CDT --- Created attachment 40388 --> http://bugs.winehq.org/attachment.cgi?id=40388 Runing Paltalk Messenger after update Ubuntu and Wine
http://bugs.winehq.org/show_bug.cgi?id=30567
--- Comment #7 from Stefan Leichter Stefan.Leichter@camLine.com 2012-06-04 13:11:41 CDT --- (In reply to comment #6)
Created attachment 40388 [details] Runing Paltalk Messenger after update Ubuntu and Wine
The fix was commited after wine 1.5.5 released. You need to wait for wine 1.5.6 to get a package with the fix or build wine from git yourself
http://bugs.winehq.org/show_bug.cgi?id=30567
Nikolay Sivov bunglehead@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |68aa42a4191c50bb9bf2767c51a | |4b9c7b7aaef5e Status|NEW |RESOLVED Resolution| |FIXED
--- Comment #8 from Nikolay Sivov bunglehead@gmail.com 2012-09-02 01:10:59 CDT --- Marking fixed with 68aa42a4191c50bb9bf2767c51a4b9c7b7aaef5e.
http://bugs.winehq.org/show_bug.cgi?id=30567
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #9 from Alexandre Julliard julliard@winehq.org 2012-09-14 13:35:59 CDT --- Closing bugs fixed in 1.5.13.