summaryrefslogtreecommitdiff
path: root/daemon/digest.c
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2008-06-11 21:48:27 +0000
committerStef Walter <stef@memberwebs.com>2008-06-11 21:48:27 +0000
commit0cb3f6098d959479a96c26a92d91becc2110b30d (patch)
tree22f1447d6c7ad77d802c476297cf9547f822f81a /daemon/digest.c
parent67d7a6cc4d3234ac93e521632701e8d42513e042 (diff)
Support getting groups from the server and limiting access based on LDAP groups. See #112
Diffstat (limited to 'daemon/digest.c')
-rw-r--r--daemon/digest.c45
1 files changed, 41 insertions, 4 deletions
diff --git a/daemon/digest.c b/daemon/digest.c
index ecde6b7..21cb453 100644
--- a/daemon/digest.c
+++ b/daemon/digest.c
@@ -27,6 +27,7 @@
#include "digest.h"
#include "stringx.h"
+#include <ctype.h>
#include <syslog.h>
/* A globally unique counter used to guarantee uniqueness of nonces */
@@ -333,8 +334,9 @@ int digest_pre_check(digest_context_t* dg, const ha_context_t* opts, ha_buffer_t
if(*e || nc != dg->server_nc)
{
- ha_messagex(NULL, LOG_WARNING, "digest response has wrong nc value. "
- "possible replay attack: %s", dg->client.nc);
+ ha_messagex(NULL, LOG_WARNING, "digest response has wrong nc value: %s "
+ "possible replay attack, should be: %d",
+ dg->client.nc, dg->server_nc);
return HA_FALSE;
}
}
@@ -415,7 +417,7 @@ static int internal_check(digest_context_t* dg, const char* http_method, ha_buff
*/
/* Encode ha1 */
- t = ha_bufenchex(buf, dg->ha1, MD5_LEN);
+ t = ha_bufenchex(buf, dg->server_ha1, MD5_LEN);
if(t == NULL)
return HA_CRITERROR;
@@ -541,7 +543,7 @@ const char* digest_respond(digest_context_t* dg, ha_buffer_t* buf,
/* Otherwise we do the whole song and dance */
/* Encode ha1 */
- t = ha_bufenchex(buf, dg->ha1, MD5_LEN);
+ t = ha_bufenchex(buf, dg->server_ha1, MD5_LEN);
if(t == NULL)
return NULL;
@@ -614,3 +616,38 @@ void digest_makeha1(unsigned char* digest, const char* user,
md5_update(&md5, password, strlen(password));
md5_final(digest, &md5);
}
+
+#define MUST_ESCAPE "\"\' \t\n\r\v\\"
+
+void
+digest_escape (ha_buffer_t *buf, const char *orig)
+{
+ const char* t;
+ size_t pos;
+
+ assert (orig);
+ assert (buf);
+
+ ha_bufcpy(buf, "");
+
+ t = orig;
+ while (*t) {
+ pos = strcspn (t, MUST_ESCAPE);
+
+ if(pos > 0) {
+ ha_bufjoin (buf);
+ ha_bufncpy (buf, t, pos);
+ t += pos;
+ }
+
+ while (*t && !strchr (MUST_ESCAPE, *t)) {
+ char esc[3];
+ esc[0] = '\\';
+ esc[1] = *t;
+ esc[2] = '\0';
+ ha_bufjoin (buf);
+ ha_bufcpy (buf, esc);
+ t++;
+ }
+ }
+}