vfs.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. /*
  2. Virtual File System switch code
  3. Copyright (C) 1995-2017
  4. Free Software Foundation, Inc.
  5. Written by: 1995 Miguel de Icaza
  6. Jakub Jelinek, 1995
  7. Pavel Machek, 1998
  8. Slava Zanko <slavazanko@gmail.com>, 2013
  9. This file is part of the Midnight Commander.
  10. The Midnight Commander is free software: you can redistribute it
  11. and/or modify it under the terms of the GNU General Public License as
  12. published by the Free Software Foundation, either version 3 of the License,
  13. or (at your option) any later version.
  14. The Midnight Commander is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. GNU General Public License for more details.
  18. You should have received a copy of the GNU General Public License
  19. along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. /**
  22. * \file
  23. * \brief Source: Virtual File System switch code
  24. * \author Miguel de Icaza
  25. * \author Jakub Jelinek
  26. * \author Pavel Machek
  27. * \date 1995, 1998
  28. * \warning functions like extfs_lstat() have right to destroy any
  29. * strings you pass to them. This is acutally ok as you g_strdup what
  30. * you are passing to them, anyway; still, beware.
  31. *
  32. * Namespace: exports *many* functions with vfs_ prefix; exports
  33. * parse_ls_lga and friends which do not have that prefix.
  34. */
  35. #include <config.h>
  36. #include <errno.h>
  37. #include <stdlib.h>
  38. #include "lib/global.h"
  39. #include "lib/strutil.h"
  40. #include "lib/util.h"
  41. #include "lib/widget.h" /* message() */
  42. #include "lib/event.h"
  43. #ifdef HAVE_CHARSET
  44. #include "lib/charsets.h"
  45. #endif
  46. #include "vfs.h"
  47. #include "utilvfs.h"
  48. #include "gc.h"
  49. /* TODO: move it to the separate .h */
  50. extern struct dirent *mc_readdir_result;
  51. extern GPtrArray *vfs__classes_list;
  52. extern GString *vfs_str_buffer;
  53. extern vfs_class *current_vfs;
  54. /*** global variables ****************************************************************************/
  55. GPtrArray *vfs__classes_list = NULL;
  56. GString *vfs_str_buffer = NULL;
  57. vfs_class *current_vfs = NULL;
  58. /*** file scope macro definitions ****************************************************************/
  59. #if defined(_AIX) && !defined(NAME_MAX)
  60. #define NAME_MAX FILENAME_MAX
  61. #endif
  62. #define VFS_FIRST_HANDLE 100
  63. /*** file scope type declarations ****************************************************************/
  64. struct vfs_openfile
  65. {
  66. int handle;
  67. vfs_class *vclass;
  68. void *fsinfo;
  69. };
  70. /*** file scope variables ************************************************************************/
  71. /** They keep track of the current directory */
  72. static vfs_path_t *current_path = NULL;
  73. static GPtrArray *vfs_openfiles = NULL;
  74. static long vfs_free_handle_list = -1;
  75. /* --------------------------------------------------------------------------------------------- */
  76. /*** file scope functions ************************************************************************/
  77. /* --------------------------------------------------------------------------------------------- */
  78. /* now used only by vfs_translate_path, but could be used in other vfs
  79. * plugin to automatic detect encoding
  80. * path - path to translate
  81. * size - how many bytes from path translate
  82. * defcnv - convertor, that is used as default, when path does not contain any
  83. * #enc: subtring
  84. * buffer - used to store result of translation
  85. */
  86. static estr_t
  87. _vfs_translate_path (const char *path, int size, GIConv defcnv, GString * buffer)
  88. {
  89. estr_t state = ESTR_SUCCESS;
  90. #ifdef HAVE_CHARSET
  91. const char *semi;
  92. if (size == 0)
  93. return ESTR_SUCCESS;
  94. size = (size > 0) ? size : (signed int) strlen (path);
  95. /* try found /#enc: */
  96. semi = g_strrstr_len (path, size, VFS_ENCODING_PREFIX);
  97. if (semi != NULL && (semi == path || IS_PATH_SEP (semi[-1])))
  98. {
  99. char encoding[16];
  100. const char *slash;
  101. GIConv coder = INVALID_CONV;
  102. int ms;
  103. /* first must be translated part before #enc: */
  104. ms = semi - path;
  105. state = _vfs_translate_path (path, ms, defcnv, buffer);
  106. if (state != ESTR_SUCCESS)
  107. return state;
  108. /* now can be translated part after #enc: */
  109. semi += strlen (VFS_ENCODING_PREFIX); /* skip "#enc:" */
  110. slash = strchr (semi, PATH_SEP);
  111. /* ignore slashes after size; */
  112. if (slash - path >= size)
  113. slash = NULL;
  114. ms = (slash != NULL) ? slash - semi : (int) strlen (semi);
  115. ms = MIN ((unsigned int) ms, sizeof (encoding) - 1);
  116. /* limit encoding size (ms) to path size (size) */
  117. if (semi + ms > path + size)
  118. ms = path + size - semi;
  119. memcpy (encoding, semi, ms);
  120. encoding[ms] = '\0';
  121. if (is_supported_encoding (encoding))
  122. coder = str_crt_conv_to (encoding);
  123. if (coder != INVALID_CONV)
  124. {
  125. if (slash != NULL)
  126. state = str_vfs_convert_to (coder, slash + 1, path + size - slash - 1, buffer);
  127. str_close_conv (coder);
  128. return state;
  129. }
  130. errno = EINVAL;
  131. state = ESTR_FAILURE;
  132. }
  133. else
  134. {
  135. /* path can be translated whole at once */
  136. state = str_vfs_convert_to (defcnv, path, size, buffer);
  137. }
  138. #else
  139. (void) size;
  140. (void) defcnv;
  141. g_string_assign (buffer, path);
  142. #endif /* HAVE_CHARSET */
  143. return state;
  144. }
  145. /* --------------------------------------------------------------------------------------------- */
  146. static struct vfs_openfile *
  147. vfs_get_openfile (int handle)
  148. {
  149. struct vfs_openfile *h;
  150. if (handle < VFS_FIRST_HANDLE || (guint) (handle - VFS_FIRST_HANDLE) >= vfs_openfiles->len)
  151. return NULL;
  152. h = (struct vfs_openfile *) g_ptr_array_index (vfs_openfiles, handle - VFS_FIRST_HANDLE);
  153. if (h == NULL)
  154. return NULL;
  155. g_assert (h->handle == handle);
  156. return h;
  157. }
  158. /* --------------------------------------------------------------------------------------------- */
  159. static gboolean
  160. vfs_test_current_dir (const vfs_path_t * vpath)
  161. {
  162. struct stat my_stat, my_stat2;
  163. return (mc_global.vfs.cd_symlinks && mc_stat (vpath, &my_stat) == 0
  164. && mc_stat (vfs_get_raw_current_dir (), &my_stat2) == 0
  165. && my_stat.st_ino == my_stat2.st_ino && my_stat.st_dev == my_stat2.st_dev);
  166. }
  167. /* --------------------------------------------------------------------------------------------- */
  168. /*** public functions ****************************************************************************/
  169. /* --------------------------------------------------------------------------------------------- */
  170. /** Free open file data for given file handle */
  171. void
  172. vfs_free_handle (int handle)
  173. {
  174. const int idx = handle - VFS_FIRST_HANDLE;
  175. if (handle >= VFS_FIRST_HANDLE && (guint) idx < vfs_openfiles->len)
  176. {
  177. struct vfs_openfile *h;
  178. h = (struct vfs_openfile *) g_ptr_array_index (vfs_openfiles, idx);
  179. g_free (h);
  180. g_ptr_array_index (vfs_openfiles, idx) = (void *) vfs_free_handle_list;
  181. vfs_free_handle_list = idx;
  182. }
  183. }
  184. /* --------------------------------------------------------------------------------------------- */
  185. /** Find VFS class by file handle */
  186. struct vfs_class *
  187. vfs_class_find_by_handle (int handle, void **fsinfo)
  188. {
  189. struct vfs_openfile *h;
  190. h = vfs_get_openfile (handle);
  191. if (h == NULL)
  192. return NULL;
  193. if (fsinfo != NULL)
  194. *fsinfo = h->fsinfo;
  195. return h->vclass;
  196. }
  197. /* --------------------------------------------------------------------------------------------- */
  198. /**
  199. * Create new VFS handle and put it to the list
  200. */
  201. int
  202. vfs_new_handle (struct vfs_class *vclass, void *fsinfo)
  203. {
  204. struct vfs_openfile *h;
  205. h = g_new (struct vfs_openfile, 1);
  206. h->fsinfo = fsinfo;
  207. h->vclass = vclass;
  208. /* Allocate the first free handle */
  209. h->handle = vfs_free_handle_list;
  210. if (h->handle == -1)
  211. {
  212. /* No free allocated handles, allocate one */
  213. h->handle = vfs_openfiles->len;
  214. g_ptr_array_add (vfs_openfiles, h);
  215. }
  216. else
  217. {
  218. vfs_free_handle_list = (long) g_ptr_array_index (vfs_openfiles, vfs_free_handle_list);
  219. g_ptr_array_index (vfs_openfiles, h->handle) = h;
  220. }
  221. h->handle += VFS_FIRST_HANDLE;
  222. return h->handle;
  223. }
  224. /* --------------------------------------------------------------------------------------------- */
  225. int
  226. vfs_ferrno (struct vfs_class *vfs)
  227. {
  228. return vfs->ferrno ? (*vfs->ferrno) (vfs) : E_UNKNOWN;
  229. /* Hope that error message is obscure enough ;-) */
  230. }
  231. /* --------------------------------------------------------------------------------------------- */
  232. gboolean
  233. vfs_register_class (struct vfs_class * vfs)
  234. {
  235. if (vfs->init != NULL) /* vfs has own initialization function */
  236. if (!vfs->init (vfs)) /* but it failed */
  237. return FALSE;
  238. g_ptr_array_add (vfs__classes_list, vfs);
  239. return TRUE;
  240. }
  241. /* --------------------------------------------------------------------------------------------- */
  242. /** Strip known vfs suffixes from a filename (possible improvement: strip
  243. * suffix from last path component).
  244. * \return a malloced string which has to be freed.
  245. */
  246. char *
  247. vfs_strip_suffix_from_filename (const char *filename)
  248. {
  249. char *semi, *p;
  250. if (filename == NULL)
  251. vfs_die ("vfs_strip_suffix_from_path got NULL: impossible");
  252. p = g_strdup (filename);
  253. semi = g_strrstr (p, VFS_PATH_URL_DELIMITER);
  254. if (semi != NULL)
  255. {
  256. char *vfs_prefix;
  257. *semi = '\0';
  258. vfs_prefix = strrchr (p, PATH_SEP);
  259. if (vfs_prefix == NULL)
  260. *semi = *VFS_PATH_URL_DELIMITER;
  261. else
  262. *vfs_prefix = '\0';
  263. }
  264. return p;
  265. }
  266. /* --------------------------------------------------------------------------------------------- */
  267. const char *
  268. vfs_translate_path (const char *path)
  269. {
  270. estr_t state;
  271. g_string_set_size (vfs_str_buffer, 0);
  272. state = _vfs_translate_path (path, -1, str_cnv_from_term, vfs_str_buffer);
  273. return (state != ESTR_FAILURE) ? vfs_str_buffer->str : NULL;
  274. }
  275. /* --------------------------------------------------------------------------------------------- */
  276. char *
  277. vfs_translate_path_n (const char *path)
  278. {
  279. const char *result;
  280. result = vfs_translate_path (path);
  281. return g_strdup (result);
  282. }
  283. /* --------------------------------------------------------------------------------------------- */
  284. /**
  285. * Get current directory without any OS calls.
  286. *
  287. * @return string contains current path
  288. */
  289. const char *
  290. vfs_get_current_dir (void)
  291. {
  292. return current_path->str;
  293. }
  294. /* --------------------------------------------------------------------------------------------- */
  295. /**
  296. * Get current directory without any OS calls.
  297. *
  298. * @return newly allocated string contains current path
  299. */
  300. char *
  301. vfs_get_current_dir_n (void)
  302. {
  303. return g_strdup (current_path->str);
  304. }
  305. /* --------------------------------------------------------------------------------------------- */
  306. /**
  307. * Get raw current directory object without any OS calls.
  308. *
  309. * @return object contain current path
  310. */
  311. const vfs_path_t *
  312. vfs_get_raw_current_dir (void)
  313. {
  314. return current_path;
  315. }
  316. /* --------------------------------------------------------------------------------------------- */
  317. /**
  318. * Set current directory object.
  319. *
  320. * @param vpath new path
  321. */
  322. void
  323. vfs_set_raw_current_dir (const vfs_path_t * vpath)
  324. {
  325. vfs_path_free (current_path);
  326. current_path = (vfs_path_t *) vpath;
  327. }
  328. /* --------------------------------------------------------------------------------------------- */
  329. /* Return TRUE is the current VFS class is local */
  330. gboolean
  331. vfs_current_is_local (void)
  332. {
  333. return (current_vfs->flags & VFSF_LOCAL) != 0;
  334. }
  335. /* --------------------------------------------------------------------------------------------- */
  336. /* Return flags of the VFS class of the given filename */
  337. vfs_class_flags_t
  338. vfs_file_class_flags (const vfs_path_t * vpath)
  339. {
  340. const vfs_path_element_t *path_element;
  341. path_element = vfs_path_get_by_index (vpath, -1);
  342. if (!vfs_path_element_valid (path_element))
  343. return VFSF_UNKNOWN;
  344. return path_element->class->flags;
  345. }
  346. /* --------------------------------------------------------------------------------------------- */
  347. void
  348. vfs_init (void)
  349. {
  350. /* create the VFS handle arrays */
  351. vfs__classes_list = g_ptr_array_new ();
  352. /* create the VFS handle array */
  353. vfs_openfiles = g_ptr_array_new ();
  354. vfs_str_buffer = g_string_new ("");
  355. }
  356. /* --------------------------------------------------------------------------------------------- */
  357. void
  358. vfs_setup_work_dir (void)
  359. {
  360. const vfs_path_element_t *path_element;
  361. vfs_setup_cwd ();
  362. /* FIXME: is we really need for this check? */
  363. /*
  364. if (strlen (current_dir) > MC_MAXPATHLEN - 2)
  365. vfs_die ("Current dir too long.\n");
  366. */
  367. path_element = vfs_path_get_by_index (current_path, -1);
  368. current_vfs = path_element->class;
  369. }
  370. /* --------------------------------------------------------------------------------------------- */
  371. void
  372. vfs_shut (void)
  373. {
  374. guint i;
  375. vfs_gc_done ();
  376. vfs_set_raw_current_dir (NULL);
  377. for (i = 0; i < vfs__classes_list->len; i++)
  378. {
  379. struct vfs_class *vfs = (struct vfs_class *) g_ptr_array_index (vfs__classes_list, i);
  380. if (vfs->done != NULL)
  381. vfs->done (vfs);
  382. }
  383. /* NULL-ize pointers to make unit tests happy */
  384. g_ptr_array_free (vfs_openfiles, TRUE);
  385. vfs_openfiles = NULL;
  386. g_ptr_array_free (vfs__classes_list, TRUE);
  387. vfs__classes_list = NULL;
  388. g_string_free (vfs_str_buffer, TRUE);
  389. vfs_str_buffer = NULL;
  390. current_vfs = NULL;
  391. vfs_free_handle_list = -1;
  392. MC_PTR_FREE (mc_readdir_result);
  393. }
  394. /* --------------------------------------------------------------------------------------------- */
  395. /**
  396. * These ones grab information from the VFS
  397. * and handles them to an upper layer
  398. */
  399. void
  400. vfs_fill_names (fill_names_f func)
  401. {
  402. guint i;
  403. for (i = 0; i < vfs__classes_list->len; i++)
  404. {
  405. struct vfs_class *vfs = (struct vfs_class *) g_ptr_array_index (vfs__classes_list, i);
  406. if (vfs->fill_names != NULL)
  407. vfs->fill_names (vfs, func);
  408. }
  409. }
  410. /* --------------------------------------------------------------------------------------------- */
  411. gboolean
  412. vfs_file_is_local (const vfs_path_t * vpath)
  413. {
  414. return (vfs_file_class_flags (vpath) & VFSF_LOCAL) != 0;
  415. }
  416. /* --------------------------------------------------------------------------------------------- */
  417. void
  418. vfs_print_message (const char *msg, ...)
  419. {
  420. ev_vfs_print_message_t event_data;
  421. va_list ap;
  422. va_start (ap, msg);
  423. event_data.msg = g_strdup_vprintf (msg, ap);
  424. va_end (ap);
  425. mc_event_raise (MCEVENT_GROUP_CORE, "vfs_print_message", (gpointer) & event_data);
  426. }
  427. /* --------------------------------------------------------------------------------------------- */
  428. /**
  429. * If it's local, reread the current directory
  430. * from the OS.
  431. */
  432. void
  433. vfs_setup_cwd (void)
  434. {
  435. char *current_dir;
  436. vfs_path_t *tmp_vpath;
  437. const vfs_path_element_t *path_element;
  438. if (vfs_get_raw_current_dir () == NULL)
  439. {
  440. current_dir = g_get_current_dir ();
  441. vfs_set_raw_current_dir (vfs_path_from_str (current_dir));
  442. g_free (current_dir);
  443. current_dir = getenv ("PWD");
  444. tmp_vpath = vfs_path_from_str (current_dir);
  445. if (tmp_vpath != NULL)
  446. {
  447. if (vfs_test_current_dir (tmp_vpath))
  448. vfs_set_raw_current_dir (tmp_vpath);
  449. else
  450. vfs_path_free (tmp_vpath);
  451. }
  452. }
  453. path_element = vfs_path_get_by_index (vfs_get_raw_current_dir (), -1);
  454. if ((path_element->class->flags & VFSF_LOCAL) != 0)
  455. {
  456. current_dir = g_get_current_dir ();
  457. tmp_vpath = vfs_path_from_str (current_dir);
  458. g_free (current_dir);
  459. if (tmp_vpath != NULL)
  460. {
  461. /* One of directories in the path is not readable */
  462. /* Check if it is O.K. to use the current_dir */
  463. if (!vfs_test_current_dir (tmp_vpath))
  464. vfs_set_raw_current_dir (tmp_vpath);
  465. else
  466. vfs_path_free (tmp_vpath);
  467. }
  468. }
  469. }
  470. /* --------------------------------------------------------------------------------------------- */
  471. /**
  472. * Return current directory. If it's local, reread the current directory
  473. * from the OS.
  474. */
  475. char *
  476. _vfs_get_cwd (void)
  477. {
  478. const vfs_path_t *current_dir_vpath;
  479. vfs_setup_cwd ();
  480. current_dir_vpath = vfs_get_raw_current_dir ();
  481. return g_strdup (vfs_path_as_str (current_dir_vpath));
  482. }
  483. /* --------------------------------------------------------------------------------------------- */
  484. /**
  485. * Preallocate space for file in new place for ensure that file
  486. * will be fully copied with less fragmentation.
  487. *
  488. * @param dest_vfs_fd mc VFS file handler
  489. * @param src_fsize source file size
  490. * @param dest_fsize destination file size (if destination exists, otherwise should be 0)
  491. *
  492. * @return 0 if success and non-zero otherwise.
  493. * Note: function doesn't touch errno global variable.
  494. */
  495. int
  496. vfs_preallocate (int dest_vfs_fd, off_t src_fsize, off_t dest_fsize)
  497. {
  498. #ifndef HAVE_POSIX_FALLOCATE
  499. (void) dest_vfs_fd;
  500. (void) src_fsize;
  501. (void) dest_fsize;
  502. return 0;
  503. #else /* HAVE_POSIX_FALLOCATE */
  504. void *dest_fd = NULL;
  505. struct vfs_class *dest_class;
  506. if (!mc_global.vfs.preallocate_space)
  507. return 0;
  508. if (src_fsize == 0)
  509. return 0;
  510. dest_class = vfs_class_find_by_handle (dest_vfs_fd, &dest_fd);
  511. if ((dest_class->flags & VFSF_LOCAL) == 0 || dest_fd == NULL)
  512. return 0;
  513. return posix_fallocate (*(int *) dest_fd, dest_fsize, src_fsize - dest_fsize);
  514. #endif /* HAVE_POSIX_FALLOCATE */
  515. }
  516. /* --------------------------------------------------------------------------------------------- */