<div dir="ltr">Hey Matt,<div><br></div><div>Shawn's out on vacation until end of week.</div><div><br></div><div>-Todd</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Aug 18, 2014 at 3:08 AM, Matthew Gardiner <span dir="ltr"><<a href="mailto:mg11@csr.com" target="_blank">mg11@csr.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Shawn,<br>
<br>
Have you spent anymore time looking at this prompt issue (where you see the (lldb) prompt even when you use "process launch")? I tried fixing it with the attached patch. This fixes the issue fine at the lldb command line, but results in the python TestHelloWorld test hanging the call to  Process::WaitForProcessToStop. I wondered if you had spent anymore time on this lately and knew of a complete/better fix...<br>

<br>
thanks<br>
Matt<br>
<br>
Greg Clayton wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">
Jim and I have discussed the right thing to do which we plan to implement as soon as we get the chance.<br>
<br></div>
Current we have two process states: public and private. The private state is always up to date and is used to track what the process is currently doing. The public state gets set when we believe the end user should see an event that will update the GUI or TTY with the current state if needed (stopped or exited). There is a lot of tricky code that uses the private process state to manage things like the thread plans. Things like source level single step might involve starting and stopping and hitting breakpoints and single instruction stepping, but the user only wants to see the final eStateStopped when the source level step is done. Expressions are also tricky, the public state of the process is stopped, but when we run an expression, we might resume the process many times and the user will always see that the public state if stopped. Internally though the thread plans are doing a whole bunch of stuff to the process and the user never hears anything about these (no events go public).<div>
<div class="h5"><br>
<br>
So the current public and private stuff uses broadcaster hijacking and all sorts of other tricks to avoid letting the end user know about the starts and stops that they shouldn't know about. We eventually want to have a new class, lets call in lldb_private::ProcessState for now, that manages the current process state and always receives the process events. There would be no more public and private events. We would have one version of the ProcessState subclass that would cause the GUI/TTY to update (replacing the public events) and one ProcessState subclass that would manage running thread plans. There would be stack of these and this will help us avoid the whole public/private/hijacking stuff we have now.<br>

<br>
Launching a process would end up pushing a new ProcessState class that could handle all the necessary starts and stop we need to get the process to a quiescent state that is presentable to the user. The ProcessState subclass could eat all the events it needs to while launching and then propagate the stopped or running event when it gets popped off the stack.<br>

<br>
So we should make some simple fixes for now to work around the issue and get things working, but it would also be great to get the new system up and running so we can make this easier in the future for people that want to make changes.<br>

<br>
Greg<br>
<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Aug 8, 2014, at 1:08 AM, Matthew Gardiner <<a href="mailto:mg11@csr.com" target="_blank">mg11@csr.com</a>> wrote:<br>
<br>
Folks,<br>
<br>
Regarding "launching using the shell",  I don't think applies in the buggy case that myself and Shawn are looking at.<br>
<br>
I do:<br>
<br>
(lldb) target create ./test<br>
...<br>
(lldb) process launch<br>
...<br>
<br>
and when I inspected the call to exec, I see that my exe name is the program passed.<br>
<br>
Thanks for the insight into the broadcasting of stop events. That explains why I see in the ShouldBroadcastEvent, the ShouldStop and ShouldReportStop calls.<br>
<br>
However, it would be nice to know if the first stop event should be broadcast for "process launch".  I think it's an implementation detail, and therefore should not. That would help to fix this issue.<br>
<br>
However, Shawn's original suggestion to fix this issue circumvents the above debate, by replacing the call of HandlePrivateEvent with SetPublicState. So which fix is best? Calling SetPublicState rather than HandlePrivateEvent is certainly more expedient, and avoids this debate... but is it more portable/future-proof?<br>

<br>
Matt<br>
<br>
<br>
<a href="mailto:jingham@apple.com" target="_blank">jingham@apple.com</a> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
If you are launching using the shell, you'll see more stops before you get to the executable you are actually trying to launch.  In that case, instead of just running the binary directly you effectively do:<br>
<br>
/bin/bash exec <binary> arg1 arg2<br>
<br>
so that you can get bash (or whatever is set in $SHELL) to do the argument expansion for you.  GetResumeCountForLaunchInfo calculates this, then it is stuffed into the ProcessLaunchInfo (SetResumeCount).  On Mac OS X we always let the Platform launch, then attach, so in that case the AttachCompletionHandler does the extra resumes.  I'm not all that familiar with how the Linux side work, but it also seems to use the ProcessLaunchInfo's resume count.<br>

<br>
Note that in general in lldb not all publicly broadcast stop messages are going to result in a stop.  For instance, all the breakpoint command & condition handling goes on as a result of the broadcast of the public stop event, but the process might just turn around an continue based on that.  Whether to suppress the broadcast and continue from the private state thread or broadcast the event and let the upper levels of lldb take care of what happens from there on really depends on where it makes sense to handle the stop.  So for the case of breakpoint stops (or stop hooks, another example), those end up being equivalent to user typed commands, just done for the user automatically by the system.  So having them happen in a world where the public state wasn't sync'ed up to the private state ended up being very awkward.<br>

<br>
I haven't looked at the launching code in detail recently so I am not sure whether it makes sense for the first stop to be handled as it is.<br>
<br>
Jim<br>
<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Aug 7, 2014, at 6:29 AM, Matthew Gardiner <<a href="mailto:mg11@csr.com" target="_blank">mg11@csr.com</a>> wrote:<br>
<br>
Hi Shawn,<br>
<br>
I spent some time today looking at how to arrange for ShouldBroadcast to return false for this first stop. I managed to produce a quick hack for this (i.e. just counted the number of stops), but due to other distractions (from the rest of my job) I didn't get that far into discovering a nice way of achieving this...<br>

<br>
What I did discover is that with my build just doing "process launch" results in 3 stops (and 3 private resumes). That in itself I find surprising, since I was under the impression that I should see the inferior stop just once when exec is trapped by PTRACE_ME.<br>

<br>
I then discovered that for each of these 3 stops ShouldBroadcast calls Thread::ShouldStop, the Thread::ShouldStop returns true for the first stop and false for the other 2. Looking into these behaviour differences I then found that from within Thread::ShouldStop we then call into the following:<br>

<br>
    StopInfoSP private_stop_info (GetPrivateStopInfo());<br>
    if (private_stop_info && private_stop_info-><u></u>ShouldStopSynchronous(event_<u></u>ptr) == false)<br>
    {<br>
<br>
and also<br>
<br>
bool over_ride_stop = current_plan-><u></u>ShouldAutoContinue(event_ptr);<br>
<br>
the results from either of these, it seems providing the reasoning behind the different true/false returns. I'll return to spend a bit more time on this tomorrow. Let me know if you get any further on a similar vein!<br>

<br>
thanks<br>
Matt<br>
<br>
<br>
<br>
Shawn Best wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Matt,<br>
<br>
I think you are probably right, although there are other places where it directly calls SetPublicState().   I was wondering about the possibility there could be other listeners waiting for a broadcast public Stop event.  Is that a possibility?<br>

<br>
Some others here were investigating some unit tests that were failing intermittently (StopHook).  Their description of the problem sounds unrelated to the launch code, but this patch also magically fixes that.<br>
<br>
Shawn.<br>
<br>
On 8/6/2014 6:26 AM, Matthew Gardiner wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Shawn,<br>
<br>
Like I said earlier your patch worked. However I think the right fix is to arrange that ShouldBroadcast returns false for this first stop. I believe this, because firstly no stops should be reported here since the user is only interested in launching a program, and additionally because it enables us to fix lldb without removing the call to HandlePrivateEvent. This, I think, is important to preserve as the central point for process state change handling.<br>

<br>
Matt<br>
<br>
<br>
<br>
Shawn Best wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Matthew,<br>
<br>
I have also been tracking this bug.  I believe there are other bugs in the unit tests failing indirectly because of this.  I also have a patch that will fix it, but was sitting on it until the other one landed.  These bugs do not show up on OSX since the inferiors are launched separately then attached to.<br>

<br>
The first odd thing the launching code does is push an IOHandler when it sees the state transition to 'launching'. This is odd because I believe the launching program will always come up in a stopped state which will immediately pop the IOHandler.<br>

<br>
At launch, the process comes up in the stopped state.  The launch code manually calls HandlePrivateEvent() with the stop event, which then broadcasts the Event.  When HandleProcessEvent gets the public stop, it dumps out the current thread state just as if an executing inferior hit a breakpoint and stopped.<br>

<br>
One way to fix this would be:<br>
<br>
1. Don't push io handler when state is 'launching'<br>
2. Instead of manually calling HandlePrivateEvent, call SetPublicState().<br>
<br>
Alternately, we could try and debug why ShouldBroadcast() returns true, but that appears to be by design since it is expecting the public stop event to pop the IOHandler that had been pushed when launching.<br>
<br>
I have attached a patch demonstrating this.  In conjunction with the other patch for IOHandler race condition, it will fix a bunch of this kind of behaviour.<br>
<br>
Shawn.<br>
<br>
On 8/5/2014 6:59 AM, Matthew Gardiner wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Jim,<br>
<br>
I've been trying to debug an issue (I see it on 64-bit linux) where, I do "target create" and "process launch" and despite not requesting *stop at entry*, the first stop (which I believe is just the initial ptrace attach stop) is reported to the lldb command line. I added some fprintf to Process::HandlePrivateEvent, which counts the number of eStoppedState events seen and whether ShouldBroadcastEvent returns true for this event. Here's the output from my program with diagnostic:<br>

<br>
(lldb) target create ~/me/i64-hello.elf<br>
Current executable set to '~/me/i64-hello.elf' (x86_64).<br>
(lldb) process launch<br>
MG Process::HandlePrivateEvent launching stopped_count 0 should_broadcast 1<br>
Process 31393 launching<br>
MG Process::HandlePrivateEvent stopped stopped_count 1 should_broadcast 1<br>
MG Process::HandlePrivateEvent running stopped_count 1 should_broadcast 1<br>
Process 31393 launched: 'i64-hello.elf' (x86_64)<br>
Process 31393 stopped<br>
* thread #1: tid = 31393, 0x0000003675a011f0, name = 'i64-hello.elf', stop reason = trace<br>
    frame #0: 0x0000003675a011f0<br>
-> 0x3675a011f0:  movq   %rsp, %rdi<br>
   0x3675a011f3:  callq  0x3675a046e0<br>
   0x3675a011f8:  movq   %rax, %r12<br>
   0x3675a011fb:  movl   0x21eb97(%rip), %eax<br>
(lldb) MG Process::HandlePrivateEvent stopped stopped_count 2 should_broadcast 0<br>
MG Process::HandlePrivateEvent running stopped_count 2 should_broadcast 0<br>
MG Process::HandlePrivateEvent stopped stopped_count 3 should_broadcast 0<br>
MG Process::HandlePrivateEvent running stopped_count 3 should_broadcast 0<br>
<br>
In summary, lldb reports the inferior to be stopped (even though /proc/pid/status and lldb "target list" say it is running). Clearly this is wrong (hence my earlier post).<br>
<br>
Am I correct in assuming that when  ShouldBroadcastEvent returns true this means that lldb should show this event to the debug user? (And thus hide other events where ShouldBroadcastEvent=false).<br>
<br>
What puzzled me was why ShouldBroadcastEvent return true for this very first stop. Is this a bug?<br>
<br>
I also spent sometime at ShouldBroadcastEvent and saw that this:<br>
<br>
        case eStateStopped:<br>
        case eStateCrashed:<br>
        case eStateSuspended:<br>
        {<br>
         ....<br>
                if (was_restarted || should_resume || m_resume_requested)<br>
                {<br>
<br>
evaluates as false, and hence the PrivateResume code is not called... does this seem buggy to you for this very first stop?<br>
<br>
I thought I'd try asking you, since in a previous mail from Greg, he cited you as being a thread-plan expert. (Hope that's ok!). I'd really appreciate your help in clarifying the above questions for me, and if you have time, giving me some ideas as to how to trace this one further e.g. how m_thread_list.ShouldStop and m_thread_list.ShouldReportStop should behave, etc.<br>

<br>
thanks for your help<br>
Matt<br>
<br>
Matthew Gardiner wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Folks,<br>
<br>
In addition to the overlapping prompt race Shawn Best and myself are looking at, I'm seeing another issue where if I launch a process, I get a stop (presumably the in) being reported to the UI.<br>
<br>
(lldb) target create ~/mydir/i64-hello.elf<br>
Current executable set to '~/mydir/i64-hello.elf' (x86_64).<br>
(lldb) process launch<br>
Process 27238 launching<br>
Process 27238 launched: '64-hello.elf' (x86_64)<br>
Process 27238 stopped<br>
* thread #1: tid = 27238, 0x0000003675a011f0, name = 'i64-hello.elf'<br>
    frame #0:<br>
(lldb) target list<br>
Current targets:<br>
* target #0: i64-hello.elf ( arch=x86_64-unknown-linux, platform=host, pid=27238, state=running )<br>
(lldb)<br>
<br>
As you can see the "target list" reflects that the process is running. Which I confirmed by looking at /proc/27238/status.<br>
<br>
Anyone else seeing this?<br>
<br>
thanks<br>
Matt<br>
<br>
<br>
<br>
Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom<br>

More information can be found at <a href="http://www.csr.com" target="_blank">www.csr.com</a> <<a href="http://www.csr.com" target="_blank">http://www.csr.com</a>>. Keep up to date with CSR on our technical blog, <a href="http://www.csr.com/blog" target="_blank">www.csr.com/blog</a> <<a href="http://www.csr.com/blog" target="_blank">http://www.csr.com/blog</a>>, CSR people blog, <a href="http://www.csr.com/people" target="_blank">www.csr.com/people</a> <<a href="http://www.csr.com/people" target="_blank">http://www.csr.com/people</a>>, YouTube, <a href="http://www.youtube.com/user/CSRplc" target="_blank">www.youtube.com/user/CSRplc</a> <<a href="http://www.youtube.com/user/CSRplc" target="_blank">http://www.youtube.com/user/<u></u>CSRplc</a>>, Facebook, <a href="http://www.facebook.com/pages/CSR/191038434253534" target="_blank">www.facebook.com/pages/CSR/<u></u>191038434253534</a> <<a href="http://www.facebook.com/pages/CSR/191038434253534" target="_blank">http://www.facebook.com/<u></u>pages/CSR/191038434253534</a>>, or follow us on Twitter at <a href="http://www.twitter.com/CSR_plc" target="_blank">www.twitter.com/CSR_plc</a> <<a href="http://www.twitter.com/CSR_plc" target="_blank">http://www.twitter.com/CSR_<u></u>plc</a>>.<br>

New for 2014, you can now access the wide range of products powered by aptX at <a href="http://www.aptx.com" target="_blank">www.aptx.com</a> <<a href="http://www.aptx.com" target="_blank">http://www.aptx.com</a>>.<br>

______________________________<u></u>_________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a> <mailto:<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a>><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
<br>
<br>
To report this email as spam click <a href="https://www.mailcontrol.com/sr/EjKNgqvIx0TGX2PQPOmvUj!GOBh06pKKNwnTW0ZqkNYNbZeofOurgZMo6Cl2EgPiaCw7kl6fPUTCXaTERp6oIw==" target="_blank">https://www.mailcontrol.com/<u></u>sr/EjKNgqvIx0TGX2PQPOmvUj!<u></u>GOBh06pKKNwnTW0ZqkNYNbZeofOurg<u></u>ZMo6Cl2EgPiaCw7kl6fPUTCXaTERp6<u></u>oIw==</a> <<a href="https://www.mailcontrol.com/sr/EjKNgqvIx0TGX2PQPOmvUj%21GOBh06pKKNwnTW0ZqkNYNbZeofOurgZMo6Cl2EgPiaCw7kl6fPUTCXaTERp6oIw==" target="_blank">https://www.mailcontrol.com/<u></u>sr/EjKNgqvIx0TGX2PQPOmvUj%<u></u>21GOBh06pKKNwnTW0ZqkNYNbZeofOu<u></u>rgZMo6Cl2EgPiaCw7kl6fPUTCXaTER<u></u>p6oIw==</a>> .<br>

</blockquote>
______________________________<u></u>_________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a> <mailto:<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a>><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
</blockquote></blockquote></blockquote></blockquote></blockquote></blockquote>
______________________________<u></u>_________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
</blockquote></div></div></blockquote>
<br>
<br>_______________________________________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><table cellspacing="0" cellpadding="0" style="color:rgb(136,136,136);font-family:'Times New Roman'"><tbody><tr style="color:rgb(85,85,85);font-family:sans-serif;font-size:small">
<td nowrap style="border-top-style:solid;border-top-color:rgb(213,15,37);border-top-width:2px">Todd Fiala |</td><td nowrap style="border-top-style:solid;border-top-color:rgb(51,105,232);border-top-width:2px"> Software Engineer |</td>
<td nowrap style="border-top-style:solid;border-top-color:rgb(0,153,57);border-top-width:2px"> <a href="mailto:tfiala@google.com" style="color:rgb(17,85,204)" target="_blank"><span style="background-color:rgb(255,255,204);color:rgb(34,34,34);background-repeat:initial initial">tfiala@google.com</span></a> |</td>
<td nowrap style="border-top-style:solid;border-top-color:rgb(238,178,17);border-top-width:2px"><font color="#1155cc"> <a>650-943-3180</a></font></td></tr></tbody></table><br></div>
</div>