vfs.h 11 KB

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