1 #ifndef MC_VFS_XDIRENTRY_H
2 #define MC_VFS_XDIRENTRY_H
9 #define LINK_NO_FOLLOW -1
11 /* For vfs_s_find_entry */
20 /* For vfs_s_entry_from_path */
24 /* For vfs_s_subclass->flags */
25 #define VFS_S_REMOTE 1
26 #define VFS_S_READONLY 2
29 /* Single connection or archive */
31 struct vfs_s_super
**prevp
, *next
;
33 struct vfs_s_inode
*root
;
34 char *name
; /* My name, whatever it means */
35 int fd_usage
; /* Number of open files */
36 int ino_usage
; /* Usage count of this superblock */
37 int want_stale
; /* If set, we do not flush cache properly */
54 char *proxy
; /* proxy server, NULL if no proxy */
55 int failed_on_login
; /* used to pass the failure reason to upper levels */
56 int use_passive_connection
;
57 int remote_is_amiga
; /* No leading slash allowed for AmiTCP (Amiga) */
59 int cwd_deferred
; /* current_directory was changed but CWD command hasn't
61 int strict
; /* ftp server doesn't understand
62 "LIST -la <path>"; use "CWD <path>"/
64 int ctl_connection_busy
;
69 int type
; /* Type of the archive */
70 struct defer_inode
*deferred
; /* List of inodes for which another entries may appear */
76 * Single virtual file - directory entry. The same inode can have many
77 * entries (i.e. hard links), but usually has only one.
80 struct vfs_s_entry
**prevp
, *next
; /* Pointers in the entry list */
81 struct vfs_s_inode
*dir
; /* Directory we are in, i.e. our parent */
82 char *name
; /* Name of this entry */
83 struct vfs_s_inode
*ino
; /* ... and its inode */
86 /* Single virtual file - inode */
88 struct vfs_s_super
*super
; /* Archive the file is on */
89 struct vfs_s_entry
*ent
; /* Our entry in the parent directory -
90 use only for directories because they
91 cannot be hardlinked */
92 struct vfs_s_entry
*subdir
; /* If this is a directory, its entry */
93 struct stat st
; /* Parameters of this inode */
94 char *linkname
; /* Symlink's contents */
95 char *localname
; /* Filename of local file, if we have one */
96 struct timeval timestamp
; /* Subclass specific */
97 long data_offset
; /* Subclass specific */
100 /* Data associated with an open file */
102 struct vfs_s_inode
*ino
;
103 long pos
; /* This is for module's use */
104 int handle
; /* This is for module's use, but if != -1, will be mc_close()d */
105 int changed
; /* Did this file change? */
106 int linear
; /* Is that file open with O_LINEAR? */
119 * One of our subclasses (tar, cpio, fish, ftpfs) with data and methods.
120 * Extends vfs_class. Stored in the "data" field of vfs_class.
122 struct vfs_s_subclass
{
123 struct vfs_s_super
*supers
;
125 int flags
; /* whether the subclass is remove, read-only etc */
128 int flush
; /* if set to 1, invalidate directory cache */
130 int (*init_inode
) (struct vfs_class
*me
, struct vfs_s_inode
*ino
); /* optional */
131 void (*free_inode
) (struct vfs_class
*me
, struct vfs_s_inode
*ino
); /* optional */
132 int (*init_entry
) (struct vfs_class
*me
, struct vfs_s_entry
*entry
); /* optional */
134 void *(*archive_check
) (struct vfs_class
*me
, const char *name
, char *op
); /* optional */
135 int (*archive_same
) (struct vfs_class
*me
, struct vfs_s_super
*psup
,
136 const char *archive_name
, char *op
, void *cookie
);
137 int (*open_archive
) (struct vfs_class
*me
, struct vfs_s_super
*psup
,
138 const char *archive_name
, char *op
);
139 void (*free_archive
) (struct vfs_class
*me
,
140 struct vfs_s_super
*psup
);
142 int (*fh_open
) (struct vfs_class
*me
, struct vfs_s_fh
*fh
, int flags
,
144 int (*fh_close
) (struct vfs_class
*me
, struct vfs_s_fh
*fh
);
146 struct vfs_s_entry
*(*find_entry
) (struct vfs_class
*me
,
147 struct vfs_s_inode
*root
,
148 const char *path
, int follow
, int flags
);
149 int (*dir_load
) (struct vfs_class
*me
, struct vfs_s_inode
*ino
,
151 int (*dir_uptodate
) (struct vfs_class
*me
, struct vfs_s_inode
*ino
);
152 int (*file_store
) (struct vfs_class
*me
, struct vfs_s_fh
*fh
,
153 char *path
, char *localname
);
155 int (*linear_start
) (struct vfs_class
*me
, struct vfs_s_fh
*fh
,
157 int (*linear_read
) (struct vfs_class
*me
, struct vfs_s_fh
*fh
,
159 void (*linear_close
) (struct vfs_class
*me
, struct vfs_s_fh
*fh
);
163 /* entries and inodes */
164 struct vfs_s_inode
*vfs_s_new_inode (struct vfs_class
*me
,
165 struct vfs_s_super
*super
,
166 struct stat
*initstat
);
167 struct vfs_s_entry
*vfs_s_new_entry (struct vfs_class
*me
, const char *name
,
168 struct vfs_s_inode
*inode
);
169 void vfs_s_free_entry (struct vfs_class
*me
, struct vfs_s_entry
*ent
);
170 void vfs_s_insert_entry (struct vfs_class
*me
, struct vfs_s_inode
*dir
,
171 struct vfs_s_entry
*ent
);
172 struct stat
*vfs_s_default_stat (struct vfs_class
*me
, mode_t mode
);
174 struct vfs_s_entry
*vfs_s_generate_entry (struct vfs_class
*me
, const char *name
,
175 struct vfs_s_inode
*parent
,
177 struct vfs_s_inode
*vfs_s_find_inode (struct vfs_class
*me
,
178 const struct vfs_s_super
*super
,
179 const char *path
, int follow
, int flags
);
180 struct vfs_s_inode
*vfs_s_find_root (struct vfs_class
*me
,
181 struct vfs_s_entry
*entry
);
183 /* outside interface */
184 void vfs_s_init_class (struct vfs_class
*vclass
,
185 struct vfs_s_subclass
*sub
);
186 const char *vfs_s_get_path_mangle (struct vfs_class
*me
, char *inname
,
187 struct vfs_s_super
**archive
, int flags
);
188 void vfs_s_invalidate (struct vfs_class
*me
, struct vfs_s_super
*super
);
189 char *vfs_s_fullpath (struct vfs_class
*me
, struct vfs_s_inode
*ino
);
191 /* network filesystems support */
192 int vfs_s_select_on_two (int fd1
, int fd2
);
193 int vfs_s_get_line (struct vfs_class
*me
, int sock
, char *buf
, int buf_len
,
195 int vfs_s_get_line_interruptible (struct vfs_class
*me
, char *buffer
,
199 int vfs_s_retrieve_file (struct vfs_class
*me
, struct vfs_s_inode
*ino
);
201 #define ERRNOR(a, b) do { me->verrno = a; return b; } while (0)
203 #define MEDATA ((struct vfs_s_subclass *) me->data)
205 #define FH ((struct vfs_s_fh *) fh)
206 #define FH_SUPER FH->ino->super
208 #define LS_NOT_LINEAR 0
209 #define LS_LINEAR_CLOSED 1
210 #define LS_LINEAR_OPEN 2
211 #define LS_LINEAR_PREOPEN 3