/usr/include/libewf/definitions.h is in libewf-dev 20140608-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | /*
* Definitions for libewf
*
* Copyright (c) 2006-2014, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This software is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined( _LIBEWF_DEFINITIONS_H )
#define _LIBEWF_DEFINITIONS_H
#include <libewf/types.h>
#define LIBEWF_VERSION 20140608
/* The version string
*/
#define LIBEWF_VERSION_STRING "20140608"
/* The access flags definitions
* bit 1 set to 1 for read access
* bit 2 set to 1 for write access
* bit 3-4 not used
* bit 5 set to 1 to resume write
* bit 6-8 not used
*/
enum LIBEWF_ACCESS_FLAGS
{
LIBEWF_ACCESS_FLAG_READ = 0x01,
LIBEWF_ACCESS_FLAG_WRITE = 0x02,
LIBEWF_ACCESS_FLAG_RESUME = 0x10
};
/* The file access macros
*/
#define LIBEWF_OPEN_READ ( LIBEWF_ACCESS_FLAG_READ )
#define LIBEWF_OPEN_READ_WRITE ( LIBEWF_ACCESS_FLAG_READ | LIBEWF_ACCESS_FLAG_WRITE )
#define LIBEWF_OPEN_WRITE ( LIBEWF_ACCESS_FLAG_WRITE )
#define LIBEWF_OPEN_WRITE_RESUME ( LIBEWF_ACCESS_FLAG_WRITE | LIBEWF_ACCESS_FLAG_RESUME )
/* TODO deprecated remove after a while */
#define LIBEWF_FLAG_READ LIBEWF_ACCESS_FLAG_READ
#define LIBEWF_FLAG_WRITE LIBEWF_ACCESS_FLAG_WRITE
#define LIBEWF_FLAG_RESUME LIBEWF_ACCESS_FLAG_RESUME
/* The file formats
*/
enum LIBEWF_FORMAT
{
LIBEWF_FORMAT_UNKNOWN = 0x00,
LIBEWF_FORMAT_ENCASE1 = 0x01,
LIBEWF_FORMAT_ENCASE2 = 0x02,
LIBEWF_FORMAT_ENCASE3 = 0x03,
LIBEWF_FORMAT_ENCASE4 = 0x04,
LIBEWF_FORMAT_ENCASE5 = 0x05,
LIBEWF_FORMAT_ENCASE6 = 0x06,
LIBEWF_FORMAT_ENCASE7 = 0x07,
LIBEWF_FORMAT_SMART = 0x0e,
LIBEWF_FORMAT_FTK_IMAGER = 0x0f,
LIBEWF_FORMAT_LOGICAL_ENCASE5 = 0x10,
LIBEWF_FORMAT_LOGICAL_ENCASE6 = 0x11,
LIBEWF_FORMAT_LOGICAL_ENCASE7 = 0x12,
LIBEWF_FORMAT_LINEN5 = 0x25,
LIBEWF_FORMAT_LINEN6 = 0x26,
LIBEWF_FORMAT_LINEN7 = 0x27,
/* The format as specified by Andrew Rosen
*/
LIBEWF_FORMAT_EWF = 0x70,
/* Libewf eXtended EWF format
*/
LIBEWF_FORMAT_EWFX = 0x71
};
/* TODO deprecated remove after a while */
#define LIBEWF_FORMAT_LVF LIBEWF_FORMAT_LOGICAL_ENCASE5
#define LIBEWF_FORMAT_FTK LIBEWF_FORMAT_FTK_IMAGER
/* The default segment file size
*/
#define LIBEWF_DEFAULT_SEGMENT_FILE_SIZE ( 1500 * 1024 * 1024 )
/* The compression methods definitions
*/
enum LIBEWF_COMPRESSION_METHODS
{
LIBEWF_COMPRESSION_METHOD_NONE = 0,
LIBEWF_COMPRESSION_METHOD_DEFLATE = 1,
LIBEWF_COMPRESSION_METHOD_BZIP2 = 2,
};
/* The compression level definitions
*/
enum LIBEWF_COMPRESSION_LEVELS
{
LIBEWF_COMPRESSION_DEFAULT = -1,
LIBEWF_COMPRESSION_NONE = 0,
LIBEWF_COMPRESSION_FAST = 1,
LIBEWF_COMPRESSION_BEST = 2,
};
/* The compression flags
* bit 1 set to 1 for empty block compression
* detects empty blocks and stored them compressed, the compression
* is only done once
* bit 2-8 not used
*/
enum LIBEWF_COMPRESSION_FLAGS
{
LIBEWF_COMPRESS_FLAG_USE_EMPTY_BLOCK_COMPRESSION = (uint8_t) 0x01,
};
/* TODO deprecated remove after a while */
#define LIBEWF_FLAG_COMPRESS_EMPTY_BLOCK LIBEWF_COMPRESS_FLAG_USE_EMPTY_BLOCK_COMPRESSION
/* The media type definitions
*/
enum LIBEWF_MEDIA_TYPES
{
LIBEWF_MEDIA_TYPE_REMOVABLE = 0x00,
LIBEWF_MEDIA_TYPE_FIXED = 0x01,
LIBEWF_MEDIA_TYPE_OPTICAL = 0x03,
LIBEWF_MEDIA_TYPE_SINGLE_FILES = 0x0e,
LIBEWF_MEDIA_TYPE_MEMORY = 0x10
};
/* The media flags definitions
*/
enum LIBEWF_MEDIA_FLAGS
{
LIBEWF_MEDIA_FLAG_PHYSICAL = 0x02,
LIBEWF_MEDIA_FLAG_FASTBLOC = 0x04,
LIBEWF_MEDIA_FLAG_TABLEAU = 0x08
};
#if 0
/* The volume type definitions
*/
enum LIBEWF_VOLUME_TYPES
{
LIBEWF_VOLUME_TYPE_LOGICAL = 0x00,
LIBEWF_VOLUME_TYPE_PHYSICAL = 0x01
};
#endif
/* The date representation formats
*/
enum LIBEWF_DATE_FORMATS
{
LIBEWF_DATE_FORMAT_DAYMONTH = 0x01,
LIBEWF_DATE_FORMAT_MONTHDAY = 0x02,
LIBEWF_DATE_FORMAT_ISO8601 = 0x03,
LIBEWF_DATE_FORMAT_CTIME = 0x04
};
/* The header value compression levels definitions
*/
#define LIBEWF_HEADER_VALUE_COMPRESSION_LEVEL_NONE "n"
#define LIBEWF_HEADER_VALUE_COMPRESSION_LEVEL_FAST "f"
#define LIBEWF_HEADER_VALUE_COMPRESSION_LEVEL_BEST "b"
/* TODO deprecated remove after a while */
#define LIBEWF_COMPRESSION_LEVEL_NONE "n"
#define LIBEWF_COMPRESSION_LEVEL_FAST "f"
#define LIBEWF_COMPRESSION_LEVEL_BEST "b"
/* TODO deprecated remove after a while */
/* The compression types
*/
#define LIBEWF_COMPRESSION_TYPE_NONE "n"
#define LIBEWF_COMPRESSION_TYPE_FAST "f"
#define LIBEWF_COMPRESSION_TYPE_BEST "b"
/* The segment file type definitions
*/
enum LIBEWF_SEGMENT_FILE_TYPES
{
LIBEWF_SEGMENT_FILE_TYPE_DWF = (int) 'd',
LIBEWF_SEGMENT_FILE_TYPE_EWF = (int) 'E',
LIBEWF_SEGMENT_FILE_TYPE_LWF = (int) 'L'
};
/* The (single) file entry types
*/
enum LIBEWF_FILE_ENTRY_TYPES
{
LIBEWF_FILE_ENTRY_TYPE_DIRECTORY = (uint8_t) 'd',
LIBEWF_FILE_ENTRY_TYPE_FILE = (uint8_t) 'f'
};
#define LIBEWF_FILE_ENTRY_TYPE_FOLDER LIBEWF_FILE_ENTRY_TYPE_DIRECTORY
/* The (single) file entry flags
*/
enum LIBEWF_FILE_ENTRY_FLAGS
{
LIBEWF_FILE_ENTRY_FLAG_ARCHIVE = 0x00000008UL,
LIBEWF_FILE_ENTRY_FLAG_SPARSE_DATA = 0x04000000UL,
};
/* The (single) file entry name separator
*/
#define LIBEWF_SEPARATOR '\\'
#endif
|