1 /* $NetBSD: dd.c,v 1.50 2015/03/18 13:23:49 manu Exp $ */
4 * Copyright (c) 1991, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Keith Muller of the University of California, San Diego and Lance
9 * Visser of Convex Computer Corporation.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/cdefs.h>
38 __COPYRIGHT("@(#) Copyright (c) 1991, 1993, 1994\
39 The Regents of the University of California. All rights reserved.");
44 static char sccsid
[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94";
46 __RCSID("$NetBSD: dd.c,v 1.50 2015/03/18 13:23:49 manu Exp $");
50 #include <sys/param.h>
52 #include <sys/ioctl.h>
70 static void dd_close(void);
71 static void dd_in(void);
72 static void getfdtype(IO
*);
73 static void redup_clean_fd(IO
*);
74 static void setup(void);
76 int main(int, char *[]);
78 IO in
, out
; /* input/output state */
79 STAT st
; /* statistics */
80 void (*cfunc
)(void); /* conversion function */
81 uint64_t cpy_cnt
; /* # of blocks to copy */
82 static off_t pending
= 0; /* pending seek if sparse */
83 u_int ddflags
; /* conversion options */
85 #define iflag O_RDONLY
88 u_int iflag
= O_RDONLY
; /* open(2) flags for input file */
89 u_int oflag
= O_CREAT
; /* open(2) flags for output file */
90 #endif /* NO_IOFLAG */
91 uint64_t cbsz
; /* conversion block size */
92 u_int files_cnt
= 1; /* # of files to copy */
93 uint64_t progress
= 0; /* display sign of life */
94 const u_char
*ctab
; /* conversion table */
95 sigset_t infoset
; /* a set blocking SIGINFO */
96 const char *msgfmt
= "posix"; /* default summary() message format */
99 * Ops for stdin/stdout and crunch'd dd. These are always host ops.
101 static const struct ddfops ddfops_stdfd
= {
108 .op_ftruncate
= ftruncate
,
113 extern const struct ddfops ddfops_prog
;
116 main(int argc
, char *argv
[])
120 setprogname(argv
[0]);
121 (void)setlocale(LC_ALL
, "");
123 while ((ch
= getopt(argc
, argv
, "")) != -1) {
126 errx(EXIT_FAILURE
, "usage: dd [operand ...]");
130 argc
-= (optind
- 1);
131 argv
+= (optind
- 1);
135 if (ddfops_prog
.op_init
&& ddfops_prog
.op_init() == -1)
140 (void)signal(SIGINFO
, summaryx
);
141 (void)signal(SIGINT
, terminate
);
142 (void)sigemptyset(&infoset
);
143 (void)sigaddset(&infoset
, SIGINFO
);
145 (void)atexit(summary
);
159 const struct ddfops
*prog_ops
= &ddfops_stdfd
;
161 const struct ddfops
*prog_ops
= &ddfops_prog
;
164 if (in
.name
== NULL
) {
166 in
.fd
= STDIN_FILENO
;
167 in
.ops
= &ddfops_stdfd
;
170 in
.fd
= ddop_open(in
, in
.name
, iflag
, 0);
172 err(EXIT_FAILURE
, "%s", in
.name
);
175 /* Ensure in.fd is outside the stdio descriptor range */
181 if (files_cnt
> 1 && !(in
.flags
& ISTAPE
)) {
182 errx(EXIT_FAILURE
, "files is not supported for non-tape devices");
186 if (out
.name
== NULL
) {
187 /* No way to check for read access here. */
188 out
.fd
= STDOUT_FILENO
;
190 out
.ops
= &ddfops_stdfd
;
195 if ((oflag
& O_TRUNC
) && (ddflags
& C_SEEK
)) {
196 errx(EXIT_FAILURE
, "oflag=trunc is incompatible "
197 "with seek or oseek operands, giving up.");
200 if ((oflag
& O_TRUNC
) && (ddflags
& C_NOTRUNC
)) {
201 errx(EXIT_FAILURE
, "oflag=trunc is incompatible "
202 "with conv=notrunc operand, giving up.");
205 #endif /* NO_IOFLAG */
207 (oflag | (ddflags & (C_SEEK | C_NOTRUNC) ? 0 : O_TRUNC))
208 out
.fd
= ddop_open(out
, out
.name
, O_RDWR
| OFLAGS
, DEFFILEMODE
);
210 * May not have read access, so try again with write only.
211 * Without read we may have a problem if output also does
215 out
.fd
= ddop_open(out
, out
.name
, O_WRONLY
| OFLAGS
,
220 err(EXIT_FAILURE
, "%s", out
.name
);
224 /* Ensure out.fd is outside the stdio descriptor range */
225 redup_clean_fd(&out
);
231 * Allocate space for the input and output buffers. If not doing
232 * record oriented I/O, only need a single buffer.
234 if (!(ddflags
& (C_BLOCK
|C_UNBLOCK
))) {
235 size_t dbsz
= out
.dbsz
;
236 if (!(ddflags
& C_BS
))
238 if ((in
.db
= malloc(dbsz
)) == NULL
) {
239 err(EXIT_FAILURE
, NULL
);
244 malloc((u_int
)(MAX(in
.dbsz
, cbsz
) + cbsz
))) == NULL
||
245 (out
.db
= malloc((u_int
)(out
.dbsz
+ cbsz
))) == NULL
) {
246 err(EXIT_FAILURE
, NULL
);
252 /* Position the input/output streams. */
259 * Truncate the output file; ignore errors because it fails on some
260 * kinds of output files, tapes, for example.
262 if ((ddflags
& (C_OF
| C_SEEK
| C_NOTRUNC
)) == (C_OF
| C_SEEK
))
263 (void)ddop_ftruncate(out
, out
.fd
, (off_t
)out
.offset
* out
.dbsz
);
266 * If converting case at the same time as another conversion, build a
267 * table that does both at once. If just converting case, use the
270 if (ddflags
& (C_LCASE
|C_UCASE
)) {
272 /* Should not get here, but just in case... */
273 errx(EXIT_FAILURE
, "case conv and -DNO_CONV");
278 if (ddflags
& C_ASCII
|| ddflags
& C_EBCDIC
) {
279 if (ddflags
& C_LCASE
) {
280 for (cnt
= 0; cnt
< 256; ++cnt
)
281 casetab
[cnt
] = tolower(ctab
[cnt
]);
283 for (cnt
= 0; cnt
< 256; ++cnt
)
284 casetab
[cnt
] = toupper(ctab
[cnt
]);
287 if (ddflags
& C_LCASE
) {
288 for (cnt
= 0; cnt
< 256; ++cnt
)
289 casetab
[cnt
] = tolower(cnt
);
291 for (cnt
= 0; cnt
< 256; ++cnt
)
292 casetab
[cnt
] = toupper(cnt
);
300 (void)gettimeofday(&st
.start
, NULL
); /* Statistics timestamp. */
309 if (io
->ops
->op_fstat(io
->fd
, &sb
)) {
310 err(EXIT_FAILURE
, "%s", io
->name
);
313 if (S_ISCHR(sb
.st_mode
))
314 io
->flags
|= io
->ops
->op_ioctl(io
->fd
, MTIOCGET
, &mt
)
316 else if (io
->ops
->op_lseek(io
->fd
, (off_t
)0, SEEK_CUR
) == -1
318 io
->flags
|= ISPIPE
; /* XXX fixed in 4.4BSD */
322 * Move the parameter file descriptor to a descriptor that is outside the
323 * stdio descriptor range, if necessary. This is required to avoid
324 * accidentally outputting completion or error messages into the
325 * output file that were intended for the tty.
328 redup_clean_fd(IO
*io
)
333 if (fd
!= STDIN_FILENO
&& fd
!= STDOUT_FILENO
&&
335 /* File descriptor is ok, return immediately. */
339 * 3 is the first descriptor greater than STD*_FILENO. Any
340 * free descriptor valued 3 or above is acceptable...
342 newfd
= io
->ops
->op_fcntl(fd
, F_DUPFD
, 3);
344 err(EXIT_FAILURE
, "dupfd IO");
348 io
->ops
->op_close(fd
);
358 for (flags
= ddflags
;;) {
359 if (cpy_cnt
&& (st
.in_full
+ st
.in_part
) >= cpy_cnt
)
363 * Clear the buffer first if doing "sync" on input.
364 * If doing block operations use spaces. This will
365 * affect not only the C_NOERROR case, but also the
366 * last partial input block which should be padded
367 * with zero and not garbage.
369 if (flags
& C_SYNC
) {
370 if (flags
& (C_BLOCK
|C_UNBLOCK
))
371 (void)memset(in
.dbp
, ' ', in
.dbsz
);
373 (void)memset(in
.dbp
, 0, in
.dbsz
);
376 n
= ddop_read(in
, in
.fd
, in
.dbp
, in
.dbsz
);
386 * If noerror not specified, die. POSIX requires that
387 * the warning message be followed by an I/O display.
389 if (!(flags
& C_NOERROR
)) {
390 err(EXIT_FAILURE
, "%s", in
.name
);
397 * If it's not a tape drive or a pipe, seek past the
398 * error. If your OS doesn't do the right thing for
399 * raw disks this section should be modified to re-read
400 * in sector size chunks.
402 if (!(in
.flags
& (ISPIPE
|ISTAPE
)) &&
403 ddop_lseek(in
, in
.fd
, (off_t
)in
.dbsz
, SEEK_CUR
))
406 /* If sync not specified, omit block and continue. */
407 if (!(ddflags
& C_SYNC
))
410 /* Read errors count as full blocks. */
411 in
.dbcnt
+= in
.dbrcnt
= in
.dbsz
;
414 /* Handle full input blocks. */
415 } else if ((uint64_t)n
== in
.dbsz
) {
416 in
.dbcnt
+= in
.dbrcnt
= n
;
419 /* Handle partial input blocks. */
421 /* If sync, use the entire block. */
422 if (ddflags
& C_SYNC
)
423 in
.dbcnt
+= in
.dbrcnt
= in
.dbsz
;
425 in
.dbcnt
+= in
.dbrcnt
= n
;
430 * POSIX states that if bs is set and no other conversions
431 * than noerror, notrunc or sync are specified, the block
432 * is output without buffering as it is read.
434 if (ddflags
& C_BS
) {
435 out
.dbcnt
= in
.dbcnt
;
441 if (ddflags
& C_SWAB
) {
442 if ((n
= in
.dbrcnt
) & 1) {
446 swab(in
.dbp
, in
.dbp
, n
);
455 * Cleanup any remaining I/O and flush output. If necessary, output file
464 else if (cfunc
== block
)
466 else if (cfunc
== unblock
)
468 if (ddflags
& C_OSYNC
&& out
.dbcnt
< out
.dbsz
) {
469 (void)memset(out
.dbp
, 0, out
.dbsz
- out
.dbcnt
);
470 out
.dbcnt
= out
.dbsz
;
472 /* If there are pending sparse blocks, make sure
473 * to write out the final block un-sparse
475 if ((out
.dbcnt
== 0) && pending
) {
476 memset(out
.db
, 0, out
.dbsz
);
477 out
.dbcnt
= out
.dbsz
;
478 out
.dbp
= out
.db
+ out
.dbcnt
;
485 * Reporting nfs write error may be deferred until next
486 * write(2) or close(2) system call. So, we need to do an
487 * extra check. If an output is stdout, the file structure
488 * may be shared with other processes and close(2) just
489 * decreases the reference count.
491 if (out
.fd
== STDOUT_FILENO
&& ddop_fsync(out
, out
.fd
) == -1
492 && errno
!= EINVAL
) {
493 err(EXIT_FAILURE
, "fsync stdout");
496 if (ddop_close(out
, out
.fd
) == -1) {
497 err(EXIT_FAILURE
, "close");
510 * Write one or more blocks out. The common case is writing a full
511 * output block in a single write; increment the full block stats.
512 * Otherwise, we're into partial block writes. If a partial write,
513 * and it's a character device, just warn. If a tape device, quit.
515 * The partial writes represent two cases. 1: Where the input block
516 * was less than expected so the output block was less than expected.
517 * 2: Where the input block was the right size but we were forced to
518 * write the block in multiple chunks. The original versions of dd(1)
519 * never wrote a block in more than a single write, so the latter case
522 * One special case is if we're forced to do the write -- in that case
523 * we play games with the buffer size, and it's usually a partial write.
526 for (n
= force
? out
.dbcnt
: out
.dbsz
;; n
= out
.dbsz
) {
527 for (cnt
= n
;; cnt
-= nw
) {
529 if (!force
&& ddflags
& C_SPARSE
) {
531 sparse
= 1; /* Is buffer sparse? */
532 for (i
= 0; i
< cnt
; i
++)
546 out
.fd
, pending
, SEEK_CUR
) == -1)
547 err(EXIT_FAILURE
, "%s: seek error creating sparse file",
550 nw
= bwrite(&out
, outp
, cnt
);
554 "%s: end of device", out
.name
);
557 err(EXIT_FAILURE
, "%s", out
.name
);
563 st
.sparse
+= pending
/out
.dbsz
;
564 st
.out_full
+= pending
/out
.dbsz
;
570 if ((uint64_t)n
!= out
.dbsz
)
579 if (out
.flags
& ISCHR
&& !warned
) {
581 warnx("%s: short write on character device", out
.name
);
583 if (out
.flags
& ISTAPE
)
585 "%s: short write on tape device", out
.name
);
589 if ((out
.dbcnt
-= n
) < out
.dbsz
)
593 /* Reassemble the output block. */
595 (void)memmove(out
.db
, out
.dbp
- out
.dbcnt
, out
.dbcnt
);
596 out
.dbp
= out
.db
+ out
.dbcnt
;
598 if (progress
&& (st
.out_full
+ st
.out_part
) % progress
== 0)
599 (void)write(STDERR_FILENO
, ".", 1);
603 * A protected against SIGINFO write
606 bwrite(IO
*io
, const void *buf
, size_t len
)
612 (void)sigprocmask(SIG_BLOCK
, &infoset
, &oset
);
613 rv
= io
->ops
->op_write(io
->fd
, buf
, len
);
615 (void)sigprocmask(SIG_SETMASK
, &oset
, NULL
);