[Freeswitch-svn] [commit] r3983 - freeswitch/trunk/src/mod/endpoints/mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Wed Jan 17 17:42:52 EST 2007
Author: anthm
Date: Wed Jan 17 17:42:52 2007
New Revision: 3983
Modified:
freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
Log:
allow storage of a1 hash in user directory field 'a1-hash' trumps password field
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c Wed Jan 17 17:42:52 2007
@@ -2952,6 +2952,7 @@
char contact_str[1024] = "";
char buf[512];
char *passwd = NULL;
+ char *a1_hash = NULL;
uint8_t stale = 0, ret = 0, forbidden = 0;
auth_res_t auth_res;
long exptime = 60;
@@ -3059,9 +3060,13 @@
if (!strcasecmp(var, "password")) {
passwd = val;
}
+
+ if (!strcasecmp(var, "a1-hash")) {
+ a1_hash = val;
+ }
}
- if (passwd) {
+ if (passwd || a1_hash) {
switch_uuid_t uuid;
char uuid_str[SWITCH_UUID_FORMATTED_LENGTH + 1];
char *sql, *auth_str;
@@ -3070,15 +3075,18 @@
char hexdigest[2 * SU_MD5_DIGEST_SIZE + 1];
char *input;
- input = switch_mprintf("%s:%s:%s", from_user, from_host, passwd);
- su_md5_init(&ctx);
- su_md5_strupdate(&ctx, input);
- su_md5_hexdigest(&ctx, hexdigest);
- su_md5_deinit(&ctx);
- switch_safe_free(input);
-
- switch_uuid_get(&uuid);
- switch_uuid_format(uuid_str, &uuid);
+ if (!a1_hash) {
+ input = switch_mprintf("%s:%s:%s", from_user, from_host, passwd);
+ su_md5_init(&ctx);
+ su_md5_strupdate(&ctx, input);
+ su_md5_hexdigest(&ctx, hexdigest);
+ su_md5_deinit(&ctx);
+ switch_safe_free(input);
+
+ switch_uuid_get(&uuid);
+ switch_uuid_format(uuid_str, &uuid);
+ a1_hash = hexdigest;
+ }
sql = switch_mprintf("delete from sip_authentication where user='%q' and host='%q';\n"
"insert into sip_authentication values('%q','%q','%q','%q', %ld)",
@@ -3086,7 +3094,7 @@
from_host,
from_user,
from_host,
- hexdigest,
+ a1_hash,
uuid_str,
time(NULL) + 60);
auth_str = switch_mprintf("Digest realm=\"%q\", nonce=\"%q\",%s algorithm=MD5, qop=\"auth\"", from_host, uuid_str,
More information about the Freeswitch-svn
mailing list