1 /* Remote File-I/O communications
3 Copyright (C) 2003-2020 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>. */
20 /* See the GDB User Guide for details of the GDB remote protocol. */
25 #include "gdbsupport/gdb_wait.h"
27 #include "remote-fileio.h"
28 #include "event-loop.h"
30 #include "filenames.h"
31 #include "gdbsupport/filestuff.h"
34 #include "gdbsupport/gdb_sys_time.h"
36 #include <sys/cygwin.h> /* For cygwin_conv_path. */
45 #define FIO_FD_INVALID -1
46 #define FIO_FD_CONSOLE_IN -2
47 #define FIO_FD_CONSOLE_OUT -3
49 static int remote_fio_system_call_allowed
= 0;
52 remote_fileio_init_fd_map (void)
56 if (!remote_fio_data
.fd_map
)
58 remote_fio_data
.fd_map
= XNEWVEC (int, 10);
59 remote_fio_data
.fd_map_size
= 10;
60 remote_fio_data
.fd_map
[0] = FIO_FD_CONSOLE_IN
;
61 remote_fio_data
.fd_map
[1] = FIO_FD_CONSOLE_OUT
;
62 remote_fio_data
.fd_map
[2] = FIO_FD_CONSOLE_OUT
;
63 for (i
= 3; i
< 10; ++i
)
64 remote_fio_data
.fd_map
[i
] = FIO_FD_INVALID
;
70 remote_fileio_resize_fd_map (void)
72 int i
= remote_fio_data
.fd_map_size
;
74 if (!remote_fio_data
.fd_map
)
75 return remote_fileio_init_fd_map ();
76 remote_fio_data
.fd_map_size
+= 10;
77 remote_fio_data
.fd_map
=
78 (int *) xrealloc (remote_fio_data
.fd_map
,
79 remote_fio_data
.fd_map_size
* sizeof (int));
80 for (; i
< remote_fio_data
.fd_map_size
; i
++)
81 remote_fio_data
.fd_map
[i
] = FIO_FD_INVALID
;
82 return remote_fio_data
.fd_map_size
- 10;
86 remote_fileio_next_free_fd (void)
90 for (i
= 0; i
< remote_fio_data
.fd_map_size
; ++i
)
91 if (remote_fio_data
.fd_map
[i
] == FIO_FD_INVALID
)
93 return remote_fileio_resize_fd_map ();
97 remote_fileio_fd_to_targetfd (int fd
)
99 int target_fd
= remote_fileio_next_free_fd ();
101 remote_fio_data
.fd_map
[target_fd
] = fd
;
106 remote_fileio_map_fd (int target_fd
)
108 remote_fileio_init_fd_map ();
109 if (target_fd
< 0 || target_fd
>= remote_fio_data
.fd_map_size
)
110 return FIO_FD_INVALID
;
111 return remote_fio_data
.fd_map
[target_fd
];
115 remote_fileio_close_target_fd (int target_fd
)
117 remote_fileio_init_fd_map ();
118 if (target_fd
>= 0 && target_fd
< remote_fio_data
.fd_map_size
)
119 remote_fio_data
.fd_map
[target_fd
] = FIO_FD_INVALID
;
123 remote_fileio_oflags_to_host (long flags
)
127 if (flags
& FILEIO_O_CREAT
)
129 if (flags
& FILEIO_O_EXCL
)
131 if (flags
& FILEIO_O_TRUNC
)
133 if (flags
& FILEIO_O_APPEND
)
135 if (flags
& FILEIO_O_RDONLY
)
137 if (flags
& FILEIO_O_WRONLY
)
139 if (flags
& FILEIO_O_RDWR
)
141 /* On systems supporting binary and text mode, always open files in
150 remote_fileio_mode_to_host (long mode
, int open_call
)
156 if (mode
& FILEIO_S_IFREG
)
158 if (mode
& FILEIO_S_IFDIR
)
160 if (mode
& FILEIO_S_IFCHR
)
163 if (mode
& FILEIO_S_IRUSR
)
165 if (mode
& FILEIO_S_IWUSR
)
167 if (mode
& FILEIO_S_IXUSR
)
170 if (mode
& FILEIO_S_IRGRP
)
174 if (mode
& FILEIO_S_IWGRP
)
178 if (mode
& FILEIO_S_IXGRP
)
181 if (mode
& FILEIO_S_IROTH
)
184 if (mode
& FILEIO_S_IWOTH
)
188 if (mode
& FILEIO_S_IXOTH
)
195 remote_fileio_seek_flag_to_host (long num
, int *flag
)
201 case FILEIO_SEEK_SET
:
204 case FILEIO_SEEK_CUR
:
207 case FILEIO_SEEK_END
:
217 remote_fileio_extract_long (char **buf
, LONGEST
*retlong
)
222 if (!buf
|| !*buf
|| !**buf
|| !retlong
)
224 c
= strchr (*buf
, ',');
228 c
= strchr (*buf
, '\0');
229 while (strchr ("+-", **buf
))
235 for (*retlong
= 0; **buf
; ++*buf
)
238 if (**buf
>= '0' && **buf
<= '9')
239 *retlong
+= **buf
- '0';
240 else if (**buf
>= 'a' && **buf
<= 'f')
241 *retlong
+= **buf
- 'a' + 10;
242 else if (**buf
>= 'A' && **buf
<= 'F')
243 *retlong
+= **buf
- 'A' + 10;
253 remote_fileio_extract_int (char **buf
, long *retint
)
260 ret
= remote_fileio_extract_long (buf
, &retlong
);
262 *retint
= (long) retlong
;
267 remote_fileio_extract_ptr_w_len (char **buf
, CORE_ADDR
*ptrval
, int *length
)
272 if (!buf
|| !*buf
|| !**buf
|| !ptrval
|| !length
)
274 c
= strchr (*buf
, '/');
278 if (remote_fileio_extract_long (buf
, &retlong
))
280 *ptrval
= (CORE_ADDR
) retlong
;
282 if (remote_fileio_extract_long (buf
, &retlong
))
284 *length
= (int) retlong
;
289 remote_fileio_to_fio_long (LONGEST num
, fio_long_t fnum
)
291 host_to_bigendian (num
, (char *) fnum
, 8);
295 remote_fileio_to_fio_timeval (struct timeval
*tv
, struct fio_timeval
*ftv
)
297 host_to_fileio_time (tv
->tv_sec
, ftv
->ftv_sec
);
298 remote_fileio_to_fio_long (tv
->tv_usec
, ftv
->ftv_usec
);
301 /* The quit handler originally installed. */
302 static quit_handler_ftype
*remote_fileio_o_quit_handler
;
304 /* What to do on a QUIT call while handling a file I/O request. We
305 throw a quit exception, which is caught by remote_fileio_request
306 and translated to an EINTR reply back to the target. */
309 remote_fileio_quit_handler (void)
311 if (check_quit_flag ())
316 remote_fileio_reply (remote_target
*remote
, int retcode
, int error
)
319 int ctrl_c
= check_quit_flag ();
327 sprintf (buf
+ strlen (buf
), "%x", retcode
);
331 error
= FILEIO_EINTR
;
337 sprintf (buf
+ strlen (buf
), ",%x", error
);
341 quit_handler
= remote_fileio_o_quit_handler
;
342 putpkt (remote
, buf
);
346 remote_fileio_ioerror (remote_target
*remote
)
348 remote_fileio_reply (remote
, -1, FILEIO_EIO
);
352 remote_fileio_badfd (remote_target
*remote
)
354 remote_fileio_reply (remote
, -1, FILEIO_EBADF
);
358 remote_fileio_return_errno (remote_target
*remote
, int retcode
)
360 remote_fileio_reply (remote
, retcode
, retcode
< 0
361 ? host_to_fileio_error (errno
) : 0);
365 remote_fileio_return_success (remote_target
*remote
, int retcode
)
367 remote_fileio_reply (remote
, retcode
, 0);
371 remote_fileio_func_open (remote_target
*remote
, char *buf
)
381 /* 1. Parameter: Ptr to pathname / length incl. trailing zero. */
382 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
384 remote_fileio_ioerror (remote
);
387 /* 2. Parameter: open flags */
388 if (remote_fileio_extract_int (&buf
, &num
))
390 remote_fileio_ioerror (remote
);
393 flags
= remote_fileio_oflags_to_host (num
);
394 /* 3. Parameter: open mode */
395 if (remote_fileio_extract_int (&buf
, &num
))
397 remote_fileio_ioerror (remote
);
400 mode
= remote_fileio_mode_to_host (num
, 1);
402 /* Request pathname. */
403 pathname
= (char *) alloca (length
);
404 if (target_read_memory (ptrval
, (gdb_byte
*) pathname
, length
) != 0)
406 remote_fileio_ioerror (remote
);
410 /* Check if pathname exists and is not a regular file or directory. If so,
411 return an appropriate error code. Same for trying to open directories
413 if (!stat (pathname
, &st
))
415 if (!S_ISREG (st
.st_mode
) && !S_ISDIR (st
.st_mode
))
417 remote_fileio_reply (remote
, -1, FILEIO_ENODEV
);
420 if (S_ISDIR (st
.st_mode
)
421 && ((flags
& O_WRONLY
) == O_WRONLY
|| (flags
& O_RDWR
) == O_RDWR
))
423 remote_fileio_reply (remote
, -1, FILEIO_EISDIR
);
428 fd
= gdb_open_cloexec (pathname
, flags
, mode
);
431 remote_fileio_return_errno (remote
, -1);
435 fd
= remote_fileio_fd_to_targetfd (fd
);
436 remote_fileio_return_success (remote
, fd
);
440 remote_fileio_func_close (remote_target
*remote
, char *buf
)
445 /* Parameter: file descriptor */
446 if (remote_fileio_extract_int (&buf
, &num
))
448 remote_fileio_ioerror (remote
);
451 fd
= remote_fileio_map_fd ((int) num
);
452 if (fd
== FIO_FD_INVALID
)
454 remote_fileio_badfd (remote
);
458 if (fd
!= FIO_FD_CONSOLE_IN
&& fd
!= FIO_FD_CONSOLE_OUT
&& close (fd
))
459 remote_fileio_return_errno (remote
, -1);
460 remote_fileio_close_target_fd ((int) num
);
461 remote_fileio_return_success (remote
, 0);
465 remote_fileio_func_read (remote_target
*remote
, char *buf
)
473 off_t old_offset
, new_offset
;
475 /* 1. Parameter: file descriptor */
476 if (remote_fileio_extract_int (&buf
, &target_fd
))
478 remote_fileio_ioerror (remote
);
481 fd
= remote_fileio_map_fd ((int) target_fd
);
482 if (fd
== FIO_FD_INVALID
)
484 remote_fileio_badfd (remote
);
487 /* 2. Parameter: buffer pointer */
488 if (remote_fileio_extract_long (&buf
, &lnum
))
490 remote_fileio_ioerror (remote
);
493 ptrval
= (CORE_ADDR
) lnum
;
494 /* 3. Parameter: buffer length */
495 if (remote_fileio_extract_int (&buf
, &num
))
497 remote_fileio_ioerror (remote
);
500 length
= (size_t) num
;
504 case FIO_FD_CONSOLE_OUT
:
505 remote_fileio_badfd (remote
);
507 case FIO_FD_CONSOLE_IN
:
509 static char *remaining_buf
= NULL
;
510 static int remaining_length
= 0;
512 buffer
= (gdb_byte
*) xmalloc (16384);
515 if (remaining_length
> length
)
517 memcpy (buffer
, remaining_buf
, length
);
518 memmove (remaining_buf
, remaining_buf
+ length
,
519 remaining_length
- length
);
520 remaining_length
-= length
;
525 memcpy (buffer
, remaining_buf
, remaining_length
);
526 xfree (remaining_buf
);
527 remaining_buf
= NULL
;
528 ret
= remaining_length
;
533 /* Windows (at least XP and Server 2003) has difficulty
534 with large reads from consoles. If a handle is
535 backed by a real console device, overly large reads
536 from the handle will fail and set errno == ENOMEM.
537 On a Windows Server 2003 system where I tested,
538 reading 26608 bytes from the console was OK, but
539 anything above 26609 bytes would fail. The limit has
540 been observed to vary on different systems. So, we
541 limit this read to something smaller than that - by a
542 safe margin, in case the limit depends on system
543 resources or version. */
544 ret
= gdb_stdtargin
->read ((char *) buffer
, 16383);
545 if (ret
> 0 && (size_t)ret
> length
)
547 remaining_buf
= (char *) xmalloc (ret
- length
);
548 remaining_length
= ret
- length
;
549 memcpy (remaining_buf
, buffer
+ length
, remaining_length
);
556 buffer
= (gdb_byte
*) xmalloc (length
);
557 /* POSIX defines EINTR behaviour of read in a weird way. It's allowed
558 for read() to return -1 even if "some" bytes have been read. It
559 has been corrected in SUSv2 but that doesn't help us much...
560 Therefore a complete solution must check how many bytes have been
561 read on EINTR to return a more reliable value to the target */
562 old_offset
= lseek (fd
, 0, SEEK_CUR
);
563 ret
= read (fd
, buffer
, length
);
564 if (ret
< 0 && errno
== EINTR
)
566 new_offset
= lseek (fd
, 0, SEEK_CUR
);
567 /* If some data has been read, return the number of bytes read.
568 The Ctrl-C flag is set in remote_fileio_reply() anyway. */
569 if (old_offset
!= new_offset
)
570 ret
= new_offset
- old_offset
;
577 errno
= target_write_memory (ptrval
, buffer
, ret
);
583 remote_fileio_return_errno (remote
, -1);
585 remote_fileio_return_success (remote
, ret
);
591 remote_fileio_func_write (remote_target
*remote
, char *buf
)
600 /* 1. Parameter: file descriptor */
601 if (remote_fileio_extract_int (&buf
, &target_fd
))
603 remote_fileio_ioerror (remote
);
606 fd
= remote_fileio_map_fd ((int) target_fd
);
607 if (fd
== FIO_FD_INVALID
)
609 remote_fileio_badfd (remote
);
612 /* 2. Parameter: buffer pointer */
613 if (remote_fileio_extract_long (&buf
, &lnum
))
615 remote_fileio_ioerror (remote
);
618 ptrval
= (CORE_ADDR
) lnum
;
619 /* 3. Parameter: buffer length */
620 if (remote_fileio_extract_int (&buf
, &num
))
622 remote_fileio_ioerror (remote
);
625 length
= (size_t) num
;
627 buffer
= (gdb_byte
*) xmalloc (length
);
628 if (target_read_memory (ptrval
, buffer
, length
) != 0)
631 remote_fileio_ioerror (remote
);
637 case FIO_FD_CONSOLE_IN
:
638 remote_fileio_badfd (remote
);
641 case FIO_FD_CONSOLE_OUT
:
643 ui_file
*file
= target_fd
== 1 ? gdb_stdtarg
: gdb_stdtargerr
;
644 file
->write ((char *) buffer
, length
);
650 ret
= write (fd
, buffer
, length
);
651 if (ret
< 0 && errno
== EACCES
)
652 errno
= EBADF
; /* Cygwin returns EACCESS when writing to a
658 remote_fileio_return_errno (remote
, -1);
660 remote_fileio_return_success (remote
, ret
);
666 remote_fileio_func_lseek (remote_target
*remote
, char *buf
)
673 /* 1. Parameter: file descriptor */
674 if (remote_fileio_extract_int (&buf
, &num
))
676 remote_fileio_ioerror (remote
);
679 fd
= remote_fileio_map_fd ((int) num
);
680 if (fd
== FIO_FD_INVALID
)
682 remote_fileio_badfd (remote
);
685 else if (fd
== FIO_FD_CONSOLE_IN
|| fd
== FIO_FD_CONSOLE_OUT
)
687 remote_fileio_reply (remote
, -1, FILEIO_ESPIPE
);
691 /* 2. Parameter: offset */
692 if (remote_fileio_extract_long (&buf
, &lnum
))
694 remote_fileio_ioerror (remote
);
697 offset
= (off_t
) lnum
;
698 /* 3. Parameter: flag */
699 if (remote_fileio_extract_int (&buf
, &num
))
701 remote_fileio_ioerror (remote
);
704 if (remote_fileio_seek_flag_to_host (num
, &flag
))
706 remote_fileio_reply (remote
, -1, FILEIO_EINVAL
);
710 ret
= lseek (fd
, offset
, flag
);
712 if (ret
== (off_t
) -1)
713 remote_fileio_return_errno (remote
, -1);
715 remote_fileio_return_success (remote
, ret
);
719 remote_fileio_func_rename (remote_target
*remote
, char *buf
)
721 CORE_ADDR old_ptr
, new_ptr
;
722 int old_len
, new_len
;
723 char *oldpath
, *newpath
;
725 struct stat ost
, nst
;
727 /* 1. Parameter: Ptr to oldpath / length incl. trailing zero */
728 if (remote_fileio_extract_ptr_w_len (&buf
, &old_ptr
, &old_len
))
730 remote_fileio_ioerror (remote
);
734 /* 2. Parameter: Ptr to newpath / length incl. trailing zero */
735 if (remote_fileio_extract_ptr_w_len (&buf
, &new_ptr
, &new_len
))
737 remote_fileio_ioerror (remote
);
741 /* Request oldpath using 'm' packet */
742 oldpath
= (char *) alloca (old_len
);
743 if (target_read_memory (old_ptr
, (gdb_byte
*) oldpath
, old_len
) != 0)
745 remote_fileio_ioerror (remote
);
749 /* Request newpath using 'm' packet */
750 newpath
= (char *) alloca (new_len
);
751 if (target_read_memory (new_ptr
, (gdb_byte
*) newpath
, new_len
) != 0)
753 remote_fileio_ioerror (remote
);
757 /* Only operate on regular files and directories. */
758 of
= stat (oldpath
, &ost
);
759 nf
= stat (newpath
, &nst
);
760 if ((!of
&& !S_ISREG (ost
.st_mode
) && !S_ISDIR (ost
.st_mode
))
761 || (!nf
&& !S_ISREG (nst
.st_mode
) && !S_ISDIR (nst
.st_mode
)))
763 remote_fileio_reply (remote
, -1, FILEIO_EACCES
);
767 ret
= rename (oldpath
, newpath
);
771 /* Special case: newpath is a non-empty directory. Some systems
772 return ENOTEMPTY, some return EEXIST. We coerce that to be
774 if (errno
== ENOTEMPTY
)
777 /* Workaround some Cygwin problems with correct errnos. */
780 if (!of
&& !nf
&& S_ISDIR (nst
.st_mode
))
782 if (S_ISREG (ost
.st_mode
))
786 char oldfullpath
[PATH_MAX
];
787 char newfullpath
[PATH_MAX
];
790 cygwin_conv_path (CCP_WIN_A_TO_POSIX
, oldpath
, oldfullpath
,
792 cygwin_conv_path (CCP_WIN_A_TO_POSIX
, newpath
, newfullpath
,
794 len
= strlen (oldfullpath
);
795 if (IS_DIR_SEPARATOR (newfullpath
[len
])
796 && !filename_ncmp (oldfullpath
, newfullpath
, len
))
805 remote_fileio_return_errno (remote
, -1);
808 remote_fileio_return_success (remote
, ret
);
812 remote_fileio_func_unlink (remote_target
*remote
, char *buf
)
820 /* Parameter: Ptr to pathname / length incl. trailing zero */
821 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
823 remote_fileio_ioerror (remote
);
826 /* Request pathname using 'm' packet */
827 pathname
= (char *) alloca (length
);
828 if (target_read_memory (ptrval
, (gdb_byte
*) pathname
, length
) != 0)
830 remote_fileio_ioerror (remote
);
834 /* Only operate on regular files (and directories, which allows to return
835 the correct return code). */
836 if (!stat (pathname
, &st
) && !S_ISREG (st
.st_mode
) && !S_ISDIR (st
.st_mode
))
838 remote_fileio_reply (remote
, -1, FILEIO_ENODEV
);
842 ret
= unlink (pathname
);
845 remote_fileio_return_errno (remote
, -1);
847 remote_fileio_return_success (remote
, ret
);
851 remote_fileio_func_stat (remote_target
*remote
, char *buf
)
853 CORE_ADDR statptr
, nameptr
;
860 /* 1. Parameter: Ptr to pathname / length incl. trailing zero */
861 if (remote_fileio_extract_ptr_w_len (&buf
, &nameptr
, &namelength
))
863 remote_fileio_ioerror (remote
);
867 /* 2. Parameter: Ptr to struct stat */
868 if (remote_fileio_extract_long (&buf
, &lnum
))
870 remote_fileio_ioerror (remote
);
873 statptr
= (CORE_ADDR
) lnum
;
875 /* Request pathname using 'm' packet */
876 pathname
= (char *) alloca (namelength
);
877 if (target_read_memory (nameptr
, (gdb_byte
*) pathname
, namelength
) != 0)
879 remote_fileio_ioerror (remote
);
883 ret
= stat (pathname
, &st
);
887 remote_fileio_return_errno (remote
, -1);
890 /* Only operate on regular files and directories. */
891 if (!ret
&& !S_ISREG (st
.st_mode
) && !S_ISDIR (st
.st_mode
))
893 remote_fileio_reply (remote
, -1, FILEIO_EACCES
);
898 host_to_fileio_stat (&st
, &fst
);
899 host_to_fileio_uint (0, fst
.fst_dev
);
901 errno
= target_write_memory (statptr
, (gdb_byte
*) &fst
, sizeof fst
);
904 remote_fileio_return_errno (remote
, -1);
908 remote_fileio_return_success (remote
, ret
);
912 remote_fileio_func_fstat (remote_target
*remote
, char *buf
)
922 /* 1. Parameter: file descriptor */
923 if (remote_fileio_extract_int (&buf
, &target_fd
))
925 remote_fileio_ioerror (remote
);
928 fd
= remote_fileio_map_fd ((int) target_fd
);
929 if (fd
== FIO_FD_INVALID
)
931 remote_fileio_badfd (remote
);
934 /* 2. Parameter: Ptr to struct stat */
935 if (remote_fileio_extract_long (&buf
, &lnum
))
937 remote_fileio_ioerror (remote
);
940 ptrval
= (CORE_ADDR
) lnum
;
942 if (fd
== FIO_FD_CONSOLE_IN
|| fd
== FIO_FD_CONSOLE_OUT
)
944 host_to_fileio_uint (1, fst
.fst_dev
);
945 memset (&st
, 0, sizeof (st
));
946 st
.st_mode
= S_IFCHR
| (fd
== FIO_FD_CONSOLE_IN
? S_IRUSR
: S_IWUSR
);
949 st
.st_uid
= getuid ();
952 st
.st_gid
= getgid ();
954 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
957 #if HAVE_STRUCT_STAT_ST_BLOCKS
960 if (!gettimeofday (&tv
, NULL
))
961 st
.st_atime
= st
.st_mtime
= st
.st_ctime
= tv
.tv_sec
;
963 st
.st_atime
= st
.st_mtime
= st
.st_ctime
= (time_t) 0;
967 ret
= fstat (fd
, &st
);
971 remote_fileio_return_errno (remote
, -1);
976 host_to_fileio_stat (&st
, &fst
);
978 errno
= target_write_memory (ptrval
, (gdb_byte
*) &fst
, sizeof fst
);
981 remote_fileio_return_errno (remote
, -1);
985 remote_fileio_return_success (remote
, ret
);
989 remote_fileio_func_gettimeofday (remote_target
*remote
, char *buf
)
995 struct fio_timeval ftv
;
997 /* 1. Parameter: struct timeval pointer */
998 if (remote_fileio_extract_long (&buf
, &lnum
))
1000 remote_fileio_ioerror (remote
);
1003 ptrval
= (CORE_ADDR
) lnum
;
1004 /* 2. Parameter: some pointer value... */
1005 if (remote_fileio_extract_long (&buf
, &lnum
))
1007 remote_fileio_ioerror (remote
);
1010 /* ...which has to be NULL. */
1013 remote_fileio_reply (remote
, -1, FILEIO_EINVAL
);
1017 ret
= gettimeofday (&tv
, NULL
);
1021 remote_fileio_return_errno (remote
, -1);
1027 remote_fileio_to_fio_timeval (&tv
, &ftv
);
1029 errno
= target_write_memory (ptrval
, (gdb_byte
*) &ftv
, sizeof ftv
);
1032 remote_fileio_return_errno (remote
, -1);
1036 remote_fileio_return_success (remote
, ret
);
1040 remote_fileio_func_isatty (remote_target
*remote
, char *buf
)
1045 /* Parameter: file descriptor */
1046 if (remote_fileio_extract_int (&buf
, &target_fd
))
1048 remote_fileio_ioerror (remote
);
1051 fd
= remote_fileio_map_fd ((int) target_fd
);
1052 int ret
= fd
== FIO_FD_CONSOLE_IN
|| fd
== FIO_FD_CONSOLE_OUT
? 1 : 0;
1053 remote_fileio_return_success (remote
, ret
);
1057 remote_fileio_func_system (remote_target
*remote
, char *buf
)
1061 char *cmdline
= NULL
;
1063 /* Parameter: Ptr to commandline / length incl. trailing zero */
1064 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
1066 remote_fileio_ioerror (remote
);
1072 /* Request commandline using 'm' packet */
1073 cmdline
= (char *) alloca (length
);
1074 if (target_read_memory (ptrval
, (gdb_byte
*) cmdline
, length
) != 0)
1076 remote_fileio_ioerror (remote
);
1081 /* Check if system(3) has been explicitly allowed using the
1082 `set remote system-call-allowed 1' command. If length is 0,
1083 indicating a NULL parameter to the system call, return zero to
1084 indicate a shell is not available. Otherwise fail with EPERM. */
1085 if (!remote_fio_system_call_allowed
)
1088 remote_fileio_return_success (remote
, 0);
1090 remote_fileio_reply (remote
, -1, FILEIO_EPERM
);
1094 ret
= system (cmdline
);
1097 remote_fileio_return_success (remote
, ret
);
1099 remote_fileio_return_errno (remote
, -1);
1101 remote_fileio_return_success (remote
, WEXITSTATUS (ret
));
1106 void (*func
)(remote_target
*remote
, char *);
1107 } remote_fio_func_map
[] = {
1108 { "open", remote_fileio_func_open
},
1109 { "close", remote_fileio_func_close
},
1110 { "read", remote_fileio_func_read
},
1111 { "write", remote_fileio_func_write
},
1112 { "lseek", remote_fileio_func_lseek
},
1113 { "rename", remote_fileio_func_rename
},
1114 { "unlink", remote_fileio_func_unlink
},
1115 { "stat", remote_fileio_func_stat
},
1116 { "fstat", remote_fileio_func_fstat
},
1117 { "gettimeofday", remote_fileio_func_gettimeofday
},
1118 { "isatty", remote_fileio_func_isatty
},
1119 { "system", remote_fileio_func_system
},
1124 do_remote_fileio_request (remote_target
*remote
, char *buf
)
1129 quit_handler
= remote_fileio_quit_handler
;
1131 c
= strchr (++buf
, ',');
1135 c
= strchr (buf
, '\0');
1136 for (idx
= 0; remote_fio_func_map
[idx
].name
; ++idx
)
1137 if (!strcmp (remote_fio_func_map
[idx
].name
, buf
))
1139 if (!remote_fio_func_map
[idx
].name
)
1140 remote_fileio_reply (remote
, -1, FILEIO_ENOSYS
);
1142 remote_fio_func_map
[idx
].func (remote
, c
);
1145 /* Close any open descriptors, and reinitialize the file mapping. */
1148 remote_fileio_reset (void)
1152 for (ix
= 0; ix
!= remote_fio_data
.fd_map_size
; ix
++)
1154 int fd
= remote_fio_data
.fd_map
[ix
];
1159 if (remote_fio_data
.fd_map
)
1161 xfree (remote_fio_data
.fd_map
);
1162 remote_fio_data
.fd_map
= NULL
;
1163 remote_fio_data
.fd_map_size
= 0;
1167 /* Handle a file I/O request. BUF points to the packet containing the
1168 request. CTRLC_PENDING_P should be nonzero if the target has not
1169 acknowledged the Ctrl-C sent asynchronously earlier. */
1172 remote_fileio_request (remote_target
*remote
, char *buf
, int ctrlc_pending_p
)
1174 /* Save the previous quit handler, so we can restore it. No need
1175 for a cleanup since we catch all exceptions below. Note that the
1176 quit handler is also restored by remote_fileio_reply just before
1177 pushing a packet. */
1178 remote_fileio_o_quit_handler
= quit_handler
;
1180 if (ctrlc_pending_p
)
1182 /* If the target hasn't responded to the Ctrl-C sent
1183 asynchronously earlier, take this opportunity to send the
1184 Ctrl-C synchronously. */
1186 remote_fileio_reply (remote
, -1, FILEIO_EINTR
);
1192 do_remote_fileio_request (remote
, buf
);
1194 catch (const gdb_exception
&ex
)
1196 if (ex
.reason
== RETURN_QUIT
)
1197 remote_fileio_reply (remote
, -1, FILEIO_EINTR
);
1199 remote_fileio_reply (remote
, -1, FILEIO_EIO
);
1203 quit_handler
= remote_fileio_o_quit_handler
;
1207 /* Unpack an fio_uint_t. */
1210 remote_fileio_to_host_uint (fio_uint_t fnum
)
1212 return extract_unsigned_integer ((gdb_byte
*) fnum
, 4,
1216 /* Unpack an fio_ulong_t. */
1219 remote_fileio_to_host_ulong (fio_ulong_t fnum
)
1221 return extract_unsigned_integer ((gdb_byte
*) fnum
, 8,
1225 /* Unpack an fio_mode_t. */
1228 remote_fileio_to_host_mode (fio_mode_t fnum
)
1230 return remote_fileio_mode_to_host (remote_fileio_to_host_uint (fnum
),
1234 /* Unpack an fio_time_t. */
1237 remote_fileio_to_host_time (fio_time_t fnum
)
1239 return remote_fileio_to_host_uint (fnum
);
1243 /* See remote-fileio.h. */
1246 remote_fileio_to_host_stat (struct fio_stat
*fst
, struct stat
*st
)
1248 memset (st
, 0, sizeof (struct stat
));
1250 st
->st_dev
= remote_fileio_to_host_uint (fst
->fst_dev
);
1251 st
->st_ino
= remote_fileio_to_host_uint (fst
->fst_ino
);
1252 st
->st_mode
= remote_fileio_to_host_mode (fst
->fst_mode
);
1253 st
->st_nlink
= remote_fileio_to_host_uint (fst
->fst_nlink
);
1254 st
->st_uid
= remote_fileio_to_host_uint (fst
->fst_uid
);
1255 st
->st_gid
= remote_fileio_to_host_uint (fst
->fst_gid
);
1256 st
->st_rdev
= remote_fileio_to_host_uint (fst
->fst_rdev
);
1257 st
->st_size
= remote_fileio_to_host_ulong (fst
->fst_size
);
1258 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1259 st
->st_blksize
= remote_fileio_to_host_ulong (fst
->fst_blksize
);
1261 #if HAVE_STRUCT_STAT_ST_BLOCKS
1262 st
->st_blocks
= remote_fileio_to_host_ulong (fst
->fst_blocks
);
1264 st
->st_atime
= remote_fileio_to_host_time (fst
->fst_atime
);
1265 st
->st_mtime
= remote_fileio_to_host_time (fst
->fst_mtime
);
1266 st
->st_ctime
= remote_fileio_to_host_time (fst
->fst_ctime
);
1271 set_system_call_allowed (const char *args
, int from_tty
)
1276 int val
= strtoul (args
, &arg_end
, 10);
1278 if (*args
&& *arg_end
== '\0')
1280 remote_fio_system_call_allowed
= !!val
;
1284 error (_("Illegal argument for \"set remote system-call-allowed\" command"));
1288 show_system_call_allowed (const char *args
, int from_tty
)
1291 error (_("Garbage after \"show remote "
1292 "system-call-allowed\" command: `%s'"), args
);
1293 printf_unfiltered ("Calling host system(3) call from target is %sallowed\n",
1294 remote_fio_system_call_allowed
? "" : "not ");
1298 initialize_remote_fileio (struct cmd_list_element
*remote_set_cmdlist
,
1299 struct cmd_list_element
*remote_show_cmdlist
)
1301 add_cmd ("system-call-allowed", no_class
,
1302 set_system_call_allowed
,
1303 _("Set if the host system(3) call is allowed for the target."),
1304 &remote_set_cmdlist
);
1305 add_cmd ("system-call-allowed", no_class
,
1306 show_system_call_allowed
,
1307 _("Show if the host system(3) call is allowed for the target."),
1308 &remote_show_cmdlist
);