Final Indentation of all touched files
[midnight-commander.git] / lib / vfs / mc-vfs / extfs.c
blob73a59ae2fa931ea8e6bb9bec5c4987007d9c4aa5
1 /* Virtual File System: External file system.
2 Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2009 Free Software Foundation, Inc.
5 Written by: 1995 Jakub Jelinek
6 Rewritten by: 1998 Pavel Machek
7 Additional changes by: 1999 Andrew T. Veliath
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public License
11 as published by the Free Software Foundation; either version 2 of
12 the License, or (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU Library General Public License for more details.
19 You should have received a copy of the GNU Library General Public
20 License along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
23 /**
24 * \file
25 * \brief Source: Virtual File System: External file system
26 * \author Jakub Jelinek
27 * \author Pavel Machek
28 * \author Andrew T. Veliath
29 * \date 1995, 1998, 1999
32 /* Namespace: init_extfs */
34 #include <config.h>
36 #include <stdio.h>
37 #include <ctype.h>
38 #include <string.h>
39 #include <stdlib.h>
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #include <unistd.h>
43 #include <signal.h>
44 #include <fcntl.h>
45 #include <errno.h>
46 #include <sys/wait.h>
47 #include <unistd.h>
49 #include "lib/global.h"
50 #include "lib/fileloc.h"
52 #include "src/wtools.h" /* message() */
53 #include "src/main.h" /* print_vfs_message */
54 #include "src/execute.h" /* For shell_execute */
56 #include "utilvfs.h"
57 #include "vfs.h"
58 #include "vfs-impl.h"
59 #include "gc.h" /* vfs_rmstamp */
61 #undef ERRNOR
62 #define ERRNOR(x,y) do { my_errno = x; return y; } while(0)
64 struct inode
66 nlink_t nlink;
67 struct entry *first_in_subdir; /* only used if this is a directory */
68 struct entry *last_in_subdir;
69 ino_t inode; /* This is inode # */
70 dev_t dev; /* This is an internal identification of the extfs archive */
71 struct archive *archive; /* And this is an archive structure */
72 dev_t rdev;
73 mode_t mode;
74 uid_t uid;
75 gid_t gid;
76 off_t size;
77 time_t mtime;
78 char *linkname;
79 time_t atime;
80 time_t ctime;
81 char *local_filename;
84 struct entry
86 struct entry *next_in_dir;
87 struct entry *dir;
88 char *name;
89 struct inode *inode;
92 struct pseudofile
94 struct archive *archive;
95 gboolean has_changed;
96 int local_handle;
97 struct entry *entry;
100 struct archive
102 int fstype;
103 char *name;
104 char *local_name;
105 struct stat local_stat;
106 dev_t rdev;
107 int fd_usage;
108 ino_t inode_counter;
109 struct entry *root_entry;
110 struct archive *next;
113 typedef struct
115 char *path;
116 char *prefix;
117 gboolean need_archive;
118 } extfs_plugin_info_t;
120 static gboolean errloop;
121 static gboolean notadir;
123 static void extfs_remove_entry (struct entry *e);
124 static void extfs_free (vfsid id);
125 static void extfs_free_entry (struct entry *e);
126 static struct entry *extfs_resolve_symlinks_int (struct entry *entry, GSList * list);
128 static struct vfs_class vfs_extfs_ops;
129 static struct archive *first_archive = NULL;
130 static int my_errno = 0;
132 GArray *extfs_plugins = NULL;
134 static void
135 extfs_make_dots (struct entry *ent)
137 struct entry *entry = g_new (struct entry, 1);
138 struct entry *parentry = ent->dir;
139 struct inode *inode = ent->inode, *parent;
141 parent = (parentry != NULL) ? parentry->inode : NULL;
142 entry->name = g_strdup (".");
143 entry->inode = inode;
144 entry->dir = ent;
145 inode->local_filename = NULL;
146 inode->first_in_subdir = entry;
147 inode->nlink++;
149 entry->next_in_dir = g_new (struct entry, 1);
150 entry = entry->next_in_dir;
151 entry->name = g_strdup ("..");
152 inode->last_in_subdir = entry;
153 entry->next_in_dir = NULL;
154 if (parent != NULL)
156 entry->inode = parent;
157 entry->dir = parentry;
158 parent->nlink++;
160 else
162 entry->inode = inode;
163 entry->dir = ent;
164 inode->nlink++;
168 static struct entry *
169 extfs_generate_entry (struct archive *archive,
170 const char *name, struct entry *parentry, mode_t mode)
172 mode_t myumask;
173 struct inode *inode, *parent;
174 struct entry *entry;
176 parent = (parentry != NULL) ? parentry->inode : NULL;
177 entry = g_new (struct entry, 1);
179 entry->name = g_strdup (name);
180 entry->next_in_dir = NULL;
181 entry->dir = parentry;
182 if (parent != NULL)
184 parent->last_in_subdir->next_in_dir = entry;
185 parent->last_in_subdir = entry;
187 inode = g_new (struct inode, 1);
188 entry->inode = inode;
189 inode->local_filename = NULL;
190 inode->linkname = NULL;
191 inode->last_in_subdir = NULL;
192 inode->inode = (archive->inode_counter)++;
193 inode->dev = archive->rdev;
194 inode->archive = archive;
195 myumask = umask (022);
196 umask (myumask);
197 inode->mode = mode & ~myumask;
198 mode = inode->mode;
199 inode->rdev = 0;
200 inode->uid = getuid ();
201 inode->gid = getgid ();
202 inode->size = 0;
203 inode->mtime = time (NULL);
204 inode->atime = inode->mtime;
205 inode->ctime = inode->mtime;
206 inode->nlink = 1;
207 if (S_ISDIR (mode))
208 extfs_make_dots (entry);
209 return entry;
212 static struct entry *
213 extfs_find_entry_int (struct entry *dir, char *name, GSList * list,
214 gboolean make_dirs, gboolean make_file)
216 struct entry *pent, *pdir;
217 char *p, *q, *name_end;
218 char c = PATH_SEP;
220 if (g_path_is_absolute (name))
222 /* Handle absolute paths */
223 name = (char *) g_path_skip_root (name);
224 dir = dir->inode->archive->root_entry;
227 pent = dir;
228 p = name;
229 name_end = name + strlen (name);
231 q = strchr (p, PATH_SEP);
232 if (q == '\0')
233 q = strchr (p, '\0');
235 while ((pent != NULL) && (c != '\0') && (*p != '\0'))
237 c = *q;
238 *q = '\0';
240 if (strcmp (p, ".") != 0)
242 if (strcmp (p, "..") == 0)
243 pent = pent->dir;
244 else
246 pent = extfs_resolve_symlinks_int (pent, list);
247 if (pent == NULL)
249 *q = c;
250 return NULL;
252 if (!S_ISDIR (pent->inode->mode))
254 *q = c;
255 notadir = TRUE;
256 return NULL;
259 pdir = pent;
260 for (pent = pent->inode->first_in_subdir; pent != NULL; pent = pent->next_in_dir)
261 /* Hack: I keep the original semanthic unless
262 q+1 would break in the strchr */
263 if (strcmp (pent->name, p) == 0)
265 if (q + 1 > name_end)
267 *q = c;
268 notadir = !S_ISDIR (pent->inode->mode);
269 return pent;
271 break;
274 /* When we load archive, we create automagically
275 * non-existant directories
277 if (pent == NULL && make_dirs)
278 pent = extfs_generate_entry (dir->inode->archive, p, pdir, S_IFDIR | 0777);
279 if (pent == NULL && make_file)
280 pent = extfs_generate_entry (dir->inode->archive, p, pdir, S_IFREG | 0666);
283 /* Next iteration */
284 *q = c;
285 p = q + 1;
286 q = strchr (p, PATH_SEP);
287 if (q == '\0')
288 q = strchr (p, '\0');
290 if (pent == NULL)
291 my_errno = ENOENT;
292 return pent;
295 static struct entry *
296 extfs_find_entry (struct entry *dir, char *name, gboolean make_dirs, gboolean make_file)
298 struct entry *res;
300 errloop = FALSE;
301 notadir = FALSE;
303 res = extfs_find_entry_int (dir, name, NULL, make_dirs, make_file);
304 if (res == NULL)
306 if (errloop)
307 my_errno = ELOOP;
308 else if (notadir)
309 my_errno = ENOTDIR;
311 return res;
314 static void
315 extfs_fill_names (struct vfs_class *me, fill_names_f func)
317 struct archive *a = first_archive;
319 (void) me;
321 while (a != NULL)
323 extfs_plugin_info_t *info;
324 char *name;
326 info = &g_array_index (extfs_plugins, extfs_plugin_info_t, a->fstype);
327 name = g_strconcat (a->name ? a->name : "", "#", info->prefix, (char *) NULL);
328 func (name);
329 g_free (name);
330 a = a->next;
334 static void
335 extfs_free_archive (struct archive *archive)
337 extfs_free_entry (archive->root_entry);
338 if (archive->local_name != NULL)
340 struct stat my;
342 mc_stat (archive->local_name, &my);
343 mc_ungetlocalcopy (archive->name, archive->local_name,
344 archive->local_stat.st_mtime != my.st_mtime);
345 g_free (archive->local_name);
347 g_free (archive->name);
348 g_free (archive);
351 static FILE *
352 extfs_open_archive (int fstype, const char *name, struct archive **pparc)
354 const extfs_plugin_info_t *info;
355 static dev_t archive_counter = 0;
356 FILE *result;
357 mode_t mode;
358 char *cmd;
359 struct stat mystat;
360 struct archive *current_archive;
361 struct entry *root_entry;
362 char *local_name = NULL, *tmp = NULL;
364 info = &g_array_index (extfs_plugins, extfs_plugin_info_t, fstype);
366 if (info->need_archive)
368 if (mc_stat (name, &mystat) == -1)
369 return NULL;
371 if (!vfs_file_is_local (name))
373 local_name = mc_getlocalcopy (name);
374 if (local_name == NULL)
375 return NULL;
378 tmp = name_quote (name, 0);
381 cmd = g_strconcat (info->path, info->prefix, " list ",
382 local_name != NULL ? local_name : tmp, (char *) NULL);
383 g_free (tmp);
385 open_error_pipe ();
386 result = popen (cmd, "r");
387 g_free (cmd);
388 if (result == NULL)
390 close_error_pipe (D_ERROR, NULL);
391 if (local_name != NULL)
393 mc_ungetlocalcopy (name, local_name, 0);
394 g_free (local_name);
396 return NULL;
399 #ifdef ___QNXNTO__
400 setvbuf (result, NULL, _IONBF, 0);
401 #endif
403 current_archive = g_new (struct archive, 1);
404 current_archive->fstype = fstype;
405 current_archive->name = name ? g_strdup (name) : NULL;
406 current_archive->local_name = local_name;
408 if (local_name != NULL)
409 mc_stat (local_name, &current_archive->local_stat);
410 current_archive->inode_counter = 0;
411 current_archive->fd_usage = 0;
412 current_archive->rdev = archive_counter++;
413 current_archive->next = first_archive;
414 first_archive = current_archive;
415 mode = mystat.st_mode & 07777;
416 if (mode & 0400)
417 mode |= 0100;
418 if (mode & 0040)
419 mode |= 0010;
420 if (mode & 0004)
421 mode |= 0001;
422 mode |= S_IFDIR;
423 root_entry = extfs_generate_entry (current_archive, PATH_SEP_STR, NULL, mode);
424 root_entry->inode->uid = mystat.st_uid;
425 root_entry->inode->gid = mystat.st_gid;
426 root_entry->inode->atime = mystat.st_atime;
427 root_entry->inode->ctime = mystat.st_ctime;
428 root_entry->inode->mtime = mystat.st_mtime;
429 current_archive->root_entry = root_entry;
431 *pparc = current_archive;
433 return result;
437 * Main loop for reading an archive.
438 * Return 0 on success, -1 on error.
440 static int
441 extfs_read_archive (int fstype, const char *name, struct archive **pparc)
443 FILE *extfsd;
444 const extfs_plugin_info_t *info;
445 char *buffer;
446 struct archive *current_archive;
447 char *current_file_name, *current_link_name;
449 info = &g_array_index (extfs_plugins, extfs_plugin_info_t, fstype);
451 extfsd = extfs_open_archive (fstype, name, &current_archive);
453 if (extfsd == NULL)
455 message (D_ERROR, MSG_ERROR, _("Cannot open %s archive\n%s"), info->prefix, name);
456 return -1;
459 buffer = g_malloc (BUF_4K);
460 while (fgets (buffer, BUF_4K, extfsd) != NULL)
462 struct stat hstat;
464 current_link_name = NULL;
465 if (vfs_parse_ls_lga (buffer, &hstat, &current_file_name, &current_link_name))
467 struct entry *entry, *pent;
468 struct inode *inode;
469 char *p, *q, *cfn = current_file_name;
471 if (*cfn != '\0')
473 if (*cfn == PATH_SEP)
474 cfn++;
475 p = strchr (cfn, '\0');
476 if (p != cfn && *(p - 1) == PATH_SEP)
477 *(p - 1) = '\0';
478 p = strrchr (cfn, PATH_SEP);
479 if (p == NULL)
481 p = cfn;
482 q = strchr (cfn, '\0');
484 else
486 *(p++) = '\0';
487 q = cfn;
489 if (S_ISDIR (hstat.st_mode) && (strcmp (p, ".") == 0 || strcmp (p, "..") == 0))
490 goto read_extfs_continue;
491 pent = extfs_find_entry (current_archive->root_entry, q, TRUE, FALSE);
492 if (pent == NULL)
494 /* FIXME: Should clean everything one day */
495 g_free (buffer);
496 pclose (extfsd);
497 close_error_pipe (D_ERROR, _("Inconsistent extfs archive"));
498 return -1;
500 entry = g_new (struct entry, 1);
501 entry->name = g_strdup (p);
502 entry->next_in_dir = NULL;
503 entry->dir = pent;
504 if (pent->inode->last_in_subdir)
506 pent->inode->last_in_subdir->next_in_dir = entry;
507 pent->inode->last_in_subdir = entry;
509 if (!S_ISLNK (hstat.st_mode) && (current_link_name != NULL))
511 pent = extfs_find_entry (current_archive->root_entry,
512 current_link_name, FALSE, FALSE);
513 if (pent == NULL)
515 /* FIXME: Should clean everything one day */
516 g_free (buffer);
517 pclose (extfsd);
518 close_error_pipe (D_ERROR, _("Inconsistent extfs archive"));
519 return -1;
522 entry->inode = pent->inode;
523 pent->inode->nlink++;
525 else
527 inode = g_new (struct inode, 1);
528 entry->inode = inode;
529 inode->local_filename = NULL;
530 inode->inode = (current_archive->inode_counter)++;
531 inode->nlink = 1;
532 inode->dev = current_archive->rdev;
533 inode->archive = current_archive;
534 inode->mode = hstat.st_mode;
535 #ifdef HAVE_STRUCT_STAT_ST_RDEV
536 inode->rdev = hstat.st_rdev;
537 #else
538 inode->rdev = 0;
539 #endif
540 inode->uid = hstat.st_uid;
541 inode->gid = hstat.st_gid;
542 inode->size = hstat.st_size;
543 inode->mtime = hstat.st_mtime;
544 inode->atime = hstat.st_atime;
545 inode->ctime = hstat.st_ctime;
546 inode->first_in_subdir = NULL;
547 inode->last_in_subdir = NULL;
548 if (current_link_name != NULL && S_ISLNK (hstat.st_mode))
550 inode->linkname = current_link_name;
551 current_link_name = NULL;
553 else
555 if (S_ISLNK (hstat.st_mode))
556 inode->mode &= ~S_IFLNK; /* You *DON'T* want to do this always */
557 inode->linkname = NULL;
559 if (S_ISDIR (hstat.st_mode))
560 extfs_make_dots (entry);
563 read_extfs_continue:
564 g_free (current_file_name);
565 g_free (current_link_name);
568 g_free (buffer);
570 /* Check if extfs 'list' returned 0 */
571 if (pclose (extfsd) != 0)
573 extfs_free (current_archive);
574 close_error_pipe (D_ERROR, _("Inconsistent extfs archive"));
575 return -1;
578 close_error_pipe (D_ERROR, NULL);
579 *pparc = current_archive;
580 return 0;
583 static int
584 extfs_which (struct vfs_class *me, const char *path)
586 size_t path_len;
587 size_t i;
589 (void) me;
591 path_len = strlen (path);
593 for (i = 0; i < extfs_plugins->len; i++)
595 extfs_plugin_info_t *info;
597 info = &g_array_index (extfs_plugins, extfs_plugin_info_t, i);
599 if ((strncmp (path, info->prefix, path_len) == 0)
600 && ((info->prefix[path_len] == '\0') || (info->prefix[path_len] == '+')))
601 return i;
603 return -1;
607 * Dissect the path and create corresponding superblock. Note that inname
608 * can be changed and the result may point inside the original string.
610 static char *
611 extfs_get_path_mangle (struct vfs_class *me, char *inname, struct archive **archive,
612 gboolean do_not_open)
614 char *local, *op;
615 const char *archive_name;
616 int result = -1;
617 struct archive *parc;
618 int fstype;
620 archive_name = inname;
621 vfs_split (inname, &local, &op);
623 fstype = extfs_which (me, op);
625 if (fstype == -1)
626 return NULL;
627 if (local == NULL)
628 local = inname + strlen (inname);
631 * All filesystems should have some local archive, at least
632 * it can be PATH_SEP ('/').
634 for (parc = first_archive; parc != NULL; parc = parc->next)
635 if (parc->name != NULL)
637 if (strcmp (parc->name, archive_name) == 0)
639 vfs_stamp (&vfs_extfs_ops, (vfsid) parc);
640 goto return_success;
644 result = do_not_open ? -1 : extfs_read_archive (fstype, archive_name, &parc);
645 if (result == -1)
646 ERRNOR (EIO, NULL);
648 return_success:
649 *archive = parc;
650 return local;
654 * Dissect the path and create corresponding superblock.
655 * The result should be freed.
657 static char *
658 extfs_get_path (struct vfs_class *me, const char *inname,
659 struct archive **archive, gboolean do_not_open)
661 char *buf, *res, *res2;
663 buf = g_strdup (inname);
664 res = extfs_get_path_mangle (me, buf, archive, do_not_open);
665 res2 = g_strdup (res);
666 g_free (buf);
667 return res2;
670 /* Return allocated path (without leading slash) inside the archive */
671 static char *
672 extfs_get_path_from_entry (struct entry *entry)
674 GString *localpath;
676 localpath = g_string_new ("");
678 while (entry->dir != NULL)
680 g_string_prepend (localpath, entry->name);
681 if (entry->dir->dir != NULL)
682 g_string_prepend_c (localpath, PATH_SEP);
683 entry = entry->dir;
686 return g_string_free (localpath, FALSE);
689 static struct entry *
690 extfs_resolve_symlinks_int (struct entry *entry, GSList * list)
692 struct entry *pent = NULL;
694 if (!S_ISLNK (entry->inode->mode))
695 return entry;
697 if (g_slist_find (list, entry) != NULL)
699 /* Here we protect us against symlink looping */
700 errloop = TRUE;
702 else
704 GSList *looping;
706 looping = g_slist_prepend (list, entry);
707 pent = extfs_find_entry_int (entry->dir, entry->inode->linkname, looping, FALSE, FALSE);
708 looping = g_slist_delete_link (looping, looping);
710 if (pent == NULL)
711 my_errno = ENOENT;
714 return pent;
717 static struct entry *
718 extfs_resolve_symlinks (struct entry *entry)
720 struct entry *res;
722 errloop = FALSE;
723 notadir = FALSE;
724 res = extfs_resolve_symlinks_int (entry, NULL);
725 if (res == NULL)
727 if (errloop)
728 my_errno = ELOOP;
729 else if (notadir)
730 my_errno = ENOTDIR;
732 return res;
735 static const char *
736 extfs_get_archive_name (struct archive *archive)
738 const char *archive_name;
740 if (archive->local_name)
741 archive_name = archive->local_name;
742 else
743 archive_name = archive->name;
745 if (!archive_name || !*archive_name)
746 return "no_archive_name";
747 else
748 return archive_name;
751 /* Don't pass localname as NULL */
752 static int
753 extfs_cmd (const char *str_extfs_cmd, struct archive *archive,
754 struct entry *entry, const char *localname)
756 char *file;
757 char *quoted_file;
758 char *quoted_localname;
759 char *archive_name;
760 const extfs_plugin_info_t *info;
761 char *cmd;
762 int retval;
764 file = extfs_get_path_from_entry (entry);
765 quoted_file = name_quote (file, 0);
766 g_free (file);
768 archive_name = name_quote (extfs_get_archive_name (archive), 0);
769 quoted_localname = name_quote (localname, 0);
770 info = &g_array_index (extfs_plugins, extfs_plugin_info_t, archive->fstype);
771 cmd = g_strconcat (info->path, info->prefix, str_extfs_cmd,
772 archive_name, " ", quoted_file, " ", quoted_localname, (char *) NULL);
773 g_free (quoted_file);
774 g_free (quoted_localname);
775 g_free (archive_name);
777 open_error_pipe ();
778 retval = my_system (EXECUTE_AS_SHELL, shell, cmd);
779 g_free (cmd);
780 close_error_pipe (D_ERROR, NULL);
781 return retval;
784 static void
785 extfs_run (struct vfs_class *me, const char *file)
787 struct archive *archive = NULL;
788 char *p, *q, *archive_name;
789 char *cmd;
790 const extfs_plugin_info_t *info;
792 p = extfs_get_path (me, file, &archive, FALSE);
793 if (p == NULL)
794 return;
795 q = name_quote (p, 0);
796 g_free (p);
798 archive_name = name_quote (extfs_get_archive_name (archive), 0);
799 info = &g_array_index (extfs_plugins, extfs_plugin_info_t, archive->fstype);
800 cmd = g_strconcat (info->path, info->prefix, " run ", archive_name, " ", q, (char *) NULL);
801 g_free (archive_name);
802 g_free (q);
803 shell_execute (cmd, 0);
804 g_free (cmd);
807 static void *
808 extfs_open (struct vfs_class *me, const char *file, int flags, int mode)
810 struct pseudofile *extfs_info;
811 struct archive *archive = NULL;
812 char *q;
813 struct entry *entry;
814 int local_handle;
815 gboolean created = FALSE;
817 q = extfs_get_path (me, file, &archive, FALSE);
818 if (q == NULL)
819 return NULL;
820 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
821 if ((entry == NULL) && ((flags & O_CREAT) != 0))
823 /* Create new entry */
824 entry = extfs_find_entry (archive->root_entry, q, FALSE, TRUE);
825 created = (entry != NULL);
828 g_free (q);
829 if (entry == NULL)
830 return NULL;
831 entry = extfs_resolve_symlinks (entry);
832 if (entry == NULL)
833 return NULL;
835 if (S_ISDIR (entry->inode->mode))
836 ERRNOR (EISDIR, NULL);
838 if (entry->inode->local_filename == NULL)
840 char *local_filename;
842 local_handle = vfs_mkstemps (&local_filename, "extfs", entry->name);
844 if (local_handle == -1)
845 return NULL;
846 close (local_handle);
848 if (!created && ((flags & O_TRUNC) == 0)
849 && extfs_cmd (" copyout ", archive, entry, local_filename))
851 unlink (local_filename);
852 g_free (local_filename);
853 my_errno = EIO;
854 return NULL;
856 entry->inode->local_filename = local_filename;
859 local_handle = open (entry->inode->local_filename, NO_LINEAR (flags), mode);
861 if (local_handle == -1)
863 /* file exists(may be). Need to drop O_CREAT flag and truncate file content */
864 flags = ~O_CREAT & (NO_LINEAR (flags) | O_TRUNC);
865 local_handle = open (entry->inode->local_filename, flags, mode);
868 if (local_handle == -1)
869 ERRNOR (EIO, NULL);
871 extfs_info = g_new (struct pseudofile, 1);
872 extfs_info->archive = archive;
873 extfs_info->entry = entry;
874 extfs_info->has_changed = created;
875 extfs_info->local_handle = local_handle;
877 /* i.e. we had no open files and now we have one */
878 vfs_rmstamp (&vfs_extfs_ops, (vfsid) archive);
879 archive->fd_usage++;
880 return extfs_info;
883 static ssize_t
884 extfs_read (void *data, char *buffer, int count)
886 struct pseudofile *file = (struct pseudofile *) data;
888 return read (file->local_handle, buffer, count);
891 static int
892 extfs_close (void *data)
894 struct pseudofile *file;
895 int errno_code = 0;
896 file = (struct pseudofile *) data;
898 close (file->local_handle);
900 /* Commit the file if it has changed */
901 if (file->has_changed)
903 struct stat file_status;
905 if (extfs_cmd (" copyin ", file->archive, file->entry, file->entry->inode->local_filename))
906 errno_code = EIO;
908 if (stat (file->entry->inode->local_filename, &file_status) != 0)
909 errno_code = EIO;
910 else
911 file->entry->inode->size = file_status.st_size;
913 file->entry->inode->mtime = time (NULL);
916 if (--file->archive->fd_usage == 0)
917 vfs_stamp_create (&vfs_extfs_ops, file->archive);
919 g_free (data);
920 if (errno_code != 0)
921 ERRNOR (EIO, -1);
922 return 0;
925 static int
926 extfs_errno (struct vfs_class *me)
928 (void) me;
929 return my_errno;
932 static void *
933 extfs_opendir (struct vfs_class *me, const char *dirname)
935 struct archive *archive = NULL;
936 char *q;
937 struct entry *entry;
938 struct entry **info;
940 q = extfs_get_path (me, dirname, &archive, FALSE);
941 if (q == NULL)
942 return NULL;
943 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
944 g_free (q);
945 if (entry == NULL)
946 return NULL;
947 entry = extfs_resolve_symlinks (entry);
948 if (entry == NULL)
949 return NULL;
950 if (!S_ISDIR (entry->inode->mode))
951 ERRNOR (ENOTDIR, NULL);
953 info = g_new (struct entry *, 2);
954 info[0] = entry->inode->first_in_subdir;
955 info[1] = entry->inode->first_in_subdir;
957 return info;
960 static void *
961 extfs_readdir (void *data)
963 static union vfs_dirent dir;
964 struct entry **info = (struct entry **) data;
966 if (*info == NULL)
967 return NULL;
969 g_strlcpy (dir.dent.d_name, (*info)->name, MC_MAXPATHLEN);
971 compute_namelen (&dir.dent);
972 *info = (*info)->next_in_dir;
974 return (void *) &dir;
977 static int
978 extfs_closedir (void *data)
980 g_free (data);
981 return 0;
984 #define RECORDSIZE 512
986 static void
987 extfs_stat_move (struct stat *buf, const struct inode *inode)
989 buf->st_dev = inode->dev;
990 buf->st_ino = inode->inode;
991 buf->st_mode = inode->mode;
992 buf->st_nlink = inode->nlink;
993 buf->st_uid = inode->uid;
994 buf->st_gid = inode->gid;
995 #ifdef HAVE_STRUCT_STAT_ST_RDEV
996 buf->st_rdev = inode->rdev;
997 #endif
998 buf->st_size = inode->size;
999 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1000 buf->st_blksize = RECORDSIZE;
1001 #endif
1002 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
1003 buf->st_blocks = (inode->size + RECORDSIZE - 1) / RECORDSIZE;
1004 #endif
1005 buf->st_atime = inode->atime;
1006 buf->st_mtime = inode->mtime;
1007 buf->st_ctime = inode->ctime;
1010 static int
1011 extfs_internal_stat (struct vfs_class *me, const char *path, struct stat *buf, gboolean resolve)
1013 struct archive *archive;
1014 char *q, *mpath;
1015 struct entry *entry;
1016 int result = -1;
1018 mpath = g_strdup (path);
1020 q = extfs_get_path_mangle (me, mpath, &archive, FALSE);
1021 if (q == NULL)
1022 goto cleanup;
1023 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
1024 if (entry == NULL)
1025 goto cleanup;
1026 if (resolve)
1028 entry = extfs_resolve_symlinks (entry);
1029 if (entry == NULL)
1030 goto cleanup;
1032 extfs_stat_move (buf, entry->inode);
1033 result = 0;
1034 cleanup:
1035 g_free (mpath);
1036 return result;
1039 static int
1040 extfs_stat (struct vfs_class *me, const char *path, struct stat *buf)
1042 return extfs_internal_stat (me, path, buf, TRUE);
1045 static int
1046 extfs_lstat (struct vfs_class *me, const char *path, struct stat *buf)
1048 return extfs_internal_stat (me, path, buf, FALSE);
1051 static int
1052 extfs_fstat (void *data, struct stat *buf)
1054 struct pseudofile *file = (struct pseudofile *) data;
1056 extfs_stat_move (buf, file->entry->inode);
1057 return 0;
1060 static int
1061 extfs_readlink (struct vfs_class *me, const char *path, char *buf, size_t size)
1063 struct archive *archive;
1064 char *q, *mpath;
1065 size_t len;
1066 struct entry *entry;
1067 int result = -1;
1069 mpath = g_strdup (path);
1071 q = extfs_get_path_mangle (me, mpath, &archive, FALSE);
1072 if (q == NULL)
1073 goto cleanup;
1074 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
1075 if (entry == NULL)
1076 goto cleanup;
1077 if (!S_ISLNK (entry->inode->mode))
1079 me->verrno = EINVAL;
1080 goto cleanup;
1082 len = strlen (entry->inode->linkname);
1083 if (size < len)
1084 len = size;
1085 /* readlink() does not append a NUL character to buf */
1086 result = len;
1087 memcpy (buf, entry->inode->linkname, result);
1088 cleanup:
1089 g_free (mpath);
1090 return result;
1093 static int
1094 extfs_chown (struct vfs_class *me, const char *path, int owner, int group)
1096 (void) me;
1097 (void) path;
1098 (void) owner;
1099 (void) group;
1100 return 0;
1103 static int
1104 extfs_chmod (struct vfs_class *me, const char *path, int mode)
1106 (void) me;
1107 (void) path;
1108 (void) mode;
1109 return 0;
1112 static ssize_t
1113 extfs_write (void *data, const char *buf, int nbyte)
1115 struct pseudofile *file = (struct pseudofile *) data;
1117 file->has_changed = TRUE;
1118 return write (file->local_handle, buf, nbyte);
1121 static int
1122 extfs_unlink (struct vfs_class *me, const char *file)
1124 struct archive *archive;
1125 char *q, *mpath;
1126 struct entry *entry;
1127 int result = -1;
1129 mpath = g_strdup (file);
1131 q = extfs_get_path_mangle (me, mpath, &archive, FALSE);
1132 if (q == NULL)
1133 goto cleanup;
1134 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
1135 if (entry == NULL)
1136 goto cleanup;
1137 entry = extfs_resolve_symlinks (entry);
1138 if (entry == NULL)
1139 goto cleanup;
1140 if (S_ISDIR (entry->inode->mode))
1142 me->verrno = EISDIR;
1143 goto cleanup;
1145 if (extfs_cmd (" rm ", archive, entry, ""))
1147 my_errno = EIO;
1148 goto cleanup;
1150 extfs_remove_entry (entry);
1151 result = 0;
1152 cleanup:
1153 g_free (mpath);
1154 return result;
1157 static int
1158 extfs_mkdir (struct vfs_class *me, const char *path, mode_t mode)
1160 struct archive *archive;
1161 char *q, *mpath;
1162 struct entry *entry;
1163 int result = -1;
1165 (void) mode;
1167 mpath = g_strdup (path);
1169 q = extfs_get_path_mangle (me, mpath, &archive, FALSE);
1170 if (q == NULL)
1171 goto cleanup;
1172 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
1173 if (entry != NULL)
1175 me->verrno = EEXIST;
1176 goto cleanup;
1178 entry = extfs_find_entry (archive->root_entry, q, TRUE, FALSE);
1179 if (entry == NULL)
1180 goto cleanup;
1181 entry = extfs_resolve_symlinks (entry);
1182 if (entry == NULL)
1183 goto cleanup;
1184 if (!S_ISDIR (entry->inode->mode))
1186 me->verrno = ENOTDIR;
1187 goto cleanup;
1190 if (extfs_cmd (" mkdir ", archive, entry, ""))
1192 my_errno = EIO;
1193 extfs_remove_entry (entry);
1194 goto cleanup;
1196 result = 0;
1197 cleanup:
1198 g_free (mpath);
1199 return result;
1202 static int
1203 extfs_rmdir (struct vfs_class *me, const char *path)
1205 struct archive *archive;
1206 char *q, *mpath;
1207 struct entry *entry;
1208 int result = -1;
1210 mpath = g_strdup (path);
1212 q = extfs_get_path_mangle (me, mpath, &archive, FALSE);
1213 if (q == NULL)
1214 goto cleanup;
1215 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
1216 if (entry == NULL)
1217 goto cleanup;
1218 entry = extfs_resolve_symlinks (entry);
1219 if (entry == NULL)
1220 goto cleanup;
1221 if (!S_ISDIR (entry->inode->mode))
1223 me->verrno = ENOTDIR;
1224 goto cleanup;
1227 if (extfs_cmd (" rmdir ", archive, entry, ""))
1229 my_errno = EIO;
1230 goto cleanup;
1232 extfs_remove_entry (entry);
1233 result = 0;
1234 cleanup:
1235 g_free (mpath);
1236 return result;
1239 static int
1240 extfs_chdir (struct vfs_class *me, const char *path)
1242 struct archive *archive = NULL;
1243 char *q;
1244 struct entry *entry;
1246 my_errno = ENOTDIR;
1247 q = extfs_get_path (me, path, &archive, FALSE);
1248 if (q == NULL)
1249 return -1;
1250 entry = extfs_find_entry (archive->root_entry, q, FALSE, FALSE);
1251 g_free (q);
1252 if (entry == NULL)
1253 return -1;
1254 entry = extfs_resolve_symlinks (entry);
1255 if ((entry == NULL) || (!S_ISDIR (entry->inode->mode)))
1256 return -1;
1257 my_errno = 0;
1258 return 0;
1261 static off_t
1262 extfs_lseek (void *data, off_t offset, int whence)
1264 struct pseudofile *file = (struct pseudofile *) data;
1266 return lseek (file->local_handle, offset, whence);
1269 static vfsid
1270 extfs_getid (struct vfs_class *me, const char *path)
1272 struct archive *archive = NULL;
1273 char *p;
1275 p = extfs_get_path (me, path, &archive, TRUE);
1276 if (p == NULL)
1277 return NULL;
1278 g_free (p);
1279 return (vfsid) archive;
1282 static int
1283 extfs_nothingisopen (vfsid id)
1285 return (((struct archive *) id)->fd_usage <= 0);
1288 static void
1289 extfs_remove_entry (struct entry *e)
1291 int i = --e->inode->nlink;
1292 struct entry *pe, *ent, *prev;
1294 if (S_ISDIR (e->inode->mode) && e->inode->first_in_subdir != NULL)
1296 struct entry *f = e->inode->first_in_subdir;
1297 e->inode->first_in_subdir = NULL;
1298 extfs_remove_entry (f);
1300 pe = e->dir;
1301 if (e == pe->inode->first_in_subdir)
1302 pe->inode->first_in_subdir = e->next_in_dir;
1304 prev = NULL;
1305 for (ent = pe->inode->first_in_subdir; ent && ent->next_in_dir; ent = ent->next_in_dir)
1306 if (e == ent->next_in_dir)
1308 prev = ent;
1309 break;
1311 if (prev)
1312 prev->next_in_dir = e->next_in_dir;
1313 if (e == pe->inode->last_in_subdir)
1314 pe->inode->last_in_subdir = prev;
1316 if (i <= 0)
1318 if (e->inode->local_filename != NULL)
1320 unlink (e->inode->local_filename);
1321 g_free (e->inode->local_filename);
1323 g_free (e->inode->linkname);
1324 g_free (e->inode);
1327 g_free (e->name);
1328 g_free (e);
1331 static void
1332 extfs_free_entry (struct entry *e)
1334 int i = --e->inode->nlink;
1336 if (S_ISDIR (e->inode->mode) && e->inode->first_in_subdir != NULL)
1338 struct entry *f = e->inode->first_in_subdir;
1340 e->inode->first_in_subdir = NULL;
1341 extfs_free_entry (f);
1343 if (i <= 0)
1345 if (e->inode->local_filename != NULL)
1347 unlink (e->inode->local_filename);
1348 g_free (e->inode->local_filename);
1350 g_free (e->inode->linkname);
1351 g_free (e->inode);
1353 if (e->next_in_dir != NULL)
1354 extfs_free_entry (e->next_in_dir);
1355 g_free (e->name);
1356 g_free (e);
1359 static void
1360 extfs_free (vfsid id)
1362 struct archive *archive = (struct archive *) id;
1364 if (archive == first_archive)
1366 first_archive = archive->next;
1368 else
1370 struct archive *parc;
1371 for (parc = first_archive; parc != NULL; parc = parc->next)
1372 if (parc->next == archive)
1374 parc->next = archive->next;
1375 break;
1378 extfs_free_archive (archive);
1381 static char *
1382 extfs_getlocalcopy (struct vfs_class *me, const char *path)
1384 struct pseudofile *fp;
1385 char *p;
1387 fp = (struct pseudofile *) extfs_open (me, path, O_RDONLY, 0);
1388 if (fp == NULL)
1389 return NULL;
1390 if (fp->entry->inode->local_filename == NULL)
1392 extfs_close ((void *) fp);
1393 return NULL;
1395 p = g_strdup (fp->entry->inode->local_filename);
1396 fp->archive->fd_usage++;
1397 extfs_close ((void *) fp);
1398 return p;
1401 static int
1402 extfs_ungetlocalcopy (struct vfs_class *me, const char *path, const char *local, int has_changed)
1404 struct pseudofile *fp;
1406 fp = (struct pseudofile *) extfs_open (me, path, O_RDONLY, 0);
1407 if (fp == NULL)
1408 return 0;
1410 if (strcmp (fp->entry->inode->local_filename, local) == 0)
1412 fp->archive->fd_usage--;
1413 if (has_changed != 0)
1414 fp->has_changed = TRUE;
1415 extfs_close ((void *) fp);
1416 return 0;
1418 else
1420 /* Should not happen */
1421 extfs_close ((void *) fp);
1422 return 0;
1426 static gboolean
1427 extfs_get_plugins (const char *where, gboolean silent)
1429 char *dirname;
1430 GDir *dir;
1431 const char *filename;
1433 dirname = g_build_path (PATH_SEP_STR, where, MC_EXTFS_DIR, (char *) NULL);
1434 dir = g_dir_open (dirname, 0, NULL);
1436 /* We may not use vfs_die() message or message or similar,
1437 * UI is not initialized at this time and message would not
1438 * appear on screen. */
1439 if (dir == NULL)
1441 if (!silent)
1442 fprintf (stderr, _("Warning: cannot open %s directory\n"), dirname);
1443 g_free (dirname);
1444 return FALSE;
1447 if (extfs_plugins == NULL)
1448 extfs_plugins = g_array_sized_new (FALSE, TRUE, sizeof (extfs_plugin_info_t), 32);
1450 while ((filename = g_dir_read_name (dir)) != NULL)
1452 char fullname[MC_MAXPATHLEN];
1453 struct stat s;
1455 g_snprintf (fullname, sizeof (fullname), "%s" PATH_SEP_STR "%s", dirname, filename);
1457 if ((stat (fullname, &s) == 0)
1458 && S_ISREG (s.st_mode) && !S_ISDIR (s.st_mode)
1459 && (((s.st_mode & S_IXOTH) != 0) ||
1460 ((s.st_mode & S_IXUSR) != 0) || ((s.st_mode & S_IXGRP) != 0)))
1462 int f;
1464 f = open (fullname, O_RDONLY);
1466 if (f > 0)
1468 size_t len, i;
1469 extfs_plugin_info_t info;
1470 gboolean found = FALSE;
1472 close (f);
1474 /* Handle those with a trailing '+', those flag that the
1475 * file system does not require an archive to work
1477 len = strlen (filename);
1478 info.need_archive = (filename[len - 1] != '+');
1479 info.path = g_strconcat (dirname, PATH_SEP_STR, (char *) NULL);
1480 info.prefix = g_strdup (filename);
1482 /* prepare to compare file names without trailing '+' */
1483 if (!info.need_archive)
1484 info.prefix[len - 1] = '\0';
1486 /* don't overload already found plugin */
1487 for (i = 0; i < extfs_plugins->len; i++)
1489 extfs_plugin_info_t *p;
1491 p = &g_array_index (extfs_plugins, extfs_plugin_info_t, i);
1493 /* 2 files with same names cannot be in a directory */
1494 if ((strcmp (info.path, p->path) != 0)
1495 && (strcmp (info.prefix, p->prefix) == 0))
1497 found = TRUE;
1498 break;
1502 if (found)
1504 g_free (info.path);
1505 g_free (info.prefix);
1507 else
1509 /* restore file name */
1510 if (!info.need_archive)
1511 info.prefix[len - 1] = '+';
1512 g_array_append_val (extfs_plugins, info);
1518 g_dir_close (dir);
1519 g_free (dirname);
1521 return TRUE;
1525 static int
1526 extfs_init (struct vfs_class *me)
1528 gboolean d1, d2;
1529 char *dirname;
1531 (void) me;
1533 /* 1st: scan user directory */
1534 dirname = g_build_path (PATH_SEP_STR, home_dir, MC_USERCONF_DIR, (char *) NULL);
1535 d1 = extfs_get_plugins (dirname, TRUE); /* silent about user dir */
1536 g_free (dirname);
1537 /* 2nd: scan system dir */
1538 d2 = extfs_get_plugins (LIBEXECDIR, d1);
1540 return (d1 || d2 ? 1 : 0);
1543 static void
1544 extfs_done (struct vfs_class *me)
1546 size_t i;
1547 struct archive *ar;
1549 (void) me;
1551 for (ar = first_archive; ar != NULL;)
1553 extfs_free ((vfsid) ar);
1554 ar = first_archive;
1557 for (i = 0; i < extfs_plugins->len; i++)
1559 extfs_plugin_info_t *info;
1561 info = &g_array_index (extfs_plugins, extfs_plugin_info_t, i);
1562 g_free (info->path);
1563 g_free (info->prefix);
1565 g_array_free (extfs_plugins, TRUE);
1568 static int
1569 extfs_setctl (struct vfs_class *me, const char *path, int ctlop, void *arg)
1571 (void) arg;
1573 if (ctlop == VFS_SETCTL_RUN)
1575 extfs_run (me, path);
1576 return 1;
1578 return 0;
1581 void
1582 init_extfs (void)
1584 vfs_extfs_ops.name = "extfs";
1585 vfs_extfs_ops.init = extfs_init;
1586 vfs_extfs_ops.done = extfs_done;
1587 vfs_extfs_ops.fill_names = extfs_fill_names;
1588 vfs_extfs_ops.which = extfs_which;
1589 vfs_extfs_ops.open = extfs_open;
1590 vfs_extfs_ops.close = extfs_close;
1591 vfs_extfs_ops.read = extfs_read;
1592 vfs_extfs_ops.write = extfs_write;
1593 vfs_extfs_ops.opendir = extfs_opendir;
1594 vfs_extfs_ops.readdir = extfs_readdir;
1595 vfs_extfs_ops.closedir = extfs_closedir;
1596 vfs_extfs_ops.stat = extfs_stat;
1597 vfs_extfs_ops.lstat = extfs_lstat;
1598 vfs_extfs_ops.fstat = extfs_fstat;
1599 vfs_extfs_ops.chmod = extfs_chmod;
1600 vfs_extfs_ops.chown = extfs_chown;
1601 vfs_extfs_ops.readlink = extfs_readlink;
1602 vfs_extfs_ops.unlink = extfs_unlink;
1603 vfs_extfs_ops.chdir = extfs_chdir;
1604 vfs_extfs_ops.ferrno = extfs_errno;
1605 vfs_extfs_ops.lseek = extfs_lseek;
1606 vfs_extfs_ops.getid = extfs_getid;
1607 vfs_extfs_ops.nothingisopen = extfs_nothingisopen;
1608 vfs_extfs_ops.free = extfs_free;
1609 vfs_extfs_ops.getlocalcopy = extfs_getlocalcopy;
1610 vfs_extfs_ops.ungetlocalcopy = extfs_ungetlocalcopy;
1611 vfs_extfs_ops.mkdir = extfs_mkdir;
1612 vfs_extfs_ops.rmdir = extfs_rmdir;
1613 vfs_extfs_ops.setctl = extfs_setctl;
1614 vfs_register_class (&vfs_extfs_ops);