Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 3 | * Mini dd implementation for busybox |
| 4 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | * |
Matt Kraai | 3eeab3b | 2001-12-07 16:27:37 +0000 | [diff] [blame] | 6 | * Copyright (C) 2000,2001 Matt Kraai |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 7 | * |
| 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. |
| 12 | * |
| 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. |
| 17 | * |
| 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 |
| 21 | * |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 24 | #include <sys/types.h> |
Matt Kraai | eb83478 | 2002-02-05 15:28:54 +0000 | [diff] [blame] | 25 | #include <sys/stat.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 26 | #include <stdlib.h> |
| 27 | #include <stdio.h> |
| 28 | #include <unistd.h> |
| 29 | #include <string.h> |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 30 | #include <fcntl.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 31 | #include "busybox.h" |
| 32 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 33 | |
Matt Kraai | a164c64 | 2001-02-05 17:50:03 +0000 | [diff] [blame] | 34 | static const struct suffix_mult dd_suffixes[] = { |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 35 | { "c", 1 }, |
| 36 | { "w", 2 }, |
| 37 | { "b", 512 }, |
| 38 | { "kD", 1000 }, |
| 39 | { "k", 1024 }, |
| 40 | { "MD", 1000000 }, |
| 41 | { "M", 1048576 }, |
| 42 | { "GD", 1000000000 }, |
| 43 | { "G", 1073741824 }, |
| 44 | { NULL, 0 } |
| 45 | }; |
| 46 | |
| 47 | int dd_main(int argc, char **argv) |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 48 | { |
Eric Andersen | ef38b39 | 2002-04-27 01:31:43 +0000 | [diff] [blame] | 49 | int i, ifd, ofd, oflag, sync_flag = FALSE, trunc = TRUE, noerror = FALSE; |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 50 | size_t in_full = 0, in_part = 0, out_full = 0, out_part = 0; |
| 51 | size_t bs = 512, count = -1; |
| 52 | ssize_t n; |
| 53 | off_t seek = 0, skip = 0; |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 54 | char *infile = NULL, *outfile = NULL, *buf; |
Eric Andersen | ddea368 | 2000-11-29 22:33:02 +0000 | [diff] [blame] | 55 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 56 | for (i = 1; i < argc; i++) { |
| 57 | if (strncmp("bs=", argv[i], 3) == 0) |
| 58 | bs = parse_number(argv[i]+3, dd_suffixes); |
| 59 | else if (strncmp("count=", argv[i], 6) == 0) |
| 60 | count = parse_number(argv[i]+6, dd_suffixes); |
| 61 | else if (strncmp("seek=", argv[i], 5) == 0) |
| 62 | seek = parse_number(argv[i]+5, dd_suffixes); |
| 63 | else if (strncmp("skip=", argv[i], 5) == 0) |
| 64 | skip = parse_number(argv[i]+5, dd_suffixes); |
| 65 | else if (strncmp("if=", argv[i], 3) == 0) |
| 66 | infile = argv[i]+3; |
| 67 | else if (strncmp("of=", argv[i], 3) == 0) |
| 68 | outfile = argv[i]+3; |
| 69 | else if (strncmp("conv=", argv[i], 5) == 0) { |
| 70 | buf = argv[i]+5; |
| 71 | while (1) { |
| 72 | if (strncmp("notrunc", buf, 7) == 0) { |
| 73 | trunc = FALSE; |
| 74 | buf += 7; |
| 75 | } else if (strncmp("sync", buf, 4) == 0) { |
Eric Andersen | 1ca20a7 | 2001-03-21 07:34:27 +0000 | [diff] [blame] | 76 | sync_flag = TRUE; |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 77 | buf += 4; |
Eric Andersen | ef38b39 | 2002-04-27 01:31:43 +0000 | [diff] [blame] | 78 | } else if (strncmp("noerror", buf, 7) == 0) { |
| 79 | noerror = TRUE; |
| 80 | buf += 7; |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 81 | } else { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 82 | error_msg_and_die("invalid conversion `%s'", argv[i]+5); |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 83 | } |
| 84 | if (buf[0] == '\0') |
| 85 | break; |
| 86 | if (buf[0] == ',') |
| 87 | buf++; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 88 | } |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 89 | } else |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 90 | show_usage(); |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 91 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 92 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 93 | buf = xmalloc(bs); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 94 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 95 | if (infile != NULL) { |
| 96 | if ((ifd = open(infile, O_RDONLY)) < 0) |
| 97 | perror_msg_and_die("%s", infile); |
| 98 | } else { |
| 99 | ifd = STDIN_FILENO; |
| 100 | infile = "standard input"; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 103 | if (outfile != NULL) { |
Matt Kraai | c9acf8c | 2001-01-17 00:21:05 +0000 | [diff] [blame] | 104 | oflag = O_WRONLY | O_CREAT; |
| 105 | |
| 106 | if (!seek && trunc) |
| 107 | oflag |= O_TRUNC; |
| 108 | |
| 109 | if ((ofd = open(outfile, oflag, 0666)) < 0) |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 110 | perror_msg_and_die("%s", outfile); |
Matt Kraai | c9acf8c | 2001-01-17 00:21:05 +0000 | [diff] [blame] | 111 | |
| 112 | if (seek && trunc) { |
Matt Kraai | eb83478 | 2002-02-05 15:28:54 +0000 | [diff] [blame] | 113 | if (ftruncate(ofd, seek * bs) < 0) { |
| 114 | struct stat st; |
| 115 | |
| 116 | if (fstat (ofd, &st) < 0 || S_ISREG (st.st_mode) || |
| 117 | S_ISDIR (st.st_mode)) |
| 118 | perror_msg_and_die("%s", outfile); |
| 119 | } |
Matt Kraai | c9acf8c | 2001-01-17 00:21:05 +0000 | [diff] [blame] | 120 | } |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 121 | } else { |
| 122 | ofd = STDOUT_FILENO; |
| 123 | outfile = "standard output"; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 124 | } |
| 125 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 126 | if (skip) { |
| 127 | if (lseek(ifd, skip * bs, SEEK_CUR) < 0) |
| 128 | perror_msg_and_die("%s", infile); |
| 129 | } |
Eric Andersen | ddea368 | 2000-11-29 22:33:02 +0000 | [diff] [blame] | 130 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 131 | if (seek) { |
| 132 | if (lseek(ofd, seek * bs, SEEK_CUR) < 0) |
| 133 | perror_msg_and_die("%s", outfile); |
| 134 | } |
Eric Andersen | ddea368 | 2000-11-29 22:33:02 +0000 | [diff] [blame] | 135 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 136 | while (in_full + in_part != count) { |
Eric Andersen | ef38b39 | 2002-04-27 01:31:43 +0000 | [diff] [blame] | 137 | if (noerror) { |
| 138 | /* Pre-zero the buffer when doing the noerror thing */ |
| 139 | memset(buf, '\0', bs); |
| 140 | } |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 141 | n = safe_read(ifd, buf, bs); |
Eric Andersen | ef38b39 | 2002-04-27 01:31:43 +0000 | [diff] [blame] | 142 | if (n < 0) { |
| 143 | if (noerror) { |
| 144 | n = bs; |
| 145 | perror_msg("%s", infile); |
| 146 | } else { |
| 147 | perror_msg_and_die("%s", infile); |
| 148 | } |
| 149 | } |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 150 | if (n == 0) |
Glenn L McGrath | 06aeb6c | 2000-08-25 03:50:10 +0000 | [diff] [blame] | 151 | break; |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 152 | if (n == bs) |
| 153 | in_full++; |
| 154 | else |
| 155 | in_part++; |
Eric Andersen | 1ca20a7 | 2001-03-21 07:34:27 +0000 | [diff] [blame] | 156 | if (sync_flag) { |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 157 | memset(buf + n, '\0', bs - n); |
| 158 | n = bs; |
Eric Andersen | ddea368 | 2000-11-29 22:33:02 +0000 | [diff] [blame] | 159 | } |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 160 | n = full_write(ofd, buf, n); |
| 161 | if (n < 0) |
| 162 | perror_msg_and_die("%s", outfile); |
| 163 | if (n == bs) |
| 164 | out_full++; |
| 165 | else |
| 166 | out_part++; |
Glenn L McGrath | f0b073f | 2000-09-11 00:32:13 +0000 | [diff] [blame] | 167 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 168 | |
Matt Kraai | 3eeab3b | 2001-12-07 16:27:37 +0000 | [diff] [blame] | 169 | if (close (ifd) < 0) |
| 170 | perror_msg_and_die("%s", infile); |
| 171 | |
| 172 | if (close (ofd) < 0) |
| 173 | perror_msg_and_die("%s", outfile); |
| 174 | |
Matt Kraai | 73f6a1b | 2001-07-31 21:02:19 +0000 | [diff] [blame] | 175 | fprintf(stderr, "%ld+%ld records in\n", (long)in_full, (long)in_part); |
| 176 | fprintf(stderr, "%ld+%ld records out\n", (long)out_full, (long)out_part); |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 177 | |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 178 | return EXIT_SUCCESS; |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 179 | } |