1 1.18 pooka /* $NetBSD: position.c,v 1.18 2010/11/22 21:04:28 pooka Exp $ */ 2 1.4 cgd 3 1.1 glass /*- 4 1.3 mycroft * Copyright (c) 1991, 1993, 1994 5 1.3 mycroft * The Regents of the University of California. All rights reserved. 6 1.1 glass * 7 1.1 glass * This code is derived from software contributed to Berkeley by 8 1.1 glass * Keith Muller of the University of California, San Diego and Lance 9 1.1 glass * Visser of Convex Computer Corporation. 10 1.1 glass * 11 1.1 glass * Redistribution and use in source and binary forms, with or without 12 1.1 glass * modification, are permitted provided that the following conditions 13 1.1 glass * are met: 14 1.1 glass * 1. Redistributions of source code must retain the above copyright 15 1.1 glass * notice, this list of conditions and the following disclaimer. 16 1.1 glass * 2. Redistributions in binary form must reproduce the above copyright 17 1.1 glass * notice, this list of conditions and the following disclaimer in the 18 1.1 glass * documentation and/or other materials provided with the distribution. 19 1.14 agc * 3. Neither the name of the University nor the names of its contributors 20 1.1 glass * may be used to endorse or promote products derived from this software 21 1.1 glass * without specific prior written permission. 22 1.1 glass * 23 1.1 glass * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 24 1.1 glass * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25 1.1 glass * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26 1.1 glass * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 27 1.1 glass * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28 1.1 glass * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29 1.1 glass * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30 1.1 glass * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31 1.1 glass * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32 1.1 glass * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33 1.1 glass * SUCH DAMAGE. 34 1.1 glass */ 35 1.1 glass 36 1.5 christos #include <sys/cdefs.h> 37 1.1 glass #ifndef lint 38 1.4 cgd #if 0 39 1.4 cgd static char sccsid[] = "@(#)position.c 8.3 (Berkeley) 4/2/94"; 40 1.4 cgd #else 41 1.18 pooka __RCSID("$NetBSD: position.c,v 1.18 2010/11/22 21:04:28 pooka Exp $"); 42 1.4 cgd #endif 43 1.1 glass #endif /* not lint */ 44 1.1 glass 45 1.1 glass #include <sys/types.h> 46 1.1 glass #include <sys/stat.h> 47 1.1 glass #include <sys/ioctl.h> 48 1.1 glass #include <sys/mtio.h> 49 1.10 ross #include <sys/time.h> 50 1.3 mycroft 51 1.3 mycroft #include <err.h> 52 1.1 glass #include <errno.h> 53 1.13 jschauma #include <stdlib.h> 54 1.3 mycroft #include <string.h> 55 1.1 glass #include <unistd.h> 56 1.3 mycroft 57 1.1 glass #include "dd.h" 58 1.1 glass #include "extern.h" 59 1.1 glass 60 1.1 glass /* 61 1.1 glass * Position input/output data streams before starting the copy. Device type 62 1.1 glass * dependent. Seekable devices use lseek, and the rest position by reading. 63 1.1 glass * Seeking past the end of file can cause null blocks to be written to the 64 1.1 glass * output. 65 1.1 glass */ 66 1.1 glass void 67 1.11 lukem pos_in(void) 68 1.1 glass { 69 1.3 mycroft int bcnt, cnt, nr, warned; 70 1.1 glass 71 1.8 jtk /* If not a pipe or tape device, try to seek on it. */ 72 1.7 mycroft if (!(in.flags & (ISPIPE|ISTAPE))) { 73 1.18 pooka if (ddop_lseek(in, in.fd, 74 1.13 jschauma (off_t)in.offset * (off_t)in.dbsz, SEEK_CUR) == -1) { 75 1.16 jschauma err(EXIT_FAILURE, "%s", in.name); 76 1.13 jschauma /* NOTREACHED */ 77 1.13 jschauma } 78 1.1 glass return; 79 1.13 jschauma /* NOTREACHED */ 80 1.1 glass } 81 1.1 glass 82 1.1 glass /* 83 1.1 glass * Read the data. If a pipe, read until satisfy the number of bytes 84 1.1 glass * being skipped. No differentiation for reading complete and partial 85 1.1 glass * blocks for other devices. 86 1.1 glass */ 87 1.1 glass for (bcnt = in.dbsz, cnt = in.offset, warned = 0; cnt;) { 88 1.18 pooka if ((nr = ddop_read(in, in.fd, in.db, bcnt)) > 0) { 89 1.1 glass if (in.flags & ISPIPE) { 90 1.1 glass if (!(bcnt -= nr)) { 91 1.1 glass bcnt = in.dbsz; 92 1.1 glass --cnt; 93 1.1 glass } 94 1.1 glass } else 95 1.1 glass --cnt; 96 1.1 glass continue; 97 1.1 glass } 98 1.1 glass 99 1.1 glass if (nr == 0) { 100 1.1 glass if (files_cnt > 1) { 101 1.1 glass --files_cnt; 102 1.1 glass continue; 103 1.1 glass } 104 1.13 jschauma errx(EXIT_FAILURE, "skip reached end of input"); 105 1.13 jschauma /* NOTREACHED */ 106 1.1 glass } 107 1.1 glass 108 1.1 glass /* 109 1.1 glass * Input error -- either EOF with no more files, or I/O error. 110 1.1 glass * If noerror not set die. POSIX requires that the warning 111 1.1 glass * message be followed by an I/O display. 112 1.1 glass */ 113 1.1 glass if (ddflags & C_NOERROR) { 114 1.1 glass if (!warned) { 115 1.15 kleink 116 1.16 jschauma warn("%s", in.name); 117 1.1 glass warned = 1; 118 1.3 mycroft summary(); 119 1.1 glass } 120 1.1 glass continue; 121 1.1 glass } 122 1.16 jschauma err(EXIT_FAILURE, "%s", in.name); 123 1.13 jschauma /* NOTREACHED */ 124 1.1 glass } 125 1.1 glass } 126 1.1 glass 127 1.1 glass void 128 1.11 lukem pos_out(void) 129 1.1 glass { 130 1.1 glass struct mtop t_op; 131 1.17 lukem int n; 132 1.17 lukem uint64_t cnt; 133 1.1 glass 134 1.1 glass /* 135 1.1 glass * If not a tape, try seeking on the file. Seeking on a pipe is 136 1.1 glass * going to fail, but don't protect the user -- they shouldn't 137 1.1 glass * have specified the seek operand. 138 1.1 glass */ 139 1.1 glass if (!(out.flags & ISTAPE)) { 140 1.18 pooka if (ddop_lseek(out, out.fd, 141 1.6 phil (off_t)out.offset * (off_t)out.dbsz, SEEK_SET) == -1) 142 1.16 jschauma err(EXIT_FAILURE, "%s", out.name); 143 1.13 jschauma /* NOTREACHED */ 144 1.1 glass return; 145 1.1 glass } 146 1.1 glass 147 1.1 glass /* If no read access, try using mtio. */ 148 1.1 glass if (out.flags & NOREAD) { 149 1.1 glass t_op.mt_op = MTFSR; 150 1.1 glass t_op.mt_count = out.offset; 151 1.1 glass 152 1.18 pooka if (ddop_ioctl(out, out.fd, MTIOCTOP, &t_op) < 0) 153 1.16 jschauma err(EXIT_FAILURE, "%s", out.name); 154 1.13 jschauma /* NOTREACHED */ 155 1.1 glass return; 156 1.1 glass } 157 1.1 glass 158 1.1 glass /* Read it. */ 159 1.1 glass for (cnt = 0; cnt < out.offset; ++cnt) { 160 1.18 pooka if ((n = ddop_read(out, out.fd, out.db, out.dbsz)) > 0) 161 1.1 glass continue; 162 1.1 glass 163 1.1 glass if (n < 0) 164 1.16 jschauma err(EXIT_FAILURE, "%s", out.name); 165 1.13 jschauma /* NOTREACHED */ 166 1.1 glass 167 1.1 glass /* 168 1.1 glass * If reach EOF, fill with NUL characters; first, back up over 169 1.1 glass * the EOF mark. Note, cnt has not yet been incremented, so 170 1.1 glass * the EOF read does not count as a seek'd block. 171 1.1 glass */ 172 1.1 glass t_op.mt_op = MTBSR; 173 1.1 glass t_op.mt_count = 1; 174 1.18 pooka if (ddop_ioctl(out, out.fd, MTIOCTOP, &t_op) == -1) 175 1.16 jschauma err(EXIT_FAILURE, "%s", out.name); 176 1.13 jschauma /* NOTREACHED */ 177 1.1 glass 178 1.1 glass while (cnt++ < out.offset) 179 1.18 pooka if ((uint64_t)(n = bwrite(&out, 180 1.18 pooka out.db, out.dbsz)) != out.dbsz) 181 1.16 jschauma err(EXIT_FAILURE, "%s", out.name); 182 1.13 jschauma /* NOTREACHED */ 183 1.1 glass break; 184 1.1 glass } 185 1.1 glass } 186