dd: fix bugs: always assumed conv=sync, died on write errors

w/o perror and statictics. Several small improvements
This commit is contained in:
Denis Vlasenko 2006-10-31 15:55:56 +00:00
parent 5f18e7ca33
commit 3b8ff68ec8
2 changed files with 70 additions and 51 deletions

View File

@ -35,15 +35,26 @@ static void dd_output_status(int ATTRIBUTE_UNUSED cur_signal)
out_full, out_part); out_full, out_part);
} }
static ssize_t full_write_or_warn(int fd, const void *buf, size_t len,
const char* filename)
{
ssize_t n = full_write(fd, buf, len);
if (n < 0)
bb_perror_msg("writing '%s'", filename);
return n;
}
int dd_main(int argc, char **argv) int dd_main(int argc, char **argv)
{ {
#define sync_flag (1<<0) enum {
#define noerror (1<<1) sync_flag = 1 << 0,
#define trunc_flag (1<<2) noerror = 1 << 1,
#define twobufs_flag (1<<3) trunc_flag = 1 << 2,
twobufs_flag = 1 << 3,
};
int flags = trunc_flag; int flags = trunc_flag;
size_t oc = 0, ibs = 512, obs = 512; size_t oc = 0, ibs = 512, obs = 512;
ssize_t n; ssize_t n, w;
off_t seek = 0, skip = 0, count = OFF_T_MAX; off_t seek = 0, skip = 0, count = OFF_T_MAX;
int oflag, ifd, ofd; int oflag, ifd, ofd;
const char *infile = NULL, *outfile = NULL; const char *infile = NULL, *outfile = NULL;
@ -60,52 +71,53 @@ int dd_main(int argc, char **argv)
} }
for (n = 1; n < argc; n++) { for (n = 1; n < argc; n++) {
char *arg = argv[n];
/* Must fit into positive ssize_t */
if (ENABLE_FEATURE_DD_IBS_OBS && !strncmp("ibs=", arg, 4))
ibs = xatoul_range_sfx(arg+4, 0, ((size_t)-1L)/2, dd_suffixes);
else if (ENABLE_FEATURE_DD_IBS_OBS && !strncmp("obs=", arg, 4))
obs = xatoul_range_sfx(arg+4, 0, ((size_t)-1L)/2, dd_suffixes);
else if (!strncmp("bs=", arg, 3))
ibs = obs = xatoul_range_sfx(arg+3, 0, ((size_t)-1L)/2, dd_suffixes);
// FIXME: make them capable of eating LARGE numbers // FIXME: make them capable of eating LARGE numbers
if (ENABLE_FEATURE_DD_IBS_OBS && !strncmp("ibs=", argv[n], 4)) { else if (!strncmp("count=", arg, 6))
ibs = xatoul_sfx(argv[n]+4, dd_suffixes); count = xatoul_sfx(arg+6, dd_suffixes);
flags |= twobufs_flag; else if (!strncmp("seek=", arg, 5))
} else if (ENABLE_FEATURE_DD_IBS_OBS && !strncmp("obs=", argv[n], 4)) { seek = xatoul_sfx(arg+5, dd_suffixes);
obs = xatoul_sfx(argv[n]+4, dd_suffixes); else if (!strncmp("skip=", arg, 5))
flags |= twobufs_flag; skip = xatoul_sfx(arg+5, dd_suffixes);
} else if (!strncmp("bs=", argv[n], 3))
ibs = obs = xatoul_sfx(argv[n]+3, dd_suffixes); else if (!strncmp("if=", arg, 3))
else if (!strncmp("count=", argv[n], 6)) infile = arg+3;
count = xatoul_sfx(argv[n]+6, dd_suffixes); else if (!strncmp("of=", arg, 3))
else if (!strncmp("seek=", argv[n], 5)) outfile = arg+3;
seek = xatoul_sfx(argv[n]+5, dd_suffixes); else if (ENABLE_FEATURE_DD_IBS_OBS && !strncmp("conv=", arg, 5)) {
else if (!strncmp("skip=", argv[n], 5)) arg += 5;
skip = xatoul_sfx(argv[n]+5, dd_suffixes);
else if (!strncmp("if=", argv[n], 3))
infile = argv[n]+3;
else if (!strncmp("of=", argv[n], 3))
outfile = argv[n]+3;
else if (ENABLE_FEATURE_DD_IBS_OBS && !strncmp("conv=", argv[n], 5)) {
ibuf = argv[n]+5;
while (1) { while (1) {
if (!strncmp("notrunc", ibuf, 7)) { if (!strncmp("notrunc", arg, 7)) {
flags &= ~trunc_flag; flags &= ~trunc_flag;
ibuf += 7; arg += 7;
} else if (!strncmp("sync", ibuf, 4)) { } else if (!strncmp("sync", arg, 4)) {
flags |= sync_flag; flags |= sync_flag;
ibuf += 4; arg += 4;
} else if (!strncmp("noerror", ibuf, 7)) { } else if (!strncmp("noerror", arg, 7)) {
flags |= noerror; flags |= noerror;
ibuf += 7; arg += 7;
} else { } else {
bb_error_msg_and_die(bb_msg_invalid_arg, argv[n]+5, "conv"); bb_error_msg_and_die(bb_msg_invalid_arg, arg, "conv");
} }
if (ibuf[0] == '\0') break; if (arg[0] == '\0') break;
if (ibuf[0] == ',') ibuf++; if (*arg++ != ',') bb_show_usage();
} }
} else } else
bb_show_usage(); bb_show_usage();
} }
ibuf = xmalloc(ibs);
if (flags & twobufs_flag) ibuf = obuf = xmalloc(ibs);
if (ibs != obs) {
flags |= twobufs_flag;
obuf = xmalloc(obs); obuf = xmalloc(obs);
else }
obuf = ibuf;
if (infile != NULL) if (infile != NULL)
ifd = xopen(infile, O_RDONLY); ifd = xopen(infile, O_RDONLY);
@ -173,7 +185,7 @@ int dd_main(int argc, char **argv)
in_full++; in_full++;
else { else {
in_part++; in_part++;
if (sync_flag) { if (flags & sync_flag) {
memset(ibuf + n, '\0', ibs - n); memset(ibuf + n, '\0', ibs - n);
n = ibs; n = ibs;
} }
@ -190,33 +202,40 @@ int dd_main(int argc, char **argv)
tmp += d; tmp += d;
oc += d; oc += d;
if (oc == obs) { if (oc == obs) {
xwrite(ofd, obuf, obs); w = full_write_or_warn(ofd, obuf, obs, outfile);
out_full++; if (w < 0) goto out_status;
if (w == obs)
out_full++;
else if (w > 0)
out_part++;
oc = 0; oc = 0;
} }
} }
} else { } else {
xwrite(ofd, ibuf, n); w = full_write_or_warn(ofd, ibuf, n, outfile);
if (n == ibs) if (w < 0) goto out_status;
if (w == obs)
out_full++; out_full++;
else else if (w > 0)
out_part++; out_part++;
} }
} }
if (ENABLE_FEATURE_DD_IBS_OBS && oc) { if (ENABLE_FEATURE_DD_IBS_OBS && oc) {
xwrite(ofd, obuf, oc); w = full_write_or_warn(ofd, obuf, oc, outfile);
out_part++; if (w < 0) goto out_status;
if (w > 0)
out_part++;
} }
if (close (ifd) < 0) { if (close(ifd) < 0) {
bb_perror_msg_and_die("%s", infile); bb_perror_msg_and_die("%s", infile);
} }
if (close (ofd) < 0) { if (close(ofd) < 0) {
die_outfile: die_outfile:
bb_perror_msg_and_die("%s", outfile); bb_perror_msg_and_die("%s", outfile);
} }
out_status:
dd_output_status(0); dd_output_status(0);
return EXIT_SUCCESS; return EXIT_SUCCESS;

View File

@ -27,7 +27,7 @@ ssize_t full_write(int fd, const void *buf, size_t len)
cc = safe_write(fd, buf, len); cc = safe_write(fd, buf, len);
if (cc < 0) if (cc < 0)
return cc; /* write() returns -1 on failure. */ return cc; /* write() returns -1 on failure. */
total += cc; total += cc;
buf = ((const char *)buf) + cc; buf = ((const char *)buf) + cc;