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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
/*
* libjingle
* Copyright 2004--2005, Google Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "talk/xmpp/xmppengineimpl.h"
#include <algorithm>
#include <sstream>
#include <vector>
#include "talk/base/common.h"
#include "talk/xmllite/xmlelement.h"
#include "talk/xmllite/xmlprinter.h"
#include "talk/xmpp/constants.h"
#include "talk/xmpp/saslhandler.h"
#include "talk/xmpp/xmpplogintask.h"
namespace buzz {
XmppEngine* XmppEngine::Create() {
return new XmppEngineImpl();
}
XmppEngineImpl::XmppEngineImpl()
: stanza_parse_handler_(this),
stanza_parser_(&stanza_parse_handler_),
engine_entered_(0),
password_(),
requested_resource_(STR_EMPTY),
tls_option_(buzz::TLS_REQUIRED),
login_task_(new XmppLoginTask(this)),
next_id_(0),
state_(STATE_START),
encrypted_(false),
error_code_(ERROR_NONE),
subcode_(0),
stream_error_(),
raised_reset_(false),
output_handler_(NULL),
session_handler_(NULL),
iq_entries_(new IqEntryVector()),
sasl_handler_(),
output_(new std::stringstream()) {
for (int i = 0; i < HL_COUNT; i+= 1) {
stanza_handlers_[i].reset(new StanzaHandlerVector());
}
// Add XMPP namespaces to XML namespaces stack.
xmlns_stack_.AddXmlns("stream", "http://etherx.jabber.org/streams");
xmlns_stack_.AddXmlns("", "jabber:client");
}
XmppEngineImpl::~XmppEngineImpl() {
DeleteIqCookies();
}
XmppReturnStatus XmppEngineImpl::SetOutputHandler(
XmppOutputHandler* output_handler) {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
output_handler_ = output_handler;
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::SetSessionHandler(
XmppSessionHandler* session_handler) {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
session_handler_ = session_handler;
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::HandleInput(
const char* bytes, size_t len) {
if (state_ < STATE_OPENING || state_ > STATE_OPEN)
return XMPP_RETURN_BADSTATE;
EnterExit ee(this);
// TODO: The return value of the xml parser is not checked.
stanza_parser_.Parse(bytes, len, false);
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::ConnectionClosed(int subcode) {
if (state_ != STATE_CLOSED) {
EnterExit ee(this);
// If told that connection closed and not already closed,
// then connection was unpexectedly dropped.
if (subcode) {
SignalError(ERROR_SOCKET, subcode);
} else {
SignalError(ERROR_CONNECTION_CLOSED, 0); // no subcode
}
}
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::SetTls(TlsOptions use_tls) {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
tls_option_ = use_tls;
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::SetTlsServer(
const std::string& tls_server_hostname,
const std::string& tls_server_domain) {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
tls_server_hostname_ = tls_server_hostname;
tls_server_domain_= tls_server_domain;
return XMPP_RETURN_OK;
}
TlsOptions XmppEngineImpl::GetTls() {
return tls_option_;
}
XmppReturnStatus XmppEngineImpl::SetUser(const Jid& jid) {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
user_jid_ = jid;
return XMPP_RETURN_OK;
}
const Jid& XmppEngineImpl::GetUser() {
return user_jid_;
}
XmppReturnStatus XmppEngineImpl::SetSaslHandler(SaslHandler* sasl_handler) {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
sasl_handler_.reset(sasl_handler);
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::SetRequestedResource(
const std::string& resource) {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
requested_resource_ = resource;
return XMPP_RETURN_OK;
}
const std::string& XmppEngineImpl::GetRequestedResource() {
return requested_resource_;
}
XmppReturnStatus XmppEngineImpl::AddStanzaHandler(
XmppStanzaHandler* stanza_handler,
XmppEngine::HandlerLevel level) {
if (state_ == STATE_CLOSED)
return XMPP_RETURN_BADSTATE;
stanza_handlers_[level]->push_back(stanza_handler);
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::RemoveStanzaHandler(
XmppStanzaHandler* stanza_handler) {
bool found = false;
for (int level = 0; level < HL_COUNT; level += 1) {
StanzaHandlerVector::iterator new_end =
std::remove(stanza_handlers_[level]->begin(),
stanza_handlers_[level]->end(),
stanza_handler);
if (new_end != stanza_handlers_[level]->end()) {
stanza_handlers_[level]->erase(new_end, stanza_handlers_[level]->end());
found = true;
}
}
if (!found)
return XMPP_RETURN_BADARGUMENT;
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::Connect() {
if (state_ != STATE_START)
return XMPP_RETURN_BADSTATE;
EnterExit ee(this);
// get the login task started
state_ = STATE_OPENING;
if (login_task_) {
login_task_->IncomingStanza(NULL, false);
if (login_task_->IsDone())
login_task_.reset();
}
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::SendStanza(const XmlElement* element) {
if (state_ == STATE_CLOSED)
return XMPP_RETURN_BADSTATE;
EnterExit ee(this);
if (login_task_) {
// still handshaking - then outbound stanzas are queued
login_task_->OutgoingStanza(element);
} else {
// handshake done - send straight through
InternalSendStanza(element);
}
return XMPP_RETURN_OK;
}
XmppReturnStatus XmppEngineImpl::SendRaw(const std::string& text) {
if (state_ == STATE_CLOSED || login_task_)
return XMPP_RETURN_BADSTATE;
EnterExit ee(this);
(*output_) << text;
return XMPP_RETURN_OK;
}
std::string XmppEngineImpl::NextId() {
std::stringstream ss;
ss << next_id_++;
return ss.str();
}
XmppReturnStatus XmppEngineImpl::Disconnect() {
if (state_ != STATE_CLOSED) {
EnterExit ee(this);
if (state_ == STATE_OPEN)
*output_ << "</stream:stream>";
state_ = STATE_CLOSED;
}
return XMPP_RETURN_OK;
}
void XmppEngineImpl::IncomingStart(const XmlElement* start) {
if (HasError() || raised_reset_)
return;
if (login_task_) {
// start-stream should go to login task
login_task_->IncomingStanza(start, true);
if (login_task_->IsDone())
login_task_.reset();
}
else {
// if not logging in, it's an error to see a start
SignalError(ERROR_XML, 0);
}
}
void XmppEngineImpl::IncomingStanza(const XmlElement* stanza) {
if (HasError() || raised_reset_)
return;
if (stanza->Name() == QN_STREAM_ERROR) {
// Explicit XMPP stream error
SignalStreamError(stanza);
} else if (login_task_) {
// Handle login handshake
login_task_->IncomingStanza(stanza, false);
if (login_task_->IsDone())
login_task_.reset();
} else if (HandleIqResponse(stanza)) {
// iq is handled by above call
} else {
// give every "peek" handler a shot at all stanzas
for (size_t i = 0; i < stanza_handlers_[HL_PEEK]->size(); i += 1) {
(*stanza_handlers_[HL_PEEK])[i]->HandleStanza(stanza);
}
// give other handlers a shot in precedence order, stopping after handled
for (int level = HL_SINGLE; level <= HL_ALL; level += 1) {
for (size_t i = 0; i < stanza_handlers_[level]->size(); i += 1) {
if ((*stanza_handlers_[level])[i]->HandleStanza(stanza))
return;
}
}
// If nobody wants to handle a stanza then send back an error.
// Only do this for IQ stanzas as messages should probably just be dropped
// and presence stanzas should certainly be dropped.
std::string type = stanza->Attr(QN_TYPE);
if (stanza->Name() == QN_IQ &&
!(type == "error" || type == "result")) {
SendStanzaError(stanza, XSE_FEATURE_NOT_IMPLEMENTED, STR_EMPTY);
}
}
}
void XmppEngineImpl::IncomingEnd(bool isError) {
if (HasError() || raised_reset_)
return;
SignalError(isError ? ERROR_XML : ERROR_DOCUMENT_CLOSED, 0);
}
void XmppEngineImpl::InternalSendStart(const std::string& to) {
std::string hostname = tls_server_hostname_;
if (hostname.empty())
hostname = to;
// If not language is specified, the spec says use *
std::string lang = lang_;
if (lang.length() == 0)
lang = "*";
// send stream-beginning
// note, we put a \r\n at tne end fo the first line to cause non-XMPP
// line-oriented servers (e.g., Apache) to reveal themselves more quickly.
*output_ << "<stream:stream to=\"" << hostname << "\" "
<< "xml:lang=\"" << lang << "\" "
<< "version=\"1.0\" "
<< "xmlns:stream=\"http://etherx.jabber.org/streams\" "
<< "xmlns=\"jabber:client\">\r\n";
}
void XmppEngineImpl::InternalSendStanza(const XmlElement* element) {
// It should really never be necessary to set a FROM attribute on a stanza.
// It is implied by the bind on the stream and if you get it wrong
// (by flipping from/to on a message?) the server will close the stream.
ASSERT(!element->HasAttr(QN_FROM));
XmlPrinter::PrintXml(output_.get(), element, &xmlns_stack_);
}
std::string XmppEngineImpl::ChooseBestSaslMechanism(
const std::vector<std::string>& mechanisms, bool encrypted) {
return sasl_handler_->ChooseBestSaslMechanism(mechanisms, encrypted);
}
SaslMechanism* XmppEngineImpl::GetSaslMechanism(const std::string& name) {
return sasl_handler_->CreateSaslMechanism(name);
}
void XmppEngineImpl::SignalBound(const Jid& fullJid) {
if (state_ == STATE_OPENING) {
bound_jid_ = fullJid;
state_ = STATE_OPEN;
}
}
void XmppEngineImpl::SignalStreamError(const XmlElement* stream_error) {
if (state_ != STATE_CLOSED) {
stream_error_.reset(new XmlElement(*stream_error));
SignalError(ERROR_STREAM, 0);
}
}
void XmppEngineImpl::SignalError(Error error_code, int sub_code) {
if (state_ != STATE_CLOSED) {
error_code_ = error_code;
subcode_ = sub_code;
state_ = STATE_CLOSED;
}
}
bool XmppEngineImpl::HasError() {
return error_code_ != ERROR_NONE;
}
void XmppEngineImpl::StartTls(const std::string& domain) {
if (output_handler_) {
// As substitute for the real (login jid's) domain, we permit
// verifying a tls_server_domain_ instead, if one was passed.
// This allows us to avoid running a proxy that needs to handle
// valuable certificates.
output_handler_->StartTls(
tls_server_domain_.empty() ? domain : tls_server_domain_);
encrypted_ = true;
}
}
XmppEngineImpl::EnterExit::EnterExit(XmppEngineImpl* engine)
: engine_(engine),
state_(engine->state_) {
engine->engine_entered_ += 1;
}
XmppEngineImpl::EnterExit::~EnterExit() {
XmppEngineImpl* engine = engine_;
engine->engine_entered_ -= 1;
bool closing = (engine->state_ != state_ &&
engine->state_ == STATE_CLOSED);
bool flushing = closing || (engine->engine_entered_ == 0);
if (engine->output_handler_ && flushing) {
std::string output = engine->output_->str();
if (output.length() > 0)
engine->output_handler_->WriteOutput(output.c_str(), output.length());
engine->output_->str("");
if (closing) {
engine->output_handler_->CloseConnection();
engine->output_handler_ = 0;
}
}
if (engine->engine_entered_)
return;
if (engine->raised_reset_) {
engine->stanza_parser_.Reset();
engine->raised_reset_ = false;
}
if (engine->session_handler_) {
if (engine->state_ != state_)
engine->session_handler_->OnStateChange(engine->state_);
// Note: Handling of OnStateChange(CLOSED) should allow for the
// deletion of the engine, so no members should be accessed
// after this line.
}
}
} // namespace buzz
|