1 /* Remote File-I/O communications
3 Copyright 2003 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 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., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* See the GDB User Guide for details of the GDB remote protocol. */
25 #include "gdb_string.h"
28 #include "gdb/fileio.h"
31 #include "remote-fileio.h"
36 #include <sys/cygwin.h> /* For cygwin_conv_to_full_posix_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
= (int *) xmalloc (10 * sizeof (int));
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 if (!remote_fio_data
.fd_map
)
73 return remote_fileio_init_fd_map ();
74 remote_fio_data
.fd_map_size
+= 10;
75 remote_fio_data
.fd_map
=
76 (int *) xrealloc (remote_fio_data
.fd_map
,
77 remote_fio_data
.fd_map_size
* sizeof (int));
78 return remote_fio_data
.fd_map_size
- 10;
82 remote_fileio_next_free_fd (void)
86 for (i
= 0; i
< remote_fio_data
.fd_map_size
; ++i
)
87 if (remote_fio_data
.fd_map
[i
] == FIO_FD_INVALID
)
89 return remote_fileio_resize_fd_map ();
93 remote_fileio_fd_to_targetfd (int fd
)
95 int target_fd
= remote_fileio_next_free_fd ();
96 remote_fio_data
.fd_map
[target_fd
] = fd
;
101 remote_fileio_map_fd (int target_fd
)
103 remote_fileio_init_fd_map ();
104 if (target_fd
< 0 || target_fd
>= remote_fio_data
.fd_map_size
)
105 return FIO_FD_INVALID
;
106 return remote_fio_data
.fd_map
[target_fd
];
110 remote_fileio_close_target_fd (int target_fd
)
112 remote_fileio_init_fd_map ();
113 if (target_fd
>= 0 && target_fd
< remote_fio_data
.fd_map_size
)
114 remote_fio_data
.fd_map
[target_fd
] = FIO_FD_INVALID
;
118 remote_fileio_oflags_to_host (long flags
)
122 if (flags
& FILEIO_O_CREAT
)
124 if (flags
& FILEIO_O_EXCL
)
126 if (flags
& FILEIO_O_TRUNC
)
128 if (flags
& FILEIO_O_APPEND
)
130 if (flags
& FILEIO_O_RDONLY
)
132 if (flags
& FILEIO_O_WRONLY
)
134 if (flags
& FILEIO_O_RDWR
)
136 /* On systems supporting binary and text mode, always open files in
145 remote_fileio_mode_to_host (long mode
, int open_call
)
151 if (mode
& FILEIO_S_IFREG
)
153 if (mode
& FILEIO_S_IFDIR
)
155 if (mode
& FILEIO_S_IFCHR
)
158 if (mode
& FILEIO_S_IRUSR
)
160 if (mode
& FILEIO_S_IWUSR
)
162 if (mode
& FILEIO_S_IXUSR
)
164 if (mode
& FILEIO_S_IRGRP
)
166 if (mode
& FILEIO_S_IWGRP
)
168 if (mode
& FILEIO_S_IXGRP
)
170 if (mode
& FILEIO_S_IROTH
)
172 if (mode
& FILEIO_S_IWOTH
)
174 if (mode
& FILEIO_S_IXOTH
)
180 remote_fileio_mode_to_target (mode_t mode
)
185 tmode
|= FILEIO_S_IFREG
;
187 tmode
|= FILEIO_S_IFDIR
;
189 tmode
|= FILEIO_S_IFCHR
;
191 tmode
|= FILEIO_S_IRUSR
;
193 tmode
|= FILEIO_S_IWUSR
;
195 tmode
|= FILEIO_S_IXUSR
;
197 tmode
|= FILEIO_S_IRGRP
;
199 tmode
|= FILEIO_S_IWGRP
;
201 tmode
|= FILEIO_S_IXGRP
;
203 tmode
|= FILEIO_S_IROTH
;
205 tmode
|= FILEIO_S_IWOTH
;
207 tmode
|= FILEIO_S_IXOTH
;
212 remote_fileio_errno_to_target (int error
)
219 return FILEIO_ENOENT
;
227 return FILEIO_EACCES
;
229 return FILEIO_EFAULT
;
233 return FILEIO_EEXIST
;
235 return FILEIO_ENODEV
;
237 return FILEIO_ENOTDIR
;
239 return FILEIO_EISDIR
;
241 return FILEIO_EINVAL
;
243 return FILEIO_ENFILE
;
245 return FILEIO_EMFILE
;
249 return FILEIO_ENOSPC
;
251 return FILEIO_ESPIPE
;
255 return FILEIO_ENOSYS
;
257 return FILEIO_ENAMETOOLONG
;
259 return FILEIO_EUNKNOWN
;
263 remote_fileio_seek_flag_to_host (long num
, int *flag
)
269 case FILEIO_SEEK_SET
:
272 case FILEIO_SEEK_CUR
:
275 case FILEIO_SEEK_END
:
285 remote_fileio_extract_long (char **buf
, LONGEST
*retlong
)
290 if (!buf
|| !*buf
|| !**buf
|| !retlong
)
292 c
= strchr (*buf
, ',');
296 c
= strchr (*buf
, '\0');
297 while (strchr ("+-", **buf
))
303 for (*retlong
= 0; **buf
; ++*buf
)
306 if (**buf
>= '0' && **buf
<= '9')
307 *retlong
+= **buf
- '0';
308 else if (**buf
>= 'a' && **buf
<= 'f')
309 *retlong
+= **buf
- 'a' + 10;
310 else if (**buf
>= 'A' && **buf
<= 'F')
311 *retlong
+= **buf
- 'A' + 10;
321 remote_fileio_extract_int (char **buf
, long *retint
)
328 ret
= remote_fileio_extract_long (buf
, &retlong
);
330 *retint
= (long) retlong
;
335 remote_fileio_extract_ptr_w_len (char **buf
, CORE_ADDR
*ptrval
, int *length
)
340 if (!buf
|| !*buf
|| !**buf
|| !ptrval
|| !length
)
342 c
= strchr (*buf
, '/');
346 if (remote_fileio_extract_long (buf
, &retlong
))
348 *ptrval
= (CORE_ADDR
) retlong
;
350 if (remote_fileio_extract_long (buf
, &retlong
))
352 *length
= (int) retlong
;
356 /* Convert to big endian */
358 remote_fileio_to_be (LONGEST num
, char *buf
, int bytes
)
362 for (i
= 0; i
< bytes
; ++i
)
363 buf
[i
] = (num
>> (8 * (bytes
- i
- 1))) & 0xff;
367 remote_fileio_to_fio_int (long num
, fio_int_t fnum
)
369 remote_fileio_to_be ((LONGEST
) num
, (char *) fnum
, 4);
373 remote_fileio_to_fio_uint (long num
, fio_uint_t fnum
)
375 remote_fileio_to_be ((LONGEST
) num
, (char *) fnum
, 4);
379 remote_fileio_to_fio_mode (mode_t num
, fio_mode_t fnum
)
381 remote_fileio_to_be (remote_fileio_mode_to_target(num
), (char *) fnum
, 4);
385 remote_fileio_to_fio_time (time_t num
, fio_time_t fnum
)
387 remote_fileio_to_be ((LONGEST
) num
, (char *) fnum
, 4);
391 remote_fileio_to_fio_long (LONGEST num
, fio_long_t fnum
)
393 remote_fileio_to_be (num
, (char *) fnum
, 8);
397 remote_fileio_to_fio_ulong (LONGEST num
, fio_ulong_t fnum
)
399 remote_fileio_to_be (num
, (char *) fnum
, 8);
403 remote_fileio_to_fio_stat (struct stat
*st
, struct fio_stat
*fst
)
405 /* `st_dev' is set in the calling function */
406 remote_fileio_to_fio_uint ((long) st
->st_ino
, fst
->fst_ino
);
407 remote_fileio_to_fio_mode (st
->st_mode
, fst
->fst_mode
);
408 remote_fileio_to_fio_uint ((long) st
->st_nlink
, fst
->fst_nlink
);
409 remote_fileio_to_fio_uint ((long) st
->st_uid
, fst
->fst_uid
);
410 remote_fileio_to_fio_uint ((long) st
->st_gid
, fst
->fst_gid
);
411 remote_fileio_to_fio_uint ((long) st
->st_rdev
, fst
->fst_rdev
);
412 remote_fileio_to_fio_ulong ((LONGEST
) st
->st_size
, fst
->fst_size
);
413 remote_fileio_to_fio_ulong ((LONGEST
) st
->st_blksize
, fst
->fst_blksize
);
414 remote_fileio_to_fio_ulong ((LONGEST
) st
->st_blocks
, fst
->fst_blocks
);
415 remote_fileio_to_fio_time (st
->st_atime
, fst
->fst_atime
);
416 remote_fileio_to_fio_time (st
->st_mtime
, fst
->fst_mtime
);
417 remote_fileio_to_fio_time (st
->st_ctime
, fst
->fst_ctime
);
421 remote_fileio_to_fio_timeval (struct timeval
*tv
, struct fio_timeval
*ftv
)
423 remote_fileio_to_fio_time (tv
->tv_sec
, ftv
->ftv_sec
);
424 remote_fileio_to_fio_long (tv
->tv_usec
, ftv
->ftv_usec
);
427 static int remote_fio_ctrl_c_flag
= 0;
428 static int remote_fio_no_longjmp
= 0;
430 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
431 static struct sigaction remote_fio_sa
;
432 static struct sigaction remote_fio_osa
;
434 static void (*remote_fio_ofunc
)(int);
438 remote_fileio_sig_init (void)
440 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
441 remote_fio_sa
.sa_handler
= SIG_IGN
;
442 sigemptyset (&remote_fio_sa
.sa_mask
);
443 remote_fio_sa
.sa_flags
= 0;
444 sigaction (SIGINT
, &remote_fio_sa
, &remote_fio_osa
);
446 remote_fio_ofunc
= signal (SIGINT
, SIG_IGN
);
451 remote_fileio_sig_set (void (*sigint_func
)(int))
453 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
454 remote_fio_sa
.sa_handler
= sigint_func
;
455 sigemptyset (&remote_fio_sa
.sa_mask
);
456 remote_fio_sa
.sa_flags
= 0;
457 sigaction (SIGINT
, &remote_fio_sa
, NULL
);
459 signal (SIGINT
, sigint_func
);
464 remote_fileio_sig_exit (void)
466 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
467 sigaction (SIGINT
, &remote_fio_osa
, NULL
);
469 signal (SIGINT
, remote_fio_ofunc
);
474 remote_fileio_ctrl_c_signal_handler (int signo
)
476 remote_fileio_sig_set (SIG_IGN
);
477 remote_fio_ctrl_c_flag
= 1;
478 if (!remote_fio_no_longjmp
)
479 throw_exception (RETURN_QUIT
);
480 remote_fileio_sig_set (remote_fileio_ctrl_c_signal_handler
);
484 remote_fileio_reply (int retcode
, int error
)
488 remote_fileio_sig_set (SIG_IGN
);
495 sprintf (buf
+ strlen (buf
), "%x", retcode
);
496 if (error
|| remote_fio_ctrl_c_flag
)
498 if (error
&& remote_fio_ctrl_c_flag
)
499 error
= FILEIO_EINTR
;
505 sprintf (buf
+ strlen (buf
), ",%x", error
);
506 if (remote_fio_ctrl_c_flag
)
509 remote_fileio_sig_set (remote_fileio_ctrl_c_signal_handler
);
514 remote_fileio_ioerror (void)
516 remote_fileio_reply (-1, FILEIO_EIO
);
520 remote_fileio_badfd (void)
522 remote_fileio_reply (-1, FILEIO_EBADF
);
526 remote_fileio_return_errno (int retcode
)
528 remote_fileio_reply (retcode
,
529 retcode
< 0 ? remote_fileio_errno_to_target (errno
) : 0);
533 remote_fileio_return_success (int retcode
)
535 remote_fileio_reply (retcode
, 0);
538 /* Wrapper function for remote_write_bytes() which has the disadvantage to
539 write only one packet, regardless of the requested number of bytes to
540 transfer. This wrapper calls remote_write_bytes() as often as needed. */
542 remote_fileio_write_bytes (CORE_ADDR memaddr
, char *myaddr
, int len
)
544 int ret
= 0, written
;
546 while (len
> 0 && (written
= remote_write_bytes (memaddr
, myaddr
, len
)) > 0)
557 remote_fileio_func_open (char *buf
)
560 int length
, retlength
;
567 /* 1. Parameter: Ptr to pathname / length incl. trailing zero */
568 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
570 remote_fileio_ioerror ();
573 /* 2. Parameter: open flags */
574 if (remote_fileio_extract_int (&buf
, &num
))
576 remote_fileio_ioerror ();
579 flags
= remote_fileio_oflags_to_host (num
);
580 /* 3. Parameter: open mode */
581 if (remote_fileio_extract_int (&buf
, &num
))
583 remote_fileio_ioerror ();
586 mode
= remote_fileio_mode_to_host (num
, 1);
588 /* Request pathname using 'm' packet */
589 pathname
= alloca (length
);
590 retlength
= remote_read_bytes (ptrval
, pathname
, length
);
591 if (retlength
!= length
)
593 remote_fileio_ioerror ();
597 /* Check if pathname exists and is not a regular file or directory. If so,
598 return an appropriate error code. Same for trying to open directories
600 if (!stat (pathname
, &st
))
602 if (!S_ISREG (st
.st_mode
) && !S_ISDIR (st
.st_mode
))
604 remote_fileio_reply (-1, FILEIO_ENODEV
);
607 if (S_ISDIR (st
.st_mode
)
608 && ((flags
& O_WRONLY
) == O_WRONLY
|| (flags
& O_RDWR
) == O_RDWR
))
610 remote_fileio_reply (-1, FILEIO_EISDIR
);
615 remote_fio_no_longjmp
= 1;
616 fd
= open (pathname
, flags
, mode
);
619 remote_fileio_return_errno (-1);
623 fd
= remote_fileio_fd_to_targetfd (fd
);
624 remote_fileio_return_success (fd
);
628 remote_fileio_func_close (char *buf
)
633 /* Parameter: file descriptor */
634 if (remote_fileio_extract_int (&buf
, &num
))
636 remote_fileio_ioerror ();
639 fd
= remote_fileio_map_fd ((int) num
);
640 if (fd
== FIO_FD_INVALID
)
642 remote_fileio_badfd ();
646 remote_fio_no_longjmp
= 1;
647 if (fd
!= FIO_FD_CONSOLE_IN
&& fd
!= FIO_FD_CONSOLE_OUT
&& close (fd
))
648 remote_fileio_return_errno (-1);
649 remote_fileio_close_target_fd ((int) num
);
650 remote_fileio_return_success (0);
654 remote_fileio_func_read (char *buf
)
659 int fd
, ret
, retlength
;
662 off_t old_offset
, new_offset
;
664 /* 1. Parameter: file descriptor */
665 if (remote_fileio_extract_int (&buf
, &target_fd
))
667 remote_fileio_ioerror ();
670 fd
= remote_fileio_map_fd ((int) target_fd
);
671 if (fd
== FIO_FD_INVALID
)
673 remote_fileio_badfd ();
676 /* 2. Parameter: buffer pointer */
677 if (remote_fileio_extract_long (&buf
, &lnum
))
679 remote_fileio_ioerror ();
682 ptrval
= (CORE_ADDR
) lnum
;
683 /* 3. Parameter: buffer length */
684 if (remote_fileio_extract_int (&buf
, &num
))
686 remote_fileio_ioerror ();
689 length
= (size_t) num
;
693 case FIO_FD_CONSOLE_OUT
:
694 remote_fileio_badfd ();
696 case FIO_FD_CONSOLE_IN
:
698 static char *remaining_buf
= NULL
;
699 static int remaining_length
= 0;
701 buffer
= (char *) xmalloc (32768);
704 remote_fio_no_longjmp
= 1;
705 if (remaining_length
> length
)
707 memcpy (buffer
, remaining_buf
, length
);
708 memmove (remaining_buf
, remaining_buf
+ length
,
709 remaining_length
- length
);
710 remaining_length
-= length
;
715 memcpy (buffer
, remaining_buf
, remaining_length
);
716 xfree (remaining_buf
);
717 remaining_buf
= NULL
;
718 ret
= remaining_length
;
723 ret
= ui_file_read (gdb_stdtargin
, buffer
, 32767);
724 remote_fio_no_longjmp
= 1;
725 if (ret
> 0 && (size_t)ret
> length
)
727 remaining_buf
= (char *) xmalloc (ret
- length
);
728 remaining_length
= ret
- length
;
729 memcpy (remaining_buf
, buffer
+ length
, remaining_length
);
736 buffer
= (char *) xmalloc (length
);
737 /* POSIX defines EINTR behaviour of read in a weird way. It's allowed
738 for read() to return -1 even if "some" bytes have been read. It
739 has been corrected in SUSv2 but that doesn't help us much...
740 Therefore a complete solution must check how many bytes have been
741 read on EINTR to return a more reliable value to the target */
742 old_offset
= lseek (fd
, 0, SEEK_CUR
);
743 remote_fio_no_longjmp
= 1;
744 ret
= read (fd
, buffer
, length
);
745 if (ret
< 0 && errno
== EINTR
)
747 new_offset
= lseek (fd
, 0, SEEK_CUR
);
748 /* If some data has been read, return the number of bytes read.
749 The Ctrl-C flag is set in remote_fileio_reply() anyway */
750 if (old_offset
!= new_offset
)
751 ret
= new_offset
- old_offset
;
758 retlength
= remote_fileio_write_bytes (ptrval
, buffer
, ret
);
759 if (retlength
!= ret
)
760 ret
= -1; /* errno has been set to EIO in remote_fileio_write_bytes() */
764 remote_fileio_return_errno (-1);
766 remote_fileio_return_success (ret
);
772 remote_fileio_func_write (char *buf
)
777 int fd
, ret
, retlength
;
781 /* 1. Parameter: file descriptor */
782 if (remote_fileio_extract_int (&buf
, &target_fd
))
784 remote_fileio_ioerror ();
787 fd
= remote_fileio_map_fd ((int) target_fd
);
788 if (fd
== FIO_FD_INVALID
)
790 remote_fileio_badfd ();
793 /* 2. Parameter: buffer pointer */
794 if (remote_fileio_extract_long (&buf
, &lnum
))
796 remote_fileio_ioerror ();
799 ptrval
= (CORE_ADDR
) lnum
;
800 /* 3. Parameter: buffer length */
801 if (remote_fileio_extract_int (&buf
, &num
))
803 remote_fileio_ioerror ();
806 length
= (size_t) num
;
808 buffer
= (char *) xmalloc (length
);
809 retlength
= remote_read_bytes (ptrval
, buffer
, length
);
810 if (retlength
!= length
)
813 remote_fileio_ioerror ();
817 remote_fio_no_longjmp
= 1;
820 case FIO_FD_CONSOLE_IN
:
821 remote_fileio_badfd ();
823 case FIO_FD_CONSOLE_OUT
:
824 ui_file_write (target_fd
== 1 ? gdb_stdtarg
: gdb_stdtargerr
, buffer
,
826 gdb_flush (target_fd
== 1 ? gdb_stdtarg
: gdb_stdtargerr
);
830 ret
= write (fd
, buffer
, length
);
831 if (ret
< 0 && errno
== EACCES
)
832 errno
= EBADF
; /* Cygwin returns EACCESS when writing to a R/O file.*/
837 remote_fileio_return_errno (-1);
839 remote_fileio_return_success (ret
);
845 remote_fileio_func_lseek (char *buf
)
852 /* 1. Parameter: file descriptor */
853 if (remote_fileio_extract_int (&buf
, &num
))
855 remote_fileio_ioerror ();
858 fd
= remote_fileio_map_fd ((int) num
);
859 if (fd
== FIO_FD_INVALID
)
861 remote_fileio_badfd ();
864 else if (fd
== FIO_FD_CONSOLE_IN
|| fd
== FIO_FD_CONSOLE_OUT
)
866 remote_fileio_reply (-1, FILEIO_ESPIPE
);
870 /* 2. Parameter: offset */
871 if (remote_fileio_extract_long (&buf
, &lnum
))
873 remote_fileio_ioerror ();
876 offset
= (off_t
) lnum
;
877 /* 3. Parameter: flag */
878 if (remote_fileio_extract_int (&buf
, &num
))
880 remote_fileio_ioerror ();
883 if (remote_fileio_seek_flag_to_host (num
, &flag
))
885 remote_fileio_reply (-1, FILEIO_EINVAL
);
889 remote_fio_no_longjmp
= 1;
890 ret
= lseek (fd
, offset
, flag
);
892 if (ret
== (off_t
) -1)
893 remote_fileio_return_errno (-1);
895 remote_fileio_return_success (ret
);
899 remote_fileio_func_rename (char *buf
)
902 int length
, retlength
;
903 char *oldpath
, *newpath
;
905 struct stat ost
, nst
;
907 /* 1. Parameter: Ptr to oldpath / length incl. trailing zero */
908 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
910 remote_fileio_ioerror ();
913 /* Request oldpath using 'm' packet */
914 oldpath
= alloca (length
);
915 retlength
= remote_read_bytes (ptrval
, oldpath
, length
);
916 if (retlength
!= length
)
918 remote_fileio_ioerror ();
921 /* 2. Parameter: Ptr to newpath / length incl. trailing zero */
922 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
924 remote_fileio_ioerror ();
927 /* Request newpath using 'm' packet */
928 newpath
= alloca (length
);
929 retlength
= remote_read_bytes (ptrval
, newpath
, length
);
930 if (retlength
!= length
)
932 remote_fileio_ioerror ();
936 /* Only operate on regular files and directories */
937 of
= stat (oldpath
, &ost
);
938 nf
= stat (newpath
, &nst
);
939 if ((!of
&& !S_ISREG (ost
.st_mode
) && !S_ISDIR (ost
.st_mode
))
940 || (!nf
&& !S_ISREG (nst
.st_mode
) && !S_ISDIR (nst
.st_mode
)))
942 remote_fileio_reply (-1, FILEIO_EACCES
);
946 remote_fio_no_longjmp
= 1;
947 ret
= rename (oldpath
, newpath
);
951 /* Special case: newpath is a non-empty directory. Some systems
952 return ENOTEMPTY, some return EEXIST. We coerce that to be
954 if (errno
== ENOTEMPTY
)
957 /* Workaround some Cygwin problems with correct errnos. */
960 if (!of
&& !nf
&& S_ISDIR (nst
.st_mode
))
962 if (S_ISREG (ost
.st_mode
))
966 char oldfullpath
[PATH_MAX
+ 1];
967 char newfullpath
[PATH_MAX
+ 1];
970 cygwin_conv_to_full_posix_path (oldpath
, oldfullpath
);
971 cygwin_conv_to_full_posix_path (newpath
, newfullpath
);
972 len
= strlen (oldfullpath
);
973 if (newfullpath
[len
] == '/'
974 && !strncmp (oldfullpath
, newfullpath
, len
))
983 remote_fileio_return_errno (-1);
986 remote_fileio_return_success (ret
);
990 remote_fileio_func_unlink (char *buf
)
993 int length
, retlength
;
998 /* Parameter: Ptr to pathname / length incl. trailing zero */
999 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
1001 remote_fileio_ioerror ();
1004 /* Request pathname using 'm' packet */
1005 pathname
= alloca (length
);
1006 retlength
= remote_read_bytes (ptrval
, pathname
, length
);
1007 if (retlength
!= length
)
1009 remote_fileio_ioerror ();
1013 /* Only operate on regular files (and directories, which allows to return
1014 the correct return code) */
1015 if (!stat (pathname
, &st
) && !S_ISREG (st
.st_mode
) && !S_ISDIR (st
.st_mode
))
1017 remote_fileio_reply (-1, FILEIO_ENODEV
);
1021 remote_fio_no_longjmp
= 1;
1022 ret
= unlink (pathname
);
1025 remote_fileio_return_errno (-1);
1027 remote_fileio_return_success (ret
);
1031 remote_fileio_func_stat (char *buf
)
1034 int ret
, length
, retlength
;
1038 struct fio_stat fst
;
1040 /* 1. Parameter: Ptr to pathname / length incl. trailing zero */
1041 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
1043 remote_fileio_ioerror ();
1046 /* Request pathname using 'm' packet */
1047 pathname
= alloca (length
);
1048 retlength
= remote_read_bytes (ptrval
, pathname
, length
);
1049 if (retlength
!= length
)
1051 remote_fileio_ioerror ();
1055 /* 2. Parameter: Ptr to struct stat */
1056 if (remote_fileio_extract_long (&buf
, &lnum
))
1058 remote_fileio_ioerror ();
1061 ptrval
= (CORE_ADDR
) lnum
;
1063 remote_fio_no_longjmp
= 1;
1064 ret
= stat (pathname
, &st
);
1068 remote_fileio_return_errno (-1);
1071 /* Only operate on regular files and directories */
1072 if (!ret
&& !S_ISREG (st
.st_mode
) && !S_ISDIR (st
.st_mode
))
1074 remote_fileio_reply (-1, FILEIO_EACCES
);
1079 remote_fileio_to_fio_stat (&st
, &fst
);
1080 remote_fileio_to_fio_uint (0, fst
.fst_dev
);
1082 retlength
= remote_fileio_write_bytes (ptrval
, (char *) &fst
, sizeof fst
);
1083 if (retlength
!= sizeof fst
)
1085 remote_fileio_return_errno (-1);
1089 remote_fileio_return_success (ret
);
1093 remote_fileio_func_fstat (char *buf
)
1096 int fd
, ret
, retlength
;
1100 struct fio_stat fst
;
1103 /* 1. Parameter: file descriptor */
1104 if (remote_fileio_extract_int (&buf
, &target_fd
))
1106 remote_fileio_ioerror ();
1109 fd
= remote_fileio_map_fd ((int) target_fd
);
1110 if (fd
== FIO_FD_INVALID
)
1112 remote_fileio_badfd ();
1115 /* 2. Parameter: Ptr to struct stat */
1116 if (remote_fileio_extract_long (&buf
, &lnum
))
1118 remote_fileio_ioerror ();
1121 ptrval
= (CORE_ADDR
) lnum
;
1123 remote_fio_no_longjmp
= 1;
1124 if (fd
== FIO_FD_CONSOLE_IN
|| fd
== FIO_FD_CONSOLE_OUT
)
1126 remote_fileio_to_fio_uint (1, fst
.fst_dev
);
1127 st
.st_mode
= S_IFCHR
| (fd
== FIO_FD_CONSOLE_IN
? S_IRUSR
: S_IWUSR
);
1129 st
.st_uid
= getuid ();
1130 st
.st_gid
= getgid ();
1133 st
.st_blksize
= 512;
1135 if (!gettimeofday (&tv
, NULL
))
1136 st
.st_atime
= st
.st_mtime
= st
.st_ctime
= tv
.tv_sec
;
1138 st
.st_atime
= st
.st_mtime
= st
.st_ctime
= (time_t) 0;
1142 ret
= fstat (fd
, &st
);
1146 remote_fileio_return_errno (-1);
1151 remote_fileio_to_fio_stat (&st
, &fst
);
1153 retlength
= remote_fileio_write_bytes (ptrval
, (char *) &fst
, sizeof fst
);
1154 if (retlength
!= sizeof fst
)
1156 remote_fileio_return_errno (-1);
1160 remote_fileio_return_success (ret
);
1164 remote_fileio_func_gettimeofday (char *buf
)
1170 struct fio_timeval ftv
;
1172 /* 1. Parameter: struct timeval pointer */
1173 if (remote_fileio_extract_long (&buf
, &lnum
))
1175 remote_fileio_ioerror ();
1178 ptrval
= (CORE_ADDR
) lnum
;
1179 /* 2. Parameter: some pointer value... */
1180 if (remote_fileio_extract_long (&buf
, &lnum
))
1182 remote_fileio_ioerror ();
1185 /* ...which has to be NULL */
1188 remote_fileio_reply (-1, FILEIO_EINVAL
);
1192 remote_fio_no_longjmp
= 1;
1193 ret
= gettimeofday (&tv
, NULL
);
1197 remote_fileio_return_errno (-1);
1203 remote_fileio_to_fio_timeval (&tv
, &ftv
);
1205 retlength
= remote_fileio_write_bytes (ptrval
, (char *) &ftv
, sizeof ftv
);
1206 if (retlength
!= sizeof ftv
)
1208 remote_fileio_return_errno (-1);
1212 remote_fileio_return_success (ret
);
1216 remote_fileio_func_isatty (char *buf
)
1221 /* Parameter: file descriptor */
1222 if (remote_fileio_extract_int (&buf
, &target_fd
))
1224 remote_fileio_ioerror ();
1227 remote_fio_no_longjmp
= 1;
1228 fd
= remote_fileio_map_fd ((int) target_fd
);
1229 remote_fileio_return_success (fd
== FIO_FD_CONSOLE_IN
||
1230 fd
== FIO_FD_CONSOLE_OUT
? 1 : 0);
1234 remote_fileio_func_system (char *buf
)
1237 int ret
, length
, retlength
;
1240 /* Check if system(3) has been explicitely allowed using the
1241 `set remote system-call-allowed 1' command. If not, return
1243 if (!remote_fio_system_call_allowed
)
1245 remote_fileio_reply (-1, FILEIO_EPERM
);
1249 /* Parameter: Ptr to commandline / length incl. trailing zero */
1250 if (remote_fileio_extract_ptr_w_len (&buf
, &ptrval
, &length
))
1252 remote_fileio_ioerror ();
1255 /* Request commandline using 'm' packet */
1256 cmdline
= alloca (length
);
1257 retlength
= remote_read_bytes (ptrval
, cmdline
, length
);
1258 if (retlength
!= length
)
1260 remote_fileio_ioerror ();
1264 remote_fio_no_longjmp
= 1;
1265 ret
= system (cmdline
);
1268 remote_fileio_return_errno (-1);
1270 remote_fileio_return_success (WEXITSTATUS (ret
));
1275 void (*func
)(char *);
1276 } remote_fio_func_map
[] = {
1277 "open", remote_fileio_func_open
,
1278 "close", remote_fileio_func_close
,
1279 "read", remote_fileio_func_read
,
1280 "write", remote_fileio_func_write
,
1281 "lseek", remote_fileio_func_lseek
,
1282 "rename", remote_fileio_func_rename
,
1283 "unlink", remote_fileio_func_unlink
,
1284 "stat", remote_fileio_func_stat
,
1285 "fstat", remote_fileio_func_fstat
,
1286 "gettimeofday", remote_fileio_func_gettimeofday
,
1287 "isatty", remote_fileio_func_isatty
,
1288 "system", remote_fileio_func_system
,
1293 do_remote_fileio_request (struct ui_out
*uiout
, void *buf_arg
)
1295 char *buf
= buf_arg
;
1299 remote_fileio_sig_set (remote_fileio_ctrl_c_signal_handler
);
1301 c
= strchr (++buf
, ',');
1305 c
= strchr (buf
, '\0');
1306 for (idx
= 0; remote_fio_func_map
[idx
].name
; ++idx
)
1307 if (!strcmp (remote_fio_func_map
[idx
].name
, buf
))
1309 if (!remote_fio_func_map
[idx
].name
) /* ERROR: No such function. */
1310 return RETURN_ERROR
;
1311 remote_fio_func_map
[idx
].func (c
);
1316 remote_fileio_request (char *buf
)
1320 remote_fileio_sig_init ();
1322 remote_fio_ctrl_c_flag
= 0;
1323 remote_fio_no_longjmp
= 0;
1325 ex
= catch_exceptions (uiout
, do_remote_fileio_request
, (void *)buf
,
1326 NULL
, RETURN_MASK_ALL
);
1330 remote_fileio_reply (-1, FILEIO_ENOSYS
);
1333 remote_fileio_reply (-1, FILEIO_EINTR
);
1339 remote_fileio_sig_exit ();
1343 set_system_call_allowed (char *args
, int from_tty
)
1348 int val
= strtoul (args
, &arg_end
, 10);
1349 if (*args
&& *arg_end
== '\0')
1351 remote_fio_system_call_allowed
= !!val
;
1355 error ("Illegal argument for \"set remote system-call-allowed\" command");
1359 show_system_call_allowed (char *args
, int from_tty
)
1362 error ("Garbage after \"show remote system-call-allowed\" command: `%s'", args
);
1363 printf_unfiltered ("Calling host system(3) call from target is %sallowed\n",
1364 remote_fio_system_call_allowed
? "" : "not ");
1368 initialize_remote_fileio (struct cmd_list_element
*remote_set_cmdlist
,
1369 struct cmd_list_element
*remote_show_cmdlist
)
1371 add_cmd ("system-call-allowed", no_class
,
1372 set_system_call_allowed
,
1373 "Set if the host system(3) call is allowed for the target.\n",
1374 &remote_set_cmdlist
);
1375 add_cmd ("system-call-allowed", no_class
,
1376 show_system_call_allowed
,
1377 "Show if the host system(3) call is allowed for the target.\n",
1378 &remote_show_cmdlist
);