blob: ca7e29c3dd41e7089febfcc580c2e02ddc16e9e6 [file] [log] [blame]
Eddie James6d873712017-09-01 11:29:07 -05001#include "config.h"
Gunnar Millsb0ce9962018-09-07 13:39:10 -05002
Gunnar Mills392f2942017-04-12 11:04:37 -05003#include "version.hpp"
4
Gunnar Millsb0ce9962018-09-07 13:39:10 -05005#include "xyz/openbmc_project/Common/error.hpp"
6
7#include <openssl/sha.h>
8
9#include <fstream>
10#include <iostream>
11#include <phosphor-logging/elog-errors.hpp>
12#include <phosphor-logging/log.hpp>
13#include <sstream>
14#include <stdexcept>
15#include <string>
16
Gunnar Mills392f2942017-04-12 11:04:37 -050017namespace phosphor
18{
19namespace software
20{
21namespace manager
22{
23
24using namespace phosphor::logging;
Gunnar Millsaae1b2b2017-10-06 13:42:39 -050025using Argument = xyz::openbmc_project::Common::InvalidArgument;
26using namespace sdbusplus::xyz::openbmc_project::Common::Error;
Gunnar Mills392f2942017-04-12 11:04:37 -050027
Gunnar Millscebd1022017-04-17 16:10:15 -050028std::string Version::getValue(const std::string& manifestFilePath,
29 std::string key)
Gunnar Mills392f2942017-04-12 11:04:37 -050030{
Gunnar Millscebd1022017-04-17 16:10:15 -050031 key = key + "=";
32 auto keySize = key.length();
Gunnar Mills392f2942017-04-12 11:04:37 -050033
34 if (manifestFilePath.empty())
35 {
36 log<level::ERR>("Error MANIFESTFilePath is empty");
Gunnar Millsaae1b2b2017-10-06 13:42:39 -050037 elog<InvalidArgument>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -060038 Argument::ARGUMENT_NAME("manifestFilePath"),
39 Argument::ARGUMENT_VALUE(manifestFilePath.c_str()));
Gunnar Mills392f2942017-04-12 11:04:37 -050040 }
41
Gunnar Millscebd1022017-04-17 16:10:15 -050042 std::string value{};
Gunnar Mills392f2942017-04-12 11:04:37 -050043 std::ifstream efile;
44 std::string line;
Adriana Kobylak2285fe02018-02-27 15:36:59 -060045 efile.exceptions(std::ifstream::failbit | std::ifstream::badbit |
Gunnar Millsaae1b2b2017-10-06 13:42:39 -050046 std::ifstream::eofbit);
Gunnar Mills392f2942017-04-12 11:04:37 -050047
48 // Too many GCC bugs (53984, 66145) to do this the right way...
49 try
50 {
51 efile.open(manifestFilePath);
52 while (getline(efile, line))
53 {
Gunnar Millscebd1022017-04-17 16:10:15 -050054 if (line.compare(0, keySize, key) == 0)
Gunnar Mills392f2942017-04-12 11:04:37 -050055 {
Gunnar Millscebd1022017-04-17 16:10:15 -050056 value = line.substr(keySize);
Gunnar Mills392f2942017-04-12 11:04:37 -050057 break;
58 }
59 }
60 efile.close();
61 }
62 catch (const std::exception& e)
63 {
Gunnar Millscebd1022017-04-17 16:10:15 -050064 log<level::ERR>("Error in reading MANIFEST file");
Gunnar Mills392f2942017-04-12 11:04:37 -050065 }
66
Gunnar Millscebd1022017-04-17 16:10:15 -050067 return value;
Gunnar Mills392f2942017-04-12 11:04:37 -050068}
69
70std::string Version::getId(const std::string& version)
71{
Gunnar Mills392f2942017-04-12 11:04:37 -050072
73 if (version.empty())
74 {
Gunnar Millscebd1022017-04-17 16:10:15 -050075 log<level::ERR>("Error version is empty");
Gunnar Millsaae1b2b2017-10-06 13:42:39 -050076 elog<InvalidArgument>(Argument::ARGUMENT_NAME("Version"),
77 Argument::ARGUMENT_VALUE(version.c_str()));
Gunnar Mills392f2942017-04-12 11:04:37 -050078 }
79
Saqib Khan26a960d2017-09-19 14:23:28 -050080 unsigned char digest[SHA512_DIGEST_LENGTH];
81 SHA512_CTX ctx;
82 SHA512_Init(&ctx);
83 SHA512_Update(&ctx, version.c_str(), strlen(version.c_str()));
84 SHA512_Final(digest, &ctx);
Adriana Kobylak2285fe02018-02-27 15:36:59 -060085 char mdString[SHA512_DIGEST_LENGTH * 2 + 1];
Saqib Khan26a960d2017-09-19 14:23:28 -050086 for (int i = 0; i < SHA512_DIGEST_LENGTH; i++)
87 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -060088 snprintf(&mdString[i * 2], 3, "%02x", (unsigned int)digest[i]);
Saqib Khan26a960d2017-09-19 14:23:28 -050089 }
90
91 // Only need 8 hex digits.
92 std::string hexId = std::string(mdString);
93 return (hexId.substr(0, 8));
Gunnar Mills392f2942017-04-12 11:04:37 -050094}
95
Saqib Khan1eef62d2017-08-10 15:29:34 -050096std::string Version::getBMCVersion(const std::string& releaseFilePath)
Saqib Khanba239882017-05-26 08:41:54 -050097{
98 std::string versionKey = "VERSION_ID=";
99 std::string version{};
100 std::ifstream efile;
101 std::string line;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500102 efile.open(releaseFilePath);
Saqib Khanba239882017-05-26 08:41:54 -0500103
104 while (getline(efile, line))
105 {
106 if (line.substr(0, versionKey.size()).find(versionKey) !=
107 std::string::npos)
108 {
109 std::size_t pos = line.find_first_of('"') + 1;
110 version = line.substr(pos, line.find_last_of('"') - pos);
111 break;
112 }
113 }
114 efile.close();
115
116 if (version.empty())
117 {
118 log<level::ERR>("Error BMC current version is empty");
Gunnar Millsaae1b2b2017-10-06 13:42:39 -0500119 elog<InternalFailure>();
Saqib Khanba239882017-05-26 08:41:54 -0500120 }
121
122 return version;
123}
124
Eddie James6d873712017-09-01 11:29:07 -0500125bool Version::isFunctional()
126{
127 return versionStr == getBMCVersion(OS_RELEASE_FILE);
128}
129
Saqib Khanee13e832017-10-23 12:53:11 -0500130void Delete::delete_()
131{
132 if (parent.eraseCallback)
133 {
134 parent.eraseCallback(parent.getId(parent.version()));
135 }
136}
137
Gunnar Mills392f2942017-04-12 11:04:37 -0500138} // namespace manager
139} // namespace software
Gunnar Millsfa34e022018-09-04 10:05:45 -0500140} // namespace phosphor