system.c 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093
  1. /* System-dependent calls for tar.
  2. Copyright 2003-2023 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU General Public License as published by the
  5. Free Software Foundation; either version 3, or (at your option) any later
  6. version.
  7. This program is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
  10. Public License for more details.
  11. You should have received a copy of the GNU General Public License along
  12. with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. #include <system.h>
  14. #include <system-ioctl.h>
  15. #include "common.h"
  16. #include <priv-set.h>
  17. #include <rmt.h>
  18. #include <signal.h>
  19. #include <wordsplit.h>
  20. #include <poll.h>
  21. #include <parse-datetime.h>
  22. static _Noreturn void
  23. xexec (const char *cmd)
  24. {
  25. char *argv[4];
  26. argv[0] = (char *) "/bin/sh";
  27. argv[1] = (char *) "-c";
  28. argv[2] = (char *) cmd;
  29. argv[3] = NULL;
  30. execv ("/bin/sh", argv);
  31. exec_fatal (cmd);
  32. }
  33. /* True if the archive is seekable via ioctl and MTIOCTOP,
  34. or if it is not known whether it is seekable.
  35. False if it is known to be not seekable. */
  36. static bool mtioseekable_archive;
  37. bool
  38. mtioseek (bool count_files, off_t count)
  39. {
  40. if (mtioseekable_archive)
  41. {
  42. #ifdef MTIOCTOP
  43. struct mtop operation;
  44. operation.mt_op = (count_files
  45. ? (count < 0 ? MTBSF : MTFSF)
  46. : (count < 0 ? MTBSR : MTFSR));
  47. if (! (count < 0
  48. ? INT_SUBTRACT_WRAPV (0, count, &operation.mt_count)
  49. : INT_ADD_WRAPV (count, 0, &operation.mt_count))
  50. && (0 <= rmtioctl (archive, MTIOCTOP, &operation)
  51. || (errno == EIO
  52. && 0 <= rmtioctl (archive, MTIOCTOP, &operation))))
  53. return true;
  54. #endif
  55. mtioseekable_archive = false;
  56. }
  57. return false;
  58. }
  59. #if MSDOS
  60. bool
  61. sys_get_archive_stat (void)
  62. {
  63. return 0;
  64. }
  65. bool
  66. sys_file_is_archive (struct tar_stat_info *p)
  67. {
  68. return false;
  69. }
  70. void
  71. sys_detect_dev_null_output (void)
  72. {
  73. static char const dev_null[] = "nul";
  74. dev_null_output = (strcmp (archive_name_array[0], dev_null) == 0
  75. || (! _isrmt (archive)));
  76. }
  77. void
  78. sys_wait_for_child (pid_t child_pid, bool eof)
  79. {
  80. }
  81. void
  82. sys_spawn_shell (void)
  83. {
  84. spawnl (P_WAIT, getenv ("COMSPEC"), "-", 0);
  85. }
  86. /* stat() in djgpp's C library gives a constant number of 42 as the
  87. uid and gid of a file. So, comparing an FTP'ed archive just after
  88. unpack would fail on MSDOS. */
  89. bool
  90. sys_compare_uid (struct stat *a, struct stat *b)
  91. {
  92. return true;
  93. }
  94. bool
  95. sys_compare_gid (struct stat *a, struct stat *b)
  96. {
  97. return true;
  98. }
  99. void
  100. sys_compare_links (struct stat *link_data, struct stat *stat_data)
  101. {
  102. return true;
  103. }
  104. int
  105. sys_truncate (int fd)
  106. {
  107. return write (fd, "", 0);
  108. }
  109. size_t
  110. sys_write_archive_buffer (void)
  111. {
  112. return full_write (archive, record_start->buffer, record_size);
  113. }
  114. /* Set ARCHIVE for writing, then compressing an archive. */
  115. void
  116. sys_child_open_for_compress (void)
  117. {
  118. FATAL_ERROR ((0, 0, _("Cannot use compressed or remote archives")));
  119. }
  120. /* Set ARCHIVE for uncompressing, then reading an archive. */
  121. void
  122. sys_child_open_for_uncompress (void)
  123. {
  124. FATAL_ERROR ((0, 0, _("Cannot use compressed or remote archives")));
  125. }
  126. int
  127. sys_exec_setmtime_script (const char *script_name,
  128. int dirfd,
  129. const char *file_name,
  130. const char *fmt,
  131. struct timespec *ts)
  132. {
  133. FATAL_ERROR ((0, 0, _("--set-mtime-command not implemented on this platform")));
  134. }
  135. #else
  136. extern union block *record_start; /* FIXME */
  137. bool
  138. sys_get_archive_stat (void)
  139. {
  140. bool remote = _isrmt (archive);
  141. mtioseekable_archive = true;
  142. if (!remote && 0 <= archive && fstat (archive, &archive_stat) == 0)
  143. {
  144. if (!S_ISCHR (archive_stat.st_mode))
  145. mtioseekable_archive = false;
  146. return true;
  147. }
  148. else
  149. {
  150. /* FIXME: This memset should not be needed. It is present only
  151. because other parts of tar may incorrectly access
  152. archive_stat even if it's not the archive status. */
  153. memset (&archive_stat, 0, sizeof archive_stat);
  154. return remote;
  155. }
  156. }
  157. bool
  158. sys_file_is_archive (struct tar_stat_info *p)
  159. {
  160. return (!dev_null_output && !_isrmt (archive)
  161. && p->stat.st_dev == archive_stat.st_dev
  162. && p->stat.st_ino == archive_stat.st_ino);
  163. }
  164. static char const dev_null[] = "/dev/null";
  165. /* Detect if outputting to "/dev/null". */
  166. void
  167. sys_detect_dev_null_output (void)
  168. {
  169. static struct stat dev_null_stat;
  170. dev_null_output = (strcmp (archive_name_array[0], dev_null) == 0
  171. || (! _isrmt (archive)
  172. && S_ISCHR (archive_stat.st_mode)
  173. && (dev_null_stat.st_ino != 0
  174. || stat (dev_null, &dev_null_stat) == 0)
  175. && archive_stat.st_ino == dev_null_stat.st_ino
  176. && archive_stat.st_dev == dev_null_stat.st_dev));
  177. }
  178. void
  179. sys_wait_for_child (pid_t child_pid, bool eof)
  180. {
  181. if (child_pid)
  182. {
  183. int wait_status;
  184. while (waitpid (child_pid, &wait_status, 0) == -1)
  185. if (errno != EINTR)
  186. {
  187. waitpid_error (use_compress_program_option);
  188. break;
  189. }
  190. if (WIFSIGNALED (wait_status))
  191. {
  192. int sig = WTERMSIG (wait_status);
  193. if (!(!eof && sig == SIGPIPE))
  194. FATAL_ERROR ((0, 0, _("Child died with signal %d"), sig));
  195. }
  196. else if (WEXITSTATUS (wait_status) != 0)
  197. FATAL_ERROR ((0, 0, _("Child returned status %d"),
  198. WEXITSTATUS (wait_status)));
  199. }
  200. }
  201. void
  202. sys_spawn_shell (void)
  203. {
  204. pid_t child;
  205. const char *shell = getenv ("SHELL");
  206. if (! shell)
  207. shell = "/bin/sh";
  208. child = xfork ();
  209. if (child == 0)
  210. {
  211. priv_set_restore_linkdir ();
  212. execlp (shell, "-sh", "-i", NULL);
  213. exec_fatal (shell);
  214. }
  215. else
  216. {
  217. int wait_status;
  218. while (waitpid (child, &wait_status, 0) == -1)
  219. if (errno != EINTR)
  220. {
  221. waitpid_error (shell);
  222. break;
  223. }
  224. }
  225. }
  226. bool
  227. sys_compare_uid (struct stat *a, struct stat *b)
  228. {
  229. return a->st_uid == b->st_uid;
  230. }
  231. bool
  232. sys_compare_gid (struct stat *a, struct stat *b)
  233. {
  234. return a->st_gid == b->st_gid;
  235. }
  236. bool
  237. sys_compare_links (struct stat *link_data, struct stat *stat_data)
  238. {
  239. return stat_data->st_dev == link_data->st_dev
  240. && stat_data->st_ino == link_data->st_ino;
  241. }
  242. int
  243. sys_truncate (int fd)
  244. {
  245. off_t pos = lseek (fd, (off_t) 0, SEEK_CUR);
  246. return pos < 0 ? -1 : ftruncate (fd, pos);
  247. }
  248. /* Return nonzero if NAME is the name of a regular file, or if the file
  249. does not exist (so it would be created as a regular file). */
  250. static int
  251. is_regular_file (const char *name)
  252. {
  253. struct stat stbuf;
  254. if (stat (name, &stbuf) == 0)
  255. return S_ISREG (stbuf.st_mode);
  256. else
  257. return errno == ENOENT;
  258. }
  259. size_t
  260. sys_write_archive_buffer (void)
  261. {
  262. return rmtwrite (archive, record_start->buffer, record_size);
  263. }
  264. #define PREAD 0 /* read file descriptor from pipe() */
  265. #define PWRITE 1 /* write file descriptor from pipe() */
  266. /* Work around GCC bug 109839. */
  267. #if 13 <= __GNUC__
  268. # pragma GCC diagnostic ignored "-Wanalyzer-fd-leak"
  269. #endif
  270. /* Duplicate file descriptor FROM into becoming INTO.
  271. INTO is closed first and has to be the next available slot. */
  272. static void
  273. xdup2 (int from, int into)
  274. {
  275. if (from != into)
  276. {
  277. if (dup2 (from, into) < 0)
  278. {
  279. int e = errno;
  280. FATAL_ERROR ((0, e, _("Cannot dup2")));
  281. }
  282. xclose (from);
  283. }
  284. }
  285. /* Propagate any failure of the grandchild back to the parent. */
  286. static _Noreturn void
  287. wait_for_grandchild (pid_t pid)
  288. {
  289. int wait_status;
  290. int exit_code = 0;
  291. while (waitpid (pid, &wait_status, 0) == -1)
  292. if (errno != EINTR)
  293. {
  294. waitpid_error (use_compress_program_option);
  295. break;
  296. }
  297. if (WIFSIGNALED (wait_status))
  298. raise (WTERMSIG (wait_status));
  299. else if (WEXITSTATUS (wait_status) != 0)
  300. exit_code = WEXITSTATUS (wait_status);
  301. exit (exit_code);
  302. }
  303. /* Set ARCHIVE for writing, then compressing an archive. */
  304. pid_t
  305. sys_child_open_for_compress (void)
  306. {
  307. int parent_pipe[2];
  308. int child_pipe[2];
  309. pid_t grandchild_pid;
  310. pid_t child_pid;
  311. signal (SIGPIPE, SIG_IGN);
  312. xpipe (parent_pipe);
  313. child_pid = xfork ();
  314. if (child_pid > 0)
  315. {
  316. /* The parent tar is still here! Just clean up. */
  317. archive = parent_pipe[PWRITE];
  318. xclose (parent_pipe[PREAD]);
  319. return child_pid;
  320. }
  321. /* The new born child tar is here! */
  322. set_program_name (_("tar (child)"));
  323. signal (SIGPIPE, SIG_DFL);
  324. xdup2 (parent_pipe[PREAD], STDIN_FILENO);
  325. xclose (parent_pipe[PWRITE]);
  326. /* Check if we need a grandchild tar. This happens only if either:
  327. a) the file is to be accessed by rmt: compressor doesn't know how;
  328. b) the file is not a plain file. */
  329. if (!_remdev (archive_name_array[0])
  330. && is_regular_file (archive_name_array[0]))
  331. {
  332. if (backup_option)
  333. maybe_backup_file (archive_name_array[0], 1);
  334. /* We don't need a grandchild tar. Open the archive and launch the
  335. compressor. */
  336. if (strcmp (archive_name_array[0], "-"))
  337. {
  338. archive = creat (archive_name_array[0], MODE_RW);
  339. if (archive < 0)
  340. {
  341. int saved_errno = errno;
  342. if (backup_option)
  343. undo_last_backup ();
  344. errno = saved_errno;
  345. open_fatal (archive_name_array[0]);
  346. }
  347. xdup2 (archive, STDOUT_FILENO);
  348. }
  349. priv_set_restore_linkdir ();
  350. xexec (use_compress_program_option);
  351. }
  352. /* We do need a grandchild tar. */
  353. xpipe (child_pipe);
  354. grandchild_pid = xfork ();
  355. if (grandchild_pid == 0)
  356. {
  357. /* The newborn grandchild tar is here! Launch the compressor. */
  358. set_program_name (_("tar (grandchild)"));
  359. xdup2 (child_pipe[PWRITE], STDOUT_FILENO);
  360. xclose (child_pipe[PREAD]);
  361. priv_set_restore_linkdir ();
  362. xexec (use_compress_program_option);
  363. }
  364. /* The child tar is still here! */
  365. /* Prepare for reblocking the data from the compressor into the archive. */
  366. xdup2 (child_pipe[PREAD], STDIN_FILENO);
  367. xclose (child_pipe[PWRITE]);
  368. if (strcmp (archive_name_array[0], "-") == 0)
  369. archive = STDOUT_FILENO;
  370. else
  371. {
  372. archive = rmtcreat (archive_name_array[0], MODE_RW, rsh_command_option);
  373. if (archive < 0)
  374. open_fatal (archive_name_array[0]);
  375. }
  376. /* Let's read out of the stdin pipe and write an archive. */
  377. while (1)
  378. {
  379. size_t status = 0;
  380. char *cursor;
  381. size_t length;
  382. /* Assemble a record. */
  383. for (length = 0, cursor = record_start->buffer;
  384. length < record_size;
  385. length += status, cursor += status)
  386. {
  387. size_t size = record_size - length;
  388. status = safe_read (STDIN_FILENO, cursor, size);
  389. if (status == SAFE_READ_ERROR)
  390. read_fatal (use_compress_program_option);
  391. if (status == 0)
  392. break;
  393. }
  394. /* Copy the record. */
  395. if (status == 0)
  396. {
  397. /* We hit the end of the file. Write last record at
  398. full length, as the only role of the grandchild is
  399. doing proper reblocking. */
  400. if (length > 0)
  401. {
  402. memset (record_start->buffer + length, 0, record_size - length);
  403. status = sys_write_archive_buffer ();
  404. if (status != record_size)
  405. archive_write_error (status);
  406. }
  407. /* There is nothing else to read, break out. */
  408. break;
  409. }
  410. status = sys_write_archive_buffer ();
  411. if (status != record_size)
  412. archive_write_error (status);
  413. }
  414. wait_for_grandchild (grandchild_pid);
  415. }
  416. static void
  417. run_decompress_program (void)
  418. {
  419. int i;
  420. const char *p, *prog = NULL;
  421. struct wordsplit ws;
  422. int wsflags = (WRDSF_DEFFLAGS | WRDSF_ENV | WRDSF_DOOFFS) & ~WRDSF_NOVAR;
  423. ws.ws_env = (const char **) environ;
  424. ws.ws_offs = 1;
  425. for (p = first_decompress_program (&i); p; p = next_decompress_program (&i))
  426. {
  427. if (prog)
  428. {
  429. WARNOPT (WARN_DECOMPRESS_PROGRAM,
  430. (0, errno, _("cannot run %s"), prog));
  431. WARNOPT (WARN_DECOMPRESS_PROGRAM,
  432. (0, 0, _("trying %s"), p));
  433. }
  434. if (wordsplit (p, &ws, wsflags))
  435. FATAL_ERROR ((0, 0, _("cannot split string '%s': %s"),
  436. p, wordsplit_strerror (&ws)));
  437. wsflags |= WRDSF_REUSE;
  438. memmove(ws.ws_wordv, ws.ws_wordv + ws.ws_offs,
  439. sizeof(ws.ws_wordv[0])*ws.ws_wordc);
  440. ws.ws_wordv[ws.ws_wordc] = (char *) "-d";
  441. prog = p;
  442. execvp (ws.ws_wordv[0], ws.ws_wordv);
  443. ws.ws_wordv[ws.ws_wordc] = NULL;
  444. }
  445. if (!prog)
  446. FATAL_ERROR ((0, 0, _("unable to run decompression program")));
  447. exec_fatal (prog);
  448. }
  449. /* Set ARCHIVE for uncompressing, then reading an archive. */
  450. pid_t
  451. sys_child_open_for_uncompress (void)
  452. {
  453. int parent_pipe[2];
  454. int child_pipe[2];
  455. pid_t grandchild_pid;
  456. pid_t child_pid;
  457. xpipe (parent_pipe);
  458. child_pid = xfork ();
  459. if (child_pid > 0)
  460. {
  461. /* The parent tar is still here! Just clean up. */
  462. archive = parent_pipe[PREAD];
  463. xclose (parent_pipe[PWRITE]);
  464. return child_pid;
  465. }
  466. /* The newborn child tar is here! */
  467. set_program_name (_("tar (child)"));
  468. signal (SIGPIPE, SIG_DFL);
  469. xdup2 (parent_pipe[PWRITE], STDOUT_FILENO);
  470. xclose (parent_pipe[PREAD]);
  471. /* Check if we need a grandchild tar. This happens only if either:
  472. a) we're reading stdin: to force unblocking;
  473. b) the file is to be accessed by rmt: compressor doesn't know how;
  474. c) the file is not a plain file. */
  475. if (strcmp (archive_name_array[0], "-") != 0
  476. && !_remdev (archive_name_array[0])
  477. && is_regular_file (archive_name_array[0]))
  478. {
  479. /* We don't need a grandchild tar. Open the archive and launch the
  480. uncompressor. */
  481. archive = open (archive_name_array[0], O_RDONLY | O_BINARY, MODE_RW);
  482. if (archive < 0)
  483. open_fatal (archive_name_array[0]);
  484. xdup2 (archive, STDIN_FILENO);
  485. priv_set_restore_linkdir ();
  486. run_decompress_program ();
  487. }
  488. /* We do need a grandchild tar. */
  489. xpipe (child_pipe);
  490. grandchild_pid = xfork ();
  491. if (grandchild_pid == 0)
  492. {
  493. /* The newborn grandchild tar is here! Launch the uncompressor. */
  494. set_program_name (_("tar (grandchild)"));
  495. xdup2 (child_pipe[PREAD], STDIN_FILENO);
  496. xclose (child_pipe[PWRITE]);
  497. priv_set_restore_linkdir ();
  498. run_decompress_program ();
  499. }
  500. /* The child tar is still here! */
  501. /* Prepare for unblocking the data from the archive into the
  502. uncompressor. */
  503. xdup2 (child_pipe[PWRITE], STDOUT_FILENO);
  504. xclose (child_pipe[PREAD]);
  505. if (strcmp (archive_name_array[0], "-") == 0)
  506. archive = STDIN_FILENO;
  507. else
  508. archive = rmtopen (archive_name_array[0], O_RDONLY | O_BINARY,
  509. MODE_RW, rsh_command_option);
  510. if (archive < 0)
  511. open_fatal (archive_name_array[0]);
  512. /* Let's read the archive and pipe it into stdout. */
  513. while (1)
  514. {
  515. char *cursor;
  516. size_t maximum;
  517. size_t count;
  518. size_t status;
  519. clear_read_error_count ();
  520. error_loop:
  521. status = rmtread (archive, record_start->buffer, record_size);
  522. if (status == SAFE_READ_ERROR)
  523. {
  524. archive_read_error ();
  525. goto error_loop;
  526. }
  527. if (status == 0)
  528. break;
  529. cursor = record_start->buffer;
  530. maximum = status;
  531. while (maximum)
  532. {
  533. count = maximum < BLOCKSIZE ? maximum : BLOCKSIZE;
  534. if (full_write (STDOUT_FILENO, cursor, count) != count)
  535. write_error (use_compress_program_option);
  536. cursor += count;
  537. maximum -= count;
  538. }
  539. }
  540. xclose (STDOUT_FILENO);
  541. wait_for_grandchild (grandchild_pid);
  542. }
  543. static void
  544. dec_to_env (char const *envar, uintmax_t num)
  545. {
  546. char buf[UINTMAX_STRSIZE_BOUND];
  547. char *numstr;
  548. numstr = STRINGIFY_BIGINT (num, buf);
  549. if (setenv (envar, numstr, 1) != 0)
  550. xalloc_die ();
  551. }
  552. static void
  553. time_to_env (char const *envar, struct timespec t)
  554. {
  555. char buf[TIMESPEC_STRSIZE_BOUND];
  556. if (setenv (envar, code_timespec (t, buf), 1) != 0)
  557. xalloc_die ();
  558. }
  559. static void
  560. oct_to_env (char const *envar, unsigned long num)
  561. {
  562. char buf[1+1+(sizeof(unsigned long)*CHAR_BIT+2)/3];
  563. snprintf (buf, sizeof buf, "0%lo", num);
  564. if (setenv (envar, buf, 1) != 0)
  565. xalloc_die ();
  566. }
  567. static void
  568. str_to_env (char const *envar, char const *str)
  569. {
  570. if (str)
  571. {
  572. if (setenv (envar, str, 1) != 0)
  573. xalloc_die ();
  574. }
  575. else
  576. unsetenv (envar);
  577. }
  578. static void
  579. chr_to_env (char const *envar, char c)
  580. {
  581. char buf[2];
  582. buf[0] = c;
  583. buf[1] = 0;
  584. if (setenv (envar, buf, 1) != 0)
  585. xalloc_die ();
  586. }
  587. static void
  588. stat_to_env (char *name, char type, struct tar_stat_info *st)
  589. {
  590. str_to_env ("TAR_VERSION", PACKAGE_VERSION);
  591. str_to_env ("TAR_ARCHIVE", *archive_name_cursor);
  592. dec_to_env ("TAR_VOLUME", archive_name_cursor - archive_name_array + 1);
  593. dec_to_env ("TAR_BLOCKING_FACTOR", blocking_factor);
  594. str_to_env ("TAR_FORMAT",
  595. archive_format_string (current_format == DEFAULT_FORMAT ?
  596. archive_format : current_format));
  597. chr_to_env ("TAR_FILETYPE", type);
  598. oct_to_env ("TAR_MODE", st->stat.st_mode);
  599. str_to_env ("TAR_FILENAME", name);
  600. str_to_env ("TAR_REALNAME", st->file_name);
  601. str_to_env ("TAR_UNAME", st->uname);
  602. str_to_env ("TAR_GNAME", st->gname);
  603. time_to_env ("TAR_ATIME", st->atime);
  604. time_to_env ("TAR_MTIME", st->mtime);
  605. time_to_env ("TAR_CTIME", st->ctime);
  606. dec_to_env ("TAR_SIZE", st->stat.st_size);
  607. dec_to_env ("TAR_UID", st->stat.st_uid);
  608. dec_to_env ("TAR_GID", st->stat.st_gid);
  609. switch (type)
  610. {
  611. case 'b':
  612. case 'c':
  613. dec_to_env ("TAR_MINOR", minor (st->stat.st_rdev));
  614. dec_to_env ("TAR_MAJOR", major (st->stat.st_rdev));
  615. unsetenv ("TAR_LINKNAME");
  616. break;
  617. case 'l':
  618. case 'h':
  619. unsetenv ("TAR_MINOR");
  620. unsetenv ("TAR_MAJOR");
  621. str_to_env ("TAR_LINKNAME", st->link_name);
  622. break;
  623. default:
  624. unsetenv ("TAR_MINOR");
  625. unsetenv ("TAR_MAJOR");
  626. unsetenv ("TAR_LINKNAME");
  627. break;
  628. }
  629. }
  630. static pid_t global_pid;
  631. static void (*pipe_handler) (int sig);
  632. int
  633. sys_exec_command (char *file_name, int typechar, struct tar_stat_info *st)
  634. {
  635. int p[2];
  636. xpipe (p);
  637. pipe_handler = signal (SIGPIPE, SIG_IGN);
  638. global_pid = xfork ();
  639. if (global_pid != 0)
  640. {
  641. xclose (p[PREAD]);
  642. return p[PWRITE];
  643. }
  644. /* Child */
  645. xdup2 (p[PREAD], STDIN_FILENO);
  646. xclose (p[PWRITE]);
  647. stat_to_env (file_name, typechar, st);
  648. priv_set_restore_linkdir ();
  649. xexec (to_command_option);
  650. }
  651. void
  652. sys_wait_command (void)
  653. {
  654. int status;
  655. if (global_pid < 0)
  656. return;
  657. signal (SIGPIPE, pipe_handler);
  658. while (waitpid (global_pid, &status, 0) == -1)
  659. if (errno != EINTR)
  660. {
  661. global_pid = -1;
  662. waitpid_error (to_command_option);
  663. return;
  664. }
  665. if (WIFEXITED (status))
  666. {
  667. if (!ignore_command_error_option && WEXITSTATUS (status))
  668. ERROR ((0, 0, _("%lu: Child returned status %d"),
  669. (unsigned long) global_pid, WEXITSTATUS (status)));
  670. }
  671. else if (WIFSIGNALED (status))
  672. {
  673. WARN ((0, 0, _("%lu: Child terminated on signal %d"),
  674. (unsigned long) global_pid, WTERMSIG (status)));
  675. }
  676. else
  677. ERROR ((0, 0, _("%lu: Child terminated on unknown reason"),
  678. (unsigned long) global_pid));
  679. global_pid = -1;
  680. }
  681. int
  682. sys_exec_info_script (const char **archive_name, int volume_number)
  683. {
  684. pid_t pid;
  685. char uintbuf[UINTMAX_STRSIZE_BOUND];
  686. int p[2];
  687. static void (*saved_handler) (int sig);
  688. xpipe (p);
  689. saved_handler = signal (SIGPIPE, SIG_IGN);
  690. pid = xfork ();
  691. if (pid != 0)
  692. {
  693. /* Master */
  694. int rc;
  695. int status;
  696. char *buf = NULL;
  697. size_t size = 0;
  698. FILE *fp;
  699. xclose (p[PWRITE]);
  700. fp = fdopen (p[PREAD], "r");
  701. rc = getline (&buf, &size, fp);
  702. fclose (fp);
  703. if (rc > 0 && buf[rc-1] == '\n')
  704. buf[--rc] = 0;
  705. while (waitpid (pid, &status, 0) == -1)
  706. if (errno != EINTR)
  707. {
  708. signal (SIGPIPE, saved_handler);
  709. waitpid_error (info_script_option);
  710. return -1;
  711. }
  712. signal (SIGPIPE, saved_handler);
  713. if (WIFEXITED (status))
  714. {
  715. if (WEXITSTATUS (status) == 0 && rc > 0)
  716. *archive_name = buf;
  717. else
  718. free (buf);
  719. return WEXITSTATUS (status);
  720. }
  721. free (buf);
  722. return -1;
  723. }
  724. /* Child */
  725. setenv ("TAR_VERSION", PACKAGE_VERSION, 1);
  726. setenv ("TAR_ARCHIVE", *archive_name, 1);
  727. setenv ("TAR_VOLUME", STRINGIFY_BIGINT (volume_number, uintbuf), 1);
  728. setenv ("TAR_BLOCKING_FACTOR",
  729. STRINGIFY_BIGINT (blocking_factor, uintbuf), 1);
  730. setenv ("TAR_SUBCOMMAND", subcommand_string (subcommand_option), 1);
  731. setenv ("TAR_FORMAT",
  732. archive_format_string (current_format == DEFAULT_FORMAT ?
  733. archive_format : current_format), 1);
  734. setenv ("TAR_FD", STRINGIFY_BIGINT (p[PWRITE], uintbuf), 1);
  735. xclose (p[PREAD]);
  736. priv_set_restore_linkdir ();
  737. xexec (info_script_option);
  738. }
  739. void
  740. sys_exec_checkpoint_script (const char *script_name,
  741. const char *archive_name,
  742. int checkpoint_number)
  743. {
  744. pid_t pid;
  745. char uintbuf[UINTMAX_STRSIZE_BOUND];
  746. pid = xfork ();
  747. if (pid != 0)
  748. {
  749. /* Master */
  750. int status;
  751. while (waitpid (pid, &status, 0) == -1)
  752. if (errno != EINTR)
  753. {
  754. waitpid_error (script_name);
  755. break;
  756. }
  757. return;
  758. }
  759. /* Child */
  760. setenv ("TAR_VERSION", PACKAGE_VERSION, 1);
  761. setenv ("TAR_ARCHIVE", archive_name, 1);
  762. setenv ("TAR_CHECKPOINT", STRINGIFY_BIGINT (checkpoint_number, uintbuf), 1);
  763. setenv ("TAR_BLOCKING_FACTOR",
  764. STRINGIFY_BIGINT (blocking_factor, uintbuf), 1);
  765. setenv ("TAR_SUBCOMMAND", subcommand_string (subcommand_option), 1);
  766. setenv ("TAR_FORMAT",
  767. archive_format_string (current_format == DEFAULT_FORMAT ?
  768. archive_format : current_format), 1);
  769. priv_set_restore_linkdir ();
  770. xexec (script_name);
  771. }
  772. int
  773. sys_exec_setmtime_script (const char *script_name,
  774. int dirfd,
  775. const char *file_name,
  776. const char *fmt,
  777. struct timespec *ts)
  778. {
  779. pid_t pid;
  780. int p[2];
  781. int stop = 0;
  782. struct pollfd pfd;
  783. char *buffer = NULL;
  784. size_t buflen = 0;
  785. size_t bufsize = 0;
  786. char *cp;
  787. int rc = 0;
  788. if (pipe (p))
  789. FATAL_ERROR ((0, errno, _("pipe failed")));
  790. if ((pid = xfork ()) == 0)
  791. {
  792. char *command = xmalloc (strlen (script_name) + strlen (file_name) + 2);
  793. strcpy (command, script_name);
  794. strcat (command, " ");
  795. strcat (command, file_name);
  796. if (dirfd != AT_FDCWD)
  797. {
  798. if (fchdir (dirfd))
  799. FATAL_ERROR ((0, errno, _("chdir failed")));
  800. }
  801. close (0);
  802. close (1);
  803. if (open (dev_null, O_RDONLY) == -1)
  804. open_error (dev_null);
  805. if (dup2 (p[1], 1) == -1)
  806. FATAL_ERROR ((0, errno, _("dup2 failed")));
  807. close (p[0]);
  808. priv_set_restore_linkdir ();
  809. xexec (command);
  810. }
  811. close (p[1]);
  812. pfd.fd = p[0];
  813. pfd.events = POLLIN;
  814. while (1)
  815. {
  816. int n = poll (&pfd, 1, -1);
  817. if (n == -1)
  818. {
  819. if (errno != EINTR)
  820. {
  821. ERROR ((0, errno, _("poll failed")));
  822. stop = 1;
  823. break;
  824. }
  825. }
  826. if (n == 0)
  827. break;
  828. if (pfd.revents & POLLIN)
  829. {
  830. if (buflen == bufsize)
  831. {
  832. if (bufsize == 0)
  833. bufsize = BUFSIZ;
  834. buffer = x2nrealloc (buffer, &bufsize, 1);
  835. }
  836. n = read (pfd.fd, buffer + buflen, bufsize - buflen);
  837. if (n == -1)
  838. {
  839. ERROR ((0, errno, _("error reading output of %s"), script_name));
  840. stop = 1;
  841. break;
  842. }
  843. if (n == 0)
  844. break;
  845. buflen += n;
  846. }
  847. else if (pfd.revents & POLLHUP)
  848. break;
  849. }
  850. close (pfd.fd);
  851. if (stop)
  852. kill (SIGKILL, pid);
  853. sys_wait_for_child (pid, false);
  854. if (stop)
  855. {
  856. free (buffer);
  857. return -1;
  858. }
  859. if (buflen == 0)
  860. {
  861. ERROR ((0, 0, _("empty output from \"%s %s\""), script_name, file_name));
  862. return -1;
  863. }
  864. cp = memchr (buffer, '\n', buflen);
  865. if (cp)
  866. *cp = 0;
  867. else
  868. {
  869. if (buflen == bufsize)
  870. buffer = x2nrealloc (buffer, &bufsize, 1);
  871. buffer[buflen] = 0;
  872. }
  873. if (fmt)
  874. {
  875. struct tm tm;
  876. time_t t;
  877. cp = strptime (buffer, fmt, &tm);
  878. if (cp == NULL)
  879. {
  880. ERROR ((0, 0, _("output from \"%s %s\" does not satisfy format string: %s"),
  881. script_name, file_name, buffer));
  882. rc = -1;
  883. }
  884. else if (*cp != 0)
  885. {
  886. WARN ((0, 0, _("unconsumed output from \"%s %s\": %s"),
  887. script_name, file_name, cp));
  888. rc = -1;
  889. }
  890. else
  891. {
  892. t = mktime (&tm);
  893. if (t == (time_t) -1)
  894. {
  895. ERROR ((0, errno, _("mktime failed")));
  896. rc = -1;
  897. }
  898. else
  899. {
  900. ts->tv_sec = t;
  901. ts->tv_nsec = 0;
  902. }
  903. }
  904. }
  905. else if (! parse_datetime (ts, buffer, NULL))
  906. {
  907. ERROR ((0, 0, _("unparsable output from \"%s %s\": %s"),
  908. script_name, file_name, buffer));
  909. rc = -1;
  910. }
  911. free (buffer);
  912. return rc;
  913. }
  914. #endif /* not MSDOS */