]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/gnome2-console/authenticate.c
This commit was manufactured by cvs2svn to create tag
[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)
49 {
50    BSOCK *dir = jcr->dir_bsock;
51    int ssl_need = BNET_SSL_NONE;
52
53    /* 
54     * Send my name to the Director then do authentication
55     */
56    bnet_fsend(dir, hello, "UserAgent");
57
58    if (!cram_md5_get_auth(dir, director->password, ssl_need) || 
59        !cram_md5_auth(dir, director->password, ssl_need)) {
60       printf(_("%s: Director authorization problem.\n"), my_name);
61       set_text(_("Director authorization problem.\n"), -1);
62       return 0;
63    }
64
65    Dmsg1(6, ">dird: %s", dir->msg);
66    if (bnet_recv(dir) <= 0) {
67       set_textf(_("Bad response to Hello command: ERR=%s\n"),
68          bnet_strerror(dir));
69       printf(_("%s: Bad response to Hello command: ERR=%s\n"),
70          my_name, bnet_strerror(dir));
71       set_text(_("The Director is probably not running.\n"), -1);
72       return 0;
73    }
74    Dmsg1(10, "<dird: %s", dir->msg);
75    if (strncmp(dir->msg, OKhello, sizeof(OKhello)-1) != 0) {
76       set_text(_("Director rejected Hello command\n"), -1);
77       return 0;
78    } else {
79       set_text(dir->msg, dir->msglen);
80    }
81    return 1;
82 }