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
|
|
|
*/
|
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
#include <sys/types.h>
|
2002-02-05 15:28:54 +00:00
|
|
|
#include <sys/stat.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
1999-10-12 22:26:06 +00:00
|
|
|
#include <fcntl.h>
|
2006-05-02 22:44:04 +00:00
|
|
|
#include <signal.h> // For FEATURE_DD_SIGNAL_HANDLING
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
|
|
|
|
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 },
|
|
|
|
{ "MD", 1000000 },
|
|
|
|
{ "M", 1048576 },
|
|
|
|
{ "GD", 1000000000 },
|
|
|
|
{ "G", 1073741824 },
|
|
|
|
{ NULL, 0 }
|
|
|
|
};
|
|
|
|
|
2006-05-02 22:44:04 +00:00
|
|
|
static size_t out_full;
|
|
|
|
static size_t out_part;
|
|
|
|
static size_t in_full;
|
|
|
|
static size_t in_part;
|
|
|
|
|
|
|
|
static void dd_output_status(int cur_signal)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%ld+%ld records in\n%ld+%ld records out\n",
|
|
|
|
(long)in_full, (long)in_part,
|
|
|
|
(long)out_full, (long)out_part);
|
|
|
|
}
|
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
int dd_main(int argc, char **argv)
|
1999-10-12 22:26:06 +00:00
|
|
|
{
|
2002-11-28 11:05:28 +00:00
|
|
|
size_t count = -1;
|
|
|
|
size_t bs = 512;
|
2000-12-18 21:38:57 +00:00
|
|
|
ssize_t n;
|
2002-11-28 11:05:28 +00:00
|
|
|
off_t seek = 0;
|
|
|
|
off_t skip = 0;
|
|
|
|
int sync_flag = FALSE;
|
|
|
|
int noerror = FALSE;
|
2004-01-30 22:24:32 +00:00
|
|
|
int trunc_flag = TRUE;
|
2002-11-28 11:05:28 +00:00
|
|
|
int oflag;
|
|
|
|
int ifd;
|
|
|
|
int ofd;
|
|
|
|
int i;
|
2003-03-19 09:13:01 +00:00
|
|
|
const char *infile = NULL;
|
|
|
|
const char *outfile = NULL;
|
2002-11-28 11:05:28 +00:00
|
|
|
char *buf;
|
2000-12-18 21:38:57 +00:00
|
|
|
|
2006-05-02 22:44:04 +00:00
|
|
|
if (ENABLE_FEATURE_DD_SIGNAL_HANDLING)
|
|
|
|
{
|
|
|
|
struct sigaction sa;
|
|
|
|
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.sa_handler = dd_output_status;
|
|
|
|
sa.sa_flags = SA_RESTART;
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
sigaction(SIGUSR1, &sa, 0);
|
|
|
|
}
|
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (strncmp("bs=", argv[i], 3) == 0)
|
2003-03-19 09:13:01 +00:00
|
|
|
bs = bb_xparse_number(argv[i]+3, dd_suffixes);
|
2000-12-18 21:38:57 +00:00
|
|
|
else if (strncmp("count=", argv[i], 6) == 0)
|
2003-03-19 09:13:01 +00:00
|
|
|
count = bb_xparse_number(argv[i]+6, dd_suffixes);
|
2000-12-18 21:38:57 +00:00
|
|
|
else if (strncmp("seek=", argv[i], 5) == 0)
|
2003-03-19 09:13:01 +00:00
|
|
|
seek = bb_xparse_number(argv[i]+5, dd_suffixes);
|
2000-12-18 21:38:57 +00:00
|
|
|
else if (strncmp("skip=", argv[i], 5) == 0)
|
2003-03-19 09:13:01 +00:00
|
|
|
skip = bb_xparse_number(argv[i]+5, dd_suffixes);
|
2000-12-18 21:38:57 +00:00
|
|
|
else if (strncmp("if=", argv[i], 3) == 0)
|
|
|
|
infile = argv[i]+3;
|
|
|
|
else if (strncmp("of=", argv[i], 3) == 0)
|
|
|
|
outfile = argv[i]+3;
|
|
|
|
else if (strncmp("conv=", argv[i], 5) == 0) {
|
|
|
|
buf = argv[i]+5;
|
|
|
|
while (1) {
|
|
|
|
if (strncmp("notrunc", buf, 7) == 0) {
|
2004-01-30 22:24:32 +00:00
|
|
|
trunc_flag = FALSE;
|
2000-12-18 21:38:57 +00:00
|
|
|
buf += 7;
|
|
|
|
} else if (strncmp("sync", buf, 4) == 0) {
|
2001-03-21 07:34:27 +00:00
|
|
|
sync_flag = TRUE;
|
2000-12-18 21:38:57 +00:00
|
|
|
buf += 4;
|
2002-04-27 01:31:43 +00:00
|
|
|
} else if (strncmp("noerror", buf, 7) == 0) {
|
|
|
|
noerror = TRUE;
|
|
|
|
buf += 7;
|
2000-12-18 21:38:57 +00:00
|
|
|
} else {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("invalid conversion `%s'", argv[i]+5);
|
2000-12-18 21:38:57 +00:00
|
|
|
}
|
|
|
|
if (buf[0] == '\0')
|
|
|
|
break;
|
|
|
|
if (buf[0] == ',')
|
|
|
|
buf++;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-12-18 21:38:57 +00:00
|
|
|
} else
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_show_usage();
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
buf = xmalloc(bs);
|
2000-03-23 01:09:18 +00:00
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
if (infile != NULL) {
|
2003-06-20 09:01:58 +00:00
|
|
|
ifd = bb_xopen(infile, O_RDONLY);
|
2000-12-18 21:38:57 +00:00
|
|
|
} else {
|
|
|
|
ifd = STDIN_FILENO;
|
2003-03-19 09:13:01 +00:00
|
|
|
infile = bb_msg_standard_input;
|
1999-10-13 00:53:55 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
if (outfile != NULL) {
|
2001-01-17 00:21:05 +00:00
|
|
|
oflag = O_WRONLY | O_CREAT;
|
|
|
|
|
2004-01-30 22:24:32 +00:00
|
|
|
if (!seek && trunc_flag) {
|
2001-01-17 00:21:05 +00:00
|
|
|
oflag |= O_TRUNC;
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2001-01-17 00:21:05 +00:00
|
|
|
|
2006-04-13 12:45:04 +00:00
|
|
|
ofd = bb_xopen3(outfile, oflag, 0666);
|
2001-01-17 00:21:05 +00:00
|
|
|
|
2004-01-30 22:24:32 +00:00
|
|
|
if (seek && trunc_flag) {
|
2002-02-05 15:28:54 +00:00
|
|
|
if (ftruncate(ofd, seek * bs) < 0) {
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (fstat (ofd, &st) < 0 || S_ISREG (st.st_mode) ||
|
2002-11-28 11:05:28 +00:00
|
|
|
S_ISDIR (st.st_mode)) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("%s", outfile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
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
|
|
|
}
|
2000-03-23 01:09:18 +00:00
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
if (skip) {
|
2002-11-28 11:05:28 +00:00
|
|
|
if (lseek(ifd, skip * bs, SEEK_CUR) < 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("%s", infile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
1999-10-12 22:26:06 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
if (seek) {
|
2002-11-28 11:05:28 +00:00
|
|
|
if (lseek(ofd, seek * bs, SEEK_CUR) < 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("%s", outfile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2000-12-18 21:38:57 +00:00
|
|
|
}
|
2000-11-29 22:33:02 +00:00
|
|
|
|
2000-12-18 21:38:57 +00:00
|
|
|
while (in_full + in_part != count) {
|
2002-04-27 01:31:43 +00:00
|
|
|
if (noerror) {
|
|
|
|
/* Pre-zero the buffer when doing the noerror thing */
|
|
|
|
memset(buf, '\0', bs);
|
|
|
|
}
|
2000-12-18 21:38:57 +00:00
|
|
|
n = safe_read(ifd, buf, bs);
|
2002-04-27 01:31:43 +00:00
|
|
|
if (n < 0) {
|
|
|
|
if (noerror) {
|
|
|
|
n = bs;
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("%s", infile);
|
2002-04-27 01:31:43 +00:00
|
|
|
} else {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("%s", infile);
|
2002-04-27 01:31:43 +00:00
|
|
|
}
|
|
|
|
}
|
2002-11-28 11:05:28 +00:00
|
|
|
if (n == 0) {
|
2000-08-25 03:50:10 +00:00
|
|
|
break;
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2006-01-31 12:06:57 +00:00
|
|
|
if ((size_t)n == bs) {
|
2000-12-18 21:38:57 +00:00
|
|
|
in_full++;
|
2002-11-28 11:05:28 +00:00
|
|
|
} else {
|
2000-12-18 21:38:57 +00:00
|
|
|
in_part++;
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2001-03-21 07:34:27 +00:00
|
|
|
if (sync_flag) {
|
2000-12-18 21:38:57 +00:00
|
|
|
memset(buf + n, '\0', bs - n);
|
|
|
|
n = bs;
|
2000-11-29 22:33:02 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
n = bb_full_write(ofd, buf, n);
|
2002-11-28 11:05:28 +00:00
|
|
|
if (n < 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("%s", outfile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2006-01-31 12:06:57 +00:00
|
|
|
if ((size_t)n == bs) {
|
2000-12-18 21:38:57 +00:00
|
|
|
out_full++;
|
2002-11-28 11:05:28 +00:00
|
|
|
} else {
|
2000-12-18 21:38:57 +00:00
|
|
|
out_part++;
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2000-09-11 00:32:13 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2002-11-28 11:05:28 +00:00
|
|
|
if (close (ifd) < 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("%s", infile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2001-12-07 16:27:37 +00:00
|
|
|
|
2002-11-28 11:05:28 +00:00
|
|
|
if (close (ofd) < 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("%s", outfile);
|
2002-11-28 11:05:28 +00:00
|
|
|
}
|
2001-12-07 16:27:37 +00:00
|
|
|
|
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
|
|
|
}
|