Software /
code /
prosody
Changeset
1306:802630868d70
Merge with trunk
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Thu, 04 Jun 2009 20:48:23 +0500 |
parents | 1305:37657578ea85 (diff) 1300:954973fd2939 (current diff) |
children | 1307:c9c58aa990bb |
files | |
diffstat | 3 files changed, 36 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/core/sessionmanager.lua Thu Jun 04 15:46:05 2009 +0100 +++ b/core/sessionmanager.lua Thu Jun 04 20:48:23 2009 +0500 @@ -72,7 +72,7 @@ if not next(hosts[session.host].sessions[session.username].sessions) then log("debug", "All resources of %s are now offline", session.username); hosts[session.host].sessions[session.username] = nil; - bare_sessions[session.host..'@'..session.username] = nil; + bare_sessions[session.username..'@'..session.host] = nil; end end
--- a/util/sasl.lua Thu Jun 04 15:46:05 2009 +0100 +++ b/util/sasl.lua Thu Jun 04 20:48:23 2009 +0500 @@ -138,7 +138,6 @@ local object = { mechanism = "DIGEST-MD5", realm = realm, password_handler = password_handler}; - --TODO: something better than math.random would be nice, maybe OpenSSL's random number generator object.nonce = generate_uuid(); object.step = 0; object.nonce_count = {}; @@ -249,7 +248,6 @@ function object.feed(self, message) return "success" end - --TODO: From XEP-0175 "It is RECOMMENDED for the node identifier to be a UUID as specified in RFC 4122 [5]." So util.uuid() should (or have an option to) behave as specified in RFC 4122. object["username"] = generate_uuid() return object end
--- a/util/uuid.lua Thu Jun 04 15:46:05 2009 +0100 +++ b/util/uuid.lua Thu Jun 04 20:48:23 2009 +0500 @@ -7,13 +7,44 @@ -- - local m_random = math.random; local tostring = tostring; +local os_time = os.time; +local os_clock = os.clock; +local sha1 = require "util.hashes".sha1; + module "uuid" -function generate() - return tostring(m_random(0, 99999999)); +local last_uniq_time = 0; +local function uniq_time() + local new_uniq_time = os_time(); + if last_uniq_time >= new_uniq_time then new_uniq_time = last_uniq_time + 1; end + last_uniq_time = new_uniq_time; + return new_uniq_time; +end + +local function new_random(x) + return sha1(x..os_clock()..tostring({}), true); end -return _M; \ No newline at end of file +local buffer = new_random(uniq_time()); +local function _seed(x) + buffer = new_random(buffer..x); +end +local function get_nibbles(n) + if #buffer < n then seed(uniq_time()); end + local r = buffer:sub(0, n); + buffer = buffer:sub(n+1); + return r; +end +local function get_twobits() + return ("%x"):format(get_nibbles(1):byte() % 4 + 8); +end + +function generate() + -- generate RFC 4122 complaint UUIDs (version 4 - random) + return get_nibbles(8).."-"..get_nibbles(4).."-4"..get_nibbles(3).."-"..(get_twobits())..get_nibbles(3).."-"..get_nibbles(12); +end +seed = _seed; + +return _M;