1 /* Memory-access and commands for remote VxWorks processes, for GDB.
2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
3 Contributed by Wind River Systems and Cygnus Support.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
29 #include "complaints.h"
35 #include <sys/types.h>
36 #include <sys/socket.h>
37 #define malloc bogon_malloc /* Sun claims "char *malloc()" not void * */
38 #define free bogon_free /* Sun claims "int free()" not void */
39 #define realloc bogon_realloc /* Sun claims "char *realloc()", not void * */
44 #include <sys/time.h> /* UTek's <rpc/rpc.h> doesn't #incl this */
46 #include "vx-share/ptrace.h"
47 #include "vx-share/xdr_ptrace.h"
48 #include "vx-share/xdr_ld.h"
49 #include "vx-share/xdr_rdb.h"
50 #include "vx-share/dbgRpcLib.h"
54 extern void symbol_file_command ();
55 extern int stop_soon_quietly; /* for wait_for_inferior */
57 static int net_ptrace_clnt_call (); /* Forward decl */
58 static enum clnt_stat net_clnt_call (); /* Forward decl */
59 extern struct target_ops vx_ops, vx_run_ops; /* Forward declaration */
61 /* Saved name of target host and called function for "info files".
65 static char *vx_running; /* Called function */
67 /* Nonzero means target that is being debugged remotely has a floating
70 static int target_has_fp;
72 /* Default error message when the network is forking up. */
74 static const char rpcerr[] = "network target debugging: rpc error";
76 CLIENT *pClient; /* client used in net debugging */
77 static int ptraceSock = RPC_ANYSOCK;
79 enum clnt_stat net_clnt_call();
80 static void parse_args ();
82 static struct timeval rpcTimeout = { 10, 0 };
84 static char *skip_white_space ();
85 static char *find_white_space ();
87 /* Tell the VxWorks target system to download a file.
88 The load addresses of the text, data, and bss segments are
89 stored in *pTextAddr, *pDataAddr, and *pBssAddr (respectively).
90 Returns 0 for success, -1 for failure. */
93 net_load (filename, pTextAddr, pDataAddr, pBssAddr)
99 enum clnt_stat status;
100 struct ldfile ldstruct;
101 struct timeval load_timeout;
103 bzero ((char *) &ldstruct, sizeof (ldstruct));
105 /* We invoke clnt_call () here directly, instead of through
106 net_clnt_call (), because we need to set a large timeout value.
107 The load on the target side can take quite a while, easily
108 more than 10 seconds. The user can kill this call by typing
109 CTRL-C if there really is a problem with the load.
111 Do not change the tv_sec value without checking -- select() imposes
112 a limit of 10**8 on it for no good reason that I can see... */
114 load_timeout.tv_sec = 99999999; /* A large number, effectively inf. */
115 load_timeout.tv_usec = 0;
117 status = clnt_call (pClient, VX_LOAD, xdr_wrapstring, &filename, xdr_ldfile,
118 &ldstruct, load_timeout);
120 if (status == RPC_SUCCESS)
122 if (*ldstruct.name == 0) /* load failed on VxWorks side */
124 *pTextAddr = ldstruct.txt_addr;
125 *pDataAddr = ldstruct.data_addr;
126 *pBssAddr = ldstruct.bss_addr;
133 /* returns 0 if successful, errno if RPC failed or VxWorks complains. */
136 net_break (addr, procnum)
140 enum clnt_stat status;
142 Rptrace ptrace_in; /* XXX This is stupid. It doesn't need to be a ptrace
143 structure. How about something smaller? */
145 bzero ((char *) &ptrace_in, sizeof (ptrace_in));
148 ptrace_in.addr = addr;
149 ptrace_in.pid = inferior_pid;
151 status = net_clnt_call (procnum, xdr_rptrace, &ptrace_in, xdr_int,
154 if (status != RPC_SUCCESS)
157 if (break_status == -1)
159 return break_status; /* probably (FIXME) zero */
162 /* returns 0 if successful, errno otherwise */
165 vx_insert_breakpoint (addr)
168 return net_break (addr, VX_BREAK_ADD);
171 /* returns 0 if successful, errno otherwise */
174 vx_remove_breakpoint (addr)
177 return net_break (addr, VX_BREAK_DELETE);
180 /* Start an inferior process and sets inferior_pid to its pid.
181 EXEC_FILE is the file to run.
182 ALLARGS is a string containing the arguments to the program.
183 ENV is the environment vector to pass.
184 Returns process id. Errors reported with error().
185 On VxWorks, we ignore exec_file. */
188 vx_create_inferior (exec_file, args, env)
193 enum clnt_stat status;
195 TASK_START taskStart;
197 bzero ((char *) &passArgs, sizeof (passArgs));
198 bzero ((char *) &taskStart, sizeof (taskStart));
200 /* parse arguments, put them in passArgs */
202 parse_args (args, &passArgs);
204 if (passArgs.arg_array_len == 0)
205 error ("You must specify a function name to run, and arguments if any");
207 status = net_clnt_call (PROCESS_START, xdr_arg_array, &passArgs,
208 xdr_TASK_START, &taskStart);
210 if ((status != RPC_SUCCESS) || (taskStart.status == -1))
211 error ("Can't create process on remote target machine");
213 /* Save the name of the running function */
214 vx_running = savestring (passArgs.arg_array_val[0],
215 strlen (passArgs.arg_array_val[0]));
217 #ifdef CREATE_INFERIOR_HOOK
218 CREATE_INFERIOR_HOOK (pid);
221 push_target (&vx_run_ops);
222 inferior_pid = taskStart.pid;
224 /* We will get a trace trap after one instruction.
225 Insert breakpoints and continue. */
227 init_wait_for_inferior ();
229 /* Set up the "saved terminal modes" of the inferior
230 based on what modes we are starting it with. */
231 target_terminal_init ();
233 /* Install inferior's terminal modes. */
234 target_terminal_inferior ();
236 stop_soon_quietly = 1;
237 wait_for_inferior (); /* Get the task spawn event */
238 stop_soon_quietly = 0;
240 /* insert_step_breakpoint (); FIXME, do we need this? */
244 /* Fill ARGSTRUCT in argc/argv form with the arguments from the
245 argument string ARGSTRING. */
248 parse_args (arg_string, arg_struct)
249 register char *arg_string;
250 arg_array *arg_struct;
252 register int arg_count = 0; /* number of arguments */
253 register int arg_index = 0;
256 bzero ((char *) arg_struct, sizeof (arg_array));
258 /* first count how many arguments there are */
263 if (*(p0 = skip_white_space (p0)) == '\0')
265 p0 = find_white_space (p0);
269 arg_struct->arg_array_len = arg_count;
270 arg_struct->arg_array_val = (char **) xmalloc ((arg_count + 1)
273 /* now copy argument strings into arg_struct. */
275 while (*(arg_string = skip_white_space (arg_string)))
277 p0 = find_white_space (arg_string);
278 arg_struct->arg_array_val[arg_index++] = savestring (arg_string,
283 arg_struct->arg_array_val[arg_count] = NULL;
286 /* Advance a string pointer across whitespace and return a pointer
287 to the first non-white character. */
293 while (*p == ' ' || *p == '\t')
298 /* Search for the first unquoted whitespace character in a string.
299 Returns a pointer to the character, or to the null terminator
300 if no whitespace is found. */
308 while ((c = *p) != ' ' && c != '\t' && c)
310 if (c == '\'' || c == '"')
312 while (*++p != c && *p)
325 /* Poll the VxWorks target system for an event related
326 to the debugged task.
327 Returns -1 if remote wait failed, task status otherwise. */
334 enum clnt_stat status;
336 bzero ((char *) pEvent, sizeof (RDB_EVENT));
339 status = net_clnt_call (PROCESS_WAIT, xdr_int, &pid, xdr_RDB_EVENT, pEvent);
341 return (status == RPC_SUCCESS)? pEvent->status: -1;
344 /* Suspend the remote task.
345 Returns -1 if suspend fails on target system, 0 otherwise. */
352 enum clnt_stat status;
356 /* don't let rdbTask suspend itself by passing a pid of 0 */
358 if ((pid = inferior_pid) == 0)
361 status = net_clnt_call (VX_TASK_SUSPEND, xdr_int, &pid, xdr_int,
364 return (status == RPC_SUCCESS)? quit_status: -1;
367 /* Read a register or registers from the remote system. */
370 vx_read_register (regno)
375 Ptrace_return ptrace_out;
378 extern char registers[];
380 bzero ((char *) &ptrace_in, sizeof (ptrace_in));
381 bzero ((char *) &ptrace_out, sizeof (ptrace_out));
383 /* FIXME, eventually only get the ones we need. */
384 registers_fetched ();
386 ptrace_in.pid = inferior_pid;
387 ptrace_out.info.more_data = (caddr_t) &out_data;
389 out_data.len = 18 * REGISTER_RAW_SIZE (0); /* FIXME m68k hack */
391 out_data.len = (16 + 16 + 3) * REGISTER_RAW_SIZE (0);
393 out_data.bytes = (caddr_t) registers;
395 status = net_ptrace_clnt_call (PTRACE_GETREGS, &ptrace_in, &ptrace_out);
398 if (ptrace_out.status == -1)
400 errno = ptrace_out.errno;
401 perror_with_name ("net_ptrace_clnt_call(PTRACE_GETREGS)");
407 /* If the target has floating point registers, fetch them.
408 Otherwise, zero the floating point register values in
409 registers[] for good measure, even though we might not
411 /* @@ Can't use this -- the rdb library for the 960 target
412 doesn't support setting or retrieving FP regs. KR */
414 struct fp_status inferior_fp_registers;
418 ptrace_in.pid = inferior_pid;
419 ptrace_out.info.more_data = (caddr_t) &inferior_fp_registers;
420 status = net_ptrace_clnt_call (PTRACE_GETFPREGS,
421 &ptrace_in, &ptrace_out);
424 if (ptrace_out.status == -1)
426 errno = ptrace_out.errno;
427 perror_with_name ("net_ptrace_clnt_call(PTRACE_GETFPREGS)");
430 bcopy (&inferior_fp_registers, ®isters[REGISTER_BYTE (FP0_REGNUM)],
431 REGISTER_RAW_SIZE (FP0_REGNUM) * 4);
435 bzero ((char *) ®isters[REGISTER_BYTE (FP0_REGNUM)],
436 REGISTER_RAW_SIZE (FP0_REGNUM) * 4);
440 #else /* not 960, thus must be 68000: FIXME! */
444 ptrace_in.pid = inferior_pid;
445 ptrace_out.info.more_data = (caddr_t) &out_data;
446 out_data.len = 8 * REGISTER_RAW_SIZE (FP0_REGNUM) /* FIXME */
447 + (3 * sizeof (REGISTER_TYPE));
448 out_data.bytes = (caddr_t) ®isters[REGISTER_BYTE (FP0_REGNUM)];
450 status = net_ptrace_clnt_call (PTRACE_GETFPREGS, &ptrace_in, &ptrace_out);
453 if (ptrace_out.status == -1)
455 errno = ptrace_out.errno;
456 perror_with_name ("net_ptrace_clnt_call(PTRACE_GETFPREGS)");
461 bzero (®isters[REGISTER_BYTE (FP0_REGNUM)],
462 8 * REGISTER_RAW_SIZE (FP0_REGNUM));
463 bzero (®isters[REGISTER_BYTE (FPC_REGNUM)],
464 3 * sizeof (REGISTER_TYPE));
466 #endif /* various architectures */
469 /* Prepare to store registers. Since we will store all of them,
470 read out their current values now. */
473 vx_prepare_to_store ()
475 /* Fetch all registers, if any of them are not yet fetched. */
476 read_register_bytes (0, NULL, REGISTER_BYTES);
480 /* Store our register values back into the inferior.
481 If REGNO is -1, do this for all registers.
482 Otherwise, REGNO specifies which register (so we can save time). */
483 /* FIXME, look at REGNO to save time here */
486 vx_write_register (regno)
491 extern char registers[];
494 Ptrace_return ptrace_out;
496 bzero ((char *) &ptrace_in, sizeof (ptrace_in));
497 bzero ((char *) &ptrace_out, sizeof (ptrace_out));
499 ptrace_in.pid = inferior_pid;
500 ptrace_in.info.ttype = DATA;
501 ptrace_in.info.more_data = (caddr_t) &in_data;
503 in_data.bytes = registers;
507 in_data.len = (16 + 16 + 3) * sizeof (REGISTER_TYPE);
509 #else /* not 960 -- assume m68k -- FIXME */
511 in_data.len = 18 * sizeof (REGISTER_TYPE);
513 #endif /* Different register sets */
515 /* XXX change second param to be a proc number */
516 status = net_ptrace_clnt_call (PTRACE_SETREGS, &ptrace_in, &ptrace_out);
519 if (ptrace_out.status == -1)
521 errno = ptrace_out.errno;
522 perror_with_name ("net_ptrace_clnt_call(PTRACE_SETREGS)");
525 /* Store floating point registers if the target has them. */
529 ptrace_in.pid = inferior_pid;
530 ptrace_in.info.ttype = DATA;
531 ptrace_in.info.more_data = (caddr_t) &in_data;
535 #if 0 /* @@ Not supported by target. */
536 in_data.bytes = ®isters[REGISTER_BYTE (FP0_REGNUM)];
537 in_data.len = 4 * REGISTER_RAW_SIZE (FP0_REGNUM);
539 #else /* not 960 -- assume m68k -- FIXME */
541 in_data.bytes = ®isters[REGISTER_BYTE (FP0_REGNUM)];
542 in_data.len = (8 * REGISTER_RAW_SIZE (FP0_REGNUM)
543 + (3 * sizeof (REGISTER_TYPE)));
545 #endif /* Different register sets */
547 status = net_ptrace_clnt_call (PTRACE_SETFPREGS, &ptrace_in, &ptrace_out);
550 if (ptrace_out.status == -1)
552 errno = ptrace_out.errno;
553 perror_with_name ("net_ptrace_clnt_call(PTRACE_SETFPREGS)");
558 /* Copy LEN bytes to or from remote inferior's memory starting at MEMADDR
559 to debugger memory starting at MYADDR. WRITE is true if writing to the
561 Result is the number of bytes written or read (zero if error). The
562 protocol allows us to return a negative count, indicating that we can't
563 handle the current address but can handle one N bytes further, but
564 vxworks doesn't give us that information. */
567 vx_xfer_memory (memaddr, myaddr, len, write, target)
572 struct target_ops *target; /* ignored */
576 Ptrace_return ptrace_out;
579 bzero ((char *) &ptrace_in, sizeof (ptrace_in));
580 bzero ((char *) &ptrace_out, sizeof (ptrace_out));
582 ptrace_in.pid = inferior_pid; /* XXX pid unnecessary for READDATA */
583 ptrace_in.addr = (int) memaddr; /* Where from */
584 ptrace_in.data = len; /* How many bytes */
588 ptrace_in.info.ttype = DATA;
589 ptrace_in.info.more_data = (caddr_t) &data;
591 data.bytes = (caddr_t) myaddr; /* Where from */
592 data.len = len; /* How many bytes (again, for XDR) */
594 /* XXX change second param to be a proc number */
595 status = net_ptrace_clnt_call (PTRACE_WRITEDATA, &ptrace_in, &ptrace_out);
599 ptrace_out.info.more_data = (caddr_t) &data;
600 data.bytes = myaddr; /* Where to */
601 data.len = len; /* How many (again, for XDR) */
603 /* XXX change second param to be a proc number */
604 status = net_ptrace_clnt_call (PTRACE_READDATA, &ptrace_in, &ptrace_out);
609 if (ptrace_out.status == -1)
611 return 0; /* No bytes moved */
613 return len; /* Moved *all* the bytes */
619 printf ("\tAttached to host `%s'", vx_host);
620 printf (", which has %sfloating point", target_has_fp? "": "no ");
627 printf ("\tRunning %s VxWorks process %s",
628 vx_running? "child": "attached",
629 local_hex_string(inferior_pid));
631 printf (", function `%s'", vx_running);
636 vx_resume (step, siggnal)
642 Ptrace_return ptrace_out;
644 if (siggnal != 0 && siggnal != stop_signal)
645 error ("Cannot send signals to VxWorks processes");
647 bzero ((char *) &ptrace_in, sizeof (ptrace_in));
648 bzero ((char *) &ptrace_out, sizeof (ptrace_out));
650 ptrace_in.pid = inferior_pid;
651 ptrace_in.addr = 1; /* Target side insists on this, or it panics. */
653 /* XXX change second param to be a proc number */
654 status = net_ptrace_clnt_call (step? PTRACE_SINGLESTEP: PTRACE_CONT,
655 &ptrace_in, &ptrace_out);
658 if (ptrace_out.status == -1)
660 errno = ptrace_out.errno;
661 perror_with_name ("Resuming remote process");
668 pop_target (); /* Pop back to no-child state */
669 generic_mourn_inferior ();
673 /* This function allows the addition of incrementally linked object files. */
676 vx_load_command (arg_string, from_tty)
685 error ("The load command takes a file name");
687 arg_string = tilde_expand (arg_string);
688 make_cleanup (free, arg_string);
694 if (net_load (arg_string, &text_addr, &data_addr, &bss_addr) == -1)
695 error ("Load failed on target machine");
698 /* FIXME, for now we ignore data_addr and bss_addr. */
699 symbol_file_add (arg_string, from_tty, text_addr, 0, 0, 0);
702 #ifdef FIXME /* Not ready for prime time */
703 /* Single step the target program at the source or machine level.
704 Takes an error exit if rpc fails.
705 Returns -1 if remote single-step operation fails, else 0. */
710 enum clnt_stat status;
712 SOURCE_STEP source_step;
714 source_step.taskId = inferior_pid;
718 source_step.startAddr = step_range_start;
719 source_step.endAddr = step_range_end;
723 source_step.startAddr = 0;
724 source_step.endAddr = 0;
727 status = net_clnt_call (VX_SOURCE_STEP, xdr_SOURCE_STEP, &source_step,
728 xdr_int, &step_status);
730 if (status == RPC_SUCCESS)
737 /* Emulate ptrace using RPC calls to the VxWorks target system.
738 Returns nonzero (-1) if RPC status to VxWorks is bad, 0 otherwise. */
741 net_ptrace_clnt_call (request, pPtraceIn, pPtraceOut)
742 enum ptracereq request;
744 Ptrace_return *pPtraceOut;
746 enum clnt_stat status;
748 status = net_clnt_call (request, xdr_rptrace, pPtraceIn, xdr_ptrace_return,
751 if (status != RPC_SUCCESS)
757 /* Query the target for the name of the file from which VxWorks was
758 booted. pBootFile is the address of a pointer to the buffer to
759 receive the file name; if the pointer pointed to by pBootFile is
760 NULL, memory for the buffer will be allocated by XDR.
761 Returns -1 if rpc failed, 0 otherwise. */
764 net_get_boot_file (pBootFile)
767 enum clnt_stat status;
769 status = net_clnt_call (VX_BOOT_FILE_INQ, xdr_void, (char *) 0,
770 xdr_wrapstring, pBootFile);
771 return (status == RPC_SUCCESS) ? 0 : -1;
774 /* Fetch a list of loaded object modules from the VxWorks target.
775 Returns -1 if rpc failed, 0 otherwise
776 There's no way to check if the returned loadTable is correct.
777 VxWorks doesn't check it. */
780 net_get_symbols (pLoadTable)
781 ldtabl *pLoadTable; /* return pointer to ldtabl here */
783 enum clnt_stat status;
785 bzero ((char *) pLoadTable, sizeof (struct ldtabl));
787 status = net_clnt_call (VX_STATE_INQ, xdr_void, 0, xdr_ldtabl, pLoadTable);
788 return (status == RPC_SUCCESS) ? 0 : -1;
791 /* Look up a symbol in the VxWorks target's symbol table.
792 Returns status of symbol read on target side (0=success, -1=fail)
793 Returns -1 and complain()s if rpc fails. */
795 struct complaint cant_contact_target =
796 {"Lost contact with VxWorks target", 0, 0};
799 vx_lookup_symbol (name, pAddr)
800 char *name; /* symbol name */
803 enum clnt_stat status;
804 SYMBOL_ADDR symbolAddr;
807 bzero ((char *) &symbolAddr, sizeof (symbolAddr));
809 status = net_clnt_call (VX_SYMBOL_INQ, xdr_wrapstring, &name,
810 xdr_SYMBOL_ADDR, &symbolAddr);
811 if (status != RPC_SUCCESS) {
812 complain (&cant_contact_target);
816 *pAddr = symbolAddr.addr;
817 return symbolAddr.status;
820 /* Check to see if the VxWorks target has a floating point coprocessor.
821 Returns 1 if target has floating point processor, 0 otherwise.
822 Calls error() if rpc fails. */
827 enum clnt_stat status;
828 bool_t fp = 0; /* true if fp processor is present on target board */
830 status = net_clnt_call (VX_FP_INQUIRE, xdr_void, 0, xdr_bool, &fp);
831 if (status != RPC_SUCCESS)
837 /* Establish an RPC connection with the VxWorks target system.
838 Calls error () if unable to establish connection. */
844 struct sockaddr_in destAddr;
845 struct hostent *destHost;
848 /* Get the internet address for the given host. Allow a numeric
849 IP address or a hostname. */
851 addr = inet_addr (host);
854 destHost = (struct hostent *) gethostbyname (host);
855 if (destHost == NULL)
856 error ("Invalid hostname. Couldn't find remote host address.");
857 addr = * (unsigned long *) destHost->h_addr;
860 bzero (&destAddr, sizeof (destAddr));
862 destAddr.sin_addr.s_addr = addr;
863 destAddr.sin_family = AF_INET;
864 destAddr.sin_port = 0; /* set to actual port that remote
865 ptrace is listening on. */
867 /* Create a tcp client transport on which to issue
868 calls to the remote ptrace server. */
870 ptraceSock = RPC_ANYSOCK;
871 pClient = clnttcp_create (&destAddr, RDBPROG, RDBVERS, &ptraceSock, 0, 0);
872 /* FIXME, here is where we deal with different version numbers of the proto */
876 clnt_pcreateerror ("\tnet_connect");
877 error ("Couldn't connect to remote target.");
881 /* Sleep for the specified number of milliseconds
882 * (assumed to be less than 1000).
883 * If select () is interrupted, returns immediately;
884 * takes an error exit if select () fails for some other reason.
891 struct timeval select_timeout;
894 select_timeout.tv_sec = 0;
895 select_timeout.tv_usec = ms * 1000;
897 status = select (0, (fd_set *) 0, (fd_set *) 0, (fd_set *) 0, &select_timeout);
899 if (status < 0 && errno != EINTR)
900 perror_with_name ("select");
903 /* Wait for control to return from inferior to debugger.
904 If inferior gets a signal, we may decide to start it up again
905 instead of returning. That is why there is a loop in this function.
906 When this function actually returns it means the inferior
907 should be left stopped and GDB should read more commands. */
909 /* For network debugging with VxWorks.
910 * VxWorks knows when tasks hit breakpoints, receive signals, exit, etc,
911 * so vx_wait() receives this information directly from
912 * VxWorks instead of trying to figure out what happenned via a wait() call.
926 /* If CTRL-C is hit during this loop,
927 suspend the inferior process. */
932 quit_failed = (net_quit () == -1);
936 /* If a net_quit () or net_wait () call has failed,
937 allow the user to break the connection with the target.
938 We can't simply error () out of this loop, since the
939 data structures representing the state of the inferior
940 are in an inconsistent state. */
942 if (quit_failed || net_wait (&rdbEvent) == -1)
945 if (query ("Can't %s. Disconnect from target system? ",
946 (quit_failed) ? "suspend remote task"
947 : "get status of remote task"))
949 target_mourn_inferior();
950 error ("Use the \"target\" command to reconnect.");
954 terminal_inferior ();
959 pid = rdbEvent.taskId;
962 sleep_ms (200); /* FIXME Don't kill the network too badly */
964 else if (pid != inferior_pid)
965 fatal ("Bad pid for debugged task: %s\n", local_hex_string(pid));
968 /* FIXME, eventually do more then SIGTRAP on everything... */
969 switch (rdbEvent.eventType)
973 /* FIXME is it possible to distinguish between a
974 XXX normal vs abnormal exit in VxWorks? */
977 case EVENT_START: /* Task was just started. */
978 WSETSTOP (w, SIGTRAP);
982 WSETSTOP (w, SIGTRAP);
983 /* XXX was it stopped by a signal? act accordingly */
986 case EVENT_BREAK: /* Breakpoint was hit. */
987 WSETSTOP (w, SIGTRAP);
990 case EVENT_SUSPEND: /* Task was suspended, probably by ^C. */
991 WSETSTOP (w, SIGINT);
994 case EVENT_BUS_ERR: /* Task made evil nasty reference. */
995 WSETSTOP (w, SIGBUS);
998 case EVENT_ZERO_DIV: /* Division by zero */
999 WSETSTOP (w, SIGFPE); /* Like Unix, call it a float exception. */
1003 /* The target is not running Unix, and its
1004 faults/traces do not map nicely into Unix signals.
1005 Make sure they do not get confused with Unix signals
1006 by numbering them with values higher than the highest
1007 legal Unix signal. code in the arch-dependent PRINT_RANDOM_SIGNAL
1008 routine will interpret the value for wait_for_inferior. */
1009 WSETSTOP (w, rdbEvent.sigType + NSIG);
1012 *status = *(int *)&w; /* Grumble union wait crap Grumble */
1020 symbol_file_command (arg, 0);
1025 add_symbol_stub (arg)
1028 struct ldfile *pLoadFile = (struct ldfile *)arg;
1030 printf("\t%s: ", pLoadFile->name);
1031 symbol_file_add (pLoadFile->name, 0, pLoadFile->txt_addr, 0, 0, 0);
1035 /* Target command for VxWorks target systems.
1037 Used in vxgdb. Takes the name of a remote target machine
1038 running vxWorks and connects to it to initialize remote network
1042 vx_open (args, from_tty)
1046 extern int close ();
1048 extern char *source_path;
1049 struct ldtabl loadTable;
1050 struct ldfile *pLoadFile;
1052 extern CLIENT *pClient;
1055 error_no_arg ("target machine name");
1057 target_preopen (from_tty);
1059 unpush_target (&vx_ops);
1060 printf ("Attaching remote machine across net...\n");
1063 /* Allow the user to kill the connect attempt by typing ^C.
1064 Wait until the call to target_has_fp () completes before
1065 disallowing an immediate quit, since even if net_connect ()
1066 is successful, the remote debug server might be hung. */
1071 target_has_fp = net_check_for_fp ();
1072 printf_filtered ("Connected to %s.\n", args);
1076 push_target (&vx_ops);
1078 /* Save a copy of the target host's name. */
1079 vx_host = savestring (args, strlen (args));
1081 /* Find out the name of the file from which the target was booted
1082 and load its symbol table. */
1084 printf_filtered ("Looking in Unix path for all loaded modules:\n");
1086 if (!net_get_boot_file (&bootFile))
1089 printf_filtered ("\t%s: ", bootFile);
1090 if (catch_errors (symbol_stub, bootFile,
1091 "Error while reading symbols from boot file:\n"))
1092 puts_filtered ("ok\n");
1093 } else if (from_tty)
1094 printf ("VxWorks kernel symbols not loaded.\n");
1097 error ("Can't retrieve boot file name from target machine.");
1099 clnt_freeres (pClient, xdr_wrapstring, &bootFile);
1101 if (net_get_symbols (&loadTable) != 0)
1102 error ("Can't read loaded modules from target machine");
1105 while (++i < loadTable.tbl_size)
1107 QUIT; /* FIXME, avoids clnt_freeres below: mem leak */
1108 pLoadFile = &loadTable.tbl_ent [i];
1112 struct cleanup *old_chain;
1113 char *fullname = NULL;
1115 desc = openp (source_path, 0, pLoadFile->name, O_RDONLY, 0, &fullname);
1117 perror_with_name (pLoadFile->name);
1118 old_chain = make_cleanup (close, desc);
1119 add_file_at_addr (fullname, desc, pLoadFile->txt_addr, pLoadFile->data_addr,
1120 pLoadFile->bss_addr);
1121 do_cleanups (old_chain);
1125 (1) Searches the PATH, not the source path.
1126 (2) data and bss are assumed to be at the usual offsets from text. */
1127 catch_errors (add_symbol_stub, (char *)pLoadFile, (char *)0);
1130 printf_filtered ("Done.\n");
1132 clnt_freeres (pClient, xdr_ldtabl, &loadTable);
1135 /* Takes a task started up outside of gdb and ``attaches'' to it.
1136 This stops it cold in its tracks and allows us to start tracing it. */
1139 vx_attach (args, from_tty)
1146 Ptrace_return ptrace_out;
1150 error_no_arg ("process-id to attach");
1152 pid = strtol (args, &cptr, 0);
1153 if ((cptr == args) || (*cptr != '\0'))
1154 error ("Invalid process-id -- give a single number in decimal or 0xhex");
1157 printf ("Attaching pid %s.\n", local_hex_string(pid));
1159 bzero ((char *)&ptrace_in, sizeof (ptrace_in));
1160 bzero ((char *)&ptrace_out, sizeof (ptrace_out));
1161 ptrace_in.pid = pid;
1163 status = net_ptrace_clnt_call (PTRACE_ATTACH, &ptrace_in, &ptrace_out);
1166 if (ptrace_out.status == -1)
1168 errno = ptrace_out.errno;
1169 perror_with_name ("Attaching remote process");
1173 push_target (&vx_run_ops);
1179 /* detach_command --
1180 takes a program previously attached to and detaches it.
1181 The program resumes execution and will no longer stop
1182 on signals, etc. We better not have left any breakpoints
1183 in the program or it'll die when it hits one. For this
1184 to work, it may be necessary for the process to have been
1185 previously attached. It *might* work if the program was
1186 started via the normal ptrace (PTRACE_TRACEME). */
1189 vx_detach (args, from_tty)
1194 Ptrace_return ptrace_out;
1199 error ("Argument given to VxWorks \"detach\".");
1202 printf ("Detaching pid %s.\n", local_hex_string(inferior_pid));
1204 if (args) /* FIXME, should be possible to leave suspended */
1205 signal = atoi (args);
1207 bzero ((char *)&ptrace_in, sizeof (ptrace_in));
1208 bzero ((char *)&ptrace_out, sizeof (ptrace_out));
1209 ptrace_in.pid = inferior_pid;
1211 status = net_ptrace_clnt_call (PTRACE_DETACH, &ptrace_in, &ptrace_out);
1214 if (ptrace_out.status == -1)
1216 errno = ptrace_out.errno;
1217 perror_with_name ("Detaching VxWorks process");
1221 pop_target (); /* go back to non-executing VxWorks connection */
1224 /* vx_kill -- takes a running task and wipes it out. */
1230 Ptrace_return ptrace_out;
1233 printf ("Killing pid %s.\n", local_hex_string(inferior_pid));
1235 bzero ((char *)&ptrace_in, sizeof (ptrace_in));
1236 bzero ((char *)&ptrace_out, sizeof (ptrace_out));
1237 ptrace_in.pid = inferior_pid;
1239 status = net_ptrace_clnt_call (PTRACE_KILL, &ptrace_in, &ptrace_out);
1242 else if (ptrace_out.status == -1)
1244 errno = ptrace_out.errno;
1245 perror_with_name ("Killing VxWorks process");
1248 /* If it gives good status, the process is *gone*, no events remain.
1249 If the kill failed, assume the process is gone anyhow. */
1251 pop_target (); /* go back to non-executing VxWorks connection */
1254 /* Clean up from the VxWorks process target as it goes away. */
1257 vx_proc_close (quitting)
1260 inferior_pid = 0; /* No longer have a process. */
1266 /* Make an RPC call to the VxWorks target.
1267 Returns RPC status. */
1269 static enum clnt_stat
1270 net_clnt_call (procNum, inProc, in, outProc, out)
1271 enum ptracereq procNum;
1277 enum clnt_stat status;
1279 status = clnt_call (pClient, procNum, inProc, in, outProc, out, rpcTimeout);
1281 if (status != RPC_SUCCESS)
1282 clnt_perrno (status);
1287 /* Clean up before losing control. */
1294 clnt_destroy (pClient); /* The net connection */
1298 free (vx_host); /* The hostname */
1302 /* A vxprocess target should be started via "run" not "target". */
1305 vx_proc_open (name, from_tty)
1309 error ("Use the \"run\" command to start a VxWorks process.");
1312 /* Target ops structure for accessing memory and such over the net */
1314 struct target_ops vx_ops = {
1315 "vxworks", "VxWorks target memory via RPC over TCP/IP",
1316 "Use VxWorks target memory. \n\
1317 Specify the name of the machine to connect to.",
1318 vx_open, vx_close, vx_attach, 0, /* vx_detach, */
1319 0, 0, /* resume, wait */
1320 0, 0, /* read_reg, write_reg */
1321 0, /* prep_to_store, */
1322 vx_xfer_memory, vx_files_info,
1323 0, 0, /* insert_breakpoint, remove_breakpoint */
1324 0, 0, 0, 0, 0, /* terminal stuff */
1328 vx_create_inferior, 0, /* mourn_inferior */
1330 0, /* notice_signals */
1331 core_stratum, 0, /* next */
1332 1, 1, 0, 0, 0, /* all mem, mem, stack, regs, exec */
1333 0, 0, /* Section pointers */
1334 OPS_MAGIC, /* Always the last thing */
1337 /* Target ops structure for accessing VxWorks child processes over the net */
1339 struct target_ops vx_run_ops = {
1340 "vxprocess", "VxWorks process",
1341 "VxWorks process, started by the \"run\" command.",
1342 vx_proc_open, vx_proc_close, 0, vx_detach, /* vx_attach */
1344 vx_read_register, vx_write_register,
1345 vx_prepare_to_store,
1346 vx_xfer_memory, vx_run_files_info,
1347 vx_insert_breakpoint, vx_remove_breakpoint,
1348 0, 0, 0, 0, 0, /* terminal stuff */
1352 0, vx_mourn_inferior,
1354 0, /* notice_signals */
1355 process_stratum, 0, /* next */
1356 0, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
1357 /* all_mem is off to avoid spurious msg in "i files" */
1358 0, 0, /* Section pointers */
1359 OPS_MAGIC, /* Always the last thing */
1361 /* ==> Remember when reading at end of file, there are two "ops" structs here. */
1366 add_target (&vx_ops);
1367 add_target (&vx_run_ops);