1 /* System-dependent calls for tar.
3 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any later
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
13 Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
28 sys_get_archive_stat (void)
34 sys_file_is_archive (struct tar_stat_info
*p
)
40 sys_save_archive_dev_ino (void)
45 sys_detect_dev_null_output (void)
47 static char const dev_null
[] = "nul";
49 dev_null_output
= (strcmp (archive_name_array
[0], dev_null
) == 0
50 || (! _isrmt (archive
)));
54 sys_drain_input_pipe (void)
59 sys_wait_for_child (pid_t child_pid
)
64 sys_spawn_shell (void)
66 spawnl (P_WAIT
, getenv ("COMSPEC"), "-", 0);
69 /* stat() in djgpp's C library gives a constant number of 42 as the
70 uid and gid of a file. So, comparing an FTP'ed archive just after
71 unpack would fail on MSDOS. */
74 sys_compare_uid (struct stat
*a
, struct stat
*b
)
80 sys_compare_gid (struct stat
*a
, struct stat
*b
)
86 sys_compare_links (struct stat
*link_data
, struct stat
*stat_data
)
94 return write (fd
, "", 0);
98 sys_write_archive_buffer (void)
100 return full_write (archive
, record_start
->buffer
, record_size
);
103 /* Set ARCHIVE for writing, then compressing an archive. */
105 sys_child_open_for_compress (void)
107 FATAL_ERROR ((0, 0, _("Cannot use compressed or remote archives")));
110 /* Set ARCHIVE for uncompressing, then reading an archive. */
112 sys_child_open_for_uncompress (void)
114 FATAL_ERROR ((0, 0, _("Cannot use compressed or remote archives")));
119 extern union block
*record_start
; /* FIXME */
121 static struct stat archive_stat
; /* stat block for archive file */
124 sys_get_archive_stat (void)
126 return fstat (archive
, &archive_stat
) == 0;
130 sys_file_is_archive (struct tar_stat_info
*p
)
132 return (ar_dev
&& p
->stat
.st_dev
== ar_dev
&& p
->stat
.st_ino
== ar_ino
);
135 /* Save archive file inode and device numbers */
137 sys_save_archive_dev_ino (void)
139 if (!_isrmt (archive
) && S_ISREG (archive_stat
.st_mode
))
141 ar_dev
= archive_stat
.st_dev
;
142 ar_ino
= archive_stat
.st_ino
;
148 /* Detect if outputting to "/dev/null". */
150 sys_detect_dev_null_output (void)
152 static char const dev_null
[] = "/dev/null";
153 struct stat dev_null_stat
;
155 dev_null_output
= (strcmp (archive_name_array
[0], dev_null
) == 0
156 || (! _isrmt (archive
)
157 && S_ISCHR (archive_stat
.st_mode
)
158 && stat (dev_null
, &dev_null_stat
) == 0
159 && archive_stat
.st_dev
== dev_null_stat
.st_dev
160 && archive_stat
.st_ino
== dev_null_stat
.st_ino
));
163 /* Manage to fully drain a pipe we might be reading, so to not break it on
164 the producer after the EOF block. FIXME: one of these days, GNU tar
165 might become clever enough to just stop working, once there is no more
166 work to do, we might have to revise this area in such time. */
169 sys_drain_input_pipe (void)
173 if (access_mode
== ACCESS_READ
174 && ! _isrmt (archive
)
175 && (S_ISFIFO (archive_stat
.st_mode
) || S_ISSOCK (archive_stat
.st_mode
)))
176 while ((r
= rmtread (archive
, record_start
->buffer
, record_size
)) != 0
177 && r
!= SAFE_READ_ERROR
)
182 sys_wait_for_child (pid_t child_pid
)
188 while (waitpid (child_pid
, &wait_status
, 0) == -1)
191 waitpid_error (use_compress_program_option
);
195 if (WIFSIGNALED (wait_status
))
196 ERROR ((0, 0, _("Child died with signal %d"),
197 WTERMSIG (wait_status
)));
198 else if (WEXITSTATUS (wait_status
) != 0)
199 ERROR ((0, 0, _("Child returned status %d"),
200 WEXITSTATUS (wait_status
)));
205 sys_spawn_shell (void)
208 const char *shell
= getenv ("SHELL");
214 execlp (shell
, "-sh", "-i", (char *) 0);
220 while (waitpid (child
, &wait_status
, 0) == -1)
223 waitpid_error (shell
);
230 sys_compare_uid (struct stat
*a
, struct stat
*b
)
232 return a
->st_uid
== b
->st_uid
;
236 sys_compare_gid (struct stat
*a
, struct stat
*b
)
238 return a
->st_gid
== b
->st_gid
;
242 sys_compare_links (struct stat
*link_data
, struct stat
*stat_data
)
244 return stat_data
->st_dev
== link_data
->st_dev
245 && stat_data
->st_ino
== link_data
->st_ino
;
249 sys_truncate (int fd
)
251 off_t pos
= lseek (fd
, (off_t
) 0, SEEK_CUR
);
252 return pos
< 0 ? -1 : ftruncate (fd
, pos
);
255 /* Return nonzero if NAME is the name of a regular file, or if the file
256 does not exist (so it would be created as a regular file). */
258 is_regular_file (const char *name
)
262 if (stat (name
, &stbuf
) == 0)
263 return S_ISREG (stbuf
.st_mode
);
265 return errno
== ENOENT
;
269 sys_write_archive_buffer (void)
271 return rmtwrite (archive
, record_start
->buffer
, record_size
);
274 #define PREAD 0 /* read file descriptor from pipe() */
275 #define PWRITE 1 /* write file descriptor from pipe() */
277 /* Duplicate file descriptor FROM into becoming INTO.
278 INTO is closed first and has to be the next available slot. */
280 xdup2 (int from
, int into
)
284 int status
= close (into
);
286 if (status
!= 0 && errno
!= EBADF
)
289 FATAL_ERROR ((0, e
, _("Cannot close")));
297 FATAL_ERROR ((0, e
, _("Cannot dup")));
305 /* Set ARCHIVE for writing, then compressing an archive. */
307 sys_child_open_for_compress (void)
311 pid_t grandchild_pid
;
316 child_pid
= xfork ();
320 /* The parent tar is still here! Just clean up. */
322 archive
= parent_pipe
[PWRITE
];
323 xclose (parent_pipe
[PREAD
]);
327 /* The new born child tar is here! */
329 program_name
= _("tar (child)");
331 xdup2 (parent_pipe
[PREAD
], STDIN_FILENO
);
332 xclose (parent_pipe
[PWRITE
]);
334 /* Check if we need a grandchild tar. This happens only if either:
335 a) we are writing stdout: to force reblocking;
336 b) the file is to be accessed by rmt: compressor doesn't know how;
337 c) the file is not a plain file. */
339 if (strcmp (archive_name_array
[0], "-") != 0
340 && !_remdev (archive_name_array
[0])
341 && is_regular_file (archive_name_array
[0]))
344 maybe_backup_file (archive_name_array
[0], 1);
346 /* We don't need a grandchild tar. Open the archive and launch the
349 archive
= creat (archive_name_array
[0], MODE_RW
);
352 int saved_errno
= errno
;
357 open_fatal (archive_name_array
[0]);
359 xdup2 (archive
, STDOUT_FILENO
);
360 execlp (use_compress_program_option
, use_compress_program_option
,
362 exec_fatal (use_compress_program_option
);
365 /* We do need a grandchild tar. */
368 grandchild_pid
= xfork ();
370 if (grandchild_pid
== 0)
372 /* The newborn grandchild tar is here! Launch the compressor. */
374 program_name
= _("tar (grandchild)");
376 xdup2 (child_pipe
[PWRITE
], STDOUT_FILENO
);
377 xclose (child_pipe
[PREAD
]);
378 execlp (use_compress_program_option
, use_compress_program_option
,
380 exec_fatal (use_compress_program_option
);
383 /* The child tar is still here! */
385 /* Prepare for reblocking the data from the compressor into the archive. */
387 xdup2 (child_pipe
[PREAD
], STDIN_FILENO
);
388 xclose (child_pipe
[PWRITE
]);
390 if (strcmp (archive_name_array
[0], "-") == 0)
391 archive
= STDOUT_FILENO
;
394 archive
= rmtcreat (archive_name_array
[0], MODE_RW
, rsh_command_option
);
396 open_fatal (archive_name_array
[0]);
399 /* Let's read out of the stdin pipe and write an archive. */
407 /* Assemble a record. */
409 for (length
= 0, cursor
= record_start
->buffer
;
410 length
< record_size
;
411 length
+= status
, cursor
+= status
)
413 size_t size
= record_size
- length
;
415 status
= safe_read (STDIN_FILENO
, cursor
, size
);
416 if (status
== SAFE_READ_ERROR
)
417 read_fatal (use_compress_program_option
);
422 /* Copy the record. */
426 /* We hit the end of the file. Write last record at
427 full length, as the only role of the grandchild is
428 doing proper reblocking. */
432 memset (record_start
->buffer
+ length
, 0, record_size
- length
);
433 status
= sys_write_archive_buffer ();
434 if (status
!= record_size
)
435 archive_write_error (status
);
438 /* There is nothing else to read, break out. */
442 status
= sys_write_archive_buffer ();
443 if (status
!= record_size
)
444 archive_write_error (status
);
447 /* Propagate any failure of the grandchild back to the parent. */
449 while (waitpid (grandchild_pid
, &wait_status
, 0) == -1)
452 waitpid_error (use_compress_program_option
);
456 if (WIFSIGNALED (wait_status
))
458 kill (child_pid
, WTERMSIG (wait_status
));
459 exit_status
= TAREXIT_FAILURE
;
461 else if (WEXITSTATUS (wait_status
) != 0)
462 exit_status
= WEXITSTATUS (wait_status
);
467 /* Set ARCHIVE for uncompressing, then reading an archive. */
469 sys_child_open_for_uncompress (void)
473 pid_t grandchild_pid
;
478 child_pid
= xfork ();
482 /* The parent tar is still here! Just clean up. */
484 archive
= parent_pipe
[PREAD
];
485 xclose (parent_pipe
[PWRITE
]);
489 /* The newborn child tar is here! */
491 program_name
= _("tar (child)");
493 xdup2 (parent_pipe
[PWRITE
], STDOUT_FILENO
);
494 xclose (parent_pipe
[PREAD
]);
496 /* Check if we need a grandchild tar. This happens only if either:
497 a) we're reading stdin: to force unblocking;
498 b) the file is to be accessed by rmt: compressor doesn't know how;
499 c) the file is not a plain file. */
501 if (strcmp (archive_name_array
[0], "-") != 0
502 && !_remdev (archive_name_array
[0])
503 && is_regular_file (archive_name_array
[0]))
505 /* We don't need a grandchild tar. Open the archive and lauch the
508 archive
= open (archive_name_array
[0], O_RDONLY
| O_BINARY
, MODE_RW
);
510 open_fatal (archive_name_array
[0]);
511 xdup2 (archive
, STDIN_FILENO
);
512 execlp (use_compress_program_option
, use_compress_program_option
,
514 exec_fatal (use_compress_program_option
);
517 /* We do need a grandchild tar. */
520 grandchild_pid
= xfork ();
522 if (grandchild_pid
== 0)
524 /* The newborn grandchild tar is here! Launch the uncompressor. */
526 program_name
= _("tar (grandchild)");
528 xdup2 (child_pipe
[PREAD
], STDIN_FILENO
);
529 xclose (child_pipe
[PWRITE
]);
530 execlp (use_compress_program_option
, use_compress_program_option
,
532 exec_fatal (use_compress_program_option
);
535 /* The child tar is still here! */
537 /* Prepare for unblocking the data from the archive into the
540 xdup2 (child_pipe
[PWRITE
], STDOUT_FILENO
);
541 xclose (child_pipe
[PREAD
]);
543 if (strcmp (archive_name_array
[0], "-") == 0)
544 archive
= STDIN_FILENO
;
546 archive
= rmtopen (archive_name_array
[0], O_RDONLY
| O_BINARY
,
547 MODE_RW
, rsh_command_option
);
549 open_fatal (archive_name_array
[0]);
551 /* Let's read the archive and pipe it into stdout. */
560 clear_read_error_count ();
563 status
= rmtread (archive
, record_start
->buffer
, record_size
);
564 if (status
== SAFE_READ_ERROR
)
566 archive_read_error ();
571 cursor
= record_start
->buffer
;
575 count
= maximum
< BLOCKSIZE
? maximum
: BLOCKSIZE
;
576 if (full_write (STDOUT_FILENO
, cursor
, count
) != count
)
577 write_error (use_compress_program_option
);
583 xclose (STDOUT_FILENO
);
585 /* Propagate any failure of the grandchild back to the parent. */
587 while (waitpid (grandchild_pid
, &wait_status
, 0) == -1)
590 waitpid_error (use_compress_program_option
);
594 if (WIFSIGNALED (wait_status
))
596 kill (child_pid
, WTERMSIG (wait_status
));
597 exit_status
= TAREXIT_FAILURE
;
599 else if (WEXITSTATUS (wait_status
) != 0)
600 exit_status
= WEXITSTATUS (wait_status
);
608 dec_to_env (char *envar
, uintmax_t num
)
610 char buf
[UINTMAX_STRSIZE_BOUND
];
613 numstr
= STRINGIFY_BIGINT (num
, buf
);
614 if (setenv (envar
, numstr
, 1) != 0)
619 time_to_env (char *envar
, struct timespec t
)
621 char buf
[TIMESPEC_STRSIZE_BOUND
];
622 if (setenv (envar
, code_timespec (t
, buf
), 1) != 0)
627 oct_to_env (char *envar
, unsigned long num
)
629 char buf
[1+1+(sizeof(unsigned long)*CHAR_BIT
+2)/3];
631 snprintf (buf
, sizeof buf
, "0%lo", num
);
632 if (setenv (envar
, buf
, 1) != 0)
637 str_to_env (char *envar
, char const *str
)
641 if (setenv (envar
, str
, 1) != 0)
649 chr_to_env (char *envar
, char c
)
654 if (setenv (envar
, buf
, 1) != 0)
659 stat_to_env (char *name
, char type
, struct tar_stat_info
*st
)
661 chr_to_env ("TAR_FILETYPE", type
);
662 oct_to_env ("TAR_MODE", st
->stat
.st_mode
);
663 str_to_env ("TAR_FILENAME", name
);
664 str_to_env ("TAR_REALNAME", st
->file_name
);
665 str_to_env ("TAR_UNAME", st
->uname
);
666 str_to_env ("TAR_GNAME", st
->gname
);
667 time_to_env ("TAR_ATIME", st
->atime
);
668 time_to_env ("TAR_MTIME", st
->mtime
);
669 time_to_env ("TAR_CTIME", st
->ctime
);
670 dec_to_env ("TAR_SIZE", st
->stat
.st_size
);
671 dec_to_env ("TAR_UID", st
->stat
.st_uid
);
672 dec_to_env ("TAR_GID", st
->stat
.st_gid
);
678 dec_to_env ("TAR_MINOR", minor (st
->stat
.st_rdev
));
679 dec_to_env ("TAR_MAJOR", major (st
->stat
.st_rdev
));
680 unsetenv ("TAR_LINKNAME");
685 unsetenv ("TAR_MINOR");
686 unsetenv ("TAR_MAJOR");
687 str_to_env ("TAR_LINKNAME", st
->link_name
);
691 unsetenv ("TAR_MINOR");
692 unsetenv ("TAR_MAJOR");
693 unsetenv ("TAR_LINKNAME");
699 static RETSIGTYPE (*pipe_handler
) (int sig
);
702 sys_exec_command (char *file_name
, int typechar
, struct tar_stat_info
*st
)
708 pipe_handler
= signal (SIGPIPE
, SIG_IGN
);
718 xdup2 (p
[PREAD
], STDIN_FILENO
);
721 stat_to_env (file_name
, typechar
, st
);
725 argv
[2] = to_command_option
;
728 execv ("/bin/sh", argv
);
730 exec_fatal (file_name
);
734 sys_wait_command (void)
741 signal (SIGPIPE
, pipe_handler
);
742 while (waitpid (pid
, &status
, 0) == -1)
746 waitpid_error (to_command_option
);
750 if (WIFEXITED (status
))
752 if (!ignore_command_error_option
&& WEXITSTATUS (status
))
753 ERROR ((0, 0, _("%lu: Child returned status %d"),
754 (unsigned long) pid
, WEXITSTATUS (status
)));
756 else if (WIFSIGNALED (status
))
758 WARN ((0, 0, _("%lu: Child terminated on signal %d"),
759 (unsigned long) pid
, WTERMSIG (status
)));
762 ERROR ((0, 0, _("%lu: Child terminated on unknown reason"),
763 (unsigned long) pid
));
768 #endif /* not MSDOS */