]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/gnome2-console/authenticate.c
Fix new FileSet exclusion
[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 ssl_need = BNET_SSL_NONE;
52    char bashed_name[MAX_NAME_LENGTH];
53    char *password;
54
55    /* 
56     * Send my name to the Director then do authentication
57     */
58    if (cons) {
59       bstrncpy(bashed_name, cons->hdr.name, sizeof(bashed_name));
60       bash_spaces(bashed_name);
61       password = cons->password;
62    } else {
63       bstrncpy(bashed_name, "*UserAgent*", sizeof(bashed_name));
64       password = director->password;
65    }
66    /* Timeout Hello after 5 mins */
67    btimer_t *tid = start_bsock_timer(dir, 60 * 5);
68    bnet_fsend(dir, hello, bashed_name);
69
70    if (!cram_md5_get_auth(dir, password, ssl_need) || 
71        !cram_md5_auth(dir, password, ssl_need)) {
72       stop_bsock_timer(tid);
73       printf(_("%s: Director authorization problem.\n"), my_name);
74       set_text(_("Director authorization problem.\n"), -1);
75       set_text(_(
76        "Please see http://www.bacula.org/html-manual/faq.html#AuthorizationErrors for help.\n"), 
77         -1);
78       return 0;
79    }
80
81    Dmsg1(6, ">dird: %s", dir->msg);
82    if (bnet_recv(dir) <= 0) {
83       stop_bsock_timer(tid);
84       set_textf(_("Bad response to Hello command: ERR=%s\n"),
85          bnet_strerror(dir));
86       printf(_("%s: Bad response to Hello command: ERR=%s\n"),
87          my_name, bnet_strerror(dir));
88       set_text(_("The Director is probably not running.\n"), -1);
89       return 0;
90    }
91   stop_bsock_timer(tid);
92    Dmsg1(10, "<dird: %s", dir->msg);
93    if (strncmp(dir->msg, OKhello, sizeof(OKhello)-1) != 0) {
94       set_text(_("Director rejected Hello command\n"), -1);
95       return 0;
96    } else {
97       set_text(dir->msg, dir->msglen);
98    }
99    return 1;
100 }