vfs.c 18 KB

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