blob: 06f100df12c1b2692bb5d849dc3fe78096afd4d1 [file] [log] [blame]
Yingdi Yu151b5572015-04-27 11:07:37 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yingdi Yu6ee2d362015-07-16 21:48:05 -07003 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yu151b5572015-04-27 11:07:37 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library 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 Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
Alexander Afanasyev97709c02016-08-25 19:58:30 -070022#ifndef NDN_SECURITY_PIB_PIB_HPP
23#define NDN_SECURITY_PIB_PIB_HPP
Yingdi Yu151b5572015-04-27 11:07:37 -070024
Yingdi Yub8f8b342015-04-27 11:06:42 -070025#include "identity-container.hpp"
Yingdi Yu151b5572015-04-27 11:07:37 -070026
27namespace ndn {
28namespace security {
29
Yingdi Yu1b0311c2015-06-10 14:58:47 -070030class KeyChain;
Yingdi Yu6ee2d362015-07-16 21:48:05 -070031
32namespace pib {
33
Yingdi Yub8f8b342015-04-27 11:06:42 -070034class PibImpl;
35
Yingdi Yu151b5572015-04-27 11:07:37 -070036/**
37 * @brief represents the PIB
38 *
39 * The PIB (Public Information Base) stores the public portion of a user's cryptography keys.
40 * The format and location of stored information is indicated by the PibLocator.
41 * The PIB is designed to work with a TPM (Trusted Platform Module) which stores private keys.
42 * There is a one-to-one association between PIB and TPM, and therefore the TpmLocator is recorded
43 * by the PIB to enforce this association and prevent one from operating on mismatched PIB and TPM.
44 *
45 * Information in the PIB is organized in a hierarchy of Identity-Key-Certificate. At the top level,
46 * the Pib class provides access to identities, and allows setting a default identity. Properties of
47 * an identity can be accessed after obtaining an Identity object.
48 *
49 * @throw PibImpl::Error when underlying implementation has non-semantic error.
50 */
51class Pib : noncopyable
52{
53public:
Yingdi Yub8f8b342015-04-27 11:06:42 -070054 friend class KeyChain;
55
56public:
Yingdi Yu151b5572015-04-27 11:07:37 -070057 /// @brief represents a semantic error
58 class Error : public std::runtime_error
59 {
60 public:
61 explicit
62 Error(const std::string& what)
63 : std::runtime_error(what)
64 {
65 }
66 };
67
Yingdi Yub8f8b342015-04-27 11:06:42 -070068public:
Yingdi Yub8f8b342015-04-27 11:06:42 -070069 ~Pib();
70
71 /**
72 * @brief return the scheme of the PibLocator
73 */
74 std::string
75 getScheme() const
76 {
77 return m_scheme;
78 }
79
80 /**
81 * @brief Get PIB Locator
82 */
83 std::string
84 getPibLocator() const;
85
86 /**
87 * @brief Set the corresponding TPM information to @p tpmLocator.
88 *
Yingdi Yu7b3b5e92015-08-13 19:52:35 -070089 * If the provided @p tpmLocator is different from the existing one, PIB will be reset.
90 * Otherwise, nothing will be changed.
Yingdi Yub8f8b342015-04-27 11:06:42 -070091 */
92 void
93 setTpmLocator(const std::string& tpmLocator);
94
95 /**
96 * @brief Get TPM Locator
Yingdi Yu7b3b5e92015-08-13 19:52:35 -070097 * @throws Error if TPM locator is empty
Yingdi Yub8f8b342015-04-27 11:06:42 -070098 */
99 std::string
100 getTpmLocator() const;
101
Yingdi Yuc8209892015-06-19 17:47:56 -0700102 /**
Yingdi Yu7b3b5e92015-08-13 19:52:35 -0700103 * @brief Reset content in PIB, including reset of the TPM locator
104 */
105 void
106 reset();
107
108 /**
Yingdi Yuc8209892015-06-19 17:47:56 -0700109 * @brief Get an identity with name @p identityName.
110 *
111 * @param identityName The name for the identity to get.
112 * @throw Pib::Error if the identity does not exist.
113 */
114 Identity
115 getIdentity(const Name& identityName) const;
116
117 /// @brief Get all the identities
118 const IdentityContainer&
119 getIdentities() const;
120
121 /**
122 * @brief Get the default identity.
123 *
124 * @return the default identity.
125 * @throws Pib::Error if no default identity.
126 */
127 Identity&
128 getDefaultIdentity() const;
129
130NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE: // write operations should be private
Yingdi Yub8f8b342015-04-27 11:06:42 -0700131 /*
132 * @brief Create an identity with name @p identityName and return a reference to it.
133 *
134 * If there already exists an identity for the name @p identityName, then it is returned.
135 * If no default identity is set, the newly created identity will be set as the default.
136 *
137 * @param identityName The name for the identity to be added
138 */
139 Identity
140 addIdentity(const Name& identityName);
141
142 /*
143 * @brief Remove an identity with name @p identityName.
144 *
Yingdi Yu03997682015-11-23 16:41:38 -0800145 * If the default identity is being removed, no default identity will be selected.
146 *
Yingdi Yub8f8b342015-04-27 11:06:42 -0700147 * @param identityName The name for the identity to be deleted
148 */
149 void
150 removeIdentity(const Name& identityName);
151
152 /**
Yingdi Yub8f8b342015-04-27 11:06:42 -0700153 * @brief Set an identity with name @p identityName as the default identity.
154 *
155 * Also create the identity if it does not exist.
156 *
157 * @param identityName The name for the default identity.
158 * @return the default identity
159 */
Yingdi Yuc8209892015-06-19 17:47:56 -0700160 Identity&
Yingdi Yub8f8b342015-04-27 11:06:42 -0700161 setDefaultIdentity(const Name& identityName);
162
Yingdi Yub8f8b342015-04-27 11:06:42 -0700163NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
164 /*
165 * @brief Create a new Pib with the specified @p location
166 *
167 * @param scheme The scheme for the Pib
168 * @param location The location for the Pib
169 * @param impl The backend implementation
170 */
Yingdi Yu7b3b5e92015-08-13 19:52:35 -0700171 Pib(const std::string& scheme, const std::string& location, shared_ptr<PibImpl> impl);
Yingdi Yub8f8b342015-04-27 11:06:42 -0700172
173 shared_ptr<PibImpl>
174 getImpl()
175 {
176 return m_impl;
177 }
178
179protected:
180 std::string m_scheme;
181 std::string m_location;
Yingdi Yuc8209892015-06-19 17:47:56 -0700182
183 mutable bool m_hasDefaultIdentity;
184 mutable Identity m_defaultIdentity;
185
186 mutable bool m_needRefreshIdentities;
187 mutable IdentityContainer m_identities;
188
Yingdi Yub8f8b342015-04-27 11:06:42 -0700189 shared_ptr<PibImpl> m_impl;
Yingdi Yu151b5572015-04-27 11:07:37 -0700190};
191
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700192} // namespace pib
193
194using pib::Pib;
195
Yingdi Yu151b5572015-04-27 11:07:37 -0700196} // namespace security
197} // namespace ndn
198
Alexander Afanasyev97709c02016-08-25 19:58:30 -0700199#endif // NDN_SECURITY_PIB_PIB_HPP