* h8300-tdep.c, h8500-tdep.c: Define sim_load only, but not
[deliverable/binutils-gdb.git] / gdb / remote-vx.c
CommitLineData
dd3b648e 1/* Memory-access and commands for remote VxWorks processes, for GDB.
e17960fb 2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
dd3b648e
RP
3 Contributed by Wind River Systems and Cygnus Support.
4
5This file is part of GDB.
6
99a7de40 7This program is free software; you can redistribute it and/or modify
dd3b648e 8it under the terms of the GNU General Public License as published by
99a7de40
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
dd3b648e 11
99a7de40 12This program is distributed in the hope that it will be useful,
dd3b648e
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
99a7de40
JG
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
dd3b648e
RP
20
21#include "defs.h"
dd3b648e
RP
22#include "frame.h"
23#include "inferior.h"
24#include "wait.h"
25#include "target.h"
26#include "gdbcore.h"
27#include "command.h"
28#include "symtab.h"
5998e362 29#include "complaints.h"
56894788 30#include "gdbcmd.h"
dd3b648e 31
dd3b648e
RP
32#include <string.h>
33#include <errno.h>
34#include <signal.h>
35#include <fcntl.h>
36#include <sys/types.h>
dd3b648e 37#include <sys/socket.h>
0d6d92c7 38#define malloc bogon_malloc /* Sun claims "char *malloc()" not void * */
dd3b648e 39#define free bogon_free /* Sun claims "int free()" not void */
b67903ac 40#define realloc bogon_realloc /* Sun claims "char *realloc()", not void * */
dd3b648e 41#include <rpc/rpc.h>
0d6d92c7 42#undef malloc
dd3b648e 43#undef free
b67903ac 44#undef realloc
dd3b648e
RP
45#include <sys/time.h> /* UTek's <rpc/rpc.h> doesn't #incl this */
46#include <netdb.h>
aa942355
SG
47#include "vx-share/ptrace.h"
48#include "vx-share/xdr_ptrace.h"
49#include "vx-share/xdr_ld.h"
50#include "vx-share/xdr_rdb.h"
51#include "vx-share/dbgRpcLib.h"
dd3b648e 52
dd3b648e 53#include <symtab.h>
1ab3bf1b 54
dd3b648e 55extern void symbol_file_command ();
dd3b648e
RP
56extern int stop_soon_quietly; /* for wait_for_inferior */
57
58static int net_ptrace_clnt_call (); /* Forward decl */
59static enum clnt_stat net_clnt_call (); /* Forward decl */
60extern struct target_ops vx_ops, vx_run_ops; /* Forward declaration */
61
62/* Saved name of target host and called function for "info files".
63 Both malloc'd. */
64
65static char *vx_host;
66static char *vx_running; /* Called function */
67
68/* Nonzero means target that is being debugged remotely has a floating
69 point processor. */
70
71static int target_has_fp;
72
73/* Default error message when the network is forking up. */
74
75static const char rpcerr[] = "network target debugging: rpc error";
76
77CLIENT *pClient; /* client used in net debugging */
78static int ptraceSock = RPC_ANYSOCK;
79
80enum clnt_stat net_clnt_call();
81static void parse_args ();
82
83static struct timeval rpcTimeout = { 10, 0 };
84
85static char *skip_white_space ();
86static char *find_white_space ();
87
88/* Tell the VxWorks target system to download a file.
89 The load addresses of the text, data, and bss segments are
afc5505f 90 stored in *pTextAddr, *pDataAddr, and *pBssAddr (respectively).
dd3b648e
RP
91 Returns 0 for success, -1 for failure. */
92
93static int
94net_load (filename, pTextAddr, pDataAddr, pBssAddr)
95 char *filename;
96 CORE_ADDR *pTextAddr;
97 CORE_ADDR *pDataAddr;
98 CORE_ADDR *pBssAddr;
99 {
100 enum clnt_stat status;
101 struct ldfile ldstruct;
102 struct timeval load_timeout;
103
4ed97c9a 104 memset ((char *) &ldstruct, '\0', sizeof (ldstruct));
dd3b648e
RP
105
106 /* We invoke clnt_call () here directly, instead of through
107 net_clnt_call (), because we need to set a large timeout value.
108 The load on the target side can take quite a while, easily
109 more than 10 seconds. The user can kill this call by typing
110 CTRL-C if there really is a problem with the load.
afc5505f 111
dd3b648e
RP
112 Do not change the tv_sec value without checking -- select() imposes
113 a limit of 10**8 on it for no good reason that I can see... */
114
115 load_timeout.tv_sec = 99999999; /* A large number, effectively inf. */
116 load_timeout.tv_usec = 0;
117
118 status = clnt_call (pClient, VX_LOAD, xdr_wrapstring, &filename, xdr_ldfile,
119 &ldstruct, load_timeout);
120
121 if (status == RPC_SUCCESS)
122 {
afc5505f 123 if (*ldstruct.name == 0) /* load failed on VxWorks side */
dd3b648e
RP
124 return -1;
125 *pTextAddr = ldstruct.txt_addr;
126 *pDataAddr = ldstruct.data_addr;
127 *pBssAddr = ldstruct.bss_addr;
128 return 0;
129 }
130 else
131 return -1;
132 }
133
134/* returns 0 if successful, errno if RPC failed or VxWorks complains. */
135
136static int
137net_break (addr, procnum)
138 int addr;
139 u_long procnum;
140 {
141 enum clnt_stat status;
142 int break_status;
143 Rptrace ptrace_in; /* XXX This is stupid. It doesn't need to be a ptrace
144 structure. How about something smaller? */
145
4ed97c9a 146 memset ((char *) &ptrace_in, '\0', sizeof (ptrace_in));
dd3b648e
RP
147 break_status = 0;
148
149 ptrace_in.addr = addr;
150 ptrace_in.pid = inferior_pid;
151
152 status = net_clnt_call (procnum, xdr_rptrace, &ptrace_in, xdr_int,
153 &break_status);
154
155 if (status != RPC_SUCCESS)
156 return errno;
157
158 if (break_status == -1)
159 return ENOMEM;
160 return break_status; /* probably (FIXME) zero */
161 }
162
163/* returns 0 if successful, errno otherwise */
164
8616205a 165static int
dd3b648e
RP
166vx_insert_breakpoint (addr)
167 int addr;
168 {
169 return net_break (addr, VX_BREAK_ADD);
170 }
171
172/* returns 0 if successful, errno otherwise */
173
8616205a 174static int
dd3b648e
RP
175vx_remove_breakpoint (addr)
176 int addr;
177 {
178 return net_break (addr, VX_BREAK_DELETE);
179 }
180
dd3b648e
RP
181/* Start an inferior process and sets inferior_pid to its pid.
182 EXEC_FILE is the file to run.
183 ALLARGS is a string containing the arguments to the program.
184 ENV is the environment vector to pass.
185 Returns process id. Errors reported with error().
186 On VxWorks, we ignore exec_file. */
187
8616205a 188static void
dd3b648e
RP
189vx_create_inferior (exec_file, args, env)
190 char *exec_file;
191 char *args;
192 char **env;
193{
194 enum clnt_stat status;
195 arg_array passArgs;
196 TASK_START taskStart;
197
4ed97c9a
RP
198 memset ((char *) &passArgs, '\0', sizeof (passArgs));
199 memset ((char *) &taskStart, '\0', sizeof (taskStart));
dd3b648e
RP
200
201 /* parse arguments, put them in passArgs */
202
203 parse_args (args, &passArgs);
204
205 if (passArgs.arg_array_len == 0)
206 error ("You must specify a function name to run, and arguments if any");
207
208 status = net_clnt_call (PROCESS_START, xdr_arg_array, &passArgs,
209 xdr_TASK_START, &taskStart);
210
211 if ((status != RPC_SUCCESS) || (taskStart.status == -1))
212 error ("Can't create process on remote target machine");
213
214 /* Save the name of the running function */
215 vx_running = savestring (passArgs.arg_array_val[0],
216 strlen (passArgs.arg_array_val[0]));
217
dd3b648e
RP
218 push_target (&vx_run_ops);
219 inferior_pid = taskStart.pid;
220
dd3b648e
RP
221 /* We will get a trace trap after one instruction.
222 Insert breakpoints and continue. */
223
224 init_wait_for_inferior ();
225
226 /* Set up the "saved terminal modes" of the inferior
227 based on what modes we are starting it with. */
228 target_terminal_init ();
229
230 /* Install inferior's terminal modes. */
231 target_terminal_inferior ();
232
dd3b648e
RP
233 stop_soon_quietly = 1;
234 wait_for_inferior (); /* Get the task spawn event */
235 stop_soon_quietly = 0;
236
237 /* insert_step_breakpoint (); FIXME, do we need this? */
238 proceed(-1, -1, 0);
239}
240
241/* Fill ARGSTRUCT in argc/argv form with the arguments from the
242 argument string ARGSTRING. */
243
244static void
245parse_args (arg_string, arg_struct)
246 register char *arg_string;
247 arg_array *arg_struct;
248{
249 register int arg_count = 0; /* number of arguments */
250 register int arg_index = 0;
251 register char *p0;
252
4ed97c9a 253 memset ((char *) arg_struct, '\0', sizeof (arg_array));
dd3b648e
RP
254
255 /* first count how many arguments there are */
256
257 p0 = arg_string;
258 while (*p0 != '\0')
259 {
260 if (*(p0 = skip_white_space (p0)) == '\0')
261 break;
262 p0 = find_white_space (p0);
263 arg_count++;
264 }
265
266 arg_struct->arg_array_len = arg_count;
267 arg_struct->arg_array_val = (char **) xmalloc ((arg_count + 1)
268 * sizeof (char *));
269
270 /* now copy argument strings into arg_struct. */
271
272 while (*(arg_string = skip_white_space (arg_string)))
273 {
274 p0 = find_white_space (arg_string);
275 arg_struct->arg_array_val[arg_index++] = savestring (arg_string,
276 p0 - arg_string);
277 arg_string = p0;
278 }
279
280 arg_struct->arg_array_val[arg_count] = NULL;
281}
282
283/* Advance a string pointer across whitespace and return a pointer
284 to the first non-white character. */
285
286static char *
287skip_white_space (p)
288 register char *p;
289{
290 while (*p == ' ' || *p == '\t')
291 p++;
292 return p;
293}
294
295/* Search for the first unquoted whitespace character in a string.
296 Returns a pointer to the character, or to the null terminator
297 if no whitespace is found. */
298
299static char *
300find_white_space (p)
301 register char *p;
302{
303 register int c;
304
305 while ((c = *p) != ' ' && c != '\t' && c)
306 {
307 if (c == '\'' || c == '"')
308 {
309 while (*++p != c && *p)
310 {
311 if (*p == '\\')
312 p++;
313 }
314 if (!*p)
315 break;
316 }
317 p++;
318 }
319 return p;
320}
321
322/* Poll the VxWorks target system for an event related
323 to the debugged task.
324 Returns -1 if remote wait failed, task status otherwise. */
325
8616205a 326static int
dd3b648e
RP
327net_wait (pEvent)
328 RDB_EVENT *pEvent;
329{
330 int pid;
331 enum clnt_stat status;
332
4ed97c9a 333 memset ((char *) pEvent, '\0', sizeof (RDB_EVENT));
dd3b648e
RP
334
335 pid = inferior_pid;
336 status = net_clnt_call (PROCESS_WAIT, xdr_int, &pid, xdr_RDB_EVENT, pEvent);
337
338 return (status == RPC_SUCCESS)? pEvent->status: -1;
339}
340
341/* Suspend the remote task.
342 Returns -1 if suspend fails on target system, 0 otherwise. */
343
8616205a 344static int
dd3b648e
RP
345net_quit ()
346{
347 int pid;
348 int quit_status;
349 enum clnt_stat status;
350
351 quit_status = 0;
352
353 /* don't let rdbTask suspend itself by passing a pid of 0 */
354
355 if ((pid = inferior_pid) == 0)
356 return -1;
357
358 status = net_clnt_call (VX_TASK_SUSPEND, xdr_int, &pid, xdr_int,
359 &quit_status);
360
361 return (status == RPC_SUCCESS)? quit_status: -1;
362}
363
364/* Read a register or registers from the remote system. */
365
8616205a 366static void
dd3b648e
RP
367vx_read_register (regno)
368 int regno;
369{
370 int status;
371 Rptrace ptrace_in;
372 Ptrace_return ptrace_out;
8616205a
SG
373 C_bytes in_data;
374 C_bytes out_data;
dd3b648e
RP
375 extern char registers[];
376
4ed97c9a
RP
377 memset ((char *) &ptrace_in, '\0', sizeof (ptrace_in));
378 memset ((char *) &ptrace_out, '\0', sizeof (ptrace_out));
dd3b648e
RP
379
380 /* FIXME, eventually only get the ones we need. */
381 registers_fetched ();
382
383 ptrace_in.pid = inferior_pid;
8616205a 384 ptrace_out.info.more_data = (caddr_t) &out_data;
35799202 385 out_data.len = VX_NUM_REGS * REGISTER_RAW_SIZE (0);
8616205a
SG
386 out_data.bytes = (caddr_t) registers;
387
dd3b648e
RP
388 status = net_ptrace_clnt_call (PTRACE_GETREGS, &ptrace_in, &ptrace_out);
389 if (status)
390 error (rpcerr);
391 if (ptrace_out.status == -1)
392 {
393 errno = ptrace_out.errno;
8616205a 394 perror_with_name ("net_ptrace_clnt_call(PTRACE_GETREGS)");
dd3b648e
RP
395 }
396
35799202 397#ifdef VX_SIZE_FPREGS
afc5505f
KR
398 /* If the target has floating point registers, fetch them.
399 Otherwise, zero the floating point register values in
400 registers[] for good measure, even though we might not
401 need to. */
dd3b648e 402
dd3b648e
RP
403 if (target_has_fp)
404 {
405 ptrace_in.pid = inferior_pid;
8616205a 406 ptrace_out.info.more_data = (caddr_t) &out_data;
35799202 407 out_data.len = VX_SIZE_FPREGS;
8616205a
SG
408 out_data.bytes = (caddr_t) &registers[REGISTER_BYTE (FP0_REGNUM)];
409
dd3b648e
RP
410 status = net_ptrace_clnt_call (PTRACE_GETFPREGS, &ptrace_in, &ptrace_out);
411 if (status)
412 error (rpcerr);
413 if (ptrace_out.status == -1)
414 {
415 errno = ptrace_out.errno;
8616205a 416 perror_with_name ("net_ptrace_clnt_call(PTRACE_GETFPREGS)");
dd3b648e 417 }
dd3b648e
RP
418 }
419 else
420 {
4ed97c9a 421 memset (&registers[REGISTER_BYTE (FP0_REGNUM)], '\0', VX_SIZE_FPREGS);
dd3b648e 422 }
35799202 423#endif /* VX_SIZE_FPREGS */
dd3b648e
RP
424}
425
426/* Prepare to store registers. Since we will store all of them,
427 read out their current values now. */
428
8616205a 429static void
dd3b648e
RP
430vx_prepare_to_store ()
431{
4ddd278f
JG
432 /* Fetch all registers, if any of them are not yet fetched. */
433 read_register_bytes (0, NULL, REGISTER_BYTES);
dd3b648e
RP
434}
435
436
437/* Store our register values back into the inferior.
438 If REGNO is -1, do this for all registers.
439 Otherwise, REGNO specifies which register (so we can save time). */
440 /* FIXME, look at REGNO to save time here */
441
8616205a 442static void
dd3b648e
RP
443vx_write_register (regno)
444 int regno;
445{
8616205a
SG
446 C_bytes in_data;
447 C_bytes out_data;
dd3b648e
RP
448 extern char registers[];
449 int status;
450 Rptrace ptrace_in;
451 Ptrace_return ptrace_out;
452
4ed97c9a
RP
453 memset ((char *) &ptrace_in, '\0', sizeof (ptrace_in));
454 memset ((char *) &ptrace_out, '\0', sizeof (ptrace_out));
dd3b648e 455
8616205a
SG
456 ptrace_in.pid = inferior_pid;
457 ptrace_in.info.ttype = DATA;
458 ptrace_in.info.more_data = (caddr_t) &in_data;
459
460 in_data.bytes = registers;
461
35799202 462 in_data.len = VX_NUM_REGS * sizeof (REGISTER_TYPE);
dd3b648e 463
dd3b648e
RP
464 /* XXX change second param to be a proc number */
465 status = net_ptrace_clnt_call (PTRACE_SETREGS, &ptrace_in, &ptrace_out);
466 if (status)
467 error (rpcerr);
468 if (ptrace_out.status == -1)
469 {
470 errno = ptrace_out.errno;
8616205a 471 perror_with_name ("net_ptrace_clnt_call(PTRACE_SETREGS)");
dd3b648e
RP
472 }
473
35799202 474#ifdef VX_SIZE_FPREGS
dd3b648e
RP
475 /* Store floating point registers if the target has them. */
476
477 if (target_has_fp)
478 {
8616205a
SG
479 ptrace_in.pid = inferior_pid;
480 ptrace_in.info.ttype = DATA;
481 ptrace_in.info.more_data = (caddr_t) &in_data;
482
483
afc5505f 484 in_data.bytes = &registers[REGISTER_BYTE (FP0_REGNUM)];
35799202 485 in_data.len = VX_SIZE_FPREGS;
dd3b648e 486
dd3b648e
RP
487 status = net_ptrace_clnt_call (PTRACE_SETFPREGS, &ptrace_in, &ptrace_out);
488 if (status)
489 error (rpcerr);
490 if (ptrace_out.status == -1)
491 {
492 errno = ptrace_out.errno;
8616205a 493 perror_with_name ("net_ptrace_clnt_call(PTRACE_SETFPREGS)");
dd3b648e
RP
494 }
495 }
35799202 496#endif /* VX_SIZE_FPREGS */
dd3b648e
RP
497}
498
499/* Copy LEN bytes to or from remote inferior's memory starting at MEMADDR
500 to debugger memory starting at MYADDR. WRITE is true if writing to the
501 inferior.
502 Result is the number of bytes written or read (zero if error). The
503 protocol allows us to return a negative count, indicating that we can't
504 handle the current address but can handle one N bytes further, but
505 vxworks doesn't give us that information. */
506
8616205a 507static int
8f1f2a72 508vx_xfer_memory (memaddr, myaddr, len, write, target)
dd3b648e
RP
509 CORE_ADDR memaddr;
510 char *myaddr;
511 int len;
8f1f2a72
JG
512 int write;
513 struct target_ops *target; /* ignored */
dd3b648e
RP
514{
515 int status;
516 Rptrace ptrace_in;
517 Ptrace_return ptrace_out;
518 C_bytes data;
519
4ed97c9a
RP
520 memset ((char *) &ptrace_in, '\0', sizeof (ptrace_in));
521 memset ((char *) &ptrace_out, '\0', sizeof (ptrace_out));
dd3b648e
RP
522
523 ptrace_in.pid = inferior_pid; /* XXX pid unnecessary for READDATA */
524 ptrace_in.addr = (int) memaddr; /* Where from */
525 ptrace_in.data = len; /* How many bytes */
526
527 if (write)
528 {
529 ptrace_in.info.ttype = DATA;
530 ptrace_in.info.more_data = (caddr_t) &data;
531
532 data.bytes = (caddr_t) myaddr; /* Where from */
533 data.len = len; /* How many bytes (again, for XDR) */
534
535 /* XXX change second param to be a proc number */
536 status = net_ptrace_clnt_call (PTRACE_WRITEDATA, &ptrace_in, &ptrace_out);
537 }
538 else
539 {
540 ptrace_out.info.more_data = (caddr_t) &data;
541 data.bytes = myaddr; /* Where to */
542 data.len = len; /* How many (again, for XDR) */
543
544 /* XXX change second param to be a proc number */
545 status = net_ptrace_clnt_call (PTRACE_READDATA, &ptrace_in, &ptrace_out);
546 }
547
548 if (status)
549 error (rpcerr);
550 if (ptrace_out.status == -1)
551 {
552 return 0; /* No bytes moved */
553 }
554 return len; /* Moved *all* the bytes */
555}
556
8616205a 557static void
dd3b648e
RP
558vx_files_info ()
559{
560 printf ("\tAttached to host `%s'", vx_host);
561 printf (", which has %sfloating point", target_has_fp? "": "no ");
562 printf (".\n");
563}
564
8616205a 565static void
dd3b648e
RP
566vx_run_files_info ()
567{
e3af0493 568 printf ("\tRunning %s VxWorks process %s",
dd3b648e 569 vx_running? "child": "attached",
5573d7d4 570 local_hex_string((unsigned long) inferior_pid));
dd3b648e
RP
571 if (vx_running)
572 printf (", function `%s'", vx_running);
573 printf(".\n");
574}
575
8616205a 576static void
25286543
SG
577vx_resume (pid, step, siggnal)
578 int pid;
dd3b648e
RP
579 int step;
580 int siggnal;
581{
582 int status;
583 Rptrace ptrace_in;
584 Ptrace_return ptrace_out;
585
586 if (siggnal != 0 && siggnal != stop_signal)
587 error ("Cannot send signals to VxWorks processes");
588
4ed97c9a
RP
589 memset ((char *) &ptrace_in, '\0', sizeof (ptrace_in));
590 memset ((char *) &ptrace_out, '\0', sizeof (ptrace_out));
dd3b648e 591
25286543 592 ptrace_in.pid = pid;
dd3b648e
RP
593 ptrace_in.addr = 1; /* Target side insists on this, or it panics. */
594
595 /* XXX change second param to be a proc number */
596 status = net_ptrace_clnt_call (step? PTRACE_SINGLESTEP: PTRACE_CONT,
597 &ptrace_in, &ptrace_out);
598 if (status)
599 error (rpcerr);
600 if (ptrace_out.status == -1)
601 {
602 errno = ptrace_out.errno;
603 perror_with_name ("Resuming remote process");
604 }
605}
606
8616205a 607static void
dd3b648e
RP
608vx_mourn_inferior ()
609{
610 pop_target (); /* Pop back to no-child state */
611 generic_mourn_inferior ();
612}
613
614\f
615/* This function allows the addition of incrementally linked object files. */
616
8616205a 617static void
dd3b648e
RP
618vx_load_command (arg_string, from_tty)
619 char* arg_string;
620 int from_tty;
621{
622 CORE_ADDR text_addr;
623 CORE_ADDR data_addr;
624 CORE_ADDR bss_addr;
625
626 if (arg_string == 0)
627 error ("The load command takes a file name");
628
629 arg_string = tilde_expand (arg_string);
630 make_cleanup (free, arg_string);
631
632 dont_repeat ();
633
634 QUIT;
635 immediate_quit++;
636 if (net_load (arg_string, &text_addr, &data_addr, &bss_addr) == -1)
637 error ("Load failed on target machine");
638 immediate_quit--;
639
640 /* FIXME, for now we ignore data_addr and bss_addr. */
4ed3a9ea 641 symbol_file_add (arg_string, from_tty, text_addr, 0, 0, 0);
dd3b648e
RP
642}
643
644#ifdef FIXME /* Not ready for prime time */
645/* Single step the target program at the source or machine level.
646 Takes an error exit if rpc fails.
647 Returns -1 if remote single-step operation fails, else 0. */
648
649static int
650net_step ()
651{
652 enum clnt_stat status;
653 int step_status;
654 SOURCE_STEP source_step;
655
656 source_step.taskId = inferior_pid;
657
658 if (step_range_end)
659 {
660 source_step.startAddr = step_range_start;
661 source_step.endAddr = step_range_end;
662 }
663 else
664 {
665 source_step.startAddr = 0;
666 source_step.endAddr = 0;
667 }
668
669 status = net_clnt_call (VX_SOURCE_STEP, xdr_SOURCE_STEP, &source_step,
670 xdr_int, &step_status);
671
672 if (status == RPC_SUCCESS)
673 return step_status;
674 else
675 error (rpcerr);
676}
677#endif
678
679/* Emulate ptrace using RPC calls to the VxWorks target system.
680 Returns nonzero (-1) if RPC status to VxWorks is bad, 0 otherwise. */
681
682static int
683net_ptrace_clnt_call (request, pPtraceIn, pPtraceOut)
684 enum ptracereq request;
685 Rptrace *pPtraceIn;
686 Ptrace_return *pPtraceOut;
687{
688 enum clnt_stat status;
689
690 status = net_clnt_call (request, xdr_rptrace, pPtraceIn, xdr_ptrace_return,
691 pPtraceOut);
692
693 if (status != RPC_SUCCESS)
694 return -1;
695
696 return 0;
697}
698
699/* Query the target for the name of the file from which VxWorks was
700 booted. pBootFile is the address of a pointer to the buffer to
701 receive the file name; if the pointer pointed to by pBootFile is
702 NULL, memory for the buffer will be allocated by XDR.
703 Returns -1 if rpc failed, 0 otherwise. */
704
8616205a 705static int
dd3b648e
RP
706net_get_boot_file (pBootFile)
707 char **pBootFile;
708{
709 enum clnt_stat status;
710
711 status = net_clnt_call (VX_BOOT_FILE_INQ, xdr_void, (char *) 0,
712 xdr_wrapstring, pBootFile);
713 return (status == RPC_SUCCESS) ? 0 : -1;
714}
715
716/* Fetch a list of loaded object modules from the VxWorks target.
717 Returns -1 if rpc failed, 0 otherwise
718 There's no way to check if the returned loadTable is correct.
719 VxWorks doesn't check it. */
720
8616205a 721static int
dd3b648e
RP
722net_get_symbols (pLoadTable)
723 ldtabl *pLoadTable; /* return pointer to ldtabl here */
724{
725 enum clnt_stat status;
726
4ed97c9a 727 memset ((char *) pLoadTable, '\0', sizeof (struct ldtabl));
dd3b648e
RP
728
729 status = net_clnt_call (VX_STATE_INQ, xdr_void, 0, xdr_ldtabl, pLoadTable);
730 return (status == RPC_SUCCESS) ? 0 : -1;
731}
732
733/* Look up a symbol in the VxWorks target's symbol table.
734 Returns status of symbol read on target side (0=success, -1=fail)
735 Returns -1 and complain()s if rpc fails. */
736
737struct complaint cant_contact_target =
738 {"Lost contact with VxWorks target", 0, 0};
739
8616205a 740static int
dd3b648e
RP
741vx_lookup_symbol (name, pAddr)
742 char *name; /* symbol name */
743 CORE_ADDR *pAddr;
744{
745 enum clnt_stat status;
746 SYMBOL_ADDR symbolAddr;
747
748 *pAddr = 0;
4ed97c9a 749 memset ((char *) &symbolAddr, '\0', sizeof (symbolAddr));
dd3b648e
RP
750
751 status = net_clnt_call (VX_SYMBOL_INQ, xdr_wrapstring, &name,
752 xdr_SYMBOL_ADDR, &symbolAddr);
753 if (status != RPC_SUCCESS) {
51b80b00 754 complain (&cant_contact_target);
dd3b648e
RP
755 return -1;
756 }
757
758 *pAddr = symbolAddr.addr;
759 return symbolAddr.status;
760}
761
762/* Check to see if the VxWorks target has a floating point coprocessor.
763 Returns 1 if target has floating point processor, 0 otherwise.
764 Calls error() if rpc fails. */
765
8616205a 766static int
dd3b648e
RP
767net_check_for_fp ()
768{
769 enum clnt_stat status;
770 bool_t fp = 0; /* true if fp processor is present on target board */
771
772 status = net_clnt_call (VX_FP_INQUIRE, xdr_void, 0, xdr_bool, &fp);
773 if (status != RPC_SUCCESS)
774 error (rpcerr);
775
776 return (int) fp;
777}
778
779/* Establish an RPC connection with the VxWorks target system.
780 Calls error () if unable to establish connection. */
781
8616205a 782static void
dd3b648e
RP
783net_connect (host)
784 char *host;
785{
786 struct sockaddr_in destAddr;
787 struct hostent *destHost;
ebe8362f
JK
788 unsigned long addr;
789
790 /* Get the internet address for the given host. Allow a numeric
791 IP address or a hostname. */
dd3b648e 792
ebe8362f
JK
793 addr = inet_addr (host);
794 if (addr == -1)
795 {
796 destHost = (struct hostent *) gethostbyname (host);
797 if (destHost == NULL)
798 error ("Invalid hostname. Couldn't find remote host address.");
799 addr = * (unsigned long *) destHost->h_addr;
800 }
dd3b648e 801
4ed97c9a 802 memset (&destAddr, '\0', sizeof (destAddr));
dd3b648e 803
ebe8362f 804 destAddr.sin_addr.s_addr = addr;
dd3b648e
RP
805 destAddr.sin_family = AF_INET;
806 destAddr.sin_port = 0; /* set to actual port that remote
807 ptrace is listening on. */
808
809 /* Create a tcp client transport on which to issue
810 calls to the remote ptrace server. */
811
812 ptraceSock = RPC_ANYSOCK;
813 pClient = clnttcp_create (&destAddr, RDBPROG, RDBVERS, &ptraceSock, 0, 0);
814 /* FIXME, here is where we deal with different version numbers of the proto */
815
816 if (pClient == NULL)
817 {
818 clnt_pcreateerror ("\tnet_connect");
819 error ("Couldn't connect to remote target.");
820 }
821}
822\f
823/* Sleep for the specified number of milliseconds
824 * (assumed to be less than 1000).
825 * If select () is interrupted, returns immediately;
826 * takes an error exit if select () fails for some other reason.
827 */
828
829static void
830sleep_ms (ms)
831 long ms;
832{
833 struct timeval select_timeout;
834 int status;
835
836 select_timeout.tv_sec = 0;
837 select_timeout.tv_usec = ms * 1000;
838
839 status = select (0, (fd_set *) 0, (fd_set *) 0, (fd_set *) 0, &select_timeout);
840
841 if (status < 0 && errno != EINTR)
842 perror_with_name ("select");
843}
844
845/* Wait for control to return from inferior to debugger.
846 If inferior gets a signal, we may decide to start it up again
847 instead of returning. That is why there is a loop in this function.
848 When this function actually returns it means the inferior
849 should be left stopped and GDB should read more commands. */
850
851/* For network debugging with VxWorks.
852 * VxWorks knows when tasks hit breakpoints, receive signals, exit, etc,
853 * so vx_wait() receives this information directly from
854 * VxWorks instead of trying to figure out what happenned via a wait() call.
855 */
856
857static int
858vx_wait (status)
859 int *status;
860{
861 register int pid;
862 WAITTYPE w;
863 RDB_EVENT rdbEvent;
864 int quit_failed;
865
866 do
867 {
868 /* If CTRL-C is hit during this loop,
869 suspend the inferior process. */
870
871 quit_failed = 0;
872 if (quit_flag)
873 {
874 quit_failed = (net_quit () == -1);
875 quit_flag = 0;
876 }
877
878 /* If a net_quit () or net_wait () call has failed,
879 allow the user to break the connection with the target.
880 We can't simply error () out of this loop, since the
881 data structures representing the state of the inferior
882 are in an inconsistent state. */
883
884 if (quit_failed || net_wait (&rdbEvent) == -1)
885 {
886 terminal_ours ();
887 if (query ("Can't %s. Disconnect from target system? ",
888 (quit_failed) ? "suspend remote task"
889 : "get status of remote task"))
890 {
891 target_mourn_inferior();
892 error ("Use the \"target\" command to reconnect.");
893 }
894 else
895 {
896 terminal_inferior ();
897 continue;
898 }
899 }
900
901 pid = rdbEvent.taskId;
902 if (pid == 0)
903 {
904 sleep_ms (200); /* FIXME Don't kill the network too badly */
905 }
906 else if (pid != inferior_pid)
5573d7d4
JK
907 fatal ("Bad pid for debugged task: %s\n",
908 local_hex_string((unsigned long) pid));
dd3b648e
RP
909 } while (pid == 0);
910
911 /* FIXME, eventually do more then SIGTRAP on everything... */
912 switch (rdbEvent.eventType)
913 {
914 case EVENT_EXIT:
915 WSETEXIT (w, 0);
916 /* FIXME is it possible to distinguish between a
917 XXX normal vs abnormal exit in VxWorks? */
918 break;
919
920 case EVENT_START: /* Task was just started. */
921 WSETSTOP (w, SIGTRAP);
922 break;
923
924 case EVENT_STOP:
925 WSETSTOP (w, SIGTRAP);
926 /* XXX was it stopped by a signal? act accordingly */
927 break;
928
929 case EVENT_BREAK: /* Breakpoint was hit. */
930 WSETSTOP (w, SIGTRAP);
931 break;
932
933 case EVENT_SUSPEND: /* Task was suspended, probably by ^C. */
934 WSETSTOP (w, SIGINT);
935 break;
936
937 case EVENT_BUS_ERR: /* Task made evil nasty reference. */
938 WSETSTOP (w, SIGBUS);
939 break;
940
941 case EVENT_ZERO_DIV: /* Division by zero */
942 WSETSTOP (w, SIGFPE); /* Like Unix, call it a float exception. */
021959e2 943 break;
dd3b648e
RP
944
945 case EVENT_SIGNAL:
946 /* The target is not running Unix, and its
947 faults/traces do not map nicely into Unix signals.
948 Make sure they do not get confused with Unix signals
949 by numbering them with values higher than the highest
950 legal Unix signal. code in the arch-dependent PRINT_RANDOM_SIGNAL
951 routine will interpret the value for wait_for_inferior. */
952 WSETSTOP (w, rdbEvent.sigType + NSIG);
953 break;
954 } /* switch */
955 *status = *(int *)&w; /* Grumble union wait crap Grumble */
956 return pid;
957}
958\f
959static int
960symbol_stub (arg)
bdbd5f50 961 char *arg;
dd3b648e 962{
bdbd5f50 963 symbol_file_command (arg, 0);
dd3b648e
RP
964 return 1;
965}
966
967static int
968add_symbol_stub (arg)
bdbd5f50 969 char *arg;
dd3b648e
RP
970{
971 struct ldfile *pLoadFile = (struct ldfile *)arg;
972
973 printf("\t%s: ", pLoadFile->name);
4ed3a9ea 974 symbol_file_add (pLoadFile->name, 0, pLoadFile->txt_addr, 0, 0, 0);
dd3b648e
RP
975 printf ("ok\n");
976 return 1;
977}
978/* Target command for VxWorks target systems.
979
980 Used in vxgdb. Takes the name of a remote target machine
981 running vxWorks and connects to it to initialize remote network
982 debugging. */
983
984static void
985vx_open (args, from_tty)
986 char *args;
987 int from_tty;
988{
989 extern int close ();
990 char *bootFile;
991 extern char *source_path;
992 struct ldtabl loadTable;
993 struct ldfile *pLoadFile;
994 int i;
995 extern CLIENT *pClient;
996
997 if (!args)
998 error_no_arg ("target machine name");
999
70dcc196
JK
1000 target_preopen (from_tty);
1001
dd3b648e
RP
1002 unpush_target (&vx_ops);
1003 printf ("Attaching remote machine across net...\n");
1004 fflush (stdout);
1005
1006 /* Allow the user to kill the connect attempt by typing ^C.
1007 Wait until the call to target_has_fp () completes before
1008 disallowing an immediate quit, since even if net_connect ()
1009 is successful, the remote debug server might be hung. */
1010
1011 immediate_quit++;
1012
1013 net_connect (args);
1014 target_has_fp = net_check_for_fp ();
1015 printf_filtered ("Connected to %s.\n", args);
1016
1017 immediate_quit--;
1018
1019 push_target (&vx_ops);
1020
1021 /* Save a copy of the target host's name. */
1022 vx_host = savestring (args, strlen (args));
1023
1024 /* Find out the name of the file from which the target was booted
1025 and load its symbol table. */
1026
1027 printf_filtered ("Looking in Unix path for all loaded modules:\n");
1028 bootFile = NULL;
1029 if (!net_get_boot_file (&bootFile))
1030 {
1031 if (*bootFile) {
1032 printf_filtered ("\t%s: ", bootFile);
9748446f
JK
1033 if (catch_errors
1034 (symbol_stub, bootFile,
1035 "Error while reading symbols from boot file:\n", RETURN_MASK_ALL))
dd3b648e
RP
1036 puts_filtered ("ok\n");
1037 } else if (from_tty)
1038 printf ("VxWorks kernel symbols not loaded.\n");
1039 }
1040 else
1041 error ("Can't retrieve boot file name from target machine.");
1042
1043 clnt_freeres (pClient, xdr_wrapstring, &bootFile);
1044
1045 if (net_get_symbols (&loadTable) != 0)
1046 error ("Can't read loaded modules from target machine");
1047
1048 i = 0-1;
1049 while (++i < loadTable.tbl_size)
1050 {
1051 QUIT; /* FIXME, avoids clnt_freeres below: mem leak */
1052 pLoadFile = &loadTable.tbl_ent [i];
1053#ifdef WRS_ORIG
1054 {
1055 register int desc;
1056 struct cleanup *old_chain;
1057 char *fullname = NULL;
1058
1059 desc = openp (source_path, 0, pLoadFile->name, O_RDONLY, 0, &fullname);
1060 if (desc < 0)
1061 perror_with_name (pLoadFile->name);
1062 old_chain = make_cleanup (close, desc);
1063 add_file_at_addr (fullname, desc, pLoadFile->txt_addr, pLoadFile->data_addr,
1064 pLoadFile->bss_addr);
1065 do_cleanups (old_chain);
1066 }
1067#else
1068 /* Botches, FIXME:
1069 (1) Searches the PATH, not the source path.
1070 (2) data and bss are assumed to be at the usual offsets from text. */
9748446f
JK
1071 catch_errors (add_symbol_stub, (char *)pLoadFile, (char *)0,
1072 RETURN_MASK_ALL);
dd3b648e
RP
1073#endif
1074 }
1075 printf_filtered ("Done.\n");
1076
1077 clnt_freeres (pClient, xdr_ldtabl, &loadTable);
1078}
1079\f
836e343b 1080/* Takes a task started up outside of gdb and ``attaches'' to it.
dd3b648e
RP
1081 This stops it cold in its tracks and allows us to start tracing it. */
1082
1083static void
1084vx_attach (args, from_tty)
1085 char *args;
1086 int from_tty;
1087{
1088 int pid;
1089 char *cptr = 0;
1090 Rptrace ptrace_in;
1091 Ptrace_return ptrace_out;
1092 int status;
1093
dd3b648e
RP
1094 if (!args)
1095 error_no_arg ("process-id to attach");
1096
1097 pid = strtol (args, &cptr, 0);
1098 if ((cptr == args) || (*cptr != '\0'))
1099 error ("Invalid process-id -- give a single number in decimal or 0xhex");
1100
1101 if (from_tty)
5573d7d4
JK
1102 printf ("Attaching pid %s.\n",
1103 local_hex_string((unsigned long) pid));
dd3b648e 1104
4ed97c9a
RP
1105 memset ((char *)&ptrace_in, '\0', sizeof (ptrace_in));
1106 memset ((char *)&ptrace_out, '\0', sizeof (ptrace_out));
dd3b648e
RP
1107 ptrace_in.pid = pid;
1108
1109 status = net_ptrace_clnt_call (PTRACE_ATTACH, &ptrace_in, &ptrace_out);
1110 if (status == -1)
1111 error (rpcerr);
1112 if (ptrace_out.status == -1)
1113 {
1114 errno = ptrace_out.errno;
1115 perror_with_name ("Attaching remote process");
1116 }
1117
1118 /* It worked... */
1119 push_target (&vx_run_ops);
1120 inferior_pid = pid;
1121 vx_running = 0;
dd3b648e
RP
1122}
1123
1124
1125/* detach_command --
1126 takes a program previously attached to and detaches it.
1127 The program resumes execution and will no longer stop
1128 on signals, etc. We better not have left any breakpoints
1129 in the program or it'll die when it hits one. For this
1130 to work, it may be necessary for the process to have been
1131 previously attached. It *might* work if the program was
1132 started via the normal ptrace (PTRACE_TRACEME). */
1133
1134static void
1135vx_detach (args, from_tty)
1136 char *args;
1137 int from_tty;
1138{
1139 Rptrace ptrace_in;
1140 Ptrace_return ptrace_out;
1141 int signal = 0;
1142 int status;
1143
1144 if (args)
1145 error ("Argument given to VxWorks \"detach\".");
1146
1147 if (from_tty)
5573d7d4
JK
1148 printf ("Detaching pid %s.\n",
1149 local_hex_string((unsigned long) inferior_pid));
dd3b648e
RP
1150
1151 if (args) /* FIXME, should be possible to leave suspended */
1152 signal = atoi (args);
1153
4ed97c9a
RP
1154 memset ((char *)&ptrace_in, '\0', sizeof (ptrace_in));
1155 memset ((char *)&ptrace_out, '\0', sizeof (ptrace_out));
dd3b648e
RP
1156 ptrace_in.pid = inferior_pid;
1157
1158 status = net_ptrace_clnt_call (PTRACE_DETACH, &ptrace_in, &ptrace_out);
1159 if (status == -1)
1160 error (rpcerr);
1161 if (ptrace_out.status == -1)
1162 {
1163 errno = ptrace_out.errno;
1164 perror_with_name ("Detaching VxWorks process");
1165 }
1166
1167 inferior_pid = 0;
1168 pop_target (); /* go back to non-executing VxWorks connection */
1169}
1170
1171/* vx_kill -- takes a running task and wipes it out. */
1172
1173static void
afc5505f 1174vx_kill ()
dd3b648e
RP
1175{
1176 Rptrace ptrace_in;
1177 Ptrace_return ptrace_out;
1178 int status;
1179
5573d7d4 1180 printf ("Killing pid %s.\n", local_hex_string((unsigned long) inferior_pid));
dd3b648e 1181
4ed97c9a
RP
1182 memset ((char *)&ptrace_in, '\0', sizeof (ptrace_in));
1183 memset ((char *)&ptrace_out, '\0', sizeof (ptrace_out));
dd3b648e
RP
1184 ptrace_in.pid = inferior_pid;
1185
1186 status = net_ptrace_clnt_call (PTRACE_KILL, &ptrace_in, &ptrace_out);
1187 if (status == -1)
195b44d9
ILT
1188 warning (rpcerr);
1189 else if (ptrace_out.status == -1)
dd3b648e
RP
1190 {
1191 errno = ptrace_out.errno;
1192 perror_with_name ("Killing VxWorks process");
1193 }
1194
195b44d9
ILT
1195 /* If it gives good status, the process is *gone*, no events remain.
1196 If the kill failed, assume the process is gone anyhow. */
dd3b648e
RP
1197 inferior_pid = 0;
1198 pop_target (); /* go back to non-executing VxWorks connection */
1199}
1200
1201/* Clean up from the VxWorks process target as it goes away. */
1202
8616205a 1203static void
dd3b648e
RP
1204vx_proc_close (quitting)
1205 int quitting;
1206{
1207 inferior_pid = 0; /* No longer have a process. */
1208 if (vx_running)
1209 free (vx_running);
1210 vx_running = 0;
1211}
1212\f
dd3b648e
RP
1213/* Make an RPC call to the VxWorks target.
1214 Returns RPC status. */
1215
1216static enum clnt_stat
1217net_clnt_call (procNum, inProc, in, outProc, out)
1218 enum ptracereq procNum;
1219 xdrproc_t inProc;
1220 char *in;
1221 xdrproc_t outProc;
1222 char *out;
1223{
1224 enum clnt_stat status;
1225
1226 status = clnt_call (pClient, procNum, inProc, in, outProc, out, rpcTimeout);
1227
1228 if (status != RPC_SUCCESS)
1229 clnt_perrno (status);
1230
1231 return status;
1232}
1233
1234/* Clean up before losing control. */
1235
8616205a 1236static void
dd3b648e
RP
1237vx_close (quitting)
1238 int quitting;
1239{
1240 if (pClient)
1241 clnt_destroy (pClient); /* The net connection */
1242 pClient = 0;
1243
1244 if (vx_host)
1245 free (vx_host); /* The hostname */
1246 vx_host = 0;
1247}
1248
70dcc196
JK
1249/* A vxprocess target should be started via "run" not "target". */
1250/*ARGSUSED*/
1251static void
1252vx_proc_open (name, from_tty)
1253 char *name;
1254 int from_tty;
1255{
1256 error ("Use the \"run\" command to start a VxWorks process.");
1257}
dd3b648e
RP
1258
1259/* Target ops structure for accessing memory and such over the net */
1260
1261struct target_ops vx_ops = {
1262 "vxworks", "VxWorks target memory via RPC over TCP/IP",
70dcc196
JK
1263 "Use VxWorks target memory. \n\
1264Specify the name of the machine to connect to.",
dd3b648e
RP
1265 vx_open, vx_close, vx_attach, 0, /* vx_detach, */
1266 0, 0, /* resume, wait */
1267 0, 0, /* read_reg, write_reg */
a03d4f8e 1268 0, /* prep_to_store, */
dd3b648e
RP
1269 vx_xfer_memory, vx_files_info,
1270 0, 0, /* insert_breakpoint, remove_breakpoint */
1271 0, 0, 0, 0, 0, /* terminal stuff */
1272 0, /* vx_kill, */
8f1f2a72 1273 vx_load_command,
dd3b648e
RP
1274 vx_lookup_symbol,
1275 vx_create_inferior, 0, /* mourn_inferior */
5ee4e16c 1276 0, /* can_run */
3950a34e 1277 0, /* notice_signals */
dd3b648e
RP
1278 core_stratum, 0, /* next */
1279 1, 1, 0, 0, 0, /* all mem, mem, stack, regs, exec */
8f1f2a72 1280 0, 0, /* Section pointers */
dd3b648e
RP
1281 OPS_MAGIC, /* Always the last thing */
1282};
1283
1284/* Target ops structure for accessing VxWorks child processes over the net */
1285
1286struct target_ops vx_run_ops = {
1287 "vxprocess", "VxWorks process",
70dcc196
JK
1288 "VxWorks process, started by the \"run\" command.",
1289 vx_proc_open, vx_proc_close, 0, vx_detach, /* vx_attach */
dd3b648e
RP
1290 vx_resume, vx_wait,
1291 vx_read_register, vx_write_register,
a03d4f8e 1292 vx_prepare_to_store,
dd3b648e
RP
1293 vx_xfer_memory, vx_run_files_info,
1294 vx_insert_breakpoint, vx_remove_breakpoint,
1295 0, 0, 0, 0, 0, /* terminal stuff */
1296 vx_kill,
8f1f2a72 1297 vx_load_command,
dd3b648e
RP
1298 vx_lookup_symbol,
1299 0, vx_mourn_inferior,
5ee4e16c 1300 0, /* can_run */
3950a34e 1301 0, /* notice_signals */
dd3b648e
RP
1302 process_stratum, 0, /* next */
1303 0, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */
1304 /* all_mem is off to avoid spurious msg in "i files" */
8f1f2a72 1305 0, 0, /* Section pointers */
dd3b648e
RP
1306 OPS_MAGIC, /* Always the last thing */
1307};
1308/* ==> Remember when reading at end of file, there are two "ops" structs here. */
1309\f
1310void
1311_initialize_vx ()
1312{
56894788
RP
1313
1314 add_show_from_set
1c5d6049 1315 (add_set_cmd ("vxworks-timeout", class_support, var_uinteger,
56894788
RP
1316 (char *) &rpcTimeout.tv_sec,
1317 "Set seconds to wait for rpc calls to return.\n\
1318Set the number of seconds to wait for rpc calls to return.", &setlist),
1319 &showlist);
1320
1321 add_target (&vx_ops);
dd3b648e
RP
1322 add_target (&vx_run_ops);
1323}
This page took 0.193485 seconds and 4 git commands to generate.