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 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
|
/*
*
* Copyright (C) 1994-2024, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were partly developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
* For further copyrights, see the following paragraphs.
*
*/
/*
Copyright (C) 1993, 1994, RSNA and Washington University
The software and supporting documentation for the Radiological
Society of North America (RSNA) 1993, 1994 Digital Imaging and
Communications in Medicine (DICOM) Demonstration were developed
at the
Electronic Radiology Laboratory
Mallinckrodt Institute of Radiology
Washington University School of Medicine
510 S. Kingshighway Blvd.
St. Louis, MO 63110
as part of the 1993, 1994 DICOM Central Test Node project for, and
under contract with, the Radiological Society of North America.
THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND NEITHER RSNA NOR
WASHINGTON UNIVERSITY MAKE ANY WARRANTY ABOUT THE SOFTWARE, ITS
PERFORMANCE, ITS MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
USE, FREEDOM FROM ANY COMPUTER DISEASES OR ITS CONFORMITY TO ANY
SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND PERFORMANCE OF
THE SOFTWARE IS WITH THE USER.
Copyright of the software and supporting documentation is
jointly owned by RSNA and Washington University, and free access
is hereby granted as a license to use this software, copy this
software and prepare derivative works based upon this software.
However, any distribution of this software source code or
supporting documentation or derivative works (source code and
supporting documentation) must include the three paragraphs of
the copyright notice.
*/
/*
** DICOM 93
** Electronic Radiology Laboratory
** Mallinckrodt Institute of Radiology
** Washington University School of Medicine
**
** Module Name(s): constructAssociatePDU
** constructAssociateRejectPDU
** constructReleasePDU
** constructDataPDU
** streamAssociatePDU
** streamRejectReleaseAbortPDU
** streamDataPDUHead
** Author, Date: Stephen M. Moore, 14-Apr-1993
** Intent: This file contains functions for construction of
** DICOM Upper Layer (DUL) Protocol Data Units (PDUs).
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmnet/dicom.h"
#include "dcmtk/dcmnet/cond.h"
#include "dcmtk/dcmnet/diutil.h"
#include "dcmtk/dcmnet/lst.h"
#include "dcmtk/dcmnet/dul.h"
#include "dcmtk/dcmnet/dulstruc.h"
#include "dulpriv.h"
#include "dcmtk/ofstd/ofconsol.h"
#include "dcmtk/ofstd/ofstd.h"
static OFCondition
constructSubItem(char *name, unsigned char type,
DUL_SUBITEM * applicationContext, unsigned long *rtnlen);
static OFCondition
constructPresentationContext(unsigned char associateType,
unsigned char contextID,
unsigned char reason, char *abstractSyntax,
LST_HEAD ** proposedTransferSyntax, char *acceptedTransferSyntax,
PRV_PRESENTATIONCONTEXTITEM * context, unsigned long *rtnLength);
static OFCondition
constructUserInfo(unsigned char type, DUL_ASSOCIATESERVICEPARAMETERS * params,
DUL_USERINFO * userInfo, unsigned long *rtnLen);
static OFCondition
constructMaxLength(unsigned long maxPDU, DUL_MAXLENGTH * max,
unsigned long *rtnLen);
static OFCondition
constructSCUSCPRoles(unsigned char type,
DUL_ASSOCIATESERVICEPARAMETERS * params,
LST_HEAD ** lst,
unsigned long *rtnLength);
static OFCondition
constructSCUSCPSubItem(char *name, unsigned char type, unsigned char scuRole,
unsigned char scpRole, PRV_SCUSCPROLE * scuscpItem,
unsigned long *length);
static OFCondition
streamSubItem(DUL_SUBITEM * item, unsigned char *b,
unsigned long *len);
static OFCondition
streamPresentationContext(
LST_HEAD ** presentationContextList, unsigned char *b,
unsigned long *length);
static OFCondition
streamUserInfo(DUL_USERINFO * userInfo, unsigned char *b,
unsigned long *length);
static OFCondition
streamMaxLength(DUL_MAXLENGTH * max, unsigned char *b,
unsigned long *length);
static OFCondition
streamSCUSCPList(LST_HEAD ** lst, unsigned char *b, unsigned long *length);
static OFCondition
streamSCUSCPRole(PRV_SCUSCPROLE * scuscpRole, unsigned char *b,
unsigned long *len);
static OFCondition
constructExtNeg(unsigned char type,
DUL_ASSOCIATESERVICEPARAMETERS * params,
SOPClassExtendedNegotiationSubItemList **lst,
unsigned long *rtnLength);
static OFCondition
streamExtNegList(SOPClassExtendedNegotiationSubItemList *lst, unsigned char *b, unsigned long *length);
static OFCondition
streamExtNeg(SOPClassExtendedNegotiationSubItem* extNeg, unsigned char *b, unsigned long *len);
/* constructAssociatePDU
**
** Purpose:
** Construct an Association PDU and initialize it.
**
** Parameter Dictionary:
** params Service parameters describing the Association
** type The PDU type
** pdu The PDU that is to be initialized.
**
** Return Values:
**
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
constructAssociatePDU(DUL_ASSOCIATESERVICEPARAMETERS * params,
unsigned char type, PRV_ASSOCIATEPDU * pdu)
{
/* Holds length of an item computed by a lower level routine. */
unsigned long itemLength;
/* Pointer to loop through presentation context items */
DUL_PRESENTATIONCONTEXT * presentationCtx;
/* A presentation context item which is constructed for each presentation
* context requested by caller */
PRV_PRESENTATIONCONTEXTITEM * contextItem;
pdu->type = type;
pdu->rsv1 = 0;
pdu->length = 0;
pdu->protocol = DUL_PROTOCOL;
pdu->rsv2[0] = pdu->rsv2[1] = 0;
pdu->length += 2 + 2; /* Protocol + reserved area */
pdu->presentationContextList = LST_Create();
if (pdu->presentationContextList == NULL) return EC_MemoryExhausted;
pdu->userInfo.SCUSCPRoleList = LST_Create();
if (pdu->userInfo.SCUSCPRoleList == NULL) return EC_MemoryExhausted;
if (strlen(params->calledAPTitle) < 1 || strlen(params->calledAPTitle) > 16)
return makeDcmnetCondition(DULC_ILLEGALSERVICEPARAMETER, OF_error, "Illegal service parameter: Called AP Title");
OFStandard::strlcpy(pdu->calledAPTitle, params->calledAPTitle, sizeof(pdu->calledAPTitle));
pdu->length += 16;
if (strlen(params->callingAPTitle) < 1 || strlen(params->callingAPTitle) > 16)
return makeDcmnetCondition(DULC_ILLEGALSERVICEPARAMETER, OF_error, "Illegal service parameter: Calling AP Title");
OFStandard::strlcpy(pdu->callingAPTitle, params->callingAPTitle, sizeof(pdu->callingAPTitle));
pdu->length += 16;
(void) memset(pdu->rsv3, 0, 32);
pdu->length += 32;
OFCondition cond = constructSubItem(params->applicationContextName,
DUL_TYPEAPPLICATIONCONTEXT, &pdu->applicationContext, &itemLength);
if (cond.bad())
return cond;
pdu->length += itemLength;
cond = EC_Normal;
if (type == DUL_TYPEASSOCIATERQ) {
DCMNET_DEBUG("Constructing Associate RQ PDU");
presentationCtx = (DUL_PRESENTATIONCONTEXT*)LST_Head(¶ms->requestedPresentationContext);
(void) LST_Position(¶ms->requestedPresentationContext,
(LST_NODE*)presentationCtx);
while (presentationCtx != NULL && cond.good()) {
contextItem = (PRV_PRESENTATIONCONTEXTITEM *)
malloc(sizeof(PRV_PRESENTATIONCONTEXTITEM));
if (contextItem == NULL) return EC_MemoryExhausted;
cond = constructPresentationContext(type,
presentationCtx->presentationContextID,
presentationCtx->result,
presentationCtx->abstractSyntax,
&presentationCtx->proposedTransferSyntax, NULL,
contextItem, &itemLength);
LST_Enqueue(&pdu->presentationContextList, (LST_NODE*)contextItem);
pdu->length += itemLength;
presentationCtx = (DUL_PRESENTATIONCONTEXT*)LST_Next(¶ms->requestedPresentationContext);
}
} else {
DCMNET_DEBUG("Constructing Associate AC PDU");
if (params->acceptedPresentationContext != NULL) {
presentationCtx = (DUL_PRESENTATIONCONTEXT*)LST_Head(¶ms->acceptedPresentationContext);
if (presentationCtx != NULL)
(void) LST_Position(¶ms->acceptedPresentationContext,
(LST_NODE*)presentationCtx);
while (presentationCtx != NULL && cond.good()) {
contextItem = (PRV_PRESENTATIONCONTEXTITEM *)
malloc(sizeof(*contextItem));
if (contextItem == NULL) return EC_MemoryExhausted;
cond = constructPresentationContext(type,
presentationCtx->presentationContextID,
presentationCtx->result,
presentationCtx->abstractSyntax,
NULL, presentationCtx->acceptedTransferSyntax,
contextItem, &itemLength);
LST_Enqueue(&pdu->presentationContextList, (LST_NODE*)contextItem);
pdu->length += itemLength;
presentationCtx = (DUL_PRESENTATIONCONTEXT*)LST_Next(¶ms->acceptedPresentationContext);
}
}
}
if (cond.bad())
return cond;
cond = constructUserInfo(type, params, &(pdu->userInfo), &itemLength);
if (cond.bad())
return cond;
pdu->length += itemLength;
return EC_Normal;
}
/* constructAssociateRejectPDU
**
** Purpose:
** Construct an Associate Reject PDU and fill up the reason for
** rejection, the source and result.
**
** Parameter Dictionary:
** result Result of rejection
** source Whether service user or provider
** reason Reason for rejection
** pdu The PDU that is to be initialized.
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
constructAssociateRejectPDU(unsigned char result,
unsigned char source, unsigned char reason,
DUL_REJECTRELEASEABORTPDU * pdu)
{
pdu->type = DUL_TYPEASSOCIATERJ;
pdu->rsv1 = 0;
pdu->length = 4;
pdu->rsv2 = 0;
pdu->result = result;
pdu->source = source;
pdu->reason = reason;
return EC_Normal;
}
/* constructReleaseRQPDU
**
** Purpose:
** Construct a Release Request PDU and initialize it.
**
** Parameter Dictionary:
** pdu The PDU to be initialized as a Release Request PDU
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
constructReleaseRQPDU(DUL_REJECTRELEASEABORTPDU * pdu, unsigned long mode)
{
pdu->type = DUL_TYPERELEASERQ;
pdu->rsv1 = 0;
pdu->length = 4;
pdu->rsv2 = 0;
pdu->result = 0;
pdu->source = 0;
pdu->reason = 0;
if (mode)
{
pdu->rsv2 = (unsigned char)(mode >> 24);
pdu->result = (unsigned char)(mode >> 16);
pdu->source = (unsigned char)(mode >> 8);
pdu->reason = (unsigned char)(mode);
}
return EC_Normal;
}
/* constructReleaseRPPDU
**
** Purpose:
** Construct a Release Response PDU
**
** Parameter Dictionary:
** pdu The PDU to be initialized as a Release Response PDU
**
** Return Values:
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
constructReleaseRPPDU(DUL_REJECTRELEASEABORTPDU * pdu)
{
pdu->type = DUL_TYPERELEASERP;
pdu->rsv1 = 0;
pdu->length = 4;
pdu->rsv2 = 0;
pdu->result = 0;
pdu->source = 0;
pdu->reason = 0;
return EC_Normal;
}
/* constructAbortPDU
**
** Purpose:
** Construct a ABORT PDU
**
** Parameter Dictionary:
** src Originator of the ABORT PDU (service user/provider)
** reason Reason for sending the ABORT PDU
** pdu The PDU that is to be initialized as an ABORT PDU
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
constructAbortPDU(unsigned char src, unsigned char reason,
DUL_REJECTRELEASEABORTPDU * pdu,
unsigned long mode)
{
pdu->type = DUL_TYPEABORT;
pdu->rsv1 = 0;
pdu->length = 4;
pdu->rsv2 = 0;
pdu->result = 0;
pdu->source = src;
pdu->reason = reason;
if (mode)
{
pdu->rsv1 = (unsigned char)(mode >> 24);
pdu->rsv2 = (unsigned char)(mode >> 16);
pdu->result = (unsigned char)(mode >> 8);
pdu->reason = (unsigned char)(mode);
pdu->source = 0;
}
return EC_Normal;
}
/* constructDataPDU
**
** Purpose:
** Construct a data PDU
**
** Parameter Dictionary:
** buf Buffer holding the data that is to be included in the PDU
** length Length of the data
** type PDU type
** presentationContextID
** ID of the presentation context (unique value that
** distinguishes the context)
** last A boolean value to indicate whether or not this PDU
** is the last one in the stream
** pdu The PDU that is to be constructed.
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
constructDataPDU(void *buf, unsigned long length, DUL_DATAPDV type,
DUL_PRESENTATIONCONTEXTID presentationContextID,
OFBool last, DUL_DATAPDU * pdu)
{
unsigned char u;
pdu->type = DUL_TYPEDATA;
pdu->rsv1 = 0;
pdu->length = length + 6;
pdu->presentationDataValue.length = 2 + length;
u = 0;
switch (type) {
case DUL_DATASETPDV:
break;
case DUL_COMMANDPDV:
u |= 1;
break;
default:
break;
}
if (last)
u |= 2;
pdu->presentationDataValue.presentationContextID = presentationContextID;
pdu->presentationDataValue.messageControlHeader = u;
pdu->presentationDataValue.data = buf;
return EC_Normal;
}
/* streamAssociatePDU
**
** Purpose:
** Convert the Associate PDU into a stream format (suitable for
** transmission over the network)
**
** Parameter Dictionary:
** assoc The PDU that is to be converted
** b The PDU to be sent over the network
** maxLength Maximum length allowed for the stream
** rtnLength Actual length of the constructed PDU
**
** Return Values:
**
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
streamAssociatePDU(PRV_ASSOCIATEPDU * assoc, unsigned char *b,
unsigned long /*maxLength*/, unsigned long *rtnLen)
{
unsigned long subLength;
*b++ = assoc->type;
*b++ = assoc->rsv1;
COPY_LONG_BIG(assoc->length, b);
b += 4;
COPY_SHORT_BIG(assoc->protocol, b);
b += 2;
*b++ = assoc->rsv2[0];
*b++ = assoc->rsv2[1];
(void) memset(b, ' ', 32);
// we don't copy the zero bytes at the end of the AEtitle strings
// since the PDU requires a space-padded, non zero-padded string.
size_t len = strlen(assoc->calledAPTitle);
if (len > 16) len = 16;
memcpy(b, assoc->calledAPTitle, len);
b += 16;
len = strlen(assoc->callingAPTitle);
if (len > 16) len = 16;
memcpy(b, assoc->callingAPTitle, len);
b += 16;
(void) memset(b, 0, 32);
b += 32;
*rtnLen = 1 + 1 + 4 + 2 + 2 + 16 + 16 + 32;
OFCondition cond = streamSubItem(&assoc->applicationContext, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*rtnLen += subLength;
cond = streamPresentationContext(&assoc->presentationContextList,
b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*rtnLen += subLength;
cond = streamUserInfo(&assoc->userInfo, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*rtnLen += subLength;
return EC_Normal;
}
/* streamRejectReleaseAbortPDU
**
** Purpose:
** Construct a Reject Release Abort PDU in the stream format
**
** Parameter Dictionary:
** assoc The PDU that is to be converted
** b The PDU to be sent over the network
** maxLength Maximum length allowed for the stream
** rtnLength Actual length of the constructed PDU
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
streamRejectReleaseAbortPDU(DUL_REJECTRELEASEABORTPDU * pdu,
unsigned char *b, unsigned long maxLength, unsigned long *rtnLen)
{
if (maxLength < 2 + 2 + 4)
{
return makeDcmnetCondition(DULC_CODINGERROR, OF_error, "Coding Error in DUL routine: buffer too short in streamRejectReleaseAbortPDU");
}
*b++ = pdu->type;
*b++ = pdu->rsv1;
COPY_LONG_BIG(pdu->length, b);
b += 4;
*b++ = pdu->rsv2;
*b++ = pdu->result;
*b++ = pdu->source;
*b++ = pdu->reason;
*rtnLen = 2 + 4 + 4;
return EC_Normal;
}
/* streamDataPDUHead
**
** Purpose:
** Construct a Data PDU in the stream format
**
** Parameter Dictionary:
** assoc The PDU that is to be converted
** b The PDU to be sent over the network
** maxLength Maximum length allowed for the stream
** rtnLength Actual length of the constructed PDU
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
OFCondition
streamDataPDUHead(DUL_DATAPDU * pdu, unsigned char *buf,
unsigned long maxLength, unsigned long *rtnLen)
{
unsigned long l;
#ifdef PDV_TEST
if (maxLength < 18)
{
return makeDcmnetCondition(DULC_CODINGERROR, OF_error, "Coding Error in DUL routine: buffer too short in streamDataPDUHead");
}
#else
if (maxLength < 12)
{
return makeDcmnetCondition(DULC_CODINGERROR, OF_error, "Coding Error in DUL routine: buffer too short in streamDataPDUHead");
}
#endif
/* write PDU type field information to buffer */
*buf++ = pdu->type;
/* append PDU reserved field information to buffer */
*buf++ = pdu->rsv1;
/* append PDU length field information to buffer */
l = pdu->length;
#ifdef PDV_TEST
l += 6;
#endif
COPY_LONG_BIG(l, buf);
buf += 4;
#ifdef PDV_TEST
l = 2; /* Insert a false, 0-length PDV (2 byte hdr) */
COPY_LONG_BIG(l, buf);
buf += 4;
*buf++ = pdu->presentationDataValue.presentationContextID;
*buf++ = pdu->presentationDataValue.messageControlHeader & (~0x2);
#endif
/* append PDV length field information to buffer */
COPY_LONG_BIG(pdu->presentationDataValue.length, buf);
buf += 4;
/* append PDV presentation context ID field information to buffer */
*buf++ = pdu->presentationDataValue.presentationContextID;
/* append PDV message control header field information to buffer */
*buf++ = pdu->presentationDataValue.messageControlHeader;
/* set rtnLen (actual length of constructed PDU) */
*rtnLen = 12;
#ifdef PDV_TEST
*rtnLen = 18;
#endif
return EC_Normal;
}
/* ======================================================
* Private functions are defined below.
*/
/* constructSubItem
**
** Purpose:
** Construct the subitem part of the PDU
**
** Parameter Dictionary:
** name Data that goes in the subitem PDU
** type Type of the subitem PDU
** subItem The subitem PDU that is to be constructed
** rtnLength Actual length of the constructed subitem (returned
** to caller)
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
constructSubItem(char *name, unsigned char type,
DUL_SUBITEM * subItem, unsigned long *rtnLength)
{
if (strlen(name) < 1 || strlen(name) > 64)
{
char buf[1024];
OFStandard::snprintf(buf, 1024, "Illegal service parameter: %s", name);
return makeDcmnetCondition(DULC_ILLEGALSERVICEPARAMETER, OF_error, buf);
}
subItem->type = type;
subItem->rsv1 = 0;
subItem->length = (unsigned short) strlen(name);
OFStandard::strlcpy(subItem->data, name, sizeof(subItem->data));
*rtnLength = subItem->length + 4;
return EC_Normal;
}
/* constructPresentationContext
**
** Purpose:
** Construct the presentation context part of the PDU
**
** Parameter Dictionary:
** associateType Type of the parent Associate PDU
** contextID Unique value identifying this presentation
** context
** reason Reason to be included in the result field
** abstractSyntax Used to build the abstract syntax list
** proposedTransferSyntax Proposed transfer characteristics (to be
** negotiated)
** acceptedTransferSyntax Accepted transfer characteristics (after
** negotiation)
** context The pointer to the actual presentation
** context being constructed
** rtnLength Actual length of the entire context being
** constructed.
**
**
** Return Values:
**
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
constructPresentationContext(unsigned char associateType,
unsigned char contextID,
unsigned char reason, char *abstractSyntax,
LST_HEAD ** proposedTransferSyntax, char *acceptedTransferSyntax,
PRV_PRESENTATIONCONTEXTITEM * context, unsigned long *rtnLen)
{
OFCondition cond = EC_Normal;
unsigned long length = 0;
/* Subitem pointer created for transfer syntax items */
DUL_SUBITEM * subItem;
/* Pointer to loop through list of transfer syntaxes */
DUL_TRANSFERSYNTAX * transfer;
*rtnLen = 0;
if (associateType == DUL_TYPEASSOCIATERQ)
context->type = DUL_TYPEPRESENTATIONCONTEXTRQ;
else
context->type = DUL_TYPEPRESENTATIONCONTEXTAC;
context->rsv1 = 0;
context->length = 0;
context->contextID = contextID;
context->rsv2 = 0;
context->result = reason;
context->rsv3 = 0;
context->length += 4;
*rtnLen += 8;
if (associateType == DUL_TYPEASSOCIATERQ) {
cond = constructSubItem(abstractSyntax, DUL_TYPEABSTRACTSYNTAX,
&(context->abstractSyntax), &length);
if (cond.bad())
return cond;
context->length += (unsigned short) length;
*rtnLen += length;
} else
context->abstractSyntax.length = 0;
context->transferSyntaxList = LST_Create();
if (context->transferSyntaxList == NULL) return EC_MemoryExhausted;
if (associateType == DUL_TYPEASSOCIATERQ) {
transfer = (DUL_TRANSFERSYNTAX*)LST_Head(proposedTransferSyntax);
if (transfer == NULL) return DUL_LISTERROR;
(void) LST_Position(proposedTransferSyntax, (LST_NODE*)transfer);
while (transfer != NULL) {
subItem = (DUL_SUBITEM *) malloc(sizeof(DUL_SUBITEM));
if (subItem == NULL) return EC_MemoryExhausted;
cond = constructSubItem(transfer->transferSyntax,
DUL_TYPETRANSFERSYNTAX, subItem, &length);
if (cond.bad())
{
free(subItem);
return cond;
}
LST_Enqueue(&context->transferSyntaxList, (LST_NODE*)subItem);
context->length += (unsigned short) length;
*rtnLen += length;
transfer = (DUL_TRANSFERSYNTAX*)LST_Next(proposedTransferSyntax);
}
} else {
subItem = (DUL_SUBITEM *) malloc(sizeof(*subItem));
if (subItem == NULL) return EC_MemoryExhausted;
cond = constructSubItem(acceptedTransferSyntax,
DUL_TYPETRANSFERSYNTAX, subItem, &length);
if (cond.bad()) {
free(subItem);
return cond;
}
LST_Enqueue(&context->transferSyntaxList, (LST_NODE*)subItem);
context->length += (unsigned short) length;
*rtnLen += length;
}
return EC_Normal;
}
/* constructUserInfo
**
** Purpose:
** Construct the User Info part of the Associate PDU. This function
** is for calculating the total length of all user item information. It does
** not yet write the item content to buffer or network. This happens later on
** in function streamUserInfo().
**
** Parameter Dictionary:
** type Type of the User info part
** params Service parameters describing the Association
** userInfo The user info part that is to be constructed
** rtnLength Actual length of the constructed part, returned to
** the caller.
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
constructUserInfo(unsigned char type, DUL_ASSOCIATESERVICEPARAMETERS * params,
DUL_USERINFO * userInfo, unsigned long *rtnLen)
{
// the order in which the user info sub-items are constructed in this
// function is not significant. The final transmission order is determined
// by streamUserInfo().
unsigned long length;
// needed to detect overflow of total user item lengths (max 65535 bytes).
// in the end this is copied to userInfo->length
unsigned long totalUserInfoLength = 0;
userInfo->type = DUL_TYPEUSERINFO;
userInfo->rsv1 = 0;
userInfo->length = 0;
*rtnLen = 4;
// construct user info sub-item 51H: maximum length
OFCondition cond = constructMaxLength(params->maxPDU, &userInfo->maxLength, &length);
if (cond.bad()) return cond;
totalUserInfoLength += length;
*rtnLen += length;
// construct user info sub-item 52H: implementation class UID
if (type == DUL_TYPEASSOCIATERQ)
cond = constructSubItem(params->callingImplementationClassUID,
DUL_TYPEIMPLEMENTATIONCLASSUID, &userInfo->implementationClassUID, &length);
else
cond = constructSubItem(params->calledImplementationClassUID,
DUL_TYPEIMPLEMENTATIONCLASSUID, &userInfo->implementationClassUID, &length);
if (cond.bad()) return cond;
totalUserInfoLength += length;
*rtnLen += length;
// user info sub-item 53H (async operations) is not yet implemented!
// construct user info sub-item 55H: implementation version name
if (type == DUL_TYPEASSOCIATERQ) {
if (strlen(params->callingImplementationVersionName) != 0) {
cond = constructSubItem(params->callingImplementationVersionName,
DUL_TYPEIMPLEMENTATIONVERSIONNAME,
&userInfo->implementationVersionName,
&length);
if (cond.bad()) return cond;
totalUserInfoLength += length;
*rtnLen += length;
}
} else {
if (strlen(params->calledImplementationVersionName) != 0) {
cond = constructSubItem(params->calledImplementationVersionName,
DUL_TYPEIMPLEMENTATIONVERSIONNAME,
&userInfo->implementationVersionName,
&length);
if (cond.bad()) return cond;
totalUserInfoLength += length;
*rtnLen += length;
}
}
// construct one or more user info sub-items 54H: SCP/SCU role selection
cond = constructSCUSCPRoles(type, params, &userInfo->SCUSCPRoleList, &length);
if (cond.bad()) return cond;
totalUserInfoLength += length;
*rtnLen += length;
// construct one or more user info sub-items 56H: extended negotiation
cond = constructExtNeg(type, params, &userInfo->extNegList, &length);
if (cond.bad()) return cond;
totalUserInfoLength += length;
*rtnLen += length;
// construct user info sub-item 58H: user identification negotiation
if (params->reqUserIdentNeg && (type == DUL_TYPEASSOCIATERQ))
{
cond = params->reqUserIdentNeg->streamedLength(length);
if (cond.bad()) return cond;
userInfo->usrIdent = new UserIdentityNegotiationSubItemRQ();
*(OFstatic_cast(UserIdentityNegotiationSubItemRQ*,userInfo->usrIdent)) = *(OFstatic_cast(UserIdentityNegotiationSubItemRQ*, params->reqUserIdentNeg));
totalUserInfoLength += length;
*rtnLen += length;
}
else if (params->ackUserIdentNeg && (type == DUL_TYPEASSOCIATEAC))
{
cond = params->ackUserIdentNeg->streamedLength(length);
if (cond.bad()) return cond;
userInfo->usrIdent = new UserIdentityNegotiationSubItemAC();
*(OFstatic_cast(UserIdentityNegotiationSubItemAC*,userInfo->usrIdent)) = *(OFstatic_cast(UserIdentityNegotiationSubItemAC*, params->ackUserIdentNeg));
totalUserInfoLength += length;
*rtnLen += length;
}
if (totalUserInfoLength > 65535)
{
char errbuf[500];
OFStandard::snprintf(errbuf, sizeof(errbuf), "Total length of user items (%lu bytes) exceeds upper limit of 65535 bytes", totalUserInfoLength);
return makeDcmnetCondition(ASCC_CODINGERROR, OF_error, errbuf);
}
else // now casting to unsigned short should be safe
userInfo->length = OFstatic_cast(unsigned short, totalUserInfoLength);
return EC_Normal;
}
/* constructMaxLength
**
** Purpose:
** Construct the Max Length part of the PDU
**
** Parameter Dictionary:
** maxPDU Length of the Max PDU
** max The Max PDU that is to be constructed
** rtnLength Length of the PDU constructed.
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
constructMaxLength(unsigned long maxPDU, DUL_MAXLENGTH * max,
unsigned long *rtnLen)
{
max->type = DUL_TYPEMAXLENGTH;
max->rsv1 = 0;
max->length = 4;
#ifdef DCMTK_ENABLE_OUTDATED_DCMTK_WORKAROUND
unsigned long compatMode = dcmEnableBackwardCompatibility.get();
if (compatMode & 0x8000) max->maxLength = DUL_DULCOMPAT | DUL_DIMSECOMPAT | compatMode;
else max->maxLength = maxPDU;
#else
max->maxLength = maxPDU;
#endif
*rtnLen = 8;
return EC_Normal;
}
/* constructSCUSCPRoles
**
** Purpose:
** Construct the SCU-SCP Role list part of the PDU
**
** Parameter Dictionary:
** type Type of the parent PDU
** params Service parameters describing the Association
** list The SCU_SCP role list that is to be constructed
** rtnLength Length of the list created.
**
** Return Values:
**
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
constructSCUSCPRoles(unsigned char type,
DUL_ASSOCIATESERVICEPARAMETERS * params, LST_HEAD ** lst,
unsigned long *rtnLength)
{
/* Pointer to loop through presentation ctx */
DUL_PRESENTATIONCONTEXT* presentationCtx;
PRV_SCUSCPROLE* scuscpItem;
unsigned char scuRole = 0, scpRole = 0;
unsigned long length = 0;
*rtnLength = 0;
OFCondition cond = EC_Normal;
if (type == DUL_TYPEASSOCIATERQ)
{
presentationCtx = params->requestedPresentationContext != NULL ?
(DUL_PRESENTATIONCONTEXT*)LST_Head(¶ms->requestedPresentationContext) :
(DUL_PRESENTATIONCONTEXT*)NULL;
if (presentationCtx != NULL)
(void) LST_Position(¶ms->requestedPresentationContext, (LST_NODE*)presentationCtx);
while (presentationCtx != NULL) {
if (presentationCtx->proposedSCRole != DUL_SC_ROLE_DEFAULT) {
scuscpItem = (PRV_SCUSCPROLE*)malloc(sizeof(PRV_SCUSCPROLE));
if (scuscpItem == NULL) return EC_MemoryExhausted;
if (presentationCtx->proposedSCRole == DUL_SC_ROLE_SCU) {
scuRole = 1;
scpRole = 0;
} else if (presentationCtx->proposedSCRole == DUL_SC_ROLE_SCP) {
scuRole = 0;
scpRole = 1;
} else {
scuRole = scpRole = 1;
}
cond = constructSCUSCPSubItem(presentationCtx->abstractSyntax,
DUL_TYPESCUSCPROLE, scuRole, scpRole, scuscpItem, &length);
if (cond.bad())
{
free(scuscpItem);
return cond;
}
*rtnLength += length;
LST_Enqueue(lst, (LST_NODE*)scuscpItem);
}
presentationCtx = (DUL_PRESENTATIONCONTEXT*)LST_Next(¶ms->requestedPresentationContext);
}
} else { // type != DUL_TYPEASSOCIATERQ
/* The implemented behaviour is documented in dul.h (see DUL_SC_ROLE enum definition).
* The error case is already handled in ASC_acceptPresentationContext() in assoc.cc.
*/
presentationCtx = params->acceptedPresentationContext != NULL ?
(DUL_PRESENTATIONCONTEXT*)LST_Head(¶ms->acceptedPresentationContext) :
(DUL_PRESENTATIONCONTEXT*)NULL;
if (presentationCtx != NULL)
(void) LST_Position(¶ms->acceptedPresentationContext, (LST_NODE*)presentationCtx);
while (presentationCtx != NULL) {
// check that the default behavior does not apply
if ((presentationCtx->proposedSCRole != DUL_SC_ROLE_DEFAULT) &&
(presentationCtx->acceptedSCRole != DUL_SC_ROLE_DEFAULT)) {
scuscpItem = (PRV_SCUSCPROLE*)malloc(sizeof(*scuscpItem));
if (scuscpItem == NULL) return EC_MemoryExhausted;
if (presentationCtx->acceptedSCRole == DUL_SC_ROLE_SCU) {
// only accept SCU role for the requester if proposed, see PS 3.7
scuRole = (presentationCtx->proposedSCRole != DUL_SC_ROLE_SCP) ? 1 : 0;
scpRole = 0;
} else if (presentationCtx->acceptedSCRole == DUL_SC_ROLE_SCP) {
scuRole = 0;
// only accept SCP role for the requester if proposed, see PS 3.7
scpRole = (presentationCtx->proposedSCRole != DUL_SC_ROLE_SCU) ? 1 : 0;
} else {
// only accept roles for the requester if proposed, see PS 3.7
scuRole = (presentationCtx->proposedSCRole != DUL_SC_ROLE_SCP) ? 1 : 0;
scpRole = (presentationCtx->proposedSCRole != DUL_SC_ROLE_SCU) ? 1 : 0;
}
// neither SCU nor SCP role accepted
if ((scuRole == 0) && (scpRole == 0)) {
presentationCtx->acceptedSCRole = DUL_SC_ROLE_NONE;
DCMNET_WARN("setting accepted SCP/SCU role to NONE, i.e. both role fields are 0 in SCP/SCU role selection sub-item");
}
cond = constructSCUSCPSubItem(presentationCtx->abstractSyntax,
DUL_TYPESCUSCPROLE, scuRole, scpRole, scuscpItem, &length);
if (cond.bad()) {
free(scuscpItem);
return cond;
}
*rtnLength += length;
LST_Enqueue(lst, (LST_NODE*)scuscpItem);
}
presentationCtx = (DUL_PRESENTATIONCONTEXT*)LST_Next(¶ms->acceptedPresentationContext);
}
}
return EC_Normal;
}
/* constructExtNeg
**
** Purpose:
** Construct the extended negotiation part of the PDU
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
constructExtNeg(unsigned char type,
DUL_ASSOCIATESERVICEPARAMETERS * params,
SOPClassExtendedNegotiationSubItemList **lst,
unsigned long *rtnLength)
{
unsigned long length;
*rtnLength = 0;
if (type == DUL_TYPEASSOCIATERQ && params->requestedExtNegList != NULL) {
*lst = new SOPClassExtendedNegotiationSubItemList;
if (*lst == NULL) return EC_MemoryExhausted;
appendList(*(params->requestedExtNegList), **lst);
} else if (type == DUL_TYPEASSOCIATEAC && params->acceptedExtNegList != NULL) {
*lst = new SOPClassExtendedNegotiationSubItemList;
if (*lst == NULL) return EC_MemoryExhausted;
appendList(*(params->acceptedExtNegList), **lst);
}
if (*lst != NULL) {
OFListIterator(SOPClassExtendedNegotiationSubItem*) i = (*lst)->begin();
while (i != (*lst)->end()) {
SOPClassExtendedNegotiationSubItem* extNeg = *i;
extNeg->itemType = 0x56;
// recompute the length fields
extNeg->sopClassUIDLength = OFstatic_cast(unsigned short, extNeg->sopClassUID.length());
extNeg->itemLength = 2 + extNeg->sopClassUIDLength + extNeg->serviceClassAppInfoLength;
length = 4 + extNeg->itemLength;
*rtnLength += length;
++i;
}
}
return EC_Normal;
}
/* constructSCUSCPSubItem
**
** Purpose:
** Construct a SCU-SCP subitem part in the parent PDU
**
** Parameter Dictionary:
** name SOP Class UID
** type Type of the SCU-SCP subitem
** scuRole Role played by the SCU
** scpRole Role played by the SCP
** scuscpItem The subitem to be constructed
** length Length of the subitm that is constructed
**
** Return Values:
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
constructSCUSCPSubItem(char *name, unsigned char type, unsigned char scuRole,
unsigned char scpRole, PRV_SCUSCPROLE * scuscpItem,
unsigned long *length)
{
if (strlen(name) < 1 || strlen(name) > 64)
{
char buf[1024];
OFStandard::snprintf(buf, 1024, "Illegal service parameter: %s", name);
return makeDcmnetCondition(DULC_ILLEGALSERVICEPARAMETER, OF_error, buf);
}
scuscpItem->type = type;
scuscpItem->rsv1 = 0;
scuscpItem->SCURole = scuRole;
scuscpItem->SCPRole = scpRole;
scuscpItem->length = (unsigned short) (strlen(name) + 2 + 2);
OFStandard::strlcpy(scuscpItem->SOPClassUID, name, sizeof(scuscpItem->SOPClassUID));
*length = scuscpItem->length + 4;
return EC_Normal;
}
/* streamSubItem
**
** Purpose:
** Convert the subitem into a stream format
**
** Parameter Dictionary:
** item The subitem that is to be converted
** b The stream version of the subitem
** len Length of the stream format
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
streamSubItem(DUL_SUBITEM * item, unsigned char *b,
unsigned long *len)
{
unsigned short length;
length = item->length;
*b++ = item->type;
*b++ = item->rsv1;
COPY_SHORT_BIG(length, b);
b += 2;
(void) memcpy(b, item->data, length);
*len = 4 + length;
return EC_Normal;
}
/* streamPresentationContext
**
** Purpose:
** Convert the presentation context list into stream format
**
** Parameter Dictionary:
** presentationContextList The presentation context list that
** is to be converted to stream format
** b The stream version (output)
** length Length of the stream version
**
** Return Values:
**
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
streamPresentationContext(LST_HEAD ** presentationContextList,
unsigned char *b, unsigned long *length)
{
PRV_PRESENTATIONCONTEXTITEM * presentation;
DUL_SUBITEM * transfer;
OFCondition cond = EC_Normal;
unsigned long subLength;
*length = 0;
presentation = (PRV_PRESENTATIONCONTEXTITEM*)LST_Head(presentationContextList);
if (presentation == NULL) return DUL_LISTERROR;
(void) LST_Position(presentationContextList, (LST_NODE*)presentation);
while (presentation != NULL) {
*b++ = presentation->type;
*b++ = presentation->rsv1;
COPY_SHORT_BIG(presentation->length, b);
b += 2;
*b++ = presentation->contextID;
*b++ = presentation->rsv2;
*b++ = presentation->result;
*b++ = presentation->rsv3;
*length += 8;
if (presentation->abstractSyntax.length != 0) {
cond = streamSubItem(&presentation->abstractSyntax, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
}
transfer = (DUL_SUBITEM*)LST_Head(&presentation->transferSyntaxList);
if (transfer == NULL) return DUL_LISTERROR;
(void) LST_Position(&presentation->transferSyntaxList, (LST_NODE*)transfer);
while (transfer != NULL) {
if (transfer->length != 0) {
cond = streamSubItem(transfer, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
}
transfer = (DUL_SUBITEM*)LST_Next(&presentation->transferSyntaxList);
}
presentation = (PRV_PRESENTATIONCONTEXTITEM*)LST_Next(presentationContextList);
}
return EC_Normal;
}
/* streamUserInfo
**
** Purpose:
** Convert the stream user info part of the PDU into stream format
**
** Parameter Dictionary:
** userInfo The user info structure to be converted to stream format
** b The stream version (output)
** length Length of the stream version
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
streamUserInfo(DUL_USERINFO * userInfo, unsigned char *b,
unsigned long *length)
{
unsigned long subLength;
*length = 0;
*b++ = userInfo->type;
*b++ = userInfo->rsv1;
COPY_SHORT_BIG(userInfo->length, b);
b += 2;
*length += 4;
// stream user info sub-item 51H: maximum length
OFCondition cond = streamMaxLength(&userInfo->maxLength, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
// stream user info sub-item 52H: implementation class UID
cond = streamSubItem(&userInfo->implementationClassUID, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
// user info sub-item 53H (async operations) is not yet implemented!
#ifdef OLD_USER_INFO_SUB_ITEM_ORDER
/* prior DCMTK releases did not encode user information sub items
* in ascending order, i.e. they sent 55H followed by 54H and 56H.
* This behaviour has been "legalized" by DICOM CP 280 but is known
* to create problems with some other toolkits.
* Should be re-activated for testing purposes only.
*/
// stream user info sub-item 55H: implementation version name
if (userInfo->implementationVersionName.length != 0) {
cond = streamSubItem(&userInfo->implementationVersionName, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
}
#endif
// stream one or more user info sub-items 54H: SCP/SCU role selection
if (LST_Count(&userInfo->SCUSCPRoleList) != 0) {
cond = streamSCUSCPList(&userInfo->SCUSCPRoleList, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
}
#ifndef OLD_USER_INFO_SUB_ITEM_ORDER
// stream user info sub-item 55H: implementation version name
if (userInfo->implementationVersionName.length != 0) {
cond = streamSubItem(&userInfo->implementationVersionName, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
}
#endif
// stream one or more user info sub-items 56H: extended negotiation
if (userInfo->extNegList != NULL) {
cond = streamExtNegList(userInfo->extNegList, b, &subLength);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
}
// stream user info sub-item 58H: user identity negotiation
if (userInfo->usrIdent != NULL) {
cond = userInfo->usrIdent->stream(b, subLength /*out*/);
if (cond.bad())
return cond;
b += subLength;
*length += subLength;
}
return EC_Normal;
}
/* streamMaxLength
**
** Purpose:
** Convert the Max Length structure into stream format
**
** Parameter Dictionary:
** max Max Length structure to be converted to stream format
** b The stream version (output)
** length Length of the stream version
**
** Return Values:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
streamMaxLength(DUL_MAXLENGTH * max, unsigned char *b,
unsigned long *length)
{
*b++ = max->type;
*b++ = max->rsv1;
COPY_SHORT_BIG(max->length, b);
b += 2;
COPY_LONG_BIG(max->maxLength, b);
*length = 8;
return EC_Normal;
}
/* streamSCUSCPList
**
** Purpose:
** Convert the SCU-SCP list into stream format
**
** Parameter Dictionary:
** list SCU-SCP list
** b The stream version (output)
** length Length of the stream version
**
** Return Values:
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
streamSCUSCPList(LST_HEAD ** lst, unsigned char *b, unsigned long *length)
{
PRV_SCUSCPROLE * scuscpRole;
OFCondition cond = EC_Normal;
unsigned long localLength;
*length = 0;
scuscpRole = (PRV_SCUSCPROLE*)LST_Head(lst);
if (scuscpRole != NULL)
(void) LST_Position(lst, (LST_NODE*)scuscpRole);
while (scuscpRole != NULL) {
localLength = 0;
cond = streamSCUSCPRole(scuscpRole, b, &localLength);
if (cond.bad())
return cond;
*length += localLength;
b += localLength;
scuscpRole = (PRV_SCUSCPROLE*)LST_Next(lst);
}
return EC_Normal;
}
/* streamSCUSCPRole
**
** Purpose:
** Convert the SCU-SCP role list into stream format
**
** Parameter Dictionary:
** scuscpRole SCU-SCP role list that is to be converted to
** stream format
** b The stream version (output)
** length Length of the stream version
**
** Return Values:
**
** Notes:
**
** Algorithm:
** Description of the algorithm (optional) and any other notes.
*/
static OFCondition
streamSCUSCPRole(PRV_SCUSCPROLE * scuscpRole, unsigned char *b,
unsigned long *len)
{
unsigned short length;
length = scuscpRole->length;
*b++ = scuscpRole->type;
*b++ = scuscpRole->rsv1;
COPY_SHORT_BIG(length, b);
b += 2;
length = OFstatic_cast(unsigned short, strlen(scuscpRole->SOPClassUID));
COPY_SHORT_BIG(length, b);
b += 2;
(void) memcpy(b, scuscpRole->SOPClassUID, length);
b += length;
*b++ = scuscpRole->SCURole;
*b++ = scuscpRole->SCPRole;
*len = 4 + scuscpRole->length;
return EC_Normal;
}
static OFCondition
streamExtNegList(SOPClassExtendedNegotiationSubItemList *lst, unsigned char *b, unsigned long *length)
{
OFCondition cond = EC_Normal;
unsigned long localLength;
*length = 0;
if (lst == NULL)
return EC_Normal;
OFListIterator(SOPClassExtendedNegotiationSubItem*) i = lst->begin();
while (i != lst->end()) {
localLength = 0;
cond = streamExtNeg(*i, b, &localLength);
if (cond.bad())
return cond;
*length += localLength;
b += localLength;
++i;
}
return EC_Normal;
}
static OFCondition
streamExtNeg(SOPClassExtendedNegotiationSubItem* extNeg, unsigned char *b, unsigned long *len)
{
if (extNeg == NULL)
return EC_Normal;
extNeg->itemType = 0x56;
// recompute the length fields
extNeg->sopClassUIDLength = OFstatic_cast(unsigned short, extNeg->sopClassUID.length());
extNeg->itemLength = 2 + extNeg->sopClassUIDLength + extNeg->serviceClassAppInfoLength;
*b++ = extNeg->itemType;
*b++ = extNeg->reserved1;
COPY_SHORT_BIG(extNeg->itemLength, b);
b += 2;
COPY_SHORT_BIG(extNeg->sopClassUIDLength, b);
b += 2;
(void) memcpy(b, extNeg->sopClassUID.c_str(), extNeg->sopClassUIDLength);
b += extNeg->sopClassUIDLength;
(void) memcpy(b, extNeg->serviceClassAppInfo, extNeg->serviceClassAppInfoLength);
b += extNeg->serviceClassAppInfoLength;
*len = 4 + extNeg->itemLength;
return EC_Normal;
}
|