]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/console/console_conf.h
Implement a security enhancement: TLS authentication but no
[bacula/bacula] / bacula / src / console / console_conf.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2007 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 two of the GNU 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 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 John Walker.
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  * Bacula User Agent specific configuration and defines
30  *
31  *     Kern Sibbald, Sep MM
32  *
33  *     Version $Id$
34  */
35
36 /*
37  * Resource codes -- they must be sequential for indexing
38  */
39
40 enum {
41    R_CONSOLE   = 1001,
42    R_DIRECTOR,
43    R_FIRST     = R_CONSOLE,
44    R_LAST      = R_DIRECTOR           /* Keep this updated */
45 };
46
47 /*
48  * Some resource attributes
49  */
50 enum {
51    R_NAME     = 1020,
52    R_ADDRESS,
53    R_PASSWORD,
54    R_TYPE,
55    R_BACKUP
56 };
57
58
59 /* Definition of the contents of each Resource */
60
61 /* Console "globals" */
62 struct CONRES {
63    RES   hdr;
64    char *rc_file;                     /* startup file */
65    char *hist_file;                   /* command history file */
66    char *password;                    /* UA server password */
67    bool tls_authenticate;             /* Authenticate with TLS */
68    bool tls_enable;                   /* Enable TLS on all connections */
69    bool tls_require;                  /* Require TLS on all connections */
70    char *tls_ca_certfile;             /* TLS CA Certificate File */
71    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
72    char *tls_certfile;                /* TLS Client Certificate File */
73    char *tls_keyfile;                 /* TLS Client Key File */
74    char *director;                    /* bind to director */
75    utime_t heartbeat_interval;        /* Interval to send heartbeats to Dir */
76
77    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
78 };
79
80 /* Director */
81 struct DIRRES {
82    RES   hdr;
83    int   DIRport;                     /* UA server port */
84    char *address;                     /* UA server address */
85    char *password;                    /* UA server password */
86    bool tls_authenticate;             /* Authenticate with TLS */
87    bool tls_enable;                   /* Enable TLS */
88    bool tls_require;                  /* Require TLS */
89    char *tls_ca_certfile;             /* TLS CA Certificate File */
90    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
91    char *tls_certfile;                /* TLS Client Certificate File */
92    char *tls_keyfile;                 /* TLS Client Key File */
93    utime_t heartbeat_interval;        /* Interval to send heartbeats to Dir */
94
95    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
96 };
97
98
99 /* Define the Union of all the above
100  * resource structure definitions.
101  */
102 union URES {
103    DIRRES res_dir;
104    CONRES res_cons;
105    RES hdr;
106 };