blob: b535039e780083c6f593c7937312859acfd7dcce [file] [log] [blame]
Adriana Kobylakd311bc82016-10-16 09:54:40 -05001#include <fstream>
2#include <iostream>
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -06003#include <chrono>
Adriana Kobylakd311bc82016-10-16 09:54:40 -05004#include <cstdio>
Adriana Kobylakfbe88722017-02-22 16:49:59 -06005#include <set>
Adriana Kobylakd311bc82016-10-16 09:54:40 -05006#include <string>
7#include <vector>
Adriana Kobylak1db1bd32016-10-10 11:39:20 -05008#include <sdbusplus/vtable.hpp>
9#include <systemd/sd-bus.h>
Adriana Kobylakd311bc82016-10-16 09:54:40 -050010#include <systemd/sd-journal.h>
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060011#include "config.h"
12#include "elog_entry.hpp"
Saqib Khan2bb15192017-02-13 13:19:55 -060013#include <phosphor-logging/log.hpp>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060014#include "log_manager.hpp"
Deepak Kodihallia87c1572017-02-28 07:40:34 -060015#include "elog_meta.hpp"
Deepak Kodihalli72654f12017-06-12 04:33:29 -050016#include "elog_serialize.hpp"
Deepak Kodihallia87c1572017-02-28 07:40:34 -060017
18using namespace phosphor::logging;
19extern const std::map<metadata::Metadata,
20 std::function<metadata::associations::Type>> meta;
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050021
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060022namespace phosphor
23{
24namespace logging
25{
Adriana Kobylakd311bc82016-10-16 09:54:40 -050026
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060027void Manager::commit(uint64_t transactionId, std::string errMsg)
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050028{
Marri Devender Rao7656fba2017-08-06 05:42:52 -050029 if (capped)
30 {
31 return;
32 }
33 if (entries.size() >= ERROR_CAP)
34 {
35 log<level::ERR>("Reached error cap, Ignoring error",
36 entry("SIZE=%d", entries.size()),
37 entry("ERROR_CAP=%d", ERROR_CAP));
38 capped = true;
39 return;
40 }
41
Adriana Kobylak7298dc22017-01-24 12:21:50 -060042 constexpr const auto transactionIdVar = "TRANSACTION_ID";
Adriana Kobylak27c87d92017-03-06 12:45:09 -060043 // Length of 'TRANSACTION_ID' string.
Adriana Kobylak67218992017-02-28 12:53:37 -060044 constexpr const auto transactionIdVarSize = strlen(transactionIdVar);
Adriana Kobylak27c87d92017-03-06 12:45:09 -060045 // Length of 'TRANSACTION_ID=' string.
46 constexpr const auto transactionIdVarOffset = transactionIdVarSize + 1;
Adriana Kobylak1db1bd32016-10-10 11:39:20 -050047
Adriana Kobylakcfd9a7d2017-06-07 11:57:31 -050048 // Flush all the pending log messages into the journal via Synchronize
49 constexpr auto JOURNAL_BUSNAME = "org.freedesktop.journal1";
50 constexpr auto JOURNAL_PATH = "/org/freedesktop/journal1";
51 constexpr auto JOURNAL_INTERFACE = "org.freedesktop.journal1";
52 auto bus = sdbusplus::bus::new_default();
53 auto method = bus.new_method_call(JOURNAL_BUSNAME, JOURNAL_PATH,
54 JOURNAL_INTERFACE, "Synchronize");
55 bus.call_noreply(method);
56
Adriana Kobylakd311bc82016-10-16 09:54:40 -050057 sd_journal *j = nullptr;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060058 int rc = sd_journal_open(&j, SD_JOURNAL_LOCAL_ONLY);
Adriana Kobylakd311bc82016-10-16 09:54:40 -050059 if (rc < 0)
60 {
61 logging::log<logging::level::ERR>("Failed to open journal",
62 logging::entry("DESCRIPTION=%s", strerror(-rc)));
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060063 return;
Adriana Kobylakd311bc82016-10-16 09:54:40 -050064 }
65
Adriana Kobylak7298dc22017-01-24 12:21:50 -060066 std::string transactionIdStr = std::to_string(transactionId);
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060067 std::set<std::string> metalist;
68 auto metamap = g_errMetaMap.find(errMsg);
69 if (metamap != g_errMetaMap.end())
70 {
71 metalist.insert(metamap->second.begin(), metamap->second.end());
72 }
Adriana Kobylak7298dc22017-01-24 12:21:50 -060073
Jayanth Othayothdb18ebe2017-09-04 00:48:02 -050074 //Add _PID field information in AdditionalData.
75 metalist.insert("_PID");
76
Tom Joseph7a33ee42017-07-25 00:04:20 +053077 std::vector<std::string> additionalData;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -060078
Adriana Kobylakfbe88722017-02-22 16:49:59 -060079 // Read the journal from the end to get the most recent entry first.
80 // The result from the sd_journal_get_data() is of the form VARIABLE=value.
81 SD_JOURNAL_FOREACH_BACKWARDS(j)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -060082 {
Adriana Kobylakfbe88722017-02-22 16:49:59 -060083 const char *data = nullptr;
84 size_t length = 0;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -060085
Adriana Kobylakfbe88722017-02-22 16:49:59 -060086 // Look for the transaction id metadata variable
87 rc = sd_journal_get_data(j, transactionIdVar, (const void **)&data,
88 &length);
89 if (rc < 0)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -060090 {
Adriana Kobylakfbe88722017-02-22 16:49:59 -060091 // This journal entry does not have the TRANSACTION_ID
92 // metadata variable.
93 continue;
94 }
Adriana Kobylak9aa7d782017-02-18 09:20:49 -060095
Adriana Kobylak27c87d92017-03-06 12:45:09 -060096 // journald does not guarantee that sd_journal_get_data() returns NULL
97 // terminated strings, so need to specify the size to use to compare,
98 // use the returned length instead of anything that relies on NULL
99 // terminators like strlen().
100 // The data variable is in the form of 'TRANSACTION_ID=1234'. Remove
101 // the TRANSACTION_ID characters plus the (=) sign to do the comparison.
102 // 'data + transactionIdVarOffset' will be in the form of '1234'.
103 // 'length - transactionIdVarOffset' will be the length of '1234'.
104 if ((length <= (transactionIdVarOffset)) ||
105 (transactionIdStr.compare(0,
106 transactionIdStr.size(),
107 data + transactionIdVarOffset,
108 length - transactionIdVarOffset) != 0))
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600109 {
110 // The value of the TRANSACTION_ID metadata is not the requested
111 // transaction id number.
112 continue;
113 }
114
115 // Search for all metadata variables in the current journal entry.
116 for (auto i = metalist.cbegin(); i != metalist.cend();)
117 {
118 rc = sd_journal_get_data(j, (*i).c_str(),
119 (const void **)&data, &length);
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600120 if (rc < 0)
121 {
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600122 // Metadata variable not found, check next metadata variable.
123 i++;
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600124 continue;
125 }
126
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600127 // Metadata variable found, save it and remove it from the set.
128 additionalData.emplace_back(data, length);
129 i = metalist.erase(i);
130 }
131 if (metalist.empty())
132 {
133 // All metadata variables found, break out of journal loop.
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600134 break;
135 }
Adriana Kobylakfbe88722017-02-22 16:49:59 -0600136 }
137 if (!metalist.empty())
138 {
139 // Not all the metadata variables were found in the journal.
140 for (auto& metaVarStr : metalist)
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600141 {
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600142 logging::log<logging::level::INFO>("Failed to find metadata",
143 logging::entry("META_FIELD=%s", metaVarStr.c_str()));
Adriana Kobylak9aa7d782017-02-18 09:20:49 -0600144 }
145 }
146
Adriana Kobylakd311bc82016-10-16 09:54:40 -0500147 sd_journal_close(j);
148
Adriana Kobylak4ea7f312017-01-10 12:52:34 -0600149 // Create error Entry dbus object
150 entryId++;
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -0600151 auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(
152 std::chrono::system_clock::now().time_since_epoch()).count();
Adriana Kobylak4ea7f312017-01-10 12:52:34 -0600153 auto objPath = std::string(OBJ_ENTRY) + '/' +
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -0600154 std::to_string(entryId);
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600155
Deepak Kodihalli35b46372017-02-27 04:58:18 -0600156 AssociationList objects {};
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600157 processMetadata(errMsg, additionalData, objects);
158
Marri Devender Rao0a71bad2017-07-12 08:01:39 -0500159 level reqLevel = level::ERR; // Default to ERR
Adriana Kobylakd722b3a2017-02-28 12:10:44 -0600160 auto levelmap = g_errLevelMap.find(errMsg);
161 if (levelmap != g_errLevelMap.end())
162 {
163 reqLevel = levelmap->second;
164 }
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500165 auto e = std::make_unique<Entry>(
166 busLog,
167 objPath,
168 entryId,
169 ms, // Milliseconds since 1970
170 static_cast<Entry::Level>(reqLevel),
171 std::move(errMsg),
172 std::move(additionalData),
173 std::move(objects),
174 *this);
175 serialize(*e);
176 entries.insert(std::make_pair(entryId, std::move(e)));
Adriana Kobylak1db1bd32016-10-10 11:39:20 -0500177}
178
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600179void Manager::processMetadata(const std::string& errorName,
180 const std::vector<std::string>& additionalData,
181 AssociationList& objects) const
182{
183 // additionalData is a list of "metadata=value"
184 constexpr auto separator = '=';
185 for(const auto& entry: additionalData)
186 {
187 auto found = entry.find(separator);
188 if(std::string::npos != found)
189 {
190 auto metadata = entry.substr(0, found);
191 auto iter = meta.find(metadata);
192 if(meta.end() != iter)
193 {
194 (iter->second)(metadata, additionalData, objects);
195 }
196 }
197 }
198}
199
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500200void Manager::erase(uint32_t entryId)
201{
202 auto entry = entries.find(entryId);
Deepak Kodihalli33887992017-06-13 07:06:49 -0500203 auto id = entry->second->id();
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500204 if(entries.end() != entry)
205 {
Deepak Kodihalli33887992017-06-13 07:06:49 -0500206 // Delete the persistent representation of this error.
207 fs::path errorPath(ERRLOG_PERSIST_PATH);
208 errorPath /= std::to_string(id);
209 fs::remove(errorPath);
210
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500211 entries.erase(entry);
212 }
Marri Devender Rao7656fba2017-08-06 05:42:52 -0500213
214 if (entries.size() < ERROR_CAP)
215 {
216 capped = false;
217 }
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500218}
219
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500220void Manager::restore()
221{
222 std::vector<uint32_t> errorIds;
223
224 fs::path dir(ERRLOG_PERSIST_PATH);
225 if (!fs::exists(dir) || fs::is_empty(dir))
226 {
227 return;
228 }
229
230 for(auto& file: fs::directory_iterator(dir))
231 {
232 auto id = file.path().filename().c_str();
233 auto idNum = std::stol(id);
234 auto e = std::make_unique<Entry>(
235 busLog,
236 std::string(OBJ_ENTRY) + '/' + id,
237 idNum,
238 *this);
239 if (deserialize(file.path(), *e))
240 {
241 e->emit_object_added();
242 entries.insert(std::make_pair(idNum, std::move(e)));
243 errorIds.push_back(idNum);
244 }
245 }
246
247 entryId = *(std::max_element(errorIds.begin(), errorIds.end()));
248}
249
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600250} // namespace logging
251} // namepsace phosphor