Gunnar Mills | e91d321 | 2017-04-19 15:42:47 -0500 | [diff] [blame] | 1 | #include <string> |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 2 | #include <experimental/filesystem> |
| 3 | #include <stdlib.h> |
| 4 | #include <cstring> |
| 5 | #include <stdio.h> |
| 6 | #include <unistd.h> |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 7 | #include <algorithm> |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 8 | #include <sys/wait.h> |
| 9 | #include <sys/stat.h> |
| 10 | #include <phosphor-logging/log.hpp> |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 11 | #include <phosphor-logging/elog.hpp> |
| 12 | #include <elog-errors.hpp> |
| 13 | #include <xyz/openbmc_project/Software/Version/error.hpp> |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 14 | #include "config.h" |
| 15 | #include "version.hpp" |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 16 | #include "watch.hpp" |
Gunnar Mills | e91d321 | 2017-04-19 15:42:47 -0500 | [diff] [blame] | 17 | #include "image_manager.hpp" |
| 18 | |
| 19 | namespace phosphor |
| 20 | { |
| 21 | namespace software |
| 22 | { |
| 23 | namespace manager |
| 24 | { |
| 25 | |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 26 | using namespace phosphor::logging; |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 27 | using namespace sdbusplus::xyz::openbmc_project::Software::Version::Error; |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 28 | namespace fs = std::experimental::filesystem; |
| 29 | |
| 30 | struct RemovablePath |
| 31 | { |
| 32 | fs::path path; |
| 33 | |
| 34 | RemovablePath(const fs::path& path) : path(path) {} |
| 35 | ~RemovablePath() |
| 36 | { |
| 37 | fs::remove_all(path); |
| 38 | } |
| 39 | }; |
| 40 | |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 41 | int Manager::processImage(const std::string& tarFilePath) |
Gunnar Mills | e91d321 | 2017-04-19 15:42:47 -0500 | [diff] [blame] | 42 | { |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 43 | if (!fs::is_regular_file(tarFilePath)) |
| 44 | { |
| 45 | log<level::ERR>("Error tarball does not exist", |
| 46 | entry("FILENAME=%s", tarFilePath)); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 47 | report<ManifestFileFailure>(xyz::openbmc_project::Software::Version:: |
| 48 | ManifestFileFailure::PATH( |
| 49 | tarFilePath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 50 | return -1; |
| 51 | |
| 52 | } |
| 53 | RemovablePath tarPathRemove(tarFilePath); |
| 54 | fs::path tmpDirPath(std::string{IMG_UPLOAD_DIR}); |
| 55 | tmpDirPath /= "imageXXXXXX"; |
| 56 | |
| 57 | // Need tmp dir to write MANIFEST file to. |
| 58 | if (!mkdtemp(const_cast<char*>(tmpDirPath.c_str()))) |
| 59 | { |
| 60 | log<level::ERR>("Error occured during mkdtemp", |
| 61 | entry("ERRNO=%d", errno)); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 62 | report<InternalFailure>(xyz::openbmc_project::Software::Version:: |
| 63 | InternalFailure::FAIL("mkdtemp")); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 64 | return -1; |
| 65 | } |
| 66 | |
| 67 | RemovablePath tmpDirRemove(tmpDirPath); |
| 68 | fs::path manifestPath = tmpDirPath; |
| 69 | manifestPath /= MANIFEST_FILE_NAME; |
| 70 | int status = 0; |
| 71 | pid_t pid = fork(); |
| 72 | |
| 73 | // Get the MANIFEST FILE |
| 74 | if (pid == 0) |
| 75 | { |
| 76 | // child process |
| 77 | execl("/bin/tar", "tar", "-xf", tarFilePath.c_str(), MANIFEST_FILE_NAME, |
| 78 | "-C", tmpDirPath.c_str(), (char*)0); |
| 79 | // execl only returns on fail |
| 80 | log<level::ERR>("Failed to untar file", |
| 81 | entry("FILENAME=%s", tarFilePath)); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 82 | report<ManifestFileFailure>(xyz::openbmc_project::Software::Version:: |
| 83 | ManifestFileFailure::PATH( |
| 84 | manifestPath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 85 | return -1; |
| 86 | } |
| 87 | else if (pid > 0) |
| 88 | { |
| 89 | waitpid(pid, &status, 0); |
| 90 | } |
| 91 | else |
| 92 | { |
| 93 | log<level::ERR>("fork() failed."); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 94 | report<InternalFailure>(xyz::openbmc_project::Software::Version:: |
| 95 | InternalFailure::FAIL("fork")); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 96 | return -1; |
| 97 | } |
| 98 | |
| 99 | // Verify the manifest file |
| 100 | if (!fs::is_regular_file(manifestPath)) |
| 101 | { |
| 102 | log<level::ERR>("Error No manifest file"); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 103 | report<ManifestFileFailure>(xyz::openbmc_project::Software::Version:: |
| 104 | ManifestFileFailure::PATH( |
| 105 | manifestPath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 106 | return -1; |
| 107 | } |
| 108 | |
| 109 | // Get version |
| 110 | auto version = Version::getValue(manifestPath.string(), "version"); |
| 111 | if (version.empty()) |
| 112 | { |
| 113 | log<level::ERR>("Error unable to read version from manifest file"); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 114 | report<ManifestFileFailure>(xyz::openbmc_project::Software::Version:: |
| 115 | ManifestFileFailure::PATH( |
| 116 | manifestPath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 117 | return -1; |
| 118 | } |
| 119 | |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 120 | // Get purpose |
| 121 | auto purposeString = Version::getValue(manifestPath.string(), "purpose"); |
| 122 | if (purposeString.empty()) |
| 123 | { |
| 124 | log<level::ERR>("Error unable to read purpose from manifest file"); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 125 | report<ManifestFileFailure>(xyz::openbmc_project::Software::Version:: |
| 126 | ManifestFileFailure::PATH( |
| 127 | manifestPath.c_str())); |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 128 | return -1; |
| 129 | } |
| 130 | |
| 131 | std::transform(purposeString.begin(), purposeString.end(), |
| 132 | purposeString.begin(), ::tolower); |
| 133 | |
| 134 | auto purpose = Version::VersionPurpose::Unknown; |
| 135 | if (purposeString.compare("bmc") == 0) |
| 136 | { |
| 137 | purpose = Version::VersionPurpose::BMC; |
| 138 | } |
| 139 | else if (purposeString.compare("host") == 0) |
| 140 | { |
| 141 | purpose = Version::VersionPurpose::Host; |
| 142 | } |
| 143 | else if (purposeString.compare("system") == 0) |
| 144 | { |
| 145 | purpose = Version::VersionPurpose::System; |
| 146 | } |
| 147 | else if (purposeString.compare("other") == 0) |
| 148 | { |
| 149 | purpose = Version::VersionPurpose::Other; |
| 150 | } |
| 151 | |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 152 | // Compute id |
| 153 | auto id = Version::getId(version); |
| 154 | |
| 155 | fs::path imageDirPath = std::string{IMG_UPLOAD_DIR}; |
| 156 | imageDirPath /= id; |
| 157 | |
Gunnar Mills | f576bca | 2017-05-18 13:40:39 -0500 | [diff] [blame] | 158 | if (fs::exists(imageDirPath)) |
| 159 | { |
| 160 | fs::remove_all(imageDirPath); |
| 161 | } |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 162 | if (mkdir(imageDirPath.c_str(), S_IRWXU) != 0) |
| 163 | { |
| 164 | log<level::ERR>("Error occured during mkdir", |
| 165 | entry("ERRNO=%d", errno)); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 166 | report<InternalFailure>(xyz::openbmc_project::Software::Version:: |
| 167 | InternalFailure::FAIL("mkdir")); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 168 | return -1; |
| 169 | } |
| 170 | |
| 171 | // Untar tarball |
Gunnar Mills | 9ec18ef | 2017-05-24 11:10:46 -0500 | [diff] [blame] | 172 | auto rc = unTar(tarFilePath, imageDirPath.string()); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 173 | if (rc < 0) |
| 174 | { |
| 175 | log<level::ERR>("Error occured during untar"); |
| 176 | return -1; |
| 177 | } |
| 178 | |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 179 | // Create Version object |
| 180 | auto objPath = std::string{SOFTWARE_OBJPATH} + '/' + id; |
| 181 | |
| 182 | this->versions.insert(std::make_pair( |
| 183 | id, |
| 184 | std::make_unique<Version>( |
| 185 | this->bus, |
| 186 | objPath, |
| 187 | version, |
| 188 | purpose, |
| 189 | imageDirPath.string()))); |
| 190 | |
Gunnar Mills | e91d321 | 2017-04-19 15:42:47 -0500 | [diff] [blame] | 191 | return 0; |
| 192 | } |
| 193 | |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 194 | int Manager::unTar(const std::string& tarFilePath, |
| 195 | const std::string& extractDirPath) |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 196 | { |
| 197 | if (tarFilePath.empty()) |
| 198 | { |
| 199 | log<level::ERR>("Error TarFilePath is empty"); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 200 | report<UnTarFailure>(xyz::openbmc_project::Software::Version:: |
| 201 | UnTarFailure::PATH(tarFilePath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 202 | return -1; |
| 203 | } |
| 204 | if (extractDirPath.empty()) |
| 205 | { |
| 206 | log<level::ERR>("Error ExtractDirPath is empty"); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 207 | report<UnTarFailure>(xyz::openbmc_project::Software::Version:: |
| 208 | UnTarFailure::PATH(tarFilePath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 209 | return -1; |
| 210 | } |
| 211 | |
| 212 | log<level::INFO>("Untaring", |
| 213 | entry("FILENAME=%s", tarFilePath), |
| 214 | entry("EXTRACTIONDIR=%s", extractDirPath)); |
| 215 | int status = 0; |
| 216 | pid_t pid = fork(); |
| 217 | |
| 218 | if (pid == 0) |
| 219 | { |
| 220 | // child process |
| 221 | execl("/bin/tar", "tar", "-xf", tarFilePath.c_str(), |
| 222 | "-C", extractDirPath.c_str(), (char*)0); |
| 223 | // execl only returns on fail |
| 224 | log<level::ERR>("Failed to untar file", |
| 225 | entry("FILENAME=%s", tarFilePath)); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 226 | report<UnTarFailure>(xyz::openbmc_project::Software::Version:: |
| 227 | UnTarFailure::PATH(tarFilePath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 228 | return -1; |
| 229 | } |
| 230 | else if (pid > 0) |
| 231 | { |
| 232 | waitpid(pid, &status, 0); |
| 233 | } |
| 234 | else |
| 235 | { |
| 236 | log<level::ERR>("fork() failed."); |
Gunnar Mills | 93c12d3 | 2017-05-10 13:11:53 -0500 | [diff] [blame] | 237 | report<UnTarFailure>(xyz::openbmc_project::Software::Version:: |
| 238 | UnTarFailure::PATH(tarFilePath.c_str())); |
Gunnar Mills | 19e4ce5 | 2017-04-27 11:24:19 -0500 | [diff] [blame] | 239 | return -1; |
| 240 | } |
| 241 | |
| 242 | return 0; |
| 243 | } |
Gunnar Mills | 3027bba | 2017-04-27 15:49:03 -0500 | [diff] [blame] | 244 | |
Gunnar Mills | e91d321 | 2017-04-19 15:42:47 -0500 | [diff] [blame] | 245 | } // namespace manager |
| 246 | } // namespace software |
| 247 | } // namepsace phosphor |