]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/filed.h
XACL - refactoring an ACL and XATTR codes.
[bacula/bacula] / bacula / src / filed / filed.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2016 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /*
20  * Bacula File Daemon specific configuration and defines
21  *
22  *     Kern Sibbald, Jan MMI
23  *
24  */
25
26 //#define TEST_WORKER
27 #ifdef  TEST_WORKER
28 #define ERROR_BUFFER_OVERFLOW 1
29 #define ERROR_SUCCESS 0
30 #endif
31
32 /* acl errors to report per job. */
33 #define ACL_MAX_ERROR_PRINT_PER_JOB   25
34
35 /* xattr errors to report per job. */
36 #define XATTR_MAX_ERROR_PRINT_PER_JOB 25
37
38 #define FILE_DAEMON 1
39 #include  "lib/htable.h"
40 #include  "filed_conf.h"
41 #include  "fd_plugins.h"
42 #include  "fd_snapshot.h"
43 #include  "findlib/find.h"
44 #include  "xacl.h"
45 #include  "jcr.h"
46 #include  "protos.h"                   /* file daemon prototypes */
47 #include  "lib/runscript.h"
48 #include  "lib/breg.h"
49 #ifdef HAVE_LIBZ
50 #include <zlib.h>                     /* compression headers */
51 #else
52 #define uLongf uint32_t
53 #endif
54 #ifdef HAVE_LZO
55 #include <lzo/lzoconf.h>
56 #include <lzo/lzo1x.h>
57 #endif
58
59 extern CLIENT *me;                    /* "Global" Client resource */
60 extern bool win32decomp;              /* Use decomposition of BackupRead data */
61 extern bool no_win32_write_errors;    /* Ignore certain errors */
62
63 void terminate_filed(int sig);
64
65 struct s_cmds {
66    const char *cmd;
67    int (*func)(JCR *);
68    int monitoraccess; /* specify if monitors have access to this function */
69 };
70
71 void allow_os_suspensions();
72 void prevent_os_suspensions();