1
2
3
4
5
6
7 #ifndef MC__VFS_VFS_H
8 #define MC__VFS_VFS_H
9
10 #include <sys/types.h>
11 #include <sys/stat.h>
12 #include <dirent.h>
13 #ifdef HAVE_UTIMENSAT
14 #include <sys/time.h>
15 #elif defined(HAVE_UTIME_H)
16 #include <utime.h>
17 #endif
18 #include <stdio.h>
19 #include <unistd.h>
20 #include <stddef.h>
21
22 #include "lib/global.h"
23
24 #include "path.h"
25
26
27
28 #define VFS_CLASS(a) ((struct vfs_class *) (a))
29
30 #define VFS_ENCODING_PREFIX "#enc:"
31
32 #define O_ALL (O_CREAT | O_EXCL | O_NOCTTY | O_NDELAY | O_SYNC | O_WRONLY | O_RDWR | O_RDONLY)
33
34
35
36 #if (O_ALL & O_APPEND)
37 #warning "Unexpected problem with flags, O_LINEAR disabled, contact pavel@ucw.cz"
38 #define O_LINEAR 0
39 #define IS_LINEAR(a) 0
40 #define NO_LINEAR(a) a
41 #else
42 #define O_LINEAR O_APPEND
43 #define IS_LINEAR(a) ((a) == (O_RDONLY | O_LINEAR))
44 #define NO_LINEAR(a) (((a) == (O_RDONLY | O_LINEAR)) ? O_RDONLY : (a))
45 #endif
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 #ifdef ENOMSG
65 #define E_UNKNOWN ENOMSG
66 #else
67 #define E_UNKNOWN EIO
68 #endif
69
70 #ifdef EREMOTEIO
71 #define E_REMOTE EREMOTEIO
72 #else
73 #define E_REMOTE ENETUNREACH
74 #endif
75
76 #ifdef EPROTO
77 #define E_PROTO EPROTO
78 #else
79 #define E_PROTO EIO
80 #endif
81
82
83
84
85
86
87
88 typedef void (*fill_names_f) (const char *);
89
90 typedef void *vfsid;
91
92 #ifdef HAVE_UTIMENSAT
93 typedef struct timespec mc_timesbuf_t[2];
94 #else
95 typedef struct utimbuf mc_timesbuf_t;
96 #endif
97
98 typedef struct mc_timespec
99 {
100 time_t tv_sec;
101 long tv_nsec;
102 } mc_timespec_t;
103
104
105
106 typedef enum
107 {
108 VFSF_UNKNOWN = 0,
109 VFSF_LOCAL = 1 << 0,
110 VFSF_NOLINKS = 1 << 1,
111
112 VFSF_REMOTE = 1 << 2,
113 VFSF_READONLY = 1 << 3,
114 VFSF_USETMP = 1 << 4
115 } vfs_flags_t;
116
117
118 enum
119 {
120 VFS_CTL_IS_NOTREADY
121 };
122
123
124 enum
125 {
126 VFS_SETCTL_FORGET,
127 VFS_SETCTL_RUN,
128 VFS_SETCTL_LOGFILE,
129 VFS_SETCTL_FLUSH,
130
131
132
133 VFS_SETCTL_STALE_DATA
134 };
135
136
137
138 typedef struct vfs_class
139 {
140 const char *name;
141 vfs_flags_t flags;
142 const char *prefix;
143 int verrno;
144 gboolean flush;
145 FILE *logfile;
146
147 int (*init) (struct vfs_class *me);
148 void (*done) (struct vfs_class *me);
149
150
151
152
153
154 void (*fill_names) (struct vfs_class *me, fill_names_f);
155
156
157
158
159
160 int (*which) (struct vfs_class *me, const char *path);
161
162 void *(*open) (const vfs_path_t *vpath, int flags, mode_t mode);
163 int (*close) (void *vfs_info);
164 ssize_t (*read) (void *vfs_info, char *buffer, size_t count);
165 ssize_t (*write) (void *vfs_info, const char *buf, size_t count);
166
167 void *(*opendir) (const vfs_path_t *vpath);
168 struct vfs_dirent *(*readdir) (void *vfs_info);
169 int (*closedir) (void *vfs_info);
170
171 int (*stat) (const vfs_path_t *vpath, struct stat *buf);
172 int (*lstat) (const vfs_path_t *vpath, struct stat *buf);
173 int (*fstat) (void *vfs_info, struct stat *buf);
174
175 int (*chmod) (const vfs_path_t *vpath, mode_t mode);
176 int (*chown) (const vfs_path_t *vpath, uid_t owner, gid_t group);
177
178 int (*fgetflags) (const vfs_path_t *vpath, unsigned long *flags);
179 int (*fsetflags) (const vfs_path_t *vpath, unsigned long flags);
180
181 int (*utime) (const vfs_path_t *vpath, mc_timesbuf_t *times);
182
183 int (*readlink) (const vfs_path_t *vpath, char *buf, size_t size);
184 int (*symlink) (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
185 int (*link) (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
186 int (*unlink) (const vfs_path_t *vpath);
187 int (*rename) (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
188 int (*chdir) (const vfs_path_t *vpath);
189 int (*ferrno) (struct vfs_class *me);
190 off_t (*lseek) (void *vfs_info, off_t offset, int whence);
191 int (*mknod) (const vfs_path_t *vpath, mode_t mode, dev_t dev);
192
193 vfsid (*getid) (const vfs_path_t *vpath);
194
195 gboolean (*nothingisopen) (vfsid id);
196 void (*free) (vfsid id);
197
198 vfs_path_t *(*getlocalcopy) (const vfs_path_t *vpath);
199 int (*ungetlocalcopy) (const vfs_path_t *vpath, const vfs_path_t *local_vpath,
200 gboolean has_changed);
201
202 int (*mkdir) (const vfs_path_t *vpath, mode_t mode);
203 int (*rmdir) (const vfs_path_t *vpath);
204
205 int (*ctl) (void *vfs_info, int ctlop, void *arg);
206 int (*setctl) (const vfs_path_t *vpath, int ctlop, void *arg);
207 } vfs_class;
208
209
210
211
212
213 struct vfs_dirent
214 {
215
216 GString *d_name_str;
217
218
219 ino_t d_ino;
220 char *d_name;
221 size_t d_len;
222 unsigned char d_type;
223 };
224
225
226
227 extern int vfs_timeout;
228
229 #ifdef ENABLE_VFS_NET
230 extern int use_netrc;
231 #endif
232
233
234
235
236 void vfs_init_class (struct vfs_class *vclass, const char *name, vfs_flags_t flags,
237 const char *prefix);
238
239 void *vfs_s_open (const vfs_path_t *vpath, int flags, mode_t mode);
240 int vfs_s_stat (const vfs_path_t *vpath, struct stat *buf);
241 int vfs_s_lstat (const vfs_path_t *vpath, struct stat *buf);
242 int vfs_s_fstat (void *fh, struct stat *buf);
243
244 void vfs_adjust_stat (struct stat *s);
245
246 vfsid vfs_getid (const vfs_path_t *vpath);
247
248 void vfs_init (void);
249 void vfs_shut (void);
250
251 gboolean vfs_register_class (struct vfs_class *vfs);
252 void vfs_unregister_class (struct vfs_class *vfs);
253
254 void vfs_setup_work_dir (void);
255
256 void vfs_timeout_handler (void);
257 int vfs_timeouts (void);
258 void vfs_expire (gboolean now);
259
260 const char *vfs_get_current_dir (void);
261 char *vfs_get_current_dir_n (void);
262 const vfs_path_t *vfs_get_raw_current_dir (void);
263 void vfs_set_raw_current_dir (const vfs_path_t *vpath);
264
265 gboolean vfs_current_is_local (void);
266 MC_MOCKABLE gboolean vfs_file_is_local (const vfs_path_t *vpath);
267
268 char *vfs_strip_suffix_from_filename (const char *filename);
269
270 vfs_flags_t vfs_file_class_flags (const vfs_path_t *vpath);
271
272
273
274
275 const char *vfs_translate_path (const char *path);
276
277 char *vfs_translate_path_n (const char *path);
278
279 void vfs_stamp_path (const vfs_path_t *path);
280
281 void vfs_release_path (const vfs_path_t *vpath);
282
283 struct vfs_dirent *vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino,
284 unsigned char type);
285 void vfs_dirent_assign (struct vfs_dirent *d, const char *fname, ino_t ino, unsigned char type);
286 void vfs_dirent_free (struct vfs_dirent *d);
287
288 void vfs_fill_names (fill_names_f);
289
290 void vfs_print_message (const char *msg, ...) G_GNUC_PRINTF (1, 2);
291
292 int vfs_ferrno (struct vfs_class *vfs);
293
294 int vfs_new_handle (struct vfs_class *vclass, void *fsinfo);
295
296 struct vfs_class *vfs_class_find_by_handle (int handle, void **fsinfo);
297
298 void vfs_free_handle (int handle);
299
300 void vfs_setup_cwd (void);
301 char *vfs_get_cwd (void);
302
303 int vfs_preallocate (int dest_desc, off_t src_fsize, off_t dest_fsize);
304
305 int vfs_clone_file (int dest_vfs_fd, int src_vfs_fd);
306
307
308
309
310 ssize_t mc_read (int handle, void *buffer, size_t count);
311 ssize_t mc_write (int handle, const void *buffer, size_t count);
312 int mc_utime (const vfs_path_t *vpath, mc_timesbuf_t *times);
313 int mc_readlink (const vfs_path_t *vpath, char *buf, size_t bufsiz);
314 int mc_close (int handle);
315 off_t mc_lseek (int fd, off_t offset, int whence);
316 DIR *mc_opendir (const vfs_path_t *vpath);
317 struct vfs_dirent *mc_readdir (DIR *dirp);
318 int mc_closedir (DIR *dir);
319 MC_MOCKABLE int mc_stat (const vfs_path_t *vpath, struct stat *buf);
320 int mc_mknod (const vfs_path_t *vpath, mode_t mode, dev_t dev);
321 int mc_link (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
322 int mc_mkdir (const vfs_path_t *vpath, mode_t mode);
323 int mc_rmdir (const vfs_path_t *vpath);
324 int mc_fstat (int fd, struct stat *buf);
325 MC_MOCKABLE int mc_lstat (const vfs_path_t *vpath, struct stat *buf);
326 int mc_symlink (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
327 int mc_rename (const vfs_path_t *vpath1, const vfs_path_t *vpath2);
328 int mc_chmod (const vfs_path_t *vpath, mode_t mode);
329 int mc_chown (const vfs_path_t *vpath, uid_t owner, gid_t group);
330 int mc_fgetflags (const vfs_path_t *vpath, unsigned long *flags);
331 int mc_fsetflags (const vfs_path_t *vpath, unsigned long flags);
332 int mc_chdir (const vfs_path_t *vpath);
333 int mc_unlink (const vfs_path_t *vpath);
334 int mc_ctl (int fd, int ctlop, void *arg);
335 int mc_setctl (const vfs_path_t *vpath, int ctlop, void *arg);
336 int mc_open (const vfs_path_t *vpath, int flags, ...);
337 MC_MOCKABLE vfs_path_t *mc_getlocalcopy (const vfs_path_t *pathname_vpath);
338 MC_MOCKABLE int mc_ungetlocalcopy (const vfs_path_t *pathname_vpath, const vfs_path_t *local_vpath,
339 gboolean has_changed);
340 int mc_mkstemps (vfs_path_t **pname_vpath, const char *prefix, const char *suffix);
341
342
343 const char *mc_tmpdir (void);
344
345
346
347 #endif