Stuf
[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 <features.h>
33 #include <stdio.h>
34 #include <fcntl.h>
35 #include <errno.h>
36 #if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1)
37 #include <inttypes.h>
38 #else
39 typedef unsigned long long int uintmax_t;
40 #endif
41
42 static const char dd_usage[] =
43 "dd [if=name] [of=name] [bs=n] [count=n]\n\n"
44 "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";
52
53
54
55
56 /*
57  * Read a number with a possible multiplier.
58  * Returns -1 if the number format is illegal.
59  */
60 static long getNum (const char *cp)
61 {
62     long value;
63
64     if (!isDecimal (*cp))
65         return -1;
66
67     value = 0;
68
69     while (isDecimal (*cp))
70         value = value * 10 + *cp++ - '0';
71
72     switch (*cp++) {
73     case 'k':
74         value *= 1024;
75         break;
76
77     case 'b':
78         value *= 512;
79         break;
80
81     case 'w':
82         value *= 2;
83         break;
84
85     case '\0':
86         return value;
87
88     default:
89         return -1;
90     }
91
92     if (*cp)
93         return -1;
94
95     return value;
96 }
97
98
99 extern int dd_main (int argc, char **argv)
100 {
101     const char *inFile = NULL;
102     const char *outFile = NULL;
103     char *cp;
104     int inFd;
105     int outFd;
106     int inCc = 0;
107     int outCc;
108     size_t blockSize = 512;
109     //uintmax_t skipBlocks = 0;
110     uintmax_t count = (uintmax_t)-1;
111     uintmax_t intotal;
112     uintmax_t outTotal;
113     unsigned char *buf;
114
115     argc--;
116     argv++;
117
118     /* Parse any options */
119     while (argc) {
120         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);
124         else if (strncmp("count", *argv, 5) == 0) {
125             count = getNum ((strchr(*argv, '='))+1);
126             if (count <= 0) {
127                 fprintf (stderr, "Bad count value %s\n", *argv);
128                 goto usage;
129             }
130         }
131         else if (strncmp(*argv, "bs", 2) == 0) {
132             blockSize = getNum ((strchr(*argv, '='))+1);
133             if (blockSize <= 0) {
134                 fprintf (stderr, "Bad block size value %s\n", *argv);
135                 goto usage;
136             }
137         }
138 #if 0
139         else if (strncmp(*argv, "skip", 4) == 0) {
140             skipBlocks = atoi( *argv); 
141             if (skipBlocks <= 0) {
142                 fprintf (stderr, "Bad skip value %d\n", skipBlocks);
143                 goto usage;
144             }
145
146         }
147 #endif
148         else {
149             goto usage;
150         }
151         argc--;
152         argv++;
153     }
154
155     buf = malloc (blockSize);
156     if (buf == NULL) {
157         fprintf (stderr, "Cannot allocate buffer\n");
158         exit( FALSE);
159     }
160
161     intotal = 0;
162     outTotal = 0;
163
164     if (inFile == NULL)
165         inFd = fileno(stdin);
166     else
167         inFd = open (inFile, 0);
168
169     if (inFd < 0) {
170         perror (inFile);
171         free (buf);
172         exit( FALSE);
173     }
174
175     if (outFile == NULL)
176         outFd = fileno(stdout);
177     else
178         outFd = creat (outFile, 0666);
179
180     if (outFd < 0) {
181         perror (outFile);
182         close (inFd);
183         free (buf);
184         exit( FALSE);
185     }
186
187     //lseek(inFd, skipBlocks*blockSize, SEEK_SET);
188     //
189     //TODO: Convert to using fullRead & fullWrite
190     // from utilitity.c
191     //  -Erik
192     while (outTotal < count * blockSize) {
193         inCc = read (inFd, buf, blockSize);
194         if (inCc < 0) {
195             perror (inFile);
196             goto cleanup;
197         } else if (inCc == 0) {
198             goto cleanup;
199         }
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;
210             } else if (outCc == 0) {
211                 goto cleanup;
212             }
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
228     printf ("%ld+%d records in\n", (long)(intotal / blockSize),
229             (intotal % blockSize) != 0);
230     printf ("%ld+%d records out\n", (long)(outTotal / blockSize),
231             (outTotal % blockSize) != 0);
232     exit( TRUE);
233   usage:
234
235     usage( dd_usage);
236 }
237
238