Updates
[oweals/busybox.git] / dd.c
1 /*
2  * 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  *
8  * 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  *
12  * Permission to distribute this code under the GPL has been granted.
13  *
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  *
28  */
29
30
31 #include "internal.h"
32 #include <stdio.h>
33 #include <fcntl.h>
34 #include <errno.h>
35
36 static const char dd_usage[] =
37 "dd [if=name] [of=name] [bs=n] [count=n]\n\n"
38 "Copy a file, converting and formatting according to options\n\n"
39 "\tif=FILE\tread from FILE instead of stdin\n"
40 "\tof=FILE\twrite to FILE instead of stout\n"
41 "\tbs=n\tread and write N BYTES at a time\n"
42 "\tcount=n\tcopy only n input blocks\n"
43 //"\tskip=n\tskip n input blocks\n"
44 "\n"
45 "BYTES may be suffixed: by k for x1024, b for x512, and w for x2.\n";
46
47
48
49
50 /*
51  * Read a number with a possible multiplier.
52  * Returns -1 if the number format is illegal.
53  */
54 static long getNum (const char *cp)
55 {
56     long value;
57
58     if (!isDecimal (*cp))
59         return -1;
60
61     value = 0;
62
63     while (isDecimal (*cp))
64         value = value * 10 + *cp++ - '0';
65
66     switch (*cp++) {
67     case 'k':
68         value *= 1024;
69         break;
70
71     case 'b':
72         value *= 512;
73         break;
74
75     case 'w':
76         value *= 2;
77         break;
78
79     case '\0':
80         return value;
81
82     default:
83         return -1;
84     }
85
86     if (*cp)
87         return -1;
88
89     return value;
90 }
91
92
93 extern int dd_main (int argc, char **argv)
94 {
95     const char *inFile;
96     const char *outFile;
97     char *cp;
98     int inFd;
99     int outFd;
100     int inCc = 0;
101     int outCc;
102     int skipBlocks;
103     int blockSize;
104     long count;
105     long intotal;
106     long outTotal;
107     unsigned char *buf;
108
109     inFile = NULL;
110     outFile = NULL;
111     blockSize = 512;
112     skipBlocks = 0;
113     count = 1;
114
115
116     argc--;
117     argv++;
118
119     /* Parse any options */
120     while (argc) {
121         if (inFile == NULL && (strncmp(*argv, "if", 2) == 0))
122             inFile=((strchr(*argv, '='))+1);
123         else if (outFile == NULL && (strncmp(*argv, "of", 2) == 0))
124             outFile=((strchr(*argv, '='))+1);
125         else if (strncmp("count", *argv, 5) == 0) {
126             count = getNum ((strchr(*argv, '='))+1);
127             if (count <= 0) {
128                 fprintf (stderr, "Bad count value %ld\n", count);
129                 goto usage;
130             }
131         }
132         else if (strncmp(*argv, "bs", 2) == 0) {
133             blockSize = getNum ((strchr(*argv, '='))+1);
134             if (blockSize <= 0) {
135                 fprintf (stderr, "Bad block size value %d\n", blockSize);
136                 goto usage;
137             }
138         }
139 #if 0
140         else if (strncmp(*argv, "skip", 4) == 0) {
141             skipBlocks = atoi( *argv); 
142             if (skipBlocks <= 0) {
143                 fprintf (stderr, "Bad skip value %d\n", skipBlocks);
144                 goto usage;
145             }
146
147         }
148 #endif
149         else {
150             goto usage;
151         }
152         argc--;
153         argv++;
154     }
155
156     buf = malloc (blockSize);
157     if (buf == NULL) {
158         fprintf (stderr, "Cannot allocate buffer\n");
159         exit( FALSE);
160     }
161
162     intotal = 0;
163     outTotal = 0;
164
165     if (inFile == NULL)
166         inFd = STDIN;
167     else
168         inFd = open (inFile, 0);
169
170     if (inFd < 0) {
171         perror (inFile);
172         free (buf);
173         exit( FALSE);
174     }
175
176     if (outFile == NULL)
177         outFd = STDOUT;
178     else
179         outFd = creat (outFile, 0666);
180
181     if (outFd < 0) {
182         perror (outFile);
183         close (inFd);
184         free (buf);
185         exit( FALSE);
186     }
187
188     //lseek(inFd, skipBlocks*blockSize, SEEK_SET);
189     while (outTotal < count * blockSize) {
190         inCc = read (inFd, buf, blockSize);
191         if (inCc < 0) {
192             perror (inFile);
193             goto cleanup;
194         }
195         intotal += inCc;
196         cp = buf;
197
198         while (intotal > outTotal) {
199             if (outTotal + inCc > count * blockSize)
200                 inCc = count * blockSize - outTotal;
201             outCc = write (outFd, cp, inCc);
202             if (outCc < 0) {
203                 perror (outFile);
204                 goto cleanup;
205             }
206
207             inCc -= outCc;
208             cp += outCc;
209             outTotal += outCc;
210         }
211     }
212
213     if (inCc < 0)
214         perror (inFile);
215
216   cleanup:
217     close (inFd);
218     close (outFd);
219     free (buf);
220
221     printf ("%ld+%d records in\n", intotal / blockSize,
222             (intotal % blockSize) != 0);
223     printf ("%ld+%d records out\n", outTotal / blockSize,
224             (outTotal % blockSize) != 0);
225     exit( TRUE);
226   usage:
227
228     usage( dd_usage);
229 }
230
231