<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Sep 1, 2011, at 1:52 PM, Filipe Cabecinhas wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Hi,<br><br><div class="gmail_quote">On Thu, Sep 1, 2011 at 12:21, Greg Clayton <span dir="ltr"><<a href="mailto:gclayton@apple.com">gclayton@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
PlatformDarwin is a base class and cant be instantiated on its own. PlatformMacOSX and PlatformRemoteiOS inherit from this base class and customize it.<br>
<div><div></div><div class="h5"><br></div></div></blockquote><div><br></div><div>Yes, but the other two platforms never assign to m_remote_platform_sp. Only PlatformDarwin::ConnectRemote() does. And this won't get called when issuing a 'platform select' + 'process connect'.</div></div></blockquote><div><br></div>Correct. "process connect" connects you to a debugserver that is already debugging, or will debug a single process. The "platform connect" connects you to a platform which can then spawn new debugserver instances and let you connect to them.</div><div><br></div><div><blockquote type="cite"><div class="gmail_quote">
<div><br><div class="gmail_quote">On Thu, Aug 25, 2011 at 15:32, Greg Clayton <span dir="ltr"><<a href="mailto:gclayton@apple.com" target="_blank">gclayton@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex; ">
<div><br>On Aug 24, 2011, at 6:11 PM, Filipe Cabecinhas wrote:<br><br>> Hi,<br>><br>> I'm trying to do remote debugging with lldb, but I keep running into problems.<br>><br>> How should I do it?<br>><br>
> I tried running "debugserver localhost:42000" and then, on the lldb client:<br>><br>> platform select (remote-macosx | remote-gdb-server?) + platform connect?<br>> platform select … + process connect?<br>
<br></div>The platform stuff is still a work in progress which we hope to really perfect over the next year. If you are doing Mac to Mac debugging the best thing to do right now is:<br><br>AFP mount the root drive on the other machine. For these examples lets suppose we have machine1 and machine2. So the flow would be:<br>
<br>- machine1: start debugserver:<br>machine1 % debugserver localhost:12345 /bin/ls<br><br>- machine2: mount the root drive from machine2 and launch lldb:<br>machine2 % ./lldb<br>(lldb) platform select remote-macosx --sysroot /Volumes/machine1<br>
(lldb) process connect <a href="connect://machine1:12345">connect://machine1:12345</a><br><br>This should do it. Currently the platforms don't do any file copying from one to the other, so you will need a copy of all executables and shared libraries to exist within the "Volumes/machine1" directory. So if you are running "/bin/ls" it should be available through your mount at: "/Volumes/machine1/bin/ls". Likewise for all shared libraries.<br>
<div><br></div></blockquote><div><br></div><div>The problem is: what can you do? In my testing I couldn't (with platform remote-macosx and sysroot=/) find out anything about the program. I could only do a process continue, and not much more. I couldn't set breakpoints, I couldn't see the source, etc. Is this simply not in place?</div>
<div><br></div><div>My problem with adding this is that AFAICT, I can't know the remote system path for the file currently being debugged, using the gdb remote protocol (if I could, the process could set the correct target when connecting to the debugserver). target create also doesn't allow me to say which program is being debugged because it wants a connected platform. target modules add will load information about the module, but not allow me to set breakpoints. Since we don't have a target, the MacOSX DYLD plugin won't get called when additional modules are loaded.</div>
<div><br></div><div>Since MacOSX is using the remote plugin for all debugging purposes it seems we only need to allow the MacOSX plugins to be used when using platform remote-macosx, as well as resolving the remote paths whenever asked. Is this right?</div>
<div><br></div><div>So, should we somehow get the path to the executable from the debugserver? Should we allow the user to do a target create … and use that file? Should 'process connect' receive an additional argument for the executable?</div>
<div><br></div><div>Regards,</div><div><br></div><div>  Filipe</div></div></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><div class="h5">
On Aug 31, 2011, at 1:05 PM, Filipe Cabecinhas wrote:<br>
<br>
> Hi,<br>
><br>
> Some more questions. When does the 'm_remote_platform_sp' member in PlatformDarwin get assigned? It seems to me that the SP's contents will always be NULL and the remote-macosx platform will never resolve an executable (in PlatformDarwin::ResolveExecutable). Shouldn't the remote part of the platform, when m_remote_platform_sp is NULL, resolve the executable using the --sysroot option?<br>

><br>
> Regards,<br>
><br>
>   Filipe<br>
><br>
><br>
><br>
> On Thu, Aug 25, 2011 at 18:25, Greg Clayton <<a href="mailto:gclayton@apple.com">gclayton@apple.com</a>> wrote:<br>
><br>
> On Aug 25, 2011, at 5:52 PM, Filipe Cabecinhas wrote:<br>
><br>
> > Is the remote-macosx platform the one to choose in order to have more information about the program? Or could I also choose the remote-gdb-server platform (which seems more generic)? Is there some code that "isn't there yet" on the remote-gdb-server?<br>

><br>
> If you are debugging a remote macosx machine, then use "remote-macosx". If it is anything else, then select "remote-gdb-server". Why? Becuase the platform for "remote-macosx" does know how to do "MacOSX" type things like how to resolve a bundle executable in case you say:<br>

><br>
> (lldb) file /Volumes/machine1/Applications/TextEdit.app<br>
><br>
> If you use the "remote-gdb-server" it won't know any of the macosx specifics.<br>
><br>
> ><br>
> > I managed to run the program with both, but where is the difference between them?<br>
><br>
> See above and go look at the functions that are available in the Platform.h file to see what the platform does different for MacOSX.<br>
><br>
><br>
> > Or is it the same because you've wired the macosx-host platform to just start a remote-gdb-server?<br>
><br>
> "remote-macosx" uses the GDB server platform since that is how we chose to implement it, though if a remote platform decided to implement all of the new LLDB platform GDB server packets, the debug session could do something totally different depending on what you attached to.<br>

><br>
> > ><br>
> > > I would suppose you need the plugins for the combinations you want to use, but with the gdb-remote stuff, I'm getting confused.<br>
> > ><br>
> > > In lldb_private::Initialize(), we initialize several plugins, depending on the operating system. I'm supposing the DynamicLoader and Process plugins (along with some others) are only needed when running as host, otherwise, we couldn't, on Linux, debug a FreeBSD or Mac OS X target (since their initialization gets ifdeffed out).<br>

> > ><br>
> ><br>
> > None of these should really be ifdefed out, they should be being compiled on all platforms, excluding any "native only" plug-ins.<br>
> ><br>
> > So, in the future, lldb.cpp will simply run all that code, except for some of the Platform (and Process?) plugins?<br>
><br>
> Only the ones that do native debugging like the linux plug-in. So now linux debugging will behave very differently if it is locally debugged, versus remotely since LLDB has a native linux plug-in that will only compile and run on linux. On MacOSX, we always use debugserver, so this decouples us from having this issue.<br>

><br>
> > I'm supposing it's most of them, since many depend on the debuggee, and not the platform where lldb is running (just the remote server).<br>
><br>
> Any plug-in that can support remote debugging should be compiled in, and should try to not include native header files that are only on the remote system.<br>
><br>
> ><br>
> > I'll check some stuff with Linux and gdbserver and may have some more questions afterwards. I managed to do some "remote" debugging with lldb, with your help, which is one step closer to what I wanted.<br>

><br>
> If you launch a GDB on linux and type:<br>
><br>
> (gdb) maintenance print raw-registers<br>
><br>
> It will give you a good idea of what registers are expected and you could make LLDB have a hard coded set of registers for "i386-pc-linux" (or whatever the linux target triple is) and then just run the native Linux GDB server. Or write a new GDB server on linux that uses the code from the ProcessLinux.cpp.<br>

><br>
> Greg<br>
><br>
><br>
<br>
</div></div></blockquote></div><br>
</blockquote></div><br></body></html>