-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
False reports on tests using sockets #68
Comments
From timurrrr@google.com on November 01, 2010 04:23:06 I've suppressed all (or most of?) the warnings with these suppressions: UNINITIALIZED READ UNINITIALIZED READ UNINITIALIZED READ UNINITIALIZED READ UNADDRESSABLE ACCESS UNINITIALIZED READ UNADDRESSABLE ACCESS |
From timurrrr@google.com on November 01, 2010 04:23:30 What looks strange to me is that most of the time I start the tool it doesn't print out the stats after the run. Cc: derek.bruening |
From timurrrr@google.com on November 01, 2010 06:46:03 More info on the crash suppress.txt ends with UNADDERSSABLE ACCESS results.txt ends with global.PID.log ends with Error Looks like it's crashing while printing the CtfImm... suppression? |
From timurrrr@google.com on November 01, 2010 07:16:43 I think I've found the crashy error, will send a patch soon. Status: Started |
From timurrrr@google.com on November 01, 2010 08:19:37 Nope, my guess was wrong. Attachment: test.cpp |
From timurrrr@google.com on November 01, 2010 10:22:44 The hang has stopped reproducing for me for some unknown reason. D'oh! |
From timurrrr@google.com on November 01, 2010 11:07:39 After inserting verbosity printing with 'cout << "ADSAD\n"; cout.flush();" into the test it looks like there is some sort of a data race in Dr. Memory. With the attached source code the output ends with: Which means it stops when one thread does closesocket() and the other calls cout << "..."; Attachment: test.cpp |
From timurrrr@google.com on November 01, 2010 11:17:29 I've added some NOTIFYs into the report.c/report_error and I can clearly see that it is called from one thread when the other is printing "waiting for an incoming connection". |
From timurrrr@google.com on November 02, 2010 07:01:39 Looks like the race happens when two threads execture NtClose. <end of global.XYZ.log, earlier run with some extra cout's> Attachment: test.cpp |
From timurrrr@google.com on November 02, 2010 07:16:00 (the logs were collected with "-verbose 2") |
From timurrrr@google.com on November 02, 2010 07:56:02 With the attached patch applied to Dr. Memory The DrM source lines to be executed next are: Hmmm... Attachment: ntclose.patch |
From derek.br...@gmail.com on November 02, 2010 08:29:33 I can't reproduce any problems, but I'm using a VM (though with 2 VCPUs) I'm not quite sure I understand the symptoms: you've seen both a crash and a hang? What were the callstacks during the hang (via windbg)? |
From timurrrr@google.com on November 02, 2010 08:35:29 I think I can't reproduce the hang anymore (not sure how it was happening) Will try windbg |
From bruen...@google.com on April 25, 2011 14:48:26 the RegQueryValueKey mentioned in comment 1 may be issue #358 |
From timurrrr@google.com on May 03, 2011 07:27:55 NtQueryValueKey is mentioned in issue #358 too. |
From bruen...@google.com on May 03, 2011 07:38:05 not sure what you mean in comment 15 beyond comment 14 ioctl handling in issue #359 will probably address many of the other uninits here. I'll take this over to ensure the ioctls cover this test app. Owner: bruen...@google.com |
From bruen...@google.com on May 03, 2011 08:27:06 unfortunately there are graphical syscalls in this app so ioctls alone won't get it to zero. still a useful target. |
From timurrrr@google.com on May 03, 2011 08:41:46
Besides graphics syscalls - will the ioctl warnings disappear? |
From bruen...@google.com on May 03, 2011 12:55:42 net_unittests.exe --gtest_filter="URLRequestTestHTTP.ProxyTunnelRedirectTest" does not have any of these, but this app does. things like: Error looks like it's using a different set of ioctls from ProxyTunnelRedirectTest |
From timurrrr@google.com on November 01, 2010 06:56:40
As of r79 , the attached test (which uses socket, bind, listen, accept, connect, send, recv) produces 5 unaddr and 35 uninit reports.
The report is attached as well.
Among other reports, this one looks related to other false positives I've seen on various Chromium tests working with registry:
Error
#9
: UNINITIALIZED READ: reading 0x0012fb20-0x0012fb24 4 byte(s) within 0x0012fb20-0x0012fb24@0:00:02.939 in thread 2384
system call NtQueryValueKey
0x77dd7b68 <ADVAPI32.dll+0x7b68> ADVAPI32.dll!RegQueryValueExA
0x71ab7451 <WS2_32.dll+0x7451> WS2_32.dll!WSAStartup
0x71ab7da4 <WS2_32.dll+0x7da4> WS2_32.dll!WSCEnumProtocols
0x71ab7cfe <WS2_32.dll+0x7cfe> WS2_32.dll!WSCEnumProtocols
0x71ab768c <WS2_32.dll+0x768c> WS2_32.dll!WSAStartup
0x71ab8017 <WS2_32.dll+0x8017> WS2_32.dll!WSCEnumProtocols
0x71ab7f5b <WS2_32.dll+0x7f5b> WS2_32.dll!WSCEnumProtocols
0x71ab7eaf <WS2_32.dll+0x7eaf> WS2_32.dll!WSCEnumProtocols
Attachment: test.cpp report.txt
Original issue: http://code.google.com/p/drmemory/issues/detail?id=68
The text was updated successfully, but these errors were encountered: