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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
//
// Digest Authentication implementation
//
// Authors:
// Greg Reinacker (gregr@rassoc.com)
// Sebastien Pouliot (spouliot@motus.com)
//
// Copyright 2002-2003 Greg Reinacker, Reinacker & Associates, Inc. All rights reserved.
// Portions (C) 2003 Motus Technologies Inc. (http://www.motus.com)
//
// Original source code available at
// http://www.rassoc.com/gregr/weblog/stories/2002/07/09/webServicesSecurityHttpDigestAuthenticationWithoutActiveDirectory.html
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections.Specialized;
using System.Configuration;
using System.IO;
using System.Security.Cryptography;
using System.Security.Principal;
using System.Text;
using System.Web;
using System.Xml;
namespace Mono.Http.Modules
{
public class DigestAuthenticationModule : AuthenticationModule
{
// TODO: Digest.Nonce.Lifetime="0" Never expires
static int nonceLifetime = 60;
static char[] trim = {'='};
public DigestAuthenticationModule () : base ("Digest") {}
protected virtual bool IsValidNonce (string nonce)
{
DateTime expireTime;
// pad nonce on the right with '=' until length is a multiple of 4
int numPadChars = nonce.Length % 4;
if (numPadChars > 0)
numPadChars = 4 - numPadChars;
string newNonce = nonce.PadRight(nonce.Length + numPadChars, '=');
try {
byte[] decodedBytes = Convert.FromBase64String(newNonce);
string expireStr = new ASCIIEncoding().GetString(decodedBytes);
expireTime = DateTime.Parse(expireStr);
}
catch (FormatException e) {
return false;
}
return (DateTime.Now <= expireTime);
}
protected virtual bool GetUserByName (HttpApplication app, string username,
out string password, out string[] roles)
{
password = String.Empty;
roles = new string[0];
string userFileName = app.Request.MapPath (ConfigurationSettings.AppSettings ["Digest.Users"]);
if (userFileName == null || !File.Exists (userFileName))
return false;
XmlDocument userDoc = new XmlDocument ();
userDoc.Load (userFileName);
string xPath = String.Format ("/users/user[@name='{0}']", username);
XmlNode user = userDoc.SelectSingleNode (xPath);
if (user == null)
return false;
password = user.Attributes ["password"].Value;
XmlNodeList roleNodes = user.SelectNodes ("role");
roles = new string [roleNodes.Count];
int i = 0;
foreach (XmlNode xn in roleNodes)
roles [i++] = xn.Attributes ["name"].Value;
return true;
}
protected override bool AcceptCredentials (HttpApplication app, string authentication)
{
// digest
ListDictionary reqInfo = new ListDictionary ();
string[] elems = authentication.Split( new char[] {','});
foreach (string elem in elems) {
// form key="value"
string[] parts = elem.Split (new char[] {'='}, 2);
string key = parts [0].Trim (new char[] {' ','\"'});
string val = parts [1].Trim (new char[] {' ','\"'});
reqInfo.Add (key,val);
}
string username = (string) reqInfo ["username"];
string password;
string[] roles;
if (!GetUserByName (app, username, out password, out roles))
return false;
string realm = ConfigurationSettings.AppSettings ["Digest.Realm"];
// calculate the Digest hashes
// A1 = unq(username-value) ":" unq(realm-value) ":" passwd
string A1 = String.Format ("{0}:{1}:{2}", username, realm, password);
// H(A1) = MD5(A1)
string HA1 = GetMD5HashBinHex (A1);
// A2 = Method ":" digest-uri-value
string A2 = String.Format ("{0}:{1}", app.Request.HttpMethod, (string)reqInfo["uri"]);
// H(A2)
string HA2 = GetMD5HashBinHex(A2);
// KD(secret, data) = H(concat(secret, ":", data))
// if qop == auth:
// request-digest = <"> < KD ( H(A1), unq(nonce-value)
// ":" nc-value
// ":" unq(cnonce-value)
// ":" unq(qop-value)
// ":" H(A2)
// ) <">
// if qop is missing,
// request-digest = <"> < KD ( H(A1), unq(nonce-value) ":" H(A2) ) > <">
string unhashedDigest;
if (reqInfo["qop"] != null) {
unhashedDigest = String.Format("{0}:{1}:{2}:{3}:{4}:{5}",
HA1,
(string)reqInfo["nonce"],
(string)reqInfo["nc"],
(string)reqInfo["cnonce"],
(string)reqInfo["qop"],
HA2);
}
else {
unhashedDigest = String.Format("{0}:{1}:{2}",
HA1,
(string)reqInfo["nonce"],
HA2);
}
string hashedDigest = GetMD5HashBinHex (unhashedDigest);
bool isNonceStale = !IsValidNonce((string)reqInfo["nonce"]);
app.Context.Items["staleNonce"] = isNonceStale;
bool result = (((string)reqInfo["response"] == hashedDigest) && (!isNonceStale));
if (result) {
IIdentity id = new GenericIdentity (username, AuthenticationMethod);
app.Context.User = new GenericPrincipal (id, roles);
}
return result;
}
#region Event Handlers
public override void OnEndRequest(object source, EventArgs eventArgs)
{
// We add the WWW-Authenticate header here, so if an authorization
// fails elsewhere than in this module, we can still request authentication
// from the client.
HttpApplication app = (HttpApplication) source;
if (app.Response.StatusCode != 401 || !AuthenticationRequired)
return;
string realm = ConfigurationSettings.AppSettings ["Digest.Realm"];
string nonce = GetCurrentNonce ();
bool isNonceStale = false;
object staleObj = app.Context.Items ["staleNonce"];
if (staleObj != null)
isNonceStale = (bool)staleObj;
StringBuilder challenge = new StringBuilder ("Digest realm=\"");
challenge.Append(realm);
challenge.Append("\"");
challenge.Append(", nonce=\"");
challenge.Append(nonce);
challenge.Append("\"");
challenge.Append(", opaque=\"0000000000000000\"");
challenge.Append(", stale=");
challenge.Append(isNonceStale ? "true" : "false");
challenge.Append(", algorithm=MD5");
challenge.Append(", qop=\"auth\"");
app.Response.AppendHeader("WWW-Authenticate", challenge.ToString());
app.Response.StatusCode = 401;
}
#endregion
private string GetMD5HashBinHex (string toBeHashed)
{
MD5 hash = MD5.Create ();
byte[] result = hash.ComputeHash (Encoding.ASCII.GetBytes (toBeHashed));
StringBuilder sb = new StringBuilder ();
foreach (byte b in result)
sb.Append (b.ToString ("x2"));
return sb.ToString ();
}
protected virtual string GetCurrentNonce ()
{
DateTime nonceTime = DateTime.Now.AddSeconds (nonceLifetime);
byte[] expireBytes = Encoding.ASCII.GetBytes (nonceTime.ToString ("G"));
string nonce = Convert.ToBase64String (expireBytes);
// nonce can't end in '=', so trim them from the end
nonce = nonce.TrimEnd (trim);
return nonce;
}
}
}
|