123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769 |
- /* Virtual File System switch code
- Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
- 2007 Free Software Foundation, Inc.
- Written by: 1995 Miguel de Icaza
- 1995 Jakub Jelinek
- 1998 Pavel Machek
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public License
- as published by the Free Software Foundation; either version 2 of
- the License, or (at your option) any later version.
- This program 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 Library General Public License for more details.
- You should have received a copy of the GNU Library 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 switch code
- * \author Miguel de Icaza
- * \author Jakub Jelinek
- * \author Pavel Machek
- * \date 1995, 1998
- * \warning funtions like extfs_lstat() have right to destroy any
- * strings you pass to them. This is acutally ok as you g_strdup what
- * you are passing to them, anyway; still, beware.
- *
- * Namespace: exports *many* functions with vfs_ prefix; exports
- * parse_ls_lga and friends which do not have that prefix.
- */
- #include <config.h>
- #include <errno.h>
- #include "lib/global.h"
- #include "lib/strutil.h"
- #include "lib/util.h"
- #include "lib/widget.h" /* message() */
- #include "lib/event.h"
- #ifdef HAVE_CHARSET
- #include "lib/charsets.h"
- #endif
- #include "vfs.h"
- #include "utilvfs.h"
- #include "gc.h"
- extern struct dirent *mc_readdir_result;
- /*** global variables ****************************************************************************/
- GPtrArray *vfs__classes_list = NULL;
- GString *vfs_str_buffer = NULL;
- struct vfs_class *current_vfs = NULL;
- /*** file scope macro definitions ****************************************************************/
- #if defined(_AIX) && !defined(NAME_MAX)
- #define NAME_MAX FILENAME_MAX
- #endif
- #define VFS_FIRST_HANDLE 100
- #define ISSLASH(a) (!a || (a == '/'))
- /*** file scope type declarations ****************************************************************/
- struct vfs_openfile
- {
- int handle;
- struct vfs_class *vclass;
- void *fsinfo;
- };
- /*** file scope variables ************************************************************************/
- /** They keep track of the current directory */
- static vfs_path_t *current_path = NULL;
- static GPtrArray *vfs_openfiles;
- static long vfs_free_handle_list = -1;
- static const struct
- {
- const char *name;
- size_t name_len;
- const char *substitute;
- } url_table[] =
- {
- /* *INDENT-OFF* */
- #ifdef ENABLE_VFS_FTP
- { "ftp://", 6, "/#ftp:" },
- #endif
- #ifdef ENABLE_VFS_FISH
- { "sh://", 5, "/#sh:" },
- { "ssh://", 6, "/#sh:" },
- #endif
- #ifdef ENABLE_VFS_SMB
- { "smb://", 6, "/#smb:" },
- #endif
- { "a:", 2, "/#a" }
- /* *INDENT-ON* */
- };
- /*** file scope functions ************************************************************************/
- /* --------------------------------------------------------------------------------------------- */
- static gboolean
- path_magic (const char *path)
- {
- struct stat buf;
- return (stat (path, &buf) != 0);
- }
- /* --------------------------------------------------------------------------------------------- */
- static struct vfs_class *
- _vfs_get_class (char *path)
- {
- char *semi;
- char *slash;
- struct vfs_class *ret;
- g_return_val_if_fail (path, NULL);
- semi = strrchr (path, '#');
- if (semi == NULL || !path_magic (path))
- return NULL;
- slash = strchr (semi, PATH_SEP);
- *semi = '\0';
- if (slash != NULL)
- *slash = '\0';
- ret = vfs_prefix_to_class (semi + 1);
- if (slash != NULL)
- *slash = PATH_SEP;
- if (ret == NULL)
- ret = _vfs_get_class (path);
- *semi = '#';
- return ret;
- }
- /* --------------------------------------------------------------------------------------------- */
- /* now used only by vfs_translate_path, but could be used in other vfs
- * plugin to automatic detect encoding
- * path - path to translate
- * size - how many bytes from path translate
- * defcnv - convertor, that is used as default, when path does not contain any
- * #enc: subtring
- * buffer - used to store result of translation
- */
- static estr_t
- _vfs_translate_path (const char *path, int size, GIConv defcnv, GString * buffer)
- {
- const char *semi;
- const char *slash;
- estr_t state = ESTR_SUCCESS;
- if (size == 0)
- return ESTR_SUCCESS;
- size = (size > 0) ? size : (signed int) strlen (path);
- /* try found /#enc: */
- semi = g_strrstr_len (path, size, PATH_SEP_STR VFS_ENCODING_PREFIX);
- if (semi != NULL)
- {
- char encoding[16];
- GIConv coder = INVALID_CONV;
- int ms;
- /* first must be translated part before /#enc: */
- ms = semi - path;
- state = _vfs_translate_path (path, ms, defcnv, buffer);
- if (state != ESTR_SUCCESS)
- return state;
- /* now can be translated part after #enc: */
- semi += strlen (VFS_ENCODING_PREFIX) + 1; /* skip "/#enc:" */
- slash = strchr (semi, PATH_SEP);
- /* ignore slashes after size; */
- if (slash - path >= size)
- slash = NULL;
- ms = (slash != NULL) ? slash - semi : (int) strlen (semi);
- ms = min ((unsigned int) ms, sizeof (encoding) - 1);
- /* limit encoding size (ms) to path size (size) */
- if (semi + ms > path + size)
- ms = path + size - semi;
- memcpy (encoding, semi, ms);
- encoding[ms] = '\0';
- #if HAVE_CHARSET
- if (is_supported_encoding (encoding))
- coder = str_crt_conv_to (encoding);
- #endif
- if (coder != INVALID_CONV)
- {
- if (slash != NULL)
- state = str_vfs_convert_to (coder, slash, path + size - slash, buffer);
- else if (buffer->len == 0)
- g_string_append_c (buffer, PATH_SEP);
- str_close_conv (coder);
- return state;
- }
- errno = EINVAL;
- state = ESTR_FAILURE;
- }
- else
- {
- /* path can be translated whole at once */
- state = str_vfs_convert_to (defcnv, path, size, buffer);
- }
- return state;
- }
- /* --------------------------------------------------------------------------------------------- */
- /*** public functions ****************************************************************************/
- /* --------------------------------------------------------------------------------------------- */
- /** Free open file data for given file handle */
- void
- vfs_free_handle (int handle)
- {
- const int idx = handle - VFS_FIRST_HANDLE;
- if (handle >= VFS_FIRST_HANDLE && (guint) idx < vfs_openfiles->len)
- {
- struct vfs_openfile *h;
- h = (struct vfs_openfile *) g_ptr_array_index (vfs_openfiles, idx);
- g_free (h);
- g_ptr_array_index (vfs_openfiles, idx) = (void *) vfs_free_handle_list;
- vfs_free_handle_list = idx;
- }
- }
- /* --------------------------------------------------------------------------------------------- */
- /** Find private file data by file handle */
- void *
- vfs_class_data_find_by_handle (int handle)
- {
- struct vfs_openfile *h;
- if (handle < VFS_FIRST_HANDLE || (guint) (handle - VFS_FIRST_HANDLE) >= vfs_openfiles->len)
- return NULL;
- h = (struct vfs_openfile *) g_ptr_array_index (vfs_openfiles, handle - VFS_FIRST_HANDLE);
- if (!h)
- return NULL;
- g_assert (h->handle == handle);
- return h->fsinfo;
- }
- /* --------------------------------------------------------------------------------------------- */
- /** Find VFS class by file handle */
- struct vfs_class *
- vfs_class_find_by_handle (int handle)
- {
- struct vfs_openfile *h;
- if (handle < VFS_FIRST_HANDLE || (guint) (handle - VFS_FIRST_HANDLE) >= vfs_openfiles->len)
- return NULL;
- h = (struct vfs_openfile *) g_ptr_array_index (vfs_openfiles, handle - VFS_FIRST_HANDLE);
- if (!h)
- return NULL;
- g_assert (h->handle == handle);
- return h->vclass;
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * Create new VFS handle and put it to the list
- */
- int
- vfs_new_handle (struct vfs_class *vclass, void *fsinfo)
- {
- struct vfs_openfile *h;
- h = g_new (struct vfs_openfile, 1);
- h->fsinfo = fsinfo;
- h->vclass = vclass;
- /* Allocate the first free handle */
- h->handle = vfs_free_handle_list;
- if (h->handle == -1)
- {
- /* No free allocated handles, allocate one */
- h->handle = vfs_openfiles->len;
- g_ptr_array_add (vfs_openfiles, h);
- }
- else
- {
- vfs_free_handle_list = (long) g_ptr_array_index (vfs_openfiles, vfs_free_handle_list);
- g_ptr_array_index (vfs_openfiles, h->handle) = h;
- }
- h->handle += VFS_FIRST_HANDLE;
- return h->handle;
- }
- /* --------------------------------------------------------------------------------------------- */
- int
- vfs_ferrno (struct vfs_class *vfs)
- {
- return vfs->ferrno ? (*vfs->ferrno) (vfs) : E_UNKNOWN;
- /* Hope that error message is obscure enough ;-) */
- }
- /* --------------------------------------------------------------------------------------------- */
- gboolean
- vfs_register_class (struct vfs_class * vfs)
- {
- if (vfs->init != NULL) /* vfs has own initialization function */
- if (!vfs->init (vfs)) /* but it failed */
- return FALSE;
- g_ptr_array_add (vfs__classes_list, vfs);
- return TRUE;
- }
- /* --------------------------------------------------------------------------------------------- */
- /** Strip known vfs suffixes from a filename (possible improvement: strip
- * suffix from last path component).
- * \return a malloced string which has to be freed.
- */
- char *
- vfs_strip_suffix_from_filename (const char *filename)
- {
- guint i;
- char *semi;
- char *p;
- if (filename == NULL)
- vfs_die ("vfs_strip_suffix_from_path got NULL: impossible");
- p = g_strdup (filename);
- semi = strrchr (p, '#');
- if (semi == NULL)
- return p;
- /* Avoid first class (localfs) that would accept any prefix */
- for (i = 1; i < vfs__classes_list->len; i++)
- {
- struct vfs_class *vfs = (struct vfs_class *) g_ptr_array_index (vfs__classes_list, i);
- if (vfs->which != NULL)
- {
- if (vfs->which (vfs, semi + 1) == -1)
- continue;
- *semi = '\0'; /* Found valid suffix */
- break;
- }
- if (vfs->prefix != NULL && strncmp (semi + 1, vfs->prefix, strlen (vfs->prefix)) == 0)
- {
- *semi = '\0'; /* Found valid suffix */
- break;
- }
- }
- return p;
- }
- /* --------------------------------------------------------------------------------------------- */
- struct vfs_class *
- vfs_get_class (const char *pathname)
- {
- char *path;
- struct vfs_class *vfs;
- path = g_strdup (pathname);
- vfs = _vfs_get_class (path);
- g_free (path);
- if (vfs == NULL)
- vfs = g_ptr_array_index (vfs__classes_list, 0); /* localfs */
- return vfs;
- }
- /* --------------------------------------------------------------------------------------------- */
- const char *
- vfs_get_encoding (const char *path)
- {
- static char result[16];
- char *work;
- char *semi;
- char *slash;
- work = g_strdup (path);
- /* try found /#enc: */
- semi = g_strrstr (work, PATH_SEP_STR VFS_ENCODING_PREFIX);
- if (semi != NULL)
- {
- semi += strlen (VFS_ENCODING_PREFIX) + 1; /* skip "/#enc:" */
- slash = strchr (semi, PATH_SEP);
- if (slash != NULL)
- slash[0] = '\0';
- g_strlcpy (result, semi, sizeof (result));
- g_free (work);
- return result;
- }
- else
- {
- g_free (work);
- return NULL;
- }
- }
- /* --------------------------------------------------------------------------------------------- */
- char *
- vfs_translate_path (const char *path)
- {
- estr_t state;
- g_string_set_size (vfs_str_buffer, 0);
- state = _vfs_translate_path (path, -1, str_cnv_from_term, vfs_str_buffer);
- /*
- strict version
- return (state == 0) ? vfs_str_buffer->data : NULL;
- */
- return (state != ESTR_FAILURE) ? vfs_str_buffer->str : NULL;
- }
- /* --------------------------------------------------------------------------------------------- */
- char *
- vfs_translate_path_n (const char *path)
- {
- char *result;
- result = vfs_translate_path (path);
- return (result != NULL) ? g_strdup (result) : NULL;
- }
- /* --------------------------------------------------------------------------------------------- */
- char *
- vfs_canon_and_translate (const char *path)
- {
- char *canon;
- char *result;
- if (path == NULL)
- canon = g_strdup ("");
- else
- canon = vfs_canon (path);
- result = vfs_translate_path_n (canon);
- g_free (canon);
- return result;
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * Get current directory without any OS calls.
- *
- * @return string contain current path
- */
- char *
- vfs_get_current_dir (void)
- {
- return vfs_path_to_str (current_path);
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * Get raw current directory object without any OS calls.
- *
- * @return object contain current path
- */
- vfs_path_t *
- vfs_get_raw_current_dir (void)
- {
- return current_path;
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * Set current directory object.
- *
- * @param vpath new path
- */
- void
- vfs_set_raw_current_dir (const vfs_path_t * vpath)
- {
- if (current_path != NULL)
- vfs_path_free (current_path);
- current_path = (vfs_path_t *) vpath;
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * remove //, /./ and /../
- */
- char *
- vfs_canon (const char *path)
- {
- if (!path)
- vfs_die ("Cannot canonicalize NULL");
- /* Relative to current directory */
- if (*path != PATH_SEP)
- {
- char *local, *result, *curr_dir;
- curr_dir = vfs_get_current_dir ();
- local = concat_dir_and_file (curr_dir, path);
- g_free (curr_dir);
- result = vfs_canon (local);
- g_free (local);
- return result;
- }
- /*
- * So we have path of following form:
- * /p1/p2#op/.././././p3#op/p4. Good luck.
- */
- {
- char *result = g_strdup (path);
- canonicalize_pathname (result);
- return result;
- }
- }
- /* --------------------------------------------------------------------------------------------- */
- /* Return TRUE is the current VFS class is local */
- gboolean
- vfs_current_is_local (void)
- {
- return (current_vfs->flags & VFSF_LOCAL) != 0;
- }
- /* --------------------------------------------------------------------------------------------- */
- /* Return flags of the VFS class of the given filename */
- vfs_class_flags_t
- vfs_file_class_flags (const vfs_path_t * vpath)
- {
- vfs_path_element_t *path_element = vfs_path_get_by_index (vpath, -1);
- if (path_element == NULL)
- return VFSF_UNKNOWN;
- return path_element->class->flags;
- }
- /* --------------------------------------------------------------------------------------------- */
- void
- vfs_init (void)
- {
- /* create the VFS handle arrays */
- vfs__classes_list = g_ptr_array_new ();
- /* create the VFS handle array */
- vfs_openfiles = g_ptr_array_new ();
- vfs_str_buffer = g_string_new ("");
- }
- /* --------------------------------------------------------------------------------------------- */
- void
- vfs_setup_work_dir (void)
- {
- vfs_path_element_t *path_element;
- g_free (_vfs_get_cwd ());
- /* FIXME: is we really need for this check? */
- /*
- if (strlen (current_dir) > MC_MAXPATHLEN - 2)
- vfs_die ("Current dir too long.\n");
- */
- path_element = vfs_path_get_by_index (current_path, -1);
- current_vfs = path_element->class;
- }
- /* --------------------------------------------------------------------------------------------- */
- void
- vfs_shut (void)
- {
- guint i;
- vfs_gc_done ();
- vfs_set_raw_current_dir (NULL);
- for (i = 0; i < vfs__classes_list->len; i++)
- {
- struct vfs_class *vfs = (struct vfs_class *) g_ptr_array_index (vfs__classes_list, i);
- if (vfs->done != NULL)
- vfs->done (vfs);
- }
- g_ptr_array_free (vfs_openfiles, TRUE);
- g_ptr_array_free (vfs__classes_list, TRUE);
- g_string_free (vfs_str_buffer, TRUE);
- g_free (mc_readdir_result);
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * These ones grab information from the VFS
- * and handles them to an upper layer
- */
- void
- vfs_fill_names (fill_names_f func)
- {
- guint i;
- for (i = 0; i < vfs__classes_list->len; i++)
- {
- struct vfs_class *vfs = (struct vfs_class *) g_ptr_array_index (vfs__classes_list, i);
- if (vfs->fill_names != NULL)
- vfs->fill_names (vfs, func);
- }
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * Returns vfs path corresponding to given url. If passed string is
- * not recognized as url, g_strdup(url) is returned.
- */
- char *
- vfs_translate_url (const char *url)
- {
- size_t i;
- for (i = 0; i < sizeof (url_table) / sizeof (url_table[0]); i++)
- if (strncmp (url, url_table[i].name, url_table[i].name_len) == 0)
- return g_strconcat (url_table[i].substitute, url + url_table[i].name_len,
- (char *) NULL);
- return g_strdup (url);
- }
- /* --------------------------------------------------------------------------------------------- */
- gboolean
- vfs_file_is_local (const vfs_path_t * vpath)
- {
- return (vfs_file_class_flags (vpath) & VFSF_LOCAL) != 0;
- }
- /* --------------------------------------------------------------------------------------------- */
- void
- vfs_print_message (const char *msg, ...)
- {
- ev_vfs_print_message_t event_data;
- va_start (event_data.ap, msg);
- event_data.msg = msg;
- mc_event_raise (MCEVENT_GROUP_CORE, "vfs_print_message", (gpointer) & event_data);
- va_end (event_data.ap);
- }
- /* --------------------------------------------------------------------------------------------- */
- /**
- * Return current directory. If it's local, reread the current directory
- * from the OS. You must g_strdup() whatever this function returns.
- */
- char *
- _vfs_get_cwd (void)
- {
- char *trans, *curr_dir;
- if (vfs_get_raw_current_dir() == NULL)
- {
- char *tmp;
- tmp = g_get_current_dir ();
- vfs_set_raw_current_dir (vfs_path_from_str (tmp));
- g_free(tmp);
- }
- curr_dir = vfs_get_current_dir ();
- trans = vfs_translate_path_n (curr_dir);
- if (_vfs_get_class (trans) == NULL)
- {
- const char *encoding = vfs_get_encoding (curr_dir);
- if (encoding == NULL)
- {
- char *tmp;
- tmp = g_get_current_dir ();
- if (tmp != NULL)
- { /* One of the directories in the path is not readable */
- estr_t state;
- g_string_set_size (vfs_str_buffer, 0);
- state = str_vfs_convert_from (str_cnv_from_term, tmp, vfs_str_buffer);
- g_free (tmp);
- if (state == ESTR_SUCCESS)
- {
- struct stat my_stat, my_stat2;
- /* Check if it is O.K. to use the current_dir */
- if (!(mc_global.vfs.cd_symlinks
- && mc_stat (vfs_str_buffer->str, &my_stat) == 0
- && mc_stat (curr_dir, &my_stat2) == 0
- && my_stat.st_ino == my_stat2.st_ino
- && my_stat.st_dev == my_stat2.st_dev))
- {
- vfs_set_raw_current_dir (vfs_path_from_str (vfs_str_buffer->str));
- }
- }
- }
- }
- }
- g_free (trans);
- return curr_dir;
- }
- /* --------------------------------------------------------------------------------------------- */
|