blob: 7e4b2c535cf111af4463304c12a212ed010e4888 [file] [log] [blame]
Mickey Sweatt11314b72015-06-10 17:20:19 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventoaa82eb62016-04-22 19:08:40 +02003 * Copyright (c) 2013-2016 Regents of the University of California.
Mickey Sweatt11314b72015-06-10 17:20:19 -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_SECURITTY_PIB_PIB_SQLITE3_HPP
23#define NDN_SECURITTY_PIB_PIB_SQLITE3_HPP
Mickey Sweatt11314b72015-06-10 17:20:19 -070024
25#include "pib-impl.hpp"
26
27struct sqlite3;
28
29namespace ndn {
30namespace security {
31
32/**
33 * @brief Pib backend implementation based on SQLite3 database
34 *
35 * All the contents in Pib are stored in a SQLite3 database file.
36 * This backend provides more persistent storage than PibMemory.
37 */
38class PibSqlite3 : public PibImpl
39{
40public:
41 /**
42 * @brief Constructor of PibSqlite3
43 *
44 * This method will create a SQLite3 database file under the directory @p dir.
45 * If the directory does not exist, it will be created automatically.
46 * It assumes that the directory does not contain a PIB database of an older version,
47 * It is user's responsibility to update the older version database or remove the database.
48 *
49 * @param dir The directory where the database file is located. By default, it points to the
50 * $HOME/.ndn directory.
51 * @throws PibImpl::Error when initialization fails.
52 */
53 explicit
54 PibSqlite3(const std::string& dir = "");
55
56 /**
57 * @brief Destruct and cleanup internal state
58 */
59 ~PibSqlite3();
60
61public: // TpmLocator management
62
Davide Pesavento57c07df2016-12-11 18:41:45 -050063 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020064 setTpmLocator(const std::string& tpmLocator) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070065
Davide Pesavento57c07df2016-12-11 18:41:45 -050066 std::string
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020067 getTpmLocator() const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070068
69public: // Identity management
70
Davide Pesavento57c07df2016-12-11 18:41:45 -050071 bool
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020072 hasIdentity(const Name& identity) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070073
Davide Pesavento57c07df2016-12-11 18:41:45 -050074 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020075 addIdentity(const Name& identity) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070076
Davide Pesavento57c07df2016-12-11 18:41:45 -050077 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020078 removeIdentity(const Name& identity) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070079
Davide Pesavento57c07df2016-12-11 18:41:45 -050080 std::set<Name>
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020081 getIdentities() const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070082
Davide Pesavento57c07df2016-12-11 18:41:45 -050083 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020084 setDefaultIdentity(const Name& identityName) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070085
Davide Pesavento57c07df2016-12-11 18:41:45 -050086 Name
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020087 getDefaultIdentity() const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070088
89public: // Key management
90
Davide Pesavento57c07df2016-12-11 18:41:45 -050091 bool
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020092 hasKey(const Name& identity, const name::Component& keyId) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070093
Davide Pesavento57c07df2016-12-11 18:41:45 -050094 void
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070095 addKey(const Name& identity, const name::Component& keyId, const v1::PublicKey& publicKey) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070096
Davide Pesavento57c07df2016-12-11 18:41:45 -050097 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020098 removeKey(const Name& identity, const name::Component& keyId) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -070099
Davide Pesavento57c07df2016-12-11 18:41:45 -0500100 v1::PublicKey
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200101 getKeyBits(const Name& identity, const name::Component& keyId) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700102
Davide Pesavento57c07df2016-12-11 18:41:45 -0500103 std::set<name::Component>
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200104 getKeysOfIdentity(const Name& identity) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700105
Davide Pesavento57c07df2016-12-11 18:41:45 -0500106 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200107 setDefaultKeyOfIdentity(const Name& identity, const name::Component& keyId) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700108
Davide Pesavento57c07df2016-12-11 18:41:45 -0500109 name::Component
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200110 getDefaultKeyOfIdentity(const Name& identity) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700111
112public: // Certificate Management
113
Davide Pesavento57c07df2016-12-11 18:41:45 -0500114 bool
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200115 hasCertificate(const Name& certName) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700116
Davide Pesavento57c07df2016-12-11 18:41:45 -0500117 void
Alexander Afanasyev2fa59392016-07-29 17:24:23 -0700118 addCertificate(const v1::IdentityCertificate& certificate) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700119
Davide Pesavento57c07df2016-12-11 18:41:45 -0500120 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200121 removeCertificate(const Name& certName) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700122
Davide Pesavento57c07df2016-12-11 18:41:45 -0500123 v1::IdentityCertificate
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200124 getCertificate(const Name& certName) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700125
Davide Pesavento57c07df2016-12-11 18:41:45 -0500126 std::set<Name>
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200127 getCertificatesOfKey(const Name& identity, const name::Component& keyId) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700128
Davide Pesavento57c07df2016-12-11 18:41:45 -0500129 void
Mickey Sweatt11314b72015-06-10 17:20:19 -0700130 setDefaultCertificateOfKey(const Name& identity, const name::Component& keyId,
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200131 const Name& certName) final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700132
Davide Pesavento57c07df2016-12-11 18:41:45 -0500133 v1::IdentityCertificate
Davide Pesaventoaa82eb62016-04-22 19:08:40 +0200134 getDefaultCertificateOfKey(const Name& identity, const name::Component& keyId) const final;
Mickey Sweatt11314b72015-06-10 17:20:19 -0700135
136private:
137 sqlite3* m_database;
138};
139
140} // namespace security
141} // namespace ndn
142
Alexander Afanasyev97709c02016-08-25 19:58:30 -0700143#endif // NDN_SECURITTY_PIB_PIB_SQLITE3_HPP