]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/bat_conf.h
Implement a security enhancement: TLS authentication but no
[bacula/bacula] / bacula / src / qt-console / bat_conf.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2002-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 Adminstration Tool (bat) 
30  *
31  *     Kern Sibbald, March 2002
32  *
33  *     Version $Id$
34  */
35
36 #ifndef _BAT_CONF_H_
37 #define _BAT_CONF_H_
38
39 /*
40  * Resource codes -- they must be sequential for indexing
41  */
42
43 enum {
44    R_DIRECTOR = 1001,
45    R_CONSOLE,
46    R_CONSOLE_FONT,
47    R_FIRST = R_DIRECTOR,
48    R_LAST = R_CONSOLE_FONT            /* Keep this updated */
49 };
50
51 /*
52  * Some resource attributes
53  */
54 enum {
55    R_NAME = 1020,
56    R_ADDRESS,
57    R_PASSWORD,
58    R_TYPE,
59    R_BACKUP
60 };
61
62
63 /* Definition of the contents of each Resource */
64 class DIRRES {
65 public:
66    RES   hdr;
67    int   DIRport;                     /* UA server port */
68    char *address;                     /* UA server address */
69    char *password;                    /* UA server password */
70    bool tls_authenticate;             /* Authenticate with tls */
71    bool tls_enable;                   /* Enable TLS */
72    bool tls_require;                  /* Require TLS */
73    char *tls_ca_certfile;             /* TLS CA Certificate File */
74    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
75    char *tls_certfile;                /* TLS Client Certificate File */
76    char *tls_keyfile;                 /* TLS Client Key File */
77    utime_t heartbeat_interval;        /* Dir heartbeat interval */
78
79    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
80
81    /* Methods */
82    char *name() const;
83 };
84
85 inline char *DIRRES::name() const { return hdr.name; }
86
87
88 struct CONFONTRES {
89    RES   hdr;
90    char *fontface;                    /* Console Font specification */
91 };
92
93 class CONRES {
94 public:
95    RES   hdr;
96    char *password;                    /* UA server password */
97    bool tls_authenticate;             /* Authenticate with tls */
98    bool tls_enable;                   /* Enable TLS on all connections */
99    bool tls_require;                  /* Require TLS on all connections */
100    char *tls_ca_certfile;             /* TLS CA Certificate File */
101    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
102    char *tls_certfile;                /* TLS Client Certificate File */
103    char *tls_keyfile;                 /* TLS Client Key File */
104    utime_t heartbeat_interval;        /* Cons heartbeat interval */
105
106    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
107
108    /* Methods */
109    char *name() const;
110 };
111
112 inline char *CONRES::name() const { return hdr.name; }
113
114
115 /* Define the Union of all the above
116  * resource structure definitions.
117  */
118 union u_res {
119    DIRRES dir_res;
120    CONRES con_res;
121    CONFONTRES con_font;
122    RES hdr;
123 };
124
125 typedef union u_res URES;
126
127 #define GetConsoleResWithName(x) ((CONRES *)GetResWithName(R_CONSOLE, (x)))
128 #define GetDirResWithName(x) ((DIRRES *)GetResWithName(R_DIRECTOR, (x)))
129
130
131 #endif /* _BAT_CONF_H_ */