123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777 |
- /* Virtual File System: interface functions
- Copyright (C) 2011 Free Software Foundation, Inc.
- Written by:
- Slava Zanko <slavazanko@gmail.com>, 2011
- This file is part of the Midnight Commander.
- The Midnight Commander is free software; you can redistribute it
- and/or modify it under the terms of the GNU General Public License as
- published by the Free Software Foundation; either version 2 of the
- License, or (at your option) any later version.
- The Midnight Commander is distributed in the hope that it will be
- useful, but WITHOUT ANY WARRANTY; without even the implied warranty
- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- MA 02110-1301, USA.
- */
- /**
- * \file
- * \brief Source: Virtual File System: path handlers
- * \author Slava Zanko
- * \date 2011
- */
- #include <config.h>
- #include <stdio.h>
- #include <stdlib.h> /* For atol() */
- #include <stdarg.h>
- #include <string.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <signal.h>
- #include <ctype.h> /* is_digit() */
- #include <fcntl.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include <dirent.h>
- #include "lib/global.h"
- #include "lib/widget.h" /* message() */
- #include "lib/strutil.h" /* str_crt_conv_from() */
- #include "vfs.h"
- #include "utilvfs.h"
- #include "path.h"
- #include "gc.h"
- extern GString *vfs_str_buffer;
- extern struct vfs_class *current_vfs;
- /*** global variables ****************************************************************************/
- struct dirent *mc_readdir_result = NULL;
- /*** file scope macro definitions ****************************************************************/
- /*** file scope type declarations ****************************************************************/
- /*** file scope variables ************************************************************************/
- /*** file scope functions ************************************************************************/
- /* --------------------------------------------------------------------------------------------- */
- static char *
- mc_def_getlocalcopy (const char *filename)
- {
- char *tmp;
- int fdin, fdout;
- ssize_t i;
- char buffer[8192];
- struct stat mystat;
- fdin = mc_open (filename, O_RDONLY | O_LINEAR);
- if (fdin == -1)
- return NULL;
- fdout = vfs_mkstemps (&tmp, "vfs", filename);
- if (fdout == -1)
- goto fail;
- while ((i = mc_read (fdin, buffer, sizeof (buffer))) > 0)
- {
- if (write (fdout, buffer, i) != i)
- goto fail;
- }
- if (i == -1)
- goto fail;
- i = mc_close (fdin);
- fdin = -1;
- if (i == -1)
- goto fail;
- if (close (fdout) == -1)
- {
- fdout = -1;
- goto fail;
- }
- if (mc_stat (filename, &mystat) != -1)
- chmod (tmp, mystat.st_mode);
- return tmp;
- fail:
- if (fdout != -1)
- close (fdout);
- if (fdin != -1)
- mc_close (fdin);
- g_free (tmp);
- return NULL;
- }
- /* --------------------------------------------------------------------------------------------- */
- static int
- mc_def_ungetlocalcopy (struct vfs_class *vfs, const char *filename,
- const char *local, int has_changed)
- {
- int fdin = -1, fdout = -1;
- if (has_changed)
- {
- char buffer[8192];
- ssize_t i;
- if (!vfs->write)
- goto failed;
- fdin = open (local, O_RDONLY);
- if (fdin == -1)
- goto failed;
- fdout = mc_open (filename, O_WRONLY | O_TRUNC);
- if (fdout == -1)
- goto failed;
- while ((i = read (fdin, buffer, sizeof (buffer))) > 0)
- if (mc_write (fdout, buffer, (size_t) i) != i)
- goto failed;
- if (i == -1)
- goto failed;
- if (close (fdin) == -1)
- {
- fdin = -1;
- goto failed;
- }
- fdin = -1;
- if (mc_close (fdout) == -1)
- {
- fdout = -1;
- goto failed;
- }
- }
- unlink (local);
- return 0;
- failed:
- message (D_ERROR, _("Changes to file lost"), "%s", filename);
- if (fdout != -1)
- mc_close (fdout);
- if (fdin != -1)
- close (fdin);
- unlink (local);
- return -1;
- }
- /* --------------------------------------------------------------------------------------------- */
- /*** public functions ****************************************************************************/
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_open (const char *filename, int flags, ...)
- {
- int mode = 0, result = -1;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (filename);
- if (vpath == NULL)
- return -1;
- /* Get the mode flag */
- if (flags & O_CREAT)
- {
- va_list ap;
- va_start (ap, flags);
- mode = va_arg (ap, int);
- va_end (ap);
- }
- path_element = vfs_path_get_by_index (vpath, -1);
- if (vfs_path_element_valid (path_element) && path_element->class->open != NULL)
- {
- void *info;
- /* open must be supported */
- info = path_element->class->open (vpath, flags, mode);
- if (info == NULL)
- errno = vfs_ferrno (path_element->class);
- else
- result = vfs_new_handle (path_element->class, info);
- }
- else
- errno = -EOPNOTSUPP;
- vfs_path_free (vpath);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- /* *INDENT-OFF* */
- #define MC_NAMEOP(name, inarg, callarg) \
- int mc_##name inarg \
- { \
- int result; \
- vfs_path_t *vpath; \
- vfs_path_element_t *path_element; \
- \
- vpath = vfs_path_from_str (path); \
- if (vpath == NULL) \
- return -1; \
- \
- path_element = vfs_path_get_by_index (vpath, -1); \
- if (!vfs_path_element_valid (path_element)) \
- { \
- vfs_path_free(vpath); \
- return -1; \
- } \
- \
- result = path_element->class->name != NULL ? path_element->class->name callarg : -1; \
- if (result == -1) \
- errno = path_element->class->name != NULL ? vfs_ferrno (path_element->class) : E_NOTSUPP; \
- vfs_path_free(vpath); \
- return result; \
- }
- MC_NAMEOP (chmod, (const char *path, mode_t mode), (vpath, mode))
- MC_NAMEOP (chown, (const char *path, uid_t owner, gid_t group), (vpath, owner, group))
- MC_NAMEOP (utime, (const char *path, struct utimbuf * times), (vpath, times))
- MC_NAMEOP (readlink, (const char *path, char *buf, size_t bufsiz), (vpath, buf, bufsiz))
- MC_NAMEOP (unlink, (const char *path), (vpath))
- MC_NAMEOP (mkdir, (const char *path, mode_t mode), (vpath, mode))
- MC_NAMEOP (rmdir, (const char *path), (vpath))
- MC_NAMEOP (mknod, (const char *path, mode_t mode, dev_t dev), (vpath, mode, dev))
- /* *INDENT-ON* */
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_symlink (const char *name1, const char *path)
- {
- int result = -1;
- vfs_path_t *vpath1, *vpath2;
- vpath1 = vfs_path_from_str (path);
- if (vpath1 == NULL)
- return -1;
- vpath2 = vfs_path_from_str_flags (name1, VPF_NO_CANON);
- if (vpath2 != NULL)
- {
- vfs_path_element_t *path_element = vfs_path_get_by_index (vpath1, -1);
- if (vfs_path_element_valid (path_element))
- {
- result =
- path_element->class->symlink !=
- NULL ? path_element->class->symlink (vpath2, vpath1) : -1;
- if (result == -1)
- errno =
- path_element->class->symlink !=
- NULL ? vfs_ferrno (path_element->class) : E_NOTSUPP;
- }
- }
- vfs_path_free (vpath1);
- vfs_path_free (vpath2);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- /* *INDENT-OFF* */
- #define MC_HANDLEOP(name, inarg, callarg) \
- ssize_t mc_##name inarg \
- { \
- struct vfs_class *vfs; \
- int result; \
- if (handle == -1) \
- return -1; \
- vfs = vfs_class_find_by_handle (handle); \
- if (vfs == NULL) \
- return -1; \
- result = vfs->name != NULL ? vfs->name callarg : -1; \
- if (result == -1) \
- errno = vfs->name != NULL ? vfs_ferrno (vfs) : E_NOTSUPP; \
- return result; \
- }
- MC_HANDLEOP (read, (int handle, void *buffer, size_t count), (vfs_class_data_find_by_handle (handle), buffer, count))
- MC_HANDLEOP (write, (int handle, const void *buf, size_t nbyte), (vfs_class_data_find_by_handle (handle), buf, nbyte))
- /* --------------------------------------------------------------------------------------------- */
- #define MC_RENAMEOP(name) \
- int mc_##name (const char *fname1, const char *fname2) \
- { \
- int result; \
- vfs_path_t *vpath1, *vpath2; \
- vfs_path_element_t *path_element1, *path_element2; \
- \
- vpath1 = vfs_path_from_str (fname1); \
- if (vpath1 == NULL) \
- return -1; \
- \
- vpath2 = vfs_path_from_str (fname2); \
- if (vpath2 == NULL) \
- { \
- vfs_path_free(vpath1); \
- return -1; \
- }\
- path_element1 = vfs_path_get_by_index (vpath1, - 1); \
- path_element2 = vfs_path_get_by_index (vpath2, - 1); \
- \
- if (!vfs_path_element_valid (path_element1) || !vfs_path_element_valid (path_element2) || \
- path_element1->class != path_element2->class) \
- { \
- errno = EXDEV; \
- vfs_path_free(vpath1); \
- vfs_path_free(vpath2); \
- return -1; \
- }\
- \
- result = path_element1->class->name != NULL \
- ? path_element1->class->name (vpath1, vpath2) \
- : -1; \
- if (result == -1) \
- errno = path_element1->class->name != NULL ? vfs_ferrno (path_element1->class) : E_NOTSUPP; \
- vfs_path_free(vpath1); \
- vfs_path_free(vpath2); \
- return result; \
- }
- MC_RENAMEOP (link)
- MC_RENAMEOP (rename)
- /* *INDENT-ON* */
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_ctl (int handle, int ctlop, void *arg)
- {
- struct vfs_class *vfs = vfs_class_find_by_handle (handle);
- if (vfs == NULL)
- return 0;
- return vfs->ctl ? (*vfs->ctl) (vfs_class_data_find_by_handle (handle), ctlop, arg) : 0;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_setctl (const char *path, int ctlop, void *arg)
- {
- int result = -1;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (path);
- if (vpath == NULL)
- vfs_die ("You don't want to pass NULL to mc_setctl.");
- path_element = vfs_path_get_by_index (vpath, -1);
- if (vfs_path_element_valid (path_element))
- result =
- path_element->class->setctl != NULL ? path_element->class->setctl (vpath,
- ctlop, arg) : 0;
- vfs_path_free (vpath);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_close (int handle)
- {
- struct vfs_class *vfs;
- int result;
- if (handle == -1 || !vfs_class_data_find_by_handle (handle))
- return -1;
- vfs = vfs_class_find_by_handle (handle);
- if (vfs == NULL)
- return -1;
- if (handle < 3)
- return close (handle);
- if (!vfs->close)
- vfs_die ("VFS must support close.\n");
- result = (*vfs->close) (vfs_class_data_find_by_handle (handle));
- vfs_free_handle (handle);
- if (result == -1)
- errno = vfs_ferrno (vfs);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- DIR *
- mc_opendir (const char *dirname)
- {
- int handle, *handlep;
- void *info;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (dirname);
- if (vpath == NULL)
- return NULL;
- path_element = vfs_path_get_by_index (vpath, -1);
- if (!vfs_path_element_valid (path_element))
- {
- errno = E_NOTSUPP;
- vfs_path_free (vpath);
- return NULL;
- }
- info = path_element->class->opendir ? (*path_element->class->opendir) (vpath) : NULL;
- if (info == NULL)
- {
- errno = path_element->class->opendir ? vfs_ferrno (path_element->class) : E_NOTSUPP;
- vfs_path_free (vpath);
- return NULL;
- }
- path_element->dir.info = info;
- path_element->dir.converter =
- (path_element->encoding !=
- NULL) ? str_crt_conv_from (path_element->encoding) : str_cnv_from_term;
- if (path_element->dir.converter == INVALID_CONV)
- path_element->dir.converter = str_cnv_from_term;
- handle = vfs_new_handle (path_element->class, vfs_path_element_clone (path_element));
- handlep = g_new (int, 1);
- *handlep = handle;
- vfs_path_free (vpath);
- return (DIR *) handlep;
- }
- /* --------------------------------------------------------------------------------------------- */
- struct dirent *
- mc_readdir (DIR * dirp)
- {
- int handle;
- struct vfs_class *vfs;
- struct dirent *entry = NULL;
- vfs_path_element_t *vfs_path_element;
- estr_t state;
- if (!mc_readdir_result)
- {
- /* We can't just allocate struct dirent as (see man dirent.h)
- * struct dirent has VERY nonnaive semantics of allocating
- * d_name in it. Moreover, linux's glibc-2.9 allocates dirents _less_,
- * than 'sizeof (struct dirent)' making full bitwise (sizeof dirent) copy
- * heap corrupter. So, allocate longliving dirent with at least
- * (MAXNAMLEN + 1) for d_name in it.
- * Strictly saying resulting dirent is unusable as we don't adjust internal
- * structures, holding dirent size. But we don't use it in libc infrastructure.
- * TODO: to make simpler homemade dirent-alike structure.
- */
- mc_readdir_result = (struct dirent *) g_malloc (sizeof (struct dirent) + MAXNAMLEN + 1);
- }
- if (!dirp)
- {
- errno = EFAULT;
- return NULL;
- }
- handle = *(int *) dirp;
- vfs = vfs_class_find_by_handle (handle);
- if (vfs == NULL)
- return NULL;
- vfs_path_element = vfs_class_data_find_by_handle (handle);
- if (vfs->readdir)
- {
- entry = (*vfs->readdir) (vfs_path_element->dir.info);
- if (entry == NULL)
- return NULL;
- g_string_set_size (vfs_str_buffer, 0);
- state =
- str_vfs_convert_from (vfs_path_element->dir.converter, entry->d_name, vfs_str_buffer);
- mc_readdir_result->d_ino = entry->d_ino;
- g_strlcpy (mc_readdir_result->d_name, vfs_str_buffer->str, MAXNAMLEN + 1);
- }
- if (entry == NULL)
- errno = vfs->readdir ? vfs_ferrno (vfs) : E_NOTSUPP;
- return (entry != NULL) ? mc_readdir_result : NULL;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_closedir (DIR * dirp)
- {
- int handle = *(int *) dirp;
- struct vfs_class *vfs;
- int result = -1;
- vfs = vfs_class_find_by_handle (handle);
- if (vfs != NULL)
- {
- vfs_path_element_t *vfs_path_element;
- vfs_path_element = vfs_class_data_find_by_handle (handle);
- if (vfs_path_element->dir.converter != str_cnv_from_term)
- {
- str_close_conv (vfs_path_element->dir.converter);
- vfs_path_element->dir.converter = INVALID_CONV;
- }
- result = vfs->closedir ? (*vfs->closedir) (vfs_path_element->dir.info) : -1;
- vfs_free_handle (handle);
- vfs_path_element_free (vfs_path_element);
- }
- g_free (dirp);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_stat (const char *filename, struct stat *buf)
- {
- int result = -1;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (filename);
- if (vpath == NULL)
- return -1;
- path_element = vfs_path_get_by_index (vpath, -1);
- if (vfs_path_element_valid (path_element))
- {
- result = path_element->class->stat ? (*path_element->class->stat) (vpath, buf) : -1;
- if (result == -1)
- errno = path_element->class->name ? vfs_ferrno (path_element->class) : E_NOTSUPP;
- }
- vfs_path_free (vpath);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_lstat (const char *filename, struct stat *buf)
- {
- int result = -1;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (filename);
- if (vpath == NULL)
- return -1;
- path_element = vfs_path_get_by_index (vpath, -1);
- if (vfs_path_element_valid (path_element))
- {
- result = path_element->class->lstat ? (*path_element->class->lstat) (vpath, buf) : -1;
- if (result == -1)
- errno = path_element->class->name ? vfs_ferrno (path_element->class) : E_NOTSUPP;
- }
- vfs_path_free (vpath);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_fstat (int handle, struct stat *buf)
- {
- struct vfs_class *vfs;
- int result;
- if (handle == -1)
- return -1;
- vfs = vfs_class_find_by_handle (handle);
- if (vfs == NULL)
- return -1;
- result = vfs->fstat ? (*vfs->fstat) (vfs_class_data_find_by_handle (handle), buf) : -1;
- if (result == -1)
- errno = vfs->name ? vfs_ferrno (vfs) : E_NOTSUPP;
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * Return current directory. If it's local, reread the current directory
- * from the OS. Put directory to the provided buffer.
- */
- char *
- mc_get_current_wd (char *buffer, size_t size)
- {
- char *cwd = _vfs_get_cwd ();
- g_strlcpy (buffer, cwd, size);
- g_free (cwd);
- return buffer;
- }
- /* --------------------------------------------------------------------------------------------- */
- char *
- mc_getlocalcopy (const char *pathname)
- {
- char *result = NULL;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (pathname);
- if (vpath == NULL)
- return NULL;
- path_element = vfs_path_get_by_index (vpath, -1);
- if (vfs_path_element_valid (path_element))
- {
- result = path_element->class->getlocalcopy != NULL ?
- path_element->class->getlocalcopy (vpath) : mc_def_getlocalcopy (pathname);
- if (result == NULL)
- errno = vfs_ferrno (path_element->class);
- }
- vfs_path_free (vpath);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- mc_ungetlocalcopy (const char *pathname, const char *local, int has_changed)
- {
- int return_value = -1;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (pathname);
- if (vpath == NULL)
- return -1;
- path_element = vfs_path_get_by_index (vpath, -1);
- if (vfs_path_element_valid (path_element))
- {
- return_value = path_element->class->ungetlocalcopy != NULL ?
- path_element->class->ungetlocalcopy (vpath, local,
- has_changed) :
- mc_def_ungetlocalcopy (path_element->class, path_element->path, local, has_changed);
- }
- vfs_path_free (vpath);
- return return_value;
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * VFS chdir.
- * Return 0 on success, -1 on failure.
- */
- int
- mc_chdir (const char *path)
- {
- struct vfs_class *old_vfs;
- vfsid old_vfsid;
- int result;
- vfs_path_t *vpath;
- vfs_path_element_t *path_element;
- vpath = vfs_path_from_str (path);
- if (vpath == NULL)
- return -1;
- path_element = vfs_path_get_by_index (vpath, -1);
- if (!vfs_path_element_valid (path_element) || path_element->class->chdir == NULL)
- {
- vfs_path_free (vpath);
- return -1;
- }
- result = (*path_element->class->chdir) (vpath);
- if (result == -1)
- {
- errno = vfs_ferrno (path_element->class);
- vfs_path_free (vpath);
- return -1;
- }
- old_vfsid = vfs_getid (vfs_get_raw_current_dir ());
- old_vfs = current_vfs;
- /* Actually change directory */
- vfs_set_raw_current_dir (vpath);
- current_vfs = path_element->class;
- /* This function uses the new current_dir implicitly */
- vfs_stamp_create (old_vfs, old_vfsid);
- /* Sometimes we assume no trailing slash on cwd */
- path_element = vfs_path_get_by_index (vfs_get_raw_current_dir (), -1);
- if (vfs_path_element_valid (path_element) && (*path_element->path != '\0'))
- {
- char *p;
- p = strchr (path_element->path, 0) - 1;
- if (*p == PATH_SEP && p > path_element->path)
- *p = 0;
- }
- return 0;
- }
- /* --------------------------------------------------------------------------------------------- */
- off_t
- mc_lseek (int fd, off_t offset, int whence)
- {
- struct vfs_class *vfs;
- off_t result;
- if (fd == -1)
- return -1;
- vfs = vfs_class_find_by_handle (fd);
- if (vfs == NULL)
- return -1;
- result = vfs->lseek ? (*vfs->lseek) (vfs_class_data_find_by_handle (fd), offset, whence) : -1;
- if (result == -1)
- errno = vfs->lseek ? vfs_ferrno (vfs) : E_NOTSUPP;
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
|