blob: a3e5f01f54d0afae81bc7466544f5bab1b26f2d9 [file] [log] [blame]
Zhiyi Zhangf5246c42017-01-26 09:39:20 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -07003 * Copyright (c) 2017-2019, Regents of the University of California.
Zhiyi Zhangf5246c42017-01-26 09:39:20 -08004 *
5 * This file is part of ndncert, a certificate management system based on NDN.
6 *
7 * ndncert is free software: you can redistribute it and/or modify it under the terms
8 * of the GNU General Public License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
10 *
11 * ndncert is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License along with
16 * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * See AUTHORS.md for complete list of ndncert authors and contributors.
19 */
20
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080021#include "ca-module.hpp"
Zhiyi Zhangad6cf932017-10-26 16:19:15 -070022#include "database-fixture.hpp"
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080023#include "client-module.hpp"
24#include "challenge-module.hpp"
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070025#include "challenge-module/challenge-pin.hpp"
26#include "challenge-module/challenge-email.hpp"
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080027#include <ndn-cxx/util/dummy-client-face.hpp>
28#include <ndn-cxx/security/signing-helpers.hpp>
29#include <ndn-cxx/security/transform/public-key.hpp>
30#include <ndn-cxx/security/verification-helpers.hpp>
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070031#include <iostream>
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080032
33namespace ndn {
34namespace ndncert {
35namespace tests {
36
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070037BOOST_FIXTURE_TEST_SUITE(TestCaModule, DatabaseFixture)
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080038
39BOOST_AUTO_TEST_CASE(Initialization)
40{
41 util::DummyClientFace face(m_io, {true, true});
42 CaModule ca(face, m_keyChain, "tests/unit-tests/ca.conf.test");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070043 BOOST_CHECK_EQUAL(ca.getCaConf().m_caName.toUri(), "/ndn");
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080044
45 auto identity = addIdentity(Name("/ndn/site2"));
46 auto key = identity.getDefaultKey();
47 auto cert = key.getDefaultCertificate();
48 ca.getCaStorage()->addCertificate("111", cert);
49 BOOST_CHECK_EQUAL(ca.getCaStorage()->getCertificate("111").getIdentity(), Name("/ndn/site2"));
50
51 advanceClocks(time::milliseconds(20), 60);
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070052 BOOST_CHECK_EQUAL(ca.m_registeredPrefixHandles.size(), 2);
53 BOOST_CHECK_EQUAL(ca.m_interestFilterHandles.size(), 4);
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080054}
55
56BOOST_AUTO_TEST_CASE(HandleProbe)
57{
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070058 auto identity = addIdentity(Name("/ndn"));
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080059 auto key = identity.getDefaultKey();
60 auto cert = key.getDefaultCertificate();
61
62 util::DummyClientFace face(m_io, {true, true});
63 CaModule ca(face, m_keyChain, "tests/unit-tests/ca.conf.test");
Yufeng Zhang424d0362019-06-12 16:48:27 -070064 ca.setProbeHandler([&] (const JsonSection& probeInfo) {
65 return "example";
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080066 });
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080067 advanceClocks(time::milliseconds(20), 60);
68
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070069 Interest interest("/ndn/CA/_PROBE");
70 interest.setCanBePrefix(false);
71 JsonSection paramJson;
72 paramJson.add(JSON_CLIENT_PROBE_INFO, "zhiyi");
73 interest.setApplicationParameters(ClientModule::paramFromJson(paramJson));
Zhiyi Zhangf5246c42017-01-26 09:39:20 -080074
75 int count = 0;
76 face.onSendData.connect([&] (const Data& response) {
77 count++;
78 BOOST_CHECK(security::verifySignature(response, cert));
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070079 auto contentJson = ClientModule::getJsonFromData(response);
Yufeng Zhang424d0362019-06-12 16:48:27 -070080 BOOST_CHECK_EQUAL(contentJson.get<std::string>(JSON_CA_NAME), "/ndn/example");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070081 });
82 face.receive(interest);
83
84 advanceClocks(time::milliseconds(20), 60);
85 BOOST_CHECK_EQUAL(count, 1);
86}
87
88BOOST_AUTO_TEST_CASE(HandleProbeInfo)
89{
90 auto identity = addIdentity(Name("/ndn"));
91 auto key = identity.getDefaultKey();
92 auto cert = key.getDefaultCertificate();
93
94 util::DummyClientFace face(m_io, {true, true});
95 CaModule ca(face, m_keyChain, "tests/unit-tests/ca.conf.test");
Yufeng Zhang424d0362019-06-12 16:48:27 -070096 ca.setProbeHandler([&] (const JsonSection& probeInfo) {
97 return "example";
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070098 });
99 advanceClocks(time::milliseconds(20), 60);
100
101 Interest interest("/ndn/CA/_PROBE/INFO");
102 interest.setCanBePrefix(false);
103
104 int count = 0;
105 face.onSendData.connect([&] (const Data& response) {
106 count++;
107 BOOST_CHECK(security::verifySignature(response, cert));
108 auto contentJson = ClientModule::getJsonFromData(response);
109 auto caItem = ClientConfig::extractCaItem(contentJson);
110 BOOST_CHECK_EQUAL(caItem.m_caName.toUri(), "/ndn");
111 BOOST_CHECK_EQUAL(caItem.m_probe, "input email address");
112 BOOST_CHECK_EQUAL(caItem.m_anchor.wireEncode(), cert.wireEncode());
113 BOOST_CHECK_EQUAL(caItem.m_caInfo, "ndn testbed ca");
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800114 });
115 face.receive(interest);
116
117 advanceClocks(time::milliseconds(20), 60);
118 BOOST_CHECK_EQUAL(count, 1);
119}
120
Zhiyi Zhanga63b7372017-05-17 14:14:34 -0700121BOOST_AUTO_TEST_CASE(HandleProbeUsingDefaultHandler)
122{
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700123 auto identity = addIdentity(Name("/ndn"));
Zhiyi Zhanga63b7372017-05-17 14:14:34 -0700124 auto key = identity.getDefaultKey();
125 auto cert = key.getDefaultCertificate();
126
127 util::DummyClientFace face(m_io, {true, true});
128 CaModule ca(face, m_keyChain, "tests/unit-tests/ca.conf.test");
Zhiyi Zhanga63b7372017-05-17 14:14:34 -0700129 advanceClocks(time::milliseconds(20), 60);
130
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700131 Interest interest("/ndn/CA/_PROBE");
132 interest.setCanBePrefix(false);
133 JsonSection paramJson;
134 paramJson.add(JSON_CLIENT_PROBE_INFO, "zhiyi");
135 interest.setApplicationParameters(ClientModule::paramFromJson(paramJson));
Zhiyi Zhanga63b7372017-05-17 14:14:34 -0700136
137 int count = 0;
138 face.onSendData.connect([&] (const Data& response) {
139 count++;
140 BOOST_CHECK(security::verifySignature(response, cert));
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700141 auto contentJson = ClientModule::getJsonFromData(response);
142 BOOST_CHECK(contentJson.get<std::string>(JSON_CA_NAME) != "");
Zhiyi Zhanga63b7372017-05-17 14:14:34 -0700143 });
144 face.receive(interest);
145
146 advanceClocks(time::milliseconds(20), 60);
147 BOOST_CHECK_EQUAL(count, 1);
148}
149
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800150BOOST_AUTO_TEST_CASE(HandleNew)
151{
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700152 auto identity = addIdentity(Name("/ndn"));
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800153 auto key = identity.getDefaultKey();
154 auto cert = key.getDefaultCertificate();
155
156 util::DummyClientFace face(m_io, {true, true});
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800157 CaModule ca(face, m_keyChain, "tests/unit-tests/ca.conf.test");
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800158 advanceClocks(time::milliseconds(20), 60);
159
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700160 ClientModule client(m_keyChain);
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800161 ClientCaItem item;
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700162 item.m_caName = Name("/ndn");
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800163 item.m_anchor = cert;
164 client.getClientConf().m_caItems.push_back(item);
Zhiyi Zhang5f749a22019-06-12 17:02:33 -0700165
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700166 auto interest = client.generateNewInterest(time::system_clock::now(),
Zhiyi Zhang5f749a22019-06-12 17:02:33 -0700167 time::system_clock::now() + time::days(10),
168 Name("/ndn/zhiyi"));
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800169
170 int count = 0;
171 face.onSendData.connect([&] (const Data& response) {
172 count++;
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700173 BOOST_CHECK(security::verifySignature(response, cert));
174 auto contentJson = ClientModule::getJsonFromData(response);
175 BOOST_CHECK(contentJson.get<std::string>(JSON_CA_ECDH) != "");
176 BOOST_CHECK(contentJson.get<std::string>(JSON_CA_SALT) != "");
177 BOOST_CHECK(contentJson.get<std::string>(JSON_CA_EQUEST_ID) != "");
178 auto challengesJson = contentJson.get_child(JSON_CA_CHALLENGES);
179 BOOST_CHECK(challengesJson.size() != 0);
180
181 client.onNewResponse(response);
182 BOOST_CHECK_EQUAL_COLLECTIONS(client.m_aesKey, client.m_aesKey + 32, ca.m_aesKey, ca.m_aesKey + 32);
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800183 });
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700184 face.receive(*interest);
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800185
186 advanceClocks(time::milliseconds(20), 60);
187 BOOST_CHECK_EQUAL(count, 1);
188}
189
Zhiyi Zhang5f749a22019-06-12 17:02:33 -0700190BOOST_AUTO_TEST_CASE(HandleNewWithProbeToken)
191{
192 auto identity = addIdentity(Name("/ndn"));
193 auto key = identity.getDefaultKey();
194 auto cert = key.getDefaultCertificate();
195
196 util::DummyClientFace face(m_io, {true, true});
197 CaModule ca(face, m_keyChain, "tests/unit-tests/ca.conf.test");
198 advanceClocks(time::milliseconds(20), 60);
199
200 ClientModule client(m_keyChain);
201 ClientCaItem item;
202 item.m_caName = Name("/ndn");
203 item.m_anchor = cert;
204 client.getClientConf().m_caItems.push_back(item);
205
206 auto data = make_shared<Data>(Name("/ndn/CA/probe/123"));
207 m_keyChain.sign(*data, signingByIdentity(ca.m_config.m_caName));
208
209 auto interest = client.generateNewInterest(time::system_clock::now(),
210 time::system_clock::now() + time::days(10),
211 Name("/ndn/zhiyi"), data);
212
213 int count = 0;
214 face.onSendData.connect([&] (const Data& response) {
215 count++;
216 BOOST_CHECK(security::verifySignature(response, cert));
217 });
218 face.receive(*interest);
219
220 advanceClocks(time::milliseconds(20), 60);
221 BOOST_CHECK_EQUAL(count, 1);
222}
223
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700224BOOST_AUTO_TEST_CASE(HandleChallenge)
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800225{
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700226 auto identity = addIdentity(Name("/ndn"));
227 auto key = identity.getDefaultKey();
228 auto cert = key.getDefaultCertificate();
229
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800230 util::DummyClientFace face(m_io, {true, true});
231 CaModule ca(face, m_keyChain, "tests/unit-tests/ca.conf.test");
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800232 advanceClocks(time::milliseconds(20), 60);
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700233
234 // generate NEW Interest
235 ClientModule client(m_keyChain);
236 ClientCaItem item;
237 item.m_caName = Name("/ndn");
238 item.m_anchor = cert;
239 client.getClientConf().m_caItems.push_back(item);
240 auto newInterest = client.generateNewInterest(time::system_clock::now(),
241 time::system_clock::now() + time::days(10), Name("/ndn/zhiyi"));
242
Zhiyi Zhang5f749a22019-06-12 17:02:33 -0700243 std::cout << "hi there" << std::endl;
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700244 // generate CHALLENGE Interest
245 ChallengePin pinChallenge;
246 shared_ptr<Interest> challengeInterest = nullptr;
247 shared_ptr<Interest> challengeInterest2 = nullptr;
248 shared_ptr<Interest> challengeInterest3 = nullptr;
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800249
250 int count = 0;
251 face.onSendData.connect([&] (const Data& response) {
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700252 if (Name("/ndn/CA/_NEW").isPrefixOf(response.getName())) {
253 auto contentJson = ClientModule::getJsonFromData(response);
254 std::cout << "Request ID " << contentJson.get<std::string>(JSON_CA_EQUEST_ID) << std::endl;
255 client.onNewResponse(response);
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800256
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700257 auto paramJson = pinChallenge.getRequirementForChallenge(client.m_status, client.m_challengeStatus);
258 for (auto& item : paramJson) {
259 std::cout << "JSON attribute" << item.first;
260 std::cout << " : " << item.second.get<std::string>("") << std::endl;
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800261 }
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700262 challengeInterest = client.generateChallengeInterest(pinChallenge.genChallengeRequestJson(client.m_status,
263 client.m_challengeStatus,
264 paramJson));
265 }
266 else if (Name("/ndn/CA/_CHALLENGE").isPrefixOf(response.getName()) && count == 0) {
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800267 count++;
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700268 BOOST_CHECK(security::verifySignature(response, cert));
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800269
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700270 client.onChallengeResponse(response);
271 BOOST_CHECK_EQUAL(client.m_status, STATUS_CHALLENGE);
272 BOOST_CHECK_EQUAL(client.m_challengeStatus, ChallengePin::NEED_CODE);
273 auto paramJson = pinChallenge.getRequirementForChallenge(client.m_status, client.m_challengeStatus);
274 for (auto& item : paramJson) {
275 std::cout << "JSON attribute" << item.first;
276 std::cout << " : " << item.second.get<std::string>("") << std::endl;
277 }
278 challengeInterest2 = client.generateChallengeInterest(pinChallenge.genChallengeRequestJson(client.m_status,
279 client.m_challengeStatus,
280 paramJson));
281 }
282 else if (Name("/ndn/CA/_CHALLENGE").isPrefixOf(response.getName()) && count == 1) {
283 count++;
284 BOOST_CHECK(security::verifySignature(response, cert));
285
286 client.onChallengeResponse(response);
287 BOOST_CHECK_EQUAL(client.m_status, STATUS_CHALLENGE);
288 BOOST_CHECK_EQUAL(client.m_challengeStatus, ChallengePin::WRONG_CODE);
289 auto paramJson = pinChallenge.getRequirementForChallenge(client.m_status, client.m_challengeStatus);
290 auto request = ca.getCertificateRequest(*challengeInterest2);
291 auto secret = request.m_challengeSecrets.get(ChallengePin::JSON_PIN_CODE, "");
292 for (auto& item : paramJson) {
293 std::cout << "JSON attribute" << item.first;
294 std::cout << " : " << item.second.get<std::string>("") << std::endl;
295 if (item.first == ChallengePin::JSON_PIN_CODE)
296 item.second.put("", secret);
297 }
298 challengeInterest3 = client.generateChallengeInterest(pinChallenge.genChallengeRequestJson(client.m_status,
299 client.m_challengeStatus,
300 paramJson));
301 }
302 else if (Name("/ndn/CA/_CHALLENGE").isPrefixOf(response.getName()) && count == 2) {
303 count++;
304 BOOST_CHECK(security::verifySignature(response, cert));
305
306 client.onChallengeResponse(response);
307 BOOST_CHECK_EQUAL(client.m_status, STATUS_SUCCESS);
308 BOOST_CHECK_EQUAL(client.m_challengeStatus, CHALLENGE_STATUS_SUCCESS);
309 }
310 });
311 face.receive(*newInterest);
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800312 advanceClocks(time::milliseconds(20), 60);
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700313 face.receive(*challengeInterest);
314 advanceClocks(time::milliseconds(20), 60);
315 face.receive(*challengeInterest2);
316 advanceClocks(time::milliseconds(20), 60);
317 face.receive(*challengeInterest3);
318 advanceClocks(time::milliseconds(20), 60);
319 BOOST_CHECK_EQUAL(count, 3);
Zhiyi Zhang1c0bd372017-12-18 18:32:55 +0800320}
321
Zhiyi Zhangf5246c42017-01-26 09:39:20 -0800322BOOST_AUTO_TEST_SUITE_END() // TestCaModule
323
324} // namespace tests
325} // namespace ndncert
326} // namespace ndn