blob: 25c4d114103da5d895a00482ee97be624fe0ea31 [file] [log] [blame]
Ratan Guptaed123a32017-06-15 09:07:31 +05301#include "config_parser.hpp"
Ratan Guptaed123a32017-06-15 09:07:31 +05302
William A. Kennington IIIa520a392022-08-08 12:17:34 -07003#include <fmt/compile.h>
4#include <fmt/format.h>
5
William A. Kennington IIIbc52d932022-08-18 16:34:02 -07006#include <functional>
7#include <iterator>
William A. Kennington III0dd09372022-08-18 14:57:07 -07008#include <stdexcept>
William A. Kennington III61ef4f22022-08-18 16:29:09 -07009#include <stdplus/exception.hpp>
William A. Kennington III409f1a62022-08-11 15:44:37 -070010#include <stdplus/fd/atomic.hpp>
William A. Kennington III61ef4f22022-08-18 16:29:09 -070011#include <stdplus/fd/create.hpp>
William A. Kennington III409f1a62022-08-11 15:44:37 -070012#include <stdplus/fd/fmt.hpp>
William A. Kennington III61ef4f22022-08-18 16:29:09 -070013#include <stdplus/fd/line.hpp>
William A. Kennington IIIe21a5cf2022-08-09 12:19:14 -070014#include <string>
William A. Kennington III61ef4f22022-08-18 16:29:09 -070015#include <utility>
Ratan Guptaed123a32017-06-15 09:07:31 +053016
17namespace phosphor
18{
19namespace network
20{
21namespace config
22{
23
William A. Kennington III150753f2022-08-05 15:20:54 -070024using std::literals::string_view_literals::operator""sv;
25
26bool icaseeq(std::string_view in, std::string_view expected) noexcept
27{
28 return std::equal(in.begin(), in.end(), expected.begin(), expected.end(),
29 [](auto a, auto b) { return tolower(a) == b; });
30}
31
32std::optional<bool> parseBool(std::string_view in) noexcept
33{
34 if (in == "1"sv || icaseeq(in, "yes"sv) || icaseeq(in, "y"sv) ||
35 icaseeq(in, "true"sv) || icaseeq(in, "t"sv) || icaseeq(in, "on"sv))
36 {
37 return true;
38 }
39 if (in == "0"sv || icaseeq(in, "no"sv) || icaseeq(in, "n"sv) ||
40 icaseeq(in, "false"sv) || icaseeq(in, "f"sv) || icaseeq(in, "off"sv))
41 {
42 return false;
43 }
44 return std::nullopt;
45}
46
William A. Kennington IIIa520a392022-08-08 12:17:34 -070047fs::path pathForIntfConf(const fs::path& dir, std::string_view intf)
48{
49 return dir / fmt::format(FMT_COMPILE("00-bmc-{}.network"), intf);
50}
51
52fs::path pathForIntfDev(const fs::path& dir, std::string_view intf)
53{
54 return dir / fmt::format(FMT_COMPILE("{}.netdev"), intf);
55}
56
William A. Kennington IIIe21a5cf2022-08-09 12:19:14 -070057const std::string*
58 SectionMap::getLastValueString(std::string_view section,
59 std::string_view key) const noexcept
60{
61 auto sit = find(section);
62 if (sit == end())
63 {
64 return nullptr;
65 }
66 for (auto it = sit->second.rbegin(); it != sit->second.rend(); ++it)
67 {
68 auto kit = it->find(key);
69 if (kit == it->end() || kit->second.empty())
70 {
71 continue;
72 }
William A. Kennington III0dd09372022-08-18 14:57:07 -070073 return &kit->second.back().get();
William A. Kennington IIIe21a5cf2022-08-09 12:19:14 -070074 }
75 return nullptr;
76}
77
78std::vector<std::string> SectionMap::getValueStrings(std::string_view section,
79 std::string_view key) const
80{
81 return getValues(section, key,
82 [](const Value& v) { return std::string(v); });
83}
84
William A. Kennington IIIbe3bd2f2022-10-11 14:11:27 -070085void KeyCheck::operator()(std::string_view s)
William A. Kennington III0dd09372022-08-18 14:57:07 -070086{
87 for (auto c : s)
88 {
89 if (c == '\n' || c == '=')
90 {
91 throw std::invalid_argument(
92 fmt::format(FMT_COMPILE("Invalid Config Key: {}"), s));
93 }
94 }
95}
96
William A. Kennington IIIbe3bd2f2022-10-11 14:11:27 -070097void SectionCheck::operator()(std::string_view s)
William A. Kennington III0dd09372022-08-18 14:57:07 -070098{
99 for (auto c : s)
100 {
101 if (c == '\n' || c == ']')
102 {
103 throw std::invalid_argument(
104 fmt::format(FMT_COMPILE("Invalid Config Section: {}"), s));
105 }
106 }
107}
108
William A. Kennington IIIbe3bd2f2022-10-11 14:11:27 -0700109void ValueCheck::operator()(std::string_view s)
William A. Kennington III0dd09372022-08-18 14:57:07 -0700110{
111 for (auto c : s)
112 {
113 if (c == '\n')
114 {
115 throw std::invalid_argument(
116 fmt::format(FMT_COMPILE("Invalid Config Value: {}"), s));
117 }
118 }
119}
120
William A. Kennington III25511a12022-08-04 16:32:28 -0700121Parser::Parser(const fs::path& filename)
Ratan Guptaed123a32017-06-15 09:07:31 +0530122{
William A. Kennington III25511a12022-08-04 16:32:28 -0700123 setFile(filename);
Ratan Guptaed123a32017-06-15 09:07:31 +0530124}
125
William A. Kennington IIIf55b7d82022-10-25 14:21:46 -0700126constexpr bool isspace(char c) noexcept
Ratan Guptaed123a32017-06-15 09:07:31 +0530127{
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700128 return c == ' ' || c == '\t';
Ratan Guptaed123a32017-06-15 09:07:31 +0530129}
130
William A. Kennington IIIf55b7d82022-10-25 14:21:46 -0700131constexpr bool iscomment(char c) noexcept
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700132{
133 return c == '#' || c == ';';
134}
135
136static void removePadding(std::string_view& str) noexcept
137{
138 size_t idx = str.size();
139 for (; idx > 0 && isspace(str[idx - 1]); idx--)
140 ;
141 str.remove_suffix(str.size() - idx);
142
143 idx = 0;
144 for (; idx < str.size() && isspace(str[idx]); idx++)
145 ;
146 str.remove_prefix(idx);
147}
148
149struct Parse
150{
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700151 std::reference_wrapper<const fs::path> filename;
William A. Kennington III34bb3e22022-08-18 15:17:22 -0700152 SectionMap map;
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700153 KeyValuesMap* section;
154 std::vector<std::string> warnings;
155 size_t lineno;
156
157 inline Parse(const fs::path& filename) :
158 filename(filename), section(nullptr), lineno(0)
159 {
160 }
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700161
162 void pumpSection(std::string_view line)
163 {
164 auto cpos = line.find(']');
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700165 if (cpos == line.npos)
166 {
167 warnings.emplace_back(fmt::format("{}:{}: Section missing ]",
168 filename.get().native(), lineno));
169 }
170 else
171 {
172 for (auto c : line.substr(cpos + 1))
173 {
174 if (!isspace(c))
175 {
176 warnings.emplace_back(
177 fmt::format("{}:{}: Characters outside section name",
178 filename.get().native(), lineno));
179 break;
180 }
181 }
182 }
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700183 auto s = line.substr(0, cpos);
William A. Kennington III34bb3e22022-08-18 15:17:22 -0700184 auto it = map.find(s);
185 if (it == map.end())
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700186 {
William A. Kennington III34bb3e22022-08-18 15:17:22 -0700187 std::tie(it, std::ignore) = map.emplace(
William A. Kennington III0dd09372022-08-18 14:57:07 -0700188 Section(Section::unchecked(), s), KeyValuesMapList{});
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700189 }
William A. Kennington IIIe21a5cf2022-08-09 12:19:14 -0700190 section = &it->second.emplace_back();
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700191 }
192
193 void pumpKV(std::string_view line)
194 {
195 auto epos = line.find('=');
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700196 std::vector<std::string> new_warnings;
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700197 if (epos == line.npos)
198 {
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700199 new_warnings.emplace_back(fmt::format(
200 "{}:{}: KV missing `=`", filename.get().native(), lineno));
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700201 }
202 auto k = line.substr(0, epos);
203 removePadding(k);
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700204 if (section == nullptr)
205 {
206 new_warnings.emplace_back(
207 fmt::format("{}:{}: Key `{}` missing section",
208 filename.get().native(), lineno, k));
209 }
210 if (!new_warnings.empty())
211 {
212 warnings.insert(warnings.end(),
213 std::make_move_iterator(new_warnings.begin()),
214 std::make_move_iterator(new_warnings.end()));
215 return;
216 }
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700217 auto v = line.substr(epos + 1);
218 removePadding(v);
219
220 auto it = section->find(k);
221 if (it == section->end())
222 {
William A. Kennington III0dd09372022-08-18 14:57:07 -0700223 std::tie(it, std::ignore) =
224 section->emplace(Key(Key::unchecked(), k), ValueList{});
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700225 }
William A. Kennington III0dd09372022-08-18 14:57:07 -0700226 it->second.emplace_back(Value::unchecked(), v);
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700227 }
228
229 void pump(std::string_view line)
230 {
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700231 lineno++;
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700232 for (size_t i = 0; i < line.size(); ++i)
233 {
234 auto c = line[i];
235 if (iscomment(c))
236 {
237 return;
238 }
239 else if (c == '[')
240 {
241 return pumpSection(line.substr(i + 1));
242 }
243 else if (!isspace(c))
244 {
245 return pumpKV(line.substr(i));
246 }
247 }
248 }
249};
250
William A. Kennington III25511a12022-08-04 16:32:28 -0700251void Parser::setFile(const fs::path& filename)
Ratan Guptaed123a32017-06-15 09:07:31 +0530252{
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700253 Parse parse(filename);
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700254
William A. Kennington III301e8ad2022-11-15 15:45:32 -0800255 bool fileExists = true;
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700256 try
Ratan Guptaed123a32017-06-15 09:07:31 +0530257 {
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700258 auto fd = stdplus::fd::open(filename.c_str(),
259 stdplus::fd::OpenAccess::ReadOnly);
260 stdplus::fd::LineReader reader(fd);
261 while (true)
Ratan Guptaed123a32017-06-15 09:07:31 +0530262 {
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700263 parse.pump(*reader.readLine());
Ratan Guptaed123a32017-06-15 09:07:31 +0530264 }
265 }
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700266 catch (const stdplus::exception::Eof&)
267 {
268 }
William A. Kennington III301e8ad2022-11-15 15:45:32 -0800269 catch (const std::system_error& e)
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700270 {
William A. Kennington III301e8ad2022-11-15 15:45:32 -0800271 fileExists = false;
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700272 // TODO: Pass exceptions once callers can handle them
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700273 parse.warnings.emplace_back(
William A. Kennington III301e8ad2022-11-15 15:45:32 -0800274 fmt::format("{}: Open error: {}", filename.native(), e.what()));
William A. Kennington III61ef4f22022-08-18 16:29:09 -0700275 }
276
William A. Kennington III34bb3e22022-08-18 15:17:22 -0700277 this->map = std::move(parse.map);
William A. Kennington III301e8ad2022-11-15 15:45:32 -0800278 this->fileExists = fileExists;
William A. Kennington IIIa520a392022-08-08 12:17:34 -0700279 this->filename = filename;
William A. Kennington IIIbc52d932022-08-18 16:34:02 -0700280 this->warnings = std::move(parse.warnings);
Ratan Guptaed123a32017-06-15 09:07:31 +0530281}
282
William A. Kennington III409f1a62022-08-11 15:44:37 -0700283static void writeFileInt(const SectionMap& map, const fs::path& filename)
284{
285 stdplus::fd::AtomicWriter writer(filename, 0644);
286 stdplus::fd::FormatBuffer out(writer);
287 for (const auto& [section, maps] : map)
288 {
289 for (const auto& map : maps)
290 {
291 out.append(FMT_COMPILE("[{}]\n"), section.get());
292 for (const auto& [key, vals] : map)
293 {
294 for (const auto& val : vals)
295 {
296 out.append(FMT_COMPILE("{}={}\n"), key.get(), val.get());
297 }
298 }
299 }
300 }
301 out.flush();
302 writer.commit();
303}
304
305void Parser::writeFile() const
306{
307 writeFileInt(map, filename);
308}
309
310void Parser::writeFile(const fs::path& filename)
311{
312 writeFileInt(map, filename);
313 this->filename = filename;
314}
315
Gunnar Mills57d9c502018-09-14 14:42:34 -0500316} // namespace config
317} // namespace network
318} // namespace phosphor