]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/authenticate.c
Misc see kes-1.31 13May03
[bacula/bacula] / bacula / src / stored / authenticate.c
1 /*
2  * Authenticate caller
3  *
4  *   Kern Sibbald, October 2000
5  *
6  *   Version $Id$
7  * 
8  */
9 /*
10    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28   
29 #include "bacula.h"
30 #include "stored.h"
31
32 static char Dir_sorry[] = "3999 No go\n";
33 static char OK_hello[]  = "3000 OK Hello\n";
34
35
36 /********************************************************************* 
37  *
38  *
39  */
40 static int authenticate(int rcode, BSOCK *bs)
41 {
42    POOLMEM *dirname;
43    DIRRES *director = NULL;
44    int ssl_need = BNET_SSL_NONE;
45
46    if (rcode != R_DIRECTOR) {
47       Emsg1(M_FATAL, 0, _("I only authenticate Directors, not %d\n"), rcode);
48       return 0;
49    }
50    if (bs->msglen < 25 || bs->msglen > 200) {
51       Emsg2(M_FATAL, 0, _("Bad Hello command from Director at %s. Len=%d.\n"), 
52             bs->who, bs->msglen);
53       return 0;
54    }
55    dirname = get_pool_memory(PM_MESSAGE);
56    dirname = check_pool_memory_size(dirname, bs->msglen);
57
58    if (sscanf(bs->msg, "Hello Director %127s calling\n", dirname) != 1) {
59       bs->msg[100] = 0;
60       Emsg2(M_FATAL, 0, _("Bad Hello command from Director at %s: %s\n"), 
61             bs->who, bs->msg);
62       return 0;
63    }
64    director = NULL;
65    unbash_spaces(dirname);
66    LockRes();
67    while ((director=(DIRRES *)GetNextRes(rcode, (RES *)director))) {
68       if (strcmp(director->hdr.name, dirname) == 0)
69          break;
70    }
71    UnlockRes();
72    if (!director) {
73       Emsg2(M_FATAL, 0, _("Connection from unknown Director %s at %s rejected.\n"), 
74             dirname, bs->who);
75       goto bail_out;
76    }
77    if (!cram_md5_auth(bs, director->password, ssl_need) ||
78        !cram_md5_get_auth(bs, director->password, ssl_need)) {
79       Emsg0(M_FATAL, 0, _("Incorrect password given by Director.\n"));
80       goto bail_out;
81    }
82    free_pool_memory(dirname);
83    return 1;
84
85 bail_out:
86    free_pool_memory(dirname);
87    return 0;
88 }
89
90 /*
91  * Inititiate the message channel with the Director.
92  * He has made a connection to our server.
93  * 
94  * Basic tasks done here:
95  *   Assume the Hello message is already in the input
96  *     buffer.  We then authenticate him.
97  *   Get device, media, and pool information from Director
98  *
99  *   This is the channel across which we will send error
100  *     messages and job status information.
101  */
102 int authenticate_director(JCR *jcr)
103 {
104    BSOCK *dir = jcr->dir_bsock;
105
106    if (!authenticate(R_DIRECTOR, dir)) {
107       bnet_fsend(dir, "%s", Dir_sorry);
108       Emsg1(M_ERROR, 0, _("Unable to authenticate Director at %s.\n"), dir->who);
109       bmicrosleep(5, 0);
110       return 0;
111    }
112    return bnet_fsend(dir, "%s", OK_hello);
113 }
114
115 int authenticate_filed(JCR *jcr)
116 {
117    BSOCK *fd = jcr->file_bsock;
118    int ssl_need = BNET_SSL_NONE;
119
120    if (cram_md5_auth(fd, jcr->sd_auth_key, ssl_need) &&
121        cram_md5_get_auth(fd, jcr->sd_auth_key, ssl_need)) {
122       jcr->authenticated = TRUE;
123    }
124    if (!jcr->authenticated) {
125       Jmsg(jcr, M_FATAL, 0, _("Incorrect authorization key from File daemon at %s rejected.\n"), 
126            fd->who);
127    }
128    return jcr->authenticated;
129 }