blob: bc624bc4b6f784cf7c41c64ce70469d06ae79081 [file] [log] [blame]
Zhiyi Zhangdefa9592017-02-21 10:56:22 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
tylerliu1f2c3cf2021-11-15 15:43:02 -08002/*
3 * Copyright (c) 2017-2021, Regents of the University of California.
Zhiyi Zhangdefa9592017-02-21 10:56:22 -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
21#include "challenge-email.hpp"
Zhiyi Zhang523f0c22020-09-29 14:19:20 -070022#include <regex>
tylerliu1f480be2020-11-10 13:02:53 -080023#include <boost/process.hpp>
Zhiyi Zhangdefa9592017-02-21 10:56:22 -080024
Zhiyi Zhangdefa9592017-02-21 10:56:22 -080025namespace ndncert {
26
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -070027NDN_LOG_INIT(ndncert.challenge.email);
Zhiyi Zhang36706832019-07-04 21:33:03 -070028NDNCERT_REGISTER_CHALLENGE(ChallengeEmail, "email");
Zhiyi Zhangdefa9592017-02-21 10:56:22 -080029
30const std::string ChallengeEmail::NEED_CODE = "need-code";
31const std::string ChallengeEmail::WRONG_CODE = "wrong-code";
Zhiyi Zhangead9f002020-10-03 15:42:52 -070032const std::string ChallengeEmail::INVALID_EMAIL = "invalid-email";
Zhiyi Zhang46049832020-09-28 17:08:12 -070033const std::string ChallengeEmail::PARAMETER_KEY_EMAIL = "email";
34const std::string ChallengeEmail::PARAMETER_KEY_CODE = "code";
Zhiyi Zhangdefa9592017-02-21 10:56:22 -080035
36ChallengeEmail::ChallengeEmail(const std::string& scriptPath,
37 const size_t& maxAttemptTimes,
38 const time::seconds secretLifetime)
Davide Pesavento0dc02012021-11-23 22:55:03 -050039 : ChallengeModule("email", maxAttemptTimes, secretLifetime)
40 , m_sendEmailScript(scriptPath)
Zhiyi Zhangdefa9592017-02-21 10:56:22 -080041{
42}
43
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070044// For CA
Zhiyi Zhangaafc55e2020-09-28 17:54:48 -070045std::tuple<ErrorCode, std::string>
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -070046ChallengeEmail::handleChallengeRequest(const Block& params, ca::RequestState& request)
Zhiyi Zhangdefa9592017-02-21 10:56:22 -080047{
Suyong Won44d0cce2020-05-10 04:07:43 -070048 params.parse();
Zhiyi Zhang8da54d62019-11-21 00:03:05 -080049 auto currentTime = time::system_clock::now();
tylerliu7b9185c2020-11-24 12:15:18 -080050 if (request.status == Status::BEFORE_CHALLENGE) {
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070051 // for the first time, init the challenge
tylerliu50d679e2020-10-14 14:08:39 -070052 std::string emailAddress = readString(params.get(tlv::ParameterValue));
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070053 if (!isValidEmailAddress(emailAddress)) {
Davide Pesavento0dc02012021-11-23 22:55:03 -050054 return returnWithNewChallengeStatus(request, INVALID_EMAIL, JsonSection(), m_maxAttemptTimes - 1,
55 m_secretLifetime);
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070056 }
tylerliu7b9185c2020-11-24 12:15:18 -080057 auto lastComponentRequested = readString(request.cert.getIdentity().get(-1));
Zhiyi Zhang46049832020-09-28 17:08:12 -070058 if (lastComponentRequested != emailAddress) {
tylerliu6563f932020-10-30 11:13:38 -070059 NDN_LOG_TRACE("Email and requested name do not match. Email " << emailAddress << "requested last component "
60 << lastComponentRequested);
Zhiyi Zhang5f749a22019-06-12 17:02:33 -070061 }
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070062 std::string emailCode = generateSecretCode();
63 JsonSection secretJson;
Zhiyi Zhang46049832020-09-28 17:08:12 -070064 secretJson.add(PARAMETER_KEY_CODE, emailCode);
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070065 // send out the email
66 sendEmail(emailAddress, emailCode, request);
Davide Pesavento0dc02012021-11-23 22:55:03 -050067 NDN_LOG_TRACE("Secret for request " << ndn::toHex(request.requestId.data(), request.requestId.size())
68 << " : " << emailCode);
69 return returnWithNewChallengeStatus(request, NEED_CODE, std::move(secretJson),
70 m_maxAttemptTimes, m_secretLifetime);
Zhiyi Zhangdefa9592017-02-21 10:56:22 -080071 }
tylerliu7b9185c2020-11-24 12:15:18 -080072 if (request.challengeState) {
73 if (request.challengeState->challengeStatus == NEED_CODE ||
74 request.challengeState->challengeStatus == WRONG_CODE) {
75 NDN_LOG_TRACE("Challenge Interest arrives. Challenge Status: " << request.challengeState->challengeStatus);
Zhiyi Zhanga749f442020-09-29 17:19:51 -070076 // the incoming interest should bring the pin code
tylerliu50d679e2020-10-14 14:08:39 -070077 std::string givenCode = readString(params.get(tlv::ParameterValue));
tylerliu7b9185c2020-11-24 12:15:18 -080078 auto secret = request.challengeState->secrets;
Zhiyi Zhanga749f442020-09-29 17:19:51 -070079 // check if run out of time
tylerliu7b9185c2020-11-24 12:15:18 -080080 if (currentTime - request.challengeState->timestamp >= m_secretLifetime) {
Zhiyi Zhanga749f442020-09-29 17:19:51 -070081 return returnWithError(request, ErrorCode::OUT_OF_TIME, "Secret expired.");
82 }
83 // check if provided secret is correct
84 if (givenCode == secret.get<std::string>(PARAMETER_KEY_CODE)) {
85 // the code is correct
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -070086 NDN_LOG_TRACE("Correct secret code. Challenge succeeded.");
Zhiyi Zhanga749f442020-09-29 17:19:51 -070087 return returnWithSuccess(request);
88 }
89 // otherwise, check remaining attempt times
tylerliu7b9185c2020-11-24 12:15:18 -080090 if (request.challengeState->remainingTries > 1) {
91 auto remainTime = m_secretLifetime - (currentTime - request.challengeState->timestamp);
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -070092 NDN_LOG_TRACE("Wrong secret code provided. Remaining Tries - 1.");
Zhiyi Zhanga749f442020-09-29 17:19:51 -070093 return returnWithNewChallengeStatus(request, WRONG_CODE, std::move(secret),
tylerliu7b9185c2020-11-24 12:15:18 -080094 request.challengeState->remainingTries - 1,
Zhiyi Zhanga749f442020-09-29 17:19:51 -070095 time::duration_cast<time::seconds>(remainTime));
96 }
97 else {
98 // run out times
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -070099 NDN_LOG_TRACE("Wrong secret code provided. Ran out tires. Challenge failed.");
Zhiyi Zhanga749f442020-09-29 17:19:51 -0700100 return returnWithError(request, ErrorCode::OUT_OF_TRIES, "Ran out tires.");
101 }
Zhiyi Zhangdefa9592017-02-21 10:56:22 -0800102 }
103 }
Zhiyi Zhangaafc55e2020-09-28 17:54:48 -0700104 return returnWithError(request, ErrorCode::INVALID_PARAMETER, "Unexpected status or challenge status");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700105}
106
107// For Client
tylerliu40226332020-11-11 15:37:16 -0800108std::multimap<std::string, std::string>
Zhiyi Zhang46049832020-09-28 17:08:12 -0700109ChallengeEmail::getRequestedParameterList(Status status, const std::string& challengeStatus)
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700110{
tylerliu40226332020-11-11 15:37:16 -0800111 std::multimap<std::string, std::string> result;
Zhiyi Zhang48f23782020-09-28 12:11:24 -0700112 if (status == Status::BEFORE_CHALLENGE && challengeStatus == "") {
tylerliu40226332020-11-11 15:37:16 -0800113 result.emplace(PARAMETER_KEY_EMAIL, "Please input your email address");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700114 }
tylerliu1f2c3cf2021-11-15 15:43:02 -0800115 else if (status == Status::CHALLENGE && challengeStatus == INVALID_EMAIL) {
116 result.emplace(PARAMETER_KEY_EMAIL, "Invalid email, please try again");
117 }
Zhiyi Zhang48f23782020-09-28 12:11:24 -0700118 else if (status == Status::CHALLENGE && challengeStatus == NEED_CODE) {
tylerliu40226332020-11-11 15:37:16 -0800119 result.emplace(PARAMETER_KEY_CODE, "Please input your verification code");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700120 }
Zhiyi Zhang48f23782020-09-28 12:11:24 -0700121 else if (status == Status::CHALLENGE && challengeStatus == WRONG_CODE) {
tylerliu40226332020-11-11 15:37:16 -0800122 result.emplace(PARAMETER_KEY_CODE, "Incorrect code, please try again");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700123 }
124 else {
tylerliu41c11532020-10-10 16:14:45 -0700125 NDN_THROW(std::runtime_error("Unexpected status or challenge status."));
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -0700126 }
Zhiyi Zhangdefa9592017-02-21 10:56:22 -0800127 return result;
128}
129
Suyong Won19fba4d2020-05-09 13:39:46 -0700130Block
Zhiyi Zhangba8e45e2020-11-03 08:55:32 -0800131ChallengeEmail::genChallengeRequestTLV(Status status, const std::string& challengeStatus,
tylerliuf2e6bb52020-12-13 13:23:05 -0800132 const std::multimap<std::string, std::string>& params)
Suyong Won19fba4d2020-05-09 13:39:46 -0700133{
tylerliu1f480be2020-11-10 13:02:53 -0800134 Block request(tlv::EncryptedPayload);
Zhiyi Zhang46049832020-09-28 17:08:12 -0700135 if (status == Status::BEFORE_CHALLENGE) {
tylerliu40226332020-11-11 15:37:16 -0800136 if (params.size() != 1 || params.find(PARAMETER_KEY_EMAIL) == params.end()) {
tylerliu41c11532020-10-10 16:14:45 -0700137 NDN_THROW(std::runtime_error("Wrong parameter provided."));
Zhiyi Zhang46049832020-09-28 17:08:12 -0700138 }
Davide Pesavento0dc02012021-11-23 22:55:03 -0500139 request.push_back(ndn::makeStringBlock(tlv::SelectedChallenge, CHALLENGE_TYPE));
140 request.push_back(ndn::makeStringBlock(tlv::ParameterKey, PARAMETER_KEY_EMAIL));
141 request.push_back(ndn::makeStringBlock(tlv::ParameterValue, params.find(PARAMETER_KEY_EMAIL)->second));
Suyong Won19fba4d2020-05-09 13:39:46 -0700142 }
Zhiyi Zhang46049832020-09-28 17:08:12 -0700143 else if (status == Status::CHALLENGE && (challengeStatus == NEED_CODE || challengeStatus == WRONG_CODE)) {
tylerliu40226332020-11-11 15:37:16 -0800144 if (params.size() != 1 || params.find(PARAMETER_KEY_CODE) == params.end()) {
tylerliu41c11532020-10-10 16:14:45 -0700145 NDN_THROW(std::runtime_error("Wrong parameter provided."));
Zhiyi Zhang46049832020-09-28 17:08:12 -0700146 }
Davide Pesavento0dc02012021-11-23 22:55:03 -0500147 request.push_back(ndn::makeStringBlock(tlv::SelectedChallenge, CHALLENGE_TYPE));
148 request.push_back(ndn::makeStringBlock(tlv::ParameterKey, PARAMETER_KEY_CODE));
149 request.push_back(ndn::makeStringBlock(tlv::ParameterValue, params.find(PARAMETER_KEY_CODE)->second));
Suyong Won19fba4d2020-05-09 13:39:46 -0700150 }
151 else {
tylerliu41c11532020-10-10 16:14:45 -0700152 NDN_THROW(std::runtime_error("Unexpected status or challenge status."));
Suyong Won19fba4d2020-05-09 13:39:46 -0700153 }
Suyong Won44d0cce2020-05-10 04:07:43 -0700154 request.encode();
Suyong Won19fba4d2020-05-09 13:39:46 -0700155 return request;
156}
157
Zhiyi Zhangdefa9592017-02-21 10:56:22 -0800158bool
159ChallengeEmail::isValidEmailAddress(const std::string& emailAddress)
160{
Zhiyi Zhang8ce677b2018-07-13 14:44:06 -0700161 const std::string pattern = R"_REGEX_((^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9\-\.]+$))_REGEX_";
162 static const std::regex emailPattern(pattern);
163 return std::regex_match(emailAddress, emailPattern);
Zhiyi Zhangdefa9592017-02-21 10:56:22 -0800164}
165
166void
Zhiyi Zhang576aad12017-10-03 15:41:53 -0700167ChallengeEmail::sendEmail(const std::string& emailAddress, const std::string& secret,
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -0700168 const ca::RequestState& request) const
Zhiyi Zhangdefa9592017-02-21 10:56:22 -0800169{
Zhiyi Zhang576aad12017-10-03 15:41:53 -0700170 std::string command = m_sendEmailScript;
Zhiyi Zhangba8e45e2020-11-03 08:55:32 -0800171 command += " \"" + emailAddress + "\" \"" + secret + "\" \"" +
tylerliu7b9185c2020-11-24 12:15:18 -0800172 request.caPrefix.toUri() + "\" \"" +
173 request.cert.getName().toUri() + "\"";
tylerliu1f480be2020-11-10 13:02:53 -0800174 boost::process::child child(command);
175 child.wait();
176 if (child.exit_code() != 0) {
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -0700177 NDN_LOG_TRACE("EmailSending Script " + m_sendEmailScript + " fails.");
Zhiyi Zhangdefa9592017-02-21 10:56:22 -0800178 }
Zhiyi Zhangd61b4a82020-10-10 15:18:43 -0700179 NDN_LOG_TRACE("EmailSending Script " + m_sendEmailScript +
tylerliu1f480be2020-11-10 13:02:53 -0800180 " was executed successfully with return value 0.");
Zhiyi Zhangdefa9592017-02-21 10:56:22 -0800181}
182
Zhiyi Zhange4891b72020-10-10 15:11:57 -0700183} // namespace ndncert