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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2006-10-31 15:55:56 +00:00
|
|
|
static ssize_t full_write_or_warn(int fd, 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
|
|
|
{
|
|
|
|
ssize_t n = full_write(fd, buf, len);
|
|
|
|
if (n < 0)
|
|
|
|
bb_perror_msg("writing '%s'", filename);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2007-04-04 14:01:23 +00:00
|
|
|
static bool write_and_stats(int fd, 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
|
|
|
{
|
|
|
|
ssize_t n = full_write_or_warn(fd, buf, len, filename);
|
|
|
|
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;
|
2000-12-18 21:38:57 +00:00
|
|
|
int dd_main(int argc, char **argv)
|
1999-10-12 22:26:06 +00:00
|
|
|
{
|
2006-10-31 15:55:56 +00:00
|
|
|
enum {
|
2007-07-27 15:02:00 +00:00
|
|
|
FLAG_SYNC = 1 << 0,
|
|
|
|
FLAG_NOERROR = 1 << 1,
|
|
|
|
FLAG_NOTRUNC = 1 << 2,
|
|
|
|
FLAG_TWOBUFS = 1 << 3,
|
|
|
|
FLAG_COUNT = 1 << 4,
|
2006-10-31 15:55:56 +00:00
|
|
|
};
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char keywords[] ALIGN1 =
|
2007-07-24 15:54:42 +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
|
2007-07-24 15:54:42 +00:00
|
|
|
"ibs=\0""obs=\0""conv=\0""notrunc\0""sync\0""noerror\0"
|
2007-04-04 14:01:23 +00:00
|
|
|
#endif
|
2007-07-24 15:54:42 +00:00
|
|
|
;
|
2007-04-10 19:30:50 +00:00
|
|
|
enum {
|
|
|
|
OP_bs = 1,
|
|
|
|
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,
|
|
|
|
OP_conv_notrunc,
|
|
|
|
OP_conv_sync,
|
2007-04-19 20:16:14 +00:00
|
|
|
OP_conv_noerror,
|
2007-04-16 12:21:05 +00:00
|
|
|
#endif
|
2007-04-10 19:30:50 +00:00
|
|
|
};
|
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;
|
|
|
|
int ifd, ofd;
|
|
|
|
size_t oc;
|
|
|
|
off_t count;
|
|
|
|
off_t seek, skip;
|
|
|
|
const char *infile, *outfile;
|
|
|
|
#if ENABLE_FEATURE_DD_SIGNAL_HANDLING
|
|
|
|
struct sigaction sigact;
|
|
|
|
#endif
|
|
|
|
} Z;
|
|
|
|
#define flags (Z.flags )
|
|
|
|
#define ifd (Z.ifd )
|
|
|
|
#define ofd (Z.ofd )
|
|
|
|
#define oc (Z.oc )
|
|
|
|
#define count (Z.count )
|
|
|
|
#define seek (Z.seek )
|
|
|
|
#define skip (Z.skip )
|
|
|
|
#define infile (Z.infile )
|
|
|
|
#define outfile (Z.outfile)
|
|
|
|
#define sigact (Z.sigact )
|
2000-12-18 21:38:57 +00:00
|
|
|
|
2007-07-27 15:02:00 +00:00
|
|
|
memset(&Z, 0, sizeof(Z));
|
|
|
|
INIT_G();
|
2006-05-02 22:44:04 +00:00
|
|
|
|
2007-07-27 15:02:00 +00:00
|
|
|
#if ENABLE_FEATURE_DD_SIGNAL_HANDLING
|
|
|
|
sigact.sa_handler = dd_output_status;
|
|
|
|
sigact.sa_flags = SA_RESTART;
|
|
|
|
sigemptyset(&sigact.sa_mask);
|
|
|
|
sigaction(SIGUSR1, &sigact, NULL);
|
|
|
|
#endif
|
2006-05-02 22:44:04 +00:00
|
|
|
|
2006-08-28 23:31:54 +00:00
|
|
|
for (n = 1; n < argc; n++) {
|
2007-04-10 19:30:50 +00:00
|
|
|
smalluint key_len;
|
|
|
|
smalluint what;
|
2007-04-04 14:01:23 +00:00
|
|
|
char *key;
|
2006-10-31 15:55:56 +00:00
|
|
|
char *arg = argv[n];
|
2007-04-04 14:01:23 +00:00
|
|
|
|
|
|
|
//XXX:FIXME: we reject plain "dd --" This would cost ~20 bytes, so..
|
|
|
|
//if (*arg == '-' && *++arg == '-' && !*++arg) continue;
|
|
|
|
key = strstr(arg, "=");
|
|
|
|
if (key == NULL)
|
|
|
|
bb_show_usage();
|
|
|
|
key_len = key - arg + 1;
|
|
|
|
key = xstrndup(arg, key_len);
|
2007-07-24 15:54:42 +00:00
|
|
|
what = index_in_strings(keywords, key) + 1;
|
2007-04-04 14:01:23 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(key);
|
|
|
|
if (what == 0)
|
|
|
|
bb_show_usage();
|
|
|
|
arg += key_len;
|
2006-10-31 15:55:56 +00:00
|
|
|
/* Must fit into positive ssize_t */
|
2007-04-16 12:21:05 +00:00
|
|
|
#if ENABLE_FEATURE_DD_IBS_OBS
|
2007-04-04 14:01:23 +00:00
|
|
|
if (what == OP_ibs) {
|
|
|
|
ibs = xatoul_range_sfx(arg, 1, ((size_t)-1L)/2, dd_suffixes);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (what == OP_obs) {
|
|
|
|
obs = xatoul_range_sfx(arg, 1, ((size_t)-1L)/2, dd_suffixes);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (what == OP_conv) {
|
|
|
|
while (1) {
|
|
|
|
/* find ',', replace them with nil so we can use arg for
|
2007-07-24 15:54:42 +00:00
|
|
|
* index_in_strings() without copying.
|
2007-04-19 20:08:19 +00:00
|
|
|
* We rely on arg being non-null, else strchr would fault.
|
2007-04-04 14:01:23 +00:00
|
|
|
*/
|
2007-04-19 20:08:19 +00:00
|
|
|
key = strchr(arg, ',');
|
2007-04-04 14:01:23 +00:00
|
|
|
if (key)
|
|
|
|
*key = '\0';
|
2007-07-24 15:54:42 +00:00
|
|
|
what = index_in_strings(keywords, arg) + 1;
|
2007-04-04 14:01:23 +00:00
|
|
|
if (what < OP_conv_notrunc)
|
|
|
|
bb_error_msg_and_die(bb_msg_invalid_arg, arg, "conv");
|
|
|
|
if (what == OP_conv_notrunc)
|
2007-07-27 15:02:00 +00:00
|
|
|
flags |= FLAG_NOTRUNC;
|
2007-04-04 14:01:23 +00:00
|
|
|
if (what == OP_conv_sync)
|
2007-07-27 15:02:00 +00:00
|
|
|
flags |= FLAG_SYNC;
|
2007-04-19 20:16:14 +00:00
|
|
|
if (what == OP_conv_noerror)
|
2007-07-27 15:02:00 +00:00
|
|
|
flags |= FLAG_NOERROR;
|
2007-04-04 14:01:23 +00:00
|
|
|
if (!key) /* no ',' left, so this was the last specifier */
|
|
|
|
break;
|
2007-04-19 20:08:19 +00:00
|
|
|
arg = key + 1; /* skip this keyword and ',' */
|
2000-12-18 21:38:57 +00:00
|
|
|
}
|
2007-04-04 14:01:23 +00:00
|
|
|
continue;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2007-04-16 12:21:05 +00:00
|
|
|
#endif
|
2007-04-04 14:01:23 +00:00
|
|
|
if (what == OP_bs) {
|
|
|
|
ibs = obs = xatoul_range_sfx(arg, 1, ((size_t)-1L)/2, dd_suffixes);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* These can be large: */
|
|
|
|
if (what == OP_count) {
|
2007-07-27 15:02:00 +00:00
|
|
|
flags |= FLAG_COUNT;
|
2007-04-04 14:01:23 +00:00
|
|
|
count = XATOU_SFX(arg, dd_suffixes);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (what == OP_seek) {
|
|
|
|
seek = XATOU_SFX(arg, dd_suffixes);
|
|
|
|
continue;
|
|
|
|
}
|
2007-04-19 20:08:19 +00:00
|
|
|
if (what == OP_skip) {
|
2007-04-04 14:01:23 +00:00
|
|
|
skip = XATOU_SFX(arg, dd_suffixes);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (what == OP_if) {
|
|
|
|
infile = arg;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (what == OP_of)
|
|
|
|
outfile = arg;
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
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)
|
2006-10-08 17:54:47 +00:00
|
|
|
ifd = xopen(infile, O_RDONLY);
|
2006-08-28 23:31:54 +00:00
|
|
|
else {
|
2007-07-27 15:02:00 +00:00
|
|
|
/* ifd = STDIN_FILENO; - it's zero and it's already there */
|
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;
|
|
|
|
|
2006-11-26 15:45:17 +00:00
|
|
|
ofd = xopen(outfile, oflag);
|
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 {
|
|
|
|
ofd = STDOUT_FILENO;
|
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-07-27 15:02:00 +00:00
|
|
|
if (flags & FLAG_NOERROR) {
|
2006-05-16 16:52:12 +00:00
|
|
|
n = ibs;
|
2007-10-01 11:58:38 +00:00
|
|
|
bb_simple_perror_msg(infile);
|
2006-08-28 23:31:54 +00:00
|
|
|
} else
|
2007-04-04 14:01:23 +00:00
|
|
|
goto die_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-04-04 14:01:23 +00:00
|
|
|
if (write_and_stats(ofd, obuf, obs, obs, outfile))
|
|
|
|
goto out_status;
|
2006-05-16 16:52:12 +00:00
|
|
|
oc = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-04-19 20:08:19 +00:00
|
|
|
} else if (write_and_stats(ofd, ibuf, n, obs, outfile))
|
|
|
|
goto out_status;
|
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) {
|
2006-10-31 15:55:56 +00:00
|
|
|
w = full_write_or_warn(ofd, obuf, oc, outfile);
|
|
|
|
if (w < 0) goto out_status;
|
|
|
|
if (w > 0)
|
2007-04-04 14:01:23 +00:00
|
|
|
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-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
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|