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 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
|
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include <iostream>
#if defined(HAVE_SYS_SOCKIO_H)
#include <sys/sockio.h>
#endif
#include "rutil/Socket.hxx"
#include "rutil/DnsUtil.hxx"
#include "rutil/Logger.hxx"
#include "rutil/ParseBuffer.hxx"
#include "resip/stack/ConnectionTerminated.hxx"
#include "resip/stack/KeepAlivePong.hxx"
#include "resip/stack/Transport.hxx"
#include "resip/stack/SipMessage.hxx"
#include "resip/stack/TransportFailure.hxx"
#include "resip/stack/Helper.hxx"
#include "resip/stack/SendData.hxx"
#include "rutil/WinLeakCheck.hxx"
using namespace resip;
using namespace std;
#define RESIPROCATE_SUBSYSTEM Subsystem::TRANSPORT
Transport::Exception::Exception(const Data& msg, const Data& file, const int line) :
BaseException(msg,file,line)
{
}
Transport::Transport(Fifo<TransactionMessage>& rxFifo,
const GenericIPAddress& address,
const Data& tlsDomain,
AfterSocketCreationFuncPtr socketFunc,
Compression &compression) :
mTuple(address),
mCongestionManager(0),
mStateMachineFifo(rxFifo, 8),
mShuttingDown(false),
mTlsDomain(tlsDomain),
mSocketFunc(socketFunc),
mCompression(compression),
mTransportFlags(0)
{
#ifdef USE_NETNS
// Needs to be implemented for NETNS
resip_assert(0);
#endif
mInterface = Tuple::inet_ntop(mTuple);
}
Transport::Transport(Fifo<TransactionMessage>& rxFifo,
int portNum,
IpVersion version,
const Data& intfc,
const Data& tlsDomain,
AfterSocketCreationFuncPtr socketFunc,
Compression &compression,
unsigned transportFlags,
const Data& netNs) :
mInterface(intfc),
mTuple(intfc, portNum, version, UNKNOWN_TRANSPORT, Data::Empty, netNs),
mCongestionManager(0),
mStateMachineFifo(rxFifo,8),
mShuttingDown(false),
mTlsDomain(tlsDomain),
mSocketFunc(socketFunc),
mCompression(compression),
mTransportFlags(transportFlags)
{
}
Transport::~Transport()
{
}
void
Transport::error(int e)
{
switch (e)
{
case EAGAIN:
//InfoLog (<< "No data ready to read" << strerror(e));
break;
case EINTR:
InfoLog (<< "The call was interrupted by a signal before any data was read : " << strerror(e));
break;
case EIO:
InfoLog (<< "I/O error : " << strerror(e));
break;
case EBADF:
InfoLog (<< "fd is not a valid file descriptor or is not open for reading : " << strerror(e));
break;
case EINVAL:
InfoLog (<< "fd is attached to an object which is unsuitable for reading : " << strerror(e));
break;
case EFAULT:
InfoLog (<< "buf is outside your accessible address space : " << strerror(e));
break;
#if defined(WIN32)
case WSAENETDOWN:
InfoLog (<<" The network subsystem has failed. ");
break;
case WSAEFAULT:
InfoLog (<<" The buf or from parameters are not part of the user address space, "
"or the fromlen parameter is too small to accommodate the peer address. ");
break;
case WSAEINTR:
InfoLog (<<" The (blocking) call was canceled through WSACancelBlockingCall. ");
break;
case WSAEINPROGRESS:
InfoLog (<<" A blocking Windows Sockets 1.1 call is in progress, or the "
"service provider is still processing a callback function. ");
break;
case WSAEINVAL:
InfoLog (<<" The socket has not been bound with bind, or an unknown flag was specified, "
"or MSG_OOB was specified for a socket with SO_OOBINLINE enabled, "
"or (for byte stream-style sockets only) len was zero or negative. ");
break;
case WSAEISCONN :
InfoLog (<<"The socket is connected. This function is not permitted with a connected socket, "
"whether the socket is connection-oriented or connectionless. ");
break;
case WSAENETRESET:
InfoLog (<<" The connection has been broken due to the keep-alive activity "
"detecting a failure while the operation was in progress. ");
break;
case WSAENOTSOCK :
InfoLog (<<"The descriptor is not a socket. ");
break;
case WSAEOPNOTSUPP:
InfoLog (<<" MSG_OOB was specified, but the socket is not stream-style such as type "
"SOCK_STREAM, OOB data is not supported in the communication domain associated with this socket, "
"or the socket is unidirectional and supports only send operations. ");
break;
case WSAESHUTDOWN:
InfoLog (<<"The socket has been shut down; it is not possible to recvfrom on a socket after "
"shutdown has been invoked with how set to SD_RECEIVE or SD_BOTH. ");
break;
case WSAEMSGSIZE:
InfoLog (<<" The message was too large to fit into the specified buffer and was truncated. ");
break;
case WSAETIMEDOUT:
InfoLog (<<" The connection has been dropped, because of a network failure or because the "
"system on the other end went down without notice. ");
break;
case WSAECONNRESET :
InfoLog (<<"Connection reset ");
break;
case WSAEWOULDBLOCK:
DebugLog (<<"Would Block ");
break;
case WSAEHOSTUNREACH:
InfoLog (<<"A socket operation was attempted to an unreachable host ");
break;
case WSANOTINITIALISED:
InfoLog (<<"Either the application has not called WSAStartup or WSAStartup failed. "
"The application may be accessing a socket that the current active task does not own (that is, trying to share a socket between tasks),"
"or WSACleanup has been called too many times. ");
break;
case WSAEACCES:
InfoLog (<<"An attempt was made to access a socket in a way forbidden by its access permissions ");
break;
case WSAENOBUFS:
InfoLog (<<"An operation on a socket could not be performed because the system lacked sufficient "
"buffer space or because a queue was full");
break;
case WSAENOTCONN:
InfoLog (<<"A request to send or receive data was disallowed because the socket is not connected "
"and (when sending on a datagram socket using sendto) no address was supplied");
break;
case WSAECONNABORTED:
InfoLog (<<"An established connection was aborted by the software in your host computer, possibly "
"due to a data transmission time-out or protocol error");
break;
case WSAEADDRNOTAVAIL:
InfoLog (<<"The requested address is not valid in its context. This normally results from an attempt to "
"bind to an address that is not valid for the local computer");
break;
case WSAEAFNOSUPPORT:
InfoLog (<<"An address incompatible with the requested protocol was used");
break;
case WSAEDESTADDRREQ:
InfoLog (<<"A required address was omitted from an operation on a socket");
break;
case WSAENETUNREACH:
InfoLog (<<"A socket operation was attempted to an unreachable network");
break;
#endif
default:
InfoLog (<< "Some other error (" << e << "): " << strerror(e));
break;
}
}
void
Transport::flowTerminated(const Tuple& flow)
{
mStateMachineFifo.add(new ConnectionTerminated(flow));
}
void
Transport::keepAlivePong(const Tuple& flow)
{
mStateMachineFifo.add(new KeepAlivePong(flow));
}
void
Transport::fail(const Data& tid, TransportFailure::FailureReason reason, int subCode)
{
if (!tid.empty())
{
mStateMachineFifo.add(new TransportFailure(tid, reason, subCode));
}
}
void
Transport::setTcpConnectState(const Data& tid, TcpConnectState::State state)
{
if (!tid.empty())
{
mStateMachineFifo.add(new TcpConnectState(tid, state));
}
}
std::auto_ptr<SendData>
Transport::makeSendData( const Tuple& dest, const Data& d, const Data& tid, const Data &sigcompId)
{
resip_assert(dest.getPort() != -1);
std::auto_ptr<SendData> data(new SendData(dest, d, tid, sigcompId));
return data;
}
void
Transport::makeFailedResponse(const SipMessage& msg,
int responseCode,
const char * warning)
{
if (msg.isResponse()) return;
const Tuple& dest = msg.getSource();
std::auto_ptr<SipMessage> errMsg(Helper::makeResponse(msg,
responseCode,
warning ? warning : "Original request had no Vias"));
// make send data here w/ blank tid and blast it out.
// encode message
Data encoded;
encoded.clear();
DataStream encodeStream(encoded);
errMsg->encode(encodeStream);
encodeStream.flush();
resip_assert(!encoded.empty());
InfoLog(<<"Sending response directly to " << dest << " : " << errMsg->brief() );
// Calculate compartment ID for outbound message
Data remoteSigcompId;
setRemoteSigcompId(*errMsg,remoteSigcompId);
send(std::auto_ptr<SendData>(makeSendData(dest, encoded, Data::Empty, remoteSigcompId)));
}
std::auto_ptr<SendData>
Transport::make503(SipMessage& msg, UInt16 retryAfter)
{
std::auto_ptr<SendData> result;
if (msg.isResponse()) return result;
try
{
if(msg.method()==ACK)
{
return result;
}
}
catch(BaseException&)
{
// .bwc. Parse failed on the start-line. Stop.
return result;
}
const Tuple& dest = msg.getSource();
// Calculate compartment ID for outbound message
Data remoteSigcompId;
setRemoteSigcompId(msg,remoteSigcompId);
// .bwc. msg is completely unverified. Handle with caution.
result=makeSendData(dest, Data::Empty, Data::Empty, remoteSigcompId);
static const Data retryAfterHeader("Retry-After: ");
Data value(retryAfter);
Helper::makeRawResponse(result->data, msg, 503, retryAfterHeader+value+"\r\n");
return result;
}
std::auto_ptr<SendData>
Transport::make100(SipMessage& msg)
{
std::auto_ptr<SendData> result;
if (msg.isResponse()) return result;
try
{
if(msg.method()==ACK)
{
return result;
}
}
catch(BaseException&)
{
// .bwc. Parse failed on the start-line. Stop.
return result;
}
const Tuple& dest = msg.getSource();
// Calculate compartment ID for outbound message
Data remoteSigcompId;
setRemoteSigcompId(msg,remoteSigcompId);
// .bwc. msg is completely unverified. Handle with caution.
result=makeSendData(dest, Data::Empty, Data::Empty, remoteSigcompId);
Helper::makeRawResponse(result->data, msg, 100);
return result;
}
void
Transport::setRemoteSigcompId(SipMessage& msg, Data& remoteSigcompId)
{
if (mCompression.isEnabled())
{
try
{
const Via &topVia(msg.const_header(h_Vias).front());
if(topVia.exists(p_comp) && topVia.param(p_comp) == "sigcomp")
{
if (topVia.exists(p_sigcompId))
{
remoteSigcompId = topVia.param(p_sigcompId);
}
else
{
// XXX rohc-sigcomp-sip-03 says "sent-by",
// but this should probably be "received" if present,
// and "sent-by" otherwise.
// XXX Also, the spec is ambiguous about whether
// to include the port in this identifier.
remoteSigcompId = topVia.sentHost();
}
}
}
catch(BaseException&)
{
// ?bwc? Couldn't grab sigcomp compartment id. We don't even know if
// the initial request was using sigcomp or not.
// What should we do here?
}
}
}
void
Transport::stampReceived(SipMessage* message)
{
// set the received= and rport= parameters in the message if necessary !jf!
if (message->isRequest() && message->exists(h_Vias) && !message->const_header(h_Vias).empty())
{
const Tuple& tuple = message->getSource();
Data received = Tuple::inet_ntop(tuple);
if(message->const_header(h_Vias).front().sentHost() != received) // only add if received address is different from sent-by in Via
{
message->header(h_Vias).front().param(p_received) = received;
}
//message->header(h_Vias).front().param(p_received) = Tuple::inet_ntop(tuple);
if (message->const_header(h_Vias).front().exists(p_rport))
{
message->header(h_Vias).front().param(p_rport).port() = tuple.getPort();
}
}
DebugLog (<< "incoming from: " << message->getSource());
StackLog (<< endl << endl << *message);
}
bool
Transport::basicCheck(const SipMessage& msg)
{
resip::Data reason;
if (msg.isExternal())
{
try
{
if (!Helper::validateMessage(msg,&reason))
{
InfoLog(<<"Message Failed basicCheck :" << msg.brief());
if (msg.isRequest() && msg.method()!=ACK )
{
// this is VERY low-level b/c we don't have a transaction...
// here we make a response to warn the offending party.
makeFailedResponse(msg,400,reason.c_str());
}
return false;
}
else if (mShuttingDown && msg.isRequest() && msg.method() != ACK)
{
InfoLog (<< "Server has been shutdown, reject message with 503");
// this is VERY low-level b/c we don't have a transaction...
// here we make a response to warn the offending party.
makeFailedResponse(msg, 503, "Server has been shutdown");
return false;
}
}
catch (BaseException& e)
{
InfoLog (<< "Cannot make failure response to badly constructed message: " << e);
return false;
}
}
return true;
}
void
Transport::callSocketFunc(Socket sock)
{
if (mSocketFunc)
{
mSocketFunc(sock, transport(), __FILE__, __LINE__);
}
}
void
Transport::pushRxMsgUp(SipMessage* message)
{
SipMessageLoggingHandler* handler = getSipMessageLoggingHandler();
if(handler)
{
handler->inboundMessage(message->getSource(), message->getReceivedTransportTuple(), *message);
}
mStateMachineFifo.add(message);
}
bool
Transport::operator==(const Transport& rhs) const
{
return ( ( mTuple.isV4() == rhs.isV4()) &&
( port() == rhs.port()) &&
( memcmp(&boundInterface(),&rhs.boundInterface(),mTuple.length()) == 0) );
}
EncodeStream&
resip::operator<<(EncodeStream& strm, const resip::Transport& rhs)
{
strm << "Transport: " << rhs.mTuple;
if (!rhs.mInterface.empty()) strm << " on " << rhs.mInterface;
return strm;
}
/* ====================================================================
* The Vovida Software License, Version 1.0
*
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved.
*
* 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 names "VOCAL", "Vovida Open Communication Application Library",
* and "Vovida Open Communication Application Library (VOCAL)" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact vocal@vovida.org.
*
* 4. Products derived from this software may not be called "VOCAL", nor
* may "VOCAL" appear in their name, without prior written
* permission of Vovida Networks, Inc.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
* IN EXCESS OF $1,000, NOR FOR ANY 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.
*
* ====================================================================
*
* This software consists of voluntary contributions made by Vovida
* Networks, Inc. and many individuals on behalf of Vovida Networks,
* Inc. For more information on Vovida Networks, Inc., please see
* <http://www.vovida.org/>.
*
* vi: set shiftwidth=3 expandtab:
*/
|