1 /* Virtual File System: FISH implementation for transfering files over
4 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
5 2007 Free Software Foundation, Inc.
7 Written by: 1998 Pavel Machek
8 Spaces fix: 2000 Michal Svec
12 This program is free software; you can redistribute it and/or
13 modify it under the terms of the GNU Library General Public License
14 as published by the Free Software Foundation; either version 2 of
15 the License, or (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU Library General Public License for more details.
22 You should have received a copy of the GNU Library General Public
23 License along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
28 * \brief Source: Virtual File System: FISH implementation for transfering files over
30 * \author Pavel Machek
34 * Derived from ftpfs.c
35 * Read README.fish for protocol specification.
37 * Syntax of path is: \verbatim /#sh:user@host[:Cr]/path \endverbatim
38 * where C means you want compressed connection,
39 * and r means you want to use rsh
41 * Namespace: fish_vfs_ops exported.
44 /* Define this if your ssh can take -I option */
51 #include <sys/time.h> /* gettimeofday() */
55 #include "../src/global.h"
57 #include "../src/tty/tty.h" /* enable/disable interrupt key */
59 #include "../src/wtools.h" /* message() */
60 #include "../src/main.h" /* print_vfs_message */
61 #include "../src/util.h"
62 #include "../src/strescape.h"
63 #include "../src/unixcompat.h"
64 #include "../src/fs.h"
66 #include "xdirentry.h"
69 #include "gc.h" /* vfs_stamp_create */
73 int fish_directory_timeout
= 900;
75 #define DO_RESOLVE_SYMLINK 1
77 #define DO_FREE_RESOURCE 4
79 #define FISH_FLAG_COMPRESSED 1
80 #define FISH_FLAG_RSH 2
83 #define OPT_IGNORE_ERROR 2
88 #define PRELIM 1 /* positive preliminary */
89 #define COMPLETE 2 /* positive completion */
90 #define CONTINUE 3 /* positive intermediate */
91 #define TRANSIENT 4 /* transient negative completion */
92 #define ERROR 5 /* permanent negative completion */
94 /* command wait_flag: */
96 #define WAIT_REPLY 0x01
97 #define WANT_STRING 0x02
98 static char reply_str
[80];
100 static struct vfs_class vfs_fish_ops
;
103 fish_command (struct vfs_class
*me
, struct vfs_s_super
*super
,
104 int wait_reply
, const char *fmt
, ...)
105 __attribute__ ((format (__printf__
, 4, 5)));
107 static int fish_decode_reply (char *s
, int was_garbage
)
110 if (!sscanf(s
, "%d", &code
)) {
114 if (code
<100) return was_garbage
? ERROR
: (!code
? COMPLETE
: PRELIM
);
118 /* Returns a reply code, check /usr/include/arpa/ftp.h for possible values */
119 static int fish_get_reply (struct vfs_class
*me
, int sock
, char *string_buf
, int string_len
)
125 if (!vfs_s_get_line(me
, sock
, answer
, sizeof(answer
), '\n')) {
131 if (strncmp(answer
, "### ", 4)) {
134 g_strlcpy(string_buf
, answer
, string_len
);
135 } else return fish_decode_reply(answer
+4, was_garbage
);
139 #define SUP super->u.fish
142 fish_command (struct vfs_class
*me
, struct vfs_s_super
*super
,
143 int wait_reply
, const char *fmt
, ...)
148 FILE *logfile
= MEDATA
->logfile
;
152 str
= g_strdup_vprintf (fmt
, ap
);
156 fwrite (str
, strlen (str
), 1, logfile
);
160 tty_enable_interrupt_key ();
162 status
= write (SUP
.sockw
, str
, strlen (str
));
165 tty_disable_interrupt_key ();
170 return fish_get_reply (me
, SUP
.sockr
,
171 (wait_reply
& WANT_STRING
) ? reply_str
:
172 NULL
, sizeof (reply_str
) - 1);
177 fish_free_archive (struct vfs_class
*me
, struct vfs_s_super
*super
)
179 if ((SUP
.sockw
!= -1) || (SUP
.sockr
!= -1)) {
180 print_vfs_message (_("fish: Disconnecting from %s"),
181 super
->name
? super
->name
: "???");
182 fish_command (me
, super
, NONE
, "#BYE\nexit\n");
185 SUP
.sockw
= SUP
.sockr
= -1;
190 g_free (SUP
.password
);
194 fish_pipeopen(struct vfs_s_super
*super
, const char *path
, const char *argv
[])
196 int fileset1
[2], fileset2
[2];
199 if ((pipe(fileset1
)<0) || (pipe(fileset2
)<0))
200 vfs_die("Cannot pipe(): %m.");
202 if ((res
= fork())) {
203 if (res
<0) vfs_die("Cannot fork(): %m.");
204 /* We are the parent */
206 SUP
.sockw
= fileset1
[1];
208 SUP
.sockr
= fileset2
[0];
212 close(fileset1
[0]); close(fileset1
[1]);
215 /* stderr to /dev/null */
216 open ("/dev/null", O_WRONLY
);
217 close(fileset2
[0]); close(fileset2
[1]);
218 execvp(path
, const_cast(char **, argv
));
223 /* The returned directory should always contain a trailing slash */
224 static char *fish_getcwd(struct vfs_class
*me
, struct vfs_s_super
*super
)
226 if (fish_command (me
, super
, WANT_STRING
, "#PWD\npwd; echo '### 200'\n") == COMPLETE
)
227 return g_strconcat (reply_str
, "/", (char *) NULL
);
232 fish_open_archive_int (struct vfs_class
*me
, struct vfs_s_super
*super
)
236 const char *argv
[10]; /* All of 10 is used now */
237 const char *xsh
= (SUP
.flags
== FISH_FLAG_RSH
? "rsh" : "ssh");
241 if (SUP
.flags
== FISH_FLAG_COMPRESSED
)
244 if (SUP
.flags
> FISH_FLAG_RSH
)
247 g_snprintf (gbuf
, sizeof (gbuf
), "%d", SUP
.flags
);
252 argv
[i
++] = SUP
.user
;
253 argv
[i
++] = SUP
.host
;
254 argv
[i
++] = "echo FISH:; /bin/sh";
257 fish_pipeopen (super
, xsh
, argv
);
261 print_vfs_message (_("fish: Waiting for initial line..."));
262 if (!vfs_s_get_line (me
, SUP
.sockr
, answer
, sizeof (answer
), ':'))
263 ERRNOR (E_PROTO
, -1);
264 print_vfs_message ("%s", answer
);
265 if (strstr (answer
, "assword")) {
267 /* Currently, this does not work. ssh reads passwords from
268 /dev/tty, not from stdin :-(. */
270 message (D_ERROR
, MSG_ERROR
,
272 ("Sorry, we cannot do password authenticated connections for now."));
276 p
= g_strconcat (_(" fish: Password required for "),
277 SUP
.user
, " ", (char *) NULL
);
278 op
= vfs_get_password (p
);
284 print_vfs_message (_("fish: Sending password..."));
285 write (SUP
.sockw
, SUP
.password
, strlen (SUP
.password
));
286 write (SUP
.sockw
, "\n", 1);
290 print_vfs_message (_("fish: Sending initial line..."));
292 * Run `start_fish_server'. If it doesn't exist - no problem,
293 * we'll talk directly to the shell.
296 (me
, super
, WAIT_REPLY
,
297 "#FISH\necho; start_fish_server 2>&1; echo '### 200'\n") !=
299 ERRNOR (E_PROTO
, -1);
301 print_vfs_message (_("fish: Handshaking version..."));
303 (me
, super
, WAIT_REPLY
,
304 "#VER 0.0.0\necho '### 000'\n") != COMPLETE
)
305 ERRNOR (E_PROTO
, -1);
307 /* Set up remote locale to C, otherwise dates cannot be recognized */
309 (me
, super
, WAIT_REPLY
,
310 "LANG=C; LC_ALL=C; LC_TIME=C\n"
311 "export LANG; export LC_ALL; export LC_TIME\n" "echo '### 200'\n")
313 ERRNOR (E_PROTO
, -1);
315 print_vfs_message (_("fish: Setting up current directory..."));
316 SUP
.cwdir
= fish_getcwd (me
, super
);
317 print_vfs_message (_("fish: Connected, home %s."), SUP
.cwdir
);
320 g_strconcat ("/#sh:", SUP
.user
, "@", SUP
.host
, "/", (char *) NULL
);
322 super
->name
= g_strdup (PATH_SEP_STR
);
325 vfs_s_new_inode (me
, super
,
326 vfs_s_default_stat (me
, S_IFDIR
| 0755));
331 fish_open_archive (struct vfs_class
*me
, struct vfs_s_super
*super
,
332 const char *archive_name
, char *op
)
334 char *host
, *user
, *password
, *p
;
339 p
= vfs_split_url (strchr (op
, ':') + 1, &host
, &user
, &flags
,
340 &password
, 0, URL_NOSLASH
);
347 if (!strncmp (op
, "rsh:", 4))
348 SUP
.flags
= FISH_FLAG_RSH
;
351 SUP
.password
= password
;
352 return fish_open_archive_int (me
, super
);
356 fish_archive_same (struct vfs_class
*me
, struct vfs_s_super
*super
,
357 const char *archive_name
, char *op
, void *cookie
)
366 op
= vfs_split_url (strchr (op
, ':') + 1, &host
, &user
, &flags
, 0, 0,
371 flags
= ((strcmp (host
, SUP
.host
) == 0)
372 && (strcmp (user
, SUP
.user
) == 0) && (flags
== SUP
.flags
));
380 fish_dir_load(struct vfs_class
*me
, struct vfs_s_inode
*dir
, char *remote_path
)
382 struct vfs_s_super
*super
= dir
->super
;
384 struct vfs_s_entry
*ent
= NULL
;
388 gchar
*shell_commands
;
392 * Simple FISH debug interface :]
394 if (!(MEDATA
->logfile
))
396 MEDATA
->logfile
= fopen("/tmp/mc-FISH.sh", "w");
400 logfile
= MEDATA
->logfile
;
402 print_vfs_message(_("fish: Reading directory %s..."), remote_path
);
404 gettimeofday(&dir
->timestamp
, NULL
);
405 dir
->timestamp
.tv_sec
+= fish_directory_timeout
;
406 quoted_path
= strutils_shell_escape (remote_path
);
407 shell_commands
= g_strconcat(
409 "if `perl -v > /dev/null 2>&1` ; then\n"
414 "use POSIX \":fcntl_h\"; #S_ISLNK was here until 5.6\n"
415 "import Fcntl \":mode\" unless defined &S_ISLNK; #and is now here\n"
416 "my $dirname = $ARGV[0];\n"
417 "if (opendir ( DIR, $dirname )) {\n"
418 "while( (my $filename = readdir(DIR))){\n"
419 "my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,$blksize,$blocks) = lstat(\"$dirname/$filename\");\n"
420 "my $mloctime= strftime(\"%%m-%%d-%%Y %%H:%%M\", localtime $mtime);\n"
422 "my $strutils_shell_escape_regex= s/([;<>\\*\\|`&\\$!#\\(\\)\\[\\]\\{\\}:'\\''\"\\ \\\\])/\\\\$1/g;\n"
423 "my $e_filename = $filename;\n"
424 "$e_filename =~ $strutils_shell_escape_regex;\n"
425 "if (S_ISLNK($mode) ) {\n"
426 "my $linkname = readlink (\"$dirname/$filename\");\n"
427 "$linkname =~ $strutils_shell_escape_regex;\n"
429 "printf(\"R%%o %%o $uid.$gid\\n"
432 ":\\\"$e_filename\\\" -> \\\"$linkname\\\"\\n"
433 "\\n\", S_IMODE($mode), S_IFMT($mode));\n"
435 "printf(\"R%%o %%o $uid.$gid\\n"
438 ":\\\"$e_filename\\\"\\n"
439 "\\n\", S_IMODE($mode), S_IFMT($mode));\n"
442 "printf(\"### 200\\n\");\n"
445 "printf(\"### 500\\n\");\n"
448 "' /%s ||\n" /* ARGV[0] - path to browse */
449 " echo '### 500'\n" /* do not hang if perl is to eval it */
450 "elif `ls -1 /%s >/dev/null 2>&1` ; then\n"
451 "if `ls -Q /%s >/dev/null 2>&1`; then\n"
458 "ls $LSOPT /%s 2>/dev/null | grep '^[^cbt]' | (\n"
459 "while read p l u g s m d y n n2 n3; do\n"
460 "if test \"$m\" = \"0\" ; then \n"
461 "s=$d; m=$y; d=$n y=$n2; n=$n3\n"
463 "n=$n\" \"$n2\" \"$n3\n"
465 "if [ $ADD = 0 ]; then\n"
466 "echo \"P$p $u.$g\nS$s\nd$m $d $y\n:$n\n\"\n"
467 "elif `sed --version >/dev/null 2>&1` ; then\n"
468 "file=`echo $n | sed -e 's#^\\(.*\\) -> \\(.*\\)#\\1\" -> \"\\2#'`\n"
470 "echo \"P$p $u $g\nS$s\nd$m $d $y\n:\"$file\"\n\"\n"
472 "echo \"P$p $u $g\nS$s\nd$m $d $y\n:\"$n\"\n\"\n"
475 "ls $LSOPT /%s 2>/dev/null | grep '^[cb]' | (\n"
476 "while read p l u g a i m d y n n2 n3; do\n"
477 "if test \"$a\" = \"0\" ; then \n"
478 "a=$m; i=$d; m=$y; d=$n y=$n2; n=$n3\n"
480 "n=$n\" \"$n2\" \"$n3\n"
482 "if [ $ADD = 0 ]; then\n"
483 "echo \"P$p $u.$g\nE$a$i\nd$m $d $y\n:$n\n\"\n"
484 "elif `sed --version >/dev/null 2>&1` ; then\n"
485 "file=`echo $n | sed -e 's#^\\(.*\\) -> \\(.*\\)#\\1\" -> \"\\2#'`\n"
486 "echo \"P$p $u $g\nS$s\nd$m $d $y\n:\"$file\"\n\"\n"
488 "echo \"P$p $u $g\nS$s\nd$m $d $y\n:\"$n\"\n\"\n"
498 fish_command (me
, super
, NONE
, shell_commands
,
499 quoted_path
, quoted_path
, quoted_path
, quoted_path
, quoted_path
, quoted_path
);
501 g_free(shell_commands
);
502 g_free (quoted_path
);
503 ent
= vfs_s_generate_entry(me
, NULL
, dir
, 0);
505 int res
= vfs_s_get_line_interruptible (me
, buffer
, sizeof (buffer
), SUP
.sockr
);
506 if ((!res
) || (res
== EINTR
)) {
507 vfs_s_free_entry(me
, ent
);
508 me
->verrno
= ECONNRESET
;
512 fputs (buffer
, logfile
);
513 fputs ("\n", logfile
);
516 if (!strncmp(buffer
, "### ", 4))
520 vfs_s_insert_entry(me
, dir
, ent
);
521 ent
= vfs_s_generate_entry(me
, NULL
, dir
, 0);
526 #define ST ent->ino->st
531 char *data_start
= buffer
+1;
532 char *filename
= data_start
;
533 char *linkname
= data_start
;
534 char *filename_bound
= filename
+ strlen(filename
);
535 char *linkname_bound
= filename_bound
;
536 if (!strcmp(data_start
, "\".\"") || !strcmp(data_start
, "\"..\""))
537 break; /* We'll do "." and ".." ourselves */
539 if (S_ISLNK(ST
.st_mode
)) {
540 /* we expect: "escaped-name" -> "escaped-name"
541 // -> cannot occur in filenames,
542 // because it will be escaped to -\> */
544 if (*filename
== '"')
547 linkname
= strstr(filename
, "\" -> \"");
550 /* broken client, or smth goes wrong */
551 linkname
= filename_bound
;
552 if (filename_bound
> filename
553 && *(filename_bound
- 1) == '"')
554 --filename_bound
; /* skip trailing " */
558 filename_bound
= linkname
;
559 linkname
+= 6; /* strlen ("\" -> \"") */
560 if (*(linkname_bound
- 1) == '"')
561 --linkname_bound
; /* skip trailing " */
564 ent
->name
= str_dup_range(filename
, filename_bound
);
566 ent
->name
= strutils_shell_unescape(ent
->name
);
569 ent
->ino
->linkname
= str_dup_range(linkname
, linkname_bound
);
570 temp
= ent
->ino
->linkname
;
571 ent
->ino
->linkname
= strutils_shell_unescape(ent
->ino
->linkname
);
574 /* we expect: "escaped-name" */
575 if (filename_bound
- filename
> 2)
578 there is at least 2 "
581 if (*filename
== '"')
583 if (*(filename_bound
- 1) == '"')
586 ent
->name
= str_dup_range(filename
, filename_bound
);
588 ent
->name
= strutils_shell_unescape(ent
->name
);
595 ST
.st_size
= (off_t
) atoll (buffer
+1);
597 ST
.st_size
= (off_t
) atof (buffer
+1);
602 vfs_parse_filemode (buffer
+ 1, &skipped
, &ST
.st_mode
);
608 we expect: Roctal-filemode octal-filetype uid.gid
611 vfs_parse_raw_filemode (buffer
+ 1, &skipped
, &ST
.st_mode
);
615 vfs_split_text(buffer
+1);
616 if (!vfs_parse_filedate(0, &ST
.st_ctime
))
618 ST
.st_atime
= ST
.st_mtime
= ST
.st_ctime
;
623 if (sscanf(buffer
+1, "%d %d %d %d %d %d", &tim
.tm_year
, &tim
.tm_mon
,
624 &tim
.tm_mday
, &tim
.tm_hour
, &tim
.tm_min
, &tim
.tm_sec
) != 6)
626 ST
.st_atime
= ST
.st_mtime
= ST
.st_ctime
= mktime(&tim
);
631 if (sscanf(buffer
+1, "%d,%d", &maj
, &min
) != 2)
633 #ifdef HAVE_STRUCT_STAT_ST_RDEV
634 ST
.st_rdev
= makedev (maj
, min
);
640 vfs_s_free_entry (me
, ent
);
641 reply_code
= fish_decode_reply(buffer
+ 4, 0);
642 if (reply_code
== COMPLETE
) {
644 SUP
.cwdir
= g_strdup (remote_path
);
645 print_vfs_message (_("%s: done."), me
->name
);
647 } else if (reply_code
== ERROR
) {
650 me
->verrno
= E_REMOTE
;
654 print_vfs_message (_("%s: failure"), me
->name
);
659 fish_file_store(struct vfs_class
*me
, struct vfs_s_fh
*fh
, char *name
, char *localname
)
661 struct vfs_s_super
*super
= FH_SUPER
;
669 h
= open (localname
, O_RDONLY
);
673 if (fstat(h
, &s
)<0) {
678 /* First, try this as stor:
680 * ( head -c number ) | ( cat > file; cat >/dev/null )
682 * If `head' is not present on the remote system, `dd' will be used.
683 * Unfortunately, we cannot trust most non-GNU `head' implementations
684 * even if `-c' options is supported. Therefore, we separate GNU head
685 * (and other modern heads?) using `-q' and `-' . This causes another
686 * implementations to fail (because of "incorrect options").
691 * while [ $rest -gt 0 ]
693 * cnt=`expr \( $rest + 255 \) / 256`
694 * n=`dd bs=256 count=$cnt | tee -a <target_file> | wc -c`
695 * rest=`expr $rest - $n`
698 * `dd' was not designed for full filling of input buffers,
699 * and does not report exact number of bytes (not blocks).
700 * Therefore a more complex shell script is needed.
702 * On some systems non-GNU head writes "Usage:" error report to stdout
703 * instead of stderr. It makes impossible the use of "head || dd"
704 * algorithm for file appending case, therefore just "dd" is used for it.
707 quoted_name
= strutils_shell_escape(name
);
708 print_vfs_message(_("fish: store %s: sending command..."), quoted_name
);
710 /* FIXME: File size is limited to ULONG_MAX */
711 if (!fh
->u
.fish
.append
)
712 n
= fish_command (me
, super
, WAIT_REPLY
,
718 "head -c %lu -q - || echo DD >&3\n"
719 ") 2>/dev/null | (\n"
722 ")`; [ \"$res\" = DD ] && {\n"
725 "while [ $rest -gt 0 ]\n"
727 " cnt=`expr \\( $rest + 255 \\) / 256`\n"
728 " n=`dd bs=256 count=$cnt | tee -a \"$file\" | wc -c`\n"
729 " rest=`expr $rest - $n`\n"
731 "}; echo '### 200'\n",
732 (unsigned long) s
.st_size
, quoted_name
,
733 quoted_name
, (unsigned long) s
.st_size
,
734 (unsigned long) s
.st_size
);
736 n
= fish_command (me
, super
, WAIT_REPLY
,
742 "while [ $rest -gt 0 ]\n"
744 " cnt=`expr \\( $rest + 255 \\) / 256`\n"
745 " n=`dd bs=256 count=$cnt | tee -a $file | wc -c`\n"
746 " rest=`expr $rest - $n`\n"
748 "}; echo '### 200'\n",
749 (unsigned long) s
.st_size
, quoted_name
,
750 quoted_name
, (unsigned long) s
.st_size
);
754 ERRNOR(E_REMOTE
, -1);
760 while ((n
= read(h
, buffer
, sizeof(buffer
))) < 0) {
761 if ((errno
== EINTR
) && tty_got_interrupt ())
763 print_vfs_message(_("fish: Local read failed, sending zeros") );
765 h
= open( "/dev/zero", O_RDONLY
);
769 if ((t
= write (SUP
.sockw
, buffer
, n
)) != n
) {
777 tty_disable_interrupt_key ();
779 print_vfs_message(_("fish: storing %s %d (%lu)"),
780 was_error
? _("zeros") : _("file"), total
,
781 (unsigned long) s
.st_size
);
785 if ((fish_get_reply (me
, SUP
.sockr
, NULL
, 0) != COMPLETE
) || was_error
)
786 ERRNOR (E_REMOTE
, -1);
790 fish_get_reply(me
, SUP
.sockr
, NULL
, 0);
796 fish_linear_start (struct vfs_class
*me
, struct vfs_s_fh
*fh
, off_t offset
)
801 ERRNOR (E_NOTSUPP
, 0);
802 name
= vfs_s_fullpath (me
, fh
->ino
);
805 quoted_name
= strutils_shell_escape(name
);
806 fh
->u
.fish
.append
= 0;
809 * Check whether the remote file is readable by using `dd' to copy
810 * a single byte from the remote file to /dev/null. If `dd' completes
811 * with exit status of 0 use `cat' to send the file contents to the
812 * standard output (i.e. over the network).
814 offset
= fish_command (me
, FH_SUPER
, WANT_STRING
,
816 "if dd if=/%s of=/dev/null bs=1 count=1 2>/dev/null ;\n"
818 "ls -ln /%s 2>/dev/null | (\n"
828 quoted_name
, quoted_name
, quoted_name
, quoted_name
);
829 g_free (quoted_name
);
830 if (offset
!= PRELIM
) ERRNOR (E_REMOTE
, 0);
831 fh
->linear
= LS_LINEAR_OPEN
;
834 #if SIZEOF_OFF_T == SIZEOF_LONG
835 fh
->u
.fish
.total
= strtol (reply_str
, NULL
, 10);
837 fh
->u
.fish
.total
= strtoll (reply_str
, NULL
, 10);
840 ERRNOR (E_REMOTE
, 0);
845 fish_linear_abort (struct vfs_class
*me
, struct vfs_s_fh
*fh
)
847 struct vfs_s_super
*super
= FH_SUPER
;
851 print_vfs_message( _("Aborting transfer...") );
853 n
= MIN(8192, fh
->u
.fish
.total
- fh
->u
.fish
.got
);
855 if ((n
= read(SUP
.sockr
, buffer
, n
)) < 0)
861 if (fish_get_reply (me
, SUP
.sockr
, NULL
, 0) != COMPLETE
)
862 print_vfs_message( _("Error reported after abort.") );
864 print_vfs_message( _("Aborted transfer would be successful.") );
868 fish_linear_read (struct vfs_class
*me
, struct vfs_s_fh
*fh
, void *buf
, int len
)
870 struct vfs_s_super
*super
= FH_SUPER
;
872 len
= MIN( fh
->u
.fish
.total
- fh
->u
.fish
.got
, len
);
873 tty_disable_interrupt_key ();
874 while (len
&& ((n
= read (SUP
.sockr
, buf
, len
))<0)) {
875 if ((errno
== EINTR
) && !tty_got_interrupt ())
879 tty_enable_interrupt_key();
881 if (n
>0) fh
->u
.fish
.got
+= n
;
882 if (n
<0) fish_linear_abort(me
, fh
);
883 if ((!n
) && ((fish_get_reply (me
, SUP
.sockr
, NULL
, 0) != COMPLETE
)))
884 ERRNOR (E_REMOTE
, -1);
889 fish_linear_close (struct vfs_class
*me
, struct vfs_s_fh
*fh
)
891 if (fh
->u
.fish
.total
!= fh
->u
.fish
.got
)
892 fish_linear_abort(me
, fh
);
896 fish_ctl (void *fh
, int ctlop
, void *arg
)
904 case VFS_CTL_IS_NOTREADY
:
909 vfs_die ("You may not do this");
910 if (FH
->linear
== LS_LINEAR_CLOSED
|| FH
->linear
== LS_LINEAR_PREOPEN
)
913 v
= vfs_s_select_on_two (FH_SUPER
->u
.fish
.sockr
, 0);
914 if (((v
< 0) && (errno
== EINTR
)) || v
== 0)
925 fish_send_command(struct vfs_class
*me
, struct vfs_s_super
*super
, const char *cmd
, int flags
)
929 r
= fish_command (me
, super
, WAIT_REPLY
, "%s", cmd
);
930 vfs_stamp_create (&vfs_fish_ops
, super
);
931 if (r
!= COMPLETE
) ERRNOR (E_REMOTE
, -1);
932 if (flags
& OPT_FLUSH
)
933 vfs_s_invalidate(me
, super
);
938 char buf[BUF_LARGE]; \
939 const char *crpath; \
940 char *rpath, *mpath = g_strdup (path); \
941 struct vfs_s_super *super; \
942 if (!(crpath = vfs_s_get_path_mangle (me, mpath, &super, 0))) { \
946 rpath = strutils_shell_escape(crpath); \
949 #define POSTFIX(flags) \
951 return fish_send_command(me, super, buf, flags);
954 fish_chmod (struct vfs_class
*me
, const char *path
, int mode
)
957 g_snprintf(buf
, sizeof(buf
), "#CHMOD %4.4o /%s\n"
958 "if chmod %4.4o /%s 2>/dev/null; then\n"
964 mode
& 07777, rpath
);
968 #define FISH_OP(name, string) \
969 static int fish_##name (struct vfs_class *me, const char *path1, const char *path2) \
971 char buf[BUF_LARGE]; \
972 const char *crpath1, *crpath2; \
973 char *rpath1, *rpath2, *mpath1, *mpath2; \
974 struct vfs_s_super *super1, *super2; \
975 if (!(crpath1 = vfs_s_get_path_mangle (me, mpath1 = g_strdup(path1), &super1, 0))) { \
979 if (!(crpath2 = vfs_s_get_path_mangle (me, mpath2 = g_strdup(path2), &super2, 0))) { \
984 rpath1 = strutils_shell_escape (crpath1); \
986 rpath2 = strutils_shell_escape (crpath2); \
988 g_snprintf(buf, sizeof(buf), string "\n", rpath1, rpath2, rpath1, rpath2); \
991 return fish_send_command(me, super2, buf, OPT_FLUSH); \
994 FISH_OP(rename
, "#RENAME /%s /%s\n"
995 "if mv /%s /%s 2>/dev/null; then\n"
1000 FISH_OP(link
, "#LINK /%s /%s\n"
1001 "if ln /%s /%s 2>/dev/null; then\n"
1007 static int fish_symlink (struct vfs_class
*me
, const char *setto
, const char *path
)
1011 qsetto
= strutils_shell_escape (setto
);
1012 g_snprintf(buf
, sizeof(buf
),
1014 "if ln -s %s /%s 2>/dev/null; then\n"
1019 qsetto
, rpath
, qsetto
, rpath
);
1025 fish_chown (struct vfs_class
*me
, const char *path
, int owner
, int group
)
1027 char *sowner
, *sgroup
;
1031 if ((pw
= getpwuid (owner
)) == NULL
)
1034 if ((gr
= getgrgid (group
)) == NULL
)
1037 sowner
= pw
->pw_name
;
1038 sgroup
= gr
->gr_name
;
1041 g_snprintf (buf
, sizeof(buf
),
1042 "#CHOWN %s:%s /%s\n"
1043 "if chown %s:%s /%s 2>/dev/null; then\n"
1048 sowner
, sgroup
, rpath
,
1049 sowner
, sgroup
, rpath
);
1050 fish_send_command (me
, super
, buf
, OPT_FLUSH
);
1051 /* FIXME: what should we report if chgrp succeeds but chown fails? */
1052 /* fish_send_command(me, super, buf, OPT_FLUSH); */
1057 static int fish_unlink (struct vfs_class
*me
, const char *path
)
1060 g_snprintf(buf
, sizeof(buf
),
1062 "if rm -f /%s 2>/dev/null; then\n"
1071 static int fish_exists (struct vfs_class
*me
, const char *path
)
1075 g_snprintf(buf
, sizeof(buf
),
1077 "ls -l /%s >/dev/null 2>/dev/null\n"
1083 if ( fish_send_command(me
, super
, buf
, OPT_FLUSH
) == 0 )
1090 static int fish_mkdir (struct vfs_class
*me
, const char *path
, mode_t mode
)
1098 g_snprintf(buf
, sizeof(buf
),
1100 "if mkdir /%s 2>/dev/null; then\n"
1108 ret_code
= fish_send_command(me
, super
, buf
, OPT_FLUSH
);
1110 if ( ret_code
!= 0 )
1113 if ( ! fish_exists (me
, path
) ){
1114 ERRNOR (EACCES
, -1);
1119 static int fish_rmdir (struct vfs_class
*me
, const char *path
)
1122 g_snprintf(buf
, sizeof(buf
),
1124 "if rmdir /%s 2>/dev/null; then\n"
1134 fish_fh_open (struct vfs_class
*me
, struct vfs_s_fh
*fh
, int flags
,
1139 fh
->u
.fish
.append
= 0;
1140 /* File will be written only, so no need to retrieve it */
1141 if (((flags
& O_WRONLY
) == O_WRONLY
) && !(flags
& (O_RDONLY
| O_RDWR
))) {
1142 fh
->u
.fish
.append
= flags
& O_APPEND
;
1143 if (!fh
->ino
->localname
) {
1145 vfs_mkstemps (&fh
->ino
->localname
, me
->name
,
1146 fh
->ino
->ent
->name
);
1147 if (tmp_handle
== -1)
1153 if (!fh
->ino
->localname
)
1154 if (vfs_s_retrieve_file (me
, fh
->ino
) == -1)
1156 if (!fh
->ino
->localname
)
1157 vfs_die ("retrieve_file failed to fill in localname");
1162 fish_fill_names (struct vfs_class
*me
, fill_names_f func
)
1164 struct vfs_s_super
*super
= MEDATA
->supers
;
1171 const char *flags
= "";
1177 case FISH_FLAG_COMPRESSED
:
1181 if (SUP
.flags
> FISH_FLAG_RSH
)
1184 g_snprintf (gbuf
, sizeof (gbuf
), ":%d", SUP
.flags
);
1190 name
= g_strconcat ("/#sh:", SUP
.user
, "@", SUP
.host
, flags
,
1191 "/", SUP
.cwdir
, (char *) NULL
);
1194 super
= super
->next
;
1199 fish_open (struct vfs_class
*me
, const char *file
, int flags
, int mode
)
1202 sorry, i've places hack here
1203 cause fish don't able to open files with O_EXCL flag
1206 return vfs_s_open (me
, file
, flags
, mode
);
1213 static struct vfs_s_subclass fish_subclass
;
1215 fish_subclass
.flags
= VFS_S_REMOTE
;
1216 fish_subclass
.archive_same
= fish_archive_same
;
1217 fish_subclass
.open_archive
= fish_open_archive
;
1218 fish_subclass
.free_archive
= fish_free_archive
;
1219 fish_subclass
.fh_open
= fish_fh_open
;
1220 fish_subclass
.dir_load
= fish_dir_load
;
1221 fish_subclass
.file_store
= fish_file_store
;
1222 fish_subclass
.linear_start
= fish_linear_start
;
1223 fish_subclass
.linear_read
= fish_linear_read
;
1224 fish_subclass
.linear_close
= fish_linear_close
;
1226 vfs_s_init_class (&vfs_fish_ops
, &fish_subclass
);
1227 vfs_fish_ops
.name
= "fish";
1228 vfs_fish_ops
.prefix
= "sh:";
1229 vfs_fish_ops
.fill_names
= fish_fill_names
;
1230 vfs_fish_ops
.chmod
= fish_chmod
;
1231 vfs_fish_ops
.chown
= fish_chown
;
1232 vfs_fish_ops
.open
= fish_open
;
1233 vfs_fish_ops
.symlink
= fish_symlink
;
1234 vfs_fish_ops
.link
= fish_link
;
1235 vfs_fish_ops
.unlink
= fish_unlink
;
1236 vfs_fish_ops
.rename
= fish_rename
;
1237 vfs_fish_ops
.mkdir
= fish_mkdir
;
1238 vfs_fish_ops
.rmdir
= fish_rmdir
;
1239 vfs_fish_ops
.ctl
= fish_ctl
;
1240 vfs_register_class (&vfs_fish_ops
);