blob: 6868a913e811aa5e1b198eca2f80fa167e2419f4 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Eric Andersenc4996011999-10-20 22:08:37 +00003 * Mini dd implementation for busybox
4 *
Erik Andersen61677fe2000-04-13 01:18:56 +00005 * Copyright (C) 1999, 2000 by Lineo, inc.
Eric Andersenc4996011999-10-20 22:08:37 +00006 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersenc4996011999-10-20 22:08:37 +00007 *
Erik Andersen61677fe2000-04-13 01:18:56 +00008 * Based in part on code taken from sash.
9 * Copyright (c) 1999 by David I. Bell
10 * Permission is granted to use, distribute, or modify this source,
11 * provided that this copyright notice remains intact.
Eric Andersencc8ed391999-10-05 16:24:54 +000012 *
Eric Andersencc8ed391999-10-05 16:24:54 +000013 * Permission to distribute this code under the GPL has been granted.
Eric Andersenc4996011999-10-20 22:08:37 +000014 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
Eric Andersencc8ed391999-10-05 16:24:54 +000029 */
30
Eric Andersenc4996011999-10-20 22:08:37 +000031
Eric Andersen3570a342000-09-25 21:45:58 +000032#include "busybox.h"
Eric Andersencb41c2e1999-11-22 07:41:00 +000033#include <features.h>
Eric Andersen3cf52d11999-10-12 22:26:06 +000034#include <stdio.h>
35#include <fcntl.h>
36#include <errno.h>
Erik Andersen4d1d0111999-12-17 18:44:15 +000037#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
Eric Andersen6a76e651999-11-19 05:31:45 +000038#include <inttypes.h>
Eric Andersencb41c2e1999-11-22 07:41:00 +000039#else
40typedef unsigned long long int uintmax_t;
41#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000042
Erik Andersene49d5ec2000-02-08 19:58:47 +000043extern int dd_main(int argc, char **argv)
Eric Andersen3cf52d11999-10-12 22:26:06 +000044{
Erik Andersen1ad302a2000-03-24 00:54:46 +000045 char *inFile = NULL;
46 char *outFile = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +000047 int inFd;
48 int outFd;
49 int inCc = 0;
50 int outCc;
Glenn L McGrathf0b073f2000-09-11 00:32:13 +000051 int trunc=TRUE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000052 long blockSize = 512;
53 uintmax_t skipBlocks = 0;
54 uintmax_t seekBlocks = 0;
55 uintmax_t count = (uintmax_t) - 1;
Glenn L McGrath0ae8e5a2000-09-10 01:54:27 +000056 uintmax_t inTotal = 0;
57 uintmax_t outTotal = 0;
58 uintmax_t totalSize;
59 uintmax_t readSize;
60 unsigned char buf[BUFSIZ];
Glenn L McGrathf0b073f2000-09-11 00:32:13 +000061 char *keyword = NULL;
Eric Andersen3cf52d11999-10-12 22:26:06 +000062
Eric Andersen3cf52d11999-10-12 22:26:06 +000063 argc--;
64 argv++;
Eric Andersen3cf52d11999-10-12 22:26:06 +000065
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 /* Parse any options */
67 while (argc) {
68 if (inFile == NULL && (strncmp(*argv, "if", 2) == 0))
69 inFile = ((strchr(*argv, '=')) + 1);
70 else if (outFile == NULL && (strncmp(*argv, "of", 2) == 0))
71 outFile = ((strchr(*argv, '=')) + 1);
72 else if (strncmp("count", *argv, 5) == 0) {
73 count = getNum((strchr(*argv, '=')) + 1);
Glenn L McGrathf0b073f2000-09-11 00:32:13 +000074 if (count < 0) {
Matt Kraaid537a952000-07-14 01:51:25 +000075 errorMsg("Bad count value %s\n", *argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +000076 goto usage;
77 }
78 } else if (strncmp(*argv, "bs", 2) == 0) {
79 blockSize = getNum((strchr(*argv, '=')) + 1);
80 if (blockSize <= 0) {
Matt Kraaid537a952000-07-14 01:51:25 +000081 errorMsg("Bad block size value %s\n", *argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +000082 goto usage;
83 }
84 } else if (strncmp(*argv, "skip", 4) == 0) {
85 skipBlocks = getNum((strchr(*argv, '=')) + 1);
86 if (skipBlocks <= 0) {
Matt Kraaid537a952000-07-14 01:51:25 +000087 errorMsg("Bad skip value %s\n", *argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +000088 goto usage;
89 }
Eric Andersen3cf52d11999-10-12 22:26:06 +000090
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 } else if (strncmp(*argv, "seek", 4) == 0) {
92 seekBlocks = getNum((strchr(*argv, '=')) + 1);
93 if (seekBlocks <= 0) {
Matt Kraaid537a952000-07-14 01:51:25 +000094 errorMsg("Bad seek value %s\n", *argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 goto usage;
96 }
Glenn L McGrathf0b073f2000-09-11 00:32:13 +000097 } else if (strncmp(*argv, "conv", 4) == 0) {
98 keyword = (strchr(*argv, '=') + 1);
99 if (strcmp(keyword, "notrunc") == 0)
100 trunc=FALSE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101 } else {
102 goto usage;
103 }
104 argc--;
105 argv++;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000106 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000107
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108 if (inFile == NULL)
109 inFd = fileno(stdin);
110 else
111 inFd = open(inFile, 0);
112
113 if (inFd < 0) {
Erik Andersen298854f2000-03-23 01:09:18 +0000114 /* Note that we are not freeing buf or closing
115 * files here to save a few bytes. This exits
116 * here anyways... */
117
118 /* free(buf); */
Matt Kraai324a7782000-10-25 15:10:08 +0000119 fatalPerror("%s", inFile);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 }
121
122 if (outFile == NULL)
123 outFd = fileno(stdout);
124 else
Glenn L McGrath18310f12000-09-10 04:39:37 +0000125 outFd = open(outFile, O_WRONLY | O_CREAT, 0666);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000126
127 if (outFd < 0) {
Erik Andersen298854f2000-03-23 01:09:18 +0000128 /* Note that we are not freeing buf or closing
129 * files here to save a few bytes. This exits
130 * here anyways... */
131
132 /* close(inFd);
133 free(buf); */
Matt Kraai324a7782000-10-25 15:10:08 +0000134 fatalPerror("%s", outFile);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135 }
136
Glenn L McGrath18310f12000-09-10 04:39:37 +0000137 lseek(inFd, (off_t) (skipBlocks * blockSize), SEEK_SET);
Glenn L McGrath729216c2000-09-10 04:42:20 +0000138 lseek(outFd, (off_t) (seekBlocks * blockSize), SEEK_SET);
Glenn L McGrath0ae8e5a2000-09-10 01:54:27 +0000139 totalSize=count*blockSize;
Glenn L McGrath0ae8e5a2000-09-10 01:54:27 +0000140 while ((readSize = totalSize - inTotal) > 0) {
141 if (readSize > BUFSIZ)
142 readSize=BUFSIZ;
Glenn L McGrath56a32882000-09-13 23:08:07 +0000143 inCc = fullRead(inFd, buf, readSize);
Glenn L McGrath0ae8e5a2000-09-10 01:54:27 +0000144 inTotal += inCc;
Glenn L McGrath56a32882000-09-13 23:08:07 +0000145 if ((outCc = fullWrite(outFd, buf, inCc)) < 1)
Glenn L McGrath06aeb6c2000-08-25 03:50:10 +0000146 break;
147 outTotal += outCc;
148 }
Glenn L McGrathf0b073f2000-09-11 00:32:13 +0000149 if (trunc == TRUE) {
150 ftruncate(outFd, lseek(outFd, 0, SEEK_CUR));
151 }
Erik Andersen298854f2000-03-23 01:09:18 +0000152 /* Note that we are not freeing memory or closing
153 * files here, to save a few bytes. */
Eric Andersenb040d4f2000-07-25 18:01:20 +0000154#ifdef BB_FEATURE_CLEAN_UP
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 close(inFd);
156 close(outFd);
Erik Andersen298854f2000-03-23 01:09:18 +0000157#endif
Eric Andersen3cf52d11999-10-12 22:26:06 +0000158
Glenn L McGrath0ae8e5a2000-09-10 01:54:27 +0000159 printf("%ld+%d records in\n", (long) (inTotal / blockSize),
160 (inTotal % blockSize) != 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161 printf("%ld+%d records out\n", (long) (outTotal / blockSize),
162 (outTotal % blockSize) != 0);
163 exit(TRUE);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000164 usage:
165
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 usage(dd_usage);
Eric Andersen3cf52d11999-10-12 22:26:06 +0000167}