Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2017-2020, Regents of the University of California. |
| 4 | * |
| 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 "probe.hpp" |
Zhiyi Zhang | 3e8ca25 | 2020-09-30 17:18:38 -0700 | [diff] [blame] | 22 | |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 23 | namespace ndn { |
| 24 | namespace ndncert { |
| 25 | |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 26 | Block |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 27 | PROBE::encodeApplicationParameters(std::vector<std::tuple<std::string, std::string>>&& parameters) |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 28 | { |
| 29 | auto content = makeEmptyBlock(tlv::ApplicationParameters); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 30 | for (size_t i = 0; i < parameters.size(); ++i) { |
| 31 | content.push_back(makeStringBlock(tlv_parameter_key, std::get<0>(parameters[i]))); |
| 32 | content.push_back(makeStringBlock(tlv_parameter_value, std::get<1>(parameters[i]))); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 33 | } |
Suyong Won | 44d0cce | 2020-05-10 04:07:43 -0700 | [diff] [blame] | 34 | content.encode(); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 35 | return content; |
| 36 | } |
| 37 | |
Zhiyi Zhang | 3e8ca25 | 2020-09-30 17:18:38 -0700 | [diff] [blame] | 38 | std::vector<std::tuple<std::string, std::string>> |
| 39 | PROBE::decodeApplicationParameters(const Block& block) |
| 40 | { |
| 41 | std::vector<std::tuple<std::string, std::string>> result; |
| 42 | block.parse(); |
| 43 | for (size_t i = 0; i < block.elements().size() - 1; ++i) { |
| 44 | if (block.elements().at(i).type() == tlv_parameter_key && block.elements().at(i + 1).type() == tlv_parameter_value) { |
| 45 | result.push_back(std::make_tuple(readString(block.elements().at(i)), readString(block.elements().at(i + 1)))); |
| 46 | } |
| 47 | } |
| 48 | return result; |
| 49 | } |
| 50 | |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 51 | Block |
Zhiyi Zhang | e537dd5 | 2020-10-01 18:02:24 -0700 | [diff] [blame] | 52 | PROBE::encodeDataContent(const std::vector<Name>& identifiers, boost::optional<size_t> maxSuffixLength, |
tylerliu | a7bea66 | 2020-10-08 18:51:02 -0700 | [diff] [blame] | 53 | boost::optional<std::vector<std::shared_ptr<security::Certificate>>> redirectionItems) |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 54 | { |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 55 | Block content = makeEmptyBlock(tlv::Content); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 56 | for (const auto& name : identifiers) { |
tylerliu | b47dad7 | 2020-10-08 21:36:55 -0700 | [diff] [blame] | 57 | Block item(tlv_probe_response); |
| 58 | item.push_back(name.wireEncode()); |
| 59 | if (maxSuffixLength) { |
| 60 | item.push_back(makeNonNegativeIntegerBlock(tlv_max_suffix_length, *maxSuffixLength)); |
| 61 | } |
| 62 | content.push_back(item); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 63 | } |
Zhiyi Zhang | e537dd5 | 2020-10-01 18:02:24 -0700 | [diff] [blame] | 64 | if (redirectionItems) { |
| 65 | for (const auto& item : *redirectionItems) { |
| 66 | content.push_back(makeNestedBlock(tlv_probe_redirect, item->getFullName())); |
| 67 | } |
| 68 | } |
Suyong Won | 44d0cce | 2020-05-10 04:07:43 -0700 | [diff] [blame] | 69 | content.encode(); |
Suyong Won | 19fba4d | 2020-05-09 13:39:46 -0700 | [diff] [blame] | 70 | return content; |
| 71 | } |
| 72 | |
Zhiyi Zhang | e537dd5 | 2020-10-01 18:02:24 -0700 | [diff] [blame] | 73 | void |
| 74 | PROBE::decodeDataContent(const Block& block, |
tylerliu | b47dad7 | 2020-10-08 21:36:55 -0700 | [diff] [blame] | 75 | std::vector<std::pair<Name, int>>& availableNames, |
Zhiyi Zhang | e537dd5 | 2020-10-01 18:02:24 -0700 | [diff] [blame] | 76 | std::vector<Name>& availableRedirection) |
Zhiyi Zhang | 3e8ca25 | 2020-09-30 17:18:38 -0700 | [diff] [blame] | 77 | { |
Zhiyi Zhang | 3e8ca25 | 2020-09-30 17:18:38 -0700 | [diff] [blame] | 78 | block.parse(); |
| 79 | for (const auto& item : block.elements()) { |
| 80 | if (item.type() == tlv_probe_response) { |
tylerliu | b47dad7 | 2020-10-08 21:36:55 -0700 | [diff] [blame] | 81 | item.parse(); |
| 82 | Name elementName; |
| 83 | int maxSuffixLength = 0; |
| 84 | for (const auto& subBlock: item.elements()) { |
| 85 | if (subBlock.type() == tlv::Name) { |
| 86 | if (!elementName.empty()) { |
| 87 | BOOST_THROW_EXCEPTION(std::runtime_error("Invalid probe format")); |
| 88 | } |
| 89 | elementName.wireDecode(subBlock); |
| 90 | } else if (subBlock.type() == tlv_max_suffix_length) { |
| 91 | maxSuffixLength = readNonNegativeInteger(subBlock); |
| 92 | } |
| 93 | } |
| 94 | if (elementName.empty()) { |
| 95 | BOOST_THROW_EXCEPTION(std::runtime_error("Invalid probe format")); |
| 96 | } |
| 97 | availableNames.emplace_back(elementName, maxSuffixLength); |
Zhiyi Zhang | e537dd5 | 2020-10-01 18:02:24 -0700 | [diff] [blame] | 98 | } |
| 99 | if (item.type() == tlv_probe_redirect) { |
tylerliu | b47dad7 | 2020-10-08 21:36:55 -0700 | [diff] [blame] | 100 | availableRedirection.emplace_back(Name(item.blockFromValue())); |
Zhiyi Zhang | 3e8ca25 | 2020-09-30 17:18:38 -0700 | [diff] [blame] | 101 | } |
| 102 | } |
Zhiyi Zhang | 3e8ca25 | 2020-09-30 17:18:38 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Zhiyi Zhang | e4891b7 | 2020-10-10 15:11:57 -0700 | [diff] [blame^] | 105 | } // namespace ndncert |
| 106 | } // namespace ndn |