]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/streams.h
Implement feature request #1939
[bacula/bacula] / bacula / src / streams.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2010 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /**
29  * Stream definitions.  Split from baconfig.h Nov 2010
30  *
31  *  Kern Sibbald, MM
32  *
33  */
34
35 #ifndef __BSTREAMS_H
36 #define __BSTREAMS_H 1
37
38 /* Stream bits  -- these bits are new as of 24Nov10 */
39 #define STREAM_BIT_64                 (1<<30)    /* 64 bit stream (not yet implemented) */
40 #define STREAM_BIT_BITS               (1<<29)    /* Following bits may be set */
41 #define STREAM_BIT_PLUGIN             (1<<28)    /* Item written by a plugin */
42 #define STREAM_BIT_DELTA              (1<<27)    /* Stream contains delta data */
43 #define STREAM_BIT_OFFSETS            (1<<26)    /* Stream has data offset */
44 #define STREAM_BIT_PORTABLE_DATA      (1<<25)    /* Data is portable */
45
46 /* TYPE represents our current (old) stream types -- e.g. values 0 - 2047 */
47 #define STREAMBASE_TYPE                0         /* base for types */
48 #define STREAMBITS_TYPE               11         /* type bit size */
49 #define STREAMMASK_TYPE               (~((~0)<< STREAMBITS_TYPE) << STREAMBASE_TYPE)
50 /*
51  * Note additional base, bits, and masks can be defined for new     
52  *  ranges or subranges of stream attributes.
53  */
54
55 /**
56  * Old, but currently used Stream definitions. Once defined these must NEVER
57  *   change as they go on the storage media.
58  * Note, the following streams are passed from the SD to the DIR
59  *   so that they may be put into the catalog (actually only the
60  *   stat packet part of the attr record is put in the catalog.
61  *
62  *   STREAM_UNIX_ATTRIBUTES
63  *   STREAM_UNIX_ATTRIBUTES_EX
64  *   STREAM_MD5_DIGEST
65  *   STREAM_SHA1_DIGEST
66  *   STREAM_SHA256_DIGEST
67  *   STREAM_SHA512_DIGEST
68  */
69 #define STREAM_NONE                         0    /* Reserved Non-Stream */
70 #define STREAM_UNIX_ATTRIBUTES              1    /* Generic Unix attributes */
71 #define STREAM_FILE_DATA                    2    /* Standard uncompressed data */
72 #define STREAM_MD5_SIGNATURE                3    /* deprecated */
73 #define STREAM_MD5_DIGEST                   3    /* MD5 digest for the file */
74 #define STREAM_GZIP_DATA                    4    /* GZip compressed file data */
75 #define STREAM_UNIX_ATTRIBUTES_EX           5    /* Extended Unix attr for Win32 EX - Deprecated */
76 #define STREAM_SPARSE_DATA                  6    /* Sparse data stream */
77 #define STREAM_SPARSE_GZIP_DATA             7    /* Sparse gzipped data stream */
78 #define STREAM_PROGRAM_NAMES                8    /* program names for program data */
79 #define STREAM_PROGRAM_DATA                 9    /* Data needing program */
80 #define STREAM_SHA1_SIGNATURE              10    /* deprecated */
81 #define STREAM_SHA1_DIGEST                 10    /* SHA1 digest for the file */
82 #define STREAM_WIN32_DATA                  11    /* Win32 BackupRead data */
83 #define STREAM_WIN32_GZIP_DATA             12    /* Gzipped Win32 BackupRead data */
84 #define STREAM_MACOS_FORK_DATA             13    /* Mac resource fork */
85 #define STREAM_HFSPLUS_ATTRIBUTES          14    /* Mac OS extra attributes */
86 #define STREAM_UNIX_ACCESS_ACL             15    /* Standard ACL attributes on UNIX - Deprecated */
87 #define STREAM_UNIX_DEFAULT_ACL            16    /* Default ACL attributes on UNIX - Deprecated */
88 #define STREAM_SHA256_DIGEST               17    /* SHA-256 digest for the file */
89 #define STREAM_SHA512_DIGEST               18    /* SHA-512 digest for the file */
90 #define STREAM_SIGNED_DIGEST               19    /* Signed File Digest, ASN.1, DER Encoded */
91 #define STREAM_ENCRYPTED_FILE_DATA         20    /* Encrypted, uncompressed data */
92 #define STREAM_ENCRYPTED_WIN32_DATA        21    /* Encrypted, uncompressed Win32 BackupRead data */
93 #define STREAM_ENCRYPTED_SESSION_DATA      22    /* Encrypted Session Data, ASN.1, DER Encoded */
94 #define STREAM_ENCRYPTED_FILE_GZIP_DATA    23    /* Encrypted, compressed data */
95 #define STREAM_ENCRYPTED_WIN32_GZIP_DATA   24    /* Encrypted, compressed Win32 BackupRead data */
96 #define STREAM_ENCRYPTED_MACOS_FORK_DATA   25    /* Encrypted, uncompressed Mac resource fork */
97 #define STREAM_PLUGIN_NAME                 26    /* Plugin "file" string */
98 #define STREAM_PLUGIN_DATA                 27    /* Plugin specific data */
99 #define STREAM_RESTORE_OBJECT              28    /* Plugin restore object */
100 /* Non GZip compressed streams. Those streams can handle arbitrary compression algorithm data
101  * as an additional header is stored at the beginning of the stream.
102  * see stream_compressed_header definition for more details.
103  */
104 #define STREAM_COMPRESSED_DATA                 29    /* Compressed file data */
105 #define STREAM_SPARSE_COMPRESSED_DATA          30    /* Sparse compressed data stream */
106 #define STREAM_WIN32_COMPRESSED_DATA           31    /* Compressed Win32 BackupRead data */
107 #define STREAM_ENCRYPTED_FILE_COMPRESSED_DATA  32    /* Encrypted, compressed data */
108 #define STREAM_ENCRYPTED_WIN32_COMPRESSED_DATA 33    /* Encrypted, compressed Win32 BackupRead data */
109
110 /**
111  * Additional Stream definitions. Once defined these must NEVER
112  *   change as they go on the storage media.
113  *
114  * The Stream numbers from 1000-1999 are reserved for ACL and extended attribute streams.
115  * Each different platform has its own stream id(s), if a platform supports multiple stream types
116  * it should supply different handlers for each type it supports and this should be called
117  * from the stream dispatch function. Currently in this reserved space we allocate the
118  * different acl streams from 1000 on and the different extended attributes streams from
119  * 1999 down. So the two naming spaces grows towards each other.
120  */
121 #define STREAM_ACL_AIX_TEXT              1000    /* AIX specific string representation from acl_get */
122 #define STREAM_ACL_DARWIN_ACCESS_ACL     1001    /* Darwin (OSX) specific acl_t string representation
123                                                   * from acl_to_text (POSIX acl)
124                                                   */
125 #define STREAM_ACL_FREEBSD_DEFAULT_ACL   1002    /* FreeBSD specific acl_t string representation
126                                                   * from acl_to_text (POSIX acl) for default acls.
127                                                   */
128 #define STREAM_ACL_FREEBSD_ACCESS_ACL    1003    /* FreeBSD specific acl_t string representation
129                                                   * from acl_to_text (POSIX acl) for access acls.
130                                                   */
131 #define STREAM_ACL_HPUX_ACL_ENTRY        1004    /* HPUX specific acl_entry string representation
132                                                   * from acltostr (POSIX acl)
133                                                   */
134 #define STREAM_ACL_IRIX_DEFAULT_ACL      1005    /* IRIX specific acl_t string representation
135                                                   * from acl_to_text (POSIX acl) for default acls.
136                                                   */
137 #define STREAM_ACL_IRIX_ACCESS_ACL       1006    /* IRIX specific acl_t string representation
138                                                   * from acl_to_text (POSIX acl) for access acls.
139                                                   */
140 #define STREAM_ACL_LINUX_DEFAULT_ACL     1007    /* Linux specific acl_t string representation
141                                                   * from acl_to_text (POSIX acl) for default acls.
142                                                   */
143 #define STREAM_ACL_LINUX_ACCESS_ACL      1008    /* Linux specific acl_t string representation
144                                                   * from acl_to_text (POSIX acl) for access acls.
145                                                   */
146 #define STREAM_ACL_TRU64_DEFAULT_ACL     1009    /* Tru64 specific acl_t string representation
147                                                   * from acl_to_text (POSIX acl) for default acls.
148                                                   */
149 #define STREAM_ACL_TRU64_DEFAULT_DIR_ACL 1010    /* Tru64 specific acl_t string representation
150                                                   * from acl_to_text (POSIX acl) for default acls.
151                                                   */
152 #define STREAM_ACL_TRU64_ACCESS_ACL      1011    /* Tru64 specific acl_t string representation
153                                                   * from acl_to_text (POSIX acl) for access acls.
154                                                   */
155 #define STREAM_ACL_SOLARIS_ACLENT        1012    /* Solaris specific aclent_t string representation
156                                                   * from acltotext or acl_totext (POSIX acl)
157                                                   */
158 #define STREAM_ACL_SOLARIS_ACE           1013    /* Solaris specific ace_t string representation from
159                                                   * from acl_totext (NFSv4 or ZFS acl)
160                                                   */
161 #define STREAM_ACL_AFS_TEXT              1014    /* AFS specific string representation from pioctl */
162
163 #define STREAM_ACL_AIX_AIXC              1015    /* AIX specific string representation from
164                                                   * aclx_printStr (POSIX acl)
165                                                   */
166 #define STREAM_ACL_AIX_NFS4              1016    /* AIX specific string representation from
167                                                   * aclx_printStr (NFSv4 acl)
168                                                   */
169 #define STREAM_ACL_FREEBSD_NFS4_ACL      1017    /* FreeBSD specific acl_t string representation
170                                                   * from acl_to_text (NFSv4 or ZFS acl)
171                                                   */
172 #define STREAM_ACL_HURD_DEFAULT_ACL      1018    /* GNU HURD specific acl_t string representation
173                                                   * from acl_to_text (POSIX acl) for default acls.
174                                                   */
175 #define STREAM_ACL_HURD_ACCESS_ACL       1019    /* GNU HURD specific acl_t string representation
176                                                   * from acl_to_text (POSIX acl) for access acls.
177                                                   */
178 #define STREAM_XATTR_HURD                1989    /* GNU HURD specific extended attributes */
179 #define STREAM_XATTR_IRIX                1990    /* IRIX specific extended attributes */
180 #define STREAM_XATTR_TRU64               1991    /* TRU64 specific extended attributes */
181 #define STREAM_XATTR_AIX                 1992    /* AIX specific extended attributes */
182 #define STREAM_XATTR_OPENBSD             1993    /* OpenBSD specific extended attributes */
183 #define STREAM_XATTR_SOLARIS_SYS         1994    /* Solaris specific extensible attributes or
184                                                   * otherwise named extended system attributes.
185                                                   */
186 #define STREAM_XATTR_SOLARIS             1995    /* Solaris specific extented attributes */
187 #define STREAM_XATTR_DARWIN              1996    /* Darwin (OSX) specific extended attributes */
188 #define STREAM_XATTR_FREEBSD             1997    /* FreeBSD specific extended attributes */
189 #define STREAM_XATTR_LINUX               1998    /* Linux specific extended attributes */
190 #define STREAM_XATTR_NETBSD              1999    /* NetBSD specific extended attributes */
191
192 /* WARNING!!! do not define more than 2047 of these old types */
193
194 #endif /* __BSTREAMS_H */