]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/main.cpp
ebl Fix socket usage on win32
[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    OSDependentInit();
139    WSA_Init();                        /* Initialize Windows sockets */
140
141    if (configfile == NULL) {
142       configfile = bstrdup(CONFIG_FILE);
143    }
144
145    config = new_config_parser();
146    parse_bat_config(config, configfile, M_ERROR_TERM);
147
148    if (init_crypto() != 0) {
149       Emsg0(M_ERROR_TERM, 0, _("Cryptography library initialization failed.\n"));
150    }
151
152    if (!check_resources()) {
153       Emsg1(M_ERROR_TERM, 0, _("Please correct configuration file: %s\n"), configfile);
154    }
155
156    mainWin = new MainWin;
157    mainWin->show();
158
159    return app->exec();
160 }
161
162 void terminate_console(int /*sig*/)
163 {
164 // WSA_Cleanup();                  /* TODO: check when we have to call it */
165    exit(0);
166 }
167
168 static void usage()
169 {
170    fprintf(stderr, _(
171 PROG_COPYRIGHT
172 "\nVersion: %s (%s) %s %s %s\n\n"
173 "Usage: bat [-s] [-c config_file] [-d debug_level] [config_file]\n"
174 "       -c <file>   set configuration file to file\n"
175 "       -dnn        set debug level to nn\n"
176 "       -s          no signals\n"
177 "       -t          test - read configuration and exit\n"
178 "       -?          print this message.\n"
179 "\n"), 2007, VERSION, BDATE, HOST_OS, DISTNAME, DISTVER);
180
181    exit(1);
182 }
183
184 #ifdef xxx
185 /*
186  * Call-back for reading a passphrase for an encrypted PEM file
187  * This function uses getpass(), which uses a static buffer and is NOT thread-safe.
188  */
189 static int tls_pem_callback(char *buf, int size, const void *userdata)
190 {
191 #ifdef HAVE_TLS
192    const char *prompt = (const char *) userdata;
193    char *passwd;
194
195    passwd = getpass(prompt);
196    bstrncpy(buf, passwd, size);
197    return (strlen(buf));
198 #else
199    buf[0] = 0;
200    return 0;
201 #endif
202 }
203 #endif
204
205
206 /*
207  * Make a quick check to see that we have all the
208  * resources needed.
209  */
210 static int check_resources()
211 {
212    bool ok = true;
213    DIRRES *director;
214    int numdir;
215    bool tls_needed;
216
217    LockRes();
218
219    numdir = 0;
220    foreach_res(director, R_DIRECTOR) {
221       numdir++;
222       /* tls_require implies tls_enable */
223       if (director->tls_require) {
224          if (have_tls) {
225             director->tls_enable = true;
226          } else {
227             Jmsg(NULL, M_FATAL, 0, _("TLS required but not configured in Bacula.\n"));
228             ok = false;
229             continue;
230          }
231       }
232       tls_needed = director->tls_enable || director->tls_authenticate;
233
234       if ((!director->tls_ca_certfile && !director->tls_ca_certdir) && tls_needed) {
235          Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\""
236                              " or \"TLS CA Certificate Dir\" are defined for Director \"%s\" in %s."
237                              " At least one CA certificate store is required.\n"),
238                              director->hdr.name, configfile);
239          ok = false;
240       }
241    }
242    
243    if (numdir == 0) {
244       Emsg1(M_FATAL, 0, _("No Director resource defined in %s\n"
245                           "Without that I don't how to speak to the Director :-(\n"), configfile);
246       ok = false;
247    }
248
249    CONRES *cons;
250    /* Loop over Consoles */
251    foreach_res(cons, R_CONSOLE) {
252       /* tls_require implies tls_enable */
253       if (cons->tls_require) {
254          if (have_tls) {
255             cons->tls_enable = true;
256          } else {
257             Jmsg(NULL, M_FATAL, 0, _("TLS required but not configured in Bacula.\n"));
258             ok = false;
259             continue;
260          }
261       }
262       tls_needed = cons->tls_enable || cons->tls_authenticate;
263
264       if ((!cons->tls_ca_certfile && !cons->tls_ca_certdir) && tls_needed) {
265          Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\""
266                              " or \"TLS CA Certificate Dir\" are defined for Console \"%s\" in %s.\n"),
267                              cons->hdr.name, configfile);
268          ok = false;
269       }
270    }
271
272    UnlockRes();
273
274    return ok;
275 }