1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
// SPDX-License-Identifier: CDDL-1.0
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright (c) 2018 by Delphix. All rights reserved.
*/
#include <sys/types.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
static int alignment = 0;
static int bsize = 0;
static int count = 0;
static char *ifile = NULL;
static char *ofile = NULL;
static off_t stride = 1;
static off_t seek = 0;
static int seekbytes = 0;
static int if_o_direct = 0;
static int of_o_direct = 0;
static int skip = 0;
static int skipbytes = 0;
static int entire_file = 0;
static const char *execname = "stride_dd";
static void usage(void);
static void parse_options(int argc, char *argv[]);
static void
usage(void)
{
(void) fprintf(stderr,
"usage: %s -i inputfile -o outputfile -b blocksize [-c count]\n"
" [-s stride] [-k seekblocks] [-K seekbytes]\n"
" [-a alignment] [-d if_o_direct] [-D of_o_direct]\n"
" [-p skipblocks] [-P skipbytes] [-e entire_file]\n"
"\n"
"Simplified version of dd that supports the stride option.\n"
"A stride of n means that for each block written, n - 1 blocks\n"
"are skipped in both the input and output file. A stride of 1\n"
"means that blocks are read and written consecutively.\n"
"All numeric parameters must be integers.\n"
"\n"
" inputfile: File to read from\n"
" outputfile: File to write to\n"
" blocksize: Size of each block to read/write\n"
" count: Number of blocks to read/write (Required"
" unless -e is used)\n"
" stride: Read/write a block then skip (stride - 1) blocks"
"\n"
" seekblocks: Number of blocks to skip at start of output\n"
" seekbytes: Treat seekblocks as byte count\n"
" alignment: Alignment passed to posix_memalign() (default"
" PAGE_SIZE)\n"
" if_o_direct: Use O_DIRECT with inputfile (default no O_DIRECT)"
"\n"
" of_o_direct: Use O_DIRECT with outputfile (default no "
" O_DIRECT)\n"
" skipblocks: Number of blocks to skip at start of input "
" (default 0)\n"
" skipbytes: Treat skipblocks as byte count\n"
" entire_file: When used the entire inputfile will be read and"
" count will be ignored\n",
execname);
(void) exit(1);
}
/*
* posix_memalign() only allows for alignments which are postive, powers of two
* and a multiple of sizeof (void *).
*/
static int
invalid_alignment(int alignment)
{
if ((alignment < 0) || (alignment & (alignment - 1)) ||
((alignment % sizeof (void *)))) {
(void) fprintf(stderr,
"Alignment must be a postive, power of two, and multiple "
"of sizeof (void *).\n");
return (1);
}
return (0);
}
static void
parse_options(int argc, char *argv[])
{
int c;
int errflag = 0;
execname = argv[0];
alignment = sysconf(_SC_PAGE_SIZE);
extern char *optarg;
extern int optind, optopt;
while ((c = getopt(argc, argv, "a:b:c:deDi:o:s:k:Kp:P")) != -1) {
switch (c) {
case 'a':
alignment = atoi(optarg);
break;
case 'b':
bsize = atoi(optarg);
break;
case 'c':
count = atoi(optarg);
break;
case 'd':
if_o_direct = 1;
break;
case 'e':
entire_file = 1;
break;
case 'D':
of_o_direct = 1;
break;
case 'i':
ifile = optarg;
break;
case 'o':
ofile = optarg;
break;
case 's':
stride = atoi(optarg);
break;
case 'k':
seek = atoi(optarg);
break;
case 'K':
seekbytes = 1;
break;
case 'p':
skip = atoi(optarg);
break;
case 'P':
skipbytes = 1;
break;
case ':':
(void) fprintf(stderr,
"Option -%c requires an operand\n", optopt);
errflag++;
break;
case '?':
default:
(void) fprintf(stderr,
"Unrecognized option: -%c\n", optopt);
errflag++;
break;
}
if (errflag) {
(void) usage();
}
}
if (bsize <= 0 || stride <= 0 || ifile == NULL || ofile == NULL ||
seek < 0 || invalid_alignment(alignment) || skip < 0) {
(void) fprintf(stderr,
"Required parameter(s) missing or invalid.\n");
(void) usage();
}
if (count <= 0 && entire_file == 0) {
(void) fprintf(stderr,
"Required parameter(s) missing or invalid.\n");
(void) usage();
}
}
static void
read_entire_file(int ifd, int ofd, void *buf)
{
int c;
do {
c = read(ifd, buf, bsize);
if (c < 0) {
perror("read");
exit(2);
} else if (c != 0) {
c = write(ofd, buf, bsize);
if (c < 0) {
perror("write");
exit(2);
}
}
if (stride > 1) {
if (lseek(ifd, (stride - 1) * bsize, SEEK_CUR) == -1) {
perror("input lseek");
exit(2);
}
if (lseek(ofd, (stride - 1) * bsize, SEEK_CUR) == -1) {
perror("output lseek");
exit(2);
}
}
} while (c != 0);
}
static void
read_on_count(int ifd, int ofd, void *buf)
{
int i;
int c;
for (i = 0; i < count; i++) {
c = read(ifd, buf, bsize);
if (c != bsize) {
if (c < 0) {
perror("read");
} else {
(void) fprintf(stderr,
"%s: unexpected short read, read %d "
"bytes, expected %d\n", execname,
c, bsize);
}
exit(2);
}
c = write(ofd, buf, bsize);
if (c != bsize) {
if (c < 0) {
perror("write");
} else {
(void) fprintf(stderr,
"%s: unexpected short write, wrote %d "
"bytes, expected %d\n", execname,
c, bsize);
}
exit(2);
}
if (stride > 1) {
if (lseek(ifd, (stride - 1) * bsize, SEEK_CUR) == -1) {
perror("input lseek");
exit(2);
}
if (lseek(ofd, (stride - 1) * bsize, SEEK_CUR) == -1) {
perror("output lseek");
exit(2);
}
}
}
}
int
main(int argc, char *argv[])
{
int ifd;
int ofd;
int ifd_flags = O_RDONLY;
int ofd_flags = O_WRONLY | O_CREAT;
void *buf;
parse_options(argc, argv);
if (if_o_direct)
ifd_flags |= O_DIRECT;
if (of_o_direct)
ofd_flags |= O_DIRECT;
ifd = open(ifile, ifd_flags);
if (ifd == -1) {
(void) fprintf(stderr, "%s: %s: ", execname, ifile);
perror("open");
exit(2);
}
ofd = open(ofile, ofd_flags, 0666);
if (ofd == -1) {
(void) fprintf(stderr, "%s: %s: ", execname, ofile);
perror("open");
exit(2);
}
/*
* We use valloc because some character block devices expect a
* page-aligned buffer.
*/
int err = posix_memalign(&buf, alignment, bsize);
if (err != 0) {
(void) fprintf(stderr,
"%s: %s\n", execname, strerror(err));
exit(2);
}
if (skip > 0) {
int skipamt = skipbytes == 1 ? skip : skip * bsize;
if (lseek(ifd, skipamt, SEEK_CUR) == -1) {
perror("input lseek");
exit(2);
}
}
if (seek > 0) {
int seekamt = seekbytes == 1 ? seek : seek * bsize;
if (lseek(ofd, seekamt, SEEK_CUR) == -1) {
perror("output lseek");
exit(2);
}
}
if (entire_file == 1)
read_entire_file(ifd, ofd, buf);
else
read_on_count(ifd, ofd, buf);
free(buf);
(void) close(ofd);
(void) close(ifd);
return (0);
}
|