interface.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916
  1. /*
  2. Virtual File System: interface functions
  3. Copyright (C) 2011, 2013
  4. The Free Software Foundation, Inc.
  5. Written by:
  6. Slava Zanko <slavazanko@gmail.com>, 2011, 2013
  7. This file is part of the Midnight Commander.
  8. The Midnight Commander is free software: you can redistribute it
  9. and/or modify it under the terms of the GNU General Public License as
  10. published by the Free Software Foundation, either version 3 of the License,
  11. or (at your option) any later version.
  12. The Midnight Commander is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. /**
  20. * \file
  21. * \brief Source: Virtual File System: path handlers
  22. * \author Slava Zanko
  23. * \date 2011
  24. */
  25. #include <config.h>
  26. #include <stdio.h>
  27. #include <stdlib.h> /* For atol() */
  28. #include <stdarg.h>
  29. #include <string.h>
  30. #include <errno.h>
  31. #include <sys/types.h>
  32. #include <signal.h>
  33. #include <ctype.h> /* is_digit() */
  34. #include <fcntl.h>
  35. #include <sys/stat.h>
  36. #include <unistd.h>
  37. #include <dirent.h>
  38. #include <pwd.h>
  39. #include <grp.h>
  40. #include "lib/global.h"
  41. #include "lib/widget.h" /* message() */
  42. #include "lib/strutil.h" /* str_crt_conv_from() */
  43. #include "lib/util.h"
  44. #include "vfs.h"
  45. #include "utilvfs.h"
  46. #include "path.h"
  47. #include "gc.h"
  48. #include "xdirentry.h"
  49. extern GString *vfs_str_buffer;
  50. extern struct vfs_class *current_vfs;
  51. /*** global variables ****************************************************************************/
  52. struct dirent *mc_readdir_result = NULL;
  53. /*** file scope macro definitions ****************************************************************/
  54. /*** file scope type declarations ****************************************************************/
  55. /*** file scope variables ************************************************************************/
  56. /*** file scope functions ************************************************************************/
  57. /* --------------------------------------------------------------------------------------------- */
  58. static vfs_path_t *
  59. mc_def_getlocalcopy (const vfs_path_t * filename_vpath)
  60. {
  61. vfs_path_t *tmp_vpath = NULL;
  62. int fdin = -1, fdout = -1;
  63. ssize_t i;
  64. char buffer[BUF_1K * 8];
  65. struct stat mystat;
  66. fdin = mc_open (filename_vpath, O_RDONLY | O_LINEAR);
  67. if (fdin == -1)
  68. goto fail;
  69. fdout = vfs_mkstemps (&tmp_vpath, "vfs", vfs_path_get_last_path_str (filename_vpath));
  70. if (fdout == -1)
  71. goto fail;
  72. while ((i = mc_read (fdin, buffer, sizeof (buffer))) > 0)
  73. {
  74. if (write (fdout, buffer, i) != i)
  75. goto fail;
  76. }
  77. if (i == -1)
  78. goto fail;
  79. i = mc_close (fdin);
  80. fdin = -1;
  81. if (i == -1)
  82. goto fail;
  83. i = close (fdout);
  84. fdout = -1;
  85. if (i == -1)
  86. goto fail;
  87. if (mc_stat (filename_vpath, &mystat) != -1)
  88. mc_chmod (tmp_vpath, mystat.st_mode);
  89. return tmp_vpath;
  90. fail:
  91. vfs_path_free (tmp_vpath);
  92. if (fdout != -1)
  93. close (fdout);
  94. if (fdin != -1)
  95. mc_close (fdin);
  96. return NULL;
  97. }
  98. /* --------------------------------------------------------------------------------------------- */
  99. static int
  100. mc_def_ungetlocalcopy (const vfs_path_t * filename_vpath,
  101. const vfs_path_t * local_vpath, gboolean has_changed)
  102. {
  103. int fdin = -1, fdout = -1;
  104. const char *local;
  105. local = vfs_path_get_last_path_str (local_vpath);
  106. if (has_changed)
  107. {
  108. char buffer[BUF_1K * 8];
  109. ssize_t i;
  110. if (vfs_path_get_last_path_vfs (filename_vpath)->write == NULL)
  111. goto failed;
  112. fdin = open (local, O_RDONLY);
  113. if (fdin == -1)
  114. goto failed;
  115. fdout = mc_open (filename_vpath, O_WRONLY | O_TRUNC);
  116. if (fdout == -1)
  117. goto failed;
  118. while ((i = read (fdin, buffer, sizeof (buffer))) > 0)
  119. if (mc_write (fdout, buffer, (size_t) i) != i)
  120. goto failed;
  121. if (i == -1)
  122. goto failed;
  123. if (close (fdin) == -1)
  124. {
  125. fdin = -1;
  126. goto failed;
  127. }
  128. fdin = -1;
  129. if (mc_close (fdout) == -1)
  130. {
  131. fdout = -1;
  132. goto failed;
  133. }
  134. }
  135. unlink (local);
  136. return 0;
  137. failed:
  138. message (D_ERROR, _("Changes to file lost"), "%s", vfs_path_get_last_path_str (filename_vpath));
  139. if (fdout != -1)
  140. mc_close (fdout);
  141. if (fdin != -1)
  142. close (fdin);
  143. unlink (local);
  144. return -1;
  145. }
  146. /* --------------------------------------------------------------------------------------------- */
  147. /*** public functions ****************************************************************************/
  148. /* --------------------------------------------------------------------------------------------- */
  149. int
  150. mc_open (const vfs_path_t * vpath, int flags, ...)
  151. {
  152. int mode = 0, result = -1;
  153. const vfs_path_element_t *path_element;
  154. if (vpath == NULL)
  155. return -1;
  156. /* Get the mode flag */
  157. if (flags & O_CREAT)
  158. {
  159. va_list ap;
  160. va_start (ap, flags);
  161. mode = va_arg (ap, int);
  162. va_end (ap);
  163. }
  164. path_element = vfs_path_get_by_index (vpath, -1);
  165. if (vfs_path_element_valid (path_element) && path_element->class->open != NULL)
  166. {
  167. void *info;
  168. /* open must be supported */
  169. info = path_element->class->open (vpath, flags, mode);
  170. if (info == NULL)
  171. errno = vfs_ferrno (path_element->class);
  172. else
  173. result = vfs_new_handle (path_element->class, info);
  174. }
  175. else
  176. errno = -EOPNOTSUPP;
  177. return result;
  178. }
  179. /* --------------------------------------------------------------------------------------------- */
  180. /* *INDENT-OFF* */
  181. #define MC_NAMEOP(name, inarg, callarg) \
  182. int mc_##name inarg \
  183. { \
  184. int result; \
  185. const vfs_path_element_t *path_element; \
  186. \
  187. if (vpath == NULL) \
  188. return -1; \
  189. \
  190. path_element = vfs_path_get_by_index (vpath, -1); \
  191. if (!vfs_path_element_valid (path_element)) \
  192. { \
  193. return -1; \
  194. } \
  195. \
  196. result = path_element->class->name != NULL ? path_element->class->name callarg : -1; \
  197. if (result == -1) \
  198. errno = path_element->class->name != NULL ? vfs_ferrno (path_element->class) : E_NOTSUPP; \
  199. return result; \
  200. }
  201. MC_NAMEOP (chmod, (const vfs_path_t *vpath, mode_t mode), (vpath, mode))
  202. MC_NAMEOP (chown, (const vfs_path_t *vpath, uid_t owner, gid_t group), (vpath, owner, group))
  203. MC_NAMEOP (utime, (const vfs_path_t *vpath, struct utimbuf * times), (vpath, times))
  204. MC_NAMEOP (readlink, (const vfs_path_t *vpath, char *buf, size_t bufsiz), (vpath, buf, bufsiz))
  205. MC_NAMEOP (unlink, (const vfs_path_t *vpath), (vpath))
  206. MC_NAMEOP (mkdir, (const vfs_path_t *vpath, mode_t mode), (vpath, mode))
  207. MC_NAMEOP (rmdir, (const vfs_path_t *vpath), (vpath))
  208. MC_NAMEOP (mknod, (const vfs_path_t *vpath, mode_t mode, dev_t dev), (vpath, mode, dev))
  209. /* *INDENT-ON* */
  210. /* --------------------------------------------------------------------------------------------- */
  211. int
  212. mc_symlink (const vfs_path_t * vpath1, const vfs_path_t * vpath2)
  213. {
  214. int result = -1;
  215. if (vpath1 == NULL)
  216. return -1;
  217. if (vpath1 != NULL)
  218. {
  219. const vfs_path_element_t *path_element;
  220. path_element = vfs_path_get_by_index (vpath2, -1);
  221. if (vfs_path_element_valid (path_element))
  222. {
  223. result =
  224. path_element->class->symlink != NULL ?
  225. path_element->class->symlink (vpath1, vpath2) : -1;
  226. if (result == -1)
  227. errno =
  228. path_element->class->symlink != NULL ?
  229. vfs_ferrno (path_element->class) : E_NOTSUPP;
  230. }
  231. }
  232. return result;
  233. }
  234. /* --------------------------------------------------------------------------------------------- */
  235. /* *INDENT-OFF* */
  236. #define MC_HANDLEOP(name, inarg, callarg) \
  237. ssize_t mc_##name inarg \
  238. { \
  239. struct vfs_class *vfs; \
  240. int result; \
  241. if (handle == -1) \
  242. return -1; \
  243. vfs = vfs_class_find_by_handle (handle); \
  244. if (vfs == NULL) \
  245. return -1; \
  246. result = vfs->name != NULL ? vfs->name callarg : -1; \
  247. if (result == -1) \
  248. errno = vfs->name != NULL ? vfs_ferrno (vfs) : E_NOTSUPP; \
  249. return result; \
  250. }
  251. MC_HANDLEOP (read, (int handle, void *buffer, size_t count), (vfs_class_data_find_by_handle (handle), buffer, count))
  252. MC_HANDLEOP (write, (int handle, const void *buf, size_t nbyte), (vfs_class_data_find_by_handle (handle), buf, nbyte))
  253. /* --------------------------------------------------------------------------------------------- */
  254. #define MC_RENAMEOP(name) \
  255. int mc_##name (const vfs_path_t *vpath1, const vfs_path_t *vpath2) \
  256. { \
  257. int result; \
  258. const vfs_path_element_t *path_element1; \
  259. const vfs_path_element_t *path_element2; \
  260. \
  261. if (vpath1 == NULL || vpath2 == NULL) \
  262. return -1; \
  263. \
  264. path_element1 = vfs_path_get_by_index (vpath1, (-1)); \
  265. path_element2 = vfs_path_get_by_index (vpath2, (-1)); \
  266. \
  267. if (!vfs_path_element_valid (path_element1) || !vfs_path_element_valid (path_element2) || \
  268. path_element1->class != path_element2->class) \
  269. { \
  270. errno = EXDEV; \
  271. return -1; \
  272. }\
  273. \
  274. result = path_element1->class->name != NULL \
  275. ? path_element1->class->name (vpath1, vpath2) \
  276. : -1; \
  277. if (result == -1) \
  278. errno = path_element1->class->name != NULL ? vfs_ferrno (path_element1->class) : E_NOTSUPP; \
  279. return result; \
  280. }
  281. MC_RENAMEOP (link)
  282. MC_RENAMEOP (rename)
  283. /* *INDENT-ON* */
  284. /* --------------------------------------------------------------------------------------------- */
  285. int
  286. mc_ctl (int handle, int ctlop, void *arg)
  287. {
  288. struct vfs_class *vfs = vfs_class_find_by_handle (handle);
  289. if (vfs == NULL)
  290. return 0;
  291. return vfs->ctl ? (*vfs->ctl) (vfs_class_data_find_by_handle (handle), ctlop, arg) : 0;
  292. }
  293. /* --------------------------------------------------------------------------------------------- */
  294. int
  295. mc_setctl (const vfs_path_t * vpath, int ctlop, void *arg)
  296. {
  297. int result = -1;
  298. const vfs_path_element_t *path_element;
  299. if (vpath == NULL)
  300. vfs_die ("You don't want to pass NULL to mc_setctl.");
  301. path_element = vfs_path_get_by_index (vpath, -1);
  302. if (vfs_path_element_valid (path_element))
  303. result =
  304. path_element->class->setctl != NULL ? path_element->class->setctl (vpath,
  305. ctlop, arg) : 0;
  306. return result;
  307. }
  308. /* --------------------------------------------------------------------------------------------- */
  309. int
  310. mc_close (int handle)
  311. {
  312. struct vfs_class *vfs;
  313. int result;
  314. if (handle == -1 || !vfs_class_data_find_by_handle (handle))
  315. return -1;
  316. vfs = vfs_class_find_by_handle (handle);
  317. if (vfs == NULL)
  318. return -1;
  319. if (handle < 3)
  320. return close (handle);
  321. if (!vfs->close)
  322. vfs_die ("VFS must support close.\n");
  323. result = (*vfs->close) (vfs_class_data_find_by_handle (handle));
  324. vfs_free_handle (handle);
  325. if (result == -1)
  326. errno = vfs_ferrno (vfs);
  327. return result;
  328. }
  329. /* --------------------------------------------------------------------------------------------- */
  330. DIR *
  331. mc_opendir (const vfs_path_t * vpath)
  332. {
  333. int handle, *handlep;
  334. void *info;
  335. vfs_path_element_t *path_element;
  336. if (vpath == NULL)
  337. return NULL;
  338. path_element = (vfs_path_element_t *) vfs_path_get_by_index (vpath, -1);
  339. if (!vfs_path_element_valid (path_element))
  340. {
  341. errno = E_NOTSUPP;
  342. return NULL;
  343. }
  344. info = path_element->class->opendir ? (*path_element->class->opendir) (vpath) : NULL;
  345. if (info == NULL)
  346. {
  347. errno = path_element->class->opendir ? vfs_ferrno (path_element->class) : E_NOTSUPP;
  348. return NULL;
  349. }
  350. path_element->dir.info = info;
  351. #ifdef HAVE_CHARSET
  352. path_element->dir.converter = (path_element->encoding != NULL) ?
  353. str_crt_conv_from (path_element->encoding) : str_cnv_from_term;
  354. if (path_element->dir.converter == INVALID_CONV)
  355. path_element->dir.converter = str_cnv_from_term;
  356. #endif
  357. handle = vfs_new_handle (path_element->class, vfs_path_element_clone (path_element));
  358. handlep = g_new (int, 1);
  359. *handlep = handle;
  360. return (DIR *) handlep;
  361. }
  362. /* --------------------------------------------------------------------------------------------- */
  363. struct dirent *
  364. mc_readdir (DIR * dirp)
  365. {
  366. int handle;
  367. struct vfs_class *vfs;
  368. struct dirent *entry = NULL;
  369. vfs_path_element_t *vfs_path_element;
  370. if (!mc_readdir_result)
  371. {
  372. /* We can't just allocate struct dirent as (see man dirent.h)
  373. * struct dirent has VERY nonnaive semantics of allocating
  374. * d_name in it. Moreover, linux's glibc-2.9 allocates dirents _less_,
  375. * than 'sizeof (struct dirent)' making full bitwise (sizeof dirent) copy
  376. * heap corrupter. So, allocate longliving dirent with at least
  377. * (MAXNAMLEN + 1) for d_name in it.
  378. * Strictly saying resulting dirent is unusable as we don't adjust internal
  379. * structures, holding dirent size. But we don't use it in libc infrastructure.
  380. * TODO: to make simpler homemade dirent-alike structure.
  381. */
  382. mc_readdir_result = (struct dirent *) g_malloc (sizeof (struct dirent) + MAXNAMLEN + 1);
  383. }
  384. if (!dirp)
  385. {
  386. errno = EFAULT;
  387. return NULL;
  388. }
  389. handle = *(int *) dirp;
  390. vfs = vfs_class_find_by_handle (handle);
  391. if (vfs == NULL)
  392. return NULL;
  393. vfs_path_element = vfs_class_data_find_by_handle (handle);
  394. if (vfs->readdir)
  395. {
  396. entry = (*vfs->readdir) (vfs_path_element->dir.info);
  397. if (entry == NULL)
  398. return NULL;
  399. g_string_set_size (vfs_str_buffer, 0);
  400. #ifdef HAVE_CHARSET
  401. str_vfs_convert_from (vfs_path_element->dir.converter, entry->d_name, vfs_str_buffer);
  402. #else
  403. g_string_assign (vfs_str_buffer, entry->d_name);
  404. #endif
  405. mc_readdir_result->d_ino = entry->d_ino;
  406. g_strlcpy (mc_readdir_result->d_name, vfs_str_buffer->str, MAXNAMLEN + 1);
  407. }
  408. if (entry == NULL)
  409. errno = vfs->readdir ? vfs_ferrno (vfs) : E_NOTSUPP;
  410. return (entry != NULL) ? mc_readdir_result : NULL;
  411. }
  412. /* --------------------------------------------------------------------------------------------- */
  413. int
  414. mc_closedir (DIR * dirp)
  415. {
  416. int handle = *(int *) dirp;
  417. struct vfs_class *vfs;
  418. int result = -1;
  419. vfs = vfs_class_find_by_handle (handle);
  420. if (vfs != NULL)
  421. {
  422. vfs_path_element_t *vfs_path_element;
  423. vfs_path_element = vfs_class_data_find_by_handle (handle);
  424. #ifdef HAVE_CHARSET
  425. if (vfs_path_element->dir.converter != str_cnv_from_term)
  426. {
  427. str_close_conv (vfs_path_element->dir.converter);
  428. vfs_path_element->dir.converter = INVALID_CONV;
  429. }
  430. #endif
  431. result = vfs->closedir ? (*vfs->closedir) (vfs_path_element->dir.info) : -1;
  432. vfs_free_handle (handle);
  433. vfs_path_element_free (vfs_path_element);
  434. }
  435. g_free (dirp);
  436. return result;
  437. }
  438. /* --------------------------------------------------------------------------------------------- */
  439. int
  440. mc_stat (const vfs_path_t * vpath, struct stat *buf)
  441. {
  442. int result = -1;
  443. const vfs_path_element_t *path_element;
  444. if (vpath == NULL)
  445. return -1;
  446. path_element = vfs_path_get_by_index (vpath, -1);
  447. if (vfs_path_element_valid (path_element))
  448. {
  449. result = path_element->class->stat ? (*path_element->class->stat) (vpath, buf) : -1;
  450. if (result == -1)
  451. errno = path_element->class->name ? vfs_ferrno (path_element->class) : E_NOTSUPP;
  452. }
  453. return result;
  454. }
  455. /* --------------------------------------------------------------------------------------------- */
  456. int
  457. mc_lstat (const vfs_path_t * vpath, struct stat *buf)
  458. {
  459. int result = -1;
  460. const vfs_path_element_t *path_element;
  461. if (vpath == NULL)
  462. return -1;
  463. path_element = vfs_path_get_by_index (vpath, -1);
  464. if (vfs_path_element_valid (path_element))
  465. {
  466. result = path_element->class->lstat ? (*path_element->class->lstat) (vpath, buf) : -1;
  467. if (result == -1)
  468. errno = path_element->class->name ? vfs_ferrno (path_element->class) : E_NOTSUPP;
  469. }
  470. return result;
  471. }
  472. /* --------------------------------------------------------------------------------------------- */
  473. int
  474. mc_fstat (int handle, struct stat *buf)
  475. {
  476. struct vfs_class *vfs;
  477. int result;
  478. if (handle == -1)
  479. return -1;
  480. vfs = vfs_class_find_by_handle (handle);
  481. if (vfs == NULL)
  482. return -1;
  483. result = vfs->fstat ? (*vfs->fstat) (vfs_class_data_find_by_handle (handle), buf) : -1;
  484. if (result == -1)
  485. errno = vfs->name ? vfs_ferrno (vfs) : E_NOTSUPP;
  486. return result;
  487. }
  488. /* --------------------------------------------------------------------------------------------- */
  489. vfs_path_t *
  490. mc_getlocalcopy (const vfs_path_t * pathname_vpath)
  491. {
  492. vfs_path_t *result = NULL;
  493. const vfs_path_element_t *path_element;
  494. if (pathname_vpath == NULL)
  495. return NULL;
  496. path_element = vfs_path_get_by_index (pathname_vpath, -1);
  497. if (vfs_path_element_valid (path_element))
  498. {
  499. result = path_element->class->getlocalcopy != NULL ?
  500. path_element->class->getlocalcopy (pathname_vpath) :
  501. mc_def_getlocalcopy (pathname_vpath);
  502. if (result == NULL)
  503. errno = vfs_ferrno (path_element->class);
  504. }
  505. return result;
  506. }
  507. /* --------------------------------------------------------------------------------------------- */
  508. int
  509. mc_ungetlocalcopy (const vfs_path_t * pathname_vpath, const vfs_path_t * local_vpath,
  510. gboolean has_changed)
  511. {
  512. int return_value = -1;
  513. const vfs_path_element_t *path_element;
  514. if (pathname_vpath == NULL)
  515. return -1;
  516. path_element = vfs_path_get_by_index (pathname_vpath, -1);
  517. if (vfs_path_element_valid (path_element))
  518. return_value = path_element->class->ungetlocalcopy != NULL ?
  519. path_element->class->ungetlocalcopy (pathname_vpath, local_vpath, has_changed) :
  520. mc_def_ungetlocalcopy (pathname_vpath, local_vpath, has_changed);
  521. return return_value;
  522. }
  523. /* --------------------------------------------------------------------------------------------- */
  524. /**
  525. * VFS chdir.
  526. *
  527. * @param vpath VFS-path
  528. *
  529. * @return 0 on success, -1 on failure.
  530. */
  531. int
  532. mc_chdir (const vfs_path_t * vpath)
  533. {
  534. struct vfs_class *old_vfs;
  535. vfsid old_vfsid;
  536. int result;
  537. const vfs_path_element_t *path_element;
  538. vfs_path_t *cd_vpath;
  539. if (vpath == NULL)
  540. return -1;
  541. if (vpath->relative)
  542. cd_vpath = vfs_path_to_absolute (vpath);
  543. else
  544. cd_vpath = vfs_path_clone (vpath);
  545. path_element = vfs_path_get_by_index (cd_vpath, -1);
  546. if (!vfs_path_element_valid (path_element) || path_element->class->chdir == NULL)
  547. {
  548. goto error_end;
  549. }
  550. result = (*path_element->class->chdir) (cd_vpath);
  551. if (result == -1)
  552. {
  553. errno = vfs_ferrno (path_element->class);
  554. goto error_end;
  555. }
  556. old_vfsid = vfs_getid (vfs_get_raw_current_dir ());
  557. old_vfs = current_vfs;
  558. /* Actually change directory */
  559. vfs_set_raw_current_dir (cd_vpath);
  560. current_vfs = path_element->class;
  561. /* This function uses the new current_dir implicitly */
  562. vfs_stamp_create (old_vfs, old_vfsid);
  563. /* Sometimes we assume no trailing slash on cwd */
  564. path_element = vfs_path_get_by_index (vfs_get_raw_current_dir (), -1);
  565. if (vfs_path_element_valid (path_element))
  566. {
  567. if (*path_element->path != '\0')
  568. {
  569. char *p;
  570. p = strchr (path_element->path, 0) - 1;
  571. if (*p == PATH_SEP && p > path_element->path)
  572. *p = '\0';
  573. }
  574. #ifdef ENABLE_VFS_NET
  575. {
  576. struct vfs_s_super *super;
  577. super = vfs_get_super_by_vpath (vpath);
  578. if (super != NULL && super->path_element != NULL)
  579. {
  580. g_free (super->path_element->path);
  581. super->path_element->path = g_strdup (path_element->path);
  582. }
  583. }
  584. #endif /* ENABLE_VFS_NET */
  585. }
  586. return 0;
  587. error_end:
  588. vfs_path_free (cd_vpath);
  589. return -1;
  590. }
  591. /* --------------------------------------------------------------------------------------------- */
  592. off_t
  593. mc_lseek (int fd, off_t offset, int whence)
  594. {
  595. struct vfs_class *vfs;
  596. off_t result;
  597. if (fd == -1)
  598. return -1;
  599. vfs = vfs_class_find_by_handle (fd);
  600. if (vfs == NULL)
  601. return -1;
  602. result = vfs->lseek ? (*vfs->lseek) (vfs_class_data_find_by_handle (fd), offset, whence) : -1;
  603. if (result == -1)
  604. errno = vfs->lseek ? vfs_ferrno (vfs) : E_NOTSUPP;
  605. return result;
  606. }
  607. /* --------------------------------------------------------------------------------------------- */
  608. /* Following code heavily borrows from libiberty, mkstemps.c */
  609. /*
  610. * Arguments:
  611. * pname (output) - pointer to the name of the temp file (needs g_free).
  612. * NULL if the function fails.
  613. * prefix - part of the filename before the random part.
  614. * Prepend $TMPDIR or /tmp if there are no path separators.
  615. * suffix - if not NULL, part of the filename after the random part.
  616. *
  617. * Result:
  618. * handle of the open file or -1 if couldn't open any.
  619. */
  620. int
  621. mc_mkstemps (vfs_path_t ** pname_vpath, const char *prefix, const char *suffix)
  622. {
  623. char *p1, *p2;
  624. int fd;
  625. if (strchr (prefix, PATH_SEP) != NULL)
  626. p1 = g_strdup (prefix);
  627. else
  628. {
  629. /* Add prefix first to find the position of XXXXXX */
  630. p1 = g_build_filename (mc_tmpdir (), prefix, (char *) NULL);
  631. }
  632. p2 = g_strconcat (p1, "XXXXXX", suffix, (char *) NULL);
  633. g_free (p1);
  634. fd = g_mkstemp (p2);
  635. if (fd >= 0)
  636. *pname_vpath = vfs_path_from_str (p2);
  637. else
  638. {
  639. *pname_vpath = NULL;
  640. fd = -1;
  641. }
  642. g_free (p2);
  643. return fd;
  644. }
  645. /* --------------------------------------------------------------------------------------------- */
  646. /**
  647. * Return the directory where mc should keep its temporary files.
  648. * This directory is (in Bourne shell terms) "${TMPDIR=/tmp}/mc-$USER"
  649. * When called the first time, the directory is created if needed.
  650. * The first call should be done early, since we are using fprintf()
  651. * and not message() to report possible problems.
  652. */
  653. const char *
  654. mc_tmpdir (void)
  655. {
  656. static char buffer[64];
  657. static const char *tmpdir = NULL;
  658. const char *sys_tmp;
  659. struct passwd *pwd;
  660. struct stat st;
  661. const char *error = NULL;
  662. /* Check if already correctly initialized */
  663. if (tmpdir && lstat (tmpdir, &st) == 0 && S_ISDIR (st.st_mode) &&
  664. st.st_uid == getuid () && (st.st_mode & 0777) == 0700)
  665. return tmpdir;
  666. sys_tmp = getenv ("TMPDIR");
  667. if (!sys_tmp || sys_tmp[0] != '/')
  668. {
  669. sys_tmp = TMPDIR_DEFAULT;
  670. }
  671. pwd = getpwuid (getuid ());
  672. if (pwd)
  673. g_snprintf (buffer, sizeof (buffer), "%s/mc-%s", sys_tmp, pwd->pw_name);
  674. else
  675. g_snprintf (buffer, sizeof (buffer), "%s/mc-%lu", sys_tmp, (unsigned long) getuid ());
  676. canonicalize_pathname (buffer);
  677. /* Try to create directory */
  678. if (mkdir (buffer, S_IRWXU) != 0)
  679. {
  680. if (errno == EEXIST && lstat (buffer, &st) == 0)
  681. {
  682. /* Sanity check for existing directory */
  683. if (!S_ISDIR (st.st_mode))
  684. error = _("%s is not a directory\n");
  685. else if (st.st_uid != getuid ())
  686. error = _("Directory %s is not owned by you\n");
  687. else if (((st.st_mode & 0777) != 0700) && (chmod (buffer, 0700) != 0))
  688. error = _("Cannot set correct permissions for directory %s\n");
  689. }
  690. else
  691. {
  692. fprintf (stderr,
  693. _("Cannot create temporary directory %s: %s\n"),
  694. buffer, unix_error_string (errno));
  695. error = "";
  696. }
  697. }
  698. if (error != NULL)
  699. {
  700. int test_fd;
  701. char *fallback_prefix;
  702. gboolean fallback_ok = FALSE;
  703. vfs_path_t *test_vpath;
  704. if (*error)
  705. fprintf (stderr, error, buffer);
  706. /* Test if sys_tmp is suitable for temporary files */
  707. fallback_prefix = g_strdup_printf ("%s/mctest", sys_tmp);
  708. test_fd = mc_mkstemps (&test_vpath, fallback_prefix, NULL);
  709. g_free (fallback_prefix);
  710. if (test_fd != -1)
  711. {
  712. close (test_fd);
  713. test_fd = open (vfs_path_as_str (test_vpath), O_RDONLY);
  714. if (test_fd != -1)
  715. {
  716. close (test_fd);
  717. unlink (vfs_path_as_str (test_vpath));
  718. fallback_ok = TRUE;
  719. }
  720. }
  721. if (fallback_ok)
  722. {
  723. fprintf (stderr, _("Temporary files will be created in %s\n"), sys_tmp);
  724. g_snprintf (buffer, sizeof (buffer), "%s", sys_tmp);
  725. error = NULL;
  726. }
  727. else
  728. {
  729. fprintf (stderr, _("Temporary files will not be created\n"));
  730. g_snprintf (buffer, sizeof (buffer), "%s", "/dev/null/");
  731. }
  732. vfs_path_free (test_vpath);
  733. fprintf (stderr, "%s\n", _("Press any key to continue..."));
  734. getc (stdin);
  735. }
  736. tmpdir = buffer;
  737. if (!error)
  738. g_setenv ("MC_TMPDIR", tmpdir, TRUE);
  739. return tmpdir;
  740. }
  741. /* --------------------------------------------------------------------------------------------- */