Home | History | Annotate | Line # | Download | only in dd
dd.h revision 1.16.16.2
      1  1.16.16.1   martin /*	$NetBSD: dd.h,v 1.16.16.2 2020/04/21 19:37:31 martin Exp $	*/
      2        1.4      cgd 
      3        1.1    glass /*-
      4        1.3  mycroft  * Copyright (c) 1991, 1993, 1994
      5        1.3  mycroft  *	The Regents of the University of California.  All rights reserved.
      6        1.1    glass  *
      7        1.1    glass  * This code is derived from software contributed to Berkeley by
      8        1.1    glass  * Keith Muller of the University of California, San Diego and Lance
      9        1.1    glass  * Visser of Convex Computer Corporation.
     10        1.1    glass  *
     11        1.1    glass  * Redistribution and use in source and binary forms, with or without
     12        1.1    glass  * modification, are permitted provided that the following conditions
     13        1.1    glass  * are met:
     14        1.1    glass  * 1. Redistributions of source code must retain the above copyright
     15        1.1    glass  *    notice, this list of conditions and the following disclaimer.
     16        1.1    glass  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.1    glass  *    notice, this list of conditions and the following disclaimer in the
     18        1.1    glass  *    documentation and/or other materials provided with the distribution.
     19       1.11      agc  * 3. Neither the name of the University nor the names of its contributors
     20        1.1    glass  *    may be used to endorse or promote products derived from this software
     21        1.1    glass  *    without specific prior written permission.
     22        1.1    glass  *
     23        1.1    glass  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24        1.1    glass  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25        1.1    glass  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26        1.1    glass  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27        1.1    glass  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28        1.1    glass  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29        1.1    glass  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30        1.1    glass  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31        1.1    glass  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32        1.1    glass  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33        1.1    glass  * SUCH DAMAGE.
     34        1.1    glass  *
     35        1.4      cgd  *	@(#)dd.h	8.3 (Berkeley) 4/2/94
     36        1.1    glass  */
     37        1.1    glass 
     38       1.13    pooka #include <sys/stat.h>
     39       1.13    pooka 
     40       1.13    pooka struct ddfops {
     41       1.15    pooka 	int (*op_init)(void);
     42       1.15    pooka 
     43       1.13    pooka 	int (*op_open)(const char *, int, ...);
     44       1.13    pooka 	int (*op_close)(int);
     45       1.13    pooka 
     46       1.13    pooka 	int (*op_fcntl)(int, int, ...);
     47       1.13    pooka 	int (*op_ioctl)(int, unsigned long, ...);
     48       1.13    pooka 
     49       1.13    pooka 	int (*op_fstat)(int, struct stat *);
     50       1.13    pooka 	int (*op_fsync)(int);
     51       1.13    pooka 	int (*op_ftruncate)(int, off_t);
     52       1.13    pooka 
     53       1.13    pooka 	off_t (*op_lseek)(int, off_t, int);
     54       1.13    pooka 
     55       1.13    pooka 	ssize_t (*op_read)(int, void *, size_t);
     56       1.13    pooka 	ssize_t (*op_write)(int, const void *, size_t);
     57       1.13    pooka };
     58       1.13    pooka 
     59       1.13    pooka #define ddop_open(dir, a1, a2, ...)	dir.ops->op_open(a1, a2, __VA_ARGS__)
     60       1.13    pooka #define ddop_close(dir, a1)		dir.ops->op_close(a1)
     61       1.13    pooka #define ddop_fcntl(dir, a1, a2, ...)	dir.ops->op_fcntl(a1, a2, __VA_ARGS__)
     62       1.13    pooka #define ddop_ioctl(dir, a1, a2, ...)	dir.ops->op_ioctl(a1, a2, __VA_ARGS__)
     63       1.13    pooka #define ddop_fsync(dir, a1)		dir.ops->op_fsync(a1)
     64       1.14    pooka #define ddop_ftruncate(dir, a1, a2)	dir.ops->op_ftruncate(a1, a2)
     65       1.13    pooka #define ddop_lseek(dir, a1, a2, a3)	dir.ops->op_lseek(a1, a2, a3)
     66       1.13    pooka #define ddop_read(dir, a1, a2, a3)	dir.ops->op_read(a1, a2, a3)
     67       1.13    pooka #define ddop_write(dir, a1, a2, a3)	dir.ops->op_write(a1, a2, a3)
     68       1.13    pooka 
     69        1.1    glass /* Input/output stream state. */
     70        1.1    glass typedef struct {
     71        1.8    lukem 	u_char		*db;		/* buffer address */
     72        1.8    lukem 	u_char		*dbp;		/* current buffer I/O address */
     73        1.9    lukem 	uint64_t	dbcnt;		/* current buffer byte count */
     74       1.10    lukem 	int64_t		dbrcnt;		/* last read byte count */
     75        1.9    lukem 	uint64_t	dbsz;		/* buffer size */
     76        1.1    glass 
     77        1.1    glass #define	ISCHR		0x01		/* character device (warn on short) */
     78        1.1    glass #define	ISPIPE		0x02		/* pipe (not truncatable) */
     79        1.1    glass #define	ISTAPE		0x04		/* tape (not seekable) */
     80        1.1    glass #define	NOREAD		0x08		/* not readable */
     81        1.8    lukem 	u_int		flags;
     82        1.1    glass 
     83        1.8    lukem 	const char  	*name;		/* name */
     84        1.8    lukem 	int		fd;		/* file descriptor */
     85        1.9    lukem 	uint64_t	offset;		/* # of blocks to skip */
     86       1.13    pooka 	struct ddfops	const *ops;	/* ops to use with fd */
     87        1.1    glass } IO;
     88        1.1    glass 
     89        1.1    glass typedef struct {
     90        1.9    lukem 	uint64_t	in_full;	/* # of full input blocks */
     91        1.9    lukem 	uint64_t	in_part;	/* # of partial input blocks */
     92        1.9    lukem 	uint64_t	out_full;	/* # of full output blocks */
     93        1.9    lukem 	uint64_t	out_part;	/* # of partial output blocks */
     94        1.9    lukem 	uint64_t	trunc;		/* # of truncated records */
     95        1.9    lukem 	uint64_t	swab;		/* # of odd-length swab blocks */
     96       1.12      dbj 	uint64_t	sparse;		/* # of sparse output blocks */
     97        1.9    lukem 	uint64_t	bytes;		/* # of bytes written */
     98        1.8    lukem 	struct timeval	start;		/* start time of dd */
     99        1.1    glass } STAT;
    100        1.1    glass 
    101       1.16     manu /* Flags (in ddflags, iflag and oflag). */
    102       1.16     manu #define	C_NONE		0x00000
    103        1.1    glass #define	C_ASCII		0x00001
    104        1.1    glass #define	C_BLOCK		0x00002
    105        1.1    glass #define	C_BS		0x00004
    106        1.1    glass #define	C_CBS		0x00008
    107        1.1    glass #define	C_COUNT		0x00010
    108        1.1    glass #define	C_EBCDIC	0x00020
    109        1.1    glass #define	C_FILES		0x00040
    110        1.1    glass #define	C_IBS		0x00080
    111        1.1    glass #define	C_IF		0x00100
    112        1.1    glass #define	C_LCASE		0x00200
    113        1.1    glass #define	C_NOERROR	0x00400
    114        1.1    glass #define	C_NOTRUNC	0x00800
    115        1.1    glass #define	C_OBS		0x01000
    116        1.1    glass #define	C_OF		0x02000
    117        1.1    glass #define	C_SEEK		0x04000
    118        1.1    glass #define	C_SKIP		0x08000
    119        1.1    glass #define	C_SWAB		0x10000
    120        1.1    glass #define	C_SYNC		0x20000
    121        1.1    glass #define	C_UCASE		0x40000
    122        1.1    glass #define	C_UNBLOCK	0x80000
    123        1.3  mycroft #define	C_OSYNC		0x100000
    124       1.12      dbj #define	C_SPARSE	0x200000
    125       1.16     manu #define	C_IFLAG		0x400000
    126       1.16     manu #define	C_OFLAG		0x800000
    127