blob: 7d355d0919758012acefa4c235cddeae304a4493 [file] [log] [blame]
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi9f5b01d2016-08-05 03:54:28 +00003 * Copyright (c) 2014-2016, Regents of the University of California,
Vince Lehman63ab1bb2015-09-04 17:06:58 -05004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "tables-config-section.hpp"
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060027
28namespace nfd {
29
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060030const size_t TablesConfigSection::DEFAULT_CS_MAX_PACKETS = 65536;
31
Junxiao Shi0cc125c2016-08-25 21:50:04 +000032TablesConfigSection::TablesConfigSection(Forwarder& forwarder)
33 : m_forwarder(forwarder)
34 , m_isConfigured(false)
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060035{
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060036}
37
38void
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060039TablesConfigSection::setConfigFile(ConfigFile& configFile)
40{
41 configFile.addSectionHandler("tables",
Junxiao Shi0cc125c2016-08-25 21:50:04 +000042 bind(&TablesConfigSection::processConfig, this, _1, _2));
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060043}
44
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060045void
Junxiao Shi0cc125c2016-08-25 21:50:04 +000046TablesConfigSection::ensureConfigured()
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060047{
Junxiao Shi0cc125c2016-08-25 21:50:04 +000048 if (m_isConfigured) {
Vince Lehman63ab1bb2015-09-04 17:06:58 -050049 return;
50 }
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060051
Junxiao Shi0cc125c2016-08-25 21:50:04 +000052 m_forwarder.getCs().setLimit(DEFAULT_CS_MAX_PACKETS);
Junxiao Shib4a5acd2016-12-07 19:59:18 +000053 // Don't set default cs_policy because it's already created by CS itself.
Junxiao Shi9685cc52016-08-29 12:47:05 +000054 m_forwarder.setUnsolicitedDataPolicy(make_unique<fw::DefaultUnsolicitedDataPolicy>());
Steve DiBenedettofbea5902014-07-08 15:29:12 -060055
Junxiao Shi0cc125c2016-08-25 21:50:04 +000056 m_isConfigured = true;
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060057}
58
59void
Junxiao Shi0cc125c2016-08-25 21:50:04 +000060TablesConfigSection::processConfig(const ConfigSection& section, bool isDryRun)
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060061{
Junxiao Shi0cc125c2016-08-25 21:50:04 +000062 typedef boost::optional<const ConfigSection&> OptionalNode;
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060063
Steve DiBenedetto9bcc88f2014-07-08 09:52:13 -060064 size_t nCsMaxPackets = DEFAULT_CS_MAX_PACKETS;
Junxiao Shi0cc125c2016-08-25 21:50:04 +000065 OptionalNode csMaxPacketsNode = section.get_child_optional("cs_max_packets");
Vince Lehman63ab1bb2015-09-04 17:06:58 -050066 if (csMaxPacketsNode) {
Junxiao Shi0cc125c2016-08-25 21:50:04 +000067 nCsMaxPackets = ConfigFile::parseNumber<size_t>(*csMaxPacketsNode, "cs_max_packets", "tables");
Vince Lehman63ab1bb2015-09-04 17:06:58 -050068 }
69
Junxiao Shib4a5acd2016-12-07 19:59:18 +000070 unique_ptr<cs::Policy> csPolicy;
71 OptionalNode csPolicyNode = section.get_child_optional("cs_policy");
72 if (csPolicyNode) {
73 std::string policyName = csPolicyNode->get_value<std::string>();
74 csPolicy = cs::Policy::create(policyName);
75 if (csPolicy == nullptr) {
76 BOOST_THROW_EXCEPTION(ConfigFile::Error(
77 "Unknown cs_policy \"" + policyName + "\" in \"tables\" section"));
78 }
79 }
80
Junxiao Shi9685cc52016-08-29 12:47:05 +000081 unique_ptr<fw::UnsolicitedDataPolicy> unsolicitedDataPolicy;
82 OptionalNode unsolicitedDataPolicyNode = section.get_child_optional("cs_unsolicited_policy");
83 if (unsolicitedDataPolicyNode) {
Junxiao Shib4a5acd2016-12-07 19:59:18 +000084 std::string policyName = unsolicitedDataPolicyNode->get_value<std::string>();
85 unsolicitedDataPolicy = fw::UnsolicitedDataPolicy::create(policyName);
Junxiao Shi9685cc52016-08-29 12:47:05 +000086 if (unsolicitedDataPolicy == nullptr) {
87 BOOST_THROW_EXCEPTION(ConfigFile::Error(
Junxiao Shib4a5acd2016-12-07 19:59:18 +000088 "Unknown cs_unsolicited_policy \"" + policyName + "\" in \"tables\" section"));
Junxiao Shi9685cc52016-08-29 12:47:05 +000089 }
90 }
91 else {
92 unsolicitedDataPolicy = make_unique<fw::DefaultUnsolicitedDataPolicy>();
93 }
94
Junxiao Shi0cc125c2016-08-25 21:50:04 +000095 OptionalNode strategyChoiceSection = section.get_child_optional("strategy_choice");
Vince Lehman63ab1bb2015-09-04 17:06:58 -050096 if (strategyChoiceSection) {
97 processStrategyChoiceSection(*strategyChoiceSection, isDryRun);
98 }
Steve DiBenedettoc0640f52014-11-03 15:55:43 -070099
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000100 OptionalNode networkRegionSection = section.get_child_optional("network_region");
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500101 if (networkRegionSection) {
102 processNetworkRegionSection(*networkRegionSection, isDryRun);
103 }
104
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000105 if (isDryRun) {
106 return;
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500107 }
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000108
Junxiao Shib4a5acd2016-12-07 19:59:18 +0000109 Cs& cs = m_forwarder.getCs();
110 cs.setLimit(nCsMaxPackets);
111 if (cs.size() == 0 && csPolicy != nullptr) {
112 cs.setPolicy(std::move(csPolicy));
113 }
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000114
Junxiao Shi9685cc52016-08-29 12:47:05 +0000115 m_forwarder.setUnsolicitedDataPolicy(std::move(unsolicitedDataPolicy));
116
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000117 m_isConfigured = true;
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -0600118}
119
Steve DiBenedettoc0640f52014-11-03 15:55:43 -0700120void
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000121TablesConfigSection::processStrategyChoiceSection(const ConfigSection& section, bool isDryRun)
Steve DiBenedettoc0640f52014-11-03 15:55:43 -0700122{
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000123 StrategyChoice& sc = m_forwarder.getStrategyChoice();
Steve DiBenedettoc0640f52014-11-03 15:55:43 -0700124
125 std::map<Name, Name> choices;
126
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000127 for (const auto& prefixAndStrategy : section) {
128 Name prefix(prefixAndStrategy.first);
129 Name strategy(prefixAndStrategy.second.get_value<std::string>());
130
131 if (!sc.hasStrategy(strategy)) {
132 BOOST_THROW_EXCEPTION(ConfigFile::Error(
133 "Unknown strategy \"" + prefixAndStrategy.second.get_value<std::string>() +
134 "\" for prefix \"" + prefix.toUri() + "\" in \"strategy_choice\" section"));
Steve DiBenedettoc0640f52014-11-03 15:55:43 -0700135 }
136
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000137 if (!choices.emplace(prefix, strategy).second) {
138 BOOST_THROW_EXCEPTION(ConfigFile::Error(
139 "Duplicate strategy choice for prefix \"" + prefix.toUri() +
140 "\" in \"strategy_choice\" section"));
Steve DiBenedettoc0640f52014-11-03 15:55:43 -0700141 }
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500142 }
143
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000144 if (isDryRun) {
145 return;
146 }
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500147
148 for (const auto& prefixAndStrategy : choices) {
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000149 if (!sc.insert(prefixAndStrategy.first, prefixAndStrategy.second)) {
150 BOOST_THROW_EXCEPTION(ConfigFile::Error(
151 "Failed to set strategy \"" + prefixAndStrategy.second.toUri() + "\" for "
152 "prefix \"" + prefixAndStrategy.first.toUri() + "\" in \"strategy_choicev\""));
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500153 }
154 }
Steve DiBenedettoc0640f52014-11-03 15:55:43 -0700155}
156
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500157void
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000158TablesConfigSection::processNetworkRegionSection(const ConfigSection& section, bool isDryRun)
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500159{
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000160 if (isDryRun) {
161 return;
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500162 }
163
Junxiao Shi0cc125c2016-08-25 21:50:04 +0000164 NetworkRegionTable& nrt = m_forwarder.getNetworkRegionTable();
165 nrt.clear();
166 for (const auto& pair : section) {
167 Name region(pair.first);
168 nrt.insert(region);
Vince Lehman63ab1bb2015-09-04 17:06:58 -0500169 }
170}
Steve DiBenedettoc0640f52014-11-03 15:55:43 -0700171
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -0600172} // namespace nfd