]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/acl.h
Fix plugin bug with multiple simultaneous jobs
[bacula/bacula] / bacula / src / filed / acl.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2004-2008 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  * Properties we use for getting and setting ACLs.
30  */
31
32 #ifndef __ACL_H
33 #define __ACL_H
34
35 /* For shorter ACL strings when possible, define BACL_WANT_SHORT_ACLS */
36 /* #define BACL_WANT_SHORT_ACLS */
37
38 /* For numeric user/group ids when possible, define BACL_WANT_NUMERIC_IDS */
39 /* #define BACL_WANT_NUMERIC_IDS */
40
41 /*
42  * We support the following types of ACLs
43  */
44 typedef enum {
45    BACL_TYPE_NONE = 0,
46    BACL_TYPE_ACCESS = 1,
47    BACL_TYPE_DEFAULT = 2,
48    BACL_TYPE_DEFAULT_DIR = 3,
49    BACL_TYPE_EXTENDED = 4,
50    BACL_TYPE_NFS4 = 5
51 } bacl_type;
52
53 /*
54  * This value is used as ostype when we encounter an invalid acl type.
55  * The way the code is build this should never happen.
56  */
57 #if !defined(ACL_TYPE_NONE)
58 #define ACL_TYPE_NONE 0x0
59 #endif
60
61 #if defined(HAVE_FREEBSD_OS) || \
62     defined(HAVE_DARWIN_OS) || \
63     defined(HAVE_HPUX_OS) || \
64     defined(HAVE_LINUX_OS)
65 #define BACL_ENOTSUP EOPNOTSUPP
66 #elif defined(HAVE_IRIX_OS)
67 #define BACL_ENOTSUP ENOSYS
68 #endif
69
70 #define BACL_FLAG_SAVE_NATIVE    0x01
71 #define BACL_FLAG_SAVE_AFS       0x02
72 #define BACL_FLAG_RESTORE_NATIVE 0x04
73 #define BACL_FLAG_RESTORE_AFS    0x08
74
75 struct acl_build_data_t {
76    uint32_t nr_errors;
77    uint32_t content_length;
78    POOLMEM *content;
79 };
80
81 struct acl_parse_data_t {
82    uint32_t nr_errors;
83 };
84
85 /*
86  * Internal tracking data.
87  */
88 struct acl_data_t {
89    uint32_t flags;              /* See BACL_FLAG_* */
90    uint32_t current_dev;
91    union {
92       struct acl_build_data_t *build;
93       struct acl_parse_data_t *parse;
94    } u;
95 };
96
97 #endif