1998-02-27 07:54:42 +03:00
|
|
|
/* Virtual File System switch code
|
|
|
|
Copyright (C) 1995 The Free Software Foundation
|
|
|
|
|
|
|
|
Written by: 1995 Miguel de Icaza
|
|
|
|
1995 Jakub Jelinek
|
1998-05-26 04:53:24 +04:00
|
|
|
1998 Pavel Machek
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-09-27 23:27:58 +04:00
|
|
|
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.
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
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
|
1998-09-27 23:27:58 +04:00
|
|
|
GNU Library General Public License for more details.
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-09-27 23:27:58 +04:00
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this program; if not, write to the Free Software
|
2000-08-23 02:50:00 +04:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-09-13 14:40:43 +04:00
|
|
|
/* Warning: funtions like extfs_lstat() have right to destroy any
|
1999-01-21 01:01:11 +03:00
|
|
|
* strings you pass to them. This is acutally ok as you g_strdup what
|
1998-09-13 14:40:43 +04:00
|
|
|
* you are passing to them, anyway; still, beware. */
|
|
|
|
|
1998-10-13 02:07:53 +04:00
|
|
|
/* Namespace: exports *many* functions with vfs_ prefix; exports
|
|
|
|
parse_ls_lga and friends which do not have that prefix. */
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#include <config.h>
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h> /* For atol() */
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
2003-10-11 13:36:29 +04:00
|
|
|
#include <ctype.h> /* is_digit() */
|
1999-01-21 01:01:11 +03:00
|
|
|
|
|
|
|
#include "utilvfs.h"
|
2003-11-08 02:43:55 +03:00
|
|
|
#include "gc.h"
|
1999-01-21 01:01:11 +03:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#include "vfs.h"
|
|
|
|
#ifdef USE_NETCODE
|
|
|
|
# include "tcputil.h"
|
|
|
|
#endif
|
2004-08-17 13:17:43 +04:00
|
|
|
#include "ftpfs.h"
|
|
|
|
#include "mcfs.h"
|
|
|
|
#include "smbfs.h"
|
|
|
|
#include "local.h"
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
/* They keep track of the current directory */
|
2003-10-12 02:17:52 +04:00
|
|
|
static struct vfs_class *current_vfs;
|
|
|
|
static char *current_dir;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
struct vfs_openfile {
|
|
|
|
int handle;
|
|
|
|
struct vfs_class *vclass;
|
|
|
|
void *fsinfo;
|
|
|
|
};
|
1998-10-14 06:56:18 +04:00
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
static GSList *vfs_openfiles;
|
|
|
|
#define VFS_FIRST_HANDLE 100
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-10-12 23:57:27 +04:00
|
|
|
static struct vfs_class *localfs_class;
|
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
/* Create new VFS handle and put it to the list */
|
1998-10-14 06:56:18 +04:00
|
|
|
static int
|
2003-11-05 03:12:25 +03:00
|
|
|
vfs_new_handle (struct vfs_class *vclass, void *fsinfo)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-11-05 03:12:25 +03:00
|
|
|
static int vfs_handle_counter = VFS_FIRST_HANDLE;
|
|
|
|
struct vfs_openfile *h;
|
|
|
|
|
|
|
|
h = g_new (struct vfs_openfile, 1);
|
|
|
|
h->handle = vfs_handle_counter++;
|
|
|
|
h->fsinfo = fsinfo;
|
|
|
|
h->vclass = vclass;
|
|
|
|
vfs_openfiles = g_slist_prepend (vfs_openfiles, h);
|
|
|
|
return h->handle;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
/* Function to match handle, passed to g_slist_find_custom() */
|
|
|
|
static gint
|
|
|
|
vfs_cmp_handle (gconstpointer a, gconstpointer b)
|
|
|
|
{
|
|
|
|
if (!a)
|
|
|
|
return 1;
|
|
|
|
return ((struct vfs_openfile *) a)->handle != (int) b;
|
|
|
|
}
|
1998-10-14 06:56:18 +04:00
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
/* Find VFS class by file handle */
|
|
|
|
static inline struct vfs_class *
|
|
|
|
vfs_op (int handle)
|
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
struct vfs_openfile *h;
|
|
|
|
|
2003-11-21 06:17:18 +03:00
|
|
|
l = g_slist_find_custom (vfs_openfiles, (void *) handle,
|
2003-11-05 03:12:25 +03:00
|
|
|
vfs_cmp_handle);
|
|
|
|
if (!l)
|
|
|
|
return NULL;
|
|
|
|
h = (struct vfs_openfile *) l->data;
|
|
|
|
if (!h)
|
|
|
|
return NULL;
|
|
|
|
return h->vclass;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find private file data by file handle */
|
|
|
|
static inline void *
|
|
|
|
vfs_info (int handle)
|
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
struct vfs_openfile *h;
|
|
|
|
|
2003-11-21 06:17:18 +03:00
|
|
|
l = g_slist_find_custom (vfs_openfiles, (void *) handle,
|
2003-11-05 03:12:25 +03:00
|
|
|
vfs_cmp_handle);
|
|
|
|
if (!l)
|
|
|
|
return NULL;
|
|
|
|
h = (struct vfs_openfile *) l->data;
|
|
|
|
if (!h)
|
|
|
|
return NULL;
|
|
|
|
return h->fsinfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free open file data for given file handle */
|
|
|
|
static inline void
|
|
|
|
vfs_free_handle (int handle)
|
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
|
2003-11-21 06:17:18 +03:00
|
|
|
l = g_slist_find_custom (vfs_openfiles, (void *) handle,
|
2003-11-05 03:12:25 +03:00
|
|
|
vfs_cmp_handle);
|
|
|
|
vfs_openfiles = g_slist_delete_link (vfs_openfiles, l);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2003-10-12 04:24:00 +04:00
|
|
|
static struct vfs_class *vfs_list;
|
1998-09-27 23:27:58 +04:00
|
|
|
|
2003-10-11 03:13:09 +04:00
|
|
|
int
|
2003-10-11 20:54:46 +04:00
|
|
|
vfs_register_class (struct vfs_class *vfs)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2000-02-24 15:00:30 +03:00
|
|
|
if (vfs->init) /* vfs has own initialization function */
|
|
|
|
if (!(*vfs->init)(vfs)) /* but it failed */
|
|
|
|
return 0;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-09-27 23:27:58 +04:00
|
|
|
vfs->next = vfs_list;
|
|
|
|
vfs_list = vfs;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-09-27 23:27:58 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-10-12 02:17:52 +04:00
|
|
|
/* Return VFS class for the given prefix */
|
|
|
|
static struct vfs_class *
|
|
|
|
vfs_prefix_to_class (char *prefix)
|
1998-09-27 23:27:58 +04:00
|
|
|
{
|
2003-10-12 02:17:52 +04:00
|
|
|
struct vfs_class *vfs;
|
2003-09-29 00:35:08 +04:00
|
|
|
|
2003-10-12 02:17:52 +04:00
|
|
|
for (vfs = vfs_list; vfs; vfs = vfs->next) {
|
2003-09-29 00:35:08 +04:00
|
|
|
if (vfs->which) {
|
2003-10-12 02:17:52 +04:00
|
|
|
if ((*vfs->which) (vfs, prefix) == -1)
|
1998-12-09 23:22:53 +03:00
|
|
|
continue;
|
|
|
|
return vfs;
|
1998-09-27 23:27:58 +04:00
|
|
|
}
|
2003-09-29 00:35:08 +04:00
|
|
|
if (vfs->prefix
|
2003-10-12 02:17:52 +04:00
|
|
|
&& !strncmp (prefix, vfs->prefix, strlen (vfs->prefix)))
|
1998-09-27 23:27:58 +04:00
|
|
|
return vfs;
|
|
|
|
}
|
2003-09-29 00:35:08 +04:00
|
|
|
return NULL;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1998-12-16 09:16:13 +03:00
|
|
|
/* Strip known vfs suffixes from a filename (possible improvement: strip
|
|
|
|
suffix from last path component).
|
|
|
|
Returns a malloced string which has to be freed. */
|
|
|
|
char *
|
2001-03-05 09:00:27 +03:00
|
|
|
vfs_strip_suffix_from_filename (const char *filename)
|
1998-12-16 09:16:13 +03:00
|
|
|
{
|
2003-10-12 02:17:52 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-12-16 09:16:13 +03:00
|
|
|
char *semi;
|
|
|
|
char *p;
|
|
|
|
|
1999-01-11 03:48:23 +03:00
|
|
|
if (!filename)
|
2003-09-29 00:35:08 +04:00
|
|
|
vfs_die ("vfs_strip_suffix_from_path got NULL: impossible");
|
|
|
|
|
1999-01-21 01:01:11 +03:00
|
|
|
p = g_strdup (filename);
|
1998-12-16 09:16:13 +03:00
|
|
|
if (!(semi = strrchr (p, '#')))
|
|
|
|
return p;
|
|
|
|
|
2003-10-12 02:17:52 +04:00
|
|
|
/* Avoid last class (localfs) that would accept any prefix */
|
|
|
|
for (vfs = vfs_list; vfs->next; vfs = vfs->next) {
|
2003-09-29 00:35:08 +04:00
|
|
|
if (vfs->which) {
|
1998-12-16 09:16:13 +03:00
|
|
|
if ((*vfs->which) (vfs, semi + 1) == -1)
|
|
|
|
continue;
|
2003-09-29 00:35:08 +04:00
|
|
|
*semi = '\0'; /* Found valid suffix */
|
1998-12-16 09:16:13 +03:00
|
|
|
return p;
|
|
|
|
}
|
2003-09-29 00:35:08 +04:00
|
|
|
if (vfs->prefix
|
|
|
|
&& !strncmp (semi + 1, vfs->prefix, strlen (vfs->prefix))) {
|
|
|
|
*semi = '\0'; /* Found valid suffix */
|
1998-12-16 09:16:13 +03:00
|
|
|
return p;
|
2003-09-29 00:35:08 +04:00
|
|
|
}
|
1998-12-16 09:16:13 +03:00
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
static int
|
2001-03-05 09:00:27 +03:00
|
|
|
path_magic (const char *path)
|
1998-08-25 20:00:16 +04:00
|
|
|
{
|
1998-10-05 22:32:53 +04:00
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
if (!stat(path, &buf))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
1998-08-25 20:00:16 +04:00
|
|
|
}
|
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
/*
|
1998-08-25 20:00:16 +04:00
|
|
|
* Splits path '/p1#op/inpath' into inpath,op; returns which vfs it is.
|
1999-01-21 01:01:11 +03:00
|
|
|
* What is left in path is p1. You still want to g_free(path), you DON'T
|
1998-05-26 04:53:24 +04:00
|
|
|
* want to free neither *inpath nor *op
|
|
|
|
*/
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *
|
2003-11-14 11:25:50 +03:00
|
|
|
vfs_split (char *path, char **inpath, char **op)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
1998-10-14 06:56:18 +04:00
|
|
|
char *semi;
|
1998-05-26 04:53:24 +04:00
|
|
|
char *slash;
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *ret;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1999-01-11 03:48:23 +03:00
|
|
|
if (!path)
|
2002-12-26 05:21:37 +03:00
|
|
|
vfs_die("Cannot split NULL");
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
semi = strrchr (path, '#');
|
1998-10-05 22:32:53 +04:00
|
|
|
if (!semi || !path_magic(path))
|
1998-05-26 04:53:24 +04:00
|
|
|
return NULL;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1999-01-21 01:01:11 +03:00
|
|
|
slash = strchr (semi, PATH_SEP);
|
1998-05-26 04:53:24 +04:00
|
|
|
*semi = 0;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
if (op)
|
|
|
|
*op = NULL;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
if (inpath)
|
|
|
|
*inpath = NULL;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
if (slash)
|
|
|
|
*slash = 0;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
2003-10-12 02:17:52 +04:00
|
|
|
if ((ret = vfs_prefix_to_class (semi+1))){
|
1998-05-26 04:53:24 +04:00
|
|
|
if (op)
|
1998-10-14 06:56:18 +04:00
|
|
|
*op = semi + 1;
|
1998-05-26 04:53:24 +04:00
|
|
|
if (inpath)
|
1998-10-14 06:56:18 +04:00
|
|
|
*inpath = slash ? slash + 1 : NULL;
|
1998-05-26 04:53:24 +04:00
|
|
|
return ret;
|
|
|
|
}
|
1998-10-14 06:56:18 +04:00
|
|
|
|
2000-04-16 23:13:00 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
if (slash)
|
1999-01-21 01:01:11 +03:00
|
|
|
*slash = PATH_SEP;
|
1998-05-26 04:53:24 +04:00
|
|
|
ret = vfs_split (path, inpath, op);
|
|
|
|
*semi = '#';
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-10-12 04:24:00 +04:00
|
|
|
static struct vfs_class *
|
2003-10-11 11:38:05 +04:00
|
|
|
_vfs_get_class (const char *path)
|
1998-05-26 04:53:24 +04:00
|
|
|
{
|
1998-10-14 06:56:18 +04:00
|
|
|
char *semi;
|
1998-05-26 04:53:24 +04:00
|
|
|
char *slash;
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *ret;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
2000-04-16 23:13:00 +04:00
|
|
|
g_return_val_if_fail(path, NULL);
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
semi = strrchr (path, '#');
|
|
|
|
if (!semi || !path_magic (path))
|
1998-05-26 04:53:24 +04:00
|
|
|
return NULL;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1999-01-21 01:01:11 +03:00
|
|
|
slash = strchr (semi, PATH_SEP);
|
1998-05-26 04:53:24 +04:00
|
|
|
*semi = 0;
|
|
|
|
if (slash)
|
|
|
|
*slash = 0;
|
|
|
|
|
2003-10-12 02:17:52 +04:00
|
|
|
ret = vfs_prefix_to_class (semi+1);
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
if (slash)
|
1999-01-21 01:01:11 +03:00
|
|
|
*slash = PATH_SEP;
|
1998-05-26 04:53:24 +04:00
|
|
|
if (!ret)
|
2003-10-11 10:25:29 +04:00
|
|
|
ret = _vfs_get_class (path);
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
*semi = '#';
|
|
|
|
return ret;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *
|
2003-10-11 11:38:05 +04:00
|
|
|
vfs_get_class (const char *path)
|
1998-05-26 04:53:24 +04:00
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
2003-10-11 10:25:29 +04:00
|
|
|
vfs = _vfs_get_class(path);
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
if (!vfs)
|
2003-10-12 23:57:27 +04:00
|
|
|
vfs = localfs_class;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
return vfs;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
static int
|
2003-10-12 04:24:00 +04:00
|
|
|
ferrno (struct vfs_class *vfs)
|
1998-05-26 04:53:24 +04:00
|
|
|
{
|
1998-11-21 22:36:01 +03:00
|
|
|
return vfs->ferrno ? (*vfs->ferrno)(vfs) : E_UNKNOWN;
|
1998-05-26 04:53:24 +04:00
|
|
|
/* Hope that error message is obscure enough ;-) */
|
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
2000-02-24 15:00:30 +03:00
|
|
|
mc_open (const char *filename, int flags, ...)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
int mode;
|
|
|
|
void *info;
|
|
|
|
va_list ap;
|
2000-02-24 15:00:30 +03:00
|
|
|
|
|
|
|
char *file = vfs_canon (filename);
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs = vfs_get_class (file);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
/* Get the mode flag */ /* FIXME: should look if O_CREAT is present */
|
1998-02-27 07:54:42 +03:00
|
|
|
va_start (ap, flags);
|
|
|
|
mode = va_arg (ap, int);
|
|
|
|
va_end (ap);
|
|
|
|
|
2000-04-16 23:13:00 +04:00
|
|
|
if (!vfs->open) {
|
2003-10-17 00:46:08 +04:00
|
|
|
g_free (file);
|
2000-04-16 23:13:00 +04:00
|
|
|
errno = -EOPNOTSUPP;
|
|
|
|
return -1;
|
|
|
|
}
|
1998-10-14 06:56:18 +04:00
|
|
|
|
1998-09-27 23:27:58 +04:00
|
|
|
info = (*vfs->open) (vfs, file, flags, mode); /* open must be supported */
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (file);
|
1998-02-27 07:54:42 +03:00
|
|
|
if (!info){
|
1998-05-26 04:53:24 +04:00
|
|
|
errno = ferrno (vfs);
|
1998-02-27 07:54:42 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
return vfs_new_handle (vfs, info);
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
|
1998-08-31 14:02:52 +04:00
|
|
|
#define MC_NAMEOP(name, inarg, callarg) \
|
2003-11-05 09:34:20 +03:00
|
|
|
int mc_##name inarg \
|
|
|
|
{ \
|
|
|
|
struct vfs_class *vfs; \
|
|
|
|
int result; \
|
2004-08-17 02:40:31 +04:00
|
|
|
char *mpath = vfs_canon (path); \
|
|
|
|
vfs = vfs_get_class (mpath); \
|
2003-11-05 09:34:20 +03:00
|
|
|
result = vfs->name ? (*vfs->name)callarg : -1; \
|
2004-08-17 02:40:31 +04:00
|
|
|
g_free (mpath); \
|
2003-11-05 09:34:20 +03:00
|
|
|
if (result == -1) \
|
|
|
|
errno = vfs->name ? ferrno (vfs) : E_NOTSUPP; \
|
|
|
|
return result; \
|
|
|
|
}
|
|
|
|
|
2004-08-17 02:40:31 +04:00
|
|
|
MC_NAMEOP (chmod, (const char *path, int mode), (vfs, path, mode))
|
|
|
|
MC_NAMEOP (chown, (const char *path, int owner, int group), (vfs, path, owner, group))
|
|
|
|
MC_NAMEOP (utime, (const char *path, struct utimbuf *times), (vfs, path, times))
|
|
|
|
MC_NAMEOP (readlink, (const char *path, char *buf, int bufsiz), (vfs, path, buf, bufsiz))
|
|
|
|
MC_NAMEOP (unlink, (const char *path), (vfs, path))
|
|
|
|
MC_NAMEOP (symlink, (const char *name1, const char *path), (vfs, name1, path))
|
|
|
|
MC_NAMEOP (mkdir, (const char *path, mode_t mode), (vfs, path, mode))
|
|
|
|
MC_NAMEOP (rmdir, (const char *path), (vfs, path))
|
|
|
|
MC_NAMEOP (mknod, (const char *path, int mode, int dev), (vfs, path, mode, dev))
|
2003-11-05 09:34:20 +03:00
|
|
|
|
|
|
|
|
1998-08-31 14:02:52 +04:00
|
|
|
#define MC_HANDLEOP(name, inarg, callarg) \
|
2003-11-05 09:34:20 +03:00
|
|
|
int mc_##name inarg \
|
|
|
|
{ \
|
|
|
|
struct vfs_class *vfs; \
|
|
|
|
int result; \
|
|
|
|
if (handle == -1) \
|
|
|
|
return -1; \
|
|
|
|
vfs = vfs_op (handle); \
|
|
|
|
result = vfs->name ? (*vfs->name)callarg : -1; \
|
|
|
|
if (result == -1) \
|
|
|
|
errno = vfs->name ? ferrno (vfs) : E_NOTSUPP; \
|
|
|
|
return result; \
|
|
|
|
}
|
1998-05-26 04:53:24 +04:00
|
|
|
|
1999-08-01 15:37:25 +04:00
|
|
|
MC_HANDLEOP(read, (int handle, char *buffer, int count), (vfs_info (handle), buffer, count) )
|
2004-08-17 02:40:31 +04:00
|
|
|
MC_HANDLEOP (write, (int handle, const char *buf, int nbyte), (vfs_info (handle), buf, nbyte))
|
2003-11-05 09:34:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
#define MC_RENAMEOP(name) \
|
|
|
|
int mc_##name (const char *fname1, const char *fname2) \
|
|
|
|
{ \
|
|
|
|
struct vfs_class *vfs; \
|
|
|
|
int result; \
|
|
|
|
char *name2, *name1 = vfs_canon (fname1); \
|
|
|
|
vfs = vfs_get_class (name1); \
|
|
|
|
name2 = vfs_canon (fname2); \
|
|
|
|
if (vfs != vfs_get_class (name2)){ \
|
|
|
|
errno = EXDEV; \
|
|
|
|
g_free (name1); \
|
|
|
|
g_free (name2); \
|
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
result = vfs->name ? (*vfs->name)(vfs, name1, name2) : -1; \
|
|
|
|
g_free (name1); \
|
|
|
|
g_free (name2); \
|
|
|
|
if (result == -1) \
|
|
|
|
errno = vfs->name ? ferrno (vfs) : E_NOTSUPP; \
|
|
|
|
return result; \
|
|
|
|
}
|
|
|
|
|
|
|
|
MC_RENAMEOP (link)
|
|
|
|
MC_RENAMEOP (rename)
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
2003-10-16 20:12:19 +04:00
|
|
|
mc_ctl (int handle, int ctlop, void *arg)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs = vfs_op (handle);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1999-12-16 15:55:16 +03:00
|
|
|
return vfs->ctl ? (*vfs->ctl)(vfs_info (handle), ctlop, arg) : 0;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
2004-08-17 02:40:31 +04:00
|
|
|
mc_setctl (const char *path, int ctlop, void *arg)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-02-27 07:54:42 +03:00
|
|
|
int result;
|
2004-08-17 02:40:31 +04:00
|
|
|
char *mpath;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-12-09 23:22:53 +03:00
|
|
|
if (!path)
|
1999-01-11 03:48:23 +03:00
|
|
|
vfs_die("You don't want to pass NULL to mc_setctl.");
|
|
|
|
|
2004-08-17 02:40:31 +04:00
|
|
|
mpath = vfs_canon (path);
|
|
|
|
vfs = vfs_get_class (mpath);
|
|
|
|
result = vfs->setctl ? (*vfs->setctl)(vfs, mpath, ctlop, arg) : 0;
|
|
|
|
g_free (mpath);
|
1998-02-27 07:54:42 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
|
|
|
mc_close (int handle)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-02-27 07:54:42 +03:00
|
|
|
int result;
|
|
|
|
|
|
|
|
if (handle == -1 || !vfs_info (handle))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
vfs = vfs_op (handle);
|
|
|
|
if (handle < 3)
|
|
|
|
return close (handle);
|
|
|
|
|
1998-08-31 14:02:52 +04:00
|
|
|
if (!vfs->close)
|
1998-10-14 06:56:18 +04:00
|
|
|
vfs_die ("VFS must support close.\n");
|
1998-08-31 14:02:52 +04:00
|
|
|
result = (*vfs->close)(vfs_info (handle));
|
2003-11-05 03:12:25 +03:00
|
|
|
vfs_free_handle (handle);
|
1998-02-27 07:54:42 +03:00
|
|
|
if (result == -1)
|
1998-05-26 04:53:24 +04:00
|
|
|
errno = ferrno (vfs);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
DIR *
|
2003-11-13 11:29:37 +03:00
|
|
|
mc_opendir (const char *dirname)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
int handle, *handlep;
|
|
|
|
void *info;
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
2003-11-13 11:29:37 +03:00
|
|
|
char *dname;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-13 11:29:37 +03:00
|
|
|
dname = vfs_canon (dirname);
|
|
|
|
vfs = vfs_get_class (dname);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-13 11:29:37 +03:00
|
|
|
info = vfs->opendir ? (*vfs->opendir)(vfs, dname) : NULL;
|
|
|
|
g_free (dname);
|
1998-02-27 07:54:42 +03:00
|
|
|
if (!info){
|
1998-11-21 22:36:01 +03:00
|
|
|
errno = vfs->opendir ? ferrno (vfs) : E_NOTSUPP;
|
1998-02-27 07:54:42 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-05 03:12:25 +03:00
|
|
|
handle = vfs_new_handle (vfs, info);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1999-01-21 01:01:11 +03:00
|
|
|
handlep = g_new (int, 1);
|
1998-02-27 07:54:42 +03:00
|
|
|
*handlep = handle;
|
|
|
|
return (DIR *) handlep;
|
|
|
|
}
|
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
struct dirent *
|
|
|
|
mc_readdir (DIR *dirp)
|
|
|
|
{
|
|
|
|
int handle;
|
|
|
|
struct vfs_class *vfs;
|
|
|
|
struct dirent *result = NULL;
|
1998-05-26 23:46:37 +04:00
|
|
|
|
2003-11-05 03:12:25 +03:00
|
|
|
if (!dirp) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
handle = *(int *) dirp;
|
|
|
|
vfs = vfs_op (handle);
|
|
|
|
if (vfs->readdir)
|
|
|
|
result = (*vfs->readdir) (vfs_info (handle));
|
|
|
|
if (!result)
|
|
|
|
errno = vfs->readdir ? ferrno (vfs) : E_NOTSUPP;
|
|
|
|
return result;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
|
|
|
mc_closedir (DIR *dirp)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
int handle = *(int *) dirp;
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs = vfs_op (handle);
|
1998-02-27 07:54:42 +03:00
|
|
|
int result;
|
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
result = vfs->closedir ? (*vfs->closedir)(vfs_info (handle)) : -1;
|
2003-11-05 03:12:25 +03:00
|
|
|
vfs_free_handle (handle);
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (dirp);
|
1998-02-27 07:54:42 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-12-11 12:36:50 +03:00
|
|
|
int mc_stat (const char *filename, struct stat *buf) {
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
2001-09-18 01:29:51 +04:00
|
|
|
int result;
|
2002-12-11 12:36:50 +03:00
|
|
|
char *path;
|
2003-10-11 10:25:29 +04:00
|
|
|
path = vfs_canon (filename); vfs = vfs_get_class (path);
|
2002-12-25 05:47:21 +03:00
|
|
|
result = vfs->stat ? (*vfs->stat) (vfs, path, buf) : -1;
|
2001-09-18 01:29:51 +04:00
|
|
|
g_free (path);
|
|
|
|
if (result == -1)
|
|
|
|
errno = vfs->name ? ferrno (vfs) : E_NOTSUPP;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-12-11 12:36:50 +03:00
|
|
|
int mc_lstat (const char *filename, struct stat *buf) {
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
2001-09-18 01:29:51 +04:00
|
|
|
int result;
|
2002-12-11 12:36:50 +03:00
|
|
|
char *path;
|
2003-10-11 10:25:29 +04:00
|
|
|
path = vfs_canon (filename); vfs = vfs_get_class (path);
|
2002-12-25 05:47:21 +03:00
|
|
|
result = vfs->lstat ? (*vfs->lstat) (vfs, path, buf) : -1;
|
2001-09-18 01:29:51 +04:00
|
|
|
g_free (path);
|
|
|
|
if (result == -1)
|
|
|
|
errno = vfs->name ? ferrno (vfs) : E_NOTSUPP;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mc_fstat (int handle, struct stat *buf) {
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
2001-09-18 01:29:51 +04:00
|
|
|
int result;
|
|
|
|
|
|
|
|
if (handle == -1)
|
|
|
|
return -1;
|
|
|
|
vfs = vfs_op (handle);
|
|
|
|
result = vfs->fstat ? (*vfs->fstat) (vfs_info (handle), buf) : -1;
|
|
|
|
if (result == -1)
|
|
|
|
errno = vfs->name ? ferrno (vfs) : E_NOTSUPP;
|
|
|
|
return result;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
/*
|
2003-06-06 04:50:22 +04:00
|
|
|
* Return current directory. If it's local, reread the current directory
|
|
|
|
* from the OS. You must g_strdup whatever this function returns.
|
1998-05-26 04:53:24 +04:00
|
|
|
*/
|
2002-01-21 14:52:25 +03:00
|
|
|
static const char *
|
2003-06-06 04:50:22 +04:00
|
|
|
_vfs_get_cwd (void)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
struct stat my_stat, my_stat2;
|
1998-05-26 04:53:24 +04:00
|
|
|
|
2003-10-11 10:25:29 +04:00
|
|
|
if (!_vfs_get_class (current_dir)) {
|
2001-07-18 07:44:38 +04:00
|
|
|
p = g_get_current_dir ();
|
2003-06-06 04:50:22 +04:00
|
|
|
if (!p) /* One of the directories in the path is not readable */
|
1998-05-26 04:53:24 +04:00
|
|
|
return current_dir;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
/* Otherwise check if it is O.K. to use the current_dir */
|
2003-06-06 04:50:22 +04:00
|
|
|
if (!cd_symlinks || mc_stat (p, &my_stat)
|
|
|
|
|| mc_stat (current_dir, &my_stat2)
|
|
|
|
|| my_stat.st_ino != my_stat2.st_ino
|
|
|
|
|| my_stat.st_dev != my_stat2.st_dev) {
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (current_dir);
|
2001-07-18 07:44:38 +04:00
|
|
|
current_dir = p;
|
1998-02-27 07:54:42 +03:00
|
|
|
return p;
|
2003-06-06 04:50:22 +04:00
|
|
|
} /* Otherwise we return current_dir below */
|
2001-11-02 21:18:14 +03:00
|
|
|
g_free (p);
|
2003-06-06 04:50:22 +04:00
|
|
|
}
|
1998-05-26 04:53:24 +04:00
|
|
|
return current_dir;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2003-06-06 04:50:22 +04:00
|
|
|
static void
|
|
|
|
vfs_setup_wd (void)
|
|
|
|
{
|
|
|
|
current_dir = g_strdup (PATH_SEP_STR);
|
2003-10-11 03:49:44 +04:00
|
|
|
_vfs_get_cwd ();
|
2003-06-06 04:50:22 +04:00
|
|
|
|
|
|
|
if (strlen (current_dir) > MC_MAXPATHLEN - 2)
|
|
|
|
vfs_die ("Current dir too long.\n");
|
2003-10-12 02:17:52 +04:00
|
|
|
|
|
|
|
current_vfs = vfs_get_class (current_dir);
|
2003-06-06 04:50:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return current directory. If it's local, reread the current directory
|
|
|
|
* from the OS. Put directory to the provided buffer.
|
|
|
|
*/
|
1998-10-14 06:56:18 +04:00
|
|
|
char *
|
|
|
|
mc_get_current_wd (char *buffer, int size)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-06-06 04:50:22 +04:00
|
|
|
const char *cwd = _vfs_get_cwd ();
|
1999-01-15 22:02:39 +03:00
|
|
|
|
2004-09-01 22:39:48 +04:00
|
|
|
g_strlcpy (buffer, cwd, size);
|
1998-05-26 04:53:24 +04:00
|
|
|
return buffer;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2003-06-06 04:50:22 +04:00
|
|
|
/*
|
|
|
|
* Return current directory without any OS calls.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
vfs_get_current_dir (void)
|
|
|
|
{
|
|
|
|
return current_dir;
|
|
|
|
}
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
off_t mc_lseek (int fd, off_t offset, int whence)
|
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-08-31 14:02:52 +04:00
|
|
|
int result;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if (fd == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
vfs = vfs_op (fd);
|
1998-08-31 14:02:52 +04:00
|
|
|
result = vfs->lseek ? (*vfs->lseek)(vfs_info (fd), offset, whence) : -1;
|
|
|
|
if (result == -1)
|
1998-11-21 22:36:01 +03:00
|
|
|
errno = vfs->lseek ? ferrno (vfs) : E_NOTSUPP;
|
1998-08-31 14:02:52 +04:00
|
|
|
return result;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
/*
|
|
|
|
* remove //, /./ and /../, local should point to big enough buffer
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ISSLASH(a) (!a || (a == '/'))
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
char *
|
2000-02-24 15:00:30 +03:00
|
|
|
vfs_canon (const char *path)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
1999-01-11 03:48:23 +03:00
|
|
|
if (!path)
|
2001-06-02 10:36:00 +04:00
|
|
|
vfs_die("Cannot canonicalize NULL");
|
1998-10-14 06:56:18 +04:00
|
|
|
|
|
|
|
/* Relative to current directory */
|
1999-01-21 01:01:11 +03:00
|
|
|
if (*path != PATH_SEP){
|
1998-02-27 07:54:42 +03:00
|
|
|
char *local, *result;
|
|
|
|
|
2000-02-24 15:00:30 +03:00
|
|
|
local = concat_dir_and_file (current_dir, path);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
result = vfs_canon (local);
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (local);
|
1998-02-27 07:54:42 +03:00
|
|
|
return result;
|
|
|
|
}
|
1998-10-14 06:56:18 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* So we have path of following form:
|
1998-08-25 20:00:16 +04:00
|
|
|
* /p1/p2#op/.././././p3#op/p4. Good luck.
|
1998-05-26 04:53:24 +04:00
|
|
|
*/
|
2000-02-24 15:00:30 +03:00
|
|
|
{
|
|
|
|
char *result = g_strdup (path);
|
|
|
|
canonicalize_pathname (result);
|
|
|
|
return result;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2002-12-25 05:47:21 +03:00
|
|
|
/*
|
|
|
|
* VFS chdir.
|
|
|
|
* Return 0 on success, -1 on failure.
|
|
|
|
*/
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
2003-11-13 11:29:37 +03:00
|
|
|
mc_chdir (const char *path)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-11-13 11:29:37 +03:00
|
|
|
char *new_dir;
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *old_vfs, *new_vfs;
|
2002-12-25 07:02:34 +03:00
|
|
|
vfsid old_vfsid;
|
2002-12-25 07:38:50 +03:00
|
|
|
int result;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2002-12-25 07:02:34 +03:00
|
|
|
new_dir = vfs_canon (path);
|
2003-10-11 10:25:29 +04:00
|
|
|
new_vfs = vfs_get_class (new_dir);
|
2004-08-26 04:17:36 +04:00
|
|
|
if (!new_vfs->chdir) {
|
|
|
|
g_free (new_dir);
|
2003-09-29 00:35:08 +04:00
|
|
|
return -1;
|
2004-08-26 04:17:36 +04:00
|
|
|
}
|
2002-12-25 07:02:34 +03:00
|
|
|
|
2003-11-13 11:29:37 +03:00
|
|
|
result = (*new_vfs->chdir) (new_vfs, new_dir);
|
2002-12-25 07:38:50 +03:00
|
|
|
|
|
|
|
if (result == -1) {
|
2002-12-25 07:02:34 +03:00
|
|
|
errno = ferrno (new_vfs);
|
|
|
|
g_free (new_dir);
|
|
|
|
return -1;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
1998-05-26 04:53:24 +04:00
|
|
|
|
2003-11-27 00:25:30 +03:00
|
|
|
old_vfsid = vfs_getid (current_vfs, current_dir);
|
2002-12-25 07:02:34 +03:00
|
|
|
old_vfs = current_vfs;
|
|
|
|
|
|
|
|
/* Actually change directory */
|
|
|
|
g_free (current_dir);
|
|
|
|
current_dir = new_dir;
|
|
|
|
current_vfs = new_vfs;
|
|
|
|
|
2002-12-25 07:38:50 +03:00
|
|
|
/* This function uses the new current_dir implicitly */
|
2003-11-27 00:10:42 +03:00
|
|
|
vfs_stamp_create (old_vfs, old_vfsid);
|
2002-12-25 07:02:34 +03:00
|
|
|
|
|
|
|
/* Sometimes we assume no trailing slash on cwd */
|
2002-12-25 05:47:21 +03:00
|
|
|
if (*current_dir) {
|
2002-12-25 07:02:34 +03:00
|
|
|
char *p;
|
1998-02-27 07:54:42 +03:00
|
|
|
p = strchr (current_dir, 0) - 1;
|
1999-01-21 01:01:11 +03:00
|
|
|
if (*p == PATH_SEP && p > current_dir)
|
2002-12-25 07:02:34 +03:00
|
|
|
*p = 0;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
2002-12-25 07:02:34 +03:00
|
|
|
|
|
|
|
return 0;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2003-10-11 12:21:16 +04:00
|
|
|
/* Return 1 is the current VFS class is local */
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
|
|
|
vfs_current_is_local (void)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-11 12:21:16 +04:00
|
|
|
return (current_vfs->flags & VFSF_LOCAL) != 0;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
2003-10-11 12:21:16 +04:00
|
|
|
/* Return flags of the VFS class of the given filename */
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
2003-10-11 12:21:16 +04:00
|
|
|
vfs_file_class_flags (const char *filename)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-11 12:21:16 +04:00
|
|
|
struct vfs_class *vfs;
|
|
|
|
char *fname;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-10-11 12:21:16 +04:00
|
|
|
fname = vfs_canon (filename);
|
2003-10-11 11:38:05 +04:00
|
|
|
vfs = vfs_get_class (fname);
|
|
|
|
g_free (fname);
|
2003-10-11 12:21:16 +04:00
|
|
|
return vfs->flags;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_MMAP
|
1998-10-13 02:07:53 +04:00
|
|
|
static struct mc_mmapping {
|
1998-02-27 07:54:42 +03:00
|
|
|
caddr_t addr;
|
|
|
|
void *vfs_info;
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-02-27 07:54:42 +03:00
|
|
|
struct mc_mmapping *next;
|
|
|
|
} *mc_mmaparray = NULL;
|
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
caddr_t
|
|
|
|
mc_mmap (caddr_t addr, size_t len, int prot, int flags, int fd, off_t offset)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-02-27 07:54:42 +03:00
|
|
|
caddr_t result;
|
|
|
|
struct mc_mmapping *mcm;
|
|
|
|
|
|
|
|
if (fd == -1)
|
|
|
|
return (caddr_t) -1;
|
|
|
|
|
|
|
|
vfs = vfs_op (fd);
|
1998-09-27 23:27:58 +04:00
|
|
|
result = vfs->mmap ? (*vfs->mmap)(vfs, addr, len, prot, flags, vfs_info (fd), offset) : (caddr_t)-1;
|
1998-02-27 07:54:42 +03:00
|
|
|
if (result == (caddr_t)-1){
|
1998-08-31 14:02:52 +04:00
|
|
|
errno = ferrno (vfs);
|
1998-02-27 07:54:42 +03:00
|
|
|
return (caddr_t)-1;
|
|
|
|
}
|
1999-01-21 01:01:11 +03:00
|
|
|
mcm =g_new (struct mc_mmapping, 1);
|
1998-02-27 07:54:42 +03:00
|
|
|
mcm->addr = result;
|
|
|
|
mcm->vfs_info = vfs_info (fd);
|
|
|
|
mcm->vfs = vfs;
|
|
|
|
mcm->next = mc_mmaparray;
|
|
|
|
mc_mmaparray = mcm;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
int
|
|
|
|
mc_munmap (caddr_t addr, size_t len)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
struct mc_mmapping *mcm, *mcm2 = NULL;
|
|
|
|
|
1998-05-26 04:53:24 +04:00
|
|
|
for (mcm = mc_mmaparray; mcm != NULL; mcm2 = mcm, mcm = mcm->next){
|
|
|
|
if (mcm->addr == addr){
|
1998-02-27 07:54:42 +03:00
|
|
|
if (mcm2 == NULL)
|
|
|
|
mc_mmaparray = mcm->next;
|
|
|
|
else
|
|
|
|
mcm2->next = mcm->next;
|
1999-08-01 15:37:25 +04:00
|
|
|
if (mcm->vfs->munmap)
|
1998-09-27 23:27:58 +04:00
|
|
|
(*mcm->vfs->munmap)(mcm->vfs, addr, len, mcm->vfs_info);
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (mcm);
|
1998-02-27 07:54:42 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2003-10-28 10:09:39 +03:00
|
|
|
static char *
|
2003-10-28 05:10:33 +03:00
|
|
|
mc_def_getlocalcopy (struct vfs_class *vfs, const char *filename)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-29 03:50:36 +03:00
|
|
|
char *tmp;
|
1998-02-27 07:54:42 +03:00
|
|
|
int fdin, fdout, i;
|
|
|
|
char buffer[8192];
|
|
|
|
struct stat mystat;
|
|
|
|
|
2003-10-28 00:55:06 +03:00
|
|
|
fdin = mc_open (filename, O_RDONLY | O_LINEAR);
|
1998-02-27 07:54:42 +03:00
|
|
|
if (fdin == -1)
|
2003-02-26 20:43:18 +03:00
|
|
|
return NULL;
|
2001-05-21 20:21:07 +04:00
|
|
|
|
2003-10-29 03:50:36 +03:00
|
|
|
fdout = vfs_mkstemps (&tmp, "vfs", filename);
|
2002-08-16 02:30:05 +04:00
|
|
|
|
1999-11-11 17:23:40 +03:00
|
|
|
if (fdout == -1)
|
|
|
|
goto fail;
|
2003-02-26 20:43:18 +03:00
|
|
|
while ((i = mc_read (fdin, buffer, sizeof (buffer))) > 0) {
|
2000-05-25 18:47:48 +04:00
|
|
|
if (write (fdout, buffer, i) != i)
|
|
|
|
goto fail;
|
|
|
|
}
|
1999-11-11 17:23:40 +03:00
|
|
|
if (i == -1)
|
|
|
|
goto fail;
|
|
|
|
i = mc_close (fdin);
|
|
|
|
fdin = -1;
|
2003-02-26 20:43:18 +03:00
|
|
|
if (i == -1)
|
1999-11-11 17:23:40 +03:00
|
|
|
goto fail;
|
2003-02-26 20:43:18 +03:00
|
|
|
if (close (fdout) == -1)
|
1999-11-11 17:23:40 +03:00
|
|
|
goto fail;
|
|
|
|
|
2003-02-26 20:43:18 +03:00
|
|
|
if (mc_stat (filename, &mystat) != -1) {
|
|
|
|
chmod (tmp, mystat.st_mode);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
return tmp;
|
1999-11-11 17:23:40 +03:00
|
|
|
|
2003-02-26 20:43:18 +03:00
|
|
|
fail:
|
|
|
|
if (fdout)
|
|
|
|
close (fdout);
|
|
|
|
if (fdin)
|
|
|
|
mc_close (fdin);
|
2000-04-05 17:08:42 +04:00
|
|
|
g_free (tmp);
|
1999-11-11 17:23:40 +03:00
|
|
|
return NULL;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
char *
|
2000-02-24 15:00:30 +03:00
|
|
|
mc_getlocalcopy (const char *pathname)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
char *result;
|
2000-02-24 15:00:30 +03:00
|
|
|
char *path = vfs_canon (pathname);
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs = vfs_get_class (path);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2002-12-25 05:47:21 +03:00
|
|
|
result = vfs->getlocalcopy ? (*vfs->getlocalcopy)(vfs, path) :
|
|
|
|
mc_def_getlocalcopy (vfs, path);
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (path);
|
1998-08-31 14:02:52 +04:00
|
|
|
if (!result)
|
1998-05-26 04:53:24 +04:00
|
|
|
errno = ferrno (vfs);
|
1998-02-27 07:54:42 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-10-28 10:09:39 +03:00
|
|
|
static int
|
2003-10-28 05:10:33 +03:00
|
|
|
mc_def_ungetlocalcopy (struct vfs_class *vfs, const char *filename,
|
2003-10-29 00:52:06 +03:00
|
|
|
const char *local, int has_changed)
|
2003-10-28 00:01:00 +03:00
|
|
|
{
|
1999-11-11 17:23:40 +03:00
|
|
|
int fdin = -1, fdout = -1, i;
|
2003-10-28 00:01:00 +03:00
|
|
|
if (has_changed) {
|
|
|
|
char buffer[8192];
|
|
|
|
|
|
|
|
if (!vfs->write)
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
fdin = open (local, O_RDONLY);
|
|
|
|
if (fdin == -1)
|
1999-11-11 17:23:40 +03:00
|
|
|
goto failed;
|
2003-10-28 00:01:00 +03:00
|
|
|
fdout = mc_open (filename, O_WRONLY | O_TRUNC);
|
|
|
|
if (fdout == -1)
|
1999-11-11 17:23:40 +03:00
|
|
|
goto failed;
|
2003-10-28 00:01:00 +03:00
|
|
|
while ((i = read (fdin, buffer, sizeof (buffer))) > 0) {
|
2000-05-25 18:47:48 +04:00
|
|
|
if (mc_write (fdout, buffer, i) != i)
|
|
|
|
goto failed;
|
|
|
|
}
|
1999-11-11 17:23:40 +03:00
|
|
|
if (i == -1)
|
|
|
|
goto failed;
|
|
|
|
|
2003-10-28 00:01:00 +03:00
|
|
|
if (close (fdin) == -1) {
|
2001-03-01 00:50:57 +03:00
|
|
|
fdin = -1;
|
1999-11-11 17:23:40 +03:00
|
|
|
goto failed;
|
2001-03-01 00:50:57 +03:00
|
|
|
}
|
|
|
|
fdin = -1;
|
2003-10-28 00:01:00 +03:00
|
|
|
if (mc_close (fdout) == -1) {
|
1999-11-11 17:23:40 +03:00
|
|
|
fdout = -1;
|
|
|
|
goto failed;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
unlink (local);
|
1999-11-11 17:23:40 +03:00
|
|
|
return 0;
|
|
|
|
|
2003-10-28 00:01:00 +03:00
|
|
|
failed:
|
2004-03-07 09:07:43 +03:00
|
|
|
message (1, _("Changes to file lost"), "%s", filename);
|
2003-10-28 00:01:00 +03:00
|
|
|
if (fdout != -1)
|
|
|
|
mc_close (fdout);
|
|
|
|
if (fdin != -1)
|
|
|
|
close (fdin);
|
1999-11-11 17:23:40 +03:00
|
|
|
unlink (local);
|
|
|
|
return -1;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1999-11-11 17:23:40 +03:00
|
|
|
int
|
2004-08-16 19:18:17 +04:00
|
|
|
mc_ungetlocalcopy (const char *pathname, const char *local, int has_changed)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2001-02-28 01:19:04 +03:00
|
|
|
int return_value = 0;
|
2000-02-24 15:00:30 +03:00
|
|
|
char *path = vfs_canon (pathname);
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs = vfs_get_class (path);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-02-28 01:19:04 +03:00
|
|
|
return_value = vfs->ungetlocalcopy ?
|
2002-12-25 05:47:21 +03:00
|
|
|
(*vfs->ungetlocalcopy)(vfs, path, local, has_changed) :
|
|
|
|
mc_def_ungetlocalcopy (vfs, path, local, has_changed);
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (path);
|
2001-02-28 01:19:04 +03:00
|
|
|
return return_value;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1999-11-11 17:23:40 +03:00
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
void
|
|
|
|
vfs_init (void)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-12 23:57:27 +04:00
|
|
|
/* localfs needs to be the first one */
|
|
|
|
init_localfs();
|
|
|
|
/* fallback value for vfs_get_class() */
|
|
|
|
localfs_class = vfs_list;
|
1998-09-27 23:27:58 +04:00
|
|
|
|
2003-10-13 02:25:53 +04:00
|
|
|
init_extfs ();
|
|
|
|
init_sfs ();
|
|
|
|
init_tarfs ();
|
|
|
|
init_cpiofs ();
|
|
|
|
|
|
|
|
#ifdef USE_EXT2FSLIB
|
|
|
|
init_undelfs ();
|
|
|
|
#endif /* USE_EXT2FSLIB */
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#ifdef USE_NETCODE
|
|
|
|
tcp_init();
|
2003-10-11 13:27:37 +04:00
|
|
|
init_ftpfs ();
|
2003-10-11 03:38:03 +04:00
|
|
|
init_fish ();
|
1999-06-23 01:02:08 +04:00
|
|
|
#ifdef WITH_SMBFS
|
2003-10-13 02:25:53 +04:00
|
|
|
init_smbfs ();
|
2002-09-06 05:27:45 +04:00
|
|
|
#endif /* WITH_SMBFS */
|
2002-04-19 11:25:32 +04:00
|
|
|
#ifdef WITH_MCFS
|
2003-10-13 02:25:53 +04:00
|
|
|
init_mcfs ();
|
2002-09-06 05:27:45 +04:00
|
|
|
#endif /* WITH_SMBFS */
|
|
|
|
#endif /* USE_NETCODE */
|
1998-09-27 23:27:58 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
vfs_setup_wd ();
|
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
void
|
|
|
|
vfs_shut (void)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-08 02:43:55 +03:00
|
|
|
vfs_gc_done ();
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if (current_dir)
|
1999-01-21 01:01:11 +03:00
|
|
|
g_free (current_dir);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2003-11-08 02:43:55 +03:00
|
|
|
for (vfs = vfs_list; vfs; vfs = vfs->next)
|
|
|
|
if (vfs->done)
|
|
|
|
(*vfs->done) (vfs);
|
2003-11-05 03:12:25 +03:00
|
|
|
|
|
|
|
g_slist_free (vfs_openfiles);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
/*
|
|
|
|
* These ones grab information from the VFS
|
1998-02-27 07:54:42 +03:00
|
|
|
* and handles them to an upper layer
|
|
|
|
*/
|
1998-10-14 06:56:18 +04:00
|
|
|
void
|
2004-08-16 20:34:11 +04:00
|
|
|
vfs_fill_names (fill_names_f func)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2003-10-12 04:24:00 +04:00
|
|
|
struct vfs_class *vfs;
|
1998-10-14 06:56:18 +04:00
|
|
|
|
|
|
|
for (vfs=vfs_list; vfs; vfs=vfs->next)
|
1998-09-27 23:27:58 +04:00
|
|
|
if (vfs->fill_names)
|
|
|
|
(*vfs->fill_names) (vfs, func);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
/*
|
|
|
|
* Returns vfs path corresponding to given url. If passed string is
|
1999-01-21 01:01:11 +03:00
|
|
|
* not recognized as url, g_strdup(url) is returned.
|
1998-10-14 06:56:18 +04:00
|
|
|
*/
|
1998-10-13 02:07:53 +04:00
|
|
|
char *
|
2003-10-11 11:38:05 +04:00
|
|
|
vfs_translate_url (const char *url)
|
1998-10-13 02:07:53 +04:00
|
|
|
{
|
|
|
|
if (strncmp (url, "ftp://", 6) == 0)
|
2003-11-05 09:08:16 +03:00
|
|
|
return g_strconcat ("/#ftp:", url + 6, NULL);
|
2000-09-15 00:53:57 +04:00
|
|
|
else if (strncmp (url, "a:", 2) == 0)
|
2003-11-05 09:08:16 +03:00
|
|
|
return g_strdup ("/#a");
|
1998-10-13 02:07:53 +04:00
|
|
|
else
|
2003-11-05 09:08:16 +03:00
|
|
|
return g_strdup (url);
|
1998-10-13 02:07:53 +04:00
|
|
|
}
|
2004-08-17 03:25:49 +04:00
|
|
|
|
|
|
|
int vfs_file_is_local (const char *filename)
|
|
|
|
{
|
|
|
|
return vfs_file_class_flags (filename) & VFSF_LOCAL;
|
|
|
|
}
|