2024-07-12 12:11:25 -07:00
|
|
|
/* $OpenBSD: misc.c,v 1.26 2024/07/12 19:11:25 florian Exp $ */
|
1995-10-18 01:37:01 -07:00
|
|
|
/* $NetBSD: misc.c,v 1.4 1995/03/21 09:04:10 cgd Exp $ */
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* 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.
|
2003-06-02 16:27:43 -07:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-10-18 01:37:01 -07: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2005-05-26 21:14:24 -07:00
|
|
|
#include <sys/time.h>
|
1995-10-18 01:37:01 -07:00
|
|
|
|
1997-08-05 15:50:51 -07:00
|
|
|
#include <errno.h>
|
2018-04-07 11:52:39 -07:00
|
|
|
#include <stdio.h>
|
1995-10-18 01:37:01 -07:00
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "dd.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
2024-07-12 07:30:27 -07:00
|
|
|
/* SIGINFO handler */
|
1995-10-18 01:37:01 -07:00
|
|
|
void
|
2024-07-12 07:30:27 -07:00
|
|
|
sig_summary(int notused)
|
1995-10-18 01:37:01 -07:00
|
|
|
{
|
2024-07-12 07:30:27 -07:00
|
|
|
int save_errno = errno;
|
2017-08-12 19:06:42 -07:00
|
|
|
struct timespec elapsed, now;
|
2024-07-12 12:11:25 -07:00
|
|
|
unsigned long long bps, msec;
|
1995-10-18 01:37:01 -07:00
|
|
|
|
2014-02-11 17:18:36 -08:00
|
|
|
if (ddflags & C_NOINFO)
|
|
|
|
return;
|
|
|
|
|
2017-08-12 19:06:42 -07:00
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
|
timespecsub(&now, &st.start, &elapsed);
|
2024-07-12 12:11:25 -07:00
|
|
|
|
|
|
|
if (elapsed.tv_sec > 600)
|
|
|
|
bps = st.bytes / elapsed.tv_sec;
|
|
|
|
else if (elapsed.tv_sec > 0) {
|
|
|
|
/* will overflow at ~ 30 exabytes / second */
|
|
|
|
msec = elapsed.tv_sec * 1000 + elapsed.tv_nsec / 1000000;
|
|
|
|
if (msec == 0)
|
|
|
|
msec = 1;
|
|
|
|
bps = st.bytes * 1000 / msec;
|
|
|
|
} else if (elapsed.tv_nsec > 0)
|
|
|
|
bps = st.bytes * 1000000000 / elapsed.tv_nsec;
|
|
|
|
else
|
|
|
|
bps = st.bytes;
|
2001-08-07 07:39:27 -07:00
|
|
|
|
2018-04-07 11:52:39 -07:00
|
|
|
/* Be async safe: use dprintf(3). */
|
|
|
|
dprintf(STDERR_FILENO, "%zu+%zu records in\n%zu+%zu records out\n",
|
1995-10-18 01:37:01 -07:00
|
|
|
st.in_full, st.in_part, st.out_full, st.out_part);
|
2001-06-25 01:06:04 -07:00
|
|
|
|
1995-10-18 01:37:01 -07:00
|
|
|
if (st.swab) {
|
2018-04-07 11:52:39 -07:00
|
|
|
dprintf(STDERR_FILENO, "%zu odd length swab %s\n",
|
|
|
|
st.swab, (st.swab == 1) ? "block" : "blocks");
|
1995-10-18 01:37:01 -07:00
|
|
|
}
|
|
|
|
if (st.trunc) {
|
2018-04-07 11:52:39 -07:00
|
|
|
dprintf(STDERR_FILENO, "%zu truncated %s\n",
|
|
|
|
st.trunc, (st.trunc == 1) ? "block" : "blocks");
|
1995-10-18 01:37:01 -07:00
|
|
|
}
|
2014-02-11 17:18:36 -08:00
|
|
|
if (!(ddflags & C_NOXFER)) {
|
2018-04-07 11:52:39 -07:00
|
|
|
dprintf(STDERR_FILENO,
|
2016-08-14 14:13:08 -07:00
|
|
|
"%lld bytes transferred in %lld.%03ld secs "
|
2024-07-12 12:11:25 -07:00
|
|
|
"(%llu bytes/sec)\n", (long long)st.bytes,
|
|
|
|
(long long)elapsed.tv_sec, elapsed.tv_nsec / 1000000, bps);
|
2014-02-11 17:18:36 -08:00
|
|
|
}
|
2024-07-12 07:30:27 -07:00
|
|
|
errno = save_errno;
|
1995-10-18 01:37:01 -07:00
|
|
|
}
|
|
|
|
|
2024-07-12 07:30:27 -07:00
|
|
|
/* SIGINT handler */
|
1995-10-18 01:37:01 -07:00
|
|
|
void
|
2024-07-12 07:30:27 -07:00
|
|
|
sig_terminate(int signo)
|
1995-10-18 01:37:01 -07:00
|
|
|
{
|
2024-07-12 07:30:27 -07:00
|
|
|
sig_summary(0);
|
|
|
|
_exit(128 + signo);
|
1995-10-18 01:37:01 -07:00
|
|
|
}
|
|
|
|
|
2024-07-12 07:30:27 -07:00
|
|
|
/* atexit variation to summarize */
|
1995-10-18 01:37:01 -07:00
|
|
|
void
|
2024-07-12 07:30:27 -07:00
|
|
|
exit_summary(void)
|
1995-10-18 01:37:01 -07:00
|
|
|
{
|
2024-07-12 07:30:27 -07:00
|
|
|
sig_summary(0);
|
1995-10-18 01:37:01 -07:00
|
|
|
}
|