2003-08-07 13:05:01 +04:00
|
|
|
/* $NetBSD: dd.h,v 1.11 2003/08/07 09:05:10 agc Exp $ */
|
1995-03-21 12:01:59 +03:00
|
|
|
|
1993-05-04 11:08:38 +04:00
|
|
|
/*-
|
1994-09-22 13:24:46 +04:00
|
|
|
* Copyright (c) 1991, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-05-04 11:08:38 +04:00
|
|
|
*
|
|
|
|
* 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-08-07 13:05:01 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-05-04 11:08:38 +04: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.
|
|
|
|
*
|
1995-03-21 12:01:59 +03:00
|
|
|
* @(#)dd.h 8.3 (Berkeley) 4/2/94
|
1993-05-04 11:08:38 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Input/output stream state. */
|
|
|
|
typedef struct {
|
- Use u_longlong_t instead of u_quad_t, u_long, or int for various buffer sizes
- Add strsuftoull(), which parses a number into a u_longlong_t, with
multiplication support, and support for 'g' (GB) and 't' (TB) suffices.
If an error occurs, print to stderr and exit.
Based on get_blk() from args.c and strsufto*() (in other programs)
- Add strsuftoullx(), which acts as per strsuftoull() but returns the
error in the supplied buffer instead (if the returned buffer != "", an
error occurred)
- Replace get_bsz() use with strsuftoull()
- Remove (now) unnecessary argument validation
- Remove unused {f,p,s,t}_stats fields in struct IO
2001-11-25 13:50:06 +03:00
|
|
|
u_char *db; /* buffer address */
|
|
|
|
u_char *dbp; /* current buffer I/O address */
|
2001-11-26 03:13:23 +03:00
|
|
|
uint64_t dbcnt; /* current buffer byte count */
|
2002-01-10 06:25:12 +03:00
|
|
|
int64_t dbrcnt; /* last read byte count */
|
2001-11-26 03:13:23 +03:00
|
|
|
uint64_t dbsz; /* buffer size */
|
1993-05-04 11:08:38 +04:00
|
|
|
|
|
|
|
#define ISCHR 0x01 /* character device (warn on short) */
|
|
|
|
#define ISPIPE 0x02 /* pipe (not truncatable) */
|
|
|
|
#define ISTAPE 0x04 /* tape (not seekable) */
|
|
|
|
#define NOREAD 0x08 /* not readable */
|
- Use u_longlong_t instead of u_quad_t, u_long, or int for various buffer sizes
- Add strsuftoull(), which parses a number into a u_longlong_t, with
multiplication support, and support for 'g' (GB) and 't' (TB) suffices.
If an error occurs, print to stderr and exit.
Based on get_blk() from args.c and strsufto*() (in other programs)
- Add strsuftoullx(), which acts as per strsuftoull() but returns the
error in the supplied buffer instead (if the returned buffer != "", an
error occurred)
- Replace get_bsz() use with strsuftoull()
- Remove (now) unnecessary argument validation
- Remove unused {f,p,s,t}_stats fields in struct IO
2001-11-25 13:50:06 +03:00
|
|
|
u_int flags;
|
1993-05-04 11:08:38 +04:00
|
|
|
|
- Use u_longlong_t instead of u_quad_t, u_long, or int for various buffer sizes
- Add strsuftoull(), which parses a number into a u_longlong_t, with
multiplication support, and support for 'g' (GB) and 't' (TB) suffices.
If an error occurs, print to stderr and exit.
Based on get_blk() from args.c and strsufto*() (in other programs)
- Add strsuftoullx(), which acts as per strsuftoull() but returns the
error in the supplied buffer instead (if the returned buffer != "", an
error occurred)
- Replace get_bsz() use with strsuftoull()
- Remove (now) unnecessary argument validation
- Remove unused {f,p,s,t}_stats fields in struct IO
2001-11-25 13:50:06 +03:00
|
|
|
const char *name; /* name */
|
|
|
|
int fd; /* file descriptor */
|
2001-11-26 03:13:23 +03:00
|
|
|
uint64_t offset; /* # of blocks to skip */
|
1993-05-04 11:08:38 +04:00
|
|
|
} IO;
|
|
|
|
|
|
|
|
typedef struct {
|
2001-11-26 03:13:23 +03:00
|
|
|
uint64_t in_full; /* # of full input blocks */
|
|
|
|
uint64_t in_part; /* # of partial input blocks */
|
|
|
|
uint64_t out_full; /* # of full output blocks */
|
|
|
|
uint64_t out_part; /* # of partial output blocks */
|
|
|
|
uint64_t trunc; /* # of truncated records */
|
|
|
|
uint64_t swab; /* # of odd-length swab blocks */
|
|
|
|
uint64_t bytes; /* # of bytes written */
|
- Use u_longlong_t instead of u_quad_t, u_long, or int for various buffer sizes
- Add strsuftoull(), which parses a number into a u_longlong_t, with
multiplication support, and support for 'g' (GB) and 't' (TB) suffices.
If an error occurs, print to stderr and exit.
Based on get_blk() from args.c and strsufto*() (in other programs)
- Add strsuftoullx(), which acts as per strsuftoull() but returns the
error in the supplied buffer instead (if the returned buffer != "", an
error occurred)
- Replace get_bsz() use with strsuftoull()
- Remove (now) unnecessary argument validation
- Remove unused {f,p,s,t}_stats fields in struct IO
2001-11-25 13:50:06 +03:00
|
|
|
struct timeval start; /* start time of dd */
|
1993-05-04 11:08:38 +04:00
|
|
|
} STAT;
|
|
|
|
|
|
|
|
/* Flags (in ddflags). */
|
|
|
|
#define C_ASCII 0x00001
|
|
|
|
#define C_BLOCK 0x00002
|
|
|
|
#define C_BS 0x00004
|
|
|
|
#define C_CBS 0x00008
|
|
|
|
#define C_COUNT 0x00010
|
|
|
|
#define C_EBCDIC 0x00020
|
|
|
|
#define C_FILES 0x00040
|
|
|
|
#define C_IBS 0x00080
|
|
|
|
#define C_IF 0x00100
|
|
|
|
#define C_LCASE 0x00200
|
|
|
|
#define C_NOERROR 0x00400
|
|
|
|
#define C_NOTRUNC 0x00800
|
|
|
|
#define C_OBS 0x01000
|
|
|
|
#define C_OF 0x02000
|
|
|
|
#define C_SEEK 0x04000
|
|
|
|
#define C_SKIP 0x08000
|
|
|
|
#define C_SWAB 0x10000
|
|
|
|
#define C_SYNC 0x20000
|
|
|
|
#define C_UCASE 0x40000
|
|
|
|
#define C_UNBLOCK 0x80000
|
1994-09-22 13:24:46 +04:00
|
|
|
#define C_OSYNC 0x100000
|