]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/main.cpp
ebl revert previous win32 fix
[bacula/bacula] / bacula / src / qt-console / main.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-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 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  *   Version $Id$
30  *
31  *  Main program for bat (qt-console)
32  *
33  *   Kern Sibbald, January MMVII
34  *
35  */ 
36
37
38 #include <QApplication>
39 #include <QTranslator>
40 #include "bat.h"
41
42 MainWin *mainWin;
43 QApplication *app;
44
45 /* Forward referenced functions */
46 void terminate_console(int sig);                                
47 static void usage();
48 static int check_resources();
49
50 extern bool parse_bat_config(CONFIG *config, const char *configfile, int exit_code);
51
52 #define CONFIG_FILE "./bat.conf"   /* default configuration file */
53
54 /* Static variables */
55 static CONFIG *config;
56 static char *configfile = NULL;
57
58 int main(int argc, char *argv[])
59 {
60    int ch;
61    bool no_signals = true;
62    bool test_config = false;
63
64
65    app = new QApplication(argc, argv);        
66    app->setQuitOnLastWindowClosed(true);
67    QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
68      
69    QTranslator qtTranslator;
70    qtTranslator.load(QString("qt_") + QLocale::system().name());
71    app->installTranslator(&qtTranslator);
72
73    QTranslator batTranslator;
74    batTranslator.load(QString("bat_") + QLocale::system().name());
75    app->installTranslator(&batTranslator);
76
77
78
79 #ifdef xENABLE_NLS
80    setlocale(LC_ALL, "");
81    bindtextdomain("bacula", LOCALEDIR);
82    textdomain("bacula");
83 #endif
84
85    init_stack_dump();
86    my_name_is(argc, argv, "bat");
87    init_msg(NULL, NULL);
88    working_directory  = "/tmp";
89
90    struct sigaction sigignore;
91    sigignore.sa_flags = 0;
92    sigignore.sa_handler = SIG_IGN;
93    sigfillset(&sigignore.sa_mask);
94    sigaction(SIGPIPE, &sigignore, NULL);
95    sigaction(SIGUSR2, &sigignore, NULL);
96
97
98    while ((ch = getopt(argc, argv, "bc:d:r:st?")) != -1) {
99       switch (ch) {
100       case 'c':                    /* configuration file */
101          if (configfile != NULL) {
102             free(configfile);
103          }
104          configfile = bstrdup(optarg);
105          break;
106
107       case 'd':
108          debug_level = atoi(optarg);
109          if (debug_level <= 0)
110             debug_level = 1;
111          break;
112
113       case 's':                    /* turn off signals */
114          no_signals = true;
115          break;
116
117       case 't':
118          test_config = true;
119          break;
120
121       case '?':
122       default:
123          usage();
124       }
125    }
126    argc -= optind;
127    argv += optind;
128
129
130    if (!no_signals) {
131       init_signals(terminate_console);
132    }
133
134    if (argc) {
135       usage();
136    }
137
138    if (configfile == NULL) {
139       configfile = bstrdup(CONFIG_FILE);
140    }
141
142    config = new_config_parser();
143    parse_bat_config(config, configfile, M_ERROR_TERM);
144
145    if (init_crypto() != 0) {
146       Emsg0(M_ERROR_TERM, 0, _("Cryptography library initialization failed.\n"));
147    }
148
149    if (!check_resources()) {
150       Emsg1(M_ERROR_TERM, 0, _("Please correct configuration file: %s\n"), configfile);
151    }
152
153    mainWin = new MainWin;
154    mainWin->show();
155
156    return app->exec();
157 }
158
159 void terminate_console(int /*sig*/)
160 {
161    exit(0);
162 }
163
164 static void usage()
165 {
166    fprintf(stderr, _(
167 PROG_COPYRIGHT
168 "\nVersion: %s (%s) %s %s %s\n\n"
169 "Usage: bat [-s] [-c config_file] [-d debug_level] [config_file]\n"
170 "       -c <file>   set configuration file to file\n"
171 "       -dnn        set debug level to nn\n"
172 "       -s          no signals\n"
173 "       -t          test - read configuration and exit\n"
174 "       -?          print this message.\n"
175 "\n"), 2007, VERSION, BDATE, HOST_OS, DISTNAME, DISTVER);
176
177    exit(1);
178 }
179
180 #ifdef xxx
181 /*
182  * Call-back for reading a passphrase for an encrypted PEM file
183  * This function uses getpass(), which uses a static buffer and is NOT thread-safe.
184  */
185 static int tls_pem_callback(char *buf, int size, const void *userdata)
186 {
187 #ifdef HAVE_TLS
188    const char *prompt = (const char *) userdata;
189    char *passwd;
190
191    passwd = getpass(prompt);
192    bstrncpy(buf, passwd, size);
193    return (strlen(buf));
194 #else
195    buf[0] = 0;
196    return 0;
197 #endif
198 }
199 #endif
200
201
202 /*
203  * Make a quick check to see that we have all the
204  * resources needed.
205  */
206 static int check_resources()
207 {
208    bool ok = true;
209    DIRRES *director;
210    int numdir;
211    bool tls_needed;
212
213    LockRes();
214
215    numdir = 0;
216    foreach_res(director, R_DIRECTOR) {
217       numdir++;
218       /* tls_require implies tls_enable */
219       if (director->tls_require) {
220          if (have_tls) {
221             director->tls_enable = true;
222          } else {
223             Jmsg(NULL, M_FATAL, 0, _("TLS required but not configured in Bacula.\n"));
224             ok = false;
225             continue;
226          }
227       }
228       tls_needed = director->tls_enable || director->tls_authenticate;
229
230       if ((!director->tls_ca_certfile && !director->tls_ca_certdir) && tls_needed) {
231          Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\""
232                              " or \"TLS CA Certificate Dir\" are defined for Director \"%s\" in %s."
233                              " At least one CA certificate store is required.\n"),
234                              director->hdr.name, configfile);
235          ok = false;
236       }
237    }
238    
239    if (numdir == 0) {
240       Emsg1(M_FATAL, 0, _("No Director resource defined in %s\n"
241                           "Without that I don't how to speak to the Director :-(\n"), configfile);
242       ok = false;
243    }
244
245    CONRES *cons;
246    /* Loop over Consoles */
247    foreach_res(cons, R_CONSOLE) {
248       /* tls_require implies tls_enable */
249       if (cons->tls_require) {
250          if (have_tls) {
251             cons->tls_enable = true;
252          } else {
253             Jmsg(NULL, M_FATAL, 0, _("TLS required but not configured in Bacula.\n"));
254             ok = false;
255             continue;
256          }
257       }
258       tls_needed = cons->tls_enable || cons->tls_authenticate;
259
260       if ((!cons->tls_ca_certfile && !cons->tls_ca_certdir) && tls_needed) {
261          Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\""
262                              " or \"TLS CA Certificate Dir\" are defined for Console \"%s\" in %s.\n"),
263                              cons->hdr.name, configfile);
264          ok = false;
265       }
266    }
267
268    UnlockRes();
269
270    return ok;
271 }