2004-09-28 22:00:01 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2004-10-08 10:50:40 +00:00
|
|
|
#include <err.h>
|
2004-09-28 22:00:01 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2004-10-08 10:50:40 +00:00
|
|
|
#include <time.h>
|
2004-09-28 22:00:01 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <sys/disk.h>
|
|
|
|
|
|
|
|
#define BIGSIZE (1024 * 1024)
|
|
|
|
#define MEDIUMSIZE (64 * 1024)
|
|
|
|
|
|
|
|
struct lump {
|
|
|
|
off_t start;
|
|
|
|
off_t len;
|
|
|
|
int state;
|
|
|
|
TAILQ_ENTRY(lump) list;
|
|
|
|
};
|
|
|
|
|
|
|
|
static TAILQ_HEAD(, lump) lumps = TAILQ_HEAD_INITIALIZER(lumps);
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
new_lump(off_t start, off_t len, int state)
|
|
|
|
{
|
|
|
|
struct lump *lp;
|
|
|
|
|
|
|
|
lp = malloc(sizeof *lp);
|
|
|
|
if (lp == NULL)
|
|
|
|
err(1, "Malloc failed");
|
|
|
|
lp->start = start;
|
|
|
|
lp->len = len;
|
|
|
|
lp->state = state;
|
|
|
|
TAILQ_INSERT_TAIL(&lumps, lp, list);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
int fdr, fdw;
|
|
|
|
struct lump *lp;
|
|
|
|
off_t t, d;
|
|
|
|
size_t i, j;
|
|
|
|
int error;
|
|
|
|
u_char *buf;
|
|
|
|
u_int sectorsize;
|
2004-10-08 10:50:40 +00:00
|
|
|
time_t t1, t2;
|
2004-09-28 22:00:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
errx(1, "Usage: %s source-drive [destination]", argv[0]);
|
|
|
|
|
|
|
|
buf = malloc(BIGSIZE);
|
|
|
|
if (buf == NULL)
|
|
|
|
err(1, "Cannot allocate %d bytes buffer", BIGSIZE);
|
|
|
|
fdr = open(argv[1], O_RDONLY);
|
|
|
|
if (fdr < 0)
|
|
|
|
err(1, "Cannot open read descriptor %s", argv[1]);
|
|
|
|
if (argc > 2) {
|
|
|
|
fdw = open(argv[2], O_WRONLY);
|
|
|
|
if (fdw < 0)
|
|
|
|
err(1, "Cannot open write descriptor %s", argv[2]);
|
|
|
|
} else {
|
|
|
|
fdw = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = ioctl(fdr, DIOCGSECTORSIZE, §orsize);
|
|
|
|
if (error < 0)
|
|
|
|
err(1, "DIOCGSECTORSIZE failed");
|
|
|
|
|
|
|
|
error = ioctl(fdr, DIOCGMEDIASIZE, &t);
|
|
|
|
if (error < 0)
|
|
|
|
err(1, "DIOCGMEDIASIZE failed");
|
|
|
|
|
|
|
|
new_lump(0, t, 0);
|
|
|
|
d = 0;
|
|
|
|
|
2004-10-08 10:50:40 +00:00
|
|
|
t1 = 0;
|
2004-09-28 22:00:01 +00:00
|
|
|
for (;;) {
|
|
|
|
lp = TAILQ_FIRST(&lumps);
|
|
|
|
if (lp == NULL)
|
|
|
|
break;
|
|
|
|
TAILQ_REMOVE(&lumps, lp, list);
|
|
|
|
while (lp->len > 0) {
|
|
|
|
i = BIGSIZE;
|
|
|
|
if (lp->len < BIGSIZE)
|
|
|
|
i = lp->len;
|
|
|
|
if (lp->state == 1)
|
|
|
|
i = MEDIUMSIZE;
|
|
|
|
if (lp->state > 1)
|
|
|
|
i = sectorsize;
|
2004-10-08 10:50:40 +00:00
|
|
|
time(&t2);
|
|
|
|
if (t1 != t2 || lp->len < BIGSIZE) {
|
2004-10-23 15:58:50 +00:00
|
|
|
printf("\r%13jd %7zu %13jd %3d %13jd %13jd %.8f",
|
2004-10-08 10:50:40 +00:00
|
|
|
(intmax_t)lp->start,
|
2004-10-23 15:58:50 +00:00
|
|
|
i,
|
2004-10-08 10:50:40 +00:00
|
|
|
(intmax_t)lp->len,
|
|
|
|
lp->state,
|
|
|
|
(intmax_t)d,
|
|
|
|
(intmax_t)(t - d),
|
|
|
|
(double)d/(double)t);
|
|
|
|
t1 = t2;
|
|
|
|
}
|
2004-09-28 22:00:01 +00:00
|
|
|
if (i == 0) {
|
|
|
|
errx(1, "BOGUS i %10jd", (intmax_t)i);
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
j = pread(fdr, buf, i, lp->start);
|
|
|
|
if (j == i) {
|
|
|
|
d += i;
|
|
|
|
if (fdw >= 0)
|
|
|
|
j = pwrite(fdw, buf, i, lp->start);
|
|
|
|
else
|
|
|
|
j = i;
|
|
|
|
if (j != i)
|
2004-10-23 15:58:50 +00:00
|
|
|
printf("\nWrite error at %jd/%zu\n",
|
|
|
|
lp->start, i);
|
2004-09-28 22:00:01 +00:00
|
|
|
lp->start += i;
|
|
|
|
lp->len -= i;
|
|
|
|
continue;
|
|
|
|
}
|
2004-10-23 15:58:50 +00:00
|
|
|
printf("\n%jd %zu failed %d\n", lp->start, i, errno);
|
2004-09-28 22:00:01 +00:00
|
|
|
new_lump(lp->start, i, lp->state + 1);
|
|
|
|
lp->start += i;
|
|
|
|
lp->len -= i;
|
|
|
|
}
|
|
|
|
free(lp);
|
|
|
|
}
|
|
|
|
printf("\nCompleted\n");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|