1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author : F. Tarek Rogers - 01 Sept 2004
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <openssl/md5.h>
#define MAX_HEADER_LEN 1025
#define MD5_HASH_SIZE 16
#define HASH_HEX_SIZE 2*MD5_HASH_SIZE
/* This function is from RFC 2617 Section 5 */
void hashToHex (unsigned char *_b, unsigned char *_h)
{
unsigned short i;
unsigned char j;
for (i = 0; i < MD5_HASH_SIZE; i++) {
j = (_b[i] >> 4) & 0xf;
if (j <= 9) {
_h[i * 2] = (j + '0');
} else {
_h[i * 2] = (j + 'a' - 10);
}
j = _b[i] & 0xf;
if (j <= 9) {
_h[i * 2 + 1] = (j + '0');
} else {
_h[i * 2 + 1] = (j + 'a' - 10);
}
};
_h[HASH_HEX_SIZE] = '\0';
}
char *stristr (const char *s1, const char *s2) {
char *cp = (char*) s1;
char *p1, *p2, *endp;
char l, r;
endp = (char*)s1 + (strlen(s1) - strlen(s2)) ;
while (*cp && (cp <= endp)) {
p1 = cp;
p2 = (char*)s2;
while (*p1 && *p2) {
l = toupper(*p1);
r = toupper(*p2);
if (l != r) {
break;
}
p1++;
p2++;
}
if (*p2 == 0) {
return cp;
}
cp++;
}
return 0;
}
int createAuthHeader(char * user, char * password, char * method,
char * uri, char * msgbody, char * auth, char * result) {
unsigned char ha1[MD5_HASH_SIZE], ha2[MD5_HASH_SIZE];
unsigned char resp[MD5_HASH_SIZE], body[MD5_HASH_SIZE];
unsigned char ha1_hex[HASH_HEX_SIZE+1], ha2_hex[HASH_HEX_SIZE+1];
unsigned char resp_hex[HASH_HEX_SIZE+1], body_hex[HASH_HEX_SIZE+1];
char tmp[MAX_HEADER_LEN], authtype[16], cnonce[32], nc[32], algo[32], opaque[64];
char *start, *end;
static unsigned int mync = 1;
int has_opaque = 0;
MD5_CTX Md5Ctx;
if ((start = stristr(auth, "Digest")) == NULL) {
sprintf(result, "createAuthHeader: authentication must be digest");
return 0;
}
// extract the algo. If it is not "MD5", exit with an error
if ((start = stristr(auth, "algorithm=")) != NULL) {
start = start + strlen("algorithm=");
if (*start == '"') { start++; }
end = start + strcspn(start, " ,\"\r\n");
strncpy(algo, start, end - start);
algo[end - start] ='\0';
if (strncasecmp(algo, "MD5", 3)) {
sprintf(result, "createAuthHeader: authentication must use MD5");
return 0;
}
}
// Extract the Auth Type - If not present, using 'none'
cnonce[0] = '\0';
if ((start = stristr(auth, "qop=")) != NULL) {
start = start + strlen("qop=");
if (*start == '"') { start++; }
end = start + strcspn(start, " ,\"\r\n");
strncpy(authtype, start, end - start);
authtype[end - start] ='\0';
sprintf(cnonce, "%x", rand());
sprintf(nc, "%08x", mync++);
}
// Extract the Opaque value - if present
opaque[0] = '\0';
if ((start = stristr(auth, "opaque=")) != NULL) {
start = start + strlen("opaque=");
if (*start == '"') { start++; }
end = start + strcspn(start, " ,\"\r\n");
strncpy(opaque, start, end - start);
opaque[end - start] ='\0';
has_opaque = 1;
}
// Extract the Realm
if ((start = stristr(auth, "realm=")) == NULL) {
sprintf(result, "createAuthHeader: couldn't parse realm");
return 0;
}
start = start + strlen("realm=");
if (*start == '"') { start++; }
end = start + strcspn(start, " ,\"\r\n");
strncpy(tmp, start, end - start);
tmp[end - start] ='\0';
// Load in A1
MD5_Init(&Md5Ctx);
MD5_Update(&Md5Ctx, user, strlen(user));
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, tmp, strlen(tmp));
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, password, strlen(password));
MD5_Final(ha1, &Md5Ctx);
hashToHex(&ha1[0], &ha1_hex[0]);
sprintf(result, "Digest username=\"%s\",realm=\"%s\"",user,tmp);
if (cnonce[0] != '\0') {
sprintf(result, "%s,cnonce=\"%s\",nc=%s,qop=\"%s\"",result,cnonce,nc,authtype);
}
// Construct the URI
sprintf(tmp, "sip:%s", uri);
// If using Auth-Int make a hash of the body - which is NULL for REG
if (stristr(authtype, "auth-int") != NULL) {
MD5_Init(&Md5Ctx);
MD5_Update(&Md5Ctx, msgbody, strlen(msgbody));
MD5_Final(body, &Md5Ctx);
hashToHex(&body[0], &body_hex[0]);
}
// Load in A2
MD5_Init(&Md5Ctx);
MD5_Update(&Md5Ctx, method, strlen(method));
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, tmp, strlen(tmp));
if (stristr(authtype, "auth-int") != NULL) {
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, &body_hex, HASH_HEX_SIZE);
}
MD5_Final(ha2, &Md5Ctx);
hashToHex(&ha2[0], &ha2_hex[0]);
sprintf(result, "%s,uri=\"%s\"",result,tmp);
// Extract the Nonce
if ((start = stristr(auth, "nonce=")) == NULL) {
sprintf(result, "createAuthHeader: couldn't parse nonce");
return 0;
}
start = start + strlen("nonce=");
if (*start == '"') { start++; }
end = start + strcspn(start, " ,\"\r\n");
strncpy(tmp, start, end - start);
tmp[end - start] ='\0';
MD5_Init(&Md5Ctx);
MD5_Update(&Md5Ctx, &ha1_hex, HASH_HEX_SIZE);
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, tmp, strlen(tmp));
if (cnonce[0] != '\0') {
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, nc, strlen(nc));
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, cnonce, strlen(cnonce));
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, authtype, strlen(authtype));
}
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, &ha2_hex, HASH_HEX_SIZE);
MD5_Final(resp, &Md5Ctx);
hashToHex(&resp[0], &resp_hex[0]);
sprintf(result, "%s,nonce=\"%s\",response=\"%s\",algorithm=md5",result,tmp,resp_hex);
if (has_opaque) {
sprintf(result, "%s,opaque=\"%s\"",result,opaque);
}
return 1;
}
|