blob: 2920546816c19e114bf9dc56f8d1433ed0e05604 [file] [log] [blame]
Patrick Venturef18bf832018-10-26 18:14:00 -07001#include "config.h"
2
3#include "log_manager.hpp"
4
5#include "elog_entry.hpp"
6#include "elog_meta.hpp"
7#include "elog_serialize.hpp"
Matt Spinler99c2b402019-05-23 14:29:16 -05008#include "extensions.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -07009
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050010#include <poll.h>
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050011#include <sys/inotify.h>
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050012#include <systemd/sd-bus.h>
Adriana Kobylakd311bc82016-10-16 09:54:40 -050013#include <systemd/sd-journal.h>
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050014#include <unistd.h>
Patrick Venturef18bf832018-10-26 18:14:00 -070015
Matt Spinler99c2b402019-05-23 14:29:16 -050016#include <cassert>
Patrick Venturef18bf832018-10-26 18:14:00 -070017#include <chrono>
18#include <cstdio>
Patrick Venture30047bf2018-11-01 18:52:15 -070019#include <cstring>
Patrick Venturef18bf832018-10-26 18:14:00 -070020#include <fstream>
Patrick Venture30047bf2018-11-01 18:52:15 -070021#include <functional>
Patrick Venturef18bf832018-10-26 18:14:00 -070022#include <future>
23#include <iostream>
Patrick Venture30047bf2018-11-01 18:52:15 -070024#include <map>
Saqib Khan2bb15192017-02-13 13:19:55 -060025#include <phosphor-logging/log.hpp>
Patrick Venturef18bf832018-10-26 18:14:00 -070026#include <sdbusplus/vtable.hpp>
27#include <set>
28#include <string>
29#include <vector>
Deepak Kodihallia87c1572017-02-28 07:40:34 -060030
31using namespace phosphor::logging;
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050032using namespace std::chrono;
Deepak Kodihallia87c1572017-02-28 07:40:34 -060033extern const std::map<metadata::Metadata,
Patrick Venturef18bf832018-10-26 18:14:00 -070034 std::function<metadata::associations::Type>>
35 meta;
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050036
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060037namespace phosphor
38{
39namespace logging
40{
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050041namespace internal
42{
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050043inline auto getLevel(const std::string& errMsg)
44{
45 auto reqLevel = Entry::Level::Error; // Default to Error
46
47 auto levelmap = g_errLevelMap.find(errMsg);
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -050048 if (levelmap != g_errLevelMap.end())
Marri Devender Rao7656fba2017-08-06 05:42:52 -050049 {
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050050 reqLevel = static_cast<Entry::Level>(levelmap->second);
Marri Devender Rao7656fba2017-08-06 05:42:52 -050051 }
52
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050053 return reqLevel;
54}
55
Nagaraju Goruganti477b7312018-06-25 23:28:58 -050056int Manager::getRealErrSize()
57{
58 return realErrors.size();
59}
60
61int Manager::getInfoErrSize()
62{
63 return infoErrors.size();
64}
65
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -050066void Manager::commit(uint64_t transactionId, std::string errMsg)
67{
68 auto level = getLevel(errMsg);
69 _commit(transactionId, std::move(errMsg), level);
70}
71
72void Manager::commitWithLvl(uint64_t transactionId, std::string errMsg,
73 uint32_t errLvl)
74{
75 _commit(transactionId, std::move(errMsg),
76 static_cast<Entry::Level>(errLvl));
77}
78
79void Manager::_commit(uint64_t transactionId, std::string&& errMsg,
80 Entry::Level errLvl)
81{
Adriana Kobylak7298dc22017-01-24 12:21:50 -060082 constexpr const auto transactionIdVar = "TRANSACTION_ID";
Adriana Kobylak27c87d92017-03-06 12:45:09 -060083 // Length of 'TRANSACTION_ID' string.
Patrick Venture30047bf2018-11-01 18:52:15 -070084 constexpr const auto transactionIdVarSize = std::strlen(transactionIdVar);
Adriana Kobylak27c87d92017-03-06 12:45:09 -060085 // Length of 'TRANSACTION_ID=' string.
86 constexpr const auto transactionIdVarOffset = transactionIdVarSize + 1;
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050087
Adriana Kobylak5f4247f2018-03-15 10:27:05 -050088 // Flush all the pending log messages into the journal
89 journalSync();
Adriana Kobylakcfd9a7d2017-06-07 11:57:31 -050090
Patrick Venturef18bf832018-10-26 18:14:00 -070091 sd_journal* j = nullptr;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060092 int rc = sd_journal_open(&j, SD_JOURNAL_LOCAL_ONLY);
Adriana Kobylakd311bc82016-10-16 09:54:40 -050093 if (rc < 0)
94 {
Patrick Venturef18bf832018-10-26 18:14:00 -070095 logging::log<logging::level::ERR>(
96 "Failed to open journal",
97 logging::entry("DESCRIPTION=%s", strerror(-rc)));
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060098 return;
Adriana Kobylakd311bc82016-10-16 09:54:40 -050099 }
100
Adriana Kobylak7298dc22017-01-24 12:21:50 -0600101 std::string transactionIdStr = std::to_string(transactionId);
Adriana Kobylakd722b3a2017-02-28 12:10:44 -0600102 std::set<std::string> metalist;
103 auto metamap = g_errMetaMap.find(errMsg);
104 if (metamap != g_errMetaMap.end())
105 {
106 metalist.insert(metamap->second.begin(), metamap->second.end());
107 }
Adriana Kobylak7298dc22017-01-24 12:21:50 -0600108
Patrick Venturef18bf832018-10-26 18:14:00 -0700109 // Add _PID field information in AdditionalData.
Jayanth Othayothdb18ebe2017-09-04 00:48:02 -0500110 metalist.insert("_PID");
111
Tom Joseph7a33ee42017-07-25 00:04:20 +0530112 std::vector<std::string> additionalData;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600113
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600114 // Read the journal from the end to get the most recent entry first.
115 // The result from the sd_journal_get_data() is of the form VARIABLE=value.
116 SD_JOURNAL_FOREACH_BACKWARDS(j)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600117 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700118 const char* data = nullptr;
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600119 size_t length = 0;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600120
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600121 // Look for the transaction id metadata variable
Patrick Venturef18bf832018-10-26 18:14:00 -0700122 rc = sd_journal_get_data(j, transactionIdVar, (const void**)&data,
123 &length);
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600124 if (rc < 0)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600125 {
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600126 // This journal entry does not have the TRANSACTION_ID
127 // metadata variable.
128 continue;
129 }
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600130
Adriana Kobylak27c87d92017-03-06 12:45:09 -0600131 // journald does not guarantee that sd_journal_get_data() returns NULL
132 // terminated strings, so need to specify the size to use to compare,
133 // use the returned length instead of anything that relies on NULL
134 // terminators like strlen().
135 // The data variable is in the form of 'TRANSACTION_ID=1234'. Remove
136 // the TRANSACTION_ID characters plus the (=) sign to do the comparison.
137 // 'data + transactionIdVarOffset' will be in the form of '1234'.
138 // 'length - transactionIdVarOffset' will be the length of '1234'.
139 if ((length <= (transactionIdVarOffset)) ||
Patrick Venturef18bf832018-10-26 18:14:00 -0700140 (transactionIdStr.compare(0, transactionIdStr.size(),
Adriana Kobylak27c87d92017-03-06 12:45:09 -0600141 data + transactionIdVarOffset,
142 length - transactionIdVarOffset) != 0))
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600143 {
144 // The value of the TRANSACTION_ID metadata is not the requested
145 // transaction id number.
146 continue;
147 }
148
149 // Search for all metadata variables in the current journal entry.
150 for (auto i = metalist.cbegin(); i != metalist.cend();)
151 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700152 rc = sd_journal_get_data(j, (*i).c_str(), (const void**)&data,
153 &length);
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600154 if (rc < 0)
155 {
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600156 // Metadata variable not found, check next metadata variable.
157 i++;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600158 continue;
159 }
160
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600161 // Metadata variable found, save it and remove it from the set.
162 additionalData.emplace_back(data, length);
163 i = metalist.erase(i);
164 }
165 if (metalist.empty())
166 {
167 // All metadata variables found, break out of journal loop.
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600168 break;
169 }
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600170 }
171 if (!metalist.empty())
172 {
173 // Not all the metadata variables were found in the journal.
174 for (auto& metaVarStr : metalist)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600175 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700176 logging::log<logging::level::INFO>(
177 "Failed to find metadata",
178 logging::entry("META_FIELD=%s", metaVarStr.c_str()));
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600179 }
180 }
181
Adriana Kobylakd311bc82016-10-16 09:54:40 -0500182 sd_journal_close(j);
183
Matt Spinlerb60e7552019-07-24 15:28:08 -0500184 createEntry(errMsg, errLvl, additionalData);
185}
186
187void Manager::createEntry(std::string errMsg, Entry::Level errLvl,
188 std::vector<std::string> additionalData)
189{
190 if (!Extensions::disableDefaultLogCaps())
191 {
192 if (errLvl < Entry::sevLowerLimit)
193 {
194 if (realErrors.size() >= ERROR_CAP)
195 {
196 erase(realErrors.front());
197 }
198 }
199 else
200 {
201 if (infoErrors.size() >= ERROR_INFO_CAP)
202 {
203 erase(infoErrors.front());
204 }
205 }
206 }
207
Adriana Kobylak4ea7f312017-01-10 12:52:34 -0600208 entryId++;
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -0500209 if (errLvl >= Entry::sevLowerLimit)
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500210 {
211 infoErrors.push_back(entryId);
212 }
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600213 else
214 {
215 realErrors.push_back(entryId);
216 }
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -0600217 auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(
Patrick Venturef18bf832018-10-26 18:14:00 -0700218 std::chrono::system_clock::now().time_since_epoch())
219 .count();
220 auto objPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId);
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600221
Patrick Venturef18bf832018-10-26 18:14:00 -0700222 AssociationList objects{};
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600223 processMetadata(errMsg, additionalData, objects);
224
Patrick Venturef18bf832018-10-26 18:14:00 -0700225 auto e = std::make_unique<Entry>(busLog, objPath, entryId,
226 ms, // Milliseconds since 1970
227 errLvl, std::move(errMsg),
228 std::move(additionalData),
229 std::move(objects), fwVersion, *this);
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500230 serialize(*e);
Matt Spinler99c2b402019-05-23 14:29:16 -0500231
232 doExtensionLogCreate(*e);
233
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500234 entries.insert(std::make_pair(entryId, std::move(e)));
Adriana Kobylak1db1bd32016-10-10 11:39:20 -0500235}
236
Matt Spinler99c2b402019-05-23 14:29:16 -0500237void Manager::doExtensionLogCreate(const Entry& entry)
238{
239 // Make the association <endpointpath>/<endpointtype> paths
240 std::vector<std::string> assocs;
241 for (const auto& [forwardType, reverseType, endpoint] :
242 entry.associations())
243 {
244 std::string e{endpoint};
245 e += '/' + reverseType;
246 assocs.push_back(e);
247 }
248
249 for (auto& create : Extensions::getCreateFunctions())
250 {
251 try
252 {
253 create(entry.message(), entry.id(), entry.timestamp(),
254 entry.severity(), entry.additionalData(), assocs);
255 }
256 catch (std::exception& e)
257 {
258 log<level::ERR>("An extension's create function threw an exception",
259 phosphor::logging::entry("ERROR=%s", e.what()));
260 }
261 }
262}
263
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600264void Manager::processMetadata(const std::string& errorName,
265 const std::vector<std::string>& additionalData,
266 AssociationList& objects) const
267{
268 // additionalData is a list of "metadata=value"
269 constexpr auto separator = '=';
Patrick Venture34438962018-10-30 13:17:37 -0700270 for (const auto& entryItem : additionalData)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600271 {
Patrick Venture34438962018-10-30 13:17:37 -0700272 auto found = entryItem.find(separator);
Patrick Venturef18bf832018-10-26 18:14:00 -0700273 if (std::string::npos != found)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600274 {
Patrick Venture34438962018-10-30 13:17:37 -0700275 auto metadata = entryItem.substr(0, found);
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600276 auto iter = meta.find(metadata);
Patrick Venturef18bf832018-10-26 18:14:00 -0700277 if (meta.end() != iter)
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600278 {
279 (iter->second)(metadata, additionalData, objects);
280 }
281 }
282 }
283}
284
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500285void Manager::erase(uint32_t entryId)
286{
Patrick Venture34438962018-10-30 13:17:37 -0700287 auto entryFound = entries.find(entryId);
288 if (entries.end() != entryFound)
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500289 {
Matt Spinler99c2b402019-05-23 14:29:16 -0500290 for (auto& func : Extensions::getDeleteProhibitedFunctions())
291 {
292 try
293 {
294 bool prohibited = false;
295 func(entryId, prohibited);
296 if (prohibited)
297 {
298 // Future work remains to throw an error here.
299 return;
300 }
301 }
302 catch (std::exception& e)
303 {
304 log<level::ERR>(
305 "An extension's deleteProhibited function threw "
306 "an exception",
307 entry("ERROR=%s", e.what()));
308 }
309 }
310
Deepak Kodihalli33887992017-06-13 07:06:49 -0500311 // Delete the persistent representation of this error.
312 fs::path errorPath(ERRLOG_PERSIST_PATH);
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600313 errorPath /= std::to_string(entryId);
Deepak Kodihalli33887992017-06-13 07:06:49 -0500314 fs::remove(errorPath);
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600315
Patrick Venturef18bf832018-10-26 18:14:00 -0700316 auto removeId = [](std::list<uint32_t>& ids, uint32_t id) {
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600317 auto it = std::find(ids.begin(), ids.end(), id);
318 if (it != ids.end())
319 {
320 ids.erase(it);
321 }
322 };
Patrick Venture34438962018-10-30 13:17:37 -0700323 if (entryFound->second->severity() >= Entry::sevLowerLimit)
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500324 {
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600325 removeId(infoErrors, entryId);
326 }
327 else
328 {
329 removeId(realErrors, entryId);
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500330 }
Patrick Venture34438962018-10-30 13:17:37 -0700331 entries.erase(entryFound);
Matt Spinler99c2b402019-05-23 14:29:16 -0500332
333 for (auto& remove : Extensions::getDeleteFunctions())
334 {
335 try
336 {
337 remove(entryId);
338 }
339 catch (std::exception& e)
340 {
341 log<level::ERR>("An extension's delete function threw an "
342 "exception",
343 entry("ERROR=%s", e.what()));
344 }
345 }
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500346 }
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600347 else
348 {
349 logging::log<level::ERR>("Invalid entry ID to delete",
Patrick Venturef18bf832018-10-26 18:14:00 -0700350 logging::entry("ID=%d", entryId));
Marri Devender Rao8959efc2017-11-17 00:13:41 -0600351 }
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500352}
353
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500354void Manager::restore()
355{
Patrick Venturef18bf832018-10-26 18:14:00 -0700356 auto sanity = [](const auto& id, const auto& restoredId) {
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600357 return id == restoredId;
358 };
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500359 std::vector<uint32_t> errorIds;
360
361 fs::path dir(ERRLOG_PERSIST_PATH);
362 if (!fs::exists(dir) || fs::is_empty(dir))
363 {
364 return;
365 }
366
Patrick Venturef18bf832018-10-26 18:14:00 -0700367 for (auto& file : fs::directory_iterator(dir))
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500368 {
369 auto id = file.path().filename().c_str();
370 auto idNum = std::stol(id);
371 auto e = std::make_unique<Entry>(
Patrick Venturef18bf832018-10-26 18:14:00 -0700372 busLog, std::string(OBJ_ENTRY) + '/' + id, idNum, *this);
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500373 if (deserialize(file.path(), *e))
374 {
Patrick Venturef18bf832018-10-26 18:14:00 -0700375 // validate the restored error entry id
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600376 if (sanity(static_cast<uint32_t>(idNum), e->id()))
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500377 {
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600378 e->emit_object_added();
379 if (e->severity() >= Entry::sevLowerLimit)
380 {
381 infoErrors.push_back(idNum);
382 }
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600383 else
384 {
385 realErrors.push_back(idNum);
386 }
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600387
388 entries.insert(std::make_pair(idNum, std::move(e)));
389 errorIds.push_back(idNum);
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500390 }
Marri Devender Rao979ed1c2017-11-17 05:06:25 -0600391 else
392 {
393 logging::log<logging::level::ERR>(
394 "Failed in sanity check while restoring error entry. "
395 "Ignoring error entry",
396 logging::entry("ID_NUM=%d", idNum),
397 logging::entry("ENTRY_ID=%d", e->id()));
398 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500399 }
400 }
401
Vishwanatha Subbanna37af9ba2017-09-28 16:33:53 +0530402 if (!errorIds.empty())
403 {
404 entryId = *(std::max_element(errorIds.begin(), errorIds.end()));
405 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500406}
407
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500408void Manager::journalSync()
409{
410 bool syncRequested = false;
411 auto fd = -1;
412 auto rc = -1;
413 auto wd = -1;
414 auto bus = sdbusplus::bus::new_default();
415
416 auto start =
417 duration_cast<microseconds>(steady_clock::now().time_since_epoch())
418 .count();
419
420 constexpr auto maxRetry = 2;
421 for (int i = 0; i < maxRetry; i++)
422 {
423 // Read timestamp from synced file
424 constexpr auto syncedPath = "/run/systemd/journal/synced";
425 std::ifstream syncedFile(syncedPath);
426 if (syncedFile.fail())
427 {
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500428 // If the synced file doesn't exist, a sync request will create it.
429 if (errno != ENOENT)
430 {
431 log<level::ERR>("Failed to open journal synced file",
432 entry("FILENAME=%s", syncedPath),
433 entry("ERRNO=%d", errno));
434 return;
435 }
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500436 }
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500437 else
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500438 {
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500439 // Only read the synced file if it exists.
440 // See if a sync happened by now
441 std::string timestampStr;
442 std::getline(syncedFile, timestampStr);
Patrick Venture30047bf2018-11-01 18:52:15 -0700443 auto timestamp = std::stoll(timestampStr);
Adriana Kobylak7d111a82018-09-04 10:14:24 -0500444 if (timestamp >= start)
445 {
446 return;
447 }
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500448 }
449
450 // Let's ask for a sync, but only once
451 if (!syncRequested)
452 {
453 syncRequested = true;
454
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500455 constexpr auto JOURNAL_UNIT = "systemd-journald.service";
456 auto signal = SIGRTMIN + 1;
457
458 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
459 SYSTEMD_INTERFACE, "KillUnit");
460 method.append(JOURNAL_UNIT, "main", signal);
461 bus.call(method);
462 if (method.is_method_error())
463 {
464 log<level::ERR>("Failed to kill journal service");
465 return;
466 }
467 continue;
468 }
469
470 // Let's install the inotify watch, if we didn't do that yet. This watch
471 // monitors the syncedFile for when journald updates it with a newer
472 // timestamp. This means the journal has been flushed.
473 if (fd < 0)
474 {
475 fd = inotify_init1(IN_NONBLOCK | IN_CLOEXEC);
476 if (fd < 0)
477 {
478 log<level::ERR>("Failed to create inotify watch",
479 entry("ERRNO=%d", errno));
480 return;
481 }
482
483 constexpr auto JOURNAL_RUN_PATH = "/run/systemd/journal";
484 wd = inotify_add_watch(fd, JOURNAL_RUN_PATH,
485 IN_MOVED_TO | IN_DONT_FOLLOW | IN_ONLYDIR);
486 if (wd < 0)
487 {
488 log<level::ERR>("Failed to watch journal directory",
489 entry("PATH=%s", JOURNAL_RUN_PATH),
490 entry("ERRNO=%d", errno));
491 close(fd);
492 return;
493 }
494 continue;
495 }
496
497 // Let's wait until inotify reports an event
498 struct pollfd fds = {
499 .fd = fd,
500 .events = POLLIN,
501 };
502 constexpr auto pollTimeout = 5; // 5 seconds
503 rc = poll(&fds, 1, pollTimeout * 1000);
504 if (rc < 0)
505 {
506 log<level::ERR>("Failed to add event", entry("ERRNO=%d", errno),
507 entry("ERR=%s", strerror(-rc)));
508 inotify_rm_watch(fd, wd);
509 close(fd);
510 return;
511 }
512 else if (rc == 0)
513 {
514 log<level::INFO>("Poll timeout, no new journal synced data",
515 entry("TIMEOUT=%d", pollTimeout));
516 break;
517 }
518
519 // Read from the specified file descriptor until there is no new data,
520 // throwing away everything read since the timestamp will be read at the
521 // beginning of the loop.
522 constexpr auto maxBytes = 64;
523 uint8_t buffer[maxBytes];
524 while (read(fd, buffer, maxBytes) > 0)
525 ;
526 }
527
Adriana Kobylak4a029f22018-05-23 12:58:19 -0500528 if (fd != -1)
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500529 {
Adriana Kobylak4a029f22018-05-23 12:58:19 -0500530 if (wd != -1)
531 {
532 inotify_rm_watch(fd, wd);
533 }
Adriana Kobylak5f4247f2018-03-15 10:27:05 -0500534 close(fd);
535 }
536
537 return;
538}
539
Matt Spinler1275bd12018-05-01 15:13:53 -0500540std::string Manager::readFWVersion()
541{
542 std::string version;
543 std::ifstream versionFile{BMC_VERSION_FILE};
544 std::string line;
545 static constexpr auto VERSION_ID = "VERSION_ID=";
546
547 while (std::getline(versionFile, line))
548 {
549 if (line.find(VERSION_ID) != std::string::npos)
550 {
551 auto pos = line.find_first_of('"') + 1;
552 version = line.substr(pos, line.find_last_of('"') - pos);
553 break;
554 }
555 }
556
557 if (version.empty())
558 {
559 log<level::ERR>("Unable to read BMC firmware version");
560 }
561
562 return version;
563}
564
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500565} // namespace internal
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600566} // namespace logging
Patrick Venturef18bf832018-10-26 18:14:00 -0700567} // namespace phosphor