From 832c48cb9bb468caa7c48d231cb651c74d8ba43c Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 17 Jan 2007 22:42:52 +0000 Subject: [PATCH] allow storage of a1 hash in user directory field 'a1-hash' trumps password field git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3983 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_sofia/mod_sofia.c | 28 ++++++++++++++++--------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 9cf53fd0cd..5b9079c5ed 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -2952,6 +2952,7 @@ static uint8_t handle_register(nua_t *nua, 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 @@ static uint8_t handle_register(nua_t *nua, 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 @@ static uint8_t handle_register(nua_t *nua, 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); + 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); + 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 @@ static uint8_t handle_register(nua_t *nua, 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,