Home | History | Annotate | Line # | Download | only in dd
dd.h revision 1.3
      1  1.1    glass /*-
      2  1.3  mycroft  * Copyright (c) 1991, 1993, 1994
      3  1.3  mycroft  *	The Regents of the University of California.  All rights reserved.
      4  1.1    glass  *
      5  1.1    glass  * This code is derived from software contributed to Berkeley by
      6  1.1    glass  * Keith Muller of the University of California, San Diego and Lance
      7  1.1    glass  * Visser of Convex Computer Corporation.
      8  1.1    glass  *
      9  1.1    glass  * Redistribution and use in source and binary forms, with or without
     10  1.1    glass  * modification, are permitted provided that the following conditions
     11  1.1    glass  * are met:
     12  1.1    glass  * 1. Redistributions of source code must retain the above copyright
     13  1.1    glass  *    notice, this list of conditions and the following disclaimer.
     14  1.1    glass  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1    glass  *    notice, this list of conditions and the following disclaimer in the
     16  1.1    glass  *    documentation and/or other materials provided with the distribution.
     17  1.1    glass  * 3. All advertising materials mentioning features or use of this software
     18  1.1    glass  *    must display the following acknowledgement:
     19  1.1    glass  *	This product includes software developed by the University of
     20  1.1    glass  *	California, Berkeley and its contributors.
     21  1.1    glass  * 4. Neither the name of the University nor the names of its contributors
     22  1.1    glass  *    may be used to endorse or promote products derived from this software
     23  1.1    glass  *    without specific prior written permission.
     24  1.1    glass  *
     25  1.1    glass  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     26  1.1    glass  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     27  1.1    glass  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     28  1.1    glass  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     29  1.1    glass  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     30  1.1    glass  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     31  1.1    glass  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     32  1.1    glass  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     33  1.1    glass  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     34  1.1    glass  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     35  1.1    glass  * SUCH DAMAGE.
     36  1.1    glass  *
     37  1.3  mycroft  *	from: @(#)dd.h	8.3 (Berkeley) 4/2/94
     38  1.2  mycroft  *	$Id: dd.h,v 1.3 1994/09/22 09:25:06 mycroft Exp $
     39  1.1    glass  */
     40  1.1    glass 
     41  1.1    glass /* Input/output stream state. */
     42  1.1    glass typedef struct {
     43  1.1    glass 	u_char	*db;			/* buffer address */
     44  1.1    glass 	u_char	*dbp;			/* current buffer I/O address */
     45  1.1    glass 	u_long	dbcnt;			/* current buffer byte count */
     46  1.1    glass 	int	dbrcnt;			/* last read byte count */
     47  1.1    glass 	u_long	dbsz;			/* buffer size */
     48  1.1    glass 
     49  1.1    glass #define	ISCHR		0x01		/* character device (warn on short) */
     50  1.1    glass #define	ISPIPE		0x02		/* pipe (not truncatable) */
     51  1.1    glass #define	ISTAPE		0x04		/* tape (not seekable) */
     52  1.1    glass #define	NOREAD		0x08		/* not readable */
     53  1.1    glass 	u_int	flags;
     54  1.1    glass 
     55  1.1    glass 	char 	*name;			/* name */
     56  1.1    glass 	int	fd;			/* file descriptor */
     57  1.1    glass 	u_long	offset;			/* # of blocks to skip */
     58  1.1    glass 
     59  1.1    glass 	u_long	f_stats;		/* # of full blocks processed */
     60  1.1    glass 	u_long	p_stats;		/* # of partial blocks processed */
     61  1.1    glass 	u_long	s_stats;		/* # of odd swab blocks */
     62  1.1    glass 	u_long	t_stats;		/* # of truncations */
     63  1.1    glass } IO;
     64  1.1    glass 
     65  1.1    glass typedef struct {
     66  1.1    glass 	u_long	in_full;		/* # of full input blocks */
     67  1.1    glass 	u_long	in_part;		/* # of partial input blocks */
     68  1.1    glass 	u_long	out_full;		/* # of full output blocks */
     69  1.1    glass 	u_long	out_part;		/* # of partial output blocks */
     70  1.1    glass 	u_long	trunc;			/* # of truncated records */
     71  1.1    glass 	u_long	swab;			/* # of odd-length swab blocks */
     72  1.1    glass 	u_long	bytes;			/* # of bytes written */
     73  1.1    glass 	time_t	start;			/* start time of dd */
     74  1.1    glass } STAT;
     75  1.1    glass 
     76  1.1    glass /* Flags (in ddflags). */
     77  1.1    glass #define	C_ASCII		0x00001
     78  1.1    glass #define	C_BLOCK		0x00002
     79  1.1    glass #define	C_BS		0x00004
     80  1.1    glass #define	C_CBS		0x00008
     81  1.1    glass #define	C_COUNT		0x00010
     82  1.1    glass #define	C_EBCDIC	0x00020
     83  1.1    glass #define	C_FILES		0x00040
     84  1.1    glass #define	C_IBS		0x00080
     85  1.1    glass #define	C_IF		0x00100
     86  1.1    glass #define	C_LCASE		0x00200
     87  1.1    glass #define	C_NOERROR	0x00400
     88  1.1    glass #define	C_NOTRUNC	0x00800
     89  1.1    glass #define	C_OBS		0x01000
     90  1.1    glass #define	C_OF		0x02000
     91  1.1    glass #define	C_SEEK		0x04000
     92  1.1    glass #define	C_SKIP		0x08000
     93  1.1    glass #define	C_SWAB		0x10000
     94  1.1    glass #define	C_SYNC		0x20000
     95  1.1    glass #define	C_UCASE		0x40000
     96  1.1    glass #define	C_UNBLOCK	0x80000
     97  1.3  mycroft #define	C_OSYNC		0x100000
     98