123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- /*
- * Single File fileSystem
- *
- * Copyright 1998 Pavel Machek, distribute under GPL
- *
- * This defines whole class of filesystems which contain single file
- * inside. It is somehow similar to extfs, except that extfs makes
- * whole virtual trees and we do only single virtual files.
- *
- * If you want to gunzip something, you should open it with #ugz
- * suffix, DON'T try to gunzip it yourself.
- *
- * Namespace: exports vfs_sfs_ops */
- #include <config.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <stdio.h>
- #include <string.h>
- #include "utilvfs.h"
- #include "vfs.h"
- #include "local.h"
- struct cachedfile {
- char *name, *cache;
- uid_t uid;
- struct cachedfile *next;
- };
- static struct cachedfile *head;
- #define MAXFS 32
- static int sfs_no = 0;
- static char *sfs_prefix[ MAXFS ];
- static char *sfs_command[ MAXFS ];
- static int sfs_flags[ MAXFS ];
- #define F_1 1
- #define F_2 2
- #define F_NOLOCALCOPY 4
- #define F_FULLMATCH 8
- static int uptodate (char *name, char *cache)
- {
- return 1;
- }
- static int vfmake (vfs *me, char *name, char *cache)
- {
- char *inpath, *op;
- int w;
- char pad [10240];
- char *s, *t = pad;
- int was_percent = 0;
- vfs_split (name, &inpath, &op);
- if ((w = (*me->which) (me, op)) == -1)
- vfs_die ("This cannot happen... Hopefully.\n");
- if ((sfs_flags[w] & F_1) || (!strcmp (name, "/"))) ; else return -1;
- /* if ((sfs_flags[w] & F_2) || (!inpath) || (!*inpath)); else return -1; */
- if (!(sfs_flags[w] & F_NOLOCALCOPY)) {
- s = mc_getlocalcopy (name);
- if (!s)
- return -1;
- name = name_quote (s, 0);
- g_free (s);
- } else
- name = name_quote (name, 0);
- #define COPY_CHAR if (t-pad>sizeof(pad)) { g_free (name); return -1; } else *t++ = *s;
- #define COPY_STRING(a) if ((t-pad)+strlen(a)>sizeof(pad)) { g_free (name); return -1; } else { strcpy (t, a); t+= strlen(a); }
- for (s = sfs_command[w]; *s; s++) {
- if (was_percent) {
- char *ptr = NULL;
- was_percent = 0;
- switch (*s) {
- case '1': ptr = name; break;
- case '2': ptr = op + strlen (sfs_prefix[w]); break;
- case '3': ptr = cache; break;
- case '%': COPY_CHAR; continue;
- }
- COPY_STRING (ptr);
- } else {
- if (*s == '%')
- was_percent = 1;
- else
- COPY_CHAR;
- }
- }
- g_free (name);
- open_error_pipe ();
- if (my_system (EXECUTE_AS_SHELL, "/bin/sh", pad)) {
- close_error_pipe (1, NULL);
- return -1;
- }
- close_error_pipe (0, NULL);
- return 0; /* OK */
- }
- static char *
- redirect (vfs *me, char *name)
- {
- struct cachedfile *cur = head;
- uid_t uid = vfs_uid;
- char *cache;
- int handle;
- while (cur){
- if ((!strcmp (name, cur->name)) &&
- (uid == cur->uid) &&
- (uptodate (cur->name, cur->cache)))
- /* FIXME: when not uptodate, we might want to kill cache
- * file immediately, not to wait until timeout. */ {
- vfs_stamp (&vfs_sfs_ops, cur);
- return cur->cache;
- }
- cur = cur->next;
- }
- handle = mc_mkstemps (&cache, "sfs", NULL);
- if (handle == -1) {
- return "/SOMEONE_PLAYING_DIRTY_TMP_TRICKS_ON_US";
- }
- close (handle);
- if (!vfmake (me, name, cache)){
- cur = g_new (struct cachedfile, 1);
- cur->name = g_strdup (name);
- cur->cache = cache;
- cur->uid = uid;
- cur->next = head;
- head = cur;
- vfs_add_noncurrent_stamps (&vfs_sfs_ops, (vfsid) head, NULL);
- vfs_rm_parents (NULL);
- return cache;
- }
-
- unlink (cache);
- g_free (cache);
- return "/I_MUST_NOT_EXIST";
- }
- static void *
- sfs_open (vfs *me, char *path, int flags, int mode)
- {
- int *sfs_info;
- int fd;
- path = redirect (me, path);
- fd = open (path, NO_LINEAR(flags), mode);
- if (fd == -1)
- return 0;
- sfs_info = g_new (int, 1);
- *sfs_info = fd;
-
- return sfs_info;
- }
- static int sfs_stat (vfs *me, char *path, struct stat *buf)
- {
- path = redirect (me, path);
- return stat (path, buf);
- }
- static int sfs_lstat (vfs *me, char *path, struct stat *buf)
- {
- path = redirect (me, path);
- #ifndef HAVE_STATLSTAT
- return lstat (path, buf);
- #else
- return statlstat (path, buf);
- #endif
- }
- static int sfs_chmod (vfs *me, char *path, int mode)
- {
- path = redirect (me, path);
- return chmod (path, mode);
- }
- static int sfs_chown (vfs *me, char *path, int owner, int group)
- {
- path = redirect (me, path);
- return chown (path, owner, group);
- }
- static int sfs_utime (vfs *me, char *path, struct utimbuf *times)
- {
- path = redirect (me, path);
- return utime (path, times);
- }
- static int sfs_readlink (vfs *me, char *path, char *buf, int size)
- {
- path = redirect (me, path);
- return readlink (path, buf, size);
- }
- static vfsid sfs_getid (vfs *me, char *path, struct vfs_stamping **parent)
- { /* FIXME: what should I do? */
- vfs *v;
- vfsid id;
- struct vfs_stamping *par;
- struct cachedfile *cur = head;
- while (cur) {
- if ((!strcmp( path, cur->name )) &&
- (vfs_uid == cur->uid))
- break;
- cur = cur->next;
- }
- *parent = NULL;
- if (!cur)
- return (vfsid)(-1);
- {
- char *path2 = g_strdup (path);
- v = vfs_split (path2, NULL, NULL); /* Strip suffix which led to this being sfs */
- v = vfs_split (path2, NULL, NULL); /* ... and learn whoever was the parent system */
- id = (*v->getid) (v, path2, &par);
- g_free (path2);
- }
- if (id != (vfsid)-1) {
- *parent = g_new (struct vfs_stamping, 1);
- (*parent)->v = v;
- (*parent)->id = id;
- (*parent)->parent = par;
- (*parent)->next = NULL;
- }
- return (vfsid) cur;
- }
- static void sfs_free (vfsid id)
- {
- struct cachedfile *which = (struct cachedfile *) id;
- struct cachedfile *cur, *prev;
- for (cur = head, prev = 0; cur && cur != which; prev = cur, cur = cur->next)
- ;
- if (!cur)
- vfs_die( "Free of thing which is unknown to me\n" );
- unlink (cur->cache);
- if (prev)
- prev->next = cur->next;
- else
- head = cur->next;
- g_free (cur->cache);
- g_free (cur->name);
- g_free (cur);
- }
- static void sfs_fill_names (vfs *me, void (*func)(char *))
- {
- struct cachedfile *cur = head;
- while (cur){
- (*func)(cur->name);
- cur = cur->next;
- }
- }
- static int sfs_nothingisopen (vfsid id)
- {
- /* FIXME: Investigate whether have to guard this like in
- the other VFSs (see fd_usage in extfs) -- Norbert */
- return 1;
- }
- static char *sfs_getlocalcopy (vfs *me, char *path)
- {
- path = redirect (me, path);
- return g_strdup (path);
- }
- static int sfs_ungetlocalcopy (vfs *me, char *path, char *local, int has_changed)
- {
- g_free(local);
- return 0;
- }
- static int sfs_init (vfs *me)
- {
- char *mc_sfsini;
- FILE *cfg;
- mc_sfsini = concat_dir_and_file (mc_home, "extfs" PATH_SEP_STR "sfs.ini");
- cfg = fopen (mc_sfsini, "r");
- if (!cfg){
- fprintf (stderr, _("Warning: file %s not found\n"), mc_sfsini);
- g_free (mc_sfsini);
- return 0;
- }
- g_free (mc_sfsini);
- sfs_no = 0;
- while (sfs_no < MAXFS){
- char key[256];
- char *c, *semi = NULL, flags = 0;
- if (!fgets (key, sizeof (key), cfg))
- break;
- if (*key == '#')
- continue;
- for (c = key; *c; c++)
- if ((*c == ':') || (*c == '/')){
- semi = c;
- if (*c == '/'){
- *c = 0;
- flags |= F_FULLMATCH;
- }
- break;
- }
- if (!semi){
- fprintf (stderr, _("Warning: Invalid line in %s:\n%s\n"),
- "sfs.ini", key);
- continue;
- }
- c = semi + 1;
- while ((*c != ' ') && (*c != '\t')) {
- switch (*c) {
- case '1': flags |= F_1; break;
- case '2': flags |= F_2; break;
- case 'R': flags |= F_NOLOCALCOPY; break;
- default:
- fprintf (stderr, _("Warning: Invalid flag %c in %s:\n%s\n"),
- *c, "sfs.ini", key);
- }
- c++;
- }
- c++;
- *(semi+1) = 0;
- if ((semi = strchr (c, '\n')))
- *semi = 0;
- sfs_prefix [sfs_no] = g_strdup (key);
- sfs_command [sfs_no] = g_strdup (c);
- sfs_flags [sfs_no] = flags;
- sfs_no++;
- }
- fclose (cfg);
- return 1;
- }
- static void
- sfs_done (vfs *me)
- {
- int i;
- for (i = 0; i < sfs_no; i++){
- g_free (sfs_prefix [i]);
- g_free (sfs_command [i]);
- sfs_prefix [i] = sfs_command [i] = NULL;
- }
- sfs_no = 0;
- }
- static int
- sfs_which (vfs *me, char *path)
- {
- int i;
- for (i = 0; i < sfs_no; i++)
- if (sfs_flags [i] & F_FULLMATCH) {
- if (!strcmp (path, sfs_prefix [i]))
- return i;
- } else
- if (!strncmp (path, sfs_prefix [i], strlen (sfs_prefix [i])))
- return i;
- return -1;
- }
- vfs vfs_sfs_ops = {
- NULL, /* This is place of next pointer */
- "sfs",
- F_EXEC, /* flags */
- NULL, /* prefix */
- NULL, /* data */
- 0, /* errno */
- sfs_init,
- sfs_done,
- sfs_fill_names,
- sfs_which,
- sfs_open,
- local_close,
- local_read,
- NULL,
-
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- sfs_stat,
- sfs_lstat,
- local_fstat,
- sfs_chmod,
- sfs_chown,
- sfs_utime,
- sfs_readlink,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- local_errno,
- local_lseek,
- NULL,
-
- sfs_getid,
- sfs_nothingisopen,
- sfs_free,
-
- sfs_getlocalcopy,
- sfs_ungetlocalcopy,
-
- NULL,
- NULL,
- NULL,
- NULL
- #ifdef HAVE_MMAP
- ,local_mmap,
- local_munmap
- #endif
- };
|