Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 1 | #! /usr/bin/perl |
| 2 | use strict; |
| 3 | use warnings; |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 4 | use mrw::Targets; |
| 5 | use mrw::Inventory; |
| 6 | use mrw::Util; |
| 7 | use Getopt::Long; # For parsing command line arguments |
| 8 | use YAML::Tiny qw(LoadFile); |
| 9 | |
| 10 | # Globals |
| 11 | my $serverwizFile = ""; |
| 12 | my $debug = 0; |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 13 | my $outputFile = ""; |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 14 | my $metaDataFile = ""; |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 15 | |
| 16 | # Command line argument parsing |
| 17 | GetOptions( |
| 18 | "i=s" => \$serverwizFile, # string |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 19 | "m=s" => \$metaDataFile, # string |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 20 | "o=s" => \$outputFile, # string |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 21 | "d" => \$debug, |
| 22 | ) |
| 23 | or printUsage(); |
| 24 | |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 25 | if (($serverwizFile eq "") or ($outputFile eq "") or ($metaDataFile eq "")) |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 26 | { |
| 27 | printUsage(); |
| 28 | } |
| 29 | |
| 30 | my $targetObj = Targets->new; |
| 31 | $targetObj->loadXML($serverwizFile); |
| 32 | |
| 33 | #open the mrw xml and the metaData file for the sensor. |
| 34 | #Fetch the sensorid,sensortype,class,object path from the mrw. |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 35 | #Get the metadata for that sensor from the metadata file. |
| 36 | #Merge the data into the outputfile |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 37 | |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 38 | open(my $fh, '>', $outputFile) or die "Could not open file '$outputFile' $!"; |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 39 | my $sensorTypeConfig = LoadFile($metaDataFile); |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 40 | |
| 41 | my @interestedTypes = keys %{$sensorTypeConfig}; |
| 42 | my %types; |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 43 | my %entityDict; |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 44 | |
| 45 | @types{@interestedTypes} = (); |
| 46 | |
| 47 | my @inventory = Inventory::getInventory($targetObj); |
| 48 | #Process all the targets in the XML |
| 49 | foreach my $target (sort keys %{$targetObj->getAllTargets()}) |
| 50 | { |
| 51 | my $sensorID = ''; |
| 52 | my $sensorType = ''; |
| 53 | my $sensorReadingType = ''; |
| 54 | my $path = ''; |
| 55 | my $obmcPath = ''; |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 56 | my $sensorName = ''; |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 57 | my $entityID = ''; |
| 58 | my $entityInstance = ''; |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 59 | |
| 60 | if ($targetObj->getTargetType($target) eq "unit-ipmi-sensor") { |
| 61 | |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 62 | $sensorName = $targetObj->getInstanceName($target); |
| 63 | #not interested in this sensortype |
| 64 | next if (not exists $types{$sensorName}); |
| 65 | |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 66 | $entityID = $targetObj->getAttribute($target, "IPMI_ENTITY_ID"); |
| 67 | if (exists ($entityDict{$entityID})) |
| 68 | { |
| 69 | $entityDict{$entityID}++; |
| 70 | } |
| 71 | else |
| 72 | { |
| 73 | $entityDict{$entityID} = '1'; |
| 74 | } |
| 75 | $entityInstance = $entityDict{$entityID}; |
| 76 | |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 77 | $sensorID = $targetObj->getAttribute($target, "IPMI_SENSOR_ID"); |
| 78 | |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 79 | $sensorType = hex($targetObj->getAttribute($target, |
| 80 | "IPMI_SENSOR_TYPE")); |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 81 | |
| 82 | $sensorReadingType = $targetObj->getAttribute($target, |
| 83 | "IPMI_SENSOR_READING_TYPE"); |
| 84 | |
| 85 | $path = $targetObj->getAttribute($target, "INSTANCE_PATH"); |
| 86 | |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 87 | #if there is ipmi sensor without sensorid or sensorReadingType or |
| 88 | #Instance path then die |
| 89 | |
| 90 | if ($sensorID eq '' or $sensorReadingType eq '' or $path eq '') { |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 91 | close $fh; |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 92 | die("sensor without info for target=$target"); |
| 93 | } |
| 94 | |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 95 | if (exists $sensorTypeConfig->{$sensorName}{"path"}) { |
| 96 | $obmcPath = $sensorTypeConfig->{$sensorName}->{"path"}; |
Dhruvaraj Subhashchandran | 6a6bd29 | 2017-07-12 06:39:09 -0500 | [diff] [blame] | 97 | } |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 98 | else { |
| 99 | #removing the string "instance:" from path |
| 100 | $path =~ s/^instance:/\//; |
| 101 | $obmcPath = Util::getObmcName(\@inventory,$path); |
| 102 | } |
| 103 | |
| 104 | # TODO via openbmc/openbmc#2144 - this fixup shouldn't be needed. |
| 105 | $obmcPath = checkOccPathFixup($obmcPath); |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 106 | |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 107 | if (not defined $obmcPath) { |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 108 | close $fh; |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 109 | die("Unable to get the obmc path for path=$path"); |
| 110 | } |
| 111 | |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 112 | print $fh $sensorID.":\n"; |
| 113 | |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 114 | my $serviceInterface = |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 115 | $sensorTypeConfig->{$sensorName}->{"serviceInterface"}; |
| 116 | my $readingType = $sensorTypeConfig->{$sensorName}->{"readingType"}; |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 117 | my $sensorNamePattern = $sensorTypeConfig->{$sensorName}->{"sensorNamePattern"}; |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 118 | |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 119 | my $debug = "$sensorID : $sensorName : $sensorType : "; |
| 120 | $debug .= "$sensorReadingType : $entityID : $entityInstance : "; |
| 121 | $debug .= "$obmcPath \n"; |
| 122 | printDebug("$debug"); |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 123 | |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 124 | writeToFile($sensorName,$sensorType,$sensorReadingType,$obmcPath,$serviceInterface, |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 125 | $readingType,$sensorTypeConfig,$entityID,$entityInstance,$sensorNamePattern,$fh); |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 126 | |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | } |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 130 | close $fh; |
| 131 | |
Marri Devender Rao | 17f0679 | 2018-03-20 03:15:10 -0500 | [diff] [blame^] | 132 | #Write the interfaces data into the output file |
| 133 | sub writeInterfaces |
| 134 | { |
| 135 | my ($interfaces, $fh) = @_; |
| 136 | print $fh " interfaces:"."\n"; |
| 137 | #Walk over all the interfces as it needs to be written |
| 138 | while (my ($interface,$properties) = each %{$interfaces}) { |
| 139 | print $fh " ".$interface.":\n"; |
| 140 | #walk over all the properties as it needs to be written |
| 141 | while (my ($dbusProperty,$dbusPropertyValue) = each %{$properties}) { |
| 142 | #will write property named "Property" first then |
| 143 | #other properties. |
| 144 | print $fh " ".$dbusProperty.":\n"; |
| 145 | while (my ($condition,$offsets) = each %{$dbusPropertyValue}) { |
| 146 | print $fh " $condition:\n"; |
| 147 | while (my ($offset,$values) = each %{$offsets}) { |
| 148 | print $fh " $offset:\n"; |
| 149 | while (my ($key,$value) = each %{$values}) { |
| 150 | print $fh " $key: ". $value."\n"; |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | } |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 157 | |
| 158 | #Get the metadata for the incoming sensortype from the loaded config file. |
| 159 | #Write the sensor data into the output file |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 160 | sub writeToFile |
| 161 | { |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 162 | my ($sensorName,$sensorType,$sensorReadingType,$path,$serviceInterface, |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 163 | $readingType,$sensorTypeConfig,$entityID,$entityInstance, |
| 164 | $sensorNamePattern,$fh) = @_; |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 165 | |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 166 | print $fh " entityID: ".$entityID."\n"; |
| 167 | print $fh " entityInstance: ".$entityInstance."\n"; |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 168 | print $fh " sensorType: ".$sensorType."\n"; |
| 169 | print $fh " path: ".$path."\n"; |
Dhruvaraj Subhashchandran | 6a6bd29 | 2017-07-12 06:39:09 -0500 | [diff] [blame] | 170 | |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 171 | print $fh " sensorReadingType: ".$sensorReadingType."\n"; |
Dhruvaraj Subhashchandran | 611b90f | 2017-07-27 08:05:42 -0500 | [diff] [blame] | 172 | print $fh " serviceInterface: ".$serviceInterface."\n"; |
| 173 | print $fh " readingType: ".$readingType."\n"; |
Tom Joseph | 98be5ac | 2018-01-24 01:37:30 +0530 | [diff] [blame] | 174 | print $fh " sensorNamePattern: ".$sensorNamePattern."\n"; |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 175 | |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 176 | my $interfaces = $sensorTypeConfig->{$sensorName}->{"interfaces"}; |
Marri Devender Rao | 17f0679 | 2018-03-20 03:15:10 -0500 | [diff] [blame^] | 177 | writeInterfaces($interfaces, $fh); |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 178 | } |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 179 | |
Marri Devender Rao | 17f0679 | 2018-03-20 03:15:10 -0500 | [diff] [blame^] | 180 | #Convert MRW OCC inventory path to application d-bus path |
Deepak Kodihalli | 00cef2c | 2017-08-12 11:34:37 -0500 | [diff] [blame] | 181 | sub checkOccPathFixup |
| 182 | { |
| 183 | my ($path) = @_; |
| 184 | if ("/system/chassis/motherboard/cpu0/occ" eq $path) { |
| 185 | return "/org/open_power/control/occ0"; |
| 186 | } |
| 187 | if ("/system/chassis/motherboard/cpu1/occ" eq $path) { |
| 188 | return "/org/open_power/control/occ1"; |
| 189 | } |
| 190 | return $path; |
| 191 | } |
| 192 | |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 193 | # Usage |
| 194 | sub printUsage |
| 195 | { |
| 196 | print " |
Ratan Gupta | 39747a0 | 2017-02-22 18:16:23 +0530 | [diff] [blame] | 197 | $0 -i [MRW filename] -m [SensorMetaData filename] -o [Output filename] [OPTIONS] |
Ratan Gupta | c736670 | 2017-02-22 18:05:44 +0530 | [diff] [blame] | 198 | Options: |
| 199 | -d = debug mode |
| 200 | \n"; |
| 201 | exit(1); |
| 202 | } |
| 203 | |
| 204 | # Helper function to put debug statements. |
| 205 | sub printDebug |
| 206 | { |
| 207 | my $str = shift; |
| 208 | print "DEBUG: ", $str, "\n" if $debug; |
| 209 | } |