1994-05-26 06:18:55 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-26 06:18:55 +00:00
|
|
|
* Copyright (c) 1991, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Keith Muller of the University of California, San Diego and Lance
|
|
|
|
* Visser of Convex Computer Corporation.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-26 06:18:55 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-05-06 06:51:42 +00:00
|
|
|
#if 0
|
1998-05-13 07:33:54 +00:00
|
|
|
static char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94";
|
1998-05-06 06:51:42 +00:00
|
|
|
#endif
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2002-06-30 05:13:54 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1998-05-13 07:33:54 +00:00
|
|
|
#include <sys/types.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2014-05-06 22:06:39 +00:00
|
|
|
#include <err.h>
|
1997-12-15 20:37:43 +00:00
|
|
|
#include <errno.h>
|
2003-02-27 18:04:54 +00:00
|
|
|
#include <inttypes.h>
|
2018-08-15 19:46:13 +00:00
|
|
|
#include <libutil.h>
|
2013-05-10 18:43:36 +00:00
|
|
|
#include <signal.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <stdio.h>
|
2001-06-19 15:41:57 +00:00
|
|
|
#include <stdlib.h>
|
2002-06-09 04:15:40 +00:00
|
|
|
#include <string.h>
|
2014-05-06 22:06:39 +00:00
|
|
|
#include <time.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "dd.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
2016-02-28 10:27:12 +00:00
|
|
|
double
|
|
|
|
secs_elapsed(void)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2014-05-08 19:10:04 +00:00
|
|
|
struct timespec end, ts_res;
|
2014-05-06 22:06:39 +00:00
|
|
|
double secs, res;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2014-05-08 19:10:04 +00:00
|
|
|
if (clock_gettime(CLOCK_MONOTONIC, &end))
|
|
|
|
err(1, "clock_gettime");
|
|
|
|
if (clock_getres(CLOCK_MONOTONIC, &ts_res))
|
|
|
|
err(1, "clock_getres");
|
|
|
|
secs = (end.tv_sec - st.start.tv_sec) + \
|
|
|
|
(end.tv_nsec - st.start.tv_nsec) * 1e-9;
|
|
|
|
res = ts_res.tv_sec + ts_res.tv_nsec * 1e-9;
|
2014-05-06 22:06:39 +00:00
|
|
|
if (secs < res)
|
|
|
|
secs = res;
|
2016-02-28 10:27:12 +00:00
|
|
|
|
|
|
|
return (secs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
summary(void)
|
|
|
|
{
|
|
|
|
double secs;
|
|
|
|
|
|
|
|
if (ddflags & C_NOINFO)
|
|
|
|
return;
|
|
|
|
|
2018-08-15 19:46:13 +00:00
|
|
|
if (ddflags & C_PROGRESS)
|
2018-08-08 21:37:02 +00:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
2016-02-28 10:27:12 +00:00
|
|
|
secs = secs_elapsed();
|
|
|
|
|
2013-05-10 18:43:36 +00:00
|
|
|
(void)fprintf(stderr,
|
2003-02-27 18:04:54 +00:00
|
|
|
"%ju+%ju records in\n%ju+%ju records out\n",
|
1994-05-26 06:18:55 +00:00
|
|
|
st.in_full, st.in_part, st.out_full, st.out_part);
|
2013-05-10 18:43:36 +00:00
|
|
|
if (st.swab)
|
|
|
|
(void)fprintf(stderr, "%ju odd length swab %s\n",
|
1994-05-26 06:18:55 +00:00
|
|
|
st.swab, (st.swab == 1) ? "block" : "blocks");
|
2013-05-10 18:43:36 +00:00
|
|
|
if (st.trunc)
|
|
|
|
(void)fprintf(stderr, "%ju truncated %s\n",
|
1994-05-26 06:18:55 +00:00
|
|
|
st.trunc, (st.trunc == 1) ? "block" : "blocks");
|
2014-04-03 00:55:16 +00:00
|
|
|
if (!(ddflags & C_NOXFER)) {
|
|
|
|
(void)fprintf(stderr,
|
2014-05-08 19:10:04 +00:00
|
|
|
"%ju bytes transferred in %.6f secs (%.0f bytes/sec)\n",
|
2014-04-03 00:55:16 +00:00
|
|
|
st.bytes, secs, st.bytes / secs);
|
|
|
|
}
|
2013-05-10 18:43:36 +00:00
|
|
|
need_summary = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 21:37:02 +00:00
|
|
|
void
|
|
|
|
progress(void)
|
|
|
|
{
|
2018-08-15 19:46:13 +00:00
|
|
|
static int outlen;
|
|
|
|
char si[4 + 1 + 2 + 1]; /* 123 <space> <suffix> NUL */
|
2018-09-13 14:54:46 +00:00
|
|
|
char iec[4 + 1 + 3 + 1]; /* 123 <space> <suffix> NUL */
|
2018-08-15 19:46:13 +00:00
|
|
|
char persec[4 + 1 + 2 + 1]; /* 123 <space> <suffix> NUL */
|
|
|
|
char *buf;
|
2018-08-08 21:37:02 +00:00
|
|
|
double secs;
|
|
|
|
|
|
|
|
secs = secs_elapsed();
|
2018-08-15 19:46:13 +00:00
|
|
|
humanize_number(si, sizeof(si), (int64_t)st.bytes, "B", HN_AUTOSCALE,
|
|
|
|
HN_DECIMAL | HN_DIVISOR_1000);
|
|
|
|
humanize_number(iec, sizeof(iec), (int64_t)st.bytes, "B", HN_AUTOSCALE,
|
|
|
|
HN_DECIMAL | HN_IEC_PREFIXES);
|
2018-09-13 14:54:46 +00:00
|
|
|
humanize_number(persec, sizeof(persec), (int64_t)(st.bytes / secs), "B",
|
2018-08-15 19:46:13 +00:00
|
|
|
HN_AUTOSCALE, HN_DECIMAL | HN_DIVISOR_1000);
|
|
|
|
asprintf(&buf, " %'ju bytes (%s, %s) transferred %.3fs, %s/s",
|
|
|
|
(uintmax_t)st.bytes, si, iec, secs, persec);
|
2018-09-13 14:54:46 +00:00
|
|
|
outlen = fprintf(stderr, "%-*s\r", outlen, buf) - 1;
|
2018-08-15 19:46:13 +00:00
|
|
|
fflush(stderr);
|
|
|
|
free(buf);
|
2018-08-08 21:37:02 +00:00
|
|
|
need_progress = 0;
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
void
|
2013-05-10 18:43:36 +00:00
|
|
|
siginfo_handler(int signo __unused)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
|
|
|
|
2013-05-10 18:43:36 +00:00
|
|
|
need_summary = 1;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 21:37:02 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
void
|
2018-08-15 19:46:13 +00:00
|
|
|
sigalarm_handler(int signo __unused)
|
2018-08-08 21:37:02 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
need_progress = 1;
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
/* ARGSUSED */
|
|
|
|
void
|
2002-02-02 06:24:13 +00:00
|
|
|
terminate(int sig)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
|
|
|
|
2001-06-25 06:17:02 +00:00
|
|
|
summary();
|
2001-06-24 01:55:17 +00:00
|
|
|
_exit(sig == 0 ? 0 : 1);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|