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