2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 16:24:54 +00:00
|
|
|
/*
|
1999-10-20 22:08:37 +00:00
|
|
|
* Mini dd implementation for busybox
|
|
|
|
*
|
|
|
|
*
|
2001-12-07 16:27:37 +00:00
|
|
|
* Copyright (C) 2000,2001 Matt Kraai
|
1999-10-20 22:08:37 +00:00
|
|
|
*
|
2006-04-13 12:45:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-05 16:24:54 +00:00
|
|
|
*/
|
|
|
|
|
2006-08-28 23:31:54 +00:00
|
|
|
#include <signal.h> /* For FEATURE_DD_SIGNAL_HANDLING */
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2007-04-10 15:43:37 +00:00
|
|
|
|
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
2001-02-20 06:14:08 +00:00
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
enum {
|
|
|
|
ifd = STDIN_FILENO,
|
|
|
|
ofd = STDOUT_FILENO,
|
|
|
|
};
|
|
|
|
|
2001-02-05 17:50:03 +00:00
|
|
|
static const struct suffix_mult dd_suffixes[] = {
|
2000-12-18 21:38:57 +00:00
|
|
|
{ "c", 1 },
|
|
|
|
{ "w", 2 },
|
|
|
|
{ "b", 512 },
|
|
|
|
{ "kD", 1000 },
|
|
|
|
{ "k", 1024 },
|
2007-04-04 14:01:23 +00:00
|
|
|
{ "K", 1024 }, /* compat with coreutils dd */
|
2000-12-18 21:38:57 +00:00
|
|
|
{ "MD", 1000000 },
|
|
|
|
{ "M", 1048576 },
|
|
|
|
{ "GD", 1000000000 },
|
|
|
|
{ "G", 1073741824 },
|
2007-07-27 15:06:25 +00:00
|
|
|
{ }
|
2000-12-18 21:38:57 +00:00
|
|
|
};
|
|
|
|
|
2007-04-04 14:01:23 +00:00
|
|
|
struct globals {
|
|
|
|
off_t out_full, out_part, in_full, in_part;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
2007-07-27 15:02:00 +00:00
|
|
|
/* We have to zero it out because of NOEXEC */
|
|
|
|
#define INIT_G() memset(&G, 0, sizeof(G))
|
|
|
|
|
2006-05-02 22:44:04 +00:00
|
|
|
|
2006-08-28 23:31:54 +00:00
|
|
|
static void dd_output_status(int ATTRIBUTE_UNUSED cur_signal)
|
2006-05-02 22:44:04 +00:00
|
|
|
{
|
2007-07-30 10:58:09 +00:00
|
|
|
/* Deliberately using %u, not %d */
|
|
|
|
fprintf(stderr, "%"OFF_FMT"u+%"OFF_FMT"u records in\n"
|
|
|
|
"%"OFF_FMT"u+%"OFF_FMT"u records out\n",
|
2007-04-04 14:01:23 +00:00
|
|
|
G.in_full, G.in_part,
|
|
|
|
G.out_full, G.out_part);
|
2006-05-02 22:44:04 +00:00
|
|
|
}
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
static ssize_t full_write_or_warn(const void *buf, size_t len,
|
2007-08-12 20:58:27 +00:00
|
|
|
const char *const filename)
|
2006-10-31 15:55:56 +00:00
|
|
|
{
|
2007-12-02 01:44:42 +00:00
|
|
|
ssize_t n = full_write(ofd, buf, len);
|
2006-10-31 15:55:56 +00:00
|
|
|
if (n < 0)
|
|
|
|
bb_perror_msg("writing '%s'", filename);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
static bool write_and_stats(const void *buf, size_t len, size_t obs,
|
2007-07-24 15:54:42 +00:00
|
|
|
const char *filename)
|
2007-04-04 14:01:23 +00:00
|
|
|
{
|
2007-12-02 01:44:42 +00:00
|
|
|
ssize_t n = full_write_or_warn(buf, len, filename);
|
2007-04-04 14:01:23 +00:00
|
|
|
if (n < 0)
|
|
|
|
return 1;
|
|
|
|
if (n == obs)
|
|
|
|
G.out_full++;
|
2007-04-19 20:08:19 +00:00
|
|
|
else if (n) /* > 0 */
|
2007-04-04 14:01:23 +00:00
|
|
|
G.out_part++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-25 14:46:21 +00:00
|
|
|
#if ENABLE_LFS
|
|
|
|
#define XATOU_SFX xatoull_sfx
|
|
|
|
#else
|
|
|
|
#define XATOU_SFX xatoul_sfx
|
|
|
|
#endif
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int dd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-04-02 21:20:35 +00:00
|
|
|
int dd_main(int argc ATTRIBUTE_UNUSED, char **argv)
|
1999-10-12 22:26:06 +00:00
|
|
|
{
|
2006-10-31 15:55:56 +00:00
|
|
|
enum {
|
2008-04-02 21:20:35 +00:00
|
|
|
/* Must be in the same order as OP_conv_XXX! */
|
|
|
|
/* (see "flags |= (1 << what)" below) */
|
|
|
|
FLAG_NOTRUNC = 1 << 0,
|
|
|
|
FLAG_SYNC = 1 << 1,
|
|
|
|
FLAG_NOERROR = 1 << 2,
|
|
|
|
FLAG_FSYNC = 1 << 3,
|
|
|
|
/* end of conv flags */
|
|
|
|
FLAG_TWOBUFS = 1 << 4,
|
|
|
|
FLAG_COUNT = 1 << 5,
|
2006-10-31 15:55:56 +00:00
|
|
|
};
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char keywords[] ALIGN1 =
|
2008-04-23 05:44:59 +00:00
|
|
|
"bs\0""count\0""seek\0""skip\0""if\0""of\0"
|
2007-04-04 14:01:23 +00:00
|
|
|
#if ENABLE_FEATURE_DD_IBS_OBS
|
2008-04-23 05:44:59 +00:00
|
|
|
"ibs\0""obs\0""conv\0"
|
2007-04-04 14:01:23 +00:00
|
|
|
#endif
|
2007-07-24 15:54:42 +00:00
|
|
|
;
|
2008-04-02 21:20:35 +00:00
|
|
|
#if ENABLE_FEATURE_DD_IBS_OBS
|
|
|
|
static const char conv_words[] ALIGN1 =
|
|
|
|
"notrunc\0""sync\0""noerror\0""fsync\0";
|
|
|
|
#endif
|
2007-04-10 19:30:50 +00:00
|
|
|
enum {
|
2008-04-02 21:20:35 +00:00
|
|
|
OP_bs = 0,
|
2007-04-10 19:30:50 +00:00
|
|
|
OP_count,
|
|
|
|
OP_seek,
|
|
|
|
OP_skip,
|
|
|
|
OP_if,
|
|
|
|
OP_of,
|
2007-04-16 12:21:05 +00:00
|
|
|
#if ENABLE_FEATURE_DD_IBS_OBS
|
2007-04-10 19:30:50 +00:00
|
|
|
OP_ibs,
|
|
|
|
OP_obs,
|
|
|
|
OP_conv,
|
2008-04-02 21:20:35 +00:00
|
|
|
/* Must be in the same order as FLAG_XXX! */
|
|
|
|
OP_conv_notrunc = 0,
|
2007-04-10 19:30:50 +00:00
|
|
|
OP_conv_sync,
|
2007-04-19 20:16:14 +00:00
|
|
|
OP_conv_noerror,
|
2008-04-02 21:20:35 +00:00
|
|
|
OP_conv_fsync,
|
|
|
|
/* Unimplemented conv=XXX: */
|
|
|
|
//nocreat do not create the output file
|
|
|
|
//excl fail if the output file already exists
|
|
|
|
//fdatasync physically write output file data before finishing
|
|
|
|
//swab swap every pair of input bytes
|
|
|
|
//lcase change upper case to lower case
|
|
|
|
//ucase change lower case to upper case
|
|
|
|
//block pad newline-terminated records with spaces to cbs-size
|
|
|
|
//unblock replace trailing spaces in cbs-size records with newline
|
|
|
|
//ascii from EBCDIC to ASCII
|
|
|
|
//ebcdic from ASCII to EBCDIC
|
|
|
|
//ibm from ASCII to alternate EBCDIC
|
2007-04-16 12:21:05 +00:00
|
|
|
#endif
|
2007-04-10 19:30:50 +00:00
|
|
|
};
|
2007-12-02 01:44:42 +00:00
|
|
|
int exitcode = EXIT_FAILURE;
|
2007-07-27 15:02:00 +00:00
|
|
|
size_t ibs = 512, obs = 512;
|
2006-10-31 15:55:56 +00:00
|
|
|
ssize_t n, w;
|
2006-05-16 16:52:12 +00:00
|
|
|
char *ibuf, *obuf;
|
2007-07-27 15:02:00 +00:00
|
|
|
/* And these are all zeroed at once! */
|
|
|
|
struct {
|
|
|
|
int flags;
|
|
|
|
size_t oc;
|
|
|
|
off_t count;
|
|
|
|
off_t seek, skip;
|
|
|
|
const char *infile, *outfile;
|
|
|
|
} Z;
|
|
|
|
#define flags (Z.flags )
|
|
|
|
#define oc (Z.oc )
|
|
|
|
#define count (Z.count )
|
|
|
|
#define seek (Z.seek )
|
|
|
|
#define skip (Z.skip )
|
|
|
|
#define infile (Z.infile )
|
|
|
|
#define outfile (Z.outfile)
|
2000-12-18 21:38:57 +00:00
|
|
|
|
2007-07-27 15:02:00 +00:00
|
|
|
memset(&Z, 0, sizeof(Z));
|
|
|
|
INIT_G();
|
2007-12-02 01:44:42 +00:00
|
|
|
//fflush(NULL); - is this needed because of NOEXEC?
|
2006-05-02 22:44:04 +00:00
|
|
|
|
2007-07-27 15:02:00 +00:00
|
|
|
#if ENABLE_FEATURE_DD_SIGNAL_HANDLING
|
2008-03-12 23:19:35 +00:00
|
|
|
signal_SA_RESTART_empty_mask(SIGUSR1, dd_output_status);
|
2007-07-27 15:02:00 +00:00
|
|
|
#endif
|
2006-05-02 22:44:04 +00:00
|
|
|
|
2008-04-02 21:20:35 +00:00
|
|
|
for (n = 1; argv[n]; n++) {
|
|
|
|
int what;
|
|
|
|
char *val;
|
2006-10-31 15:55:56 +00:00
|
|
|
char *arg = argv[n];
|
2007-04-04 14:01:23 +00:00
|
|
|
|
2008-04-02 21:20:35 +00:00
|
|
|
#if ENABLE_DESKTOP
|
|
|
|
/* "dd --". NB: coreutils 6.9 will complain if they see
|
|
|
|
* more than one of them. We wouldn't. */
|
|
|
|
if (arg[0] == '-' && arg[1] == '-' && arg[2] == '\0')
|
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
val = strchr(arg, '=');
|
|
|
|
if (val == NULL)
|
2007-04-04 14:01:23 +00:00
|
|
|
bb_show_usage();
|
2008-04-02 21:20:35 +00:00
|
|
|
*val = '\0';
|
|
|
|
what = index_in_strings(keywords, arg);
|
|
|
|
if (what < 0)
|
2007-04-04 14:01:23 +00:00
|
|
|
bb_show_usage();
|
2008-04-02 21:20:35 +00:00
|
|
|
/* *val = '='; - to preserve ps listing? */
|
|
|
|
val++;
|
2007-04-16 12:21:05 +00:00
|
|
|
#if ENABLE_FEATURE_DD_IBS_OBS
|
2008-02-24 13:36:01 +00:00
|
|
|
if (what == OP_ibs) {
|
|
|
|
/* Must fit into positive ssize_t */
|
2008-04-02 21:20:35 +00:00
|
|
|
ibs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, dd_suffixes);
|
|
|
|
/*continue;*/
|
2008-02-24 13:36:01 +00:00
|
|
|
}
|
|
|
|
if (what == OP_obs) {
|
2008-04-02 21:20:35 +00:00
|
|
|
obs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, dd_suffixes);
|
|
|
|
/*continue;*/
|
2008-02-24 13:36:01 +00:00
|
|
|
}
|
|
|
|
if (what == OP_conv) {
|
|
|
|
while (1) {
|
2008-04-02 21:20:35 +00:00
|
|
|
/* find ',', replace them with NUL so we can use val for
|
2008-02-24 13:36:01 +00:00
|
|
|
* index_in_strings() without copying.
|
2008-04-02 21:20:35 +00:00
|
|
|
* We rely on val being non-null, else strchr would fault.
|
2008-02-24 13:36:01 +00:00
|
|
|
*/
|
2008-04-02 21:20:35 +00:00
|
|
|
arg = strchr(val, ',');
|
|
|
|
if (arg)
|
|
|
|
*arg = '\0';
|
|
|
|
what = index_in_strings(conv_words, val);
|
|
|
|
if (what < 0)
|
|
|
|
bb_error_msg_and_die(bb_msg_invalid_arg, val, "conv");
|
|
|
|
flags |= (1 << what);
|
|
|
|
if (!arg) /* no ',' left, so this was the last specifier */
|
2008-02-24 13:36:01 +00:00
|
|
|
break;
|
2008-04-02 21:20:35 +00:00
|
|
|
/* *arg = ','; - to preserve ps listing? */
|
|
|
|
val = arg + 1; /* skip this keyword and ',' */
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2008-04-02 21:20:35 +00:00
|
|
|
continue; /* we trashed 'what', can't fall through */
|
2008-02-24 13:36:01 +00:00
|
|
|
}
|
2007-04-16 12:21:05 +00:00
|
|
|
#endif
|
2007-04-04 14:01:23 +00:00
|
|
|
if (what == OP_bs) {
|
2008-04-02 21:20:35 +00:00
|
|
|
ibs = obs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, dd_suffixes);
|
|
|
|
/*continue;*/
|
2007-04-04 14:01:23 +00:00
|
|
|
}
|
|
|
|
/* These can be large: */
|
|
|
|
if (what == OP_count) {
|
2007-07-27 15:02:00 +00:00
|
|
|
flags |= FLAG_COUNT;
|
2008-04-02 21:20:35 +00:00
|
|
|
count = XATOU_SFX(val, dd_suffixes);
|
|
|
|
/*continue;*/
|
2007-04-04 14:01:23 +00:00
|
|
|
}
|
|
|
|
if (what == OP_seek) {
|
2008-04-02 21:20:35 +00:00
|
|
|
seek = XATOU_SFX(val, dd_suffixes);
|
|
|
|
/*continue;*/
|
2007-04-04 14:01:23 +00:00
|
|
|
}
|
2007-04-19 20:08:19 +00:00
|
|
|
if (what == OP_skip) {
|
2008-04-02 21:20:35 +00:00
|
|
|
skip = XATOU_SFX(val, dd_suffixes);
|
|
|
|
/*continue;*/
|
2007-04-04 14:01:23 +00:00
|
|
|
}
|
|
|
|
if (what == OP_if) {
|
2008-04-02 21:20:35 +00:00
|
|
|
infile = val;
|
|
|
|
/*continue;*/
|
2007-04-04 14:01:23 +00:00
|
|
|
}
|
2008-04-02 21:20:35 +00:00
|
|
|
if (what == OP_of) {
|
|
|
|
outfile = val;
|
|
|
|
/*continue;*/
|
|
|
|
}
|
|
|
|
} /* end of "for (argv[n])" */
|
|
|
|
|
2007-04-04 14:01:23 +00:00
|
|
|
//XXX:FIXME for huge ibs or obs, malloc'ing them isn't the brightest idea ever
|
2006-10-31 15:55:56 +00:00
|
|
|
ibuf = obuf = xmalloc(ibs);
|
|
|
|
if (ibs != obs) {
|
2007-07-27 15:02:00 +00:00
|
|
|
flags |= FLAG_TWOBUFS;
|
2006-08-28 23:31:54 +00:00
|
|
|
obuf = xmalloc(obs);
|
2006-10-31 15:55:56 +00:00
|
|
|
}
|
2006-08-28 23:31:54 +00:00
|
|
|
if (infile != NULL)
|
2007-12-02 01:44:42 +00:00
|
|
|
xmove_fd(xopen(infile, O_RDONLY), ifd);
|
2006-08-28 23:31:54 +00:00
|
|
|
else {
|
2003-03-19 09:13:01 +00:00
|
|
|
infile = bb_msg_standard_input;
|
1999-10-13 00:53:55 +00:00
|
|
|
}
|
2000-12-18 21:38:57 +00:00
|
|
|
if (outfile != NULL) {
|
2007-04-04 14:01:23 +00:00
|
|
|
int oflag = O_WRONLY | O_CREAT;
|
2001-01-17 00:21:05 +00:00
|
|
|
|
2007-07-27 15:02:00 +00:00
|
|
|
if (!seek && !(flags & FLAG_NOTRUNC))
|
2001-01-17 00:21:05 +00:00
|
|
|
oflag |= O_TRUNC;
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
xmove_fd(xopen(outfile, oflag), ofd);
|
2001-01-17 00:21:05 +00:00
|
|
|
|
2007-07-27 15:02:00 +00:00
|
|
|
if (seek && !(flags & FLAG_NOTRUNC)) {
|
2006-05-16 16:52:12 +00:00
|
|
|
if (ftruncate(ofd, seek * obs) < 0) {
|
2002-02-05 15:28:54 +00:00
|
|
|
struct stat st;
|
|
|
|
|
2006-08-28 23:31:54 +00:00
|
|
|
if (fstat(ofd, &st) < 0 || S_ISREG(st.st_mode) ||
|
|
|
|
S_ISDIR(st.st_mode))
|
|
|
|
goto die_outfile;
|
2002-02-05 15:28:54 +00:00
|
|
|
}
|
2001-01-17 00:21:05 +00:00
|
|
|
}
|
2000-12-18 21:38:57 +00:00
|
|
|
} else {
|
2003-03-19 09:13:01 +00:00
|
|
|
outfile = bb_msg_standard_output;
|
2000-12-18 21:38:57 +00:00
|
|
|
}
|
|
|
|
if (skip) {
|
2006-10-08 17:54:47 +00:00
|
|
|
if (lseek(ifd, skip * ibs, SEEK_CUR) < 0) {
|
2006-05-16 16:52:12 +00:00
|
|
|
while (skip-- > 0) {
|
|
|
|
n = safe_read(ifd, ibuf, ibs);
|
|
|
|
if (n < 0)
|
2007-04-04 14:01:23 +00:00
|
|
|
goto die_infile;
|
2006-05-16 16:52:12 +00:00
|
|
|
if (n == 0)
|
|
|
|
break;
|
|
|
|
}
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
1999-10-12 22:26:06 +00:00
|
|
|
}
|
2000-12-18 21:38:57 +00:00
|
|
|
if (seek) {
|
2006-10-08 17:54:47 +00:00
|
|
|
if (lseek(ofd, seek * obs, SEEK_CUR) < 0)
|
2006-08-28 23:31:54 +00:00
|
|
|
goto die_outfile;
|
2000-12-18 21:38:57 +00:00
|
|
|
}
|
2000-11-29 22:33:02 +00:00
|
|
|
|
2007-07-29 14:59:06 +00:00
|
|
|
while (!(flags & FLAG_COUNT) || (G.in_full + G.in_part != count)) {
|
2007-07-27 15:02:00 +00:00
|
|
|
if (flags & FLAG_NOERROR) /* Pre-zero the buffer if conv=noerror */
|
|
|
|
memset(ibuf, 0, ibs);
|
2006-05-16 16:52:12 +00:00
|
|
|
n = safe_read(ifd, ibuf, ibs);
|
2006-08-28 23:31:54 +00:00
|
|
|
if (n == 0)
|
2006-05-16 16:52:12 +00:00
|
|
|
break;
|
2002-04-27 01:31:43 +00:00
|
|
|
if (n < 0) {
|
2007-12-02 01:44:42 +00:00
|
|
|
if (!(flags & FLAG_NOERROR))
|
2007-04-04 14:01:23 +00:00
|
|
|
goto die_infile;
|
2007-12-02 01:44:42 +00:00
|
|
|
n = ibs;
|
|
|
|
bb_simple_perror_msg(infile);
|
2002-04-27 01:31:43 +00:00
|
|
|
}
|
2006-08-28 23:31:54 +00:00
|
|
|
if ((size_t)n == ibs)
|
2007-04-04 14:01:23 +00:00
|
|
|
G.in_full++;
|
2006-08-28 23:31:54 +00:00
|
|
|
else {
|
2007-04-04 14:01:23 +00:00
|
|
|
G.in_part++;
|
2007-07-27 15:02:00 +00:00
|
|
|
if (flags & FLAG_SYNC) {
|
2006-05-16 16:52:12 +00:00
|
|
|
memset(ibuf + n, '\0', ibs - n);
|
|
|
|
n = ibs;
|
|
|
|
}
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2007-07-27 15:02:00 +00:00
|
|
|
if (flags & FLAG_TWOBUFS) {
|
2006-05-16 16:52:12 +00:00
|
|
|
char *tmp = ibuf;
|
|
|
|
while (n) {
|
|
|
|
size_t d = obs - oc;
|
|
|
|
|
2006-08-28 23:31:54 +00:00
|
|
|
if (d > n)
|
|
|
|
d = n;
|
2006-05-16 16:52:12 +00:00
|
|
|
memcpy(obuf + oc, tmp, d);
|
|
|
|
n -= d;
|
|
|
|
tmp += d;
|
|
|
|
oc += d;
|
|
|
|
if (oc == obs) {
|
2007-12-02 01:44:42 +00:00
|
|
|
if (write_and_stats(obuf, obs, obs, outfile))
|
2007-04-04 14:01:23 +00:00
|
|
|
goto out_status;
|
2006-05-16 16:52:12 +00:00
|
|
|
oc = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-12-02 01:44:42 +00:00
|
|
|
} else if (write_and_stats(ibuf, n, obs, outfile))
|
2007-04-19 20:08:19 +00:00
|
|
|
goto out_status;
|
2008-04-02 21:20:35 +00:00
|
|
|
|
|
|
|
if (flags & FLAG_FSYNC) {
|
|
|
|
if (fsync(ofd) < 0)
|
|
|
|
goto die_outfile;
|
|
|
|
}
|
2006-05-16 16:52:12 +00:00
|
|
|
}
|
2006-09-17 16:28:10 +00:00
|
|
|
|
2006-05-16 16:52:12 +00:00
|
|
|
if (ENABLE_FEATURE_DD_IBS_OBS && oc) {
|
2007-12-02 01:44:42 +00:00
|
|
|
w = full_write_or_warn(obuf, oc, outfile);
|
2006-10-31 15:55:56 +00:00
|
|
|
if (w < 0) goto out_status;
|
2008-04-02 21:20:35 +00:00
|
|
|
if (w > 0) G.out_part++;
|
2000-09-11 00:32:13 +00:00
|
|
|
}
|
2006-10-31 15:55:56 +00:00
|
|
|
if (close(ifd) < 0) {
|
2007-07-24 15:54:42 +00:00
|
|
|
die_infile:
|
2007-10-01 11:58:38 +00:00
|
|
|
bb_simple_perror_msg_and_die(infile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2001-12-07 16:27:37 +00:00
|
|
|
|
2006-10-31 15:55:56 +00:00
|
|
|
if (close(ofd) < 0) {
|
2007-07-24 15:54:42 +00:00
|
|
|
die_outfile:
|
2007-10-01 11:58:38 +00:00
|
|
|
bb_simple_perror_msg_and_die(outfile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2007-12-02 01:44:42 +00:00
|
|
|
|
|
|
|
exitcode = EXIT_SUCCESS;
|
2007-07-24 15:54:42 +00:00
|
|
|
out_status:
|
2006-05-02 22:44:04 +00:00
|
|
|
dd_output_status(0);
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
return exitcode;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|