2 Virtual File System: interface functions
4 Copyright (C) 2011-2016
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2011, 2013
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander 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 General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 * \brief Source: Virtual File System: path handlers
37 #include <stdlib.h> /* For atol() */
41 #include <sys/types.h>
43 #include <ctype.h> /* is_digit() */
50 #include "lib/global.h"
52 #include "lib/widget.h" /* message() */
53 #include "lib/strutil.h" /* str_crt_conv_from() */
60 #include "xdirentry.h"
62 /* TODO: move it to separate private .h */
63 extern GString
*vfs_str_buffer
;
64 extern vfs_class
*current_vfs
;
65 extern struct dirent
*mc_readdir_result
;
67 /*** global variables ****************************************************************************/
69 struct dirent
*mc_readdir_result
= NULL
;
71 /*** file scope macro definitions ****************************************************************/
73 /*** file scope type declarations ****************************************************************/
75 /*** file scope variables ************************************************************************/
77 /*** file scope functions ************************************************************************/
78 /* --------------------------------------------------------------------------------------------- */
81 mc_def_getlocalcopy (const vfs_path_t
* filename_vpath
)
83 vfs_path_t
*tmp_vpath
= NULL
;
86 char buffer
[BUF_1K
* 8];
89 fdin
= mc_open (filename_vpath
, O_RDONLY
| O_LINEAR
);
93 fdout
= vfs_mkstemps (&tmp_vpath
, "vfs", vfs_path_get_last_path_str (filename_vpath
));
97 while ((i
= mc_read (fdin
, buffer
, sizeof (buffer
))) > 0)
99 if (write (fdout
, buffer
, i
) != i
)
114 if (mc_stat (filename_vpath
, &mystat
) != -1)
115 mc_chmod (tmp_vpath
, mystat
.st_mode
);
120 vfs_path_free (tmp_vpath
);
128 /* --------------------------------------------------------------------------------------------- */
131 mc_def_ungetlocalcopy (const vfs_path_t
* filename_vpath
,
132 const vfs_path_t
* local_vpath
, gboolean has_changed
)
134 int fdin
= -1, fdout
= -1;
137 local
= vfs_path_get_last_path_str (local_vpath
);
141 char buffer
[BUF_1K
* 8];
144 if (vfs_path_get_last_path_vfs (filename_vpath
)->write
== NULL
)
147 fdin
= open (local
, O_RDONLY
);
150 fdout
= mc_open (filename_vpath
, O_WRONLY
| O_TRUNC
);
153 while ((i
= read (fdin
, buffer
, sizeof (buffer
))) > 0)
154 if (mc_write (fdout
, buffer
, (size_t) i
) != i
)
159 if (close (fdin
) == -1)
165 if (mc_close (fdout
) == -1)
175 message (D_ERROR
, _("Changes to file lost"), "%s", vfs_path_get_last_path_str (filename_vpath
));
184 /* --------------------------------------------------------------------------------------------- */
185 /*** public functions ****************************************************************************/
186 /* --------------------------------------------------------------------------------------------- */
189 mc_open (const vfs_path_t
* vpath
, int flags
, ...)
193 const vfs_path_element_t
*path_element
;
198 /* Get the mode flag */
202 va_start (ap
, flags
);
203 mode
= va_arg (ap
, mode_t
);
207 path_element
= vfs_path_get_by_index (vpath
, -1);
208 if (vfs_path_element_valid (path_element
) && path_element
->class->open
!= NULL
)
211 /* open must be supported */
212 info
= path_element
->class->open (vpath
, flags
, mode
);
214 errno
= vfs_ferrno (path_element
->class);
216 result
= vfs_new_handle (path_element
->class, info
);
224 /* --------------------------------------------------------------------------------------------- */
228 #define MC_NAMEOP(name, inarg, callarg) \
229 int mc_##name inarg \
232 const vfs_path_element_t *path_element; \
237 path_element = vfs_path_get_by_index (vpath, -1); \
238 if (!vfs_path_element_valid (path_element)) \
243 result = path_element->class->name != NULL ? path_element->class->name callarg : -1; \
245 errno = path_element->class->name != NULL ? vfs_ferrno (path_element->class) : E_NOTSUPP; \
249 MC_NAMEOP (chmod
, (const vfs_path_t
*vpath
, mode_t mode
), (vpath
, mode
))
250 MC_NAMEOP (chown
, (const vfs_path_t
*vpath
, uid_t owner
, gid_t group
), (vpath
, owner
, group
))
251 MC_NAMEOP (utime
, (const vfs_path_t
*vpath
, struct utimbuf
* times
), (vpath
, times
))
252 MC_NAMEOP (readlink
, (const vfs_path_t
*vpath
, char *buf
, size_t bufsiz
), (vpath
, buf
, bufsiz
))
253 MC_NAMEOP (unlink
, (const vfs_path_t
*vpath
), (vpath
))
254 MC_NAMEOP (mkdir
, (const vfs_path_t
*vpath
, mode_t mode
), (vpath
, mode
))
255 MC_NAMEOP (rmdir
, (const vfs_path_t
*vpath
), (vpath
))
256 MC_NAMEOP (mknod
, (const vfs_path_t
*vpath
, mode_t mode
, dev_t dev
), (vpath
, mode
, dev
))
260 /* --------------------------------------------------------------------------------------------- */
263 mc_symlink (const vfs_path_t
* vpath1
, const vfs_path_t
* vpath2
)
272 const vfs_path_element_t
*path_element
;
274 path_element
= vfs_path_get_by_index (vpath2
, -1);
275 if (vfs_path_element_valid (path_element
))
278 path_element
->class->symlink
!= NULL
?
279 path_element
->class->symlink (vpath1
, vpath2
) : -1;
283 path_element
->class->symlink
!= NULL
?
284 vfs_ferrno (path_element
->class) : E_NOTSUPP
;
290 /* --------------------------------------------------------------------------------------------- */
294 #define MC_HANDLEOP(name, inarg, callarg) \
295 ssize_t mc_##name inarg \
297 struct vfs_class *vfs; \
301 vfs = vfs_class_find_by_handle (handle); \
304 result = vfs->name != NULL ? vfs->name callarg : -1; \
306 errno = vfs->name != NULL ? vfs_ferrno (vfs) : E_NOTSUPP; \
310 MC_HANDLEOP (read
, (int handle
, void *buffer
, size_t count
), (vfs_class_data_find_by_handle (handle
), buffer
, count
))
311 MC_HANDLEOP (write
, (int handle
, const void *buf
, size_t nbyte
), (vfs_class_data_find_by_handle (handle
), buf
, nbyte
))
313 /* --------------------------------------------------------------------------------------------- */
315 #define MC_RENAMEOP(name) \
316 int mc_##name (const vfs_path_t *vpath1, const vfs_path_t *vpath2) \
319 const vfs_path_element_t *path_element1; \
320 const vfs_path_element_t *path_element2; \
322 if (vpath1 == NULL || vpath2 == NULL) \
325 path_element1 = vfs_path_get_by_index (vpath1, (-1)); \
326 path_element2 = vfs_path_get_by_index (vpath2, (-1)); \
328 if (!vfs_path_element_valid (path_element1) || !vfs_path_element_valid (path_element2) || \
329 path_element1->class != path_element2->class) \
335 result = path_element1->class->name != NULL \
336 ? path_element1->class->name (vpath1, vpath2) \
339 errno = path_element1->class->name != NULL ? vfs_ferrno (path_element1->class) : E_NOTSUPP; \
348 /* --------------------------------------------------------------------------------------------- */
351 mc_ctl (int handle
, int ctlop
, void *arg
)
353 struct vfs_class
*vfs
= vfs_class_find_by_handle (handle
);
358 return vfs
->ctl
? (*vfs
->ctl
) (vfs_class_data_find_by_handle (handle
), ctlop
, arg
) : 0;
361 /* --------------------------------------------------------------------------------------------- */
364 mc_setctl (const vfs_path_t
* vpath
, int ctlop
, void *arg
)
367 const vfs_path_element_t
*path_element
;
370 vfs_die ("You don't want to pass NULL to mc_setctl.");
372 path_element
= vfs_path_get_by_index (vpath
, -1);
373 if (vfs_path_element_valid (path_element
))
375 path_element
->class->setctl
!= NULL
? path_element
->class->setctl (vpath
,
381 /* --------------------------------------------------------------------------------------------- */
384 mc_close (int handle
)
386 struct vfs_class
*vfs
;
389 if (handle
== -1 || !vfs_class_data_find_by_handle (handle
))
392 vfs
= vfs_class_find_by_handle (handle
);
397 return close (handle
);
400 vfs_die ("VFS must support close.\n");
401 result
= (*vfs
->close
) (vfs_class_data_find_by_handle (handle
));
402 vfs_free_handle (handle
);
404 errno
= vfs_ferrno (vfs
);
409 /* --------------------------------------------------------------------------------------------- */
412 mc_opendir (const vfs_path_t
* vpath
)
414 int handle
, *handlep
;
416 vfs_path_element_t
*path_element
;
421 path_element
= (vfs_path_element_t
*) vfs_path_get_by_index (vpath
, -1);
423 if (!vfs_path_element_valid (path_element
))
429 info
= path_element
->class->opendir
? (*path_element
->class->opendir
) (vpath
) : NULL
;
433 errno
= path_element
->class->opendir
? vfs_ferrno (path_element
->class) : E_NOTSUPP
;
437 path_element
->dir
.info
= info
;
440 path_element
->dir
.converter
= (path_element
->encoding
!= NULL
) ?
441 str_crt_conv_from (path_element
->encoding
) : str_cnv_from_term
;
442 if (path_element
->dir
.converter
== INVALID_CONV
)
443 path_element
->dir
.converter
= str_cnv_from_term
;
446 handle
= vfs_new_handle (path_element
->class, vfs_path_element_clone (path_element
));
448 handlep
= g_new (int, 1);
450 return (DIR *) handlep
;
453 /* --------------------------------------------------------------------------------------------- */
456 mc_readdir (DIR * dirp
)
459 struct vfs_class
*vfs
;
460 struct dirent
*entry
= NULL
;
461 vfs_path_element_t
*vfs_path_element
;
463 if (!mc_readdir_result
)
465 /* We can't just allocate struct dirent as (see man dirent.h)
466 * struct dirent has VERY nonnaive semantics of allocating
467 * d_name in it. Moreover, linux's glibc-2.9 allocates dirents _less_,
468 * than 'sizeof (struct dirent)' making full bitwise (sizeof dirent) copy
469 * heap corrupter. So, allocate longliving dirent with at least
470 * (MAXNAMLEN + 1) for d_name in it.
471 * Strictly saying resulting dirent is unusable as we don't adjust internal
472 * structures, holding dirent size. But we don't use it in libc infrastructure.
473 * TODO: to make simpler homemade dirent-alike structure.
475 mc_readdir_result
= (struct dirent
*) g_malloc (sizeof (struct dirent
) + MAXNAMLEN
+ 1);
483 handle
= *(int *) dirp
;
485 vfs
= vfs_class_find_by_handle (handle
);
489 vfs_path_element
= vfs_class_data_find_by_handle (handle
);
492 entry
= (*vfs
->readdir
) (vfs_path_element
->dir
.info
);
496 g_string_set_size (vfs_str_buffer
, 0);
498 str_vfs_convert_from (vfs_path_element
->dir
.converter
, entry
->d_name
, vfs_str_buffer
);
500 g_string_assign (vfs_str_buffer
, entry
->d_name
);
502 mc_readdir_result
->d_ino
= entry
->d_ino
;
503 g_strlcpy (mc_readdir_result
->d_name
, vfs_str_buffer
->str
, MAXNAMLEN
+ 1);
506 errno
= vfs
->readdir
? vfs_ferrno (vfs
) : E_NOTSUPP
;
507 return (entry
!= NULL
) ? mc_readdir_result
: NULL
;
510 /* --------------------------------------------------------------------------------------------- */
513 mc_closedir (DIR * dirp
)
515 int handle
= *(int *) dirp
;
516 struct vfs_class
*vfs
;
519 vfs
= vfs_class_find_by_handle (handle
);
522 vfs_path_element_t
*vfs_path_element
;
523 vfs_path_element
= vfs_class_data_find_by_handle (handle
);
526 if (vfs_path_element
->dir
.converter
!= str_cnv_from_term
)
528 str_close_conv (vfs_path_element
->dir
.converter
);
529 vfs_path_element
->dir
.converter
= INVALID_CONV
;
533 result
= vfs
->closedir
? (*vfs
->closedir
) (vfs_path_element
->dir
.info
) : -1;
534 vfs_free_handle (handle
);
535 vfs_path_element_free (vfs_path_element
);
541 /* --------------------------------------------------------------------------------------------- */
544 mc_stat (const vfs_path_t
* vpath
, struct stat
*buf
)
547 const vfs_path_element_t
*path_element
;
552 path_element
= vfs_path_get_by_index (vpath
, -1);
554 if (vfs_path_element_valid (path_element
))
556 result
= path_element
->class->stat
? (*path_element
->class->stat
) (vpath
, buf
) : -1;
558 errno
= path_element
->class->name
? vfs_ferrno (path_element
->class) : E_NOTSUPP
;
564 /* --------------------------------------------------------------------------------------------- */
567 mc_lstat (const vfs_path_t
* vpath
, struct stat
*buf
)
570 const vfs_path_element_t
*path_element
;
575 path_element
= vfs_path_get_by_index (vpath
, -1);
577 if (vfs_path_element_valid (path_element
))
579 result
= path_element
->class->lstat
? (*path_element
->class->lstat
) (vpath
, buf
) : -1;
581 errno
= path_element
->class->name
? vfs_ferrno (path_element
->class) : E_NOTSUPP
;
587 /* --------------------------------------------------------------------------------------------- */
590 mc_fstat (int handle
, struct stat
*buf
)
592 struct vfs_class
*vfs
;
598 vfs
= vfs_class_find_by_handle (handle
);
602 result
= vfs
->fstat
? (*vfs
->fstat
) (vfs_class_data_find_by_handle (handle
), buf
) : -1;
604 errno
= vfs
->name
? vfs_ferrno (vfs
) : E_NOTSUPP
;
608 /* --------------------------------------------------------------------------------------------- */
611 mc_getlocalcopy (const vfs_path_t
* pathname_vpath
)
613 vfs_path_t
*result
= NULL
;
614 const vfs_path_element_t
*path_element
;
616 if (pathname_vpath
== NULL
)
619 path_element
= vfs_path_get_by_index (pathname_vpath
, -1);
621 if (vfs_path_element_valid (path_element
))
623 result
= path_element
->class->getlocalcopy
!= NULL
?
624 path_element
->class->getlocalcopy (pathname_vpath
) :
625 mc_def_getlocalcopy (pathname_vpath
);
627 errno
= vfs_ferrno (path_element
->class);
632 /* --------------------------------------------------------------------------------------------- */
635 mc_ungetlocalcopy (const vfs_path_t
* pathname_vpath
, const vfs_path_t
* local_vpath
,
636 gboolean has_changed
)
638 int return_value
= -1;
639 const vfs_path_element_t
*path_element
;
641 if (pathname_vpath
== NULL
)
644 path_element
= vfs_path_get_by_index (pathname_vpath
, -1);
646 if (vfs_path_element_valid (path_element
))
647 return_value
= path_element
->class->ungetlocalcopy
!= NULL
?
648 path_element
->class->ungetlocalcopy (pathname_vpath
, local_vpath
, has_changed
) :
649 mc_def_ungetlocalcopy (pathname_vpath
, local_vpath
, has_changed
);
654 /* --------------------------------------------------------------------------------------------- */
658 * @param vpath VFS-path
660 * @return 0 on success, -1 on failure.
664 mc_chdir (const vfs_path_t
* vpath
)
666 struct vfs_class
*old_vfs
;
669 const vfs_path_element_t
*path_element
;
670 vfs_path_t
*cd_vpath
;
676 cd_vpath
= vfs_path_to_absolute (vpath
);
678 cd_vpath
= vfs_path_clone (vpath
);
680 path_element
= vfs_path_get_by_index (cd_vpath
, -1);
682 if (!vfs_path_element_valid (path_element
) || path_element
->class->chdir
== NULL
)
687 result
= (*path_element
->class->chdir
) (cd_vpath
);
691 errno
= vfs_ferrno (path_element
->class);
695 old_vfsid
= vfs_getid (vfs_get_raw_current_dir ());
696 old_vfs
= current_vfs
;
698 /* Actually change directory */
699 vfs_set_raw_current_dir (cd_vpath
);
701 current_vfs
= path_element
->class;
703 /* This function uses the new current_dir implicitly */
704 vfs_stamp_create (old_vfs
, old_vfsid
);
706 /* Sometimes we assume no trailing slash on cwd */
707 path_element
= vfs_path_get_by_index (vfs_get_raw_current_dir (), -1);
708 if (vfs_path_element_valid (path_element
))
710 if (*path_element
->path
!= '\0')
714 p
= strchr (path_element
->path
, 0) - 1;
715 if (IS_PATH_SEP (*p
) && p
> path_element
->path
)
719 #ifdef ENABLE_VFS_NET
721 struct vfs_s_super
*super
;
723 super
= vfs_get_super_by_vpath (vpath
);
724 if (super
!= NULL
&& super
->path_element
!= NULL
)
726 g_free (super
->path_element
->path
);
727 super
->path_element
->path
= g_strdup (path_element
->path
);
730 #endif /* ENABLE_VFS_NET */
736 vfs_path_free (cd_vpath
);
740 /* --------------------------------------------------------------------------------------------- */
743 mc_lseek (int fd
, off_t offset
, int whence
)
745 struct vfs_class
*vfs
;
751 vfs
= vfs_class_find_by_handle (fd
);
755 result
= vfs
->lseek
? (*vfs
->lseek
) (vfs_class_data_find_by_handle (fd
), offset
, whence
) : -1;
757 errno
= vfs
->lseek
? vfs_ferrno (vfs
) : E_NOTSUPP
;
761 /* --------------------------------------------------------------------------------------------- */
762 /* Following code heavily borrows from libiberty, mkstemps.c */
765 * pname (output) - pointer to the name of the temp file (needs g_free).
766 * NULL if the function fails.
767 * prefix - part of the filename before the random part.
768 * Prepend $TMPDIR or /tmp if there are no path separators.
769 * suffix - if not NULL, part of the filename after the random part.
772 * handle of the open file or -1 if couldn't open any.
776 mc_mkstemps (vfs_path_t
** pname_vpath
, const char *prefix
, const char *suffix
)
781 if (strchr (prefix
, PATH_SEP
) != NULL
)
782 p1
= g_strdup (prefix
);
785 /* Add prefix first to find the position of XXXXXX */
786 p1
= g_build_filename (mc_tmpdir (), prefix
, (char *) NULL
);
789 p2
= g_strconcat (p1
, "XXXXXX", suffix
, (char *) NULL
);
794 *pname_vpath
= vfs_path_from_str (p2
);
806 /* --------------------------------------------------------------------------------------------- */
808 * Return the directory where mc should keep its temporary files.
809 * This directory is (in Bourne shell terms) "${TMPDIR=/tmp}/mc-$USER"
810 * When called the first time, the directory is created if needed.
811 * The first call should be done early, since we are using fprintf()
812 * and not message() to report possible problems.
818 static char buffer
[64];
819 static const char *tmpdir
= NULL
;
823 const char *error
= NULL
;
825 /* Check if already correctly initialized */
826 if (tmpdir
&& lstat (tmpdir
, &st
) == 0 && S_ISDIR (st
.st_mode
) &&
827 st
.st_uid
== getuid () && (st
.st_mode
& 0777) == 0700)
830 sys_tmp
= getenv ("TMPDIR");
831 if (sys_tmp
== NULL
|| !IS_PATH_SEP (sys_tmp
[0]))
832 sys_tmp
= TMPDIR_DEFAULT
;
834 pwd
= getpwuid (getuid ());
837 g_snprintf (buffer
, sizeof (buffer
), "%s/mc-%s", sys_tmp
, pwd
->pw_name
);
839 g_snprintf (buffer
, sizeof (buffer
), "%s/mc-%lu", sys_tmp
, (unsigned long) getuid ());
841 canonicalize_pathname (buffer
);
843 /* Try to create directory */
844 if (mkdir (buffer
, S_IRWXU
) != 0)
846 if (errno
== EEXIST
&& lstat (buffer
, &st
) == 0)
848 /* Sanity check for existing directory */
849 if (!S_ISDIR (st
.st_mode
))
850 error
= _("%s is not a directory\n");
851 else if (st
.st_uid
!= getuid ())
852 error
= _("Directory %s is not owned by you\n");
853 else if (((st
.st_mode
& 0777) != 0700) && (chmod (buffer
, 0700) != 0))
854 error
= _("Cannot set correct permissions for directory %s\n");
859 _("Cannot create temporary directory %s: %s\n"),
860 buffer
, unix_error_string (errno
));
868 char *fallback_prefix
;
869 gboolean fallback_ok
= FALSE
;
870 vfs_path_t
*test_vpath
;
873 fprintf (stderr
, error
, buffer
);
875 /* Test if sys_tmp is suitable for temporary files */
876 fallback_prefix
= g_strdup_printf ("%s/mctest", sys_tmp
);
877 test_fd
= mc_mkstemps (&test_vpath
, fallback_prefix
, NULL
);
878 g_free (fallback_prefix
);
882 test_fd
= open (vfs_path_as_str (test_vpath
), O_RDONLY
);
886 unlink (vfs_path_as_str (test_vpath
));
893 fprintf (stderr
, _("Temporary files will be created in %s\n"), sys_tmp
);
894 g_snprintf (buffer
, sizeof (buffer
), "%s", sys_tmp
);
899 fprintf (stderr
, _("Temporary files will not be created\n"));
900 g_snprintf (buffer
, sizeof (buffer
), "%s", "/dev/null/");
903 vfs_path_free (test_vpath
);
904 fprintf (stderr
, "%s\n", _("Press any key to continue..."));
911 g_setenv ("MC_TMPDIR", tmpdir
, TRUE
);
916 /* --------------------------------------------------------------------------------------------- */