vfs.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. /**
  2. * \file
  3. * \brief Header: Virtual File System switch code
  4. */
  5. #ifndef MC__VFS_VFS_H
  6. #define MC__VFS_VFS_H
  7. #include <sys/types.h>
  8. #include <sys/stat.h>
  9. #include <dirent.h> /* DIR */
  10. #ifdef HAVE_UTIMENSAT
  11. #include <sys/time.h>
  12. #elif defined (HAVE_UTIME_H)
  13. #include <utime.h>
  14. #endif
  15. #include <stdio.h>
  16. #include <unistd.h>
  17. #include <stddef.h>
  18. #include "lib/global.h"
  19. #include "path.h"
  20. /*** typedefs(not structures) and defined constants **********************************************/
  21. #define VFS_CLASS(a) ((struct vfs_class *) (a))
  22. #if defined (ENABLE_VFS_FTP) || defined (ENABLE_VFS_FISH) || defined (ENABLE_VFS_SMB)
  23. #define ENABLE_VFS_NET 1
  24. #endif
  25. /**
  26. * This is the type of callback function passed to vfs_fill_names.
  27. * It gets the name of the virtual file system as its first argument.
  28. * See also:
  29. * vfs_fill_names().
  30. */
  31. #define VFS_ENCODING_PREFIX "#enc:"
  32. #define O_ALL (O_CREAT | O_EXCL | O_NOCTTY | O_NDELAY | O_SYNC | O_WRONLY | O_RDWR | O_RDONLY)
  33. /* Midnight commander code should _not_ use other flags than those
  34. listed above and O_APPEND */
  35. #if (O_ALL & O_APPEND)
  36. #warning "Unexpected problem with flags, O_LINEAR disabled, contact pavel@ucw.cz"
  37. #define O_LINEAR 0
  38. #define IS_LINEAR(a) 0
  39. #define NO_LINEAR(a) a
  40. #else
  41. #define O_LINEAR O_APPEND
  42. #define IS_LINEAR(a) ((a) == (O_RDONLY | O_LINEAR)) /* Return only 0 and 1 ! */
  43. #define NO_LINEAR(a) (((a) == (O_RDONLY | O_LINEAR)) ? O_RDONLY : (a))
  44. #endif
  45. /* O_LINEAR is strange beast, be careful. If you open file asserting
  46. * O_RDONLY | O_LINEAR, you promise:
  47. *
  48. * a) to read file linearly from beginning to the end
  49. * b) not to open another file before you close this one
  50. * (this will likely go away in future)
  51. * as a special gift, you may
  52. * c) lseek() immediately after open(), giving ftpfs chance to
  53. * reget. Be warned that this lseek() can fail, and you _have_
  54. * to handle that gratefully.
  55. *
  56. * O_LINEAR allows filesystems not to create temporary file in some
  57. * cases (ftp transfer). -- pavel@ucw.cz
  58. */
  59. /* And now some defines for our errors. */
  60. #ifdef ENOSYS
  61. #define E_NOTSUPP ENOSYS /* for use in vfs when module does not provide function */
  62. #else
  63. #define E_NOTSUPP EFAULT /* Does this happen? */
  64. #endif
  65. #ifdef ENOMSG
  66. #define E_UNKNOWN ENOMSG /* if we do not know what error happened */
  67. #else
  68. #define E_UNKNOWN EIO /* if we do not know what error happened */
  69. #endif
  70. #ifdef EREMOTEIO
  71. #define E_REMOTE EREMOTEIO /* if other side of ftp/fish reports error */
  72. #else
  73. #define E_REMOTE ENETUNREACH /* :-( there's no EREMOTEIO on some systems */
  74. #endif
  75. #ifdef EPROTO
  76. #define E_PROTO EPROTO /* if other side fails to follow protocol */
  77. #else
  78. #define E_PROTO EIO
  79. #endif
  80. typedef void (*fill_names_f) (const char *);
  81. typedef void *vfsid;
  82. #ifdef HAVE_UTIMENSAT
  83. typedef struct timespec mc_timesbuf_t[2];
  84. #else
  85. typedef struct utimbuf mc_timesbuf_t;
  86. #endif
  87. /*** enums ***************************************************************************************/
  88. typedef enum
  89. {
  90. VFSF_UNKNOWN = 0,
  91. VFSF_LOCAL = 1 << 0, /* Class is local (not virtual) filesystem */
  92. VFSF_NOLINKS = 1 << 1, /* Hard links not supported */
  93. VFSF_REMOTE = 1 << 2,
  94. VFSF_READONLY = 1 << 3,
  95. VFSF_USETMP = 1 << 4
  96. } vfs_flags_t;
  97. /* Operations for mc_ctl - on open file */
  98. enum
  99. {
  100. VFS_CTL_IS_NOTREADY
  101. };
  102. /* Operations for mc_setctl - on path */
  103. enum
  104. {
  105. VFS_SETCTL_FORGET,
  106. VFS_SETCTL_RUN,
  107. VFS_SETCTL_LOGFILE,
  108. VFS_SETCTL_FLUSH, /* invalidate directory cache */
  109. /* Setting this makes vfs layer give out potentially incorrect data,
  110. but it also makes some operations much faster. Use with caution. */
  111. VFS_SETCTL_STALE_DATA
  112. };
  113. /*** structures declarations (and typedefs of structures)*****************************************/
  114. typedef struct vfs_class
  115. {
  116. const char *name; /* "FIles over SHell" */
  117. vfs_flags_t flags;
  118. const char *prefix; /* "fish:" */
  119. int verrno; /* can't use errno because glibc2 might define errno as function */
  120. gboolean flush; /* if set to TRUE, invalidate directory cache */
  121. FILE *logfile;
  122. /* *INDENT-OFF* */
  123. int (*init) (struct vfs_class * me);
  124. void (*done) (struct vfs_class * me);
  125. /**
  126. * The fill_names method shall call the callback function for every
  127. * filesystem name that this vfs module supports.
  128. */
  129. void (*fill_names) (struct vfs_class * me, fill_names_f);
  130. /**
  131. * The which() method shall return the index of the vfs subsystem
  132. * or -1 if this vfs cannot handle the given pathname.
  133. */
  134. int (*which) (struct vfs_class * me, const char *path);
  135. void *(*open) (const vfs_path_t * vpath, int flags, mode_t mode);
  136. int (*close) (void *vfs_info);
  137. ssize_t (*read) (void *vfs_info, char *buffer, size_t count);
  138. ssize_t (*write) (void *vfs_info, const char *buf, size_t count);
  139. void *(*opendir) (const vfs_path_t * vpath);
  140. struct vfs_dirent *(*readdir) (void *vfs_info);
  141. int (*closedir) (void *vfs_info);
  142. int (*stat) (const vfs_path_t * vpath, struct stat * buf);
  143. int (*lstat) (const vfs_path_t * vpath, struct stat * buf);
  144. int (*fstat) (void *vfs_info, struct stat * buf);
  145. int (*chmod) (const vfs_path_t * vpath, mode_t mode);
  146. int (*chown) (const vfs_path_t * vpath, uid_t owner, gid_t group);
  147. int (*utime) (const vfs_path_t * vpath, mc_timesbuf_t * times);
  148. int (*readlink) (const vfs_path_t * vpath, char *buf, size_t size);
  149. int (*symlink) (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
  150. int (*link) (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
  151. int (*unlink) (const vfs_path_t * vpath);
  152. int (*rename) (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
  153. int (*chdir) (const vfs_path_t * vpath);
  154. int (*ferrno) (struct vfs_class * me);
  155. off_t (*lseek) (void *vfs_info, off_t offset, int whence);
  156. int (*mknod) (const vfs_path_t * vpath, mode_t mode, dev_t dev);
  157. vfsid (*getid) (const vfs_path_t * vpath);
  158. gboolean (*nothingisopen) (vfsid id);
  159. void (*free) (vfsid id);
  160. vfs_path_t *(*getlocalcopy) (const vfs_path_t * vpath);
  161. int (*ungetlocalcopy) (const vfs_path_t * vpath, const vfs_path_t * local_vpath,
  162. gboolean has_changed);
  163. int (*mkdir) (const vfs_path_t * vpath, mode_t mode);
  164. int (*rmdir) (const vfs_path_t * vpath);
  165. int (*ctl) (void *vfs_info, int ctlop, void *arg);
  166. int (*setctl) (const vfs_path_t * vpath, int ctlop, void *arg);
  167. /* *INDENT-ON* */
  168. } vfs_class;
  169. /*
  170. * This struct is used instead of standard dirent to hold file name of any length
  171. * (not limited to NAME_MAX).
  172. */
  173. struct vfs_dirent
  174. {
  175. /* private */
  176. GString *d_name_str;
  177. /* public */
  178. ino_t d_ino;
  179. char *d_name; /* Alias of d_name_str->str */
  180. };
  181. /*** global variables defined in .c file *********************************************************/
  182. extern int vfs_timeout;
  183. #ifdef ENABLE_VFS_NET
  184. extern int use_netrc;
  185. #endif
  186. /*** declarations of public functions ************************************************************/
  187. /* lib/vfs/direntry.c: */
  188. void vfs_init_class (struct vfs_class *vclass, const char *name, vfs_flags_t flags,
  189. const char *prefix);
  190. void *vfs_s_open (const vfs_path_t * vpath, int flags, mode_t mode);
  191. int vfs_s_stat (const vfs_path_t * vpath, struct stat *buf);
  192. int vfs_s_lstat (const vfs_path_t * vpath, struct stat *buf);
  193. int vfs_s_fstat (void *fh, struct stat *buf);
  194. void vfs_adjust_stat (struct stat *s);
  195. vfsid vfs_getid (const vfs_path_t * vpath);
  196. void vfs_init (void);
  197. void vfs_shut (void);
  198. /* Register a file system class */
  199. gboolean vfs_register_class (struct vfs_class *vfs);
  200. void vfs_unregister_class (struct vfs_class *vfs);
  201. void vfs_setup_work_dir (void);
  202. void vfs_timeout_handler (void);
  203. int vfs_timeouts (void);
  204. void vfs_expire (gboolean now);
  205. const char *vfs_get_current_dir (void);
  206. char *vfs_get_current_dir_n (void);
  207. const vfs_path_t *vfs_get_raw_current_dir (void);
  208. void vfs_set_raw_current_dir (const vfs_path_t * vpath);
  209. gboolean vfs_current_is_local (void);
  210. gboolean vfs_file_is_local (const vfs_path_t * vpath);
  211. char *vfs_strip_suffix_from_filename (const char *filename);
  212. vfs_flags_t vfs_file_class_flags (const vfs_path_t * vpath);
  213. /* translate path back to terminal encoding, remove all #enc:
  214. * every invalid character is replaced with question mark
  215. * return static buffer */
  216. const char *vfs_translate_path (const char *path);
  217. /* return new string */
  218. char *vfs_translate_path_n (const char *path);
  219. void vfs_stamp_path (const vfs_path_t * path);
  220. void vfs_release_path (const vfs_path_t * vpath);
  221. struct vfs_dirent *vfs_dirent_init (struct vfs_dirent *d, const char *fname, ino_t ino);
  222. void vfs_dirent_assign (struct vfs_dirent *d, const char *fname, ino_t ino);
  223. void vfs_dirent_free (struct vfs_dirent *d);
  224. void vfs_fill_names (fill_names_f);
  225. /* *INDENT-OFF* */
  226. void vfs_print_message (const char *msg, ...) G_GNUC_PRINTF (1, 2);
  227. /* *INDENT-ON* */
  228. int vfs_ferrno (struct vfs_class *vfs);
  229. int vfs_new_handle (struct vfs_class *vclass, void *fsinfo);
  230. struct vfs_class *vfs_class_find_by_handle (int handle, void **fsinfo);
  231. void vfs_free_handle (int handle);
  232. void vfs_setup_cwd (void);
  233. char *_vfs_get_cwd (void);
  234. int vfs_preallocate (int dest_desc, off_t src_fsize, off_t dest_fsize);
  235. int vfs_clone_file (int dest_vfs_fd, int src_vfs_fd);
  236. /**
  237. * Interface functions described in interface.c
  238. */
  239. ssize_t mc_read (int handle, void *buffer, size_t count);
  240. ssize_t mc_write (int handle, const void *buffer, size_t count);
  241. int mc_utime (const vfs_path_t * vpath, mc_timesbuf_t * times);
  242. int mc_readlink (const vfs_path_t * vpath, char *buf, size_t bufsiz);
  243. int mc_close (int handle);
  244. off_t mc_lseek (int fd, off_t offset, int whence);
  245. DIR *mc_opendir (const vfs_path_t * vpath);
  246. struct vfs_dirent *mc_readdir (DIR * dirp);
  247. int mc_closedir (DIR * dir);
  248. int mc_stat (const vfs_path_t * vpath, struct stat *buf);
  249. int mc_mknod (const vfs_path_t * vpath, mode_t mode, dev_t dev);
  250. int mc_link (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
  251. int mc_mkdir (const vfs_path_t * vpath, mode_t mode);
  252. int mc_rmdir (const vfs_path_t * vpath);
  253. int mc_fstat (int fd, struct stat *buf);
  254. int mc_lstat (const vfs_path_t * vpath, struct stat *buf);
  255. int mc_symlink (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
  256. int mc_rename (const vfs_path_t * vpath1, const vfs_path_t * vpath2);
  257. int mc_chmod (const vfs_path_t * vpath, mode_t mode);
  258. int mc_chown (const vfs_path_t * vpath, uid_t owner, gid_t group);
  259. int mc_chdir (const vfs_path_t * vpath);
  260. int mc_unlink (const vfs_path_t * vpath);
  261. int mc_ctl (int fd, int ctlop, void *arg);
  262. int mc_setctl (const vfs_path_t * vpath, int ctlop, void *arg);
  263. int mc_open (const vfs_path_t * vpath, int flags, ...);
  264. vfs_path_t *mc_getlocalcopy (const vfs_path_t * pathname_vpath);
  265. int mc_ungetlocalcopy (const vfs_path_t * pathname_vpath, const vfs_path_t * local_vpath,
  266. gboolean has_changed);
  267. int mc_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *suffix);
  268. /* Creating temporary files safely */
  269. const char *mc_tmpdir (void);
  270. /*** inline functions ****************************************************************************/
  271. #endif /* MC_VFS_VFS_H */