This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: long I/O delays when strace is running


Unfortunately, I don't have much time to spend on this issue as the gcc8 stage1 has started and I have a few more issues to clear up with my patchset.

On 04/23/2017 02:42 AM, Mark Geisert wrote:
Anyway, I can see that the strace process's shared _pinfo object is never fully
populated:

_pinfo 0x30000 {
   pid 2800,
   process_state 0x00000001,
   ppid 0,
   exitcode 0
   cygstarted 0,
   dwProcessId 0x00000AF0,
   progname "D:\cygwin64\bin\strace.exe",
   uid 0,
   gid 0,
   pgid 0,
   sid 0,
   ctty 0,
   has_pgid_children 0
   start_time 1492881370,
   nice 0,
   stopsig 0,
   sendsig 0x0,
   exec_sendsig 0x0,
   exec_dwProcessId 0
}

Again, strace.exe is a Windows executable, so perhaps some of those fields don't make sense for a non-Cygwin process and are not initialized? Purely speculation on my part.

Oh, I understand now, thanks. :) So it doesn't link to cygwin1.dll (or any other cygwin libs), that makes sense. So the flaw is probably thinking that this executable *should* have uid, guid, ppid, etc. Yet, it exists in the cygwin process database (apparently a bunch of shared (probably anonymous) files?). So the mistake is either listing it in the database or not accounting for the possibility of strace, the semi-cygwin program? Maybe there should be (or is?) a flag to tell readers of the cygwin process database that this is a "special case" process?

So I would venture to say that is a problem.  Also, pinfo::init() should
probably issure some error message if it waits 2-ish seconds and the struct
still isn't correctly populated.

That seems right. I unfortunately don't know why the code presumes the struct is always populated within a certain (small) amount of time. The complaint comment about minimum possible sleep duration sure makes it seem like it's always supposed to be populated very quickly.


Yes, and not knowing cygwin's architecture it's hard for me to guess why, although I can do a git blame and try to understand when the code was put in. Also, anything like this usually screams race condition in my ear, but I can't say that w/o really understanding it well and what assumptions are being made. For instance, if another thread/process could really modify this then reads should be done using known atomic instructions. On 32-bit x86, iirc, a mov of the machine word size is always atomic, i.e., either you get an intact old value or you get an intact new value, you should never get two bytes of the new value and two bytes of the old. But when I'm writing C code, I never want to presume what the compiler will emit for situations like this and it's better to use some atomic read/write macro/inline, even though I can't really imagine this particular snippet not using a simple mov, using an explicit "atomic" function/macro conveys the intention.

I should note that in the case of trying to analyze this problem with expect, I allowed a make -kj8 check to run for a few days (should take maybe 4 hours) and I never had the race condition. Presumably, if I allowed it to run for a very long period or time (months or years) it would have likely occurred.

Is there a way to debug the children of strace? It would make it a lot easier. That's part of why I wrote the _pinfo::debug(), but also when I debug strace with gdb, the _pinfo struct IS properly populated. The best problems are the
ones that disappear when you try to debug them.

strace always acts as the debugger of the target process you start strace with (or attach to; see '-p' in strace's help). strace has a switch '-f' == '--trace-children' that defaults to being ON. So by default strace is getting DEBUG_EVENTs from the target strace launched as well as any process the target creates.

If you explicitly set the '-f' flag, you're actually turning OFF that default and *only* the target process sends DEBUG_EVENTs. In that case any process the target creates will be invisible to strace. You could conceivably debug those sub-processes with gdb but you likely won't be able to catch them at their startup unless they wait for your attach.


Very interesting! Is it possible to have two processes debugging and have strace forward debug events that it isn't interested in to another debugger in the chain? I'm probably just talking crazy here. Either way, that's ancillary to fixing the problem.

Daniel

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]