1 /* Remote target system call support.
2 Copyright 1997, 1998 Free Software Foundation, Inc.
3 Contributed by Cygnus Solutions.
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 GAS; see the file COPYING. If not, write to the Free Software
19 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* This interface isn't intended to be specific to any particular kind
22 of remote (hardware, simulator, whatever). As such, support for it
23 (e.g. sim/common/callback.c) should *not* live in the simulator source
24 tree, nor should it live in the gdb source tree. K&R C must be
31 #include "libiberty.h"
32 #ifdef ANSI_PROTOTYPES
47 #include <sys/types.h>
50 #include "targ-vals.h"
56 #define ENAMETOOLONG EINVAL
59 /* Maximum length of a path name. */
61 #define MAX_PATH_LEN 1024
64 /* When doing file read/writes, do this many bytes at a time. */
65 #define FILE_XFR_SIZE 4096
67 /* FIXME: for now, need to consider target word size. */
69 #define TADDR unsigned long
71 /* Utility of cb_syscall to fetch a path name or other string from the target.
72 The result is 0 for success or a host errno value. */
75 get_string (cb
, sc
, buf
, buflen
, addr
)
84 for (p
= buf
, pend
= buf
+ buflen
; p
< pend
; ++p
, ++addr
)
86 /* No, it isn't expected that this would cause one transaction with
87 the remote target for each byte. The target could send the
88 path name along with the syscall request, and cache the file
89 name somewhere (or otherwise tweak this as desired). */
90 unsigned int count
= (*sc
->read_mem
) (cb
, sc
, addr
, p
, 1);
102 /* Utility of cb_syscall to fetch a path name.
103 The buffer is malloc'd and the address is stored in BUFP.
104 The result is that of get_string.
105 If an error occurs, no buffer is left malloc'd. */
108 get_path (cb
, sc
, addr
, bufp
)
114 char *buf
= xmalloc (MAX_PATH_LEN
);
117 result
= get_string (cb
, sc
, buf
, MAX_PATH_LEN
, addr
);
125 /* Perform a system call on behalf of the target. */
132 TWORD result
= 0, errcode
= 0;
134 if (sc
->magic
!= CB_SYSCALL_MAGIC
)
137 switch (cb_target_to_host_syscall (cb
, sc
->func
))
139 #if 0 /* FIXME: wip */
140 case CB_SYS_argvlen
:
142 /* Compute how much space is required to store the argv,envp
143 strings so that the program can allocate the space and then
144 call SYS_argv to fetch the values. */
145 int addr_size
= cb
->addr_size
;
146 int argc
,envc
,arglen
,envlen
;
147 const char **argv
= cb
->init_argv
;
148 const char **envp
= cb
->init_envp
;
153 for ( ; argv
[argc
]; ++argc
)
154 arglen
+= strlen (argv
[argc
]) + 1;
159 for ( ; envp
[envc
]; ++envc
)
160 envlen
+= strlen (envp
[envc
]) + 1;
162 result
= arglen
+ envlen
;
168 /* Pointer to target's buffer. */
169 TADDR tbuf
= sc
->arg1
;
171 int bufsize
= sc
->arg2
;
172 /* Q is the target address of where all the strings go. */
174 int word_size
= cb
->word_size
;
176 const char **argv
= cb
->init_argv
;
177 const char **envp
= cb
->init_envp
;
182 for ( ; argv
[argc
]; ++argc
)
184 int len
= strlen (argv
[argc
]);
185 int written
= (*sc
->write_mem
) (cb
, sc
, tbuf
, argv
[argc
], len
+ 1);
195 if ((*sc
->write_mem
) (cb
, sc
, tbuf
, "", 1) != 1)
205 for ( ; envp
[envc
]; ++envc
)
207 int len
= strlen (envp
[envc
]);
208 int written
= (*sc
->write_mem
) (cb
, sc
, tbuf
, envp
[envc
], len
+ 1);
218 if ((*sc
->write_mem
) (cb
, sc
, tbuf
, "", 1) != 1)
231 /* Caller must catch and handle. */
238 errcode
= get_path (cb
, sc
, sc
->arg1
, &path
);
244 result
= (*cb
->open
) (cb
, path
, sc
->arg2
/*, sc->arg3*/);
252 result
= (*cb
->close
) (cb
, sc
->arg1
);
259 /* ??? Perfect handling of error conditions may require only one
260 call to cb->read. One can't assume all the data is
261 contiguously stored in host memory so that would require
262 malloc'ing/free'ing the space. Maybe later. */
263 char buf
[FILE_XFR_SIZE
];
265 TADDR addr
= sc
->arg2
;
266 size_t count
= sc
->arg3
;
267 size_t bytes_read
= 0;
273 result
= (int) (*cb
->read_stdin
) (cb
, buf
,
274 (count
< FILE_XFR_SIZE
275 ? count
: FILE_XFR_SIZE
));
277 result
= (int) (*cb
->read
) (cb
, fd
, buf
,
278 (count
< FILE_XFR_SIZE
279 ? count
: FILE_XFR_SIZE
));
282 if (result
== 0) /* EOF */
284 bytes_written
= (*sc
->write_mem
) (cb
, sc
, addr
, buf
, result
);
285 if (bytes_written
!= result
)
291 bytes_read
+= result
;
294 /* If this is a short read, don't go back for more */
295 if (result
!= FILE_XFR_SIZE
)
304 /* ??? Perfect handling of error conditions may require only one
305 call to cb->write. One can't assume all the data is
306 contiguously stored in host memory so that would require
307 malloc'ing/free'ing the space. Maybe later. */
308 char buf
[FILE_XFR_SIZE
];
310 TADDR addr
= sc
->arg2
;
311 size_t count
= sc
->arg3
;
313 size_t bytes_written
= 0;
317 int bytes_to_read
= count
< FILE_XFR_SIZE
? count
: FILE_XFR_SIZE
;
318 bytes_read
= (*sc
->read_mem
) (cb
, sc
, addr
, buf
, bytes_to_read
);
319 if (bytes_read
!= bytes_to_read
)
327 result
= (int) (*cb
->write_stdout
) (cb
, buf
, bytes_read
);
328 (*cb
->flush_stdout
) (cb
);
332 result
= (int) (*cb
->write_stderr
) (cb
, buf
, bytes_read
);
333 (*cb
->flush_stderr
) (cb
);
336 result
= (int) (*cb
->write
) (cb
, fd
, buf
, bytes_read
);
339 bytes_written
+= result
;
343 result
= bytes_written
;
350 unsigned long offset
= sc
->arg2
;
351 int whence
= sc
->arg3
;
353 result
= (*cb
->lseek
) (cb
, fd
, offset
, whence
);
363 errcode
= get_path (cb
, sc
, sc
->arg1
, &path
);
369 result
= (*cb
->unlink
) (cb
, path
);
381 TADDR addr
= sc
->arg2
;
383 errcode
= get_path (cb
, sc
, sc
->arg1
, &path
);
389 result
= (*cb
->stat
) (cb
, path
, &statbuf
);
393 buflen
= cb_host_to_target_stat (cb
, NULL
, NULL
);
394 buf
= xmalloc (buflen
);
395 if (cb_host_to_target_stat (cb
, &statbuf
, buf
) != buflen
)
397 /* The translation failed. This is due to an internal
398 host program error, not the target's fault. */
404 if ((*sc
->write_mem
) (cb
, sc
, addr
, buf
, buflen
) != buflen
)
420 TADDR addr
= sc
->arg2
;
422 result
= (*cb
->fstat
) (cb
, sc
->arg1
, &statbuf
);
425 buflen
= cb_host_to_target_stat (cb
, NULL
, NULL
);
426 buf
= xmalloc (buflen
);
427 if (cb_host_to_target_stat (cb
, &statbuf
, buf
) != buflen
)
429 /* The translation failed. This is due to an internal
430 host program error, not the target's fault. */
436 if ((*sc
->write_mem
) (cb
, sc
, addr
, buf
, buflen
) != buflen
)
449 /* FIXME: May wish to change CB_SYS_time to something else.
450 We might also want gettimeofday or times, but if system calls
451 can be built on others, we can keep the number we have to support
453 time_t t
= (*cb
->time
) (cb
, (time_t *) 0);
455 /* It is up to target code to process the argument to time(). */
462 /* fall through for now */
475 sc
->errcode
= cb_host_to_target_errno (cb
, errcode
);
480 sc
->errcode
= (*cb
->get_errno
) (cb
);