]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/gnome2-console/authenticate.c
Mark translatable strings in all source files.
[bacula/bacula] / bacula / src / gnome2-console / authenticate.c
1 /*
2  *
3  *   Bacula UA authentication. Provides authentication with
4  *     the Director.
5  *
6  *     Kern Sibbald, June MMI
7  *
8  *     Version $Id$
9  *
10  *    This routine runs as a thread and must be thread reentrant.
11  *
12  *  Basic tasks done here:
13  *
14  */
15 /*
16    Copyright (C) 2000, 2001 Kern Sibbald and John Walker
17
18    This program is free software; you can redistribute it and/or
19    modify it under the terms of the GNU General Public License
20    as published by the Free Software Foundation; either version 2
21    of the License, or (at your option) any later version.
22
23    This program is distributed in the hope that it will be useful,
24    but WITHOUT ANY WARRANTY; without even the implied warranty of
25    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26    GNU General Public License for more details.
27
28    You should have received a copy of the GNU General Public License
29    along with this program; if not, write to the Free Software
30    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  */
32
33 #include "bacula.h"
34 #include "console.h"
35
36
37 /* Commands sent to Director */
38 static char hello[]    = "Hello %s calling\n";
39
40 /* Response from Director */
41 static char OKhello[]   = "1000 OK:";
42
43 /* Forward referenced functions */
44
45 /*
46  * Authenticate Director
47  */
48 int authenticate_director(JCR *jcr, DIRRES *director, CONRES *cons)
49 {
50    BSOCK *dir = jcr->dir_bsock;
51    int tls_local_need = BNET_TLS_NONE;
52    int tls_remote_need = BNET_TLS_NONE;
53    char bashed_name[MAX_NAME_LENGTH];
54    char *password;
55
56    /*
57     * Send my name to the Director then do authentication
58     */
59    if (cons) {
60       bstrncpy(bashed_name, cons->hdr.name, sizeof(bashed_name));
61       bash_spaces(bashed_name);
62       password = cons->password;
63    } else {
64       bstrncpy(bashed_name, "*UserAgent*", sizeof(bashed_name));
65       password = director->password;
66    }
67    /* Timeout Hello after 5 mins */
68    btimer_t *tid = start_bsock_timer(dir, 60 * 5);
69    bnet_fsend(dir, hello, bashed_name);
70
71    if (!cram_md5_get_auth(dir, password, &tls_remote_need) ||
72        !cram_md5_auth(dir, password, tls_local_need)) {
73       stop_bsock_timer(tid);
74       printf(_("%s: Director authorization problem.\n"), my_name);
75       set_text(_("Director authorization problem.\n"), -1);
76       set_text(_(
77        "Please see http://www.bacula.org/rel-manual/faq.html#AuthorizationErrors for help.\n"),
78         -1);
79       return 0;
80    }
81
82    Dmsg1(6, ">dird: %s", dir->msg);
83    if (bnet_recv(dir) <= 0) {
84       stop_bsock_timer(tid);
85       set_textf(_("Bad response to Hello command: ERR=%s\n"),
86          bnet_strerror(dir));
87       printf(_("%s: Bad response to Hello command: ERR=%s\n"),
88          my_name, bnet_strerror(dir));
89       set_text(_("The Director is probably not running.\n"), -1);
90       return 0;
91    }
92   stop_bsock_timer(tid);
93    Dmsg1(10, "<dird: %s", dir->msg);
94    if (strncmp(dir->msg, OKhello, sizeof(OKhello)-1) != 0) {
95       set_text(_("Director rejected Hello command\n"), -1);
96       return 0;
97    } else {
98       set_text(dir->msg, dir->msglen);
99    }
100    return 1;
101 }