| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| /* |
| * Copyright (c) 2013, Regents of the University of California |
| * Yingdi Yu |
| * |
| * BSD license, See the LICENSE file for more information |
| * |
| * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| */ |
| |
| #include "profile.h" |
| #include <ndn.cxx/helpers/der/der.h> |
| #include <ndn.cxx/helpers/der/visitor/print-visitor.h> |
| #include <ndn.cxx/helpers/der/visitor/simple-visitor.h> |
| #include "logging.h" |
| |
| using namespace std; |
| using namespace ndn; |
| |
| INIT_LOGGER("Profile"); |
| |
| static string nameOid("2.5.4.41"); |
| static string orgOid("2.5.4.11"); |
| static string groupOid("2.5.4.1"); |
| static string homepageOid("2.5.4.3"); |
| static string advisor("2.5.4.80"); |
| static string emailOid("1.2.840.113549.1.9.1"); |
| |
| Profile::Profile(const security::IdentityCertificate& oldIdentityCertificate) |
| { |
| using namespace ndn::security; |
| security::IdentityCertificate identityCertificate(oldIdentityCertificate); |
| |
| Name keyName = identityCertificate.getPublicKeyName(); |
| m_identityName = keyName.getPrefix(keyName.size()-1); |
| |
| const string& identityString = m_identityName.toUri(); |
| Blob identityBlob (identityString.c_str(), identityString.size()); |
| m_entries[string("IDENTITY")] = identityBlob; |
| |
| const vector<CertificateSubDescrypt>& subList = identityCertificate.getSubjectDescriptionList(); |
| vector<CertificateSubDescrypt>::const_iterator it = subList.begin(); |
| for(; it != subList.end(); it++) |
| { |
| string oidStr = it->getOidStr(); |
| Blob blob (it->getValue().c_str(), it->getValue().size()); |
| if(oidStr == nameOid) |
| m_entries[string("name")] = blob; |
| else if(oidStr == orgOid) |
| m_entries[string("institution")] = blob; |
| else if(oidStr == groupOid) |
| m_entries[string("group")] = blob; |
| else if(oidStr == homepageOid) |
| m_entries[string("homepage")] = blob; |
| else if(oidStr == advisor) |
| m_entries[string("advisor")] = blob; |
| else if(oidStr == emailOid) |
| m_entries[string("email")] = blob; |
| else |
| m_entries[oidStr] = blob; |
| } |
| } |
| |
| Profile::Profile(const Name& identityName) |
| : m_identityName(identityName) |
| { |
| const string& nameString = identityName.toUri(); |
| Blob identityBlob (nameString.c_str(), nameString.size()); |
| m_entries[string("IDENTITY")] = identityBlob; |
| } |
| |
| Profile::Profile(const Name& identityName, |
| const string& name, |
| const string& institution) |
| : m_identityName(identityName) |
| { |
| const string& nameString = identityName.toUri(); |
| Blob identityBlob (nameString.c_str(), nameString.size()); |
| m_entries[string("IDENTITY")] = identityBlob; |
| |
| Blob nameBlob (name.c_str(), name.size()); |
| Blob institutionBlob (institution.c_str(), institution.size()); |
| |
| m_entries[string("name")] = nameBlob; |
| m_entries[string("institution")] = institutionBlob; |
| } |
| |
| Profile::Profile(const Profile& profile) |
| : m_identityName(profile.m_identityName) |
| , m_entries(profile.m_entries) |
| {} |
| |
| void |
| Profile::setProfileEntry(const string& profileType, |
| const Blob& profileValue) |
| { m_entries[profileType] = profileValue; } |
| |
| Ptr<const Blob> |
| Profile::getProfileEntry(const string& profileType) const |
| { |
| if(m_entries.find(profileType) != m_entries.end()) |
| return Ptr<Blob>(new Blob(m_entries.at(profileType).buf(), m_entries.at(profileType).size())); |
| |
| return NULL; |
| } |
| |
| Ptr<Blob> |
| Profile::toDerBlob() const |
| { |
| Ptr<der::DerSequence> root = Ptr<der::DerSequence>::Create(); |
| |
| Ptr<der::DerPrintableString> identityName = Ptr<der::DerPrintableString>(new der::DerPrintableString(m_identityName.toUri())); |
| root->addChild(identityName); |
| |
| map<string, Blob>::const_iterator it = m_entries.begin(); |
| for(; it != m_entries.end(); it++) |
| { |
| Ptr<der::DerSequence> entry = Ptr<der::DerSequence>::Create(); |
| Ptr<der::DerPrintableString> type = Ptr<der::DerPrintableString>(new der::DerPrintableString(it->first)); |
| Ptr<der::DerOctetString> value = Ptr<der::DerOctetString>(new der::DerOctetString(it->second)); |
| entry->addChild(type); |
| entry->addChild(value); |
| root->addChild(entry); |
| } |
| |
| blob_stream blobStream; |
| OutputIterator & start = reinterpret_cast<OutputIterator &> (blobStream); |
| root->encode(start); |
| |
| return blobStream.buf (); |
| } |
| |
| Ptr<Profile> |
| Profile::fromDerBlob(const Blob& derBlob) |
| { |
| boost::iostreams::stream |
| <boost::iostreams::array_source> is (derBlob.buf(), derBlob.size()); |
| |
| Ptr<der::DerSequence> root = DynamicCast<der::DerSequence>(der::DerNode::parse(reinterpret_cast<InputIterator &>(is))); |
| const der::DerNodePtrList & children = root->getChildren(); |
| der::SimpleVisitor simpleVisitor; |
| string identityName = boost::any_cast<string>(children[0]->accept(simpleVisitor)); |
| Ptr<Profile> profile = Ptr<Profile>(new Profile(identityName)); |
| |
| for(int i = 1; i < children.size(); i++) |
| { |
| Ptr<der::DerSequence> entry = DynamicCast<der::DerSequence>(children[i]); |
| const der::DerNodePtrList & tuple = entry->getChildren(); |
| string type = boost::any_cast<string>(tuple[0]->accept(simpleVisitor)); |
| Ptr<Blob> value = boost::any_cast<Ptr<Blob> >(tuple[1]->accept(simpleVisitor)); |
| profile->setProfileEntry(type, *value); |
| } |
| |
| return profile; |
| } |