1 /* Virtual File System switch code
2 Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2007 Free Software Foundation, Inc.
5 Written by: 1995 Miguel de Icaza
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public License
11 as published by the Free Software Foundation; either version 2 of
12 the License, or (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU Library General Public License for more details.
19 You should have received a copy of the GNU Library General Public
20 License along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
25 * \brief Source: Virtual File System switch code
26 * \author Miguel de Icaza
27 * \author Jakub Jelinek
28 * \author Pavel Machek
30 * \warning funtions like extfs_lstat() have right to destroy any
31 * strings you pass to them. This is acutally ok as you g_strdup what
32 * you are passing to them, anyway; still, beware.
34 * Namespace: exports *many* functions with vfs_ prefix; exports
35 * parse_ls_lga and friends which do not have that prefix.
41 #include <stdlib.h> /* For atol() */
45 #include <sys/types.h>
47 #include <ctype.h> /* is_digit() */
53 #include "../src/global.h"
55 #include "../src/wtools.h" /* message() */
56 #include "../src/main.h" /* print_vfs_message */
57 #include "../src/strutil.h"
70 /** They keep track of the current directory */
71 static struct vfs_class
*current_vfs
;
72 static char *current_dir
;
76 struct vfs_class
*vclass
;
86 static GPtrArray
*vfs_openfiles
;
87 static long vfs_free_handle_list
= -1;
88 #define VFS_FIRST_HANDLE 100
90 static struct vfs_class
*localfs_class
;
91 static GString
*vfs_str_buffer
;
93 static const char *supported_encodings
[] = {
108 /** Create new VFS handle and put it to the list */
110 vfs_new_handle (struct vfs_class
*vclass
, void *fsinfo
)
112 struct vfs_openfile
*h
;
114 h
= g_new (struct vfs_openfile
, 1);
118 /* Allocate the first free handle */
119 h
->handle
= vfs_free_handle_list
;
120 if (h
->handle
== -1) {
121 /* No free allocated handles, allocate one */
122 h
->handle
= vfs_openfiles
->len
;
123 g_ptr_array_add (vfs_openfiles
, h
);
125 vfs_free_handle_list
= (long) g_ptr_array_index (vfs_openfiles
, vfs_free_handle_list
);
126 g_ptr_array_index (vfs_openfiles
, h
->handle
) = h
;
129 h
->handle
+= VFS_FIRST_HANDLE
;
133 /** Find VFS class by file handle */
134 static struct vfs_class
*
137 struct vfs_openfile
*h
;
139 if (handle
< VFS_FIRST_HANDLE
||
140 (guint
)(handle
- VFS_FIRST_HANDLE
) >= vfs_openfiles
->len
)
143 h
= (struct vfs_openfile
*) g_ptr_array_index (
144 vfs_openfiles
, handle
- VFS_FIRST_HANDLE
);
148 g_assert (h
->handle
== handle
);
153 /** Find private file data by file handle */
155 vfs_info (int handle
)
157 struct vfs_openfile
*h
;
159 if (handle
< VFS_FIRST_HANDLE
||
160 (guint
)(handle
- VFS_FIRST_HANDLE
) >= vfs_openfiles
->len
)
163 h
= (struct vfs_openfile
*) g_ptr_array_index (
164 vfs_openfiles
, handle
- VFS_FIRST_HANDLE
);
168 g_assert (h
->handle
== handle
);
173 /** Free open file data for given file handle */
175 vfs_free_handle (int handle
)
177 if (handle
< VFS_FIRST_HANDLE
||
178 (guint
)(handle
- VFS_FIRST_HANDLE
) >= vfs_openfiles
->len
)
181 g_ptr_array_index (vfs_openfiles
, handle
- VFS_FIRST_HANDLE
) =
182 (void *) vfs_free_handle_list
;
183 vfs_free_handle_list
= handle
- VFS_FIRST_HANDLE
;
186 static struct vfs_class
*vfs_list
;
189 vfs_register_class (struct vfs_class
*vfs
)
191 if (vfs
->init
) /* vfs has own initialization function */
192 if (!(*vfs
->init
)(vfs
)) /* but it failed */
195 vfs
->next
= vfs_list
;
201 /** Return VFS class for the given prefix */
202 static struct vfs_class
*
203 vfs_prefix_to_class (char *prefix
)
205 struct vfs_class
*vfs
;
207 /* Avoid last class (localfs) that would accept any prefix */
208 for (vfs
= vfs_list
; vfs
->next
; vfs
= vfs
->next
) {
210 if ((*vfs
->which
) (vfs
, prefix
) == -1)
215 && !strncmp (prefix
, vfs
->prefix
, strlen (vfs
->prefix
)))
221 /** Strip known vfs suffixes from a filename (possible improvement: strip
222 * suffix from last path component).
223 * \return a malloced string which has to be freed.
226 vfs_strip_suffix_from_filename (const char *filename
)
228 struct vfs_class
*vfs
;
233 vfs_die ("vfs_strip_suffix_from_path got NULL: impossible");
235 p
= g_strdup (filename
);
236 if (!(semi
= strrchr (p
, '#')))
239 /* Avoid last class (localfs) that would accept any prefix */
240 for (vfs
= vfs_list
; vfs
->next
; vfs
= vfs
->next
) {
242 if ((*vfs
->which
) (vfs
, semi
+ 1) == -1)
244 *semi
= '\0'; /* Found valid suffix */
248 && !strncmp (semi
+ 1, vfs
->prefix
, strlen (vfs
->prefix
))) {
249 *semi
= '\0'; /* Found valid suffix */
257 path_magic (const char *path
)
261 if (!stat(path
, &buf
))
268 * Splits path extracting vfs part.
271 * \verbatim /p1#op/inpath \endverbatim
273 * \verbatim inpath,op; \endverbatim
274 * returns which vfs it is.
275 * What is left in path is p1. You still want to g_free(path), you DON'T
276 * want to free neither *inpath nor *op
279 vfs_split (char *path
, char **inpath
, char **op
)
283 struct vfs_class
*ret
;
286 vfs_die("Cannot split NULL");
288 semi
= strrchr (path
, '#');
289 if (!semi
|| !path_magic(path
))
292 slash
= strchr (semi
, PATH_SEP
);
304 if ((ret
= vfs_prefix_to_class (semi
+1))){
308 *inpath
= slash
? slash
+ 1 : NULL
;
315 ret
= vfs_split (path
, inpath
, op
);
320 static struct vfs_class
*
321 _vfs_get_class (char *path
)
325 struct vfs_class
*ret
;
327 g_return_val_if_fail(path
, NULL
);
329 semi
= strrchr (path
, '#');
330 if (!semi
|| !path_magic (path
))
333 slash
= strchr (semi
, PATH_SEP
);
338 ret
= vfs_prefix_to_class (semi
+1);
343 ret
= _vfs_get_class (path
);
350 vfs_get_class (const char *pathname
)
352 struct vfs_class
*vfs
;
353 char *path
= g_strdup (pathname
);
355 vfs
= _vfs_get_class (path
);
365 vfs_get_encoding (const char *path
)
367 static char result
[16];
372 work
= g_strdup (path
);
373 semi
= g_strrstr (work
, "#enc:");
376 semi
+= 5 * sizeof (char);
377 slash
= strchr (semi
, PATH_SEP
);
381 g_strlcpy (result
, semi
, sizeof(result
));
390 /* return if encoding can by used in vfs (is ascci full compactible) */
391 /* contains only a few encoding now */
393 vfs_supported_enconding (const char *encoding
) {
397 for (t
= 0; supported_encodings
[t
] != NULL
; t
++) {
398 result
+= (g_ascii_strncasecmp (encoding
, supported_encodings
[t
],
399 strlen (supported_encodings
[t
])) == 0);
405 /* now used only by vfs_translate_path, but could be used in other vfs
406 * plugin to automatic detect encoding
407 * path - path to translate
408 * size - how many bytes from path translate
409 * defcnv - convertor, that is used as default, when path does not contain any
411 * buffer - used to store result of translation
414 _vfs_translate_path (const char *path
, int size
,
415 GIConv defcnv
, GString
*buffer
)
420 estr_t state
= ESTR_SUCCESS
;
421 static char encoding
[16];
425 if (size
== 0) return 0;
426 size
= ( size
> 0) ? size
: (signed int)strlen (path
);
428 /* try found #end: */
429 semi
= g_strrstr_len (path
, size
, "#enc:");
431 /* first must be translated part before #enc: */
434 /* remove '/' before #enc */
435 ps
= str_cget_prev_char (semi
);
436 if (ps
[0] == PATH_SEP
) ms
= ps
- path
;
438 state
= _vfs_translate_path (path
, ms
, defcnv
, buffer
);
440 if (state
!= ESTR_SUCCESS
)
442 /* now can be translated part after #enc: */
445 slash
= strchr (semi
, PATH_SEP
);
446 /* ignore slashes after size; */
447 if (slash
- path
>= size
) slash
= NULL
;
449 ms
= (slash
!= NULL
) ? slash
- semi
: (int) strlen (semi
);
450 ms
= min ((unsigned int) ms
, sizeof (encoding
) - 1);
451 /* limit encoding size (ms) to path size (size) */
452 if (semi
+ ms
> path
+ size
) ms
= path
+ size
- semi
;
453 memcpy (encoding
, semi
, ms
);
456 switch (vfs_supported_enconding (encoding
)) {
458 coder
= str_crt_conv_to (encoding
);
459 if (coder
!= INVALID_CONV
) {
461 state
= str_vfs_convert_to (coder
, slash
,
462 path
+ size
- slash
, buffer
);
463 } else if (buffer
->str
[0] == '\0') {
464 /* exmaple "/#enc:utf-8" */
465 g_string_append_c(buffer
, PATH_SEP
);
467 str_close_conv (coder
);
479 /* path can be translated whole at once */
480 state
= str_vfs_convert_to (defcnv
, path
, size
, buffer
);
488 vfs_translate_path (const char *path
)
492 g_string_set_size(vfs_str_buffer
,0);
493 state
= _vfs_translate_path (path
, -1, str_cnv_from_term
, vfs_str_buffer
);
496 return (state == 0) ? vfs_str_buffer->data : NULL;
498 return (state
!= ESTR_FAILURE
) ? vfs_str_buffer
->str
: NULL
;
502 vfs_translate_path_n (const char *path
)
506 result
= vfs_translate_path (path
);
507 return (result
!= NULL
) ? g_strdup (result
) : NULL
;
511 vfs_canon_and_translate (const char *path
)
516 canon
= g_strdup ("");
518 canon
= vfs_canon (path
);
519 result
= vfs_translate_path_n (canon
);
525 ferrno (struct vfs_class
*vfs
)
527 return vfs
->ferrno
? (*vfs
->ferrno
)(vfs
) : E_UNKNOWN
;
528 /* Hope that error message is obscure enough ;-) */
532 mc_open (const char *filename
, int flags
, ...)
538 char *file
= vfs_canon_and_translate (filename
);
540 struct vfs_class
*vfs
= vfs_get_class (file
);
542 /* Get the mode flag */
543 if (flags
& O_CREAT
) {
544 va_start (ap
, flags
);
545 mode
= va_arg (ap
, int);
556 info
= (*vfs
->open
) (vfs
, file
, flags
, mode
); /* open must be supported */
559 errno
= ferrno (vfs
);
563 return vfs_new_handle (vfs
, info
);
568 #define MC_NAMEOP(name, inarg, callarg) \
569 int mc_##name inarg \
571 struct vfs_class *vfs; \
573 char *mpath = vfs_canon_and_translate (path); \
574 if (mpath != NULL) { \
575 vfs = vfs_get_class (mpath); \
580 result = vfs->name ? (*vfs->name)callarg : -1; \
583 errno = vfs->name ? ferrno (vfs) : E_NOTSUPP; \
588 MC_NAMEOP (chmod
, (const char *path
, mode_t mode
), (vfs
, mpath
, mode
))
589 MC_NAMEOP (chown
, (const char *path
, uid_t owner
, gid_t group
), (vfs
, mpath
, owner
, group
))
590 MC_NAMEOP (utime
, (const char *path
, struct utimbuf
*times
), (vfs
, mpath
, times
))
591 MC_NAMEOP (readlink
, (const char *path
, char *buf
, int bufsiz
), (vfs
, mpath
, buf
, bufsiz
))
592 MC_NAMEOP (unlink
, (const char *path
), (vfs
, mpath
))
593 MC_NAMEOP (mkdir
, (const char *path
, mode_t mode
), (vfs
, mpath
, mode
))
594 MC_NAMEOP (rmdir
, (const char *path
), (vfs
, mpath
))
595 MC_NAMEOP (mknod
, (const char *path
, mode_t mode
, dev_t dev
), (vfs
, mpath
, mode
, dev
))
598 mc_symlink (const char *name1
, const char *path
)
600 struct vfs_class
*vfs
;
606 mpath
= vfs_canon_and_translate (path
);
608 tmp
= g_strdup (name1
);
609 lpath
= vfs_translate_path_n (tmp
);
613 vfs
= vfs_get_class (mpath
);
614 result
= vfs
->symlink
? (*vfs
->symlink
) (vfs
, lpath
, mpath
) : -1;
618 errno
= vfs
->symlink
? ferrno (vfs
) : E_NOTSUPP
;
626 #define MC_HANDLEOP(name, inarg, callarg) \
627 ssize_t mc_##name inarg \
629 struct vfs_class *vfs; \
633 vfs = vfs_op (handle); \
636 result = vfs->name ? (*vfs->name)callarg : -1; \
638 errno = vfs->name ? ferrno (vfs) : E_NOTSUPP; \
642 MC_HANDLEOP(read
, (int handle
, void *buffer
, int count
), (vfs_info (handle
), buffer
, count
))
643 MC_HANDLEOP(write
, (int handle
, const void *buf
, int nbyte
), (vfs_info (handle
), buf
, nbyte
))
646 #define MC_RENAMEOP(name) \
647 int mc_##name (const char *fname1, const char *fname2) \
649 struct vfs_class *vfs; \
651 char *name2, *name1; \
652 name1 = vfs_canon_and_translate (fname1); \
653 if (name1 != NULL) { \
654 name2 = vfs_canon_and_translate (fname2); \
655 if (name2 != NULL) { \
656 vfs = vfs_get_class (name1); \
657 if (vfs != vfs_get_class (name2)){ \
663 result = vfs->name ? (*vfs->name)(vfs, name1, name2) : -1; \
667 errno = vfs->name ? ferrno (vfs) : E_NOTSUPP; \
681 mc_ctl (int handle
, int ctlop
, void *arg
)
683 struct vfs_class
*vfs
= vfs_op (handle
);
688 return vfs
->ctl
? (*vfs
->ctl
)(vfs_info (handle
), ctlop
, arg
) : 0;
692 mc_setctl (const char *path
, int ctlop
, void *arg
)
694 struct vfs_class
*vfs
;
699 vfs_die("You don't want to pass NULL to mc_setctl.");
701 mpath
= vfs_canon_and_translate (path
);
703 vfs
= vfs_get_class (mpath
);
704 result
= vfs
->setctl
? (*vfs
->setctl
)(vfs
, mpath
, ctlop
, arg
) : 0;
711 mc_close (int handle
)
713 struct vfs_class
*vfs
;
716 if (handle
== -1 || !vfs_info (handle
))
719 vfs
= vfs_op (handle
);
724 return close (handle
);
727 vfs_die ("VFS must support close.\n");
728 result
= (*vfs
->close
)(vfs_info (handle
));
729 vfs_free_handle (handle
);
731 errno
= ferrno (vfs
);
737 mc_opendir (const char *dirname
)
739 int handle
, *handlep
;
741 struct vfs_class
*vfs
;
744 struct vfs_dirinfo
*dirinfo
;
745 const char *encoding
;
747 canon
= vfs_canon (dirname
);
748 dname
= vfs_translate_path_n (canon
);
751 vfs
= vfs_get_class (dname
);
752 info
= vfs
->opendir
? (*vfs
->opendir
)(vfs
, dname
) : NULL
;
756 errno
= vfs
->opendir
? ferrno (vfs
) : E_NOTSUPP
;
761 dirinfo
= g_new (struct vfs_dirinfo
, 1);
762 dirinfo
->info
= info
;
764 encoding
= vfs_get_encoding (canon
);
766 dirinfo
->converter
= (encoding
!= NULL
) ? str_crt_conv_from (encoding
) :
768 if (dirinfo
->converter
== INVALID_CONV
) dirinfo
->converter
=str_cnv_from_term
;
770 handle
= vfs_new_handle (vfs
, dirinfo
);
772 handlep
= g_new (int, 1);
774 return (DIR *) handlep
;
781 static struct dirent
* mc_readdir_result
= NULL
;
784 mc_readdir (DIR *dirp
)
787 struct vfs_class
*vfs
;
788 struct dirent
*entry
= NULL
;
789 struct vfs_dirinfo
*dirinfo
;
792 if (!mc_readdir_result
)
794 /* We can't just allocate struct dirent as (see man dirent.h)
795 * struct dirent has VERY nonnaive semantics of allocating
796 * d_name in it. Moreover, linux's glibc-2.9 allocates dirents _less_,
797 * than 'sizeof (struct dirent)' making full bitwise (sizeof dirent) copy
798 * heap corrupter. So, allocate longliving dirent with at least
799 * (MAXNAMLEN + 1) for d_name in it.
800 * Strictly saying resulting dirent is unusable as we don't adjust internal
801 * structures, holding dirent size. But we don't use it in libc infrastructure.
802 * TODO: to make simpler homemade dirent-alike structure.
804 mc_readdir_result
= (struct dirent
*) g_malloc (sizeof(struct dirent
) + MAXNAMLEN
+ 1);
811 handle
= *(int *) dirp
;
813 vfs
= vfs_op (handle
);
817 dirinfo
= vfs_info (handle
);
819 entry
= (*vfs
->readdir
) (dirinfo
->info
);
820 if (entry
== NULL
) return NULL
;
821 g_string_set_size(vfs_str_buffer
,0);
822 state
= str_vfs_convert_from (dirinfo
->converter
,
823 entry
->d_name
, vfs_str_buffer
);
824 mc_readdir_result
->d_ino
= entry
->d_ino
;
825 g_strlcpy (mc_readdir_result
->d_name
, vfs_str_buffer
->str
, MAXNAMLEN
+ 1);
827 if (entry
== NULL
) errno
= vfs
->readdir
? ferrno (vfs
) : E_NOTSUPP
;
828 return (entry
!= NULL
) ? mc_readdir_result
: NULL
;
832 mc_closedir (DIR *dirp
)
834 int handle
= *(int *) dirp
;
835 struct vfs_class
*vfs
= vfs_op (handle
);
837 struct vfs_dirinfo
*dirinfo
;
842 dirinfo
= vfs_info (handle
);
843 if (dirinfo
->converter
!= str_cnv_from_term
) str_close_conv (dirinfo
->converter
);
845 result
= vfs
->closedir
? (*vfs
->closedir
)(dirinfo
->info
) : -1;
846 vfs_free_handle (handle
);
852 int mc_stat (const char *filename
, struct stat
*buf
) {
853 struct vfs_class
*vfs
;
857 path
= vfs_canon_and_translate (filename
);
862 vfs
= vfs_get_class (path
);
869 result
= vfs
->stat
? (*vfs
->stat
) (vfs
, path
, buf
) : -1;
874 errno
= vfs
->name
? ferrno (vfs
) : E_NOTSUPP
;
878 int mc_lstat (const char *filename
, struct stat
*buf
) {
879 struct vfs_class
*vfs
;
883 path
= vfs_canon_and_translate (filename
);
888 vfs
= vfs_get_class (path
);
894 result
= vfs
->lstat
? (*vfs
->lstat
) (vfs
, path
, buf
) : -1;
897 errno
= vfs
->name
? ferrno (vfs
) : E_NOTSUPP
;
901 int mc_fstat (int handle
, struct stat
*buf
) {
902 struct vfs_class
*vfs
;
908 vfs
= vfs_op (handle
);
912 result
= vfs
->fstat
? (*vfs
->fstat
) (vfs_info (handle
), buf
) : -1;
914 errno
= vfs
->name
? ferrno (vfs
) : E_NOTSUPP
;
919 * Return current directory. If it's local, reread the current directory
920 * from the OS. You must g_strdup() whatever this function returns.
927 const char *encoding
;
930 struct stat my_stat
, my_stat2
;
932 trans
= vfs_translate_path_n (current_dir
); /* add check if NULL */
934 if (!_vfs_get_class (trans
)) {
935 encoding
= vfs_get_encoding (current_dir
);
936 if (encoding
== NULL
) {
937 tmp
= g_get_current_dir ();
938 if (tmp
!= NULL
) { /* One of the directories in the path is not readable */
939 g_string_set_size(vfs_str_buffer
,0);
940 state
= str_vfs_convert_from (str_cnv_from_term
, tmp
, vfs_str_buffer
);
942 sys_cwd
= (state
== ESTR_SUCCESS
) ? g_strdup (vfs_str_buffer
->str
) : NULL
;
946 /* Otherwise check if it is O.K. to use the current_dir */
947 if (!cd_symlinks
|| mc_stat (sys_cwd
, &my_stat
)
948 || mc_stat (current_dir
, &my_stat2
)
949 || my_stat
.st_ino
!= my_stat2
.st_ino
950 || my_stat
.st_dev
!= my_stat2
.st_dev
) {
951 g_free (current_dir
);
952 current_dir
= sys_cwd
;
954 }/* Otherwise we return current_dir below */
965 current_dir
= g_strdup (PATH_SEP_STR
);
968 if (strlen (current_dir
) > MC_MAXPATHLEN
- 2)
969 vfs_die ("Current dir too long.\n");
971 current_vfs
= vfs_get_class (current_dir
);
975 * Return current directory. If it's local, reread the current directory
976 * from the OS. Put directory to the provided buffer.
979 mc_get_current_wd (char *buffer
, int size
)
981 const char *cwd
= _vfs_get_cwd ();
983 g_strlcpy (buffer
, cwd
, size
);
988 * Return current directory without any OS calls.
991 vfs_get_current_dir (void)
996 off_t
mc_lseek (int fd
, off_t offset
, int whence
)
998 struct vfs_class
*vfs
;
1008 result
= vfs
->lseek
? (*vfs
->lseek
)(vfs_info (fd
), offset
, whence
) : -1;
1010 errno
= vfs
->lseek
? ferrno (vfs
) : E_NOTSUPP
;
1015 * remove //, /./ and /../
1018 #define ISSLASH(a) (!a || (a == '/'))
1021 vfs_canon (const char *path
)
1024 vfs_die("Cannot canonicalize NULL");
1026 /* Relative to current directory */
1027 if (*path
!= PATH_SEP
){
1028 char *local
, *result
;
1030 local
= concat_dir_and_file (current_dir
, path
);
1032 result
= vfs_canon (local
);
1038 * So we have path of following form:
1039 * /p1/p2#op/.././././p3#op/p4. Good luck.
1042 char *result
= g_strdup (path
);
1043 canonicalize_pathname (result
);
1050 * Return 0 on success, -1 on failure.
1053 mc_chdir (const char *path
)
1057 struct vfs_class
*old_vfs
, *new_vfs
;
1061 new_dir
= vfs_canon (path
);
1062 trans_dir
= vfs_translate_path_n (new_dir
);
1063 if (trans_dir
!= NULL
) {
1064 new_vfs
= vfs_get_class (trans_dir
);
1065 if (!new_vfs
->chdir
) {
1071 result
= (*new_vfs
->chdir
) (new_vfs
, trans_dir
);
1074 errno
= ferrno (new_vfs
);
1080 old_vfsid
= vfs_getid (current_vfs
, current_dir
);
1081 old_vfs
= current_vfs
;
1083 /* Actually change directory */
1084 g_free (current_dir
);
1085 current_dir
= new_dir
;
1086 current_vfs
= new_vfs
;
1088 /* This function uses the new current_dir implicitly */
1089 vfs_stamp_create (old_vfs
, old_vfsid
);
1091 /* Sometimes we assume no trailing slash on cwd */
1094 p
= strchr (current_dir
, 0) - 1;
1095 if (*p
== PATH_SEP
&& p
> current_dir
)
1107 /* Return 1 is the current VFS class is local */
1109 vfs_current_is_local (void)
1111 return (current_vfs
->flags
& VFSF_LOCAL
) != 0;
1114 /* Return flags of the VFS class of the given filename */
1116 vfs_file_class_flags (const char *filename
)
1118 struct vfs_class
*vfs
;
1121 fname
= vfs_canon_and_translate (filename
);
1122 if (fname
!= NULL
) {
1123 vfs
= vfs_get_class (fname
);
1130 mc_def_getlocalcopy (const char *filename
)
1138 fdin
= mc_open (filename
, O_RDONLY
| O_LINEAR
);
1142 fdout
= vfs_mkstemps (&tmp
, "vfs", filename
);
1146 while ((i
= mc_read (fdin
, buffer
, sizeof (buffer
))) > 0) {
1147 if (write (fdout
, buffer
, i
) != i
)
1152 i
= mc_close (fdin
);
1156 if (close (fdout
) == -1) {
1161 if (mc_stat (filename
, &mystat
) != -1) {
1162 chmod (tmp
, mystat
.st_mode
);
1176 mc_getlocalcopy (const char *pathname
)
1181 path
= vfs_canon_and_translate (pathname
);
1183 struct vfs_class
*vfs
= vfs_get_class (path
);
1185 result
= vfs
->getlocalcopy
? (*vfs
->getlocalcopy
)(vfs
, path
) :
1186 mc_def_getlocalcopy (path
);
1189 errno
= ferrno (vfs
);
1195 mc_def_ungetlocalcopy (struct vfs_class
*vfs
, const char *filename
,
1196 const char *local
, int has_changed
)
1198 int fdin
= -1, fdout
= -1, i
;
1205 fdin
= open (local
, O_RDONLY
);
1208 fdout
= mc_open (filename
, O_WRONLY
| O_TRUNC
);
1211 while ((i
= read (fdin
, buffer
, sizeof (buffer
))) > 0) {
1212 if (mc_write (fdout
, buffer
, i
) != i
)
1218 if (close (fdin
) == -1) {
1223 if (mc_close (fdout
) == -1) {
1232 message (D_ERROR
, _("Changes to file lost"), "%s", filename
);
1242 mc_ungetlocalcopy (const char *pathname
, const char *local
, int has_changed
)
1244 int return_value
= 0;
1247 path
= vfs_canon_and_translate (pathname
);
1249 struct vfs_class
*vfs
= vfs_get_class (path
);
1251 return_value
= vfs
->ungetlocalcopy
?
1252 (*vfs
->ungetlocalcopy
)(vfs
, path
, local
, has_changed
) :
1253 mc_def_ungetlocalcopy (vfs
, path
, local
, has_changed
);
1255 return return_value
;
1263 /* create the VFS handle array */
1264 vfs_openfiles
= g_ptr_array_new ();
1266 vfs_str_buffer
= g_string_new("");
1267 /* localfs needs to be the first one */
1269 /* fallback value for vfs_get_class() */
1270 localfs_class
= vfs_list
;
1277 #ifdef USE_EXT2FSLIB
1279 #endif /* USE_EXT2FSLIB */
1284 #ifdef ENABLE_VFS_SMB
1286 #endif /* ENABLE_VFS_SMB */
1287 #ifdef ENABLE_VFS_MCFS
1289 #endif /* ENABLE_VFS_MCFS */
1290 #endif /* USE_NETCODE */
1298 struct vfs_class
*vfs
;
1302 g_free (current_dir
);
1304 for (vfs
= vfs_list
; vfs
; vfs
= vfs
->next
)
1308 g_ptr_array_free (vfs_openfiles
, TRUE
);
1309 g_string_free (vfs_str_buffer
, TRUE
);
1310 g_free (mc_readdir_result
);
1314 * These ones grab information from the VFS
1315 * and handles them to an upper layer
1318 vfs_fill_names (fill_names_f func
)
1320 struct vfs_class
*vfs
;
1322 for (vfs
=vfs_list
; vfs
; vfs
=vfs
->next
)
1323 if (vfs
->fill_names
)
1324 (*vfs
->fill_names
) (vfs
, func
);
1328 * Returns vfs path corresponding to given url. If passed string is
1329 * not recognized as url, g_strdup(url) is returned.
1332 static const struct {
1335 const char *substitute
;
1336 } url_table
[] = { {"ftp://", 6, "/#ftp:"},
1337 {"mc://", 5, "/#mc:"},
1338 {"smb://", 6, "/#smb:"},
1339 {"sh://", 5, "/#sh:"},
1340 {"ssh://", 6, "/#sh:"},
1345 vfs_translate_url (const char *url
)
1349 for (i
= 0; i
< sizeof (url_table
)/sizeof (url_table
[0]); i
++)
1350 if (strncmp (url
, url_table
[i
].name
, url_table
[i
].name_len
) == 0)
1351 return g_strconcat (url_table
[i
].substitute
, url
+ url_table
[i
].name_len
, (char*) NULL
);
1353 return g_strdup (url
);
1356 int vfs_file_is_local (const char *filename
)
1358 return vfs_file_class_flags (filename
) & VFSF_LOCAL
;