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