]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/cram-md5.c
19July06
[bacula/bacula] / bacula / src / lib / cram-md5.c
1 /*
2  *  Challenge Response Authentication Method using MD5 (CRAM-MD5)
3  *
4  * cram-md5 is based on RFC2104.
5  *
6  * Written for Bacula by Kern E. Sibbald, May MMI.
7  *
8  *   Version $Id$
9  */
10 /*
11    Copyright (C) 2000-2006 Kern Sibbald
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License
15    version 2 as amended with additional clauses defined in the
16    file LICENSE in the main source directory.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
21    the file LICENSE for additional details.
22
23  */
24
25 #include "bacula.h"
26
27 /* Authorize other end
28  * Codes that tls_local_need and tls_remote_need can take:
29  *   BNET_TLS_NONE     I cannot do tls
30  *   BNET_TLS_OK       I can do tls, but it is not required on my end
31  *   BNET_TLS_REQUIRED  tls is required on my end
32  *
33  *   Returns: false if authentication failed
34  *            true if OK
35  */
36 bool cram_md5_challenge(BSOCK *bs, char *password, int tls_local_need, int compatible)
37 {
38    struct timeval t1;
39    struct timeval t2;
40    struct timezone tz;
41    int i;
42    bool ok;
43    char chal[MAXSTRING];
44    char host[MAXSTRING];
45    uint8_t hmac[20];
46
47    gettimeofday(&t1, &tz);
48    for (i=0; i<4; i++) {
49       gettimeofday(&t2, &tz);
50    }
51    srandom((t1.tv_sec&0xffff) * (t2.tv_usec&0xff));
52    if (!gethostname(host, sizeof(host))) {
53       bstrncpy(host, my_name, sizeof(host));
54    }
55    /* Send challenge -- no hashing yet */
56    bsnprintf(chal, sizeof(chal), "<%u.%u@%s>", (uint32_t)random(), (uint32_t)time(NULL), host);
57    Dmsg2(50, "send: auth cram-md5 %s ssl=%d\n", chal, tls_local_need);
58    if (compatible) {
59       if (!bnet_fsend(bs, "auth cram-md5c %s ssl=%d\n", chal, tls_local_need)) {
60          Dmsg1(50, "Bnet send challenge error.\n", bnet_strerror(bs));
61          return false;
62       }
63    } else {
64       /* Old non-compatible system */
65       if (!bnet_fsend(bs, "auth cram-md5 %s ssl=%d\n", chal, tls_local_need)) {
66          Dmsg1(50, "Bnet send challenge error.\n", bnet_strerror(bs));
67          return false;
68       }
69    }
70
71    /* Read hashed response to challenge */
72    if (bnet_wait_data(bs, 180) <= 0 || bnet_recv(bs) <= 0) {
73       Dmsg1(50, "Bnet receive challenge response error.\n", bnet_strerror(bs));
74       bmicrosleep(5, 0);
75       return false;
76    }
77
78    /* Attempt to duplicate hash with our password */
79    hmac_md5((uint8_t *)chal, strlen(chal), (uint8_t *)password, strlen(password), hmac);
80    bin_to_base64(host, sizeof(host), (char *)hmac, 16, compatible);
81    ok = strcmp(bs->msg, host) == 0;
82    if (ok) {
83       Dmsg1(50, "Authenticate OK %s\n", host);
84    } else {
85       Dmsg2(50, "Authenticate NOT OK: wanted %s, got %s\n", host, bs->msg);
86    }
87    if (ok) {
88       bnet_fsend(bs, "1000 OK auth\n");
89    } else {
90       Dmsg1(50, "Auth failed PW: %s\n", password);
91       bnet_fsend(bs, _("1999 Authorization failed.\n"));
92       bmicrosleep(5, 0);
93    }
94    return ok;
95 }
96
97 /* Respond to challenge from other end */
98 bool cram_md5_respond(BSOCK *bs, char *password, int *tls_remote_need, int *compatible)
99 {
100    char chal[MAXSTRING];
101    uint8_t hmac[20];
102
103    *compatible = false;
104    if (bnet_recv(bs) <= 0) {
105       bmicrosleep(5, 0);
106       return false;
107    }
108    if (bs->msglen >= MAXSTRING) {
109       Dmsg1(50, "Msg too long wanted auth cram... Got: %s", bs->msg);
110       bmicrosleep(5, 0);
111       return false;
112    }
113    Dmsg1(100, "cram-get: %s", bs->msg);
114    if (sscanf(bs->msg, "auth cram-md5c %s ssl=%d", chal, tls_remote_need) == 2) {
115       *compatible = true;
116    } else if (sscanf(bs->msg, "auth cram-md5 %s ssl=%d", chal, tls_remote_need) != 2) {
117       if (sscanf(bs->msg, "auth cram-md5 %s\n", chal) != 1) {
118          Dmsg1(50, "Cannot scan challenge: %s", bs->msg);
119          bnet_fsend(bs, _("1999 Authorization failed.\n"));
120          bmicrosleep(5, 0);
121          return false;
122       }
123    }
124
125    hmac_md5((uint8_t *)chal, strlen(chal), (uint8_t *)password, strlen(password), hmac);
126    bs->msglen = bin_to_base64(bs->msg, 50, (char *)hmac, 16, *compatible) + 1;
127 // Dmsg3(100, "get_auth: chal=%s pw=%s hmac=%s\n", chal, password, bs->msg);
128    if (!bnet_send(bs)) {
129       Dmsg1(50, "Send challenge failed. ERR=%s\n", bnet_strerror(bs));
130       return false;
131    }
132    Dmsg1(99, "sending resp to challenge: %s\n", bs->msg);
133    if (bnet_wait_data(bs, 180) <= 0 || bnet_recv(bs) <= 0) {
134       Dmsg1(50, "Receive chanllenge response failed. ERR=%s\n", bnet_strerror(bs));
135       bmicrosleep(5, 0);
136       return false;
137    }
138    if (strcmp(bs->msg, "1000 OK auth\n") == 0) {
139       return true;
140    }
141    Dmsg1(50, "Bad auth response: %s\n", bs->msg);
142    bmicrosleep(5, 0);
143    return false;
144 }