http://bugs.winehq.org/show_bug.cgi?id=20336
Summary: GetDriveTypeW exposes partially uninitialized out
parameter iosb in NtDeviceIoControlFile ?
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, patch
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Building the chromium unit test suite and then running
valgrind --trace-children=all --track-origins=yes wine base_unittests.exe
--gtest_filter=FileUtilTest.CreateShortcutTest
sometimes yields the error
Syscall param writev(vector[...]) points to uninitialised byte(s)
at writev (writev.c:46)
by wine_server_call (server.c:214)
by NTDLL_wait_for_multiple_objects (sync.c:1122)
by NtWaitForMultipleObjects (sync.c:1166)
by NtWaitForSingleObject (sync.c:1175)
by server_ioctl_file (file.c:1252)
by NtDeviceIoControlFile (file.c:1318)
by DeviceIoControl (file.c:2379)
by get_mountmgr_drive_type (volume.c:203)
by GetDriveTypeW (volume.c:1381)
by IShellLinkW_fnSetPath (shelllink.c:2155)
...
Address 0x7f21f248 is on thread 1's stack
Uninitialised value was created by a stack allocation
at DeviceIoControl (file.c:2335)
and sometimes the error
Syscall param writev(vector[...]) points to uninitialised byte(s)
at writev (writev.c:46)
by wine_server_call (server.c:214)
by NTDLL_wait_for_multiple_objects (sync.c:1122)
by wait_suspend (exception.c:85)
by usr1_handler (signal_i386.c:1993)
by ??? (in /lib32/libpthread-2.9.so)
Address 0x7ffdae08 is on thread 1's stack
Uninitialised value was created by a stack allocation
at DeviceIoControl (file.c:2335)
The stack allocation in question is
IO_STATUS_BLOCK iosb;
in kernel32/file.c in DeviceIoControl(). Setting its fields
to known values before the call to NtDeviceIoControlFile()
shows that the undefined field is iosb.Information.
Setting that field before the call gets rid of the valgrind error.
I can't quite follow how ioctl's work, but:
the IOCTL_MOUNTMGR_QUERY_UNIX_DRIVE ioctl seems
to follow the call-once-to-get-buffer-size paradigm.
Its reply is a struct mountmgr_unix_drive plus
(if there is room) two nul-terminated strings.
The first field of that struct is the total size needed
to hold the entire reply. If you call without a
big enough buffer, it fills in the size and returns
STATUS_MORE_ENTRIES. It puts 0 in the Information field
of the iosb in this case.
GetDriveTypeW happens to not care about the two strings,
so it only calls once with a small buffer.
Now, server_ioctl_file only copies the Information field
of the iosb if it gets STATUS_SUCCESS. So it leaves
Information undefined in the STATUS_MORE_ENTRIES case.
MSDN says that Information is set to zero on failure,
so if server_ioctl_file isn't going to copy that field,
maybe it should set it to zero. And in fact, setting
it to zero in the non-STATUS_SUCCESS case also gets
rid of the valgrind error.
I have no idea what Information is used for, or what's
really going on here, so I'll just attach the patch
to clear Information in the non-SUCCESS case and
hope somebody who knows what's going on can comment.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29882
Bug #: 29882
Summary: Authorware Web Player 2004 Plugin - mouseClicks and
keystroke are not recognized
Product: Wine
Version: 1.4-rc3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.kellermann(a)bfe.de
Classification: Unclassified
Content, running in the Authorware Web Player 2004 Browser-Plugin accepts no
mouseclicks and keystrokes, mouseover is OK.
Example-link:
http://www.bfe.de/bfe/lernprogramme/v41/demo/et1_a1l6/load.htm
Try clicking the bottom-placed arrow-buttons or hit teh arrow-keys (left,
right) on the keyboard. Please note that mouseover is working.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32108
Bug #: 32108
Summary: Steam - Borderlands 2
Product: Wine-gecko
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: nille1990(a)gmx.de
Classification: Unclassified
After installation, when i press "play" i just get an error so i can´t start
the game. the dialog said i shoult report it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33745
Bug #: 33745
Summary: SimCity Societies segfaults
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roland(a)mxchange.org
Classification: Unclassified
Created attachment 44683
--> http://bugs.winehq.org/attachment.cgi?id=44683
Backtrace
I have installed SCS from DVD in a separate WINEPREFIX and got a segfault.
Please see attached backtrace for details.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33958
Bug #: 33958
Summary: Wine vulnerability with (USB) devices
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: f.platte(a)platte-web.de
Classification: Unclassified
I have a original XBOX controller and use a third-party driver (which is
officially discontinued since OS X Tiger, but was updated some time ago to be
64bit compatible. It is the only driver out there for XBOX 1 controller for OS
X so I have to use it.
This driver seems to mess up the UNIX device manager (or similar, as I don't
have any consolidated knowledge), resulting in crashing any wine process
accessing the controller as a input device.
I get the following error message (repetitive) from the console whenever the
controller is connected:
sudo[4755]: [CURRENT_USER] : TTY=unknown ; PWD=/ ; USER=root ;
COMMAND=/usr/bin/renice [#] -p [#]
Although this issue does not seem to be related to wine itself it reveals some
vulnerability (I think).
It may be worth fixing, as this might occur this other devices, too.
Best,
Rastafabi
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24064
Summary: Half-Life no longer starts after latest Steam update
(20 Aug 2010)
Product: Wine
Version: 1.3.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elton(a)schiert.net
Created an attachment (id=30248)
--> (http://bugs.winehq.org/attachment.cgi?id=30248)
+tid log
Since the latest Steam update (http://store.steampowered.com/news/4228/) trying
to run Half-Life results only in displaying the title screen, nothing more.
I am fairly certain that this is a bug which was exposed by the above update. I
was playing Half-Life, then Steam prompted for a restart to complete the update
and since then I can no longer run Half-Life, not even from a clean
installation. I did not change my wine version inbetween.
This issue affects goldsource games (HL), but not source games (HL2).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28621
Bug #: 28621
Summary: MTGO updater hangs
Product: Wine
Version: 1.3.29
Platform: x86
URL: http://mtgoinstaller1.onlinegaming.wizards.com/mtgov3/
helper/MTGOIII_Helper.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ricardo_barbano(a)hotmail.com
Classification: Unclassified
after installing the latest version of MTGO (linked above), when running the
updater (Kicker.exe) it hangs.
I successfully ran the updater with an older installer, and the only difference
in the log from the console is:
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28921
Bug #: 28921
Summary: Battlefield 3 crashes on installation
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: timo.schmid(a)gmail.com
Classification: Unclassified
Created attachment 37177
--> http://bugs.winehq.org/attachment.cgi?id=37177
Wine's output
Reproduce:
- Download Origin (EA's game distribution platform) and install it
- Create an account, log in
- Download Battlefield 3 or install it from CD
(When an error shows up, that you should be Admin, create the Folder
"Battlefield 3" in the Folder "Origin Games" and an empty file called
".manifest" inside. That fixed it for me)
- Try to install the game
See the attached log for wine's output during the crash.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30352
Bug #: 30352
Summary: builtin iexplore + selenium hangs on startup
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Download and install python26 from
http://www.python.org/ftp/python/2.6/python-2.6.msi
2. Download and install easyinstall from
http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11.win32-py…
3. start wine cmd, install Selenium with easyinstall :
easyinstall selenium
4. start the sample python-selenium script as attachment selenium-Ie.py :
$ wine 'c:\python26\python.exe' selenium-Ie.py
$ ./selenium-Ie.sh
Expect result:
Iexplore will open google, search for "cheese" as a keyword automatic, then
quit. All these are control by selenium
Actual result:
Iexplore hangs on start up, with following messages:
fixme:ieframe:ClassFactory_QueryInterface
(0x7eb7cb04)->({00000003-0000-0000-c000-000000000046} 0x33fb50)
fixme:ole:CoResumeClassObjects stub
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:urlmon:URLMoniker_BindToObject use running object table
fixme:ieframe:handle_navigation_error Navigate to error page
winetricks wininet will workaround for it, but there will be a crash in
IEDriver of selenium then.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34698
Bug #: 34698
Summary: QQGame 2011 can't load
Product: Wine
Version: 1.7.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
0. download QQGame 2011
sha1sum a23fb83eb2fa94d5b04d0020df5b4df64f1dac74
1. winetricks cjkfonts && export LC_ALL=zh_CN.utf8
2. wine QQGame2011ReleaseP7_setup_web.EXE to install it
3. go to the dictionary of QQGAME, type
wine QQGame.exe
4. terminal output:
err:module:attach_process_dlls "TenSLX.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\QQGAME\\QQGame.exe" failed, status c0000005
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.