Mercurial > prosody-hg
annotate core/s2smanager.lua @ 157:f4e9b6ec34b0
Hack until we get SRV resolving
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 24 Oct 2008 14:59:04 +0100 |
| parents | 4c0dcd245d34 |
| children | 8c1a8a3e32e8 |
| rev | line source |
|---|---|
| 148 | 1 |
| 2 local hosts = hosts; | |
| 3 local sessions = sessions; | |
| 4 local socket = require "socket"; | |
| 5 local format = string.format; | |
| 6 local tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber | |
| 7 = tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber; | |
| 8 | |
| 9 local connlisteners_get = require "net.connlisteners".get; | |
| 10 local wraptlsclient = require "net.server".wraptlsclient; | |
| 11 local modulemanager = require "core.modulemanager"; | |
| 12 | |
| 13 local uuid_gen = require "util.uuid".generate; | |
| 14 | |
| 15 local logger_init = require "util.logger".init; | |
| 16 | |
| 17 local log = logger_init("s2smanager"); | |
| 18 | |
| 19 local md5_hash = require "util.hashes".md5; | |
| 20 | |
| 21 local dialback_secret = "This is very secret!!! Ha!"; | |
| 22 | |
|
157
f4e9b6ec34b0
Hack until we get SRV resolving
Matthew Wild <mwild1@gmail.com>
parents:
148
diff
changeset
|
23 local srvmap = { ["gmail.com"] = "talk.google.com", ["identi.ca"] = "longlance.controlezvous.ca" }; |
|
f4e9b6ec34b0
Hack until we get SRV resolving
Matthew Wild <mwild1@gmail.com>
parents:
148
diff
changeset
|
24 |
| 148 | 25 module "s2smanager" |
| 26 | |
| 27 function connect_host(from_host, to_host) | |
| 28 end | |
| 29 | |
| 30 function send_to_host(from_host, to_host, data) | |
| 31 if hosts[to_host] then | |
| 32 -- Write to connection | |
| 33 hosts[to_host].send(data); | |
| 34 log("debug", "stanza sent over s2s"); | |
| 35 else | |
| 36 log("debug", "opening a new outgoing connection for this stanza"); | |
| 37 local host_session = new_outgoing(from_host, to_host); | |
| 38 -- Store in buffer | |
| 39 host_session.sendq = { data }; | |
| 40 end | |
| 41 end | |
| 42 | |
| 43 function disconnect_host(host) | |
| 44 | |
| 45 end | |
| 46 | |
| 47 local open_sessions = 0; | |
| 48 | |
| 49 function new_incoming(conn) | |
| 50 local session = { conn = conn, priority = 0, type = "s2sin_unauthed", direction = "incoming" }; | |
| 51 if true then | |
| 52 session.trace = newproxy(true); | |
| 53 getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; print("s2s session got collected, now "..open_sessions.." s2s sessions are allocated") end; | |
| 54 end | |
| 55 open_sessions = open_sessions + 1; | |
| 56 local w = conn.write; | |
| 57 session.send = function (t) w(tostring(t)); end | |
| 58 return session; | |
| 59 end | |
| 60 | |
| 61 function new_outgoing(from_host, to_host) | |
| 62 local host_session = { to_host = to_host, from_host = from_host, notopen = true, type = "s2sout_unauthed", direction = "outgoing" }; | |
| 63 hosts[to_host] = host_session; | |
| 64 | |
| 65 local cl = connlisteners_get("xmppserver"); | |
| 66 | |
| 67 local conn, handler = socket.tcp() | |
| 68 --FIXME: Below parameters (ports/ip) are incorrect (use SRV) | |
|
157
f4e9b6ec34b0
Hack until we get SRV resolving
Matthew Wild <mwild1@gmail.com>
parents:
148
diff
changeset
|
69 to_host = srvmap[to_host] or to_host; |
| 148 | 70 conn:connect(to_host, 5269); |
| 71 conn = wraptlsclient(cl, conn, to_host, 5269, 0, 1, hosts[from_host].ssl_ctx ); | |
| 72 host_session.conn = conn; | |
| 73 | |
| 74 -- Register this outgoing connection so that xmppserver_listener knows about it | |
| 75 -- otherwise it will assume it is a new incoming connection | |
| 76 cl.register_outgoing(conn, host_session); | |
| 77 | |
| 78 do | |
| 79 local conn_name = "s2sout"..tostring(conn):match("[a-f0-9]*$"); | |
| 80 host_session.log = logger_init(conn_name); | |
| 81 end | |
| 82 | |
| 83 local w = conn.write; | |
| 84 host_session.send = function (t) w(tostring(t)); end | |
| 85 | |
| 86 conn.write(format([[<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' from='%s' to='%s' version='1.0'>]], from_host, to_host)); | |
| 87 | |
| 88 return host_session; | |
| 89 end | |
| 90 | |
| 91 function streamopened(session, attr) | |
| 92 session.log("debug", "s2s stream opened"); | |
| 93 local send = session.send; | |
| 94 | |
| 95 session.version = tonumber(attr.version) or 0; | |
| 96 if session.version >= 1.0 and not (attr.to and attr.from) then | |
| 97 print("to: "..tostring(attr.to).." from: "..tostring(attr.from)); | |
| 98 --error(session.to_host.." failed to specify 'to' or 'from' hostname as per RFC"); | |
| 99 log("warn", (session.to_host or "(unknown)").." failed to specify 'to' or 'from' hostname as per RFC"); | |
| 100 end | |
| 101 | |
| 102 if session.direction == "incoming" then | |
| 103 -- Send a reply stream header | |
| 104 | |
| 105 for k,v in pairs(attr) do print("", tostring(k), ":::", tostring(v)); end | |
| 106 | |
| 107 session.to_host = attr.to; | |
| 108 session.from_host = attr.from; | |
| 109 | |
| 110 session.streamid = uuid_gen(); | |
| 111 print(session, session.from_host, "incoming s2s stream opened"); | |
| 112 send("<?xml version='1.0'?>"); | |
| 113 send(format("<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' id='%s' from='%s'>", session.streamid, session.to_host)); | |
| 114 if session.from_host then | |
| 115 -- Need to perform dialback to check identity | |
| 116 print("to: "..tostring(attr.to).." from: "..tostring(attr.from)); | |
| 117 print("Need to do dialback here you know!!"); | |
| 118 end | |
| 119 elseif session.direction == "outgoing" then | |
| 120 -- If we are just using the connection for verifying dialback keys, we won't try and auth it | |
| 121 if not session.dialback_verifying then | |
| 122 -- generate dialback key | |
| 123 if not attr.id then error("stream response did not give us a streamid!!!"); end | |
| 124 session.streamid = attr.id; | |
| 125 session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host); | |
| 126 session.send(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key)); | |
| 127 session.log("info", "sent dialback key on outgoing s2s stream"); | |
| 128 else | |
| 129 mark_connected(session); | |
| 130 end | |
| 131 end | |
| 132 --[[ | |
| 133 local features = {}; | |
| 134 modulemanager.fire_event("stream-features-s2s", session, features); | |
| 135 | |
| 136 send("<stream:features>"); | |
| 137 | |
| 138 for _, feature in ipairs(features) do | |
| 139 send(tostring(feature)); | |
| 140 end | |
| 141 | |
| 142 send("</stream:features>");]] | |
| 143 log("info", "s2s stream opened successfully"); | |
| 144 session.notopen = nil; | |
| 145 end | |
| 146 | |
| 147 function generate_dialback(id, to, from) | |
| 148 return md5_hash(id..to..from..dialback_secret); -- FIXME: See XEP-185 and XEP-220 | |
| 149 end | |
| 150 | |
| 151 function verify_dialback(id, to, from, key) | |
| 152 return key == generate_dialback(id, to, from); | |
| 153 end | |
| 154 | |
| 155 function make_authenticated(session) | |
| 156 if session.type == "s2sout_unauthed" then | |
| 157 session.type = "s2sout"; | |
| 158 elseif session.type == "s2sin_unauthed" then | |
| 159 session.type = "s2sin"; | |
| 160 else | |
| 161 return false; | |
| 162 end | |
| 163 session.log("info", "connection is now authenticated"); | |
| 164 | |
| 165 mark_connected(session); | |
| 166 | |
| 167 return true; | |
| 168 end | |
| 169 | |
| 170 function mark_connected(session) | |
| 171 local sendq, send = session.sendq, session.send; | |
| 172 if sendq then | |
| 173 session.log("debug", "sending queued stanzas across new connection"); | |
| 174 for _, data in ipairs(sendq) do | |
| 175 session.log("debug", "sending: %s", tostring(data)); | |
| 176 send(data); | |
| 177 end | |
| 178 end | |
| 179 end | |
| 180 | |
| 181 return _M; |
