]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/xattr.h
Implement feature request #1939
[bacula/bacula] / bacula / src / filed / xattr.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2004-2009 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 #ifndef __XATTR_H
30 #define __XATTR_H
31
32 #if defined(HAVE_LINUX_OS)
33 #define BXATTR_ENOTSUP EOPNOTSUPP
34 #elif defined(HAVE_DARWIN_OS)
35 #define BXATTR_ENOTSUP ENOTSUP
36 #elif defined(HAVE_HURD_OS)
37 #define BXATTR_ENOTSUP ENOTSUP
38 #endif
39
40 /*
41  * Magic used in the magic field of the xattr struct.
42  * This way we can see we encounter a valid xattr struct.
43  */
44 #define XATTR_MAGIC 0x5C5884
45
46 /*
47  * Internal representation of an extended attribute.
48  */
49 struct xattr_t {
50    uint32_t magic;
51    uint32_t name_length;
52    char *name;
53    uint32_t value_length;
54    char *value;
55 };
56
57 /*
58  * Internal representation of an extended attribute hardlinked file.
59  */
60 struct xattr_link_cache_entry_t {
61    uint32_t inum;
62    char *target;
63 };
64
65 #define BXATTR_FLAG_SAVE_NATIVE    0x01
66 #define BXATTR_FLAG_RESTORE_NATIVE 0x02
67
68 struct xattr_build_data_t {
69    uint32_t nr_errors;
70    uint32_t nr_saved;
71    POOLMEM *content;
72    uint32_t content_length;
73    alist *link_cache;
74 };
75
76 struct xattr_parse_data_t {
77    uint32_t nr_errors;
78 };
79
80 /*
81  * Internal tracking data.
82  */
83 struct xattr_data_t {
84    uint32_t flags;              /* See BXATTR_FLAG_* */
85    uint32_t current_dev;
86    union {
87       struct xattr_build_data_t *build;
88       struct xattr_parse_data_t *parse;
89    } u;
90 };
91
92 /*
93  * Maximum size of the XATTR stream this prevents us from blowing up the filed.
94  */
95 #define MAX_XATTR_STREAM  (1 * 1024 * 1024) /* 1 Mb */
96
97 /*
98  * Upperlimit on a xattr internal buffer
99  */
100 #define XATTR_BUFSIZ    1024
101
102 #endif