/usr/include/sipxtapi/os/OsSocketCrypto.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | //
// Copyright (C) 2008 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2008 SIPez LLC.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2008 Mutualink, Inc.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
//////////////////////////////////////////////////////////////////////////////
// Author: Sergey Kostanbaev <Sergey DOT Kostanbaev AT sipez DOT com>
#ifdef HAVE_SSL
#ifndef _OsSocketCrypto_h_
#define _OsSocketCrypto_h_
// SYSTEM INCLUDES
#include <assert.h>
// APPLICATION INCLUDES
#include "os/OsSocket.h"
#include "utl/UtlCryptoData.h"
#include "utl/UtlCryptoKey.h"
#include "os/OsMulticastSocket.h"
#include "os/OsDatagramSocket.h"
#include "os/OsNatDatagramSocket.h"
// DEFINES
#define MAX_CRYPTOBUFFER 3000
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
/**
* @brief Encrypted socket base.
*
* This socket is very limited in its operation:
* 1) it blindly assume that flowing data is RTP stream(s)
* 2) it encode/decode only RTP payload (headers are not changed)
* 3) it only encode/decode packets with selected payload type
*
* Read the code for more details.
*/
class OsSocketCryptoProxy
{
/* //////////////////////////////// PUBLIC //////////////////////////////// */
public:
/* =============================== CREATORS =============================== */
///@name Creators
//@{
/// Constructor
OsSocketCryptoProxy(OsSocket* pureSocket,
int (OsSocket::*read1)(char*, int),
int (OsSocket::*read2)(char*, int, UtlString*, int*),
int (OsSocket::*read3)(char*, int, struct in_addr*, int*),
int (OsSocket::*read4)(char*, int, long),
int (OsSocket::*write1)(const char*, int),
int (OsSocket::*write2)(const char*, int, const char*, int),
int (OsSocket::*write3)(const char*, int, long),
const char* pEncBinData,
int encBinLength,
const char* pDecBinData,
int decBinLength);
/// Destructor
virtual ~OsSocketCryptoProxy();
//@}
/* ============================= MANIPULATORS ============================= */
///@name Manipulators
//@{
/// @copydoc OsSocket::write(const char*, int)
int write(const char* buffer, int bufferLength);
/// @copydoc OsSocket::write(const char*, int, const char*, int)
int write(const char* buffer, int bufferLength,
const char* ipAddress, int port);
/// @copydoc OsSocket::write(const char*, int, long)
int write(const char* buffer, int bufferLength, long waitMilliseconds);
/// @copydoc OsSocket::read(char*, int)
int read(char* buffer, int bufferLength);
/// @copydoc OsSocket::read(char*, int, UtlString*, int*)
int read(char* buffer, int bufferLength,
UtlString* fromAddress, int* fromPort);
/// @copydoc OsSocket::read(char*, int, struct in_addr*, int*)
int read(char* buffer, int bufferLength,
struct in_addr* ipAddress, int* port);
/// @copydoc OsSocket::read(char*, int, long)
int read(char* buffer, int bufferLength, long waitMilliseconds);
//@}
/* ============================== ACCESSORS =============================== */
///@name Accessors
//@{
//@}
/* =============================== INQUIRY ================================ */
///@name Inquiry
//@{
//@}
/* ////////////////////////////// PROTECTED /////////////////////////////// */
protected:
/* /////////////////////////////// PRIVATE //////////////////////////////// */
private:
/// Set encryption and decryption keys
UtlBoolean setSymKeys(const char* pEncBinData,
int encBinLength,
const char* pDecBinData,
int decBinLength);
UtlBoolean mDoPadding;
uint8_t mCryptoBuffer[MAX_CRYPTOBUFFER];
uint8_t mDecodeBuffer[MAX_CRYPTOBUFFER];
UtlCryptoKey* mpRtpEncryptKey; ///< Encryption key
UtlCryptoKey* mpRtpDecryptKey; ///< Decryption key
OsSocket* mPureSocket; ///< Basic socket object
/// Decode from internal buffer
UtlBoolean decode(char* buffer, int bufferLength, int originalLength, int& decodedLen);
/// Encode to internal buffer
UtlBoolean encode(const char* buffer, int bufferLength, int& encodedLen);
/// Read call being overridden in crypto class
int (OsSocket::*mRead1)(char* buffer, int bufferLength);
/// Read call being overridden in crypto class
int (OsSocket::*mRead2)(char* buffer, int bufferLength,
UtlString* fromAddress, int* fromPort);
/// Read call being overridden in crypto class
int (OsSocket::*mRead3)(char* buffer, int bufferLength,
struct in_addr* ipAddress, int* port);
/// Read call being overridden in crypto class
int (OsSocket::*mRead4)(char* buffer, int bufferLength, long waitMilliseconds);
/// Write call being overridden in crypto class
int (OsSocket::*mWrite1)(const char* buffer, int bufferLength);
/// Write call being overridden in crypto class
int (OsSocket::*mWrite2)(const char* buffer, int bufferLength,
const char* ipAddress, int port);
/// Write call being overridden in crypto class
int (OsSocket::*mWrite3)(const char* buffer, int bufferLength,
long waitMilliseconds);
};
/* ============================ INLINE METHODS ============================ */
//////////////////////////////////////////////////////////////////////////
class OsMulticastSocketCrypto : public OsMulticastSocket
{
public:
OsMulticastSocketCrypto(int multicastPortNum,
const char* multicastHost,
int localHostPortNum,
const char* localHost,
const char* pEncBinData,
int encBinLength,
const char* pDecBinData,
int decBinLength)
: OsMulticastSocket(multicastPortNum, multicastHost, localHostPortNum, localHost)
, mCryptoProxy(this,
(int (OsSocket::*)(char*, int))&OsMulticastSocketCrypto::readProxy1,
(int (OsSocket::*)(char*, int, UtlString*, int*))&OsMulticastSocketCrypto::readProxy2,
(int (OsSocket::*)(char*, int, struct in_addr*, int*))&OsMulticastSocketCrypto::readProxy3,
(int (OsSocket::*)(char*, int, long))&OsMulticastSocketCrypto::readProxy4,
(int (OsSocket::*)(const char*, int))&OsMulticastSocketCrypto::writeProxy1,
(int (OsSocket::*)(const char*, int, const char*, int))&OsMulticastSocketCrypto::writeProxy2,
NULL,
pEncBinData, encBinLength, pDecBinData, decBinLength)
{
};
int write(const char* buffer, int bufferLength)
{
return mCryptoProxy.write(buffer, bufferLength);
}
int write(const char* buffer, int bufferLength,
const char* ipAddress, int port)
{
return mCryptoProxy.write(buffer, bufferLength, ipAddress, port);
}
int read(char* buffer, int bufferLength)
{
return mCryptoProxy.read(buffer, bufferLength);
}
int read(char* buffer, int bufferLength,
UtlString* fromAddress, int* fromPort)
{
return mCryptoProxy.read(buffer, bufferLength, fromAddress, fromPort);
}
int read(char* buffer, int bufferLength,
struct in_addr* ipAddress, int* port)
{
return mCryptoProxy.read(buffer, bufferLength, ipAddress, port);
}
int read(char* buffer, int bufferLength,
long waitMilliseconds)
{
return mCryptoProxy.read(buffer, bufferLength, waitMilliseconds);
}
protected:
int writeProxy1(const char* buffer, int bufferLength)
{
return OsMulticastSocket::write(buffer, bufferLength);
}
int writeProxy2(const char* buffer, int bufferLength,
const char* ipAddress, int port)
{
return OsMulticastSocket::write(buffer, bufferLength, ipAddress, port);
}
int readProxy1(char* buffer, int bufferLength)
{
return OsMulticastSocket::read(buffer, bufferLength);
}
int readProxy2(char* buffer, int bufferLength,
UtlString* fromAddress, int* fromPort)
{
return OsSocket::read(buffer, bufferLength, fromAddress, fromPort);
}
int readProxy3(char* buffer, int bufferLength,
struct in_addr* ipAddress, int* port)
{
return OsSocket::read(buffer, bufferLength, ipAddress, port);
}
int readProxy4(char* buffer, int bufferLength,
long waitMilliseconds)
{
return OsSocket::read(buffer, bufferLength, waitMilliseconds);
}
private:
OsSocketCryptoProxy mCryptoProxy;
};
//////////////////////////////////////////////////////////////////////////
class OsNatDatagramSocketCrypto : public OsNatDatagramSocket
{
public:
OsNatDatagramSocketCrypto(int remoteHostPortNum,
const char* remoteHost,
int localHostPortNum,
const char* localHost,
OsNotification *pNotification,
const char* pEncBinData,
int encBinLength,
const char* pDecBinData,
int decBinLength)
: OsNatDatagramSocket(remoteHostPortNum, remoteHost, localHostPortNum, localHost, pNotification)
, mCryptoProxy(this,
(int (OsSocket::*)(char*, int))&OsNatDatagramSocketCrypto::readProxy1,
(int (OsSocket::*)(char*, int, UtlString*, int*))&OsNatDatagramSocketCrypto::readProxy2,
(int (OsSocket::*)(char*, int, struct in_addr*, int*))&OsNatDatagramSocketCrypto::readProxy3,
(int (OsSocket::*)(char*, int, long))&OsNatDatagramSocketCrypto::readProxy4,
(int (OsSocket::*)(const char*, int))&OsNatDatagramSocketCrypto::writeProxy1,
(int (OsSocket::*)(const char*, int, const char*, int))&OsNatDatagramSocketCrypto::writeProxy2,
(int (OsSocket::*)(const char*, int, long))&OsNatDatagramSocketCrypto::writeProxy3,
pEncBinData, encBinLength, pDecBinData, decBinLength)
{
};
int write(const char* buffer, int bufferLength)
{
return mCryptoProxy.write(buffer, bufferLength);
}
int write(const char* buffer, int bufferLength,
const char* ipAddress, int port)
{
return mCryptoProxy.write(buffer, bufferLength, ipAddress, port);
}
int write(const char* buffer, int bufferLength, long waitMilliseconds)
{
return mCryptoProxy.write(buffer, bufferLength, waitMilliseconds);
}
int read(char* buffer, int bufferLength)
{
return mCryptoProxy.read(buffer, bufferLength);
}
int read(char* buffer, int bufferLength,
UtlString* fromAddress, int* fromPort)
{
return mCryptoProxy.read(buffer, bufferLength, fromAddress, fromPort);
}
int read(char* buffer, int bufferLength,
struct in_addr* ipAddress, int* port)
{
return mCryptoProxy.read(buffer, bufferLength, ipAddress, port);
}
int read(char* buffer, int bufferLength,
long waitMilliseconds)
{
return mCryptoProxy.read(buffer, bufferLength, waitMilliseconds);
}
protected:
int writeProxy1(const char* buffer, int bufferLength)
{
return OsNatDatagramSocket::write(buffer, bufferLength);
}
int writeProxy2(const char* buffer, int bufferLength,
const char* ipAddress, int port)
{
return OsNatDatagramSocket::write(buffer, bufferLength, ipAddress, port);
}
int writeProxy3(const char* buffer, int bufferLength,
long waitMilliseconds)
{
return OsNatDatagramSocket::write(buffer, bufferLength, waitMilliseconds);
}
int readProxy1(char* buffer, int bufferLength)
{
return OsNatDatagramSocket::read(buffer, bufferLength);
}
int readProxy2(char* buffer, int bufferLength,
UtlString* fromAddress, int* fromPort)
{
return OsNatDatagramSocket::read(buffer, bufferLength, fromAddress, fromPort);
}
int readProxy3(char* buffer, int bufferLength,
struct in_addr* ipAddress, int* port)
{
return OsNatDatagramSocket::read(buffer, bufferLength, ipAddress, port);
}
int readProxy4(char* buffer, int bufferLength,
long waitMilliseconds)
{
return OsNatDatagramSocket::read(buffer, bufferLength, waitMilliseconds);
}
private:
OsSocketCryptoProxy mCryptoProxy;
};
#endif // _OsSocketCrypto_h_
#endif
|