mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
- Use "Courier" as monospaced font for all columns - Allow changing the font size by STRG +/- Update changelog
412 lines
9.1 KiB
C++
412 lines
9.1 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2014 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
|
|
#include "db_key.h"
|
|
#include "pki_evp.h"
|
|
|
|
#include "pki_scard.h"
|
|
#include <QtGui/QDialog>
|
|
#include <QtGui/QLabel>
|
|
#include <QtGui/QPushButton>
|
|
|
|
#include <QtGui/QMessageBox>
|
|
#include <QtGui/QProgressBar>
|
|
#include <QtGui/QStatusBar>
|
|
#include <QtGui/QContextMenuEvent>
|
|
|
|
#include "exception.h"
|
|
#include "ui_NewKey.h"
|
|
#include "pkcs11.h"
|
|
|
|
#include "widgets/PwDialog.h"
|
|
#include "widgets/ExportKey.h"
|
|
#include "widgets/KeyDetail.h"
|
|
#include "widgets/NewKey.h"
|
|
|
|
db_key::db_key(QString db, MainWindow *mw)
|
|
:db_base(db, mw)
|
|
{
|
|
rootItem->setIntName("[key root]");
|
|
class_name = "keys";
|
|
pkitype << asym_key << smartCard;
|
|
updateHeaders();
|
|
loadContainer();
|
|
}
|
|
|
|
dbheaderList db_key::getHeaders()
|
|
{
|
|
dbheaderList h = db_base::getHeaders();
|
|
h << new dbheader(HD_key_type, true, tr("Type")) <<
|
|
new dbheader(HD_key_size, true, tr("Size")) <<
|
|
#ifndef OPENSSL_NO_EC
|
|
new dbheader(HD_key_curve, false,tr("EC Group")) <<
|
|
#endif
|
|
new dbheader(HD_key_use, true, tr("Use")) <<
|
|
new dbheader(HD_key_passwd, true, tr("Password"));
|
|
return h;
|
|
}
|
|
|
|
pki_base *db_key::newPKI(db_header_t *head)
|
|
{
|
|
if (!head || head->type == asym_key)
|
|
return new pki_evp("");
|
|
return new pki_scard("");
|
|
}
|
|
|
|
|
|
QStringList db_key::getPrivateDesc()
|
|
{
|
|
QStringList x;
|
|
x.clear();
|
|
FOR_ALL_pki(pki, pki_key)
|
|
if (pki->isPrivKey())
|
|
x.append(pki->getIntName());
|
|
return x;
|
|
}
|
|
|
|
QStringList db_key::get0KeyDesc(bool all)
|
|
{
|
|
QStringList x;
|
|
FOR_ALL_pki(pki, pki_key) {
|
|
if ((pki->getUcount() == 0) || all)
|
|
x.append(pki->getIntNameWithType());
|
|
}
|
|
return x;
|
|
}
|
|
|
|
void db_key::remFromCont(QModelIndex &idx)
|
|
{
|
|
db_base::remFromCont(idx);
|
|
pki_base *pki = static_cast<pki_base*>(currentIdx.internalPointer());
|
|
emit delKey((pki_key *)pki);
|
|
}
|
|
|
|
void db_key::inToCont(pki_base *pki)
|
|
{
|
|
db_base::inToCont(pki);
|
|
emit newKey((pki_key *)pki);
|
|
}
|
|
|
|
pki_base* db_key::insert(pki_base *item)
|
|
{
|
|
pki_key *lkey = (pki_key *)item;
|
|
pki_key *oldkey;
|
|
|
|
oldkey = (pki_key *)getByReference(lkey);
|
|
if (oldkey != NULL) {
|
|
if ((oldkey->isPrivKey() && lkey->isPrivKey()) || lkey->isPubKey()){
|
|
XCA_INFO(
|
|
tr("The key is already in the database as:\n'%1'\nand is not going to be imported").arg(oldkey->getIntName()));
|
|
delete(lkey);
|
|
return NULL;
|
|
}
|
|
else {
|
|
XCA_INFO(
|
|
tr("The database already contains the public part of the imported key as\n'%1\nand will be completed by the new, private part of the key").arg(oldkey->getIntName()));
|
|
lkey->setIntName(oldkey->getIntName());
|
|
currentIdx = index(oldkey->row(), 0, QModelIndex());
|
|
deletePKI();
|
|
currentIdx = QModelIndex();
|
|
}
|
|
}
|
|
insertPKI(lkey);
|
|
|
|
return lkey;
|
|
}
|
|
|
|
void db_key::newItem() {
|
|
newItem("");
|
|
}
|
|
|
|
void db_key::newItem(QString name)
|
|
{
|
|
NewKey *dlg = new NewKey(qApp->activeWindow(), name);
|
|
QProgressBar *bar;
|
|
QStatusBar *status = mainwin->statusBar();
|
|
pki_evp *nkey = NULL;
|
|
pki_scard *cardkey = NULL;
|
|
pki_key *key = NULL;
|
|
|
|
if (!dlg->exec()) {
|
|
delete dlg;
|
|
return;
|
|
}
|
|
int ksize = dlg->getKeysize();
|
|
if (ksize > 0) {
|
|
if (ksize < 32) {
|
|
XCA_WARN(tr("Key size too small !"));
|
|
delete dlg;
|
|
return;
|
|
}
|
|
if (ksize < 1024 || ksize > 8192)
|
|
if (!XCA_YESNO(tr("You are sure to create a key of the size: %1 ?").arg(ksize))) {
|
|
delete dlg;
|
|
return;
|
|
}
|
|
}
|
|
mainwin->repaint();
|
|
bar = new QProgressBar();
|
|
status->addPermanentWidget(bar, 1);
|
|
try {
|
|
if (dlg->isToken()) {
|
|
key = cardkey = new pki_scard(dlg->keyDesc->text());
|
|
cardkey->generateKey_card(dlg->getKeytype(),
|
|
dlg->getKeyCardSlot(), ksize,
|
|
dlg->getKeyCurve_nid(), bar);
|
|
} else {
|
|
key = nkey = new pki_evp(dlg->keyDesc->text());
|
|
nkey->generate(ksize, dlg->getKeytype(), bar,
|
|
dlg->getKeyCurve_nid());
|
|
}
|
|
key = (pki_key*)insert(key);
|
|
emit keyDone(key->getIntNameWithType());
|
|
createSuccess(key);
|
|
|
|
} catch (errorEx &err) {
|
|
delete key;
|
|
mainwin->Error(err);
|
|
}
|
|
if (dlg->rememberDefault->isChecked()) {
|
|
QString def = dlg->getAsString();
|
|
if (dlg->setDefault(def) == 0)
|
|
mainwin->setDefaultKey(def);
|
|
}
|
|
status->removeWidget(bar);
|
|
delete bar;
|
|
delete dlg;
|
|
}
|
|
|
|
void db_key::load(void)
|
|
{
|
|
load_key l;
|
|
load_default(l);
|
|
}
|
|
|
|
void db_key::toToken()
|
|
{
|
|
pki_key *key = static_cast<pki_scard*>(currentIdx.internalPointer());
|
|
if (!key || !pkcs11::loaded() || key->isToken())
|
|
return;
|
|
|
|
pki_scard *card = NULL;
|
|
try {
|
|
pkcs11 p11;
|
|
slotid slot;
|
|
|
|
if (!p11.selectToken(&slot, mainwin))
|
|
return;
|
|
card = new pki_scard(key->getIntName());
|
|
card->store_token(slot, key->decryptKey());
|
|
QString msg = tr("Shall the original key '%1' be replaced by the key on the token?\nThis will delete the key '%1' and make it unexportable").
|
|
arg(key->getIntName());
|
|
if (XCA_YESNO(msg)) {
|
|
deletePKI();
|
|
insertPKI(card);
|
|
card = NULL;
|
|
}
|
|
} catch (errorEx &err) {
|
|
mainwin->Error(err);
|
|
}
|
|
if (card)
|
|
delete card;
|
|
}
|
|
|
|
void db_key::showPki(pki_base *pki)
|
|
{
|
|
pki_evp *key = (pki_evp *)pki;
|
|
KeyDetail *dlg = new KeyDetail(mainwin);
|
|
if (dlg) {
|
|
dlg->setKey(key);
|
|
dlg->exec();
|
|
delete dlg;
|
|
}
|
|
}
|
|
|
|
void db_key::showContextMenu(QContextMenuEvent *e, const QModelIndex &index)
|
|
{
|
|
QMenu *menu = new QMenu(mainwin);
|
|
QMenu *subExport;
|
|
|
|
currentIdx = index;
|
|
|
|
pki_key *key = static_cast<pki_key*>(currentIdx.internalPointer());
|
|
|
|
menu->addAction(tr("New Key"), this, SLOT(newItem()));
|
|
menu->addAction(tr("Import"), this, SLOT(load()));
|
|
if (index != QModelIndex()) {
|
|
menu->addAction(tr("Rename"), this, SLOT(edit()));
|
|
menu->addAction(tr("Show Details"), this, SLOT(showItem()));
|
|
menu->addAction(tr("Delete"), this, SLOT(delete_ask()));
|
|
subExport = menu->addMenu(tr("Export"));
|
|
subExport->addAction(tr("Clipboard"), this,
|
|
SLOT(pem2clipboard()));
|
|
subExport->addAction(tr("File"), this, SLOT(store()));
|
|
if (key->isPrivKey() && !key->isToken()) {
|
|
switch (key->getOwnPass()) {
|
|
case pki_key::ptCommon:
|
|
menu->addAction(tr("Change password"), this,
|
|
SLOT(setOwnPass()));
|
|
break;
|
|
case pki_key::ptPrivate:
|
|
menu->addAction(tr("Reset password"), this,
|
|
SLOT(resetOwnPass()));
|
|
break;
|
|
}
|
|
}
|
|
if (key->isToken() && pkcs11::loaded()) {
|
|
menu->addAction(tr("Change PIN"), this,
|
|
SLOT(changePin()));
|
|
menu->addAction(tr("Init PIN with SO PIN (PUK)"), this,
|
|
SLOT(initPin()));
|
|
menu->addAction(tr("Change SO PIN (PUK)"), this,
|
|
SLOT(changeSoPin()));
|
|
}
|
|
if (!key->isToken() && pkcs11::loaded()) {
|
|
menu->addAction(tr("Store on Security token"),
|
|
this, SLOT(toToken()));
|
|
}
|
|
}
|
|
contextMenu(e, menu);
|
|
currentIdx = QModelIndex();
|
|
return;
|
|
}
|
|
|
|
void db_key::store()
|
|
{
|
|
bool pem = true;
|
|
const EVP_CIPHER *enc = NULL;
|
|
|
|
if (!currentIdx.isValid())
|
|
return;
|
|
|
|
pki_key *targetKey =static_cast<pki_evp*>(currentIdx.internalPointer());
|
|
|
|
QString fn = mainwin->getPath() + QDir::separator() +
|
|
targetKey->getUnderlinedName() + ".pem";
|
|
|
|
ExportKey *dlg = new ExportKey(mainwin, fn, targetKey);
|
|
|
|
if (!dlg->exec()) {
|
|
delete dlg;
|
|
return;
|
|
}
|
|
QString fname = dlg->filename->text();
|
|
if (fname.isEmpty()) {
|
|
delete dlg;
|
|
return;
|
|
}
|
|
mainwin->setPath(fname.mid(0, fname.lastIndexOf(QRegExp("[/\\\\]")) ));
|
|
try {
|
|
switch (dlg->exportFormat->currentIndex()) {
|
|
case 0: pem = true; break;
|
|
case 1: pem = false; break;
|
|
case 2: targetKey->writeSSH2public(fname);
|
|
delete dlg;
|
|
return;
|
|
}
|
|
if (dlg->encryptKey->isChecked())
|
|
enc = EVP_des_ede3_cbc();
|
|
if (dlg->exportPrivate->isChecked() && !targetKey->isToken()) {
|
|
pki_evp *evpKey = (pki_evp *)targetKey;
|
|
if (dlg->exportPkcs8->isChecked()) {
|
|
evpKey->writePKCS8(fname, enc, PwDialog::pwCallback, pem);
|
|
} else {
|
|
evpKey->writeKey(fname, enc, PwDialog::pwCallback, pem);
|
|
}
|
|
} else {
|
|
targetKey->writePublic(fname, pem);
|
|
}
|
|
}
|
|
catch (errorEx &err) {
|
|
mainwin->Error(err);
|
|
}
|
|
delete dlg;
|
|
}
|
|
|
|
void db_key::setOwnPass()
|
|
{
|
|
try {
|
|
__setOwnPass(pki_key::ptPrivate);
|
|
}
|
|
catch (errorEx &err) {
|
|
mainwin->Error(err);
|
|
}
|
|
}
|
|
|
|
void db_key::resetOwnPass()
|
|
{
|
|
try {
|
|
__setOwnPass(pki_key::ptCommon);
|
|
}
|
|
catch (errorEx &err) {
|
|
mainwin->Error(err);
|
|
}
|
|
}
|
|
|
|
void db_key::__setOwnPass(enum pki_key::passType x)
|
|
{
|
|
pki_evp *targetKey;
|
|
if (!currentIdx.isValid())
|
|
return;
|
|
targetKey = static_cast<pki_evp*>(currentIdx.internalPointer());
|
|
if (targetKey->isToken()) {
|
|
throw errorEx(tr("Tried to change password of a token"));
|
|
}
|
|
targetKey->setOwnPass(x);
|
|
updatePKI(targetKey);
|
|
}
|
|
|
|
void db_key::changePin()
|
|
{
|
|
pki_scard *scard;
|
|
if (!currentIdx.isValid())
|
|
return;
|
|
scard = static_cast<pki_scard*>(currentIdx.internalPointer());
|
|
try {
|
|
if (!scard->isToken()) {
|
|
throw errorEx(tr("Tried to change PIN of a key"));
|
|
}
|
|
scard->changePin();
|
|
} catch (errorEx &err) {
|
|
mainwin->Error(err);
|
|
}
|
|
}
|
|
|
|
void db_key::initPin()
|
|
{
|
|
pki_scard *scard;
|
|
if (!currentIdx.isValid())
|
|
return;
|
|
scard = static_cast<pki_scard*>(currentIdx.internalPointer());
|
|
try {
|
|
if (!scard->isToken()) {
|
|
throw errorEx(tr("Tried to init PIN of a key"));
|
|
}
|
|
scard->initPin();
|
|
} catch (errorEx &err) {
|
|
mainwin->Error(err);
|
|
}
|
|
}
|
|
|
|
void db_key::changeSoPin()
|
|
{
|
|
pki_scard *scard;
|
|
if (!currentIdx.isValid())
|
|
return;
|
|
scard = static_cast<pki_scard*>(currentIdx.internalPointer());
|
|
try {
|
|
if (!scard->isToken()) {
|
|
throw errorEx(tr("Tried to change SO PIN of a key"));
|
|
}
|
|
scard->changeSoPin();
|
|
} catch (errorEx &err) {
|
|
mainwin->Error(err);
|
|
}
|
|
}
|
|
|