]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/main.cpp
Fix bug #1486 -- bat doesn't show any errors on command-line
[bacula/bacula] / bacula / src / qt-console / main.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2010 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 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  *  Main program for bat (qt-console)
30  *
31  *   Kern Sibbald, January MMVII
32  *
33  */ 
34
35
36 #include "bat.h"
37 #include <QApplication>
38 #include <QTranslator>
39
40 MainWin *mainWin;
41 QApplication *app;
42
43 /* Forward referenced functions */
44 void terminate_console(int sig);                                
45 static void usage();
46 static int check_resources();
47
48 extern bool parse_bat_config(CONFIG *config, const char *configfile, int exit_code);
49 extern void message_callback(int /* type */, char *msg);
50
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    register_message_callback(message_callback);
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    lmgr_init_thread();
88    init_msg(NULL, NULL);
89    working_directory  = "/tmp";
90
91    struct sigaction sigignore;
92    sigignore.sa_flags = 0;
93    sigignore.sa_handler = SIG_IGN;
94    sigfillset(&sigignore.sa_mask);
95    sigaction(SIGPIPE, &sigignore, NULL);
96    sigaction(SIGUSR2, &sigignore, NULL);
97
98
99    while ((ch = getopt(argc, argv, "bc:d:r:st?")) != -1) {
100       switch (ch) {
101       case 'c':                    /* configuration file */
102          if (configfile != NULL) {
103             free(configfile);
104          }
105          configfile = bstrdup(optarg);
106          break;
107
108       case 'd':
109          debug_level = atoi(optarg);
110          if (debug_level <= 0)
111             debug_level = 1;
112          break;
113
114       case 's':                    /* turn off signals */
115          no_signals = true;
116          break;
117
118       case 't':
119          test_config = true;
120          break;
121
122       case '?':
123       default:
124          usage();
125       }
126    }
127    argc -= optind;
128    argv += optind;
129
130
131    if (!no_signals) {
132       init_signals(terminate_console);
133    }
134
135    if (argc) {
136       usage();
137    }
138
139    OSDependentInit();
140 #ifdef HAVE_WIN32
141    WSA_Init();                        /* Initialize Windows sockets */
142 #endif
143
144    if (configfile == NULL) {
145       configfile = bstrdup(CONFIG_FILE);
146    }
147
148    config = new_config_parser();
149    parse_bat_config(config, configfile, M_ERROR_TERM);
150
151    if (init_crypto() != 0) {
152       Emsg0(M_ERROR_TERM, 0, _("Cryptography library initialization failed.\n"));
153    }
154
155    if (!check_resources()) {
156       Emsg1(M_ERROR_TERM, 0, _("Please correct configuration file: %s\n"), configfile);
157    }
158
159    mainWin = new MainWin;
160    mainWin->show();
161
162    return app->exec();
163 }
164
165 void terminate_console(int /*sig*/)
166 {
167 // WSA_Cleanup();                  /* TODO: check when we have to call it */
168    exit(0);
169 }
170
171 static void usage()
172 {
173    fprintf(stderr, _(
174 PROG_COPYRIGHT
175 "\nVersion: %s (%s) %s %s %s\n\n"
176 "Usage: bat [-s] [-c config_file] [-d debug_level] [config_file]\n"
177 "       -c <file>   set configuration file to file\n"
178 "       -dnn        set debug level to nn\n"
179 "       -s          no signals\n"
180 "       -t          test - read configuration and exit\n"
181 "       -?          print this message.\n"
182 "\n"), 2007, VERSION, BDATE, HOST_OS, DISTNAME, DISTVER);
183
184    exit(1);
185 }
186
187 /*
188  * Make a quick check to see that we have all the
189  * resources needed.
190  */
191 static int check_resources()
192 {
193    bool ok = true;
194    DIRRES *director;
195    int numdir;
196    bool tls_needed;
197
198    LockRes();
199
200    numdir = 0;
201    foreach_res(director, R_DIRECTOR) {
202       numdir++;
203       /* tls_require implies tls_enable */
204       if (director->tls_require) {
205          if (have_tls) {
206             director->tls_enable = true;
207          } else {
208             Jmsg(NULL, M_FATAL, 0, _("TLS required but not configured in Bacula.\n"));
209             ok = false;
210             continue;
211          }
212       }
213       tls_needed = director->tls_enable || director->tls_authenticate;
214
215       if ((!director->tls_ca_certfile && !director->tls_ca_certdir) && tls_needed) {
216          Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\""
217                              " or \"TLS CA Certificate Dir\" are defined for Director \"%s\" in %s."
218                              " At least one CA certificate store is required.\n"),
219                              director->hdr.name, configfile);
220          ok = false;
221       }
222    }
223    
224    if (numdir == 0) {
225       Emsg1(M_FATAL, 0, _("No Director resource defined in %s\n"
226                           "Without that I don't how to speak to the Director :-(\n"), configfile);
227       ok = false;
228    }
229
230    CONRES *cons;
231    /* Loop over Consoles */
232    foreach_res(cons, R_CONSOLE) {
233       /* tls_require implies tls_enable */
234       if (cons->tls_require) {
235          if (have_tls) {
236             cons->tls_enable = true;
237          } else {
238             Jmsg(NULL, M_FATAL, 0, _("TLS required but not configured in Bacula.\n"));
239             ok = false;
240             continue;
241          }
242       }
243       tls_needed = cons->tls_enable || cons->tls_authenticate;
244
245       if ((!cons->tls_ca_certfile && !cons->tls_ca_certdir) && tls_needed) {
246          Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\""
247                              " or \"TLS CA Certificate Dir\" are defined for Console \"%s\" in %s.\n"),
248                              cons->hdr.name, configfile);
249          ok = false;
250       }
251    }
252
253    UnlockRes();
254
255    return ok;
256 }