blob: 33d39af309f97e8e10670746897e7bf9a22eb251 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- debugserver.cpp -----------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include <sys/socket.h>
11#include <sys/types.h>
12#include <errno.h>
13#include <getopt.h>
14#include <netinet/in.h>
15#include <sys/select.h>
16#include <sys/sysctl.h>
17#include <string>
18#include <vector>
19#include <asl.h>
Greg Clayton8b82f082011-04-12 05:54:46 +000020#include <arpa/inet.h>
21#include <netdb.h>
22#include <netinet/in.h>
23#include <netinet/tcp.h>
24#include <sys/un.h>
25#include <sys/types.h>
Greg Claytonce1843b2014-06-18 18:26:50 +000026#include <crt_externs.h> // for _NSGetEnviron()
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027
Jason Molenda36a216e2014-07-24 01:36:24 +000028#if defined (__APPLE__)
29#include <sched.h>
Jason Molenda3f661e02015-07-07 04:15:43 +000030extern "C" int proc_set_wakemon_params(pid_t, int, int); // <libproc_internal.h> SPI
Jason Molenda36a216e2014-07-24 01:36:24 +000031#endif
32
Chris Lattner30fdc8d2010-06-08 16:52:24 +000033#include "CFString.h"
34#include "DNB.h"
35#include "DNBLog.h"
36#include "DNBTimer.h"
37#include "PseudoTerminal.h"
38#include "RNBContext.h"
39#include "RNBServices.h"
40#include "RNBSocket.h"
41#include "RNBRemote.h"
42#include "SysSignal.h"
43
44// Global PID in case we get a signal and need to stop the process...
45nub_process_t g_pid = INVALID_NUB_PROCESS;
46
47//----------------------------------------------------------------------
48// Run loop modes which determine which run loop function will be called
49//----------------------------------------------------------------------
50typedef enum
51{
52 eRNBRunLoopModeInvalid = 0,
53 eRNBRunLoopModeGetStartModeFromRemoteProtocol,
54 eRNBRunLoopModeInferiorAttaching,
55 eRNBRunLoopModeInferiorLaunching,
56 eRNBRunLoopModeInferiorExecuting,
Greg Clayton7a5388b2011-03-20 04:57:14 +000057 eRNBRunLoopModePlatformMode,
Chris Lattner30fdc8d2010-06-08 16:52:24 +000058 eRNBRunLoopModeExit
59} RNBRunLoopMode;
60
61
62//----------------------------------------------------------------------
63// Global Variables
64//----------------------------------------------------------------------
65RNBRemoteSP g_remoteSP;
66static int g_lockdown_opt = 0;
67static int g_applist_opt = 0;
68static nub_launch_flavor_t g_launch_flavor = eLaunchFlavorDefault;
Greg Clayton6f35f5c2010-09-09 06:32:46 +000069int g_disable_aslr = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000070
71int g_isatty = 0;
Jim Ingham5689a212014-02-25 19:57:47 +000072bool g_detach_on_error = true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000073
74#define RNBLogSTDOUT(fmt, ...) do { if (g_isatty) { fprintf(stdout, fmt, ## __VA_ARGS__); } else { _DNBLog(0, fmt, ## __VA_ARGS__); } } while (0)
75#define RNBLogSTDERR(fmt, ...) do { if (g_isatty) { fprintf(stderr, fmt, ## __VA_ARGS__); } else { _DNBLog(0, fmt, ## __VA_ARGS__); } } while (0)
76
77//----------------------------------------------------------------------
Chris Lattner30fdc8d2010-06-08 16:52:24 +000078// Get our program path and arguments from the remote connection.
79// We will need to start up the remote connection without a PID, get the
80// arguments, wait for the new process to finish launching and hit its
81// entry point, and then return the run loop mode that should come next.
82//----------------------------------------------------------------------
83RNBRunLoopMode
Greg Clayton6779606a2011-01-22 23:43:18 +000084RNBRunLoopGetStartModeFromRemote (RNBRemote* remote)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000085{
86 std::string packet;
87
Greg Clayton6779606a2011-01-22 23:43:18 +000088 if (remote)
Chris Lattner30fdc8d2010-06-08 16:52:24 +000089 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000090 RNBContext& ctx = remote->Context();
Greg Clayton71337622011-02-24 22:24:29 +000091 uint32_t event_mask = RNBContext::event_read_packet_available |
92 RNBContext::event_read_thread_exiting;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000093
94 // Spin waiting to get the A packet.
95 while (1)
96 {
97 DNBLogThreadedIf (LOG_RNB_MAX, "%s ctx.Events().WaitForSetEvents( 0x%08x ) ...",__FUNCTION__, event_mask);
98 nub_event_t set_events = ctx.Events().WaitForSetEvents(event_mask);
99 DNBLogThreadedIf (LOG_RNB_MAX, "%s ctx.Events().WaitForSetEvents( 0x%08x ) => 0x%08x", __FUNCTION__, event_mask, set_events);
100
Greg Clayton71337622011-02-24 22:24:29 +0000101 if (set_events & RNBContext::event_read_thread_exiting)
102 {
Jim Inghame2ff0ba2013-02-25 19:31:37 +0000103 RNBLogSTDERR ("error: packet read thread exited.\n");
Greg Clayton71337622011-02-24 22:24:29 +0000104 return eRNBRunLoopModeExit;
105 }
106
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000107 if (set_events & RNBContext::event_read_packet_available)
108 {
109 rnb_err_t err = rnb_err;
110 RNBRemote::PacketEnum type;
111
112 err = remote->HandleReceivedPacket (&type);
113
114 // check if we tried to attach to a process
Jim Inghamcd16df92012-07-20 21:37:13 +0000115 if (type == RNBRemote::vattach || type == RNBRemote::vattachwait || type == RNBRemote::vattachorwait)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000116 {
117 if (err == rnb_success)
Jim Inghame2ff0ba2013-02-25 19:31:37 +0000118 {
119 RNBLogSTDOUT ("Attach succeeded, ready to debug.\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000120 return eRNBRunLoopModeInferiorExecuting;
Jim Inghame2ff0ba2013-02-25 19:31:37 +0000121 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000122 else
123 {
Jim Inghame2ff0ba2013-02-25 19:31:37 +0000124 RNBLogSTDERR ("error: attach failed.\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000125 return eRNBRunLoopModeExit;
126 }
127 }
128
129 if (err == rnb_success)
130 {
131 // If we got our arguments we are ready to launch using the arguments
132 // and any environment variables we received.
133 if (type == RNBRemote::set_argv)
134 {
135 return eRNBRunLoopModeInferiorLaunching;
136 }
137 }
138 else if (err == rnb_not_connected)
139 {
Jim Inghame2ff0ba2013-02-25 19:31:37 +0000140 RNBLogSTDERR ("error: connection lost.\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000141 return eRNBRunLoopModeExit;
142 }
143 else
144 {
145 // a catch all for any other gdb remote packets that failed
146 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Error getting packet.",__FUNCTION__);
147 continue;
148 }
149
150 DNBLogThreadedIf (LOG_RNB_MINIMAL, "#### %s", __FUNCTION__);
151 }
152 else
153 {
154 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Connection closed before getting \"A\" packet.", __FUNCTION__);
155 return eRNBRunLoopModeExit;
156 }
157 }
158 }
159 return eRNBRunLoopModeExit;
160}
161
162
163//----------------------------------------------------------------------
164// This run loop mode will wait for the process to launch and hit its
165// entry point. It will currently ignore all events except for the
166// process state changed event, where it watches for the process stopped
167// or crash process state.
168//----------------------------------------------------------------------
169RNBRunLoopMode
Greg Clayton6779606a2011-01-22 23:43:18 +0000170RNBRunLoopLaunchInferior (RNBRemote *remote, const char *stdin_path, const char *stdout_path, const char *stderr_path, bool no_stdio)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000171{
172 RNBContext& ctx = remote->Context();
173
174 // The Process stuff takes a c array, the RNBContext has a vector...
175 // So make up a c array.
176
177 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Launching '%s'...", __FUNCTION__, ctx.ArgumentAtIndex(0));
178
179 size_t inferior_argc = ctx.ArgumentCount();
180 // Initialize inferior_argv with inferior_argc + 1 NULLs
181 std::vector<const char *> inferior_argv(inferior_argc + 1, NULL);
182
183 size_t i;
184 for (i = 0; i < inferior_argc; i++)
185 inferior_argv[i] = ctx.ArgumentAtIndex(i);
186
187 // Pass the environment array the same way:
188
189 size_t inferior_envc = ctx.EnvironmentCount();
190 // Initialize inferior_argv with inferior_argc + 1 NULLs
191 std::vector<const char *> inferior_envp(inferior_envc + 1, NULL);
192
193 for (i = 0; i < inferior_envc; i++)
194 inferior_envp[i] = ctx.EnvironmentAtIndex(i);
195
196 // Our launch type hasn't been set to anything concrete, so we need to
197 // figure our how we are going to launch automatically.
198
199 nub_launch_flavor_t launch_flavor = g_launch_flavor;
200 if (launch_flavor == eLaunchFlavorDefault)
201 {
202 // Our default launch method is posix spawn
203 launch_flavor = eLaunchFlavorPosixSpawn;
204
Jason Molendac611a742015-10-23 02:49:51 +0000205#if defined WITH_FBS
206 // Check if we have an app bundle, if so launch using BackBoard Services.
207 if (strstr(inferior_argv[0], ".app"))
208 {
209 launch_flavor = eLaunchFlavorFBS;
210 }
211#elif defined WITH_BKS
Jason Molendaa3329782014-03-29 18:54:20 +0000212 // Check if we have an app bundle, if so launch using BackBoard Services.
213 if (strstr(inferior_argv[0], ".app"))
214 {
215 launch_flavor = eLaunchFlavorBKS;
216 }
217#elif defined WITH_SPRINGBOARD
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000218 // Check if we have an app bundle, if so launch using SpringBoard.
219 if (strstr(inferior_argv[0], ".app"))
220 {
221 launch_flavor = eLaunchFlavorSpringBoard;
222 }
223#endif
224 }
225
226 ctx.SetLaunchFlavor(launch_flavor);
227 char resolved_path[PATH_MAX];
228
229 // If we fail to resolve the path to our executable, then just use what we
230 // were given and hope for the best
231 if ( !DNBResolveExecutablePath (inferior_argv[0], resolved_path, sizeof(resolved_path)) )
232 ::strncpy(resolved_path, inferior_argv[0], sizeof(resolved_path));
233
234 char launch_err_str[PATH_MAX];
235 launch_err_str[0] = '\0';
Johnny Chen725269a2011-02-26 01:36:13 +0000236 const char * cwd = (ctx.GetWorkingDirPath() != NULL ? ctx.GetWorkingDirPath()
237 : ctx.GetWorkingDirectory());
Jason Molendaa3329782014-03-29 18:54:20 +0000238 const char *process_event = ctx.GetProcessEvent();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000239 nub_process_t pid = DNBProcessLaunch (resolved_path,
240 &inferior_argv[0],
241 &inferior_envp[0],
Johnny Chen725269a2011-02-26 01:36:13 +0000242 cwd,
Greg Clayton6779606a2011-01-22 23:43:18 +0000243 stdin_path,
244 stdout_path,
245 stderr_path,
Caroline Ticef8da8632010-12-03 18:46:09 +0000246 no_stdio,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000247 launch_flavor,
Greg Claytonf681b942010-08-31 18:35:14 +0000248 g_disable_aslr,
Jason Molendaa3329782014-03-29 18:54:20 +0000249 process_event,
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000250 launch_err_str,
251 sizeof(launch_err_str));
252
253 g_pid = pid;
254
Jason Molenda4e0c94b2011-07-08 00:00:32 +0000255 if (pid == INVALID_NUB_PROCESS && strlen (launch_err_str) > 0)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000256 {
Greg Clayton3382c2c2010-07-30 23:14:42 +0000257 DNBLogThreaded ("%s DNBProcessLaunch() returned error: '%s'", __FUNCTION__, launch_err_str);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000258 ctx.LaunchStatus().SetError(-1, DNBError::Generic);
259 ctx.LaunchStatus().SetErrorString(launch_err_str);
260 }
Jason Molenda4e0c94b2011-07-08 00:00:32 +0000261 else if (pid == INVALID_NUB_PROCESS)
262 {
263 DNBLogThreaded ("%s DNBProcessLaunch() failed to launch process, unknown failure", __FUNCTION__);
264 ctx.LaunchStatus().SetError(-1, DNBError::Generic);
Jim Inghamcfae0b22015-03-04 21:28:55 +0000265 ctx.LaunchStatus().SetErrorString("<unknown failure>");
Jason Molenda4e0c94b2011-07-08 00:00:32 +0000266 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000267 else
Greg Clayton71337622011-02-24 22:24:29 +0000268 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000269 ctx.LaunchStatus().Clear();
Greg Clayton71337622011-02-24 22:24:29 +0000270 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000271
272 if (remote->Comm().IsConnected())
273 {
274 // It we are connected already, the next thing gdb will do is ask
275 // whether the launch succeeded, and if not, whether there is an
276 // error code. So we need to fetch one packet from gdb before we wait
277 // on the stop from the target.
278
279 uint32_t event_mask = RNBContext::event_read_packet_available;
280 nub_event_t set_events = ctx.Events().WaitForSetEvents(event_mask);
281
282 if (set_events & RNBContext::event_read_packet_available)
283 {
284 rnb_err_t err = rnb_err;
285 RNBRemote::PacketEnum type;
286
287 err = remote->HandleReceivedPacket (&type);
288
289 if (err != rnb_success)
290 {
291 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Error getting packet.", __FUNCTION__);
292 return eRNBRunLoopModeExit;
293 }
294 if (type != RNBRemote::query_launch_success)
295 {
296 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Didn't get the expected qLaunchSuccess packet.", __FUNCTION__);
297 }
298 }
299 }
300
301 while (pid != INVALID_NUB_PROCESS)
302 {
303 // Wait for process to start up and hit entry point
304 DNBLogThreadedIf (LOG_RNB_EVENTS, "%s DNBProcessWaitForEvent (%4.4x, eEventProcessRunningStateChanged | eEventProcessStoppedStateChanged, true, INFINITE)...", __FUNCTION__, pid);
305 nub_event_t set_events = DNBProcessWaitForEvents (pid, eEventProcessRunningStateChanged | eEventProcessStoppedStateChanged, true, NULL);
306 DNBLogThreadedIf (LOG_RNB_EVENTS, "%s DNBProcessWaitForEvent (%4.4x, eEventProcessRunningStateChanged | eEventProcessStoppedStateChanged, true, INFINITE) => 0x%8.8x", __FUNCTION__, pid, set_events);
307
308 if (set_events == 0)
309 {
310 pid = INVALID_NUB_PROCESS;
311 g_pid = pid;
312 }
313 else
314 {
315 if (set_events & (eEventProcessRunningStateChanged | eEventProcessStoppedStateChanged))
316 {
317 nub_state_t pid_state = DNBProcessGetState (pid);
318 DNBLogThreadedIf (LOG_RNB_EVENTS, "%s process %4.4x state changed (eEventProcessStateChanged): %s", __FUNCTION__, pid, DNBStateAsString(pid_state));
319
320 switch (pid_state)
321 {
322 default:
323 case eStateInvalid:
324 case eStateUnloaded:
325 case eStateAttaching:
326 case eStateLaunching:
327 case eStateSuspended:
328 break; // Ignore
329
330 case eStateRunning:
331 case eStateStepping:
332 // Still waiting to stop at entry point...
333 break;
334
335 case eStateStopped:
336 case eStateCrashed:
337 ctx.SetProcessID(pid);
338 return eRNBRunLoopModeInferiorExecuting;
339
340 case eStateDetached:
341 case eStateExited:
342 pid = INVALID_NUB_PROCESS;
343 g_pid = pid;
344 return eRNBRunLoopModeExit;
345 }
346 }
347
348 DNBProcessResetEvents(pid, set_events);
349 }
350 }
351
352 return eRNBRunLoopModeExit;
353}
354
355
356//----------------------------------------------------------------------
357// This run loop mode will wait for the process to launch and hit its
358// entry point. It will currently ignore all events except for the
359// process state changed event, where it watches for the process stopped
360// or crash process state.
361//----------------------------------------------------------------------
362RNBRunLoopMode
Greg Clayton6779606a2011-01-22 23:43:18 +0000363RNBRunLoopLaunchAttaching (RNBRemote *remote, nub_process_t attach_pid, nub_process_t& pid)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000364{
365 RNBContext& ctx = remote->Context();
366
367 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Attaching to pid %i...", __FUNCTION__, attach_pid);
368 char err_str[1024];
369 pid = DNBProcessAttach (attach_pid, NULL, err_str, sizeof(err_str));
370 g_pid = pid;
371
372 if (pid == INVALID_NUB_PROCESS)
373 {
374 ctx.LaunchStatus().SetError(-1, DNBError::Generic);
375 if (err_str[0])
376 ctx.LaunchStatus().SetErrorString(err_str);
377 return eRNBRunLoopModeExit;
378 }
379 else
380 {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000381 ctx.SetProcessID(pid);
382 return eRNBRunLoopModeInferiorExecuting;
383 }
384}
385
386//----------------------------------------------------------------------
387// Watch for signals:
388// SIGINT: so we can halt our inferior. (disabled for now)
389// SIGPIPE: in case our child process dies
390//----------------------------------------------------------------------
391int g_sigint_received = 0;
392int g_sigpipe_received = 0;
393void
394signal_handler(int signo)
395{
396 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s (%s)", __FUNCTION__, SysSignal::Name(signo));
397
398 switch (signo)
399 {
400 case SIGINT:
401 g_sigint_received++;
402 if (g_pid != INVALID_NUB_PROCESS)
403 {
404 // Only send a SIGINT once...
405 if (g_sigint_received == 1)
406 {
407 switch (DNBProcessGetState (g_pid))
408 {
409 case eStateRunning:
410 case eStateStepping:
411 DNBProcessSignal (g_pid, SIGSTOP);
412 return;
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000413 default:
414 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000415 }
416 }
417 }
418 exit (SIGINT);
419 break;
420
421 case SIGPIPE:
422 g_sigpipe_received = 1;
423 break;
424 }
425}
426
427// Return the new run loop mode based off of the current process state
428RNBRunLoopMode
Greg Clayton6779606a2011-01-22 23:43:18 +0000429HandleProcessStateChange (RNBRemote *remote, bool initialize)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000430{
431 RNBContext& ctx = remote->Context();
432 nub_process_t pid = ctx.ProcessID();
433
434 if (pid == INVALID_NUB_PROCESS)
435 {
436 DNBLogThreadedIf (LOG_RNB_MINIMAL, "#### %s error: pid invalid, exiting...", __FUNCTION__);
437 return eRNBRunLoopModeExit;
438 }
439 nub_state_t pid_state = DNBProcessGetState (pid);
440
441 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s (&remote, initialize=%i) pid_state = %s", __FUNCTION__, (int)initialize, DNBStateAsString (pid_state));
442
443 switch (pid_state)
444 {
445 case eStateInvalid:
446 case eStateUnloaded:
447 // Something bad happened
448 return eRNBRunLoopModeExit;
449 break;
450
451 case eStateAttaching:
452 case eStateLaunching:
453 return eRNBRunLoopModeInferiorExecuting;
454
455 case eStateSuspended:
456 case eStateCrashed:
457 case eStateStopped:
458 // If we stop due to a signal, so clear the fact that we got a SIGINT
459 // so we can stop ourselves again (but only while our inferior
460 // process is running..)
461 g_sigint_received = 0;
462 if (initialize == false)
463 {
464 // Compare the last stop count to our current notion of a stop count
465 // to make sure we don't notify more than once for a given stop.
466 nub_size_t prev_pid_stop_count = ctx.GetProcessStopCount();
467 bool pid_stop_count_changed = ctx.SetProcessStopCount(DNBProcessGetStopCount(pid));
468 if (pid_stop_count_changed)
469 {
470 remote->FlushSTDIO();
471
472 if (ctx.GetProcessStopCount() == 1)
473 {
Greg Clayton43e0af02012-09-18 18:04:04 +0000474 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s (&remote, initialize=%i) pid_state = %s pid_stop_count %llu (old %llu)) Notify??? no, first stop...", __FUNCTION__, (int)initialize, DNBStateAsString (pid_state), (uint64_t)ctx.GetProcessStopCount(), (uint64_t)prev_pid_stop_count);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000475 }
476 else
477 {
478
Greg Clayton43e0af02012-09-18 18:04:04 +0000479 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s (&remote, initialize=%i) pid_state = %s pid_stop_count %llu (old %llu)) Notify??? YES!!!", __FUNCTION__, (int)initialize, DNBStateAsString (pid_state), (uint64_t)ctx.GetProcessStopCount(), (uint64_t)prev_pid_stop_count);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000480 remote->NotifyThatProcessStopped ();
481 }
482 }
483 else
484 {
Greg Clayton43e0af02012-09-18 18:04:04 +0000485 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s (&remote, initialize=%i) pid_state = %s pid_stop_count %llu (old %llu)) Notify??? skipping...", __FUNCTION__, (int)initialize, DNBStateAsString (pid_state), (uint64_t)ctx.GetProcessStopCount(), (uint64_t)prev_pid_stop_count);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000486 }
487 }
488 return eRNBRunLoopModeInferiorExecuting;
489
490 case eStateStepping:
491 case eStateRunning:
492 return eRNBRunLoopModeInferiorExecuting;
493
494 case eStateExited:
495 remote->HandlePacket_last_signal(NULL);
Greg Clayton95bf0fd2011-04-01 00:29:43 +0000496 case eStateDetached:
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000497 return eRNBRunLoopModeExit;
498
499 }
500
501 // Catch all...
502 return eRNBRunLoopModeExit;
503}
504// This function handles the case where our inferior program is stopped and
505// we are waiting for gdb remote protocol packets. When a packet occurs that
506// makes the inferior run, we need to leave this function with a new state
507// as the return code.
508RNBRunLoopMode
Greg Clayton6779606a2011-01-22 23:43:18 +0000509RNBRunLoopInferiorExecuting (RNBRemote *remote)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000510{
511 DNBLogThreadedIf (LOG_RNB_MINIMAL, "#### %s", __FUNCTION__);
512 RNBContext& ctx = remote->Context();
513
514 // Init our mode and set 'is_running' based on the current process state
515 RNBRunLoopMode mode = HandleProcessStateChange (remote, true);
516
517 while (ctx.ProcessID() != INVALID_NUB_PROCESS)
518 {
519
520 std::string set_events_str;
521 uint32_t event_mask = ctx.NormalEventBits();
522
523 if (!ctx.ProcessStateRunning())
524 {
Han Ming Ongab3b8b22012-11-17 00:21:04 +0000525 // Clear some bits if we are not running so we don't send any async packets
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000526 event_mask &= ~RNBContext::event_proc_stdio_available;
Han Ming Ongab3b8b22012-11-17 00:21:04 +0000527 event_mask &= ~RNBContext::event_proc_profile_data;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000528 }
529
530 // We want to make sure we consume all process state changes and have
531 // whomever is notifying us to wait for us to reset the event bit before
532 // continuing.
533 //ctx.Events().SetResetAckMask (RNBContext::event_proc_state_changed);
534
535 DNBLogThreadedIf (LOG_RNB_EVENTS, "%s ctx.Events().WaitForSetEvents(0x%08x) ...",__FUNCTION__, event_mask);
536 nub_event_t set_events = ctx.Events().WaitForSetEvents(event_mask);
537 DNBLogThreadedIf (LOG_RNB_EVENTS, "%s ctx.Events().WaitForSetEvents(0x%08x) => 0x%08x (%s)",__FUNCTION__, event_mask, set_events, ctx.EventsAsString(set_events, set_events_str));
538
539 if (set_events)
540 {
541 if ((set_events & RNBContext::event_proc_thread_exiting) ||
542 (set_events & RNBContext::event_proc_stdio_available))
543 {
544 remote->FlushSTDIO();
545 }
546
Han Ming Ongab3b8b22012-11-17 00:21:04 +0000547 if (set_events & RNBContext::event_proc_profile_data)
548 {
549 remote->SendAsyncProfileData();
550 }
551
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000552 if (set_events & RNBContext::event_read_packet_available)
553 {
554 // handleReceivedPacket will take care of resetting the
555 // event_read_packet_available events when there are no more...
556 set_events ^= RNBContext::event_read_packet_available;
557
558 if (ctx.ProcessStateRunning())
559 {
560 if (remote->HandleAsyncPacket() == rnb_not_connected)
561 {
562 // TODO: connect again? Exit?
563 }
564 }
565 else
566 {
567 if (remote->HandleReceivedPacket() == rnb_not_connected)
568 {
569 // TODO: connect again? Exit?
570 }
571 }
572 }
573
574 if (set_events & RNBContext::event_proc_state_changed)
575 {
576 mode = HandleProcessStateChange (remote, false);
577 ctx.Events().ResetEvents(RNBContext::event_proc_state_changed);
578 set_events ^= RNBContext::event_proc_state_changed;
579 }
580
581 if (set_events & RNBContext::event_proc_thread_exiting)
582 {
583 mode = eRNBRunLoopModeExit;
584 }
585
586 if (set_events & RNBContext::event_read_thread_exiting)
587 {
588 // Out remote packet receiving thread exited, exit for now.
589 if (ctx.HasValidProcessID())
590 {
591 // TODO: We should add code that will leave the current process
592 // in its current state and listen for another connection...
593 if (ctx.ProcessStateRunning())
594 {
Jim Ingham58813182014-02-25 04:53:13 +0000595 if (ctx.GetDetachOnError())
596 {
597 DNBLog ("debugserver's event read thread is exiting, detaching from the inferior process.");
598 DNBProcessDetach (ctx.ProcessID());
599 }
600 else
601 {
602 DNBLog ("debugserver's event read thread is exiting, killing the inferior process.");
603 DNBProcessKill (ctx.ProcessID());
604 }
605 }
606 else
607 {
608 if (ctx.GetDetachOnError())
609 {
610 DNBLog ("debugserver's event read thread is exiting, detaching from the inferior process.");
611 DNBProcessDetach (ctx.ProcessID());
612 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000613 }
614 }
615 mode = eRNBRunLoopModeExit;
616 }
617 }
618
619 // Reset all event bits that weren't reset for now...
620 if (set_events != 0)
621 ctx.Events().ResetEvents(set_events);
622
623 if (mode != eRNBRunLoopModeInferiorExecuting)
624 break;
625 }
626
627 return mode;
628}
629
630
Greg Clayton7a5388b2011-03-20 04:57:14 +0000631RNBRunLoopMode
632RNBRunLoopPlatform (RNBRemote *remote)
633{
634 RNBRunLoopMode mode = eRNBRunLoopModePlatformMode;
635 RNBContext& ctx = remote->Context();
636
637 while (mode == eRNBRunLoopModePlatformMode)
638 {
639 std::string set_events_str;
640 const uint32_t event_mask = RNBContext::event_read_packet_available |
641 RNBContext::event_read_thread_exiting;
642
643 DNBLogThreadedIf (LOG_RNB_EVENTS, "%s ctx.Events().WaitForSetEvents(0x%08x) ...",__FUNCTION__, event_mask);
644 nub_event_t set_events = ctx.Events().WaitForSetEvents(event_mask);
645 DNBLogThreadedIf (LOG_RNB_EVENTS, "%s ctx.Events().WaitForSetEvents(0x%08x) => 0x%08x (%s)",__FUNCTION__, event_mask, set_events, ctx.EventsAsString(set_events, set_events_str));
646
647 if (set_events)
648 {
649 if (set_events & RNBContext::event_read_packet_available)
650 {
651 if (remote->HandleReceivedPacket() == rnb_not_connected)
652 mode = eRNBRunLoopModeExit;
653 }
654
655 if (set_events & RNBContext::event_read_thread_exiting)
656 {
657 mode = eRNBRunLoopModeExit;
658 }
659 ctx.Events().ResetEvents(set_events);
660 }
661 }
662 return eRNBRunLoopModeExit;
663}
664
Greg Claytonc93068b2013-12-10 19:36:45 +0000665//----------------------------------------------------------------------
666// Convenience function to set up the remote listening port
667// Returns 1 for success 0 for failure.
668//----------------------------------------------------------------------
669
670static void
671PortWasBoundCallbackUnixSocket (const void *baton, in_port_t port)
672{
673 //::printf ("PortWasBoundCallbackUnixSocket (baton = %p, port = %u)\n", baton, port);
674
675 const char *unix_socket_name = (const char *)baton;
676
677 if (unix_socket_name && unix_socket_name[0])
678 {
679 // We were given a unix socket name to use to communicate the port
680 // that we ended up binding to back to our parent process
681 struct sockaddr_un saddr_un;
682 int s = ::socket (AF_UNIX, SOCK_STREAM, 0);
683 if (s < 0)
684 {
685 perror("error: socket (AF_UNIX, SOCK_STREAM, 0)");
686 exit(1);
687 }
688
689 saddr_un.sun_family = AF_UNIX;
690 ::strncpy(saddr_un.sun_path, unix_socket_name, sizeof(saddr_un.sun_path) - 1);
691 saddr_un.sun_path[sizeof(saddr_un.sun_path) - 1] = '\0';
692 saddr_un.sun_len = SUN_LEN (&saddr_un);
693
Greg Claytonee2ed522015-03-09 19:45:23 +0000694 if (::connect (s, (struct sockaddr *)&saddr_un, static_cast<socklen_t>(SUN_LEN (&saddr_un))) < 0)
Greg Claytonc93068b2013-12-10 19:36:45 +0000695 {
696 perror("error: connect (socket, &saddr_un, saddr_un_len)");
697 exit(1);
698 }
699
700 //::printf ("connect () sucess!!\n");
701
702
703 // We were able to connect to the socket, now write our PID so whomever
704 // launched us will know this process's ID
705 RNBLogSTDOUT ("Listening to port %i...\n", port);
706
707 char pid_str[64];
708 const int pid_str_len = ::snprintf (pid_str, sizeof(pid_str), "%u", port);
Greg Claytonee2ed522015-03-09 19:45:23 +0000709 const ssize_t bytes_sent = ::send (s, pid_str, pid_str_len, 0);
Greg Claytonc93068b2013-12-10 19:36:45 +0000710
711 if (pid_str_len != bytes_sent)
712 {
713 perror("error: send (s, pid_str, pid_str_len, 0)");
714 exit (1);
715 }
716
717 //::printf ("send () sucess!!\n");
718
719 // We are done with the socket
720 close (s);
721 }
722}
723
Greg Clayton8b82f082011-04-12 05:54:46 +0000724static void
Greg Claytond6299802013-12-06 17:46:35 +0000725PortWasBoundCallbackNamedPipe (const void *baton, uint16_t port)
Greg Clayton8b82f082011-04-12 05:54:46 +0000726{
Greg Clayton91a9b2472013-12-04 19:19:12 +0000727 const char *named_pipe = (const char *)baton;
728 if (named_pipe && named_pipe[0])
Greg Clayton8b82f082011-04-12 05:54:46 +0000729 {
Greg Clayton91a9b2472013-12-04 19:19:12 +0000730 int fd = ::open(named_pipe, O_WRONLY);
731 if (fd > -1)
Greg Clayton8b82f082011-04-12 05:54:46 +0000732 {
Greg Clayton91a9b2472013-12-04 19:19:12 +0000733 char port_str[64];
734 const ssize_t port_str_len = ::snprintf (port_str, sizeof(port_str), "%u", port);
735 // Write the port number as a C string with the NULL terminator
736 ::write (fd, port_str, port_str_len + 1);
737 close (fd);
Greg Clayton8b82f082011-04-12 05:54:46 +0000738 }
Greg Clayton8b82f082011-04-12 05:54:46 +0000739 }
740}
741
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000742static int
Greg Claytonc93068b2013-12-10 19:36:45 +0000743ConnectRemote (RNBRemote *remote,
744 const char *host,
745 int port,
746 bool reverse_connect,
747 const char *named_pipe_path,
748 const char *unix_socket_name)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000749{
Greg Clayton6779606a2011-01-22 23:43:18 +0000750 if (!remote->Comm().IsConnected())
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000751 {
Greg Clayton00fe87b2013-12-05 22:58:22 +0000752 if (reverse_connect)
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000753 {
Greg Clayton00fe87b2013-12-05 22:58:22 +0000754 if (port == 0)
755 {
756 DNBLogThreaded("error: invalid port supplied for reverse connection: %i.\n", port);
757 return 0;
758 }
759 if (remote->Comm().Connect(host, port) != rnb_success)
760 {
761 DNBLogThreaded("Failed to reverse connect to %s:%i.\n", host, port);
762 return 0;
763 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000764 }
765 else
766 {
Greg Clayton00fe87b2013-12-05 22:58:22 +0000767 if (port != 0)
Greg Clayton16810922014-02-27 19:38:18 +0000768 RNBLogSTDOUT ("Listening to port %i for a connection from %s...\n", port, host ? host : "127.0.0.1");
Greg Claytonc93068b2013-12-10 19:36:45 +0000769 if (unix_socket_name && unix_socket_name[0])
Greg Clayton00fe87b2013-12-05 22:58:22 +0000770 {
Greg Claytonc93068b2013-12-10 19:36:45 +0000771 if (remote->Comm().Listen(host, port, PortWasBoundCallbackUnixSocket, unix_socket_name) != rnb_success)
772 {
773 RNBLogSTDERR ("Failed to get connection from a remote gdb process.\n");
774 return 0;
775 }
776 }
777 else
778 {
779 if (remote->Comm().Listen(host, port, PortWasBoundCallbackNamedPipe, named_pipe_path) != rnb_success)
780 {
781 RNBLogSTDERR ("Failed to get connection from a remote gdb process.\n");
782 return 0;
783 }
Greg Clayton00fe87b2013-12-05 22:58:22 +0000784 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000785 }
Greg Clayton00fe87b2013-12-05 22:58:22 +0000786 remote->StartReadRemoteDataThread();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000787 }
788 return 1;
789}
790
791//----------------------------------------------------------------------
792// ASL Logging callback that can be registered with DNBLogSetLogCallback
793//----------------------------------------------------------------------
794void
795ASLLogCallback(void *baton, uint32_t flags, const char *format, va_list args)
796{
797 if (format == NULL)
798 return;
799 static aslmsg g_aslmsg = NULL;
800 if (g_aslmsg == NULL)
801 {
802 g_aslmsg = ::asl_new (ASL_TYPE_MSG);
803 char asl_key_sender[PATH_MAX];
Todd Fialac3ec3372014-03-13 18:30:04 +0000804 snprintf(asl_key_sender, sizeof(asl_key_sender), "com.apple.%s-%s", DEBUGSERVER_PROGRAM_NAME, DEBUGSERVER_VERSION_STR);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000805 ::asl_set (g_aslmsg, ASL_KEY_SENDER, asl_key_sender);
806 }
807
808 int asl_level;
809 if (flags & DNBLOG_FLAG_FATAL) asl_level = ASL_LEVEL_CRIT;
810 else if (flags & DNBLOG_FLAG_ERROR) asl_level = ASL_LEVEL_ERR;
811 else if (flags & DNBLOG_FLAG_WARNING) asl_level = ASL_LEVEL_WARNING;
812 else if (flags & DNBLOG_FLAG_VERBOSE) asl_level = ASL_LEVEL_WARNING; //ASL_LEVEL_INFO;
813 else asl_level = ASL_LEVEL_WARNING; //ASL_LEVEL_DEBUG;
814
815 ::asl_vlog (NULL, g_aslmsg, asl_level, format, args);
816}
817
818//----------------------------------------------------------------------
819// FILE based Logging callback that can be registered with
820// DNBLogSetLogCallback
821//----------------------------------------------------------------------
822void
823FileLogCallback(void *baton, uint32_t flags, const char *format, va_list args)
824{
825 if (baton == NULL || format == NULL)
826 return;
827
828 ::vfprintf ((FILE *)baton, format, args);
829 ::fprintf ((FILE *)baton, "\n");
830}
831
832
833void
834show_usage_and_exit (int exit_code)
835{
836 RNBLogSTDERR ("Usage:\n %s host:port [program-name program-arg1 program-arg2 ...]\n", DEBUGSERVER_PROGRAM_NAME);
837 RNBLogSTDERR (" %s /path/file [program-name program-arg1 program-arg2 ...]\n", DEBUGSERVER_PROGRAM_NAME);
838 RNBLogSTDERR (" %s host:port --attach=<pid>\n", DEBUGSERVER_PROGRAM_NAME);
839 RNBLogSTDERR (" %s /path/file --attach=<pid>\n", DEBUGSERVER_PROGRAM_NAME);
840 RNBLogSTDERR (" %s host:port --attach=<process_name>\n", DEBUGSERVER_PROGRAM_NAME);
841 RNBLogSTDERR (" %s /path/file --attach=<process_name>\n", DEBUGSERVER_PROGRAM_NAME);
842 exit (exit_code);
843}
844
845
846//----------------------------------------------------------------------
Greg Claytonb7ad58a2013-04-04 20:35:24 +0000847// option descriptors for getopt_long_only()
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000848//----------------------------------------------------------------------
849static struct option g_long_options[] =
850{
851 { "attach", required_argument, NULL, 'a' },
Greg Clayton3af9ea52010-11-18 05:57:03 +0000852 { "arch", required_argument, NULL, 'A' },
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000853 { "debug", no_argument, NULL, 'g' },
Jim Ingham5689a212014-02-25 19:57:47 +0000854 { "kill-on-error", no_argument, NULL, 'K' },
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000855 { "verbose", no_argument, NULL, 'v' },
856 { "lockdown", no_argument, &g_lockdown_opt, 1 }, // short option "-k"
857 { "applist", no_argument, &g_applist_opt, 1 }, // short option "-t"
858 { "log-file", required_argument, NULL, 'l' },
859 { "log-flags", required_argument, NULL, 'f' },
860 { "launch", required_argument, NULL, 'x' }, // Valid values are "auto", "posix-spawn", "fork-exec", "springboard" (arm only)
861 { "waitfor", required_argument, NULL, 'w' }, // Wait for a process whose name starts with ARG
862 { "waitfor-interval", required_argument, NULL, 'i' }, // Time in usecs to wait between sampling the pid list when waiting for a process by name
863 { "waitfor-duration", required_argument, NULL, 'd' }, // The time in seconds to wait for a process to show up by name
864 { "native-regs", no_argument, NULL, 'r' }, // Specify to use the native registers instead of the gdb defaults for the architecture.
Greg Claytonbd82a5d2011-01-23 05:56:20 +0000865 { "stdio-path", required_argument, NULL, 's' }, // Set the STDIO path to be used when launching applications (STDIN, STDOUT and STDERR) (only if debugserver launches the process)
866 { "stdin-path", required_argument, NULL, 'I' }, // Set the STDIN path to be used when launching applications (only if debugserver launches the process)
Johnny Chena3435452011-01-25 16:56:01 +0000867 { "stdout-path", required_argument, NULL, 'O' }, // Set the STDOUT path to be used when launching applications (only if debugserver launches the process)
868 { "stderr-path", required_argument, NULL, 'E' }, // Set the STDERR path to be used when launching applications (only if debugserver launches the process)
Greg Claytonbd82a5d2011-01-23 05:56:20 +0000869 { "no-stdio", no_argument, NULL, 'n' }, // Do not set up any stdio (perhaps the program is a GUI program) (only if debugserver launches the process)
870 { "setsid", no_argument, NULL, 'S' }, // call setsid() to make debugserver run in its own session
Greg Claytonf681b942010-08-31 18:35:14 +0000871 { "disable-aslr", no_argument, NULL, 'D' }, // Use _POSIX_SPAWN_DISABLE_ASLR to avoid shared library randomization
Greg Claytonbd82a5d2011-01-23 05:56:20 +0000872 { "working-dir", required_argument, NULL, 'W' }, // The working directory that the inferior process should have (only if debugserver launches the process)
Greg Clayton7a5388b2011-03-20 04:57:14 +0000873 { "platform", required_argument, NULL, 'p' }, // Put this executable into a remote platform mode
Greg Claytonc93068b2013-12-10 19:36:45 +0000874 { "unix-socket", required_argument, NULL, 'u' }, // If we need to handshake with our parent process, an option will be passed down that specifies a unix socket name to use
Greg Clayton91a9b2472013-12-04 19:19:12 +0000875 { "named-pipe", required_argument, NULL, 'P' },
Greg Clayton00fe87b2013-12-05 22:58:22 +0000876 { "reverse-connect", no_argument, NULL, 'R' },
Greg Claytonce1843b2014-06-18 18:26:50 +0000877 { "env", required_argument, NULL, 'e' }, // When debugserver launches the process, set a single environment entry as specified by the option value ("./debugserver -e FOO=1 -e BAR=2 localhost:1234 -- /bin/ls")
878 { "forward-env", no_argument, NULL, 'F' }, // When debugserver launches the process, forward debugserver's current environment variables to the child process ("./debugserver -F localhost:1234 -- /bin/ls"
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000879 { NULL, 0, NULL, 0 }
880};
881
882
883//----------------------------------------------------------------------
884// main
885//----------------------------------------------------------------------
886int
887main (int argc, char *argv[])
888{
Jason Molenda0b2dbe02012-11-01 02:02:59 +0000889 const char *argv_sub_zero = argv[0]; // save a copy of argv[0] for error reporting post-launch
890
Jason Molenda36a216e2014-07-24 01:36:24 +0000891#if defined (__APPLE__)
892 pthread_setname_np ("main thread");
893#if defined (__arm__) || defined (__arm64__) || defined (__aarch64__)
894 struct sched_param thread_param;
895 int thread_sched_policy;
896 if (pthread_getschedparam(pthread_self(), &thread_sched_policy, &thread_param) == 0)
897 {
898 thread_param.sched_priority = 47;
899 pthread_setschedparam(pthread_self(), thread_sched_policy, &thread_param);
900 }
Jason Molenda3f661e02015-07-07 04:15:43 +0000901
902 ::proc_set_wakemon_params (getpid(), 500, 0); // Allow up to 500 wakeups/sec to avoid EXC_RESOURCE for normal use.
Jason Molenda36a216e2014-07-24 01:36:24 +0000903#endif
904#endif
905
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000906 g_isatty = ::isatty (STDIN_FILENO);
907
908 // ::printf ("uid=%u euid=%u gid=%u egid=%u\n",
909 // getuid(),
910 // geteuid(),
911 // getgid(),
912 // getegid());
913
914
915 // signal (SIGINT, signal_handler);
916 signal (SIGPIPE, signal_handler);
Greg Clayton3382c2c2010-07-30 23:14:42 +0000917 signal (SIGHUP, signal_handler);
Jason Molendaa3329782014-03-29 18:54:20 +0000918
919 // We're always sitting in waitpid or kevent waiting on our target process' death,
920 // we don't need no stinking SIGCHLD's...
921
922 sigset_t sigset;
923 sigemptyset(&sigset);
924 sigaddset(&sigset, SIGCHLD);
925 sigprocmask(SIG_BLOCK, &sigset, NULL);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000926
Greg Clayton71337622011-02-24 22:24:29 +0000927 g_remoteSP.reset (new RNBRemote ());
928
929
930 RNBRemote *remote = g_remoteSP.get();
931 if (remote == NULL)
932 {
933 RNBLogSTDERR ("error: failed to create a remote connection class\n");
934 return -1;
935 }
936
937 RNBContext& ctx = remote->Context();
938
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000939 int i;
940 int attach_pid = INVALID_NUB_PROCESS;
941
942 FILE* log_file = NULL;
943 uint32_t log_flags = 0;
944 // Parse our options
945 int ch;
946 int long_option_index = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000947 int debug = 0;
948 std::string compile_options;
949 std::string waitfor_pid_name; // Wait for a process that starts with this name
950 std::string attach_pid_name;
Greg Clayton3af9ea52010-11-18 05:57:03 +0000951 std::string arch_name;
Greg Clayton8b82f082011-04-12 05:54:46 +0000952 std::string working_dir; // The new working directory to use for the inferior
Greg Claytonc93068b2013-12-10 19:36:45 +0000953 std::string unix_socket_name; // If we need to handshake with our parent process, an option will be passed down that specifies a unix socket name to use
Greg Clayton91a9b2472013-12-04 19:19:12 +0000954 std::string named_pipe_path; // If we need to handshake with our parent process, an option will be passed down that specifies a named pipe to use
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000955 useconds_t waitfor_interval = 1000; // Time in usecs between process lists polls when waiting for a process by name, default 1 msec.
956 useconds_t waitfor_duration = 0; // Time in seconds to wait for a process by name, 0 means wait forever.
Caroline Ticef8da8632010-12-03 18:46:09 +0000957 bool no_stdio = false;
Greg Clayton00fe87b2013-12-05 22:58:22 +0000958 bool reverse_connect = false; // Set to true by an option to indicate we should reverse connect to the host:port supplied as the first debugserver argument
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000959
960#if !defined (DNBLOG_ENABLED)
961 compile_options += "(no-logging) ";
962#endif
963
964 RNBRunLoopMode start_mode = eRNBRunLoopModeExit;
965
Greg Clayton8d400e172011-05-23 18:04:09 +0000966 char short_options[512];
967 uint32_t short_options_idx = 0;
968
969 // Handle the two case that don't have short options in g_long_options
970 short_options[short_options_idx++] = 'k';
971 short_options[short_options_idx++] = 't';
972
973 for (i=0; g_long_options[i].name != NULL; ++i)
974 {
975 if (isalpha(g_long_options[i].val))
976 {
977 short_options[short_options_idx++] = g_long_options[i].val;
978 switch (g_long_options[i].has_arg)
979 {
980 default:
981 case no_argument:
982 break;
983
984 case optional_argument:
985 short_options[short_options_idx++] = ':';
986 // Fall through to required_argument case below...
987 case required_argument:
988 short_options[short_options_idx++] = ':';
989 break;
990 }
991 }
992 }
993 // NULL terminate the short option string.
994 short_options[short_options_idx++] = '\0';
Greg Claytond4724cf2013-11-22 18:55:04 +0000995
996#if __GLIBC__
997 optind = 0;
998#else
999 optreset = 1;
1000 optind = 1;
1001#endif
1002
Greg Claytonb7ad58a2013-04-04 20:35:24 +00001003 while ((ch = getopt_long_only(argc, argv, short_options, g_long_options, &long_option_index)) != -1)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001004 {
1005 DNBLogDebug("option: ch == %c (0x%2.2x) --%s%c%s\n",
1006 ch, (uint8_t)ch,
1007 g_long_options[long_option_index].name,
1008 g_long_options[long_option_index].has_arg ? '=' : ' ',
1009 optarg ? optarg : "");
1010 switch (ch)
1011 {
1012 case 0: // Any optional that auto set themselves will return 0
1013 break;
1014
Greg Clayton3af9ea52010-11-18 05:57:03 +00001015 case 'A':
1016 if (optarg && optarg[0])
1017 arch_name.assign(optarg);
1018 break;
1019
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001020 case 'a':
1021 if (optarg && optarg[0])
1022 {
1023 if (isdigit(optarg[0]))
1024 {
1025 char *end = NULL;
Greg Claytonee2ed522015-03-09 19:45:23 +00001026 attach_pid = static_cast<int>(strtoul(optarg, &end, 0));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001027 if (end == NULL || *end != '\0')
1028 {
1029 RNBLogSTDERR ("error: invalid pid option '%s'\n", optarg);
1030 exit (4);
1031 }
1032 }
1033 else
1034 {
1035 attach_pid_name = optarg;
1036 }
1037 start_mode = eRNBRunLoopModeInferiorAttaching;
1038 }
1039 break;
1040
1041 // --waitfor=NAME
1042 case 'w':
1043 if (optarg && optarg[0])
1044 {
1045 waitfor_pid_name = optarg;
1046 start_mode = eRNBRunLoopModeInferiorAttaching;
1047 }
1048 break;
1049
1050 // --waitfor-interval=USEC
1051 case 'i':
1052 if (optarg && optarg[0])
1053 {
1054 char *end = NULL;
Greg Claytonee2ed522015-03-09 19:45:23 +00001055 waitfor_interval = static_cast<useconds_t>(strtoul(optarg, &end, 0));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001056 if (end == NULL || *end != '\0')
1057 {
1058 RNBLogSTDERR ("error: invalid waitfor-interval option value '%s'.\n", optarg);
1059 exit (6);
1060 }
1061 }
1062 break;
1063
1064 // --waitfor-duration=SEC
1065 case 'd':
1066 if (optarg && optarg[0])
1067 {
1068 char *end = NULL;
Greg Claytonee2ed522015-03-09 19:45:23 +00001069 waitfor_duration = static_cast<useconds_t>(strtoul(optarg, &end, 0));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001070 if (end == NULL || *end != '\0')
1071 {
1072 RNBLogSTDERR ("error: invalid waitfor-duration option value '%s'.\n", optarg);
1073 exit (7);
1074 }
1075 }
1076 break;
Jim Ingham58813182014-02-25 04:53:13 +00001077
Jim Ingham5689a212014-02-25 19:57:47 +00001078 case 'K':
1079 g_detach_on_error = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001080
Greg Claytonbd82a5d2011-01-23 05:56:20 +00001081 case 'W':
Greg Clayton6779606a2011-01-22 23:43:18 +00001082 if (optarg && optarg[0])
Greg Claytonbd82a5d2011-01-23 05:56:20 +00001083 working_dir.assign(optarg);
Greg Clayton6779606a2011-01-22 23:43:18 +00001084 break;
1085
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001086 case 'x':
1087 if (optarg && optarg[0])
1088 {
1089 if (strcasecmp(optarg, "auto") == 0)
1090 g_launch_flavor = eLaunchFlavorDefault;
1091 else if (strcasestr(optarg, "posix") == optarg)
1092 g_launch_flavor = eLaunchFlavorPosixSpawn;
1093 else if (strcasestr(optarg, "fork") == optarg)
1094 g_launch_flavor = eLaunchFlavorForkExec;
Jason Molenda42999a42012-02-22 02:18:59 +00001095#ifdef WITH_SPRINGBOARD
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001096 else if (strcasestr(optarg, "spring") == optarg)
1097 g_launch_flavor = eLaunchFlavorSpringBoard;
1098#endif
Jason Molendaa3329782014-03-29 18:54:20 +00001099#ifdef WITH_BKS
1100 else if (strcasestr(optarg, "backboard") == optarg)
1101 g_launch_flavor = eLaunchFlavorBKS;
1102#endif
Jason Molendac611a742015-10-23 02:49:51 +00001103#ifdef WITH_FBS
1104 else if (strcasestr(optarg, "frontboard") == optarg)
1105 g_launch_flavor = eLaunchFlavorFBS;
1106#endif
Jason Molendaa3329782014-03-29 18:54:20 +00001107
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001108 else
1109 {
1110 RNBLogSTDERR ("error: invalid TYPE for the --launch=TYPE (-x TYPE) option: '%s'\n", optarg);
1111 RNBLogSTDERR ("Valid values TYPE are:\n");
Jason Molendaa3329782014-03-29 18:54:20 +00001112 RNBLogSTDERR (" auto Auto-detect the best launch method to use.\n");
1113 RNBLogSTDERR (" posix Launch the executable using posix_spawn.\n");
1114 RNBLogSTDERR (" fork Launch the executable using fork and exec.\n");
Jason Molenda42999a42012-02-22 02:18:59 +00001115#ifdef WITH_SPRINGBOARD
Jason Molendaa3329782014-03-29 18:54:20 +00001116 RNBLogSTDERR (" spring Launch the executable through Springboard.\n");
1117#endif
1118#ifdef WITH_BKS
1119 RNBLogSTDERR (" backboard Launch the executable through BackBoard Services.\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001120#endif
Jason Molendac611a742015-10-23 02:49:51 +00001121#ifdef WITH_FBS
1122 RNBLogSTDERR (" frontboard Launch the executable through FrontBoard Services.\n");
1123#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001124 exit (5);
1125 }
1126 }
1127 break;
1128
1129 case 'l': // Set Log File
1130 if (optarg && optarg[0])
1131 {
1132 if (strcasecmp(optarg, "stdout") == 0)
1133 log_file = stdout;
1134 else if (strcasecmp(optarg, "stderr") == 0)
1135 log_file = stderr;
1136 else
Jim Inghamc530be62011-01-24 03:46:59 +00001137 {
Greg Claytonbd82a5d2011-01-23 05:56:20 +00001138 log_file = fopen(optarg, "w");
Jim Inghamc530be62011-01-24 03:46:59 +00001139 if (log_file != NULL)
1140 setlinebuf(log_file);
1141 }
1142
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001143 if (log_file == NULL)
1144 {
1145 const char *errno_str = strerror(errno);
1146 RNBLogSTDERR ("Failed to open log file '%s' for writing: errno = %i (%s)", optarg, errno, errno_str ? errno_str : "unknown error");
1147 }
1148 }
1149 break;
1150
1151 case 'f': // Log Flags
1152 if (optarg && optarg[0])
Greg Claytonee2ed522015-03-09 19:45:23 +00001153 log_flags = static_cast<uint32_t>(strtoul(optarg, NULL, 0));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001154 break;
1155
1156 case 'g':
1157 debug = 1;
Johnny Chen2fe7dd42011-08-10 23:01:39 +00001158 DNBLogSetDebug(debug);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001159 break;
1160
1161 case 't':
1162 g_applist_opt = 1;
1163 break;
1164
1165 case 'k':
1166 g_lockdown_opt = 1;
1167 break;
1168
1169 case 'r':
Greg Clayton85480022013-11-09 00:33:46 +00001170 // Do nothing, native regs is the default these days
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001171 break;
1172
Greg Clayton00fe87b2013-12-05 22:58:22 +00001173 case 'R':
1174 reverse_connect = true;
1175 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001176 case 'v':
1177 DNBLogSetVerbose(1);
1178 break;
1179
1180 case 's':
Greg Clayton71337622011-02-24 22:24:29 +00001181 ctx.GetSTDIN().assign(optarg);
1182 ctx.GetSTDOUT().assign(optarg);
1183 ctx.GetSTDERR().assign(optarg);
Greg Clayton6779606a2011-01-22 23:43:18 +00001184 break;
1185
1186 case 'I':
Greg Clayton71337622011-02-24 22:24:29 +00001187 ctx.GetSTDIN().assign(optarg);
Greg Clayton6779606a2011-01-22 23:43:18 +00001188 break;
1189
1190 case 'O':
Greg Clayton71337622011-02-24 22:24:29 +00001191 ctx.GetSTDOUT().assign(optarg);
Greg Clayton6779606a2011-01-22 23:43:18 +00001192 break;
1193
1194 case 'E':
Greg Clayton71337622011-02-24 22:24:29 +00001195 ctx.GetSTDERR().assign(optarg);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001196 break;
1197
Caroline Ticef8da8632010-12-03 18:46:09 +00001198 case 'n':
1199 no_stdio = true;
1200 break;
1201
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001202 case 'S':
1203 // Put debugserver into a new session. Terminals group processes
1204 // into sessions and when a special terminal key sequences
1205 // (like control+c) are typed they can cause signals to go out to
1206 // all processes in a session. Using this --setsid (-S) option
1207 // will cause debugserver to run in its own sessions and be free
1208 // from such issues.
1209 //
1210 // This is useful when debugserver is spawned from a command
1211 // line application that uses debugserver to do the debugging,
1212 // yet that application doesn't want debugserver receiving the
1213 // signals sent to the session (i.e. dying when anyone hits ^C).
1214 setsid();
1215 break;
Greg Claytonf681b942010-08-31 18:35:14 +00001216 case 'D':
1217 g_disable_aslr = 1;
1218 break;
Greg Clayton7a5388b2011-03-20 04:57:14 +00001219
1220 case 'p':
1221 start_mode = eRNBRunLoopModePlatformMode;
1222 break;
Greg Clayton8b82f082011-04-12 05:54:46 +00001223
Greg Claytonc93068b2013-12-10 19:36:45 +00001224 case 'u':
1225 unix_socket_name.assign (optarg);
1226 break;
1227
Greg Clayton91a9b2472013-12-04 19:19:12 +00001228 case 'P':
1229 named_pipe_path.assign (optarg);
Greg Clayton8b82f082011-04-12 05:54:46 +00001230 break;
Greg Claytonc93068b2013-12-10 19:36:45 +00001231
Greg Claytonce1843b2014-06-18 18:26:50 +00001232 case 'e':
1233 // Pass a single specified environment variable down to the process that gets launched
1234 remote->Context().PushEnvironment(optarg);
1235 break;
1236
1237 case 'F':
1238 // Pass the current environment down to the process that gets launched
1239 {
1240 char **host_env = *_NSGetEnviron();
1241 char *env_entry;
1242 size_t i;
1243 for (i=0; (env_entry = host_env[i]) != NULL; ++i)
1244 remote->Context().PushEnvironment(env_entry);
1245 }
1246 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001247 }
1248 }
Greg Clayton3af9ea52010-11-18 05:57:03 +00001249
1250 if (arch_name.empty())
1251 {
Greg Clayton71337622011-02-24 22:24:29 +00001252#if defined (__arm__)
Greg Clayton3af9ea52010-11-18 05:57:03 +00001253 arch_name.assign ("arm");
1254#endif
1255 }
Greg Clayton3c144382010-12-01 22:45:40 +00001256 else
1257 {
1258 DNBSetArchitecture (arch_name.c_str());
1259 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001260
Greg Clayton71337622011-02-24 22:24:29 +00001261// if (arch_name.empty())
1262// {
1263// fprintf(stderr, "error: no architecture was specified\n");
1264// exit (8);
1265// }
Greg Claytonb7ad58a2013-04-04 20:35:24 +00001266 // Skip any options we consumed with getopt_long_only
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001267 argc -= optind;
1268 argv += optind;
1269
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001270
Greg Claytonbd82a5d2011-01-23 05:56:20 +00001271 if (!working_dir.empty())
Greg Clayton6779606a2011-01-22 23:43:18 +00001272 {
Greg Claytonbd82a5d2011-01-23 05:56:20 +00001273 if (remote->Context().SetWorkingDirectory (working_dir.c_str()) == false)
Greg Clayton6779606a2011-01-22 23:43:18 +00001274 {
Greg Claytonbd82a5d2011-01-23 05:56:20 +00001275 RNBLogSTDERR ("error: working directory doesn't exist '%s'.\n", working_dir.c_str());
Greg Clayton6779606a2011-01-22 23:43:18 +00001276 exit (8);
1277 }
1278 }
1279
Jim Ingham58813182014-02-25 04:53:13 +00001280 remote->Context().SetDetachOnError(g_detach_on_error);
1281
Greg Clayton6779606a2011-01-22 23:43:18 +00001282 remote->Initialize();
Greg Clayton3af9ea52010-11-18 05:57:03 +00001283
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001284 // It is ok for us to set NULL as the logfile (this will disable any logging)
1285
1286 if (log_file != NULL)
1287 {
1288 DNBLogSetLogCallback(FileLogCallback, log_file);
1289 // If our log file was set, yet we have no log flags, log everything!
1290 if (log_flags == 0)
1291 log_flags = LOG_ALL | LOG_RNB_ALL;
1292
1293 DNBLogSetLogMask (log_flags);
1294 }
1295 else
1296 {
1297 // Enable DNB logging
1298 DNBLogSetLogCallback(ASLLogCallback, NULL);
1299 DNBLogSetLogMask (log_flags);
1300
1301 }
1302
1303 if (DNBLogEnabled())
1304 {
1305 for (i=0; i<argc; i++)
1306 DNBLogDebug("argv[%i] = %s", i, argv[i]);
1307 }
1308
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001309 // as long as we're dropping remotenub in as a replacement for gdbserver,
1310 // explicitly note that this is not gdbserver.
1311
Todd Fialac3ec3372014-03-13 18:30:04 +00001312 RNBLogSTDOUT ("%s-%s %sfor %s.\n",
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001313 DEBUGSERVER_PROGRAM_NAME,
Todd Fialac3ec3372014-03-13 18:30:04 +00001314 DEBUGSERVER_VERSION_STR,
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001315 compile_options.c_str(),
1316 RNB_ARCH);
1317
Greg Clayton00fe87b2013-12-05 22:58:22 +00001318 std::string host;
1319 int port = INT32_MAX;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001320 char str[PATH_MAX];
Greg Clayton23f59502012-07-17 03:23:13 +00001321 str[0] = '\0';
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001322
1323 if (g_lockdown_opt == 0 && g_applist_opt == 0)
1324 {
1325 // Make sure we at least have port
1326 if (argc < 1)
1327 {
1328 show_usage_and_exit (1);
1329 }
1330 // accept 'localhost:' prefix on port number
1331
Greg Clayton00fe87b2013-12-05 22:58:22 +00001332 int items_scanned = ::sscanf (argv[0], "%[^:]:%i", str, &port);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001333 if (items_scanned == 2)
1334 {
Greg Clayton00fe87b2013-12-05 22:58:22 +00001335 host = str;
1336 DNBLogDebug("host = '%s' port = %i", host.c_str(), port);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001337 }
1338 else
1339 {
Greg Claytonfd238892013-06-06 22:44:19 +00001340 // No hostname means "localhost"
Greg Clayton00fe87b2013-12-05 22:58:22 +00001341 int items_scanned = ::sscanf (argv[0], "%i", &port);
Greg Claytonfd238892013-06-06 22:44:19 +00001342 if (items_scanned == 1)
1343 {
Greg Clayton16810922014-02-27 19:38:18 +00001344 host = "127.0.0.1";
Greg Clayton00fe87b2013-12-05 22:58:22 +00001345 DNBLogDebug("host = '%s' port = %i", host.c_str(), port);
Greg Claytonfd238892013-06-06 22:44:19 +00001346 }
1347 else if (argv[0][0] == '/')
1348 {
Greg Clayton00fe87b2013-12-05 22:58:22 +00001349 port = INT32_MAX;
Greg Claytonfd238892013-06-06 22:44:19 +00001350 strncpy(str, argv[0], sizeof(str));
1351 }
1352 else
1353 {
1354 show_usage_and_exit (2);
1355 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001356 }
1357
1358 // We just used the 'host:port' or the '/path/file' arg...
1359 argc--;
1360 argv++;
1361
1362 }
1363
1364 // If we know we're waiting to attach, we don't need any of this other info.
Greg Clayton7a5388b2011-03-20 04:57:14 +00001365 if (start_mode != eRNBRunLoopModeInferiorAttaching &&
1366 start_mode != eRNBRunLoopModePlatformMode)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001367 {
1368 if (argc == 0 || g_lockdown_opt)
1369 {
1370 if (g_lockdown_opt != 0)
1371 {
1372 // Work around for SIGPIPE crashes due to posix_spawn issue.
1373 // We have to close STDOUT and STDERR, else the first time we
1374 // try and do any, we get SIGPIPE and die as posix_spawn is
1375 // doing bad things with our file descriptors at the moment.
1376 int null = open("/dev/null", O_RDWR);
1377 dup2(null, STDOUT_FILENO);
1378 dup2(null, STDERR_FILENO);
1379 }
1380 else if (g_applist_opt != 0)
1381 {
1382 // List all applications we are able to see
1383 std::string applist_plist;
1384 int err = ListApplications(applist_plist, false, false);
1385 if (err == 0)
1386 {
1387 fputs (applist_plist.c_str(), stdout);
1388 }
1389 else
1390 {
1391 RNBLogSTDERR ("error: ListApplications returned error %i\n", err);
1392 }
1393 // Exit with appropriate error if we were asked to list the applications
1394 // with no other args were given (and we weren't trying to do this over
1395 // lockdown)
1396 return err;
1397 }
1398
1399 DNBLogDebug("Get args from remote protocol...");
1400 start_mode = eRNBRunLoopModeGetStartModeFromRemoteProtocol;
1401 }
1402 else
1403 {
1404 start_mode = eRNBRunLoopModeInferiorLaunching;
1405 // Fill in the argv array in the context from the rest of our args.
1406 // Skip the name of this executable and the port number
1407 for (int i = 0; i < argc; i++)
1408 {
1409 DNBLogDebug("inferior_argv[%i] = '%s'", i, argv[i]);
1410 ctx.PushArgument (argv[i]);
1411 }
1412 }
1413 }
1414
1415 if (start_mode == eRNBRunLoopModeExit)
1416 return -1;
1417
1418 RNBRunLoopMode mode = start_mode;
1419 char err_str[1024] = {'\0'};
1420
1421 while (mode != eRNBRunLoopModeExit)
1422 {
1423 switch (mode)
1424 {
1425 case eRNBRunLoopModeGetStartModeFromRemoteProtocol:
Jason Molenda42999a42012-02-22 02:18:59 +00001426#ifdef WITH_LOCKDOWN
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001427 if (g_lockdown_opt)
1428 {
Greg Clayton6779606a2011-01-22 23:43:18 +00001429 if (!remote->Comm().IsConnected())
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001430 {
Greg Clayton6779606a2011-01-22 23:43:18 +00001431 if (remote->Comm().ConnectToService () != rnb_success)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001432 {
1433 RNBLogSTDERR ("Failed to get connection from a remote gdb process.\n");
1434 mode = eRNBRunLoopModeExit;
1435 }
1436 else if (g_applist_opt != 0)
1437 {
1438 // List all applications we are able to see
1439 std::string applist_plist;
1440 if (ListApplications(applist_plist, false, false) == 0)
1441 {
1442 DNBLogDebug("Task list: %s", applist_plist.c_str());
1443
Greg Clayton6779606a2011-01-22 23:43:18 +00001444 remote->Comm().Write(applist_plist.c_str(), applist_plist.size());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001445 // Issue a read that will never yield any data until the other side
1446 // closes the socket so this process doesn't just exit and cause the
1447 // socket to close prematurely on the other end and cause data loss.
1448 std::string buf;
Greg Clayton6779606a2011-01-22 23:43:18 +00001449 remote->Comm().Read(buf);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001450 }
Greg Clayton6779606a2011-01-22 23:43:18 +00001451 remote->Comm().Disconnect(false);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001452 mode = eRNBRunLoopModeExit;
1453 break;
1454 }
1455 else
1456 {
1457 // Start watching for remote packets
Greg Clayton6779606a2011-01-22 23:43:18 +00001458 remote->StartReadRemoteDataThread();
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001459 }
1460 }
1461 }
1462 else
1463#endif
Greg Clayton00fe87b2013-12-05 22:58:22 +00001464 if (port != INT32_MAX)
Greg Clayton7a5388b2011-03-20 04:57:14 +00001465 {
Greg Claytonc93068b2013-12-10 19:36:45 +00001466 if (!ConnectRemote (remote, host.c_str(), port, reverse_connect, named_pipe_path.c_str(), unix_socket_name.c_str()))
Greg Clayton7a5388b2011-03-20 04:57:14 +00001467 mode = eRNBRunLoopModeExit;
1468 }
1469 else if (str[0] == '/')
1470 {
1471 if (remote->Comm().OpenFile (str))
1472 mode = eRNBRunLoopModeExit;
1473 }
1474
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001475 if (mode != eRNBRunLoopModeExit)
1476 {
1477 RNBLogSTDOUT ("Got a connection, waiting for process information for launching or attaching.\n");
1478
Greg Clayton6779606a2011-01-22 23:43:18 +00001479 mode = RNBRunLoopGetStartModeFromRemote (remote);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001480 }
1481 break;
1482
1483 case eRNBRunLoopModeInferiorAttaching:
1484 if (!waitfor_pid_name.empty())
1485 {
1486 // Set our end wait time if we are using a waitfor-duration
1487 // option that may have been specified
1488 struct timespec attach_timeout_abstime, *timeout_ptr = NULL;
1489 if (waitfor_duration != 0)
1490 {
1491 DNBTimer::OffsetTimeOfDay(&attach_timeout_abstime, waitfor_duration, 0);
1492 timeout_ptr = &attach_timeout_abstime;
1493 }
1494 nub_launch_flavor_t launch_flavor = g_launch_flavor;
1495 if (launch_flavor == eLaunchFlavorDefault)
1496 {
1497 // Our default launch method is posix spawn
1498 launch_flavor = eLaunchFlavorPosixSpawn;
1499
Jason Molendac611a742015-10-23 02:49:51 +00001500#if defined WITH_FBS
1501 // Check if we have an app bundle, if so launch using SpringBoard.
1502 if (waitfor_pid_name.find (".app") != std::string::npos)
1503 {
1504 launch_flavor = eLaunchFlavorFBS;
1505 }
1506#elif defined WITH_BKS
Jason Molendaa3329782014-03-29 18:54:20 +00001507 // Check if we have an app bundle, if so launch using SpringBoard.
1508 if (waitfor_pid_name.find (".app") != std::string::npos)
1509 {
1510 launch_flavor = eLaunchFlavorBKS;
1511 }
1512#elif defined WITH_SPRINGBOARD
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001513 // Check if we have an app bundle, if so launch using SpringBoard.
1514 if (waitfor_pid_name.find (".app") != std::string::npos)
1515 {
1516 launch_flavor = eLaunchFlavorSpringBoard;
1517 }
1518#endif
1519 }
1520
1521 ctx.SetLaunchFlavor(launch_flavor);
Jim Inghamcd16df92012-07-20 21:37:13 +00001522 bool ignore_existing = false;
Jim Inghame2ff0ba2013-02-25 19:31:37 +00001523 RNBLogSTDOUT ("Waiting to attach to process %s...\n", waitfor_pid_name.c_str());
Jim Inghamcd16df92012-07-20 21:37:13 +00001524 nub_process_t pid = DNBProcessAttachWait (waitfor_pid_name.c_str(), launch_flavor, ignore_existing, timeout_ptr, waitfor_interval, err_str, sizeof(err_str));
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001525 g_pid = pid;
1526
1527 if (pid == INVALID_NUB_PROCESS)
1528 {
1529 ctx.LaunchStatus().SetError(-1, DNBError::Generic);
1530 if (err_str[0])
1531 ctx.LaunchStatus().SetErrorString(err_str);
Jim Inghame2ff0ba2013-02-25 19:31:37 +00001532 RNBLogSTDERR ("error: failed to attach to process named: \"%s\" %s\n", waitfor_pid_name.c_str(), err_str);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001533 mode = eRNBRunLoopModeExit;
1534 }
1535 else
1536 {
1537 ctx.SetProcessID(pid);
1538 mode = eRNBRunLoopModeInferiorExecuting;
1539 }
1540 }
1541 else if (attach_pid != INVALID_NUB_PROCESS)
1542 {
1543
1544 RNBLogSTDOUT ("Attaching to process %i...\n", attach_pid);
1545 nub_process_t attached_pid;
Greg Clayton6779606a2011-01-22 23:43:18 +00001546 mode = RNBRunLoopLaunchAttaching (remote, attach_pid, attached_pid);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001547 if (mode != eRNBRunLoopModeInferiorExecuting)
1548 {
1549 const char *error_str = remote->Context().LaunchStatus().AsString();
1550 RNBLogSTDERR ("error: failed to attach process %i: %s\n", attach_pid, error_str ? error_str : "unknown error.");
1551 mode = eRNBRunLoopModeExit;
1552 }
1553 }
1554 else if (!attach_pid_name.empty ())
1555 {
1556 struct timespec attach_timeout_abstime, *timeout_ptr = NULL;
1557 if (waitfor_duration != 0)
1558 {
1559 DNBTimer::OffsetTimeOfDay(&attach_timeout_abstime, waitfor_duration, 0);
1560 timeout_ptr = &attach_timeout_abstime;
1561 }
1562
Jim Inghame2ff0ba2013-02-25 19:31:37 +00001563 RNBLogSTDOUT ("Attaching to process %s...\n", attach_pid_name.c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001564 nub_process_t pid = DNBProcessAttachByName (attach_pid_name.c_str(), timeout_ptr, err_str, sizeof(err_str));
1565 g_pid = pid;
1566 if (pid == INVALID_NUB_PROCESS)
1567 {
1568 ctx.LaunchStatus().SetError(-1, DNBError::Generic);
1569 if (err_str[0])
1570 ctx.LaunchStatus().SetErrorString(err_str);
Jim Inghame2ff0ba2013-02-25 19:31:37 +00001571 RNBLogSTDERR ("error: failed to attach to process named: \"%s\" %s\n", waitfor_pid_name.c_str(), err_str);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001572 mode = eRNBRunLoopModeExit;
1573 }
1574 else
1575 {
1576 ctx.SetProcessID(pid);
1577 mode = eRNBRunLoopModeInferiorExecuting;
1578 }
1579
1580 }
1581 else
1582 {
Jim Inghame2ff0ba2013-02-25 19:31:37 +00001583 RNBLogSTDERR ("error: asked to attach with empty name and invalid PID.\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001584 mode = eRNBRunLoopModeExit;
1585 }
1586
1587 if (mode != eRNBRunLoopModeExit)
1588 {
Greg Clayton00fe87b2013-12-05 22:58:22 +00001589 if (port != INT32_MAX)
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001590 {
Greg Claytonc93068b2013-12-10 19:36:45 +00001591 if (!ConnectRemote (remote, host.c_str(), port, reverse_connect, named_pipe_path.c_str(), unix_socket_name.c_str()))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001592 mode = eRNBRunLoopModeExit;
1593 }
1594 else if (str[0] == '/')
1595 {
Greg Clayton6779606a2011-01-22 23:43:18 +00001596 if (remote->Comm().OpenFile (str))
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001597 mode = eRNBRunLoopModeExit;
1598 }
1599 if (mode != eRNBRunLoopModeExit)
Jim Inghame2ff0ba2013-02-25 19:31:37 +00001600 RNBLogSTDOUT ("Waiting for debugger instructions for process %d.\n", attach_pid);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001601 }
1602 break;
1603
1604 case eRNBRunLoopModeInferiorLaunching:
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001605 {
Greg Clayton6779606a2011-01-22 23:43:18 +00001606 mode = RNBRunLoopLaunchInferior (remote,
Greg Clayton71337622011-02-24 22:24:29 +00001607 ctx.GetSTDINPath(),
1608 ctx.GetSTDOUTPath(),
1609 ctx.GetSTDERRPath(),
Greg Clayton6779606a2011-01-22 23:43:18 +00001610 no_stdio);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001611
Greg Clayton6779606a2011-01-22 23:43:18 +00001612 if (mode == eRNBRunLoopModeInferiorExecuting)
1613 {
Greg Clayton00fe87b2013-12-05 22:58:22 +00001614 if (port != INT32_MAX)
Greg Clayton6779606a2011-01-22 23:43:18 +00001615 {
Greg Claytonc93068b2013-12-10 19:36:45 +00001616 if (!ConnectRemote (remote, host.c_str(), port, reverse_connect, named_pipe_path.c_str(), unix_socket_name.c_str()))
Greg Clayton6779606a2011-01-22 23:43:18 +00001617 mode = eRNBRunLoopModeExit;
1618 }
1619 else if (str[0] == '/')
1620 {
1621 if (remote->Comm().OpenFile (str))
1622 mode = eRNBRunLoopModeExit;
1623 }
1624
1625 if (mode != eRNBRunLoopModeExit)
Jim Ingham5689a212014-02-25 19:57:47 +00001626 {
1627 const char *proc_name = "<unknown>";
1628 if (ctx.ArgumentCount() > 0)
1629 proc_name = ctx.ArgumentAtIndex(0);
1630 RNBLogSTDOUT ("Got a connection, launched process %s (pid = %d).\n", proc_name, ctx.ProcessID());
1631 }
Greg Clayton6779606a2011-01-22 23:43:18 +00001632 }
1633 else
1634 {
1635 const char *error_str = remote->Context().LaunchStatus().AsString();
Jason Molenda0b2dbe02012-11-01 02:02:59 +00001636 RNBLogSTDERR ("error: failed to launch process %s: %s\n", argv_sub_zero, error_str ? error_str : "unknown error.");
Greg Clayton6779606a2011-01-22 23:43:18 +00001637 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001638 }
1639 break;
1640
1641 case eRNBRunLoopModeInferiorExecuting:
Greg Clayton6779606a2011-01-22 23:43:18 +00001642 mode = RNBRunLoopInferiorExecuting(remote);
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001643 break;
1644
Greg Clayton7a5388b2011-03-20 04:57:14 +00001645 case eRNBRunLoopModePlatformMode:
Greg Clayton00fe87b2013-12-05 22:58:22 +00001646 if (port != INT32_MAX)
Greg Clayton7a5388b2011-03-20 04:57:14 +00001647 {
Greg Claytonc93068b2013-12-10 19:36:45 +00001648 if (!ConnectRemote (remote, host.c_str(), port, reverse_connect, named_pipe_path.c_str(), unix_socket_name.c_str()))
Greg Clayton7a5388b2011-03-20 04:57:14 +00001649 mode = eRNBRunLoopModeExit;
1650 }
1651 else if (str[0] == '/')
1652 {
1653 if (remote->Comm().OpenFile (str))
1654 mode = eRNBRunLoopModeExit;
1655 }
1656
1657 if (mode != eRNBRunLoopModeExit)
1658 mode = RNBRunLoopPlatform (remote);
1659 break;
1660
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001661 default:
1662 mode = eRNBRunLoopModeExit;
1663 case eRNBRunLoopModeExit:
1664 break;
1665 }
1666 }
1667
Greg Clayton6779606a2011-01-22 23:43:18 +00001668 remote->StopReadRemoteDataThread ();
1669 remote->Context().SetProcessID(INVALID_NUB_PROCESS);
Jim Inghame2ff0ba2013-02-25 19:31:37 +00001670 RNBLogSTDOUT ("Exiting.\n");
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001671
1672 return 0;
1673}