mirror of
https://github.com/libp2p/go-openssl.git
synced 2025-01-29 05:10:10 +08:00
space monkey internal commit export
[katamari commit: 53135767bbc8a5d26c9a2db6e3e66791f36398b8]
This commit is contained in:
parent
46356e074d
commit
a9b372afa5
8
conn.go
8
conn.go
@ -358,6 +358,14 @@ func (c *Conn) Write(b []byte) (written int, err error) {
|
||||
return 0, err
|
||||
}
|
||||
|
||||
func (c *Conn) VerifyHostname(host string) error {
|
||||
cert, err := c.PeerCertificate()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return cert.VerifyHostname(host)
|
||||
}
|
||||
|
||||
func (c *Conn) LocalAddr() net.Addr {
|
||||
return c.conn.LocalAddr()
|
||||
}
|
||||
|
367
hostname.c
Normal file
367
hostname.c
Normal file
@ -0,0 +1,367 @@
|
||||
/* Go-OpenSSL notice:
|
||||
This file is required for all OpenSSL versions prior to 1.1.0. This simply
|
||||
provides the new 1.1.0 X509_check_* methods for hostname validation if they
|
||||
don't already exist.
|
||||
*/
|
||||
|
||||
#include <openssl/x509.h>
|
||||
|
||||
#ifndef X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT
|
||||
|
||||
/* portions from x509v3.h and v3_utl.c */
|
||||
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
|
||||
* project.
|
||||
*/
|
||||
/* ====================================================================
|
||||
* Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
*
|
||||
* 3. All advertising materials mentioning features or use of this
|
||||
* software must display the following acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
||||
*
|
||||
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
||||
* endorse or promote products derived from this software without
|
||||
* prior written permission. For written permission, please contact
|
||||
* licensing@OpenSSL.org.
|
||||
*
|
||||
* 5. Products derived from this software may not be called "OpenSSL"
|
||||
* nor may "OpenSSL" appear in their names without prior written
|
||||
* permission of the OpenSSL Project.
|
||||
*
|
||||
* 6. Redistributions of any form whatsoever must retain the following
|
||||
* acknowledgment:
|
||||
* "This product includes software developed by the OpenSSL Project
|
||||
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
||||
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
||||
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
* ====================================================================
|
||||
*
|
||||
* This product includes cryptographic software written by Eric Young
|
||||
* (eay@cryptsoft.com). This product includes software written by Tim
|
||||
* Hudson (tjh@cryptsoft.com).
|
||||
*
|
||||
*/
|
||||
/* X509 v3 extension utilities */
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/conf.h>
|
||||
#include <openssl/x509v3.h>
|
||||
|
||||
#define X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT 0x1
|
||||
#define X509_CHECK_FLAG_NO_WILDCARDS 0x2
|
||||
|
||||
typedef int (*equal_fn)(const unsigned char *pattern, size_t pattern_len,
|
||||
const unsigned char *subject, size_t subject_len);
|
||||
|
||||
/* Compare while ASCII ignoring case. */
|
||||
static int equal_nocase(const unsigned char *pattern, size_t pattern_len,
|
||||
const unsigned char *subject, size_t subject_len)
|
||||
{
|
||||
if (pattern_len != subject_len)
|
||||
return 0;
|
||||
while (pattern_len)
|
||||
{
|
||||
unsigned char l = *pattern;
|
||||
unsigned char r = *subject;
|
||||
/* The pattern must not contain NUL characters. */
|
||||
if (l == 0)
|
||||
return 0;
|
||||
if (l != r)
|
||||
{
|
||||
if ('A' <= l && l <= 'Z')
|
||||
l = (l - 'A') + 'a';
|
||||
if ('A' <= r && r <= 'Z')
|
||||
r = (r - 'A') + 'a';
|
||||
if (l != r)
|
||||
return 0;
|
||||
}
|
||||
++pattern;
|
||||
++subject;
|
||||
--pattern_len;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Compare using memcmp. */
|
||||
static int equal_case(const unsigned char *pattern, size_t pattern_len,
|
||||
const unsigned char *subject, size_t subject_len)
|
||||
{
|
||||
/* The pattern must not contain NUL characters. */
|
||||
if (memchr(pattern, '\0', pattern_len) != NULL)
|
||||
return 0;
|
||||
if (pattern_len != subject_len)
|
||||
return 0;
|
||||
return !memcmp(pattern, subject, pattern_len);
|
||||
}
|
||||
|
||||
/* RFC 5280, section 7.5, requires that only the domain is compared in
|
||||
a case-insensitive manner. */
|
||||
static int equal_email(const unsigned char *a, size_t a_len,
|
||||
const unsigned char *b, size_t b_len)
|
||||
{
|
||||
size_t i = a_len;
|
||||
if (a_len != b_len)
|
||||
return 0;
|
||||
/* We search backwards for the '@' character, so that we do
|
||||
not have to deal with quoted local-parts. The domain part
|
||||
is compared in a case-insensitive manner. */
|
||||
while (i > 0)
|
||||
{
|
||||
--i;
|
||||
if (a[i] == '@' || b[i] == '@')
|
||||
{
|
||||
if (!equal_nocase(a + i, a_len - i,
|
||||
b + i, a_len - i))
|
||||
return 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (i == 0)
|
||||
i = a_len;
|
||||
return equal_case(a, i, b, i);
|
||||
}
|
||||
|
||||
/* Compare the prefix and suffix with the subject, and check that the
|
||||
characters in-between are valid. */
|
||||
static int wildcard_match(const unsigned char *prefix, size_t prefix_len,
|
||||
const unsigned char *suffix, size_t suffix_len,
|
||||
const unsigned char *subject, size_t subject_len)
|
||||
{
|
||||
const unsigned char *wildcard_start;
|
||||
const unsigned char *wildcard_end;
|
||||
const unsigned char *p;
|
||||
if (subject_len < prefix_len + suffix_len)
|
||||
return 0;
|
||||
if (!equal_nocase(prefix, prefix_len, subject, prefix_len))
|
||||
return 0;
|
||||
wildcard_start = subject + prefix_len;
|
||||
wildcard_end = subject + (subject_len - suffix_len);
|
||||
if (!equal_nocase(wildcard_end, suffix_len, suffix, suffix_len))
|
||||
return 0;
|
||||
/* The wildcard must match at least one character. */
|
||||
if (wildcard_start == wildcard_end)
|
||||
return 0;
|
||||
/* Check that the part matched by the wildcard contains only
|
||||
permitted characters and only matches a single label. */
|
||||
for (p = wildcard_start; p != wildcard_end; ++p)
|
||||
if (!(('0' <= *p && *p <= '9') ||
|
||||
('A' <= *p && *p <= 'Z') ||
|
||||
('a' <= *p && *p <= 'z') ||
|
||||
*p == '-'))
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Checks if the memory region consistens of [0-9A-Za-z.-]. */
|
||||
static int valid_domain_characters(const unsigned char *p, size_t len)
|
||||
{
|
||||
while (len)
|
||||
{
|
||||
if (!(('0' <= *p && *p <= '9') ||
|
||||
('A' <= *p && *p <= 'Z') ||
|
||||
('a' <= *p && *p <= 'z') ||
|
||||
*p == '-' || *p == '.'))
|
||||
return 0;
|
||||
++p;
|
||||
--len;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Find the '*' in a wildcard pattern. If no such character is found
|
||||
or the pattern is otherwise invalid, returns NULL. */
|
||||
static const unsigned char *wildcard_find_star(const unsigned char *pattern,
|
||||
size_t pattern_len)
|
||||
{
|
||||
const unsigned char *star = memchr(pattern, '*', pattern_len);
|
||||
size_t dot_count = 0;
|
||||
const unsigned char *suffix_start;
|
||||
size_t suffix_length;
|
||||
if (star == NULL)
|
||||
return NULL;
|
||||
suffix_start = star + 1;
|
||||
suffix_length = (pattern + pattern_len) - (star + 1);
|
||||
if (!(valid_domain_characters(pattern, star - pattern) &&
|
||||
valid_domain_characters(suffix_start, suffix_length)))
|
||||
return NULL;
|
||||
/* Check that the suffix matches at least two labels. */
|
||||
while (suffix_length)
|
||||
{
|
||||
if (*suffix_start == '.')
|
||||
++dot_count;
|
||||
++suffix_start;
|
||||
--suffix_length;
|
||||
}
|
||||
if (dot_count < 2)
|
||||
return NULL;
|
||||
return star;
|
||||
}
|
||||
|
||||
/* Compare using wildcards. */
|
||||
static int equal_wildcard(const unsigned char *pattern, size_t pattern_len,
|
||||
const unsigned char *subject, size_t subject_len)
|
||||
{
|
||||
const unsigned char *star = wildcard_find_star(pattern, pattern_len);
|
||||
if (star == NULL)
|
||||
return equal_nocase(pattern, pattern_len,
|
||||
subject, subject_len);
|
||||
return wildcard_match(pattern, star - pattern,
|
||||
star + 1, (pattern + pattern_len) - star - 1,
|
||||
subject, subject_len);
|
||||
}
|
||||
|
||||
/* Compare an ASN1_STRING to a supplied string. If they match
|
||||
* return 1. If cmp_type > 0 only compare if string matches the
|
||||
* type, otherwise convert it to UTF8.
|
||||
*/
|
||||
|
||||
static int do_check_string(ASN1_STRING *a, int cmp_type, equal_fn equal,
|
||||
const unsigned char *b, size_t blen)
|
||||
{
|
||||
if (!a->data || !a->length)
|
||||
return 0;
|
||||
if (cmp_type > 0)
|
||||
{
|
||||
if (cmp_type != a->type)
|
||||
return 0;
|
||||
if (cmp_type == V_ASN1_IA5STRING)
|
||||
return equal(a->data, a->length, b, blen);
|
||||
if (a->length == (int)blen && !memcmp(a->data, b, blen))
|
||||
return 1;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
int astrlen, rv;
|
||||
unsigned char *astr;
|
||||
astrlen = ASN1_STRING_to_UTF8(&astr, a);
|
||||
if (astrlen < 0)
|
||||
return -1;
|
||||
rv = equal(astr, astrlen, b, blen);
|
||||
OPENSSL_free(astr);
|
||||
return rv;
|
||||
}
|
||||
}
|
||||
|
||||
static int do_x509_check(X509 *x, const unsigned char *chk, size_t chklen,
|
||||
unsigned int flags, int check_type)
|
||||
{
|
||||
STACK_OF(GENERAL_NAME) *gens = NULL;
|
||||
X509_NAME *name = NULL;
|
||||
int i;
|
||||
int cnid;
|
||||
int alt_type;
|
||||
equal_fn equal;
|
||||
if (check_type == GEN_EMAIL)
|
||||
{
|
||||
cnid = NID_pkcs9_emailAddress;
|
||||
alt_type = V_ASN1_IA5STRING;
|
||||
equal = equal_email;
|
||||
}
|
||||
else if (check_type == GEN_DNS)
|
||||
{
|
||||
cnid = NID_commonName;
|
||||
alt_type = V_ASN1_IA5STRING;
|
||||
if (flags & X509_CHECK_FLAG_NO_WILDCARDS)
|
||||
equal = equal_nocase;
|
||||
else
|
||||
equal = equal_wildcard;
|
||||
}
|
||||
else
|
||||
{
|
||||
cnid = 0;
|
||||
alt_type = V_ASN1_OCTET_STRING;
|
||||
equal = equal_case;
|
||||
}
|
||||
|
||||
if (chklen == 0)
|
||||
chklen = strlen((const char *)chk);
|
||||
|
||||
gens = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL);
|
||||
if (gens)
|
||||
{
|
||||
int rv = 0;
|
||||
for (i = 0; i < sk_GENERAL_NAME_num(gens); i++)
|
||||
{
|
||||
GENERAL_NAME *gen;
|
||||
ASN1_STRING *cstr;
|
||||
gen = sk_GENERAL_NAME_value(gens, i);
|
||||
if(gen->type != check_type)
|
||||
continue;
|
||||
if (check_type == GEN_EMAIL)
|
||||
cstr = gen->d.rfc822Name;
|
||||
else if (check_type == GEN_DNS)
|
||||
cstr = gen->d.dNSName;
|
||||
else
|
||||
cstr = gen->d.iPAddress;
|
||||
if (do_check_string(cstr, alt_type, equal, chk, chklen))
|
||||
{
|
||||
rv = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
GENERAL_NAMES_free(gens);
|
||||
if (rv)
|
||||
return 1;
|
||||
if (!(flags & X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT) || !cnid)
|
||||
return 0;
|
||||
}
|
||||
i = -1;
|
||||
name = X509_get_subject_name(x);
|
||||
while((i = X509_NAME_get_index_by_NID(name, cnid, i)) >= 0)
|
||||
{
|
||||
X509_NAME_ENTRY *ne;
|
||||
ASN1_STRING *str;
|
||||
ne = X509_NAME_get_entry(name, i);
|
||||
str = X509_NAME_ENTRY_get_data(ne);
|
||||
if (do_check_string(str, -1, equal, chk, chklen))
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int X509_check_host(X509 *x, const unsigned char *chk, size_t chklen,
|
||||
unsigned int flags)
|
||||
{
|
||||
return do_x509_check(x, chk, chklen, flags, GEN_DNS);
|
||||
}
|
||||
|
||||
int X509_check_email(X509 *x, const unsigned char *chk, size_t chklen,
|
||||
unsigned int flags)
|
||||
{
|
||||
return do_x509_check(x, chk, chklen, flags, GEN_EMAIL);
|
||||
}
|
||||
|
||||
int X509_check_ip(X509 *x, const unsigned char *chk, size_t chklen,
|
||||
unsigned int flags)
|
||||
{
|
||||
return do_x509_check(x, chk, chklen, flags, GEN_IPADD);
|
||||
}
|
||||
|
||||
#endif
|
98
hostname.go
Normal file
98
hostname.go
Normal file
@ -0,0 +1,98 @@
|
||||
// Copyright (C) 2014 Space Monkey, Inc.
|
||||
|
||||
package openssl
|
||||
|
||||
/*
|
||||
#cgo pkg-config: openssl
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/conf.h>
|
||||
#include <openssl/x509.h>
|
||||
|
||||
#ifndef X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT
|
||||
#define X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT 0x1
|
||||
#define X509_CHECK_FLAG_NO_WILDCARDS 0x2
|
||||
|
||||
extern int X509_check_host(X509 *x, const unsigned char *chk, size_t chklen,
|
||||
unsigned int flags);
|
||||
extern int X509_check_email(X509 *x, const unsigned char *chk, size_t chklen,
|
||||
unsigned int flags);
|
||||
extern int X509_check_ip(X509 *x, const unsigned char *chk, size_t chklen,
|
||||
unsigned int flags);
|
||||
#endif
|
||||
*/
|
||||
import "C"
|
||||
|
||||
import (
|
||||
"net"
|
||||
"unsafe"
|
||||
|
||||
"code.spacemonkey.com/go/errors"
|
||||
)
|
||||
|
||||
var (
|
||||
ValidationError = errors.New(SSLError, "Host validation error")
|
||||
)
|
||||
|
||||
type CheckFlags int
|
||||
|
||||
const (
|
||||
AlwaysCheckSubject CheckFlags = C.X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT
|
||||
NoWildcards CheckFlags = C.X509_CHECK_FLAG_NO_WILDCARDS
|
||||
)
|
||||
|
||||
func (c *Certificate) CheckHost(host string, flags CheckFlags) error {
|
||||
chost := unsafe.Pointer(C.CString(host))
|
||||
defer C.free(chost)
|
||||
rv := C.X509_check_host(c.x, (*C.uchar)(chost), C.size_t(len(host)),
|
||||
C.uint(flags))
|
||||
if rv > 0 {
|
||||
return nil
|
||||
}
|
||||
if rv == 0 {
|
||||
return ValidationError.New(
|
||||
"cert failed validation for host %s", host)
|
||||
}
|
||||
return SSLError.New("hostname validation failed")
|
||||
}
|
||||
|
||||
func (c *Certificate) CheckEmail(email string, flags CheckFlags) error {
|
||||
cemail := unsafe.Pointer(C.CString(email))
|
||||
defer C.free(cemail)
|
||||
rv := C.X509_check_email(c.x, (*C.uchar)(cemail), C.size_t(len(email)),
|
||||
C.uint(flags))
|
||||
if rv > 0 {
|
||||
return nil
|
||||
}
|
||||
if rv == 0 {
|
||||
return ValidationError.New(
|
||||
"cert failed validation for email %s", email)
|
||||
}
|
||||
return SSLError.New("email validation failed")
|
||||
}
|
||||
|
||||
func (c *Certificate) CheckIP(ip net.IP, flags CheckFlags) error {
|
||||
cip := unsafe.Pointer(&ip[0])
|
||||
rv := C.X509_check_ip(c.x, (*C.uchar)(cip), C.size_t(len(ip)),
|
||||
C.uint(flags))
|
||||
if rv > 0 {
|
||||
return nil
|
||||
}
|
||||
if rv == 0 {
|
||||
return ValidationError.New(
|
||||
"cert failed validation for ip %s", ip.String())
|
||||
}
|
||||
return SSLError.New("ip validation failed")
|
||||
}
|
||||
|
||||
func (c *Certificate) VerifyHostname(host string) error {
|
||||
var ip net.IP
|
||||
if len(host) >= 3 && host[0] == '[' && host[len(host)-1] == ']' {
|
||||
ip = net.ParseIP(host[1 : len(host)-1])
|
||||
} else {
|
||||
ip = net.ParseIP(host)
|
||||
}
|
||||
if ip != nil {
|
||||
return c.CheckIP(ip, 0)
|
||||
}
|
||||
return c.CheckHost(host, 0)
|
||||
}
|
Loading…
Reference in New Issue
Block a user