blob: b3703874806c8c94ae62079d32705419ba0b9b98 [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/*
Eric Andersenc4996011999-10-20 22:08:37 +00002 * Mini dd implementation for busybox
3 *
4 * Copyright (C) 1999 by Lineo, inc.
5 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
6 * based in part on code taken from sash.
7 *
Eric Andersencc8ed391999-10-05 16:24:54 +00008 * Copyright (c) 1999 by David I. Bell
9 * Permission is granted to use, distribute, or modify this source,
10 * provided that this copyright notice remains intact.
11 *
Eric Andersencc8ed391999-10-05 16:24:54 +000012 * Permission to distribute this code under the GPL has been granted.
Eric Andersenc4996011999-10-20 22:08:37 +000013 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
Eric Andersencc8ed391999-10-05 16:24:54 +000028 */
29
Eric Andersenc4996011999-10-20 22:08:37 +000030
Eric Andersencc8ed391999-10-05 16:24:54 +000031#include "internal.h"
Eric Andersencb41c2e1999-11-22 07:41:00 +000032#include <features.h>
Eric Andersen3cf52d11999-10-12 22:26:06 +000033#include <stdio.h>
34#include <fcntl.h>
35#include <errno.h>
Eric Andersencb41c2e1999-11-22 07:41:00 +000036#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1)
Eric Andersen6a76e651999-11-19 05:31:45 +000037#include <inttypes.h>
Eric Andersencb41c2e1999-11-22 07:41:00 +000038#else
39typedef unsigned long long int uintmax_t;
40#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000041
Eric Andersene77ae3a1999-10-19 20:03:34 +000042static const char dd_usage[] =
Eric Andersend73dc5b1999-11-10 23:13:02 +000043"dd [if=name] [of=name] [bs=n] [count=n]\n\n"
Eric Andersenc4996011999-10-20 22:08:37 +000044"Copy a file, converting and formatting according to options\n\n"
45"\tif=FILE\tread from FILE instead of stdin\n"
46"\tof=FILE\twrite to FILE instead of stout\n"
47"\tbs=n\tread and write N BYTES at a time\n"
48"\tcount=n\tcopy only n input blocks\n"
49//"\tskip=n\tskip n input blocks\n"
50"\n"
51"BYTES may be suffixed: by k for x1024, b for x512, and w for x2.\n";
Eric Andersencc8ed391999-10-05 16:24:54 +000052
53
Eric Andersencc8ed391999-10-05 16:24:54 +000054
55
56/*
57 * Read a number with a possible multiplier.
58 * Returns -1 if the number format is illegal.
59 */
Eric Andersen3cf52d11999-10-12 22:26:06 +000060static long getNum (const char *cp)
Eric Andersencc8ed391999-10-05 16:24:54 +000061{
Eric Andersen3cf52d11999-10-12 22:26:06 +000062 long value;
Eric Andersencc8ed391999-10-05 16:24:54 +000063
Eric Andersen3cf52d11999-10-12 22:26:06 +000064 if (!isDecimal (*cp))
65 return -1;
Eric Andersencc8ed391999-10-05 16:24:54 +000066
Eric Andersen3cf52d11999-10-12 22:26:06 +000067 value = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +000068
Eric Andersen3cf52d11999-10-12 22:26:06 +000069 while (isDecimal (*cp))
70 value = value * 10 + *cp++ - '0';
Eric Andersencc8ed391999-10-05 16:24:54 +000071
Eric Andersen3cf52d11999-10-12 22:26:06 +000072 switch (*cp++) {
73 case 'k':
74 value *= 1024;
75 break;
Eric Andersencc8ed391999-10-05 16:24:54 +000076
Eric Andersen3cf52d11999-10-12 22:26:06 +000077 case 'b':
78 value *= 512;
79 break;
Eric Andersencc8ed391999-10-05 16:24:54 +000080
Eric Andersen3cf52d11999-10-12 22:26:06 +000081 case 'w':
82 value *= 2;
83 break;
Eric Andersencc8ed391999-10-05 16:24:54 +000084
Eric Andersen3cf52d11999-10-12 22:26:06 +000085 case '\0':
Eric Andersencc8ed391999-10-05 16:24:54 +000086 return value;
Eric Andersen3cf52d11999-10-12 22:26:06 +000087
88 default:
89 return -1;
90 }
91
92 if (*cp)
93 return -1;
94
95 return value;
Eric Andersencc8ed391999-10-05 16:24:54 +000096}
97
Eric Andersen3cf52d11999-10-12 22:26:06 +000098
99extern int dd_main (int argc, char **argv)
100{
Eric Andersen6a76e651999-11-19 05:31:45 +0000101 const char *inFile = NULL;
102 const char *outFile = NULL;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000103 char *cp;
104 int inFd;
105 int outFd;
106 int inCc = 0;
107 int outCc;
Eric Andersen6a76e651999-11-19 05:31:45 +0000108 size_t blockSize = 512;
109 //uintmax_t skipBlocks = 0;
110 uintmax_t count = (uintmax_t)-1;
111 uintmax_t intotal;
112 uintmax_t outTotal;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000113 unsigned char *buf;
114
Eric Andersen3cf52d11999-10-12 22:26:06 +0000115 argc--;
116 argv++;
117
118 /* Parse any options */
119 while (argc) {
Eric Andersen5de30651999-10-13 00:53:55 +0000120 if (inFile == NULL && (strncmp(*argv, "if", 2) == 0))
121 inFile=((strchr(*argv, '='))+1);
122 else if (outFile == NULL && (strncmp(*argv, "of", 2) == 0))
123 outFile=((strchr(*argv, '='))+1);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000124 else if (strncmp("count", *argv, 5) == 0) {
Eric Andersen5de30651999-10-13 00:53:55 +0000125 count = getNum ((strchr(*argv, '='))+1);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000126 if (count <= 0) {
Eric Andersen6a76e651999-11-19 05:31:45 +0000127 fprintf (stderr, "Bad count value %s\n", *argv);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000128 goto usage;
129 }
130 }
Eric Andersen5de30651999-10-13 00:53:55 +0000131 else if (strncmp(*argv, "bs", 2) == 0) {
132 blockSize = getNum ((strchr(*argv, '='))+1);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000133 if (blockSize <= 0) {
Eric Andersen6a76e651999-11-19 05:31:45 +0000134 fprintf (stderr, "Bad block size value %s\n", *argv);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000135 goto usage;
136 }
137 }
Eric Andersenc4996011999-10-20 22:08:37 +0000138#if 0
Eric Andersen5de30651999-10-13 00:53:55 +0000139 else if (strncmp(*argv, "skip", 4) == 0) {
Eric Andersen3cf52d11999-10-12 22:26:06 +0000140 skipBlocks = atoi( *argv);
141 if (skipBlocks <= 0) {
142 fprintf (stderr, "Bad skip value %d\n", skipBlocks);
143 goto usage;
144 }
145
146 }
Eric Andersenc4996011999-10-20 22:08:37 +0000147#endif
Eric Andersen3cf52d11999-10-12 22:26:06 +0000148 else {
Eric Andersen3cf52d11999-10-12 22:26:06 +0000149 goto usage;
Eric Andersen5de30651999-10-13 00:53:55 +0000150 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000151 argc--;
152 argv++;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000153 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000154
155 buf = malloc (blockSize);
156 if (buf == NULL) {
157 fprintf (stderr, "Cannot allocate buffer\n");
Eric Andersen5de30651999-10-13 00:53:55 +0000158 exit( FALSE);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000159 }
160
161 intotal = 0;
162 outTotal = 0;
163
Eric Andersen6a76e651999-11-19 05:31:45 +0000164 if (inFile == NULL)
Eric Andersen08b10341999-11-19 02:38:58 +0000165 inFd = fileno(stdin);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000166 else
167 inFd = open (inFile, 0);
168
169 if (inFd < 0) {
170 perror (inFile);
171 free (buf);
Eric Andersen5de30651999-10-13 00:53:55 +0000172 exit( FALSE);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000173 }
174
Eric Andersen5de30651999-10-13 00:53:55 +0000175 if (outFile == NULL)
Eric Andersen08b10341999-11-19 02:38:58 +0000176 outFd = fileno(stdout);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000177 else
178 outFd = creat (outFile, 0666);
179
180 if (outFd < 0) {
181 perror (outFile);
182 close (inFd);
183 free (buf);
Eric Andersen5de30651999-10-13 00:53:55 +0000184 exit( FALSE);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000185 }
186
Eric Andersen5de30651999-10-13 00:53:55 +0000187 //lseek(inFd, skipBlocks*blockSize, SEEK_SET);
Eric Andersenb186d981999-12-03 09:19:54 +0000188 //
189 //TODO: Convert to using fullRead & fullWrite
190 // from utilitity.c
191 // -Erik
Eric Andersen3cf52d11999-10-12 22:26:06 +0000192 while (outTotal < count * blockSize) {
193 inCc = read (inFd, buf, blockSize);
194 if (inCc < 0) {
195 perror (inFile);
196 goto cleanup;
Eric Andersen08b10341999-11-19 02:38:58 +0000197 } else if (inCc == 0) {
198 goto cleanup;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000199 }
200 intotal += inCc;
201 cp = buf;
202
203 while (intotal > outTotal) {
204 if (outTotal + inCc > count * blockSize)
205 inCc = count * blockSize - outTotal;
206 outCc = write (outFd, cp, inCc);
207 if (outCc < 0) {
208 perror (outFile);
209 goto cleanup;
Eric Andersen08b10341999-11-19 02:38:58 +0000210 } else if (outCc == 0) {
211 goto cleanup;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000212 }
213
214 inCc -= outCc;
215 cp += outCc;
216 outTotal += outCc;
217 }
218 }
219
220 if (inCc < 0)
221 perror (inFile);
222
223 cleanup:
224 close (inFd);
225 close (outFd);
226 free (buf);
227
Eric Andersen6a76e651999-11-19 05:31:45 +0000228 printf ("%ld+%d records in\n", (long)(intotal / blockSize),
Eric Andersen3cf52d11999-10-12 22:26:06 +0000229 (intotal % blockSize) != 0);
Eric Andersen6a76e651999-11-19 05:31:45 +0000230 printf ("%ld+%d records out\n", (long)(outTotal / blockSize),
Eric Andersen3cf52d11999-10-12 22:26:06 +0000231 (outTotal % blockSize) != 0);
232 exit( TRUE);
233 usage:
234
Eric Andersend73dc5b1999-11-10 23:13:02 +0000235 usage( dd_usage);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000236}
237
Eric Andersencc8ed391999-10-05 16:24:54 +0000238