dd.h 3.5 KB

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