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
|
/*
* ipmi_sdr.cpp
*
* Copyright (c) 2003,2004 by FORCE Computers
* Copyright (c) 2005-2007 by ESO Technologies.
*
* Note that this file is based on parts of OpenIPMI
* written by Corey Minyard <minyard@mvista.com>
* of MontaVista Software. Corey's code was helpful
* and many thanks go to him. He gave the permission
* to use this code in OpenHPI under BSD license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This
* file and program are licensed under a BSD style license. See
* the Copying file included with the OpenHPI distribution for
* full licensing terms.
*
* Authors:
* Thomas Kanngieser <thomas.kanngieser@fci.com>
* Pierre Sangouard <psangouard@eso-tech.com>
* Andy Cress <arcress@user.sourceforge.net>
*/
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#include <stdio.h>
#include "ipmi_mc.h"
#include "ipmi_cmd.h"
#include "ipmi_log.h"
#include "ipmi_utils.h"
#include "ipmi_text_buffer.h"
#include "ipmi_sensor_threshold.h"
static const char *repository_sdr_update_map[] =
{
"Unspecified",
"NonModal",
"Modal",
"Both"
};
static int repository_sdr_update_num = sizeof( repository_sdr_update_map )
/ sizeof( char * );
const char *
IpmiRepositorySdrUpdateToString( tIpmiRepositorySdrUpdate val )
{
if ( (int)val >= repository_sdr_update_num )
return "Invalid";
return repository_sdr_update_map[val];
}
struct cIpmiSdrTypeToName
{
tIpmiSdrType m_type;
const char *m_name;
};
static cIpmiSdrTypeToName type_to_name[] =
{
{ eSdrTypeFullSensorRecord , "FullSensor" },
{ eSdrTypeCompactSensorRecord , "CompactSensor" },
{ eSdrTypeEntityAssociationRecord , "EntityAssociation" },
{ eSdrTypeDeviceRelativeEntityAssociationRecord, "DeviceRelativeEntityAssociation" },
{ eSdrTypeGenericDeviceLocatorRecord , "GenericDeviceLocator" },
{ eSdrTypeFruDeviceLocatorRecord , "FruDeviceLocator" },
{ eSdrTypeMcDeviceLocatorRecord , "McDeviceLocator" },
{ eSdrTypeMcConfirmationRecord , "McConfirmation" },
{ eSdrTypeBmcMessageChannelInfoRecord , "BmcMessageChannelInfo" },
{ eSdrTypeOemRecord , "Oem" },
{ eSdrTypeUnknown, 0 }
};
const char *
IpmiSdrTypeToName( tIpmiSdrType type )
{
if ( type == eSdrTypeUnknown )
return "Unknown";
for( cIpmiSdrTypeToName *t = type_to_name; t->m_name; t++ )
if ( t->m_type == type )
return t->m_name;
return "Invalid";
}
static bool
Bit( unsigned char v, int bit )
{
return v & (1<<bit);
}
void
cIpmiSdr::DumpFullSensor( cIpmiLog &dump ) const
{
char str[256];
dump.Entry( "SlaveAddress" ) << m_data[5] << ";\n";
dump.Entry( "Channel" ) << (int)(m_data[6] >> 4) << ";\n";
dump.Entry( "Lun" ) << (int)(m_data[6] & 0x3) << ";\n";
dump.Entry( "SensorNum" ) << m_data[7] << ";\n";
tIpmiEntityId id = (tIpmiEntityId)m_data[8];
if ( !strcmp( IpmiEntityIdToString( id ), "Invalid" ) )
snprintf( str, sizeof(str), "0x%02x", id );
else
snprintf( str, sizeof(str), "%s", IpmiEntityIdToString( id ) );
dump.Entry( "EntityId" ) << str << ";\n";
dump.Entry( "EntityInstance" ) << (int)m_data[9] << ";\n";
dump.Entry( "InitScanning" ) << Bit( m_data[10], 6 ) << ";\n";
dump.Entry( "InitEvents" ) << Bit( m_data[10], 5 ) << ";\n";
dump.Entry( "InitThresholds" ) << Bit( m_data[10], 4 ) << ";\n";
dump.Entry( "InitHysteresis" ) << Bit( m_data[10], 3 ) << ";\n";
dump.Entry( "InitSensorType" ) << Bit( m_data[10], 2 ) << ";\n";
dump.Entry( "SensorInitPuEvents" ) << Bit( m_data[10], 1 ) << ";\n";
dump.Entry( "SensorInitPuScanning" ) << Bit( m_data[10], 0 ) << ";\n";
dump.Entry( "IgnoreIfNoEntity" ) << Bit( m_data[11], 7 ) << ";\n";
dump.Entry( "SupportsAutoRearm" ) << Bit( m_data[11], 6 ) << ";\n";
tIpmiHysteresisSupport hs = (tIpmiHysteresisSupport)((m_data[11] >> 4) & 3);
dump.Entry( "HysteresisSupport" ) << IpmiHysteresisSupportToString( hs ) << ";\n";
tIpmiThresholdAccessSuport ts = (tIpmiThresholdAccessSuport)((m_data[11] >> 2) & 3);
dump.Entry( "ThresholdAccess" ) << IpmiThresholdAccessSupportToString( ts ) << ";\n";
tIpmiEventSupport es = (tIpmiEventSupport)(m_data[11] & 3);
dump.Entry( "EventSupport" ) << IpmiEventSupportToString( es ) << ";\n";
tIpmiSensorType sensor_type = (tIpmiSensorType)m_data[12];
if ( !strcmp( IpmiSensorTypeToString( sensor_type ), "Invalid" ) )
snprintf( str, sizeof(str), "0x%02x", sensor_type );
else
snprintf( str, sizeof(str), "%s", IpmiSensorTypeToString( sensor_type ) );
dump.Entry( "SensorType" ) << str << ";\n";
tIpmiEventReadingType reading_type = (tIpmiEventReadingType)m_data[13];
if ( !strcmp( IpmiEventReadingTypeToString( reading_type ), "Invalid" ) )
snprintf( str, sizeof(str), "0x%02x", reading_type );
else
snprintf( str, sizeof(str), "%s", IpmiEventReadingTypeToString( reading_type ) );
dump.Entry( "EventReadingType" ) << str << ";\n";
if ( reading_type == eIpmiEventReadingTypeThreshold )
{
// assertion
unsigned short em = IpmiGetUint16( m_data + 14 );
IpmiThresholdEventMaskToString( em, str );
if ( str[0] == 0 )
strcat( str, "0" );
dump.Entry( "AssertionEventMask" ) << str << ";\n";
snprintf( str, sizeof(str), "0x%04x", em >> 12 );
dump.Entry( "LowerThresholdReadingMask" ) << str << ";\n";
// deassertion
em = IpmiGetUint16( m_data + 16 );
IpmiThresholdEventMaskToString( em, str );
if ( str[0] == 0 )
strcat( str, "0" );
dump.Entry( "DeassertionEventMask" ) << str << ";\n";
snprintf( str, sizeof(str), "0x%04x", em >> 12 );
dump.Entry( "UpperThresholdReadingMask" ) << str << ";\n";
// settable threshold
em = IpmiGetUint16( m_data + 18 );
IpmiThresholdMaskToString( em >> 8, str );
if ( str[0] == 0 )
strcat( str, "0" );
dump.Entry( "SettableThresholdsMask" ) << str << ";\n";
IpmiThresholdMaskToString( em & 0xff, str );
if ( str[0] == 0 )
strcat( str, "0" );
dump.Entry( "ReadableThresholdsMask" ) << str << ";\n";
tIpmiRateUnit ru = (tIpmiRateUnit)((m_data[20] >> 3) & 7);
dump.Entry( "RateUnit" ) << IpmiRateUnitToString( ru ) << ";\n";
tIpmiModifierUnit mu = (tIpmiModifierUnit)( (m_data[20] >> 1) & 3);
dump.Entry( "ModifierUnit" ) << IpmiModifierUnitToString( mu ) << ";\n";
dump.Entry( "Percentage" ) << ((m_data[20] & 1) == 1) << ";\n";
dump.Entry( "BaseUnit" ) << IpmiUnitTypeToString( (tIpmiUnitType)m_data[21] ) << ";\n";
dump.Entry( "ModifierUnit2" ) << IpmiUnitTypeToString( (tIpmiUnitType)m_data[22] ) << ";\n";
cIpmiSensorFactors sf;
sf.GetDataFromSdr( this );
dump.Entry( "AnalogDataFormat" ) << IpmiAnalogeDataFormatToString( sf.AnalogDataFormat() ) << ";\n";
dump.Entry( "Linearization" ) << IpmiLinearizationToString( sf.Linearization() ) << ";\n";
dump.Entry( "M" ) << sf.M() << ";\n";
dump.Entry( "Tolerance" ) << sf.Tolerance() << ";\n";
dump.Entry( "B" ) << sf.B() << ";\n";
dump.Entry( "Accuracy" ) << sf.Accuracy() << ";\n";
dump.Entry( "AccuracyExp" ) << sf.AccuracyExp() << ";\n";
dump.Entry( "RExp" ) << sf.RExp() << ";\n";
dump.Entry( "BExp" ) << sf.BExp() << ";\n";
bool v = m_data[30] & 1;
dump.Entry( "NominalReadingSpecified" ) << v << ";\n";
if ( v )
dump.Entry( "NominalReading" ) << m_data[31] << ";\n";
v = m_data[30] & 2;
dump.Entry( "NormalMaxSpecified" ) << v << ";\n";
if ( v )
dump.Entry( "NormalMax" ) << m_data[32] << ";\n";
v = m_data[30] & 4;
dump.Entry( "NormalMinSpecified" ) << v << ";\n";
if ( v )
dump.Entry( "NormalMin" ) << m_data[33] << ";\n";
dump.Entry( "SensorMax" ) << m_data[34] << ";\n";
dump.Entry( "SensorMin" ) << m_data[35] << ";\n";
dump.Entry( "UpperNonRecoverableThreshold" ) << m_data[36] << ";\n";
dump.Entry( "UpperCriticalThreshold" ) << m_data[37] << ";\n";
dump.Entry( "UpperNonCriticalThreshold" ) << m_data[38] << ";\n";
dump.Entry( "LowerNonRecoverableThreshold" ) << m_data[39] << ";\n";
dump.Entry( "LowerCriticalThreshold" ) << m_data[40] << ";\n";
dump.Entry( "LowerNonCriticalThreshold" ) << m_data[41] << ";\n";
dump.Entry( "PositiveGoingThresholdHysteresis" ) << m_data[42] << ";\n";
dump.Entry( "NegativeGoingThresholdHysteresis" ) << m_data[43] << ";\n";
}
else
{
// assertion
unsigned short em = IpmiGetUint16( m_data + 14 );
dump.Hex( true );
dump.Entry( "AssertionEventMask" ) << em << ";\n";
// deassertion
em = IpmiGetUint16( m_data + 16 );
dump.Entry( "DeassertionEventMask" ) << em << ";\n";
// event mask
em = IpmiGetUint16( m_data + 18 );
dump.Entry( "DiscreteReadingMask" ) << em << ";\n";
dump.Hex( false );
}
dump.Entry( "Oem" ) << m_data[46] << ";\n";
cIpmiTextBuffer tb;
tb.SetIpmi( m_data + 47 );
tb.GetAscii( str, 80 );
dump.Entry( "Id" ) << "\"" << str << "\";\n";
}
void
cIpmiSdr::DumpFruDeviceLocator( cIpmiLog &dump ) const
{
dump.Entry( "DeviceAccessAddress" ) << m_data[5] << ";\n";
if ( m_data[7] & 0x80 )
{
// logical FRU device
dump.Entry( "FruDeviceId" ) << (int)m_data[6] << ";\n";
}
else
{
// device is directly on IPMB
dump.Entry( "SlaveAddress" ) << m_data[6] << ";\n";
dump.Entry( "Lun" ) << (int)((m_data[7] >> 3) & 3) << ";\n";
}
dump.Entry( "LogicalDevice" ) << Bit(m_data[7], 7 ) << ";\n";
dump.Entry( "Channel" ) << (int)(m_data[8] >> 4) << ";\n";
dump.Entry( "DeviceType" ) << m_data[10] << ";\n";
dump.Entry( "DeviceTypeModifier" ) << m_data[11] << ";\n";
tIpmiEntityId id = (tIpmiEntityId)m_data[12];
char str[80];
if ( !strcmp( IpmiEntityIdToString( id ), "Invalid" ) )
snprintf( str, sizeof(str), "0x%02x", id );
else
snprintf( str, sizeof(str), "%s", IpmiEntityIdToString( id ) );
dump.Entry( "EntityId" ) << str << ";\n";
dump.Entry( "EntityInstance" ) << (int)m_data[13] << ";\n";
dump.Entry( "Oem" ) << m_data[14] << ";\n";
cIpmiTextBuffer tb;
tb.SetIpmi( m_data + 15 );
tb.GetAscii( str, 80 );
dump.Entry( "Id" ) << "\"" << str << "\";\n";
}
void
cIpmiSdr::DumpMcDeviceLocator( cIpmiLog &dump ) const
{
dump.Entry( "SlaveAddress" ) << m_data[5] << ";\n";
dump.Entry( "Channel" ) << (int)(m_data[6] & 0x0f) << ";\n";
dump.Entry( "AcpiSystemPower" ) << Bit( m_data[7], 7 ) << ";\n";
dump.Entry( "AcpiDevicePower" ) << Bit( m_data[7], 6 ) << ";\n";
dump.Entry( "ControllerLogInitAgentErrors" ) << Bit( m_data[7], 3 ) << ";\n";
dump.Entry( "LogInitializationAgentError" ) << Bit( m_data[7], 2 ) << ";\n";
dump.Entry( "EventMessageGeneration" ) << ( m_data[7] & 3 ) << ";\n";
dump.Entry( "ChassisSupport" ) << Bit( m_data[8], 7 ) << ";\n";
dump.Entry( "BridgeSupport" ) << Bit( m_data[8], 6 ) << ";\n";
dump.Entry( "IpmbEventGeneratorSupport" ) << Bit( m_data[8], 5 ) << ";\n";
dump.Entry( "IpmbEventReceiverSupport" ) << Bit( m_data[8], 4 ) << ";\n";
dump.Entry( "FruInventorySupport" ) << Bit( m_data[8], 3 ) << ";\n";
dump.Entry( "SelDeviceSupport" ) << Bit( m_data[8], 2 ) << ";\n";
dump.Entry( "SdrRepositorySupport" ) << Bit( m_data[8], 1 ) << ";\n";
dump.Entry( "SensorDeviceSupport" ) << Bit( m_data[8], 0 ) << ";\n";
tIpmiEntityId id = (tIpmiEntityId)m_data[12];
char str[80];
if ( !strcmp( IpmiEntityIdToString( id ), "Invalid" ) )
snprintf( str, sizeof(str), "0x%02x", id );
else
snprintf( str, sizeof(str), "%s", IpmiEntityIdToString( id ) );
dump.Entry( "EntityId" ) << str << ";\n";
dump.Entry( "EntityInstance" ) << (int)m_data[13] << ";\n";
dump.Entry( "Oem" ) << m_data[14] << ";\n";
cIpmiTextBuffer tb;
tb.SetIpmi( m_data + 15 );
tb.GetAscii( str, 80 );
dump.Entry( "Id" ) << "\"" << str << "\";\n";
}
void
cIpmiSdr::Dump( cIpmiLog &dump, const char *name ) const
{
char str[80];
snprintf( str, sizeof(str), "%sRecord", IpmiSdrTypeToName( m_type ) );
dump.Begin( str, name );
dump.Entry( "Type" ) << IpmiSdrTypeToName( m_type ) << "\n";
dump.Entry( "RecordId" ) << m_record_id << ";\n";
dump.Entry( "Version" ) << (int)m_major_version << ", "
<< (int)m_minor_version << ";\n";
switch( m_type )
{
case eSdrTypeFullSensorRecord:
DumpFullSensor( dump );
break;
case eSdrTypeFruDeviceLocatorRecord:
DumpFruDeviceLocator( dump );
break;
case eSdrTypeMcDeviceLocatorRecord:
DumpMcDeviceLocator( dump );
break;
default:
dump.Entry( "SDR Type " ) << m_type << ";\n";
break;
}
dump.End();
}
static void
IpmiSdrDestroyRecords( cIpmiSdr **&sdr, unsigned int &n )
{
if ( sdr == 0 )
return;
for( unsigned int i = 0; i < n; i++ )
{
assert( sdr[i] );
delete sdr[i];
}
delete [] sdr;
n = 0;
sdr = 0;
}
cIpmiSdrs::cIpmiSdrs( cIpmiMc *mc, bool device_sdr )
: m_mc( mc ), m_device_sdr( device_sdr ),
m_fetched( false ), m_major_version( 0 ), m_minor_version( 0 ),
m_last_addition_timestamp( 0 ), m_last_erase_timestamp( 0 ),
m_overflow( 0 ), m_update_mode( eIpmiRepositorySdrUpdateUnspecified ),
m_supports_delete_sdr( false ), m_supports_partial_add_sdr( false ),
m_supports_reserve_sdr( false ), m_supports_get_sdr_repository_allocation( false ),
m_reservation( 0 ), m_sdr_changed( false ),
m_num_sdrs( 0 ), m_sdrs( 0 )
{
for( int i = 0; i < 4; i++ )
m_lun_has_sensors[i] = false;
}
cIpmiSdrs::~cIpmiSdrs()
{
if ( m_sdrs )
IpmiSdrDestroyRecords( m_sdrs, m_num_sdrs );
}
cIpmiSdr *
cIpmiSdrs::ReadRecord( unsigned short record_id,
unsigned short &next_record_id,
tReadRecord &err, unsigned int lun )
{
cIpmiMsg msg;
cIpmiMsg rsp;
SaErrorT rv;
int offset = 0;
unsigned char data[dMaxSdrData];
int record_size = 0;
int read_len = 0;
cIpmiSdr *sdr;
memset( data, 0xaa, dMaxSdrData );
do
{
if ( m_device_sdr )
{
msg.m_netfn = eIpmiNetfnSensorEvent;
msg.m_cmd = eIpmiCmdGetDeviceSdr;
}
else
{
msg.m_netfn = eIpmiNetfnStorage;
msg.m_cmd = eIpmiCmdGetSdr;
}
msg.m_data_len = 6;
IpmiSetUint16( msg.m_data, m_reservation );
IpmiSetUint16( msg.m_data + 2, record_id );
msg.m_data[4] = offset;
if ( offset == 0 )
read_len = dSdrHeaderSize;
else
{
read_len = record_size - offset;
if ( read_len > dMaxSdrFetch )
read_len = dMaxSdrFetch;
}
msg.m_data[5] = read_len;
rv = m_mc->SendCommand( msg, rsp, lun );
if ( rv != SA_OK )
{
stdlog << "initial_sdr_fetch: Couldn't send GetSdr or GetDeviveSdr fetch: " << rv << " !\n";
err = eReadError;
return 0;
}
if ( rsp.m_data[0] == 0x80 )
{
// Data changed during fetch, retry. Only do this so many
// times before giving up.
stdlog << "SDR reservation lost 1.\n";
err = eReadReservationLost;
return 0;
}
if ( rsp.m_data[0] == eIpmiCcInvalidReservation )
{
stdlog << "SDR reservation lost 2.\n";
err = eReadReservationLost;
return 0;
}
if ( record_id == 0
&& ( (rsp.m_data[0] == eIpmiCcUnknownErr )
|| (rsp.m_data[0] == eIpmiCcNotPresent ) ) )
{
// We got an error fetching the first SDR, so the repository is
// probably empty. Just go on.
stdlog << "SDR reservation lost 3.\n";
err = eReadEndOfSdr;
return 0;
}
if ( rsp.m_data[0] != eIpmiCcOk )
{
stdlog << "SDR fetch error getting sdr " << record_id << ": "
<< rsp.m_data[0] << " !\n";
err = eReadError;
return 0;
}
if ( rsp.m_data_len != read_len + 3 )
{
stdlog << "Got an invalid amount of SDR data: " << rsp.m_data_len
<< ", expected " << read_len + 3 << " !\n";
err = eReadError;
return 0;
}
// copy the data
memcpy( data + offset, rsp.m_data + 3, read_len );
// header => get record size
if ( offset == 0 )
{
record_size = rsp.m_data[7] + dSdrHeaderSize;
next_record_id = IpmiGetUint16( rsp.m_data + 1 );
}
offset += read_len;
}
while( offset < record_size );
// create sdr
sdr = new cIpmiSdr;
memset( sdr, 0, sizeof( cIpmiSdr ));
sdr->m_record_id = IpmiGetUint16( data );
sdr->m_major_version = data[2] & 0xf;
sdr->m_minor_version = (data[2] >> 4) & 0xf;
sdr->m_type = (tIpmiSdrType)data[3];
// Hack to support 1.0 MCs
if ( (sdr->m_major_version == 1)
&& (sdr->m_minor_version == 0)
&& (sdr->m_type == eSdrTypeMcDeviceLocatorRecord))
{
data[8] = data[7];
data[7] = data[6];
data[6] = 0;
}
sdr->m_length = record_size;
memcpy( sdr->m_data, data, record_size );
err = eReadOk;
return sdr;
}
SaErrorT
cIpmiSdrs::Reserve(unsigned int lun)
{
cIpmiMsg msg;
cIpmiMsg rsp;
SaErrorT rv;
if ( !m_supports_reserve_sdr )
{
stdlog << "cIpmiSdrs::Reserve: Reserve SDR not supported\n";
return SA_ERR_HPI_INTERNAL_ERROR;
}
// Now get the reservation.
if ( m_device_sdr )
{
msg.m_netfn = eIpmiNetfnSensorEvent;
msg.m_cmd = eIpmiCmdReserveDeviceSdrRepository;
}
else
{
msg.m_netfn = eIpmiNetfnStorage;
msg.m_cmd = eIpmiCmdReserveSdrRepository;
}
msg.m_data_len = 0;
rv = m_mc->SendCommand( msg, rsp, lun );
if ( rv != SA_OK )
{
stdlog << "Couldn't send SDR reservation: " << rv << " !\n";
return rv;
}
if ( rsp.m_data[0] != 0)
{
if ( m_device_sdr
&& rsp.m_data[0] == eIpmiCcInvalidCmd )
{
// This is a special case. We always attempt a
// reservation with a device SDR (since there is nothing
// telling us if this is supported), if it fails then we
// just go on without the reservation.
m_supports_reserve_sdr = false;
m_reservation = 0;
return SA_OK;
}
stdlog << "Error getting SDR fetch reservation: " << rsp.m_data[0] << " !\n";
return SA_ERR_HPI_INVALID_PARAMS;
}
if ( rsp.m_data_len < 3 )
{
stdlog << "SDR Reservation data not long enough: " << rsp.m_data_len << " bytes!\n";
return SA_ERR_HPI_INVALID_DATA;
}
m_reservation = IpmiGetUint16( rsp.m_data + 1 );
return SA_OK;
}
SaErrorT
cIpmiSdrs::GetInfo( unsigned short &working_num_sdrs )
{
SaErrorT rv;
cIpmiMsg msg;
cIpmiMsg rsp;
unsigned int add_timestamp;
unsigned int erase_timestamp;
// sdr info
if ( m_device_sdr )
{
msg.m_netfn = eIpmiNetfnSensorEvent;
msg.m_cmd = eIpmiCmdGetDeviceSdrInfo;
}
else
{
msg.m_netfn = eIpmiNetfnStorage;
msg.m_cmd = eIpmiCmdGetSdrRepositoryInfo;
}
msg.m_data_len = 0;
rv = m_mc->SendCommand( msg, rsp );
if ( rv != SA_OK )
{
stdlog << "IpmiSdrsFetch: GetDeviceSdrInfoCmd or GetSdrRepositoryInfoCmd "
<< rv << ", " << strerror( rv ) << " !\n";
m_sdr_changed = true;
IpmiSdrDestroyRecords( m_sdrs, m_num_sdrs );
return rv;
}
if ( rsp.m_data[0] != 0 )
{
if ( m_device_sdr == false )
{
// The device doesn't support the get device SDR info
// command, so just assume some defaults.
working_num_sdrs = 0xfffe;
m_dynamic_population = false;
// Assume it uses reservations, if the reservation returns
// an error, then say that it doesn't.
m_supports_reserve_sdr = true;
m_lun_has_sensors[0] = true;
m_lun_has_sensors[1] = false;
m_lun_has_sensors[2] = false;
m_lun_has_sensors[3] = false;
add_timestamp = 0;
erase_timestamp = 0;
}
else
{
stdlog << "IPMI Error getting SDR info: " << rsp.m_data[0] << " !\n";
m_sdr_changed = true;
IpmiSdrDestroyRecords( m_sdrs, m_num_sdrs );
return SA_ERR_HPI_INVALID_PARAMS;
}
}
else if ( m_device_sdr )
{
// device SDR
if ( rsp.m_data_len < 3 )
{
stdlog << "SDR info is not long enough !\n";
m_sdr_changed = true;
IpmiSdrDestroyRecords( m_sdrs, m_num_sdrs );
return SA_ERR_HPI_INVALID_DATA;
}
working_num_sdrs = rsp.m_data[1];
m_dynamic_population = (rsp.m_data[2] & 0x80) == 0x80;
// Assume it uses reservations, if the reservation returns
// an error, then say that it doesn't.
m_supports_reserve_sdr = true;
m_lun_has_sensors[0] = (rsp.m_data[2] & 0x01) == 0x01;
m_lun_has_sensors[1] = (rsp.m_data[2] & 0x02) == 0x02;
m_lun_has_sensors[2] = (rsp.m_data[2] & 0x04) == 0x04;
m_lun_has_sensors[3] = (rsp.m_data[2] & 0x08) == 0x08;
if ( m_dynamic_population )
{
if ( rsp.m_data_len < 7 )
{
stdlog << "SDR info is not long enough !\n";
m_sdr_changed = 1;
IpmiSdrDestroyRecords( m_sdrs, m_num_sdrs );
return SA_ERR_HPI_INVALID_DATA;
}
add_timestamp = IpmiGetUint32( rsp.m_data + 3 );
}
else
add_timestamp = 0;
erase_timestamp = 0;
}
else
{
// repository SDR
if ( rsp.m_data_len < 15 )
{
stdlog << "SDR info is not long enough\n";
m_sdr_changed = true;
IpmiSdrDestroyRecords( m_sdrs, m_num_sdrs );
return SA_ERR_HPI_INVALID_DATA;
}
/* Pull pertinant info from the response. */
m_major_version = rsp.m_data[1] & 0xf;
m_minor_version = (rsp.m_data[1] >> 4) & 0xf;
working_num_sdrs = IpmiGetUint16( rsp.m_data + 2 );
m_overflow = (rsp.m_data[14] & 0x80) == 0x80;
m_update_mode = (tIpmiRepositorySdrUpdate)((rsp.m_data[14] >> 5) & 0x3);
m_supports_delete_sdr = (rsp.m_data[14] & 0x08) == 0x08;
m_supports_partial_add_sdr = (rsp.m_data[14] & 0x04) == 0x04;
m_supports_reserve_sdr = (rsp.m_data[14] & 0x02) == 0x02;
m_supports_get_sdr_repository_allocation
= (rsp.m_data[14] & 0x01) == 0x01;
add_timestamp = IpmiGetUint32( rsp.m_data + 6 );
erase_timestamp = IpmiGetUint32( rsp.m_data + 10 );
}
// If the timestamps still match, no need to re-fetch the repository
if ( m_fetched
&& ( add_timestamp == m_last_addition_timestamp )
&& ( erase_timestamp == m_last_erase_timestamp ) )
return -1;
m_last_addition_timestamp = add_timestamp;
m_last_erase_timestamp = erase_timestamp;
return SA_OK;
}
SaErrorT
cIpmiSdrs::ReadRecords( cIpmiSdr **&records, unsigned short &working_num_sdrs,
unsigned int &num, unsigned int lun )
{
int retry_count = 0;
bool loop = true;
unsigned short save_working = working_num_sdrs;
unsigned int save_num = num;
struct timespec ts;
ts.tv_sec = 0;
ts.tv_nsec = 0;
while( loop )
{
unsigned short next_record_id = 0;
working_num_sdrs = save_working;
num = save_num;
if ( retry_count++ == dMaxSdrFetchRetries )
{
stdlog << "Too many retries trying to fetch SDRs\n";
return SA_ERR_HPI_BUSY;
}
SaErrorT rv = Reserve(lun);
if ( rv )
return rv;
// read sdr records
while( 1 )
{
tReadRecord err;
unsigned short record_id = next_record_id;
cIpmiSdr *sdr = ReadRecord( record_id, next_record_id, err, lun );
if ( sdr == 0 )
{
if ( err == eReadReservationLost )
{
stdlog << "MC " << (unsigned char)m_mc->GetAddress() << " Lost SDR reservation " << retry_count << " - sleeping\n";
// Most likely the Shelf Manager is trying to access the device SDR too
// Give him a break and wait till it's done
ts.tv_sec = 5+2*retry_count;
nanosleep(&ts, NULL);
break;
}
if ( err != eReadEndOfSdr )
return SA_ERR_HPI_BUSY;
// SDR is empty
loop = false;
break;
}
GList *list = 0;
if ( sdr->m_type == eSdrTypeCompactSensorRecord )
{
// convert compact sensor record to full sensor records
list = CreateFullSensorRecords( sdr );
delete sdr;
}
else
list = g_list_append( 0, sdr );
while( list )
{
sdr = (cIpmiSdr *)list->data;
list = g_list_remove( list, sdr );
sdr->Dump( stdlog, "sdr" );
if ( num >= working_num_sdrs )
{
// resize records
cIpmiSdr **rec = new cIpmiSdr*[ working_num_sdrs + 10 ];
memcpy( rec, records, sizeof( cIpmiSdr * ) * working_num_sdrs );
delete [] records;
records = rec;
working_num_sdrs += 10;
}
records[num++] = sdr;
}
if ( next_record_id == 0xffff )
{
// finish
loop = false;
break;
}
}
}
return SA_OK;
}
GList *
cIpmiSdrs::CreateFullSensorRecords( cIpmiSdr *sdr )
{
int n = 1;
if ( sdr->m_data[23] & 0x0f )
n = sdr->m_data[23] & 0x0f;
GList *list = 0;
for( int i = 0; i < n; i++ )
{
cIpmiSdr *s = new cIpmiSdr;
*s = *sdr;
s->m_type = eSdrTypeFullSensorRecord;
memset( s->m_data + 23, 0, dMaxSdrData - 23 );
// sensor num
s->m_data[7] = sdr->m_data[7] + i;
// entity instance
if ( sdr->m_data[24] & 0x80 )
s->m_data[9] = sdr->m_data[9] + i;
// positive-going threshold hysteresis value
s->m_data[42] = sdr->m_data[25];
// negativ-going threshold hysteresis value
s->m_data[43] = sdr->m_data[26];
// oem
s->m_data[46] = sdr->m_data[30];
// id
int len = sdr->m_data[31] & 0x3f;
int val = (sdr->m_data[24] & 0x7f) + i;
memcpy( s->m_data + 47, sdr->m_data + 31, len + 1 );
if (n > 1)
{
int base = 0;
int start = 0;
if (( sdr->m_data[23] & 0x30 ) == 0 )
{
// numeric
base = 10;
start = '0';
}
else if (( sdr->m_data[23] & 0x30 ) == 0x10 )
{
// alpha
base = 26;
start = 'A';
}
if ( base )
{
// add id string postfix
if ( val / base > 0 )
{
s->m_data[48+len] = (val / base) + start;
len++;
}
s->m_data[48+len] = (val % base) + start;
len++;
s->m_data[48+len] = 0;
s->m_data[47] = (sdr->m_data[31] & 0xc0) | len;
}
}
list = g_list_append( list, s );
}
return list;
}
SaErrorT
cIpmiSdrs::Fetch()
{
SaErrorT rv;
cIpmiSdr **records;
unsigned short working_num_sdrs;
m_sdr_changed = false;
assert( m_mc );
if ( m_device_sdr )
{
m_device_sdr = m_mc->ProvidesDeviceSdrs(); /* added ARCress 09/21/06 */
// if ( !m_mc->ProvidesDeviceSdrs() ) return SA_ERR_HPI_NOT_PRESENT;
}
else if ( !m_mc->SdrRepositorySupport() )
return SA_ERR_HPI_NOT_PRESENT;
// working num sdrs is just an estimation
rv = GetInfo( working_num_sdrs );
// sdr records are up to date
if ( rv == -1 )
return SA_OK;
if ( rv )
return rv;
m_sdr_changed = true;
IpmiSdrDestroyRecords( m_sdrs, m_num_sdrs );
// because working_num_sdrs is an estimation
// read the sdr to get the real number
if ( working_num_sdrs == 0 )
working_num_sdrs = 1;
// read sdr
unsigned int num = 0;
records = new cIpmiSdr *[working_num_sdrs];
rv = SA_OK;
if ( m_device_sdr )
{
for( unsigned int i = 0; rv == SA_OK && i < 4; i++ )
if ( m_lun_has_sensors[i] )
rv = ReadRecords( records, working_num_sdrs, num, i );
}
else
rv = ReadRecords( records, working_num_sdrs, num, 0 );
if ( rv != SA_OK )
{
IpmiSdrDestroyRecords( records, num );
return rv;
}
if ( num == 0 )
{
delete [] records;
m_sdrs = 0;
m_num_sdrs = 0;
return SA_OK;
}
if ( num == working_num_sdrs )
{
m_sdrs = records;
m_num_sdrs = working_num_sdrs;
return SA_OK;
}
m_sdrs = new cIpmiSdr *[num];
memcpy( m_sdrs, records, num * sizeof( cIpmiSdr * ) );
m_num_sdrs = num;
delete [] records;
return SA_OK;
}
void
cIpmiSdrs::Dump( cIpmiLog &dump, const char *name ) const
{
unsigned int i;
char str[80];
if ( dump.IsRecursive() )
{
for( i = 0; i < m_num_sdrs; i++ )
{
snprintf( str, sizeof(str), "Sdr%02x_%d", m_mc->GetAddress(), i );
m_sdrs[i]->Dump( dump, str );
}
}
dump.Begin( "Sdr", name );
if ( m_device_sdr )
{
dump.Entry( "DynamicPopulation" ) << m_dynamic_population << ";\n";
dump.Entry( "LunHasSensors" )
<< m_lun_has_sensors[0] << ", "
<< m_lun_has_sensors[1] << ", "
<< m_lun_has_sensors[2] << ", "
<< m_lun_has_sensors[3] << ";\n";
}
else
{
dump.Entry( "Version" ) << m_major_version << ", "
<< m_minor_version << ";\n";
dump.Entry( "Overflow" ) << m_overflow << ";\n";
dump.Entry( "UpdateMode" ) << "dMainSdrUpdate"
<< IpmiRepositorySdrUpdateToString( m_update_mode ) << ";\n";
dump.Entry( "SupportsDeleteSdr" ) << m_supports_delete_sdr << ";\n";
dump.Entry( "SupportsPartialAddSdr" ) << m_supports_partial_add_sdr << ";\n";
dump.Entry( "SupportsReserveSdr" ) << m_supports_reserve_sdr << ";\n";
dump.Entry( "SupportsGetSdrRepositoryAllocation" ) << m_supports_get_sdr_repository_allocation << ";\n";
}
if ( dump.IsRecursive() && m_num_sdrs )
{
dump.Entry( "Sdr" );
for( i = 0; i < m_num_sdrs; i++ )
{
if ( i != 0 )
dump << ", ";
snprintf( str, sizeof(str), "Sdr%02x_%d", m_mc->GetAddress(), i );
dump << str;
}
dump << ";\n";
}
dump.End();
}
cIpmiSdr *
cIpmiSdrs::FindSdr( cIpmiMc *mc )
{
for( unsigned int i = 0; i < NumSdrs(); i++ )
{
cIpmiSdr *sdr = Sdr( i );
if ( sdr->m_type != eSdrTypeMcDeviceLocatorRecord )
continue;
if ( mc->GetAddress() == (unsigned int)sdr->m_data[5]
&& mc->GetChannel() == (unsigned int)(sdr->m_data[6] & 0x0f) )
return sdr;
}
return 0;
}
// Here we try to find the FRU that is the "parent"
// of the entity this SDR is attached to
// The algorithm here is *not* sophisticated at all
// The assumption is that most of the SDR will be attached
// directly to a FRU so it was optimized for this case
// Also only one level of parenthood is assumed - sorry Grand Pa !
unsigned int
cIpmiSdrs::FindParentFru( SaHpiEntityTypeT type,
SaHpiEntityLocationT instance,
SaHpiEntityTypeT & parent_type,
SaHpiEntityLocationT & parent_instance
)
{
SaHpiEntityTypeT mc_type = SAHPI_ENT_UNSPECIFIED;
SaHpiEntityLocationT mc_instance = 0;
parent_type = SAHPI_ENT_UNSPECIFIED;
parent_instance = 0;
// First look for FRUs themselves
for( unsigned int i = 0; i < NumSdrs(); i++ )
{
cIpmiSdr *sdr = Sdr( i );
if ( sdr->m_type == eSdrTypeMcDeviceLocatorRecord )
{
mc_type = (SaHpiEntityTypeT)sdr->m_data[12];
mc_instance = (SaHpiEntityLocationT)sdr->m_data[13];
if ( ( type != (SaHpiEntityTypeT)sdr->m_data[12] )
|| ( instance != (SaHpiEntityLocationT)sdr->m_data[13] ) )
continue;
parent_type = type;
parent_instance = instance;
return 0;
}
else if ( sdr->m_type == eSdrTypeFruDeviceLocatorRecord )
{
if ( (( sdr->m_data[7] & 0x80) == 0 )
|| ( type != (SaHpiEntityTypeT)sdr->m_data[12] )
|| ( instance != (SaHpiEntityLocationT)sdr->m_data[13] ) )
continue;
parent_type = type;
parent_instance = instance;
return sdr->m_data[6];
}
}
stdlog << "Entity ID " << type << ", Instance " << instance << " is not a FRU\n";
// SDR entity is not a FRU: look for association records
for( unsigned int i = 0; i < NumSdrs(); i++ )
{
cIpmiSdr *sdr = Sdr( i );
if ( sdr->m_type == eSdrTypeEntityAssociationRecord )
{
// Entity range
if ( sdr->m_data[7] & 0x80 )
{
if (( type == (SaHpiEntityTypeT)sdr->m_data[8] )
&& ( type == (SaHpiEntityTypeT)sdr->m_data[10] )
&& ( ( instance >= (SaHpiEntityLocationT)sdr->m_data[9] )
&& ( instance <= (SaHpiEntityLocationT)sdr->m_data[11] )))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[12] )
&& ( type == (SaHpiEntityTypeT)sdr->m_data[14] )
&& ( ( instance >= (SaHpiEntityLocationT)sdr->m_data[13] )
&& ( instance <= (SaHpiEntityLocationT)sdr->m_data[15] )))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
}
// Entity list
else
{
if (( type == (SaHpiEntityTypeT)sdr->m_data[8] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[9] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[10] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[11] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[12] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[13] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[14] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[15] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
}
}
else if ( sdr->m_type == eSdrTypeDeviceRelativeEntityAssociationRecord )
{
// Entity range
if ( sdr->m_data[9] & 0x80 )
{
if (( type == (SaHpiEntityTypeT)sdr->m_data[12] )
&& ( type == (SaHpiEntityTypeT)sdr->m_data[16] )
&& ( ( instance >= (SaHpiEntityLocationT)sdr->m_data[13] )
&& ( instance <= (SaHpiEntityLocationT)sdr->m_data[17] )))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[20] )
&& ( type == (SaHpiEntityTypeT)sdr->m_data[24] )
&& ( ( instance >= (SaHpiEntityLocationT)sdr->m_data[21] )
&& ( instance <= (SaHpiEntityLocationT)sdr->m_data[25] )))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
}
// Entity list
else
{
if (( type == (SaHpiEntityTypeT)sdr->m_data[12] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[13] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[16] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[17] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[20] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[21] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
if (( type == (SaHpiEntityTypeT)sdr->m_data[24] )
&& ( instance == (SaHpiEntityLocationT)sdr->m_data[25] ))
{
parent_type = (SaHpiEntityTypeT)sdr->m_data[5];
parent_instance = (SaHpiEntityLocationT)sdr->m_data[6];
break;
}
}
}
}
// Didn't find proper association record
if ( parent_type == SAHPI_ENT_UNSPECIFIED )
{
stdlog << "WARNING : Entity ID " << type << ", Instance " << instance << " did not find parent FRU\n";
stdlog << "WARNING : Defaulting to FRU 0, Entity ID " << mc_type << ", Instance " << mc_instance << "\n";
// We didn't find an exact match
// Since a lot of ATCA boards have wrong SDRs
// we default the parent to the MC itself
parent_type = mc_type;
parent_instance = mc_instance;
return 0;
}
stdlog << "Entity ID " << type << ", Instance " << instance << " parent ID " << parent_type << ", Instance " << parent_instance << "\n";
// We found the parent now we want its FRU number
// We already have MC == FRU #0 data
if (( parent_type == mc_type )
&& ( parent_instance == mc_instance ))
return 0;
// Now look for FRUs other than #0
for( unsigned int i = 0; i < NumSdrs(); i++ )
{
cIpmiSdr *sdr = Sdr( i );
if ( sdr->m_type == eSdrTypeFruDeviceLocatorRecord )
{
if ( (( sdr->m_data[7] & 0x80) == 0 )
|| ( parent_type != (SaHpiEntityTypeT)sdr->m_data[12] )
|| ( parent_instance != (SaHpiEntityLocationT)sdr->m_data[13] ) )
continue;
return sdr->m_data[6];
}
}
stdlog << "WARNING : Entity ID " << type << ", Instance " << instance << " did not find parent FRU\n";
stdlog << "WARNING : Defaulting to FRU 0, Entity ID " << mc_type << ", Instance " << mc_instance << "\n";
// We didn't find an exact match
// Since a lot of ATCA boards have wrong SDRs
// we default the parent to the MC itself
parent_type = mc_type;
parent_instance = mc_instance;
return 0;
}
|