]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/acl.h
Tweak accurate code to avoid useless memcpy()
[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 #define BACL_ENOTSUP          EOPNOTSUPP
63 #elif defined(HAVE_DARWIN_OS)
64 #define BACL_ENOTSUP          EOPNOTSUPP
65 #elif defined(HAVE_HPUX_OS)
66 #define BACL_ENOTSUP          EOPNOTSUPP
67 #elif defined(HAVE_IRIX_OS)
68 #define BACL_ENOTSUP          ENOSYS
69 #elif defined(HAVE_LINUX_OS) 
70 #define BACL_ENOTSUP          ENOTSUP
71 #endif
72
73 #define BACL_FLAG_SAVE_NATIVE   0x01
74 #define BACL_FLAG_SAVE_AFS      0x02
75
76 /*
77  * Internal tracking data.
78  */
79 struct acl_data_t {
80    POOLMEM *content;
81    uint32_t content_length;
82    uint32_t nr_errors;
83    uint32_t current_dev;
84    uint32_t flags;              /* See BACL_FLAG_* */
85 };
86
87 #endif