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
|
/*
*
* Copyright (C) 1998-2024, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmpstat
*
* Author: Marco Eichelberg
*
* Purpose:
* classes: DVPSIPCMessage
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#ifdef HAVE_WINDOWS_H
// on Windows, we need Winsock2 for network functions
#include <winsock2.h>
#endif
#include "dcmtk/dcmnet/dcompat.h"
#include "dcmtk/dcmpstat/dvpsmsg.h"
#include "dcmtk/ofstd/ofstring.h" /* for class OFString */
#include "dcmtk/ofstd/ofbmanip.h" /* for OFBitmanipTemplate<> */
#include "dcmtk/dcmdata/dcswap.h" /* for swapIfNecessary() */
#include "dcmtk/dcmnet/dcmtrans.h" /* for class DcmTransportConnection */
#include "dcmtk/ofstd/ofsockad.h"
#include "dcmtk/ofstd/ofstd.h"
/* --------------- class DVPSIPCMessage --------------- */
#define PAYLOAD_ALLOCATION_UNIT 1024
#define PAYLOAD_OFFSET 8
// constants for message type
const Uint32 DVPSIPCMessage::OK = 0;
const Uint32 DVPSIPCMessage::requestApplicationID = 1;
const Uint32 DVPSIPCMessage::assignApplicationID = 2;
const Uint32 DVPSIPCMessage::applicationTerminates = 3;
const Uint32 DVPSIPCMessage::receivedUnencryptedDICOMConnection = 5;
const Uint32 DVPSIPCMessage::receivedEncryptedDICOMConnection = 7;
const Uint32 DVPSIPCMessage::connectionClosed = 9;
const Uint32 DVPSIPCMessage::connectionAborted = 11;
const Uint32 DVPSIPCMessage::requestedUnencryptedDICOMConnection = 13;
const Uint32 DVPSIPCMessage::requestedEncryptedDICOMConnection = 15;
const Uint32 DVPSIPCMessage::receivedDICOMObject = 17;
const Uint32 DVPSIPCMessage::sentDICOMObject = 19;
// message status constants
const Uint32 DVPSIPCMessage::statusOK = 0;
const Uint32 DVPSIPCMessage::statusWarning = 1;
const Uint32 DVPSIPCMessage::statusError = 2;
// client type constants
const Uint32 DVPSIPCMessage::clientOther = 0;
const Uint32 DVPSIPCMessage::clientStoreSCP = 1;
const Uint32 DVPSIPCMessage::clientStoreSCU = 2;
const Uint32 DVPSIPCMessage::clientPrintSCP = 3;
const Uint32 DVPSIPCMessage::clientPrintSCU = 4;
const Uint32 DVPSIPCMessage::clientQRSCP = 5;
DVPSIPCMessage::DVPSIPCMessage()
: messageType(OK)
, payloadUsed(PAYLOAD_OFFSET)
, payloadAllocated(PAYLOAD_ALLOCATION_UNIT)
, payloadReadOffset(PAYLOAD_OFFSET)
, payload(NULL)
{
payload = new unsigned char[payloadAllocated];
}
DVPSIPCMessage::DVPSIPCMessage(const DVPSIPCMessage& copy)
: messageType(copy.messageType)
, payloadUsed(copy.payloadUsed)
, payloadAllocated(copy.payloadAllocated)
, payloadReadOffset(copy.payloadReadOffset)
, payload(NULL)
{
payload = new unsigned char[payloadAllocated];
OFBitmanipTemplate<unsigned char>::copyMem(copy.payload, payload, payloadUsed);
}
DVPSIPCMessage::~DVPSIPCMessage()
{
delete[] payload;
}
DVPSIPCMessage& DVPSIPCMessage::operator=(const DVPSIPCMessage& copy)
{
messageType = copy.messageType;
payloadUsed = copy.payloadUsed;
payloadReadOffset = copy.payloadReadOffset;
if (payloadAllocated < payloadUsed)
{
delete[] payload;
payloadAllocated = copy.payloadAllocated;
payload = new unsigned char[payloadAllocated];
}
OFBitmanipTemplate<unsigned char>::copyMem(copy.payload, payload, payloadUsed);
return *this;
}
void DVPSIPCMessage::resizePayload(size_t i)
{
size_t requiredSize = payloadUsed+i;
if (requiredSize < payloadAllocated) return;
while (payloadAllocated < requiredSize) payloadAllocated += PAYLOAD_ALLOCATION_UNIT;
unsigned char *newpayload = new unsigned char[payloadAllocated];
OFBitmanipTemplate<unsigned char>::copyMem(payload, newpayload, payloadUsed);
delete[] payload;
payload = newpayload;
return;
}
void DVPSIPCMessage::addStringToPayload(const char *str)
{
size_t length = 0;
if (str) length = strlen(str); else str = "";
Uint32 padBytes = 4 - (length % 4);
size_t sizeNeeded = sizeof(Uint32)+length+padBytes;
resizePayload(sizeNeeded);
// write string length
addIntToPayload(OFstatic_cast(Uint32, length+padBytes));
// write string
OFStandard::strlcpy((char *)(payload + payloadUsed), str, (length+padBytes));
payloadUsed += OFstatic_cast(Uint32, length);
// write pad bytes
for (Uint32 i=0; i < padBytes; i++) *(payload + payloadUsed++) = 0;
return;
}
void DVPSIPCMessage::addIntToPayload(Uint32 i)
{
resizePayload(sizeof(Uint32));
unsigned char *target = payload + payloadUsed;
// write integer value
*(Uint32 *)target = i;
// and swap to big endian
swapIfNecessary(EBO_BigEndian, gLocalByteOrder, target, sizeof(Uint32), sizeof(Uint32));
payloadUsed += sizeof(Uint32);
return;
}
OFBool DVPSIPCMessage::extractStringFromPayload(OFString& str)
{
Uint32 length = 0;
if (! extractIntFromPayload(length)) return OFFalse;
// check if we have sufficient data available
if (payloadReadOffset + length > payloadUsed) return OFFalse;
str = (const char *)(payload+payloadReadOffset); // guaranteed to be zero terminated string
payloadReadOffset += length;
return OFTrue;
}
OFBool DVPSIPCMessage::extractIntFromPayload(Uint32& i)
{
// check if we have sufficient data available
if (payloadReadOffset + sizeof(Uint32) > payloadUsed) return OFFalse;
// copy integer into temporary buffer and adjust byte order there
unsigned char *temp = new unsigned char[sizeof(Uint32)+8]; // allocate a bit more than needed to be safe
OFBitmanipTemplate<unsigned char>::copyMem(payload+payloadReadOffset, temp, sizeof(Uint32));
swapIfNecessary(gLocalByteOrder, EBO_BigEndian, temp, sizeof(Uint32), sizeof(Uint32));
payloadReadOffset += sizeof(Uint32);
i = *(Uint32 *)temp;
delete[] temp;
return OFTrue;
}
void DVPSIPCMessage::rewindPayload()
{
payloadReadOffset = PAYLOAD_OFFSET;
}
void DVPSIPCMessage::erasePayload()
{
payloadUsed = PAYLOAD_OFFSET;
}
OFBool DVPSIPCMessage::send(DcmTransportConnection &connection)
{
// adjust message type and length
*(Uint32 *)payload = messageType;
*(Uint32 *)(payload + sizeof(Uint32)) = (payloadUsed - PAYLOAD_OFFSET);
swapIfNecessary(EBO_BigEndian, gLocalByteOrder, payload, 2*sizeof(Uint32), sizeof(Uint32));
// send
if (connection.write(payload, (size_t)payloadUsed) <= 0) return OFFalse;
return OFTrue;
}
OFBool DVPSIPCMessage::receive(DcmTransportConnection &connection)
{
payloadReadOffset = PAYLOAD_OFFSET;
// read message type and payload length
if (connection.read(payload, 2*sizeof(Uint32)) <= 0) return OFFalse;
swapIfNecessary(gLocalByteOrder, EBO_BigEndian, payload, 2*sizeof(Uint32), sizeof(Uint32));
messageType = *(Uint32 *)payload;
payloadUsed = *(Uint32 *)(payload+sizeof(Uint32));
// check if we need to allocate more memory
Uint32 requiredSize = payloadUsed + PAYLOAD_OFFSET;
if (requiredSize > payloadAllocated)
{
delete[] payload;
while (payloadAllocated < requiredSize) payloadAllocated += PAYLOAD_ALLOCATION_UNIT;
payload = new unsigned char[payloadAllocated];
}
// read payload if any
if (payloadUsed > 0)
{
if (connection.read(payload+PAYLOAD_OFFSET, (size_t)payloadUsed) <= 0)
{
payloadUsed = PAYLOAD_OFFSET;
return OFFalse;
} else {
payloadUsed += PAYLOAD_OFFSET;
return OFTrue;
}
} else payloadUsed = PAYLOAD_OFFSET;
return OFTrue;
}
/* --------------- class DVPSIPCClient --------------- */
DVPSIPCClient::DVPSIPCClient(Uint32 clientType, const char *txt, int thePort, OFBool keepOpen)
: port(thePort)
, serverActive(OFTrue)
, applicationID(0)
, keepConnectionOpen(keepOpen)
, connection(NULL)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::requestApplicationID);
msg.addIntToPayload(clientType);
msg.addIntToPayload(DVPSIPCMessage::statusOK);
msg.addStringToPayload(txt);
if (performTransaction(msg))
{
if ((msg.getMessageType() != DVPSIPCMessage::assignApplicationID) || (! msg.extractIntFromPayload(applicationID)))
{
// protocol violation
serverActive = OFFalse;
}
} else {
serverActive = OFFalse;
}
return;
}
DVPSIPCClient::~DVPSIPCClient()
{
if (connection)
{
connection->close();
delete connection;
}
}
void DVPSIPCClient::requestConnection()
{
if (connection) return; // connection already open
#ifdef _WIN32
SOCKET s = socket(AF_INET, SOCK_STREAM, 0);
if (s == INVALID_SOCKET) return;
#else
int s = socket(AF_INET, SOCK_STREAM, 0);
if (s < 0) return;
#endif
OFSockAddr server;
OFStandard::getAddressByHostname("localhost", AF_INET, server);
server.setPort(OFstatic_cast(unsigned short, htons(OFstatic_cast(unsigned short, port))));
if (connect(s, server.getSockaddr(), server.size()) < 0)
{
#ifdef HAVE_WINSOCK_H
(void) shutdown(s, 1 /* SD_SEND */);
(void) closesocket(s);
#else
(void) close(s);
#endif
return;
}
connection = new DcmTCPConnection(s);
}
OFBool DVPSIPCClient::performTransaction(DVPSIPCMessage& msg)
{
if (!serverActive) return OFFalse;
requestConnection();
// this would be the right place to retry connections
if (connection == NULL) return OFFalse;
OFBool result = msg.send(*connection);
if (result) result = msg.receive(*connection);
if (! keepConnectionOpen)
{
connection->close();
delete connection;
connection = NULL;
}
return result;
}
void DVPSIPCClient::notifyApplicationTerminates(Uint32 status)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::applicationTerminates);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
performTransaction(msg);
}
void DVPSIPCClient::notifyReceivedUnencryptedDICOMConnection(Uint32 status, const char *txt)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::receivedUnencryptedDICOMConnection);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
msg.addStringToPayload(txt);
performTransaction(msg);
}
void DVPSIPCClient::notifyReceivedEncryptedDICOMConnection(Uint32 status, const char *txt)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::receivedEncryptedDICOMConnection);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
msg.addStringToPayload(txt);
performTransaction(msg);
}
void DVPSIPCClient::notifyConnectionClosed(Uint32 status)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::connectionClosed);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
performTransaction(msg);
}
void DVPSIPCClient::notifyConnectionAborted(Uint32 status, const char *txt)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::connectionAborted);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
msg.addStringToPayload(txt);
performTransaction(msg);
}
void DVPSIPCClient::notifyRequestedUnencryptedDICOMConnection(Uint32 status, const char *txt)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::requestedUnencryptedDICOMConnection);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
msg.addStringToPayload(txt);
performTransaction(msg);
}
void DVPSIPCClient::notifyRequestedEncryptedDICOMConnection(Uint32 status, const char *txt)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::requestedEncryptedDICOMConnection);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
msg.addStringToPayload(txt);
performTransaction(msg);
}
void DVPSIPCClient::notifyReceivedDICOMObject(Uint32 status, const char *txt)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::receivedDICOMObject);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
msg.addStringToPayload(txt);
performTransaction(msg);
}
void DVPSIPCClient::notifySentDICOMObject(Uint32 status, const char *txt)
{
DVPSIPCMessage msg;
msg.setMessageType(DVPSIPCMessage::sentDICOMObject);
msg.addIntToPayload(applicationID);
msg.addIntToPayload(status);
msg.addStringToPayload(txt);
performTransaction(msg);
}
|