vfs.h 11 KB

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