1 /* vi: set sw=4 ts=4: */
3 * Mini dd implementation for busybox
6 * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <sys/types.h>
33 static const struct suffix_mult dd_suffixes[] = {
46 int dd_main(int argc, char **argv)
48 int i, ifd, ofd, oflag, sync_flag = FALSE, trunc = TRUE;
49 size_t in_full = 0, in_part = 0, out_full = 0, out_part = 0;
50 size_t bs = 512, count = -1;
52 off_t seek = 0, skip = 0;
53 char *infile = NULL, *outfile = NULL, *buf;
55 for (i = 1; i < argc; i++) {
56 if (strncmp("bs=", argv[i], 3) == 0)
57 bs = parse_number(argv[i]+3, dd_suffixes);
58 else if (strncmp("count=", argv[i], 6) == 0)
59 count = parse_number(argv[i]+6, dd_suffixes);
60 else if (strncmp("seek=", argv[i], 5) == 0)
61 seek = parse_number(argv[i]+5, dd_suffixes);
62 else if (strncmp("skip=", argv[i], 5) == 0)
63 skip = parse_number(argv[i]+5, dd_suffixes);
64 else if (strncmp("if=", argv[i], 3) == 0)
66 else if (strncmp("of=", argv[i], 3) == 0)
68 else if (strncmp("conv=", argv[i], 5) == 0) {
71 if (strncmp("notrunc", buf, 7) == 0) {
74 } else if (strncmp("sync", buf, 4) == 0) {
78 error_msg_and_die("invalid conversion `%s'", argv[i]+5);
92 if ((ifd = open(infile, O_RDONLY)) < 0)
93 perror_msg_and_die("%s", infile);
96 infile = "standard input";
99 if (outfile != NULL) {
100 oflag = O_WRONLY | O_CREAT;
105 if ((ofd = open(outfile, oflag, 0666)) < 0)
106 perror_msg_and_die("%s", outfile);
109 if (ftruncate(ofd, seek * bs) < 0)
110 perror_msg_and_die("%s", outfile);
114 outfile = "standard output";
118 if (lseek(ifd, skip * bs, SEEK_CUR) < 0)
119 perror_msg_and_die("%s", infile);
123 if (lseek(ofd, seek * bs, SEEK_CUR) < 0)
124 perror_msg_and_die("%s", outfile);
127 while (in_full + in_part != count) {
128 n = safe_read(ifd, buf, bs);
130 perror_msg_and_die("%s", infile);
138 memset(buf + n, '\0', bs - n);
141 n = full_write(ofd, buf, n);
143 perror_msg_and_die("%s", outfile);
150 fprintf(stderr, "%ld+%ld records in\n", (long)in_full, (long)in_part);
151 fprintf(stderr, "%ld+%ld records out\n", (long)out_full, (long)out_part);