2018-05-09 07:27:21 +08:00
|
|
|
/*
|
|
|
|
* FDBLibTLSVerify.cpp
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2018-10-20 09:53:09 +08:00
|
|
|
#include "FDBLibTLS/FDBLibTLSVerify.h"
|
2018-05-09 07:27:21 +08:00
|
|
|
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <exception>
|
Fix Subject Alternative Name matching and add test cases.
The previous change was done in the optimistic hope that NID_subject_alt_name
could be handled in the same fashion as all the rest of the attributes we match
against. However, X509 is not a place for optimisim. Instead, it turns out
that the Subject Alternative Name is an X509v3 extension, and needs to be
handled separately.
Therefore, this change...
* Introduces the idea of Criteria matching against a location in the
certificate, and not just against the entirety of the certificate.
* Extracts the Subject Alternative Name extension, and allows iteration and
matching against its components.
* Extends our constraint language to sensibly match against SubjectAlternativeNames.
The `S.subjectAltName` syntax has been kept, but the value is now required to
provide what type of field the rest of the value is intended to match against.
The code currently supports DNS, EMAIL, URI, and IP. Prefix and suffix
matching is supported.
Both verify-test and plugin-test were updated to cover Subject Alternative Name
matching. I've additionally run plugin-test under valgrind to verify that I've
understood object lifetimes correctly.
2018-06-30 08:10:27 +08:00
|
|
|
#include <cstring>
|
2018-05-09 07:27:21 +08:00
|
|
|
|
|
|
|
static int hexValue(char c) {
|
|
|
|
static char const digits[] = "0123456789ABCDEF";
|
|
|
|
|
|
|
|
if (c >= 'a' && c <= 'f')
|
|
|
|
c -= ('a' - 'A');
|
|
|
|
|
|
|
|
int value = std::find(digits, digits + 16, c) - digits;
|
|
|
|
if (value >= 16) {
|
|
|
|
throw std::runtime_error("hexValue");
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does not handle "raw" form (e.g. #28C4D1), only escaped text
|
|
|
|
static std::string de4514(std::string const& input, int start, int& out_end) {
|
|
|
|
std::string output;
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
if (input[start] == '#' || input[start] == ' ') {
|
2018-05-09 07:27:21 +08:00
|
|
|
out_end = start;
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
int space_count = 0;
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
for (int p = start; p < input.size();) {
|
|
|
|
switch (input[p]) {
|
2018-05-09 07:27:21 +08:00
|
|
|
case '\\': // Handle escaped sequence
|
|
|
|
|
|
|
|
// Backslash escaping nothing!
|
2021-03-11 02:06:03 +08:00
|
|
|
if (p == input.size() - 1) {
|
2018-05-09 07:27:21 +08:00
|
|
|
out_end = p;
|
|
|
|
goto FIN;
|
|
|
|
}
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
switch (input[p + 1]) {
|
2018-05-09 07:27:21 +08:00
|
|
|
case ' ':
|
|
|
|
case '"':
|
|
|
|
case '#':
|
|
|
|
case '+':
|
|
|
|
case ',':
|
|
|
|
case ';':
|
|
|
|
case '<':
|
|
|
|
case '=':
|
|
|
|
case '>':
|
2018-06-12 06:52:04 +08:00
|
|
|
case '|':
|
2018-05-09 07:27:21 +08:00
|
|
|
case '\\':
|
2021-03-11 02:06:03 +08:00
|
|
|
output += input[p + 1];
|
2018-05-09 07:27:21 +08:00
|
|
|
p += 2;
|
|
|
|
space_count = 0;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Backslash escaping pair of hex digits requires two characters
|
2021-03-11 02:06:03 +08:00
|
|
|
if (p == input.size() - 2) {
|
2018-05-09 07:27:21 +08:00
|
|
|
out_end = p;
|
|
|
|
goto FIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-03-11 02:06:03 +08:00
|
|
|
output += hexValue(input[p + 1]) * 16 + hexValue(input[p + 2]);
|
2018-05-09 07:27:21 +08:00
|
|
|
p += 3;
|
|
|
|
space_count = 0;
|
|
|
|
continue;
|
2021-03-11 02:06:03 +08:00
|
|
|
} catch (...) {
|
2018-05-09 07:27:21 +08:00
|
|
|
out_end = p;
|
|
|
|
goto FIN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case '"':
|
|
|
|
case '+':
|
|
|
|
case ',':
|
|
|
|
case ';':
|
|
|
|
case '<':
|
|
|
|
case '>':
|
|
|
|
case 0:
|
|
|
|
// All of these must have been escaped
|
|
|
|
out_end = p;
|
|
|
|
goto FIN;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Character is what it is
|
|
|
|
output += input[p];
|
2021-03-11 02:06:03 +08:00
|
|
|
if (input[p] == ' ')
|
2018-05-09 07:27:21 +08:00
|
|
|
space_count++;
|
|
|
|
else
|
|
|
|
space_count = 0;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out_end = input.size();
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
FIN:
|
2018-05-09 07:27:21 +08:00
|
|
|
out_end -= space_count;
|
|
|
|
output.resize(output.size() - space_count);
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::pair<std::string, std::string> splitPair(std::string const& input, char c) {
|
|
|
|
int p = input.find_first_of(c);
|
2021-03-11 02:06:03 +08:00
|
|
|
if (p == input.npos) {
|
2018-05-09 07:27:21 +08:00
|
|
|
throw std::runtime_error("splitPair");
|
|
|
|
}
|
2021-03-11 02:06:03 +08:00
|
|
|
return std::make_pair(input.substr(0, p), input.substr(p + 1, input.size()));
|
2018-05-09 07:27:21 +08:00
|
|
|
}
|
|
|
|
|
Fix Subject Alternative Name matching and add test cases.
The previous change was done in the optimistic hope that NID_subject_alt_name
could be handled in the same fashion as all the rest of the attributes we match
against. However, X509 is not a place for optimisim. Instead, it turns out
that the Subject Alternative Name is an X509v3 extension, and needs to be
handled separately.
Therefore, this change...
* Introduces the idea of Criteria matching against a location in the
certificate, and not just against the entirety of the certificate.
* Extracts the Subject Alternative Name extension, and allows iteration and
matching against its components.
* Extends our constraint language to sensibly match against SubjectAlternativeNames.
The `S.subjectAltName` syntax has been kept, but the value is now required to
provide what type of field the rest of the value is intended to match against.
The code currently supports DNS, EMAIL, URI, and IP. Prefix and suffix
matching is supported.
Both verify-test and plugin-test were updated to cover Subject Alternative Name
matching. I've additionally run plugin-test under valgrind to verify that I've
understood object lifetimes correctly.
2018-06-30 08:10:27 +08:00
|
|
|
static NID abbrevToNID(std::string const& sn) {
|
|
|
|
NID nid = NID_undef;
|
2018-05-09 07:27:21 +08:00
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
if (sn == "C" || sn == "CN" || sn == "L" || sn == "ST" || sn == "O" || sn == "OU" || sn == "UID" || sn == "DC" ||
|
|
|
|
sn == "subjectAltName")
|
2018-05-09 07:27:21 +08:00
|
|
|
nid = OBJ_sn2nid(sn.c_str());
|
|
|
|
if (nid == NID_undef)
|
|
|
|
throw std::runtime_error("abbrevToNID");
|
|
|
|
|
|
|
|
return nid;
|
|
|
|
}
|
|
|
|
|
Fix Subject Alternative Name matching and add test cases.
The previous change was done in the optimistic hope that NID_subject_alt_name
could be handled in the same fashion as all the rest of the attributes we match
against. However, X509 is not a place for optimisim. Instead, it turns out
that the Subject Alternative Name is an X509v3 extension, and needs to be
handled separately.
Therefore, this change...
* Introduces the idea of Criteria matching against a location in the
certificate, and not just against the entirety of the certificate.
* Extracts the Subject Alternative Name extension, and allows iteration and
matching against its components.
* Extends our constraint language to sensibly match against SubjectAlternativeNames.
The `S.subjectAltName` syntax has been kept, but the value is now required to
provide what type of field the rest of the value is intended to match against.
The code currently supports DNS, EMAIL, URI, and IP. Prefix and suffix
matching is supported.
Both verify-test and plugin-test were updated to cover Subject Alternative Name
matching. I've additionally run plugin-test under valgrind to verify that I've
understood object lifetimes correctly.
2018-06-30 08:10:27 +08:00
|
|
|
static X509Location locationForNID(NID nid) {
|
|
|
|
const char* name = OBJ_nid2ln(nid);
|
2020-11-24 10:58:46 +08:00
|
|
|
if (name == nullptr) {
|
Fix Subject Alternative Name matching and add test cases.
The previous change was done in the optimistic hope that NID_subject_alt_name
could be handled in the same fashion as all the rest of the attributes we match
against. However, X509 is not a place for optimisim. Instead, it turns out
that the Subject Alternative Name is an X509v3 extension, and needs to be
handled separately.
Therefore, this change...
* Introduces the idea of Criteria matching against a location in the
certificate, and not just against the entirety of the certificate.
* Extracts the Subject Alternative Name extension, and allows iteration and
matching against its components.
* Extends our constraint language to sensibly match against SubjectAlternativeNames.
The `S.subjectAltName` syntax has been kept, but the value is now required to
provide what type of field the rest of the value is intended to match against.
The code currently supports DNS, EMAIL, URI, and IP. Prefix and suffix
matching is supported.
Both verify-test and plugin-test were updated to cover Subject Alternative Name
matching. I've additionally run plugin-test under valgrind to verify that I've
understood object lifetimes correctly.
2018-06-30 08:10:27 +08:00
|
|
|
throw std::runtime_error("locationForNID");
|
|
|
|
}
|
|
|
|
if (strncmp(name, "X509v3", 6) == 0) {
|
|
|
|
return X509Location::EXTENSION;
|
|
|
|
} else {
|
|
|
|
// It probably isn't true that all other NIDs live in the NAME, but it is for now...
|
|
|
|
return X509Location::NAME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
FDBLibTLSVerify::FDBLibTLSVerify(std::string verify_config) : verify_cert(true), verify_time(true) {
|
2018-05-09 07:27:21 +08:00
|
|
|
parse_verify(verify_config);
|
|
|
|
}
|
|
|
|
|
2021-03-11 02:06:03 +08:00
|
|
|
FDBLibTLSVerify::~FDBLibTLSVerify() {}
|
2018-05-09 07:27:21 +08:00
|
|
|
|
|
|
|
void FDBLibTLSVerify::parse_verify(std::string input) {
|
|
|
|
int s = 0;
|
|
|
|
|
|
|
|
while (s < input.size()) {
|
|
|
|
int eq = input.find('=', s);
|
|
|
|
|
|
|
|
if (eq == input.npos)
|
|
|
|
throw std::runtime_error("parse_verify");
|
|
|
|
|
2018-06-28 09:06:24 +08:00
|
|
|
MatchType mt = MatchType::EXACT;
|
2021-03-11 02:06:03 +08:00
|
|
|
if (input[eq - 1] == '>')
|
|
|
|
mt = MatchType::PREFIX;
|
|
|
|
if (input[eq - 1] == '<')
|
|
|
|
mt = MatchType::SUFFIX;
|
2018-06-28 09:06:24 +08:00
|
|
|
std::string term = input.substr(s, eq - s - (mt == MatchType::EXACT ? 0 : 1));
|
2018-05-09 07:27:21 +08:00
|
|
|
|
|
|
|
if (term.find("Check.") == 0) {
|
|
|
|
if (eq + 2 > input.size())
|
|
|
|
throw std::runtime_error("parse_verify");
|
|
|
|
if (eq + 2 != input.size() && input[eq + 2] != ',')
|
|
|
|
throw std::runtime_error("parse_verify");
|
2018-06-28 09:06:24 +08:00
|
|
|
if (mt != MatchType::EXACT)
|
|
|
|
throw std::runtime_error("parse_verify: cannot prefix match Check");
|
2018-05-09 07:27:21 +08:00
|
|
|
|
|
|
|
bool* flag;
|
|
|
|
|
|
|
|
if (term == "Check.Valid")
|
|
|
|
flag = &verify_cert;
|
|
|
|
else if (term == "Check.Unexpired")
|
|
|
|
flag = &verify_time;
|
|
|
|
else
|
|
|
|
throw std::runtime_error("parse_verify");
|
|
|
|
|
|
|
|
if (input[eq + 1] == '0')
|
|
|
|
*flag = false;
|
|
|
|
else if (input[eq + 1] == '1')
|
|
|
|
*flag = true;
|
|
|
|
else
|
|
|
|
throw std::runtime_error("parse_verify");
|
|
|
|
|
|
|
|
s = eq + 3;
|
|
|
|
} else {
|
2021-03-11 02:06:03 +08:00
|
|
|
std::map<int, Criteria>* criteria = &subject_criteria;
|
2018-05-09 07:27:21 +08:00
|
|
|
|
|
|
|
if (term.find('.') != term.npos) {
|
|
|
|
auto scoped = splitPair(term, '.');
|
|
|
|
|
|
|
|
if (scoped.first == "S" || scoped.first == "Subject")
|
|
|
|
criteria = &subject_criteria;
|
|
|
|
else if (scoped.first == "I" || scoped.first == "Issuer")
|
|
|
|
criteria = &issuer_criteria;
|
|
|
|
else if (scoped.first == "R" || scoped.first == "Root")
|
|
|
|
criteria = &root_criteria;
|
|
|
|
else
|
|
|
|
throw std::runtime_error("parse_verify");
|
|
|
|
|
|
|
|
term = scoped.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
int remain;
|
|
|
|
auto unesc = de4514(input, eq + 1, remain);
|
|
|
|
|
|
|
|
if (remain == eq + 1)
|
|
|
|
throw std::runtime_error("parse_verify");
|
|
|
|
|
Fix Subject Alternative Name matching and add test cases.
The previous change was done in the optimistic hope that NID_subject_alt_name
could be handled in the same fashion as all the rest of the attributes we match
against. However, X509 is not a place for optimisim. Instead, it turns out
that the Subject Alternative Name is an X509v3 extension, and needs to be
handled separately.
Therefore, this change...
* Introduces the idea of Criteria matching against a location in the
certificate, and not just against the entirety of the certificate.
* Extracts the Subject Alternative Name extension, and allows iteration and
matching against its components.
* Extends our constraint language to sensibly match against SubjectAlternativeNames.
The `S.subjectAltName` syntax has been kept, but the value is now required to
provide what type of field the rest of the value is intended to match against.
The code currently supports DNS, EMAIL, URI, and IP. Prefix and suffix
matching is supported.
Both verify-test and plugin-test were updated to cover Subject Alternative Name
matching. I've additionally run plugin-test under valgrind to verify that I've
understood object lifetimes correctly.
2018-06-30 08:10:27 +08:00
|
|
|
NID termNID = abbrevToNID(term);
|
|
|
|
const X509Location loc = locationForNID(termNID);
|
|
|
|
criteria->insert(std::make_pair(termNID, Criteria(unesc, mt, loc)));
|
2018-05-09 07:27:21 +08:00
|
|
|
|
|
|
|
if (remain != input.size() && input[remain] != ',')
|
|
|
|
throw std::runtime_error("parse_verify");
|
|
|
|
|
|
|
|
s = remain + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|