]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/cram-md5.c
Implement RestoreObject for sqlite + cleanups
[bacula/bacula] / bacula / src / lib / cram-md5.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2001-2011 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 three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    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 Affero 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 Kern Sibbald.
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  *  Challenge Response Authentication Method using MD5 (CRAM-MD5)
30  *
31  * cram-md5 is based on RFC2104.
32  *
33  * Written for Bacula by Kern E. Sibbald, May MMI.
34  *
35  */
36
37 #include "bacula.h"
38
39 const int dbglvl = 50;
40
41 /* Authorize other end
42  * Codes that tls_local_need and tls_remote_need can take:
43  *   BNET_TLS_NONE     I cannot do tls
44  *   BNET_TLS_OK       I can do tls, but it is not required on my end
45  *   BNET_TLS_REQUIRED  tls is required on my end
46  *
47  *   Returns: false if authentication failed
48  *            true if OK
49  */
50 bool cram_md5_challenge(BSOCK *bs, const char *password, int tls_local_need, int compatible)
51 {
52    struct timeval t1;
53    struct timeval t2;
54    struct timezone tz;
55    int i;
56    bool ok;
57    char chal[MAXSTRING];
58    char host[MAXSTRING];
59    uint8_t hmac[20];
60
61    gettimeofday(&t1, &tz);
62    for (i=0; i<4; i++) {
63       gettimeofday(&t2, &tz);
64    }
65    srandom((t1.tv_sec&0xffff) * (t2.tv_usec&0xff));
66    if (!gethostname(host, sizeof(host))) {
67       bstrncpy(host, my_name, sizeof(host));
68    }
69    /* Send challenge -- no hashing yet */
70    bsnprintf(chal, sizeof(chal), "<%u.%u@%s>", (uint32_t)random(), (uint32_t)time(NULL), host);
71    if (compatible) {
72       Dmsg2(dbglvl, "send: auth cram-md5 %s ssl=%d\n", chal, tls_local_need);
73       if (!bs->fsend("auth cram-md5 %s ssl=%d\n", chal, tls_local_need)) {
74          Dmsg1(dbglvl, "Bnet send challenge comm error. ERR=%s\n", bs->bstrerror());
75          return false;
76       }
77    } else {
78       /* Old non-compatible system */
79       Dmsg2(dbglvl, "send: auth cram-md5 %s ssl=%d\n", chal, tls_local_need);
80       if (!bs->fsend("auth cram-md5 %s ssl=%d\n", chal, tls_local_need)) {
81          Dmsg1(dbglvl, "Bnet send challenge comm error. ERR=%s\n", bs->bstrerror());
82          return false;
83       }
84    }
85
86    /* Read hashed response to challenge */
87    if (bs->wait_data(180) <= 0 || bs->recv() <= 0) {
88       Dmsg1(dbglvl, "Bnet receive challenge response comm error. ERR=%s\n", bs->bstrerror());
89       bmicrosleep(5, 0);
90       return false;
91    }
92
93    /* Attempt to duplicate hash with our password */
94    hmac_md5((uint8_t *)chal, strlen(chal), (uint8_t *)password, strlen(password), hmac);
95    bin_to_base64(host, sizeof(host), (char *)hmac, 16, compatible);
96    ok = strcmp(bs->msg, host) == 0;
97    if (ok) {
98       Dmsg1(dbglvl, "Authenticate OK %s\n", host);
99    } else {
100       bin_to_base64(host, sizeof(host), (char *)hmac, 16, false);     
101       ok = strcmp(bs->msg, host) == 0;
102       if (!ok) {
103          Dmsg2(dbglvl, "Authenticate NOT OK: wanted %s, got %s\n", host, bs->msg);
104       }
105    }
106    if (ok) {
107       bs->fsend("1000 OK auth\n");
108    } else {
109       Dmsg1(dbglvl, "Auth failed PW: %s\n", password);
110       bs->fsend(_("1999 Authorization failed.\n"));
111       bmicrosleep(5, 0);
112    }
113    return ok;
114 }
115
116 /* Respond to challenge from other end */
117 bool cram_md5_respond(BSOCK *bs, const char *password, int *tls_remote_need, int *compatible)
118 {
119    char chal[MAXSTRING];
120    uint8_t hmac[20];
121
122    *compatible = false;
123    if (bs->recv() <= 0) {
124       bmicrosleep(5, 0);
125       return false;
126    }
127    if (bs->msglen >= MAXSTRING) {
128       Dmsg1(dbglvl, "Msg too long wanted auth cram... Got: %s", bs->msg);
129       bmicrosleep(5, 0);
130       return false;
131    }
132    Dmsg1(100, "cram-get received: %s", bs->msg);
133    if (sscanf(bs->msg, "auth cram-md5c %s ssl=%d", chal, tls_remote_need) == 2) {
134       *compatible = true;
135    } else if (sscanf(bs->msg, "auth cram-md5 %s ssl=%d", chal, tls_remote_need) != 2) {
136       if (sscanf(bs->msg, "auth cram-md5 %s\n", chal) != 1) {
137          Dmsg1(dbglvl, "Cannot scan challenge: %s", bs->msg);
138          bs->fsend(_("1999 Authorization failed.\n"));
139          bmicrosleep(5, 0);
140          return false;
141       }
142    }
143
144    hmac_md5((uint8_t *)chal, strlen(chal), (uint8_t *)password, strlen(password), hmac);
145    bs->msglen = bin_to_base64(bs->msg, 50, (char *)hmac, 16, *compatible) + 1;
146 // Dmsg3(100, "get_auth: chal=%s pw=%s hmac=%s\n", chal, password, bs->msg);
147    if (!bs->send()) {
148       Dmsg1(dbglvl, "Send challenge failed. ERR=%s\n", bs->bstrerror());
149       return false;
150    }
151    Dmsg1(99, "sending resp to challenge: %s\n", bs->msg);
152    if (bs->wait_data(180) <= 0 || bs->recv() <= 0) {
153       Dmsg1(dbglvl, "Receive chanllenge response failed. ERR=%s\n", bs->bstrerror());
154       bmicrosleep(5, 0);
155       return false;
156    }
157    if (strcmp(bs->msg, "1000 OK auth\n") == 0) {
158       return true;
159    }
160    Dmsg1(dbglvl, "Received bad response: %s\n", bs->msg);
161    bmicrosleep(5, 0);
162    return false;
163 }