348 lines
10 KiB
Factor
348 lines
10 KiB
Factor
! Copyright (C) 2007, 2008, Slava Pestov, Elie CHAFTARI.
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
USING: accessors alien alien.c-types alien.data alien.strings
|
|
assocs byte-arrays classes.struct combinators destructors fry
|
|
io.backend io.buffers io.encodings.8-bit.latin1 io.encodings.utf8
|
|
io.files io.pathnames io.sockets.secure io.timeouts kernel libc
|
|
locals math math.order math.parser namespaces openssl openssl.libssl
|
|
openssl.libcrypto random sequences splitting unicode.case ;
|
|
IN: io.sockets.secure.openssl
|
|
|
|
GENERIC: ssl-method ( symbol -- method )
|
|
|
|
M: SSLv2 ssl-method drop SSLv2_client_method ;
|
|
M: SSLv23 ssl-method drop SSLv23_method ;
|
|
M: SSLv3 ssl-method drop SSLv3_method ;
|
|
M: TLSv1 ssl-method drop TLSv1_method ;
|
|
|
|
TUPLE: openssl-context < secure-context aliens sessions ;
|
|
|
|
: set-session-cache ( ctx -- )
|
|
handle>>
|
|
[ SSL_SESS_CACHE_BOTH SSL_CTX_set_session_cache_mode ssl-error ]
|
|
[ 32 random-bits >hex dup length SSL_CTX_set_session_id_context ssl-error ]
|
|
bi ;
|
|
|
|
ERROR: file-expected path ;
|
|
|
|
: ensure-exists ( path -- path )
|
|
dup exists? [ file-expected ] unless ; inline
|
|
|
|
: ssl-file-path ( path -- path' )
|
|
absolute-path ensure-exists ;
|
|
|
|
: load-certificate-chain ( ctx -- )
|
|
dup config>> key-file>> [
|
|
[ handle>> ] [ config>> key-file>> ssl-file-path ] bi
|
|
SSL_CTX_use_certificate_chain_file
|
|
ssl-error
|
|
] [ drop ] if ;
|
|
|
|
: password-callback ( -- alien )
|
|
int { void* int bool void* } cdecl
|
|
[| buf size rwflag password! |
|
|
password [ B{ 0 } password! ] unless
|
|
|
|
password strlen :> len
|
|
buf password len 1 + size min memcpy
|
|
len
|
|
] alien-callback ;
|
|
|
|
: default-pasword ( ctx -- alien )
|
|
[ config>> password>> latin1 malloc-string ] [ aliens>> ] bi
|
|
[ push ] [ drop ] 2bi ;
|
|
|
|
: set-default-password ( ctx -- )
|
|
dup config>> password>> [
|
|
[ handle>> password-callback SSL_CTX_set_default_passwd_cb ]
|
|
[
|
|
[ handle>> ] [ default-pasword ] bi
|
|
SSL_CTX_set_default_passwd_cb_userdata
|
|
] bi
|
|
] [ drop ] if ;
|
|
|
|
: use-private-key-file ( ctx -- )
|
|
dup config>> key-file>> [
|
|
[ handle>> ]
|
|
[ config>> key-file>> ssl-file-path ] bi
|
|
SSL_FILETYPE_PEM SSL_CTX_use_PrivateKey_file
|
|
ssl-error
|
|
] [ drop ] if ;
|
|
|
|
: load-verify-locations ( ctx -- )
|
|
dup config>> [ ca-file>> ] [ ca-path>> ] bi or [
|
|
[ handle>> ]
|
|
[
|
|
config>>
|
|
[ ca-file>> dup [ ssl-file-path ] when ]
|
|
[ ca-path>> dup [ ssl-file-path ] when ] bi
|
|
] bi
|
|
SSL_CTX_load_verify_locations
|
|
] [ handle>> SSL_CTX_set_default_verify_paths ] if ssl-error ;
|
|
|
|
: set-verify-depth ( ctx -- )
|
|
dup config>> verify-depth>> [
|
|
[ handle>> ] [ config>> verify-depth>> ] bi
|
|
SSL_CTX_set_verify_depth
|
|
] [ drop ] if ;
|
|
|
|
TUPLE: bio < disposable handle ;
|
|
|
|
: <bio> ( handle -- bio ) bio new-disposable swap >>handle ;
|
|
|
|
M: bio dispose* handle>> BIO_free ssl-error ;
|
|
|
|
: <file-bio> ( path -- bio )
|
|
normalize-path "r" BIO_new_file dup ssl-error <bio> ;
|
|
|
|
: load-dh-params ( ctx -- )
|
|
dup config>> dh-file>> [
|
|
[ handle>> ] [ config>> dh-file>> ] bi <file-bio> &dispose
|
|
handle>> f f f PEM_read_bio_DHparams dup ssl-error
|
|
SSL_CTX_set_tmp_dh ssl-error
|
|
] [ drop ] if ;
|
|
|
|
TUPLE: rsa < disposable handle ;
|
|
|
|
: <rsa> ( handle -- rsa ) rsa new-disposable swap >>handle ;
|
|
|
|
M: rsa dispose* handle>> RSA_free ;
|
|
|
|
: generate-eph-rsa-key ( ctx -- )
|
|
[ handle>> ]
|
|
[
|
|
config>> ephemeral-key-bits>> RSA_F4 f f RSA_generate_key
|
|
dup ssl-error <rsa> &dispose handle>>
|
|
] bi
|
|
SSL_CTX_set_tmp_rsa ssl-error ;
|
|
|
|
: <openssl-context> ( config ctx -- context )
|
|
openssl-context new-disposable
|
|
swap >>handle
|
|
swap >>config
|
|
V{ } clone >>aliens
|
|
H{ } clone >>sessions ;
|
|
|
|
M: openssl <secure-context> ( config -- context )
|
|
maybe-init-ssl
|
|
[
|
|
dup method>> ssl-method SSL_CTX_new
|
|
dup ssl-error <openssl-context> |dispose
|
|
{
|
|
[ set-session-cache ]
|
|
[ load-certificate-chain ]
|
|
[ set-default-password ]
|
|
[ use-private-key-file ]
|
|
[ load-verify-locations ]
|
|
[ set-verify-depth ]
|
|
[ load-dh-params ]
|
|
[ generate-eph-rsa-key ]
|
|
[ ]
|
|
} cleave
|
|
] with-destructors ;
|
|
|
|
M: openssl-context dispose*
|
|
[
|
|
[ aliens>> [ &free drop ] each ]
|
|
[ sessions>> values [ SSL_SESSION_free ] each ]
|
|
[ handle>> SSL_CTX_free ]
|
|
tri
|
|
] with-destructors ;
|
|
|
|
TUPLE: ssl-handle < disposable file handle connected ;
|
|
|
|
SYMBOL: default-secure-context
|
|
|
|
: current-secure-context ( -- ctx )
|
|
secure-context get [
|
|
default-secure-context [
|
|
<secure-config> <secure-context>
|
|
] initialize-alien
|
|
] unless* ;
|
|
|
|
: get-session ( addrspec -- session/f )
|
|
current-secure-context sessions>> at ;
|
|
|
|
: save-session ( session addrspec -- )
|
|
current-secure-context sessions>> set-at ;
|
|
|
|
: <ssl-handle> ( fd -- ssl )
|
|
[
|
|
ssl-handle new-disposable |dispose
|
|
current-secure-context handle>> SSL_new
|
|
dup ssl-error >>handle
|
|
swap >>file
|
|
] with-destructors ;
|
|
|
|
: syscall-error ( handle r -- event )
|
|
nip
|
|
ERR_get_error [
|
|
{
|
|
{ -1 [ errno ECONNRESET = [ premature-close ] [ (io-error) ] if ] }
|
|
! OpenSSL docs say this it is an error condition for
|
|
! a server to not send a close notify, but web
|
|
! servers in the wild don't seem to do this, for
|
|
! example https://www.google.com.
|
|
{ 0 [ f ] }
|
|
} case
|
|
] [ nip (ssl-error) ] if-zero ;
|
|
|
|
: check-response ( port r -- port r n )
|
|
over handle>> handle>> over SSL_get_error ; inline
|
|
|
|
: check-accept-response ( handle r -- event )
|
|
over handle>> over SSL_get_error
|
|
{
|
|
{ SSL_ERROR_NONE [ 2drop f ] }
|
|
{ SSL_ERROR_WANT_READ [ 2drop +input+ ] }
|
|
{ SSL_ERROR_WANT_ACCEPT [ 2drop +input+ ] }
|
|
{ SSL_ERROR_WANT_WRITE [ 2drop +output+ ] }
|
|
{ SSL_ERROR_SYSCALL [ syscall-error ] }
|
|
{ SSL_ERROR_ZERO_RETURN [ (ssl-error) ] }
|
|
{ SSL_ERROR_SSL [ (ssl-error) ] }
|
|
} case ;
|
|
|
|
: do-ssl-accept ( ssl-handle -- )
|
|
dup dup handle>> SSL_accept check-accept-response dup
|
|
[
|
|
[ dup file>> ] dip wait-for-fd do-ssl-accept
|
|
] [ 2drop ] if ;
|
|
|
|
: maybe-handshake ( ssl-handle -- )
|
|
dup connected>> [ drop ] [
|
|
t >>connected
|
|
[ do-ssl-accept ] with-timeout
|
|
] if ;
|
|
|
|
! Input ports
|
|
: check-read-response ( port r -- event )
|
|
check-response
|
|
{
|
|
{ SSL_ERROR_NONE [ swap buffer>> n>buffer f ] }
|
|
{ SSL_ERROR_ZERO_RETURN [ 2drop f ] }
|
|
{ SSL_ERROR_WANT_READ [ 2drop +input+ ] }
|
|
{ SSL_ERROR_WANT_WRITE [ 2drop +output+ ] }
|
|
{ SSL_ERROR_SYSCALL [ syscall-error ] }
|
|
{ SSL_ERROR_SSL [ (ssl-error) ] }
|
|
} case ;
|
|
|
|
M: ssl-handle refill
|
|
dup maybe-handshake
|
|
handle>> ! ssl
|
|
over buffer>>
|
|
[ buffer-end ] ! buf
|
|
[ buffer-capacity ] bi ! len
|
|
SSL_read
|
|
check-read-response ;
|
|
|
|
! Output ports
|
|
: check-write-response ( port r -- event )
|
|
check-response
|
|
{
|
|
{ SSL_ERROR_NONE [ swap buffer>> buffer-consume f ] }
|
|
{ SSL_ERROR_WANT_READ [ 2drop +input+ ] }
|
|
{ SSL_ERROR_WANT_WRITE [ 2drop +output+ ] }
|
|
{ SSL_ERROR_SYSCALL [ syscall-error ] }
|
|
{ SSL_ERROR_SSL [ (ssl-error) ] }
|
|
} case ;
|
|
|
|
M: ssl-handle drain
|
|
dup maybe-handshake
|
|
handle>> ! ssl
|
|
over buffer>>
|
|
[ buffer@ ] ! buf
|
|
[ buffer-length ] bi ! len
|
|
SSL_write
|
|
check-write-response ;
|
|
|
|
! Connect
|
|
: check-connect-response ( ssl-handle r -- event )
|
|
over handle>> over SSL_get_error
|
|
{
|
|
{ SSL_ERROR_NONE [ 2drop f ] }
|
|
{ SSL_ERROR_WANT_READ [ 2drop +input+ ] }
|
|
{ SSL_ERROR_WANT_WRITE [ 2drop +output+ ] }
|
|
{ SSL_ERROR_SYSCALL [ syscall-error ] }
|
|
{ SSL_ERROR_SSL [ (ssl-error) ] }
|
|
} case ;
|
|
|
|
: do-ssl-connect ( ssl-handle -- )
|
|
dup dup handle>> SSL_connect check-connect-response dup
|
|
[ dupd wait-for-fd do-ssl-connect ] [ 2drop ] if ;
|
|
|
|
: resume-session ( ssl-handle ssl-session -- )
|
|
[ [ handle>> ] dip SSL_set_session ssl-error ]
|
|
[ drop do-ssl-connect ]
|
|
2bi ;
|
|
|
|
: begin-session ( ssl-handle addrspec -- )
|
|
[ drop do-ssl-connect ]
|
|
[ [ handle>> SSL_get1_session ] dip save-session ]
|
|
2bi ;
|
|
|
|
: secure-connection ( client-out addrspec -- )
|
|
[ handle>> ] dip
|
|
[
|
|
'[
|
|
_ dup get-session
|
|
[ resume-session ] [ begin-session ] ?if
|
|
] with-timeout
|
|
] [ drop t >>connected drop ] 2bi ;
|
|
|
|
M: ssl-handle timeout
|
|
drop secure-socket-timeout get ;
|
|
|
|
M: ssl-handle cancel-operation
|
|
file>> cancel-operation ;
|
|
|
|
M: ssl-handle dispose*
|
|
[
|
|
! Free file>> after SSL_free
|
|
[ file>> &dispose drop ]
|
|
[ handle>> SSL_free ] bi
|
|
] with-destructors ;
|
|
|
|
: check-verify-result ( ssl-handle -- )
|
|
SSL_get_verify_result dup X509_V_OK =
|
|
[ drop ] [ verify-message certificate-verify-error ] if ;
|
|
|
|
: x509name>string ( x509name -- string )
|
|
NID_commonName 256 <byte-array>
|
|
[ 256 X509_NAME_get_text_by_NID ] keep
|
|
swap -1 = [ drop f ] [ latin1 alien>string ] if ;
|
|
|
|
: subject-name ( certificate -- host )
|
|
X509_get_subject_name x509name>string ;
|
|
|
|
: issuer-name ( certificate -- issuer )
|
|
X509_get_issuer_name x509name>string ;
|
|
|
|
: name-stack>sequence ( name-stack -- seq )
|
|
dup sk_num iota [ sk_value GENERAL_NAME_st memory>struct ] with map ;
|
|
|
|
: alternative-dns-names ( certificate -- dns-names )
|
|
NID_subject_alt_name f f X509_get_ext_d2i
|
|
[ name-stack>sequence ] [ f ] if*
|
|
[ type>> GEN_DNS = ] filter
|
|
[ d>> dNSName>> data>> utf8 alien>string ] map ;
|
|
|
|
: subject-names-match? ( host subject -- ? )
|
|
[ >lower ] bi@ "*." ?head [ tail? ] [ = ] if ;
|
|
|
|
: check-subject-name ( host ssl-handle -- )
|
|
SSL_get_peer_certificate [
|
|
[ alternative-dns-names ] [ subject-name ] bi suffix
|
|
2dup [ subject-names-match? ] with any?
|
|
[ 2drop ] [ subject-name-verify-error ] if
|
|
] [ certificate-missing-error ] if* ;
|
|
|
|
M: openssl check-certificate ( host ssl -- )
|
|
current-secure-context config>> verify>> [
|
|
handle>>
|
|
[ nip check-verify-result ]
|
|
[ check-subject-name ]
|
|
2bi
|
|
] [ 2drop ] if ;
|
|
|
|
openssl secure-socket-backend set-global
|