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 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
|
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#if defined(USE_SSL)
#include "resip/stack/ssl/TlsConnection.hxx"
#include "resip/stack/ssl/TlsTransport.hxx"
#include "resip/stack/ssl/Security.hxx"
#include "rutil/Logger.hxx"
#include "resip/stack/Uri.hxx"
#include "rutil/Socket.hxx"
#include <openssl/e_os2.h>
#include <openssl/evp.h>
#include <openssl/crypto.h>
#include <openssl/err.h>
#include <openssl/pem.h>
#include <openssl/pkcs7.h>
#include <openssl/x509v3.h>
#include <openssl/ssl.h>
#endif
using namespace resip;
#define RESIPROCATE_SUBSYSTEM Subsystem::TRANSPORT
inline bool handleOpenSSLErrorQueue(int ret, unsigned long err, const char* op)
{
bool hadReason = false;
while (true)
{
const char* file;
int line;
unsigned long code = ERR_get_error_line(&file,&line);
if ( code == 0 )
{
break;
}
char buf[256];
ERR_error_string_n(code,buf,sizeof(buf));
ErrLog( << buf );
DebugLog( << "Error code = " << code << " file=" << file << " line=" << line );
hadReason = true;
}
ErrLog( << "Got TLS " << op << " error=" << err << " ret=" << ret );
if(!hadReason)
{
WarningLog(<<"no reason found with ERR_get_error_line");
}
return hadReason;
}
TlsConnection::TlsConnection( Transport* transport, const Tuple& tuple,
Socket fd, Security* security,
bool server, Data domain, SecurityTypes::SSLType sslType ,
Compression &compression) :
Connection(transport,tuple, fd, compression, server),
mServer(server),
mSecurity(security),
mSslType( sslType ),
mDomain(domain)
{
#if defined(USE_SSL)
InfoLog (<< "Creating TLS connection for domain "
<< mDomain
<< " " << tuple
<< " on " << fd);
mSsl = NULL;
mBio= NULL;
if (mServer)
{
DebugLog( << "Trying to form TLS connection - acting as server" );
if ( mDomain.empty() )
{
ErrLog(<< "Tranport was not created with a server domain so can not act as server" );
throw Security::Exception("Trying to act as server but no domain specified",
__FILE__,__LINE__);
}
}
else
{
DebugLog( << "Trying to form TLS connection - acting as client" );
}
resip_assert( mSecurity );
TlsBaseTransport *t = dynamic_cast<TlsBaseTransport*>(transport);
resip_assert(t);
SSL_CTX* ctx=t->getCtx();
resip_assert(ctx);
mSsl = SSL_new(ctx);
resip_assert(mSsl);
resip_assert( mSecurity );
if(mServer)
{
// clear SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE set in SSL_CTX if we are a server
int verify_mode;
switch(t->getClientVerificationMode())
{
case SecurityTypes::None:
verify_mode = SSL_VERIFY_NONE;
DebugLog(<< "Not expecting client certificate" );
break;
case SecurityTypes::Optional:
verify_mode = SSL_VERIFY_PEER;
DebugLog(<< "Optional client certificate mode" );
break;
case SecurityTypes::Mandatory:
verify_mode = SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
DebugLog(<< "Mandatory client certificate mode" );
break;
default:
resip_assert( 0 );
}
SSL_set_verify(mSsl, verify_mode, 0);
}
mBio = BIO_new_socket((int)fd,0/*close flag*/);
if( !mBio )
{
throw Transport::Exception("Failed to create OpenSSL BIO for socket",
__FILE__, __LINE__);
}
SSL_set_bio( mSsl, mBio, mBio );
mTlsState = Initial;
mHandShakeWantsRead = false;
#endif // USE_SSL
}
TlsConnection::~TlsConnection()
{
#if defined(USE_SSL)
ERR_clear_error();
int ret = SSL_shutdown(mSsl);
if(ret < 0)
{
int err = SSL_get_error(mSsl, ret);
switch (err)
{
case SSL_ERROR_WANT_READ:
case SSL_ERROR_WANT_WRITE:
case SSL_ERROR_NONE:
{
// WANT_READ or WANT_WRITE can arise for bi-directional shutdown on
// non-blocking sockets, safe to ignore
StackLog( << "Got TLS shutdown error condition of " << err );
}
break;
default:
ErrLog(<<"Unexpected error in SSL_shutdown");
handleOpenSSLErrorQueue(ret, err, "SSL_shutdown");
}
}
SSL_free(mSsl);
#endif // USE_SSL
}
const char*
TlsConnection::fromState(TlsConnection::TlsState s)
{
switch(s)
{
case Initial: return "Initial"; break;
case Handshaking: return "Handshaking"; break;
case Broken: return "Broken"; break;
case Up: return "Up"; break;
}
return "????";
}
TlsConnection::TlsState
TlsConnection::checkState()
{
#if defined(USE_SSL)
//DebugLog(<<"state is " << fromTlsState(mTlsState));
if (mTlsState == Up || mTlsState == Broken)
{
return mTlsState;
}
int ok=0;
ERR_clear_error();
if (mTlsState != Handshaking)
{
if (mServer)
{
InfoLog( << "TLS handshake starting (Server mode)" );
SSL_set_accept_state(mSsl);
mTlsState = Handshaking;
}
else
{
InfoLog( << "TLS handshake starting (client mode)" );
/* OpenSSL version < 0.9.8f does not support SSL_set_tlsext_host_name() */
#if defined(SSL_set_tlsext_host_name)
DebugLog ( << "TLS SNI extension in Client Hello: " << who().getTargetDomain());
SSL_set_tlsext_host_name(mSsl,who().getTargetDomain().c_str()); // set the SNI hostname
#endif
SSL_set_connect_state(mSsl);
mTlsState = Handshaking;
}
InfoLog( << "TLS connected" );
mTlsState = Handshaking;
}
mHandShakeWantsRead = false;
ok = SSL_do_handshake(mSsl);
if ( ok <= 0 )
{
int err = SSL_get_error(mSsl,ok);
switch (err)
{
case SSL_ERROR_WANT_READ:
StackLog( << "TLS handshake want read" );
mHandShakeWantsRead = true;
return mTlsState;
case SSL_ERROR_WANT_WRITE:
StackLog( << "TLS handshake want write" );
ensureWritable();
return mTlsState;
case SSL_ERROR_ZERO_RETURN:
StackLog( << "TLS connection closed cleanly");
return mTlsState;
case SSL_ERROR_WANT_CONNECT:
StackLog( << "BIO not connected, try later");
return mTlsState;
#if ( OPENSSL_VERSION_NUMBER >= 0x0090702fL )
case SSL_ERROR_WANT_ACCEPT:
StackLog( << "TLS connection want accept" );
return mTlsState;
#endif
case SSL_ERROR_WANT_X509_LOOKUP:
DebugLog( << "Try later / SSL_ERROR_WANT_X509_LOOKUP");
return mTlsState;
default:
if(err == SSL_ERROR_SYSCALL)
{
int e = getErrno();
switch(e)
{
case EINTR:
case EAGAIN:
#if EAGAIN != EWOULDBLOCK
case EWOULDBLOCK: // Treat EGAIN and EWOULDBLOCK as the same: http://stackoverflow.com/questions/7003234/which-systems-define-eagain-and-ewouldblock-as-different-values
#endif
StackLog( << "try later");
return mTlsState;
}
ErrLog( << "socket error " << e);
Transport::error(e);
if(e == 0)
{
TlsBaseTransport *t = dynamic_cast<TlsBaseTransport*>(transport());
resip_assert(t);
if(mServer && t->getClientVerificationMode() != SecurityTypes::None)
{
DebugLog(<<"client may have disconnected to prompt for user certificate, because it can't supply a certificate (verification mode == " << (t->getClientVerificationMode() == SecurityTypes::Mandatory?"Mandatory":"Optional") << " for this transport) or because it does not support using client certificates over WebSockets");
}
}
}
else if (err == SSL_ERROR_SSL)
{
mFailureReason = TransportFailure::CertValidationFailure;
WarningLog(<<"SSL cipher or certificate failure SSL_ERROR_SSL");
if(SSL_get_peer_certificate(mSsl))
{
DebugLog(<<"a certificate was received from the peer");
int verifyErrorCode = SSL_get_verify_result(mSsl);
switch(verifyErrorCode)
{
case X509_V_OK:
DebugLog(<<"peer supplied a ceritifcate, but it has not been checked or it was checked successfully");
break;
default:
ErrLog(<<"peer certificate validation failure: " << X509_verify_cert_error_string(verifyErrorCode));
DebugLog(<<"additional validation checks may have failed but only one is ever logged - please check peer certificate carefully");
break;
}
}
else
{
DebugLog(<<"protocol did not reach certificate exchange phase, peer does not have a certificate or the certificate was not accepted");
if(mServer)
{
TlsBaseTransport *t = dynamic_cast<TlsBaseTransport*>(transport());
resip_assert(t);
if(t->getClientVerificationMode() == SecurityTypes::Mandatory)
{
ErrLog(<<"Mandatory client certificate verification required, protocol failed, client did not send a certificate or it was not valid");
}
}
else
{
ErrLog(<<"Server did not present any certificiate to us, certificate invalid or protocol did not reach certificate exchange");
}
}
}
else
{
DebugLog(<<"unrecognised/unhandled SSL_get_error result: " << err);
}
ErrLog( << "TLS handshake failed ");
handleOpenSSLErrorQueue(ok, err, "SSL_do_handshake");
mBio = NULL;
mTlsState = Broken;
return mTlsState;
}
}
else // ok > 1
{
InfoLog( << "TLS connected" );
}
// force peer name to get checked and perhaps cert loaded
computePeerName();
//post-connection verification: check that certificate name matches domain name
if (!mServer)
{
bool matches = false;
for(std::list<BaseSecurity::PeerName>::iterator it = mPeerNames.begin(); it != mPeerNames.end(); it++)
{
if(BaseSecurity::matchHostName(it->mName, who().getTargetDomain()))
{
matches=true;
break;
}
}
if(!matches)
{
mTlsState = Broken;
mBio = NULL;
ErrLog (<< "Certificate name mismatch: trying to connect to <"
<< who().getTargetDomain()
<< "> remote cert domain(s) are <"
<< getPeerNamesData() << ">" );
mFailureReason = TransportFailure::CertNameMismatch;
return mTlsState;
}
}
InfoLog( << "TLS handshake done for peer " << getPeerNamesData());
mTlsState = Up;
if (!mOutstandingSends.empty())
{
ensureWritable();
}
#endif // USE_SSL
return mTlsState;
}
int
TlsConnection::read(char* buf, int count )
{
#if defined(USE_SSL)
resip_assert( mSsl );
resip_assert( buf );
switch(checkState())
{
case Broken:
return -1;
break;
case Up:
break;
default:
return 0;
break;
}
if (!mBio)
{
DebugLog( << "Got TLS read bad bio " );
return 0;
}
if ( !isGood() )
{
return -1;
}
int bytesRead = SSL_read(mSsl,buf,count);
//StackLog(<< "SSL_read returned " << bytesRead << " bytes [" << Data(Data::Borrow, buf, (bytesRead > 0)?(bytesRead):(0)) << "]");
if (bytesRead > 0)
{
int bytesPending = SSL_pending(mSsl);
if (bytesPending > 0)
{
char* buffer = getWriteBufferForExtraBytes(bytesPending);
if (buffer)
{
//StackLog(<< "reading remaining buffered bytes");
bytesPending = SSL_read(mSsl, buffer, bytesPending);
//StackLog(<< "SSL_read returned " << bytesPending << " bytes [" << Data(Data::Borrow, buffer, (bytesPending > 0)?(bytesPending):(0)) << "]");
if (bytesPending > 0)
{
bytesRead += bytesPending;
}
else
{
// This puts the error return code into bytesRead to
// be used in the conditional block later in this method.
bytesRead = bytesPending;
}
}
else
{
resip_assert(0);
}
}
else if (bytesPending < 0)
{
int err = SSL_get_error(mSsl, bytesPending);
handleOpenSSLErrorQueue(bytesPending, err, "SSL_pending");
return -1;
}
}
if (bytesRead <= 0)
{
int err = SSL_get_error(mSsl,bytesRead);
switch (err)
{
case SSL_ERROR_WANT_READ:
case SSL_ERROR_WANT_WRITE:
case SSL_ERROR_NONE:
{
StackLog( << "Got TLS read got condition of " << err );
return 0;
}
break;
case SSL_ERROR_ZERO_RETURN:
{
DebugLog( << "Got SSL_ERROR_ZERO_RETURN (TLS shutdown by peer)");
return -1;
}
break;
default:
{
handleOpenSSLErrorQueue(bytesRead, err, "SSL_read");
if(err == 5)
{
WarningLog(<<"err=5 sometimes indicates that intermediate certificates may be missing from local PEM file");
}
return -1;
}
break;
}
resip_assert(0);
}
StackLog(<<"SSL bytesRead="<<bytesRead);
return bytesRead;
#endif // USE_SSL
return -1;
}
bool
TlsConnection::transportWrite()
{
switch(mTlsState)
{
case Handshaking:
case Initial:
checkState();
if (mTlsState == Handshaking)
{
DebugLog(<< "Transportwrite--Handshaking--remove from write: " << mHandShakeWantsRead);
return mHandShakeWantsRead;
}
else
{
DebugLog(<< "Transportwrite--Handshake complete, in " << fromState(mTlsState) << " calling write");
return false;
}
case Up:
case Broken:
DebugLog(<< "Transportwrite--" << fromState(mTlsState) << " fall through to write");
return false;
}
resip_assert(0);
return false;
}
int
TlsConnection::write( const char* buf, int count )
{
#if defined(USE_SSL)
resip_assert( mSsl );
resip_assert( buf );
int ret;
switch(checkState())
{
case Broken:
return -1;
break;
case Up:
break;
default:
DebugLog( << "Tried to Tls write - but connection is not Up" );
return 0;
break;
}
if (!mBio)
{
DebugLog( << "Got TLS write bad bio " );
return 0;
}
ret = SSL_write(mSsl,(const char*)buf,count);
if (ret < 0 )
{
int err = SSL_get_error(mSsl,ret);
switch (err)
{
case SSL_ERROR_WANT_READ:
case SSL_ERROR_WANT_WRITE:
case SSL_ERROR_NONE:
{
StackLog( << "Got TLS write got condition of " << err );
return 0;
}
break;
case SSL_ERROR_ZERO_RETURN:
{
DebugLog( << "Got SSL_ERROR_ZERO_RETURN (TLS shutdown by peer)");
return -1;
}
break;
default:
{
handleOpenSSLErrorQueue(ret, err, "SSL_write");
return -1;
}
break;
}
}
Data monkey(Data::Borrow, buf, count);
StackLog( << "Did TLS write " << ret << " " << count << " " << "[[" << monkey << "]]" );
return ret;
#endif // USE_SSL
return -1;
}
bool
TlsConnection::hasDataToRead() // has data that can be read
{
#if defined(USE_SSL)
//hack (for now)
if(mTlsState == Initial)
return false;
if (checkState() != Up)
{
return false;
}
int p = SSL_pending(mSsl);
//DebugLog(<<"hasDataToRead(): " <<p);
return (p>0);
#else // USE_SSL
return false;
#endif
}
bool
TlsConnection::isGood() // has data that can be read
{
#if defined(USE_SSL)
if ( mBio == 0 )
{
return false;
}
int mode = SSL_get_shutdown(mSsl);
if ( mode < 0 )
{
int err = SSL_get_error(mSsl, mode);
handleOpenSSLErrorQueue(mode, err, "SSL_get_shutdown");
return false;
}
if ( mode != 0 )
{
return false;
}
#endif
return true;
}
bool
TlsConnection::isWritable()
{
#if defined(USE_SSL)
switch(mTlsState)
{
case Handshaking:
return mHandShakeWantsRead ? false : true;
case Initial:
case Up:
return isGood();
default:
return false;
}
//dragos -- to remove
DebugLog( << "Current state: " << fromState(mTlsState));
//end dragos
#endif
return false;
}
void TlsConnection::getPeerNames(std::list<Data> &peerNames) const
{
for(std::list<BaseSecurity::PeerName>::const_iterator it = mPeerNames.begin(); it != mPeerNames.end(); it++)
{
peerNames.push_back(it->mName);
}
}
Data
TlsConnection::getPeerNamesData() const
{
Data peerNamesString;
for(std::list<BaseSecurity::PeerName>::const_iterator it = mPeerNames.begin(); it != mPeerNames.end(); it++)
{
if(it == mPeerNames.begin())
{
peerNamesString += it->mName;
}
else
{
peerNamesString += ", " + it->mName;
}
}
return peerNamesString;
}
void
TlsConnection::computePeerName()
{
#if defined(USE_SSL)
Data commonName;
resip_assert(mSsl);
if (!mBio)
{
ErrLog( << "bad bio" );
return;
}
// print session infor
const SSL_CIPHER *ciph;
ciph=SSL_get_current_cipher(mSsl);
InfoLog( << "TLS sessions set up with "
<< SSL_get_version(mSsl) << " "
<< SSL_CIPHER_get_version(ciph) << " "
<< SSL_CIPHER_get_name(ciph) << " " );
// get the certificate if other side has one
X509* cert = SSL_get_peer_certificate(mSsl);
if ( !cert )
{
DebugLog(<< "No peer certificate in TLS connection" );
return;
}
// check that this certificate is valid
if (X509_V_OK != SSL_get_verify_result(mSsl))
{
DebugLog(<< "Peer certificate in TLS connection is not valid" );
X509_free(cert); cert=NULL;
return;
}
TlsBaseTransport *t = dynamic_cast<TlsBaseTransport*>(mTransport);
resip_assert(t);
mPeerNames.clear();
BaseSecurity::getCertNames(cert, mPeerNames,
t->isUseEmailAsSIP());
if(mPeerNames.empty())
{
ErrLog(<< "Invalid certificate: no subjectAltName/CommonName found");
return;
}
if(!mServer)
{
// add the certificate to the Security store
unsigned char* buf = NULL;
int len = i2d_X509( cert, &buf );
Data derCert( buf, len );
for(std::list<BaseSecurity::PeerName>::iterator it = mPeerNames.begin(); it != mPeerNames.end(); it++)
{
if ( !mSecurity->hasDomainCert( it->mName ) )
{
mSecurity->addDomainCertDER(it->mName,derCert);
}
}
OPENSSL_free(buf); buf=NULL;
}
X509_free(cert); cert=NULL;
#endif // USE_SSL
}
/* ====================================================================
* The Vovida Software License, Version 1.0
*
* Copyright (c) 2000-2005 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/>.
*
*/
|