1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
// Copyright (C) 2010 David Sugar, Tycho Softworks.
//
// This file is part of GNU uCommon C++.
//
// GNU uCommon C++ is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU uCommon C++ is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with GNU uCommon C++. If not, see <http://www.gnu.org/licenses/>.
#include "local.h"
#ifdef _MSWINDOWS_
NAMESPACE_LOCAL
HCRYPTPROV _handle = NULL;
END_NAMESPACE
#endif
secure::~secure()
{
}
bool secure::fips(const char *progname)
{
return false;
}
bool secure::init(const char *progname)
{
Thread::init();
if(progname)
Socket::init(progname);
else
Socket::init();
#ifdef _MSWINDOWS_
if(_handle != NULL)
return false;
if(CryptAcquireContext(&_handle, NULL, NULL, PROV_RSA_FULL, 0))
return false;
if(GetLastError() == NTE_BAD_KEYSET) {
if(CryptAcquireContext(&_handle, NULL, NULL, PROV_RSA_FULL, CRYPT_NEWKEYSET))
return false;
}
_handle = NULL;
#endif
return false;
}
String secure::path(path_t id)
{
switch(id) {
case SYSTEM_CERTIFICATES:
return str(SSL_CERTS);
case SYSTEM_KEYS:
return str(SSL_PRIVATE);
}
return str("");
}
#if defined(_MSWINDOWS_)
static void cexport(HCERTSTORE ca, FILE *fp)
{
PCCERT_CONTEXT cert = NULL;
const uint8_t *cp;
char buf[80];
while ((cert = CertEnumCertificatesInStore(ca, cert)) != NULL) {
fprintf(fp, "-----BEGIN CERTIFICATE-----\n");
size_t total = cert->cbCertEncoded;
size_t count;
cp = (const uint8_t *)cert->pbCertEncoded;
while(total) {
count = String::b64encode(buf, cp, total, 64);
if(count)
fprintf(fp, "%s\n", buf);
total -= count;
cp += count;
}
fprintf(fp, "-----END CERTIFICATE-----\n");
}
}
int secure::oscerts(const char *pathname)
{
bool caset;
string_t target = shell::path(shell::USER_CONFIG) + pathname;
FILE *fp = fopen(*target, "wt");
if(!fp)
return ENOSYS;
HCERTSTORE ca = CertOpenSystemStoreA(NULL, "ROOT");
if(ca) {
caset = true;
cexport(ca, fp);
CertCloseStore(ca, 0);
}
ca = CertOpenSystemStoreA(NULL, "CA");
if(ca) {
caset = true;
cexport(ca, fp);
CertCloseStore(ca, 0);
}
fclose(fp);
if(!caset) {
fsys::remove(*target);
return ENOSYS;
}
return 0;
}
#else
int secure::oscerts(const char *pathname)
{
string_t source = path(SYSTEM_CERTIFICATES) + "/ca-certificates.crt";
string_t target = shell::path(shell::USER_CONFIG) + pathname;
if(!*source || !*target)
return ENOSYS;
return fsys::copy(*source, *target);
}
#endif
secure::server_t secure::server(const char *ca)
{
return NULL;
}
secure::client_t secure::client(const char *ca)
{
return NULL;
}
void secure::cipher(secure *context, const char *ciphers)
{
}
void secure::uuid(char *str)
{
static unsigned char buf[16];
static Timer::tick_t prior = 0l;
static unsigned short seq;
Timer::tick_t current = Timer::ticks();
Mutex::protect(&buf);
// get our (random) node identifier...
if(!prior)
Random::fill(buf + 10, 6);
if(current == prior)
++seq;
else
Random::fill((unsigned char *)&seq, sizeof(seq));
buf[8] = (unsigned char)((seq >> 8) & 0xff);
buf[9] = (unsigned char)(seq & 0xff);
buf[3] = (unsigned char)(current & 0xff);
buf[2] = (unsigned char)((current >> 8) & 0xff);
buf[1] = (unsigned char)((current >> 16) & 0xff);
buf[0] = (unsigned char)((current >> 24) & 0xff);
buf[5] = (unsigned char)((current >> 32) & 0xff);
buf[4] = (unsigned char)((current >> 40) & 0xff);
buf[7] = (unsigned char)((current >> 48) & 0xff);
buf[6] = (unsigned char)((current >> 56) & 0xff);
buf[6] &= 0x0f;
buf[6] |= 0x10;
buf[8] |= 0x80;
String::hexdump(buf, str, "4-2-2-2-6");
Mutex::release(&buf);
}
String secure::uuid(void)
{
char buf[38];
uuid(buf);
return String(buf);
}
|