2008-11-23 03:36:26 -05:00
|
|
|
! Copyright (C) 2007, 2008, Slava Pestov, Elie CHAFTARI.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2013-09-16 20:24:31 -04:00
|
|
|
USING: accessors alien alien.c-types alien.data alien.strings
|
2014-07-07 21:34:41 -04:00
|
|
|
assocs byte-arrays classes.struct combinators destructors fry io
|
|
|
|
io.backend io.buffers io.encodings.8-bit.latin1
|
|
|
|
io.encodings.utf8 io.files io.pathnames io.ports io.sockets
|
2014-07-07 21:45:22 -04:00
|
|
|
io.sockets.secure io.timeouts kernel libc
|
|
|
|
|
2014-07-07 21:34:41 -04:00
|
|
|
locals math math.order math.parser namespaces openssl
|
|
|
|
openssl.libcrypto openssl.libssl random sequences splitting
|
|
|
|
unicode.case ;
|
2008-11-23 03:36:26 -05:00
|
|
|
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 ;
|
|
|
|
|
2013-11-16 18:59:31 -05:00
|
|
|
ERROR: file-expected path ;
|
|
|
|
|
|
|
|
: ensure-exists ( path -- path )
|
2015-08-13 19:13:05 -04:00
|
|
|
dup exists? [ file-expected ] unless ; inline
|
2013-11-16 18:59:31 -05:00
|
|
|
|
|
|
|
: ssl-file-path ( path -- path' )
|
|
|
|
absolute-path ensure-exists ;
|
|
|
|
|
2008-11-23 03:36:26 -05:00
|
|
|
: load-certificate-chain ( ctx -- )
|
|
|
|
dup config>> key-file>> [
|
2013-11-16 18:59:31 -05:00
|
|
|
[ handle>> ] [ config>> key-file>> ssl-file-path ] bi
|
2008-11-23 03:36:26 -05:00
|
|
|
SSL_CTX_use_certificate_chain_file
|
|
|
|
ssl-error
|
|
|
|
] [ drop ] if ;
|
|
|
|
|
|
|
|
: password-callback ( -- alien )
|
2010-03-31 22:20:35 -04:00
|
|
|
int { void* int bool void* } cdecl
|
2008-11-23 03:36:26 -05:00
|
|
|
[| buf size rwflag password! |
|
|
|
|
password [ B{ 0 } password! ] unless
|
|
|
|
|
2009-10-27 22:50:31 -04:00
|
|
|
password strlen :> len
|
|
|
|
buf password len 1 + size min memcpy
|
|
|
|
len
|
2008-11-23 03:36:26 -05:00
|
|
|
] alien-callback ;
|
|
|
|
|
|
|
|
: default-pasword ( ctx -- alien )
|
|
|
|
[ config>> password>> latin1 malloc-string ] [ aliens>> ] bi
|
|
|
|
[ push ] [ drop ] 2bi ;
|
|
|
|
|
|
|
|
: set-default-password ( ctx -- )
|
2009-02-06 11:17:20 -05:00
|
|
|
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 ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
|
|
|
: use-private-key-file ( ctx -- )
|
|
|
|
dup config>> key-file>> [
|
2013-11-16 18:59:31 -05:00
|
|
|
[ handle>> ]
|
|
|
|
[ config>> key-file>> ssl-file-path ] bi
|
2008-11-23 03:36:26 -05:00
|
|
|
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>>
|
2013-11-16 18:59:31 -05:00
|
|
|
[ ca-file>> dup [ ssl-file-path ] when ]
|
|
|
|
[ ca-path>> dup [ ssl-file-path ] when ] bi
|
2008-11-23 03:36:26 -05:00
|
|
|
] 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 ;
|
|
|
|
|
2009-08-24 03:26:13 -04:00
|
|
|
TUPLE: bio < disposable handle ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
2009-08-24 03:26:13 -04:00
|
|
|
: <bio> ( handle -- bio ) bio new-disposable swap >>handle ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
|
|
|
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 ;
|
|
|
|
|
2009-08-24 03:26:13 -04:00
|
|
|
TUPLE: rsa < disposable handle ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
2009-08-24 03:26:13 -04:00
|
|
|
: <rsa> ( handle -- rsa ) rsa new-disposable swap >>handle ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
|
|
|
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 )
|
2009-08-24 03:26:13 -04:00
|
|
|
openssl-context new-disposable
|
2008-11-23 03:36:26 -05:00
|
|
|
swap >>handle
|
|
|
|
swap >>config
|
|
|
|
V{ } clone >>aliens
|
|
|
|
H{ } clone >>sessions ;
|
|
|
|
|
|
|
|
M: openssl <secure-context> ( config -- context )
|
2014-08-05 15:14:53 -04:00
|
|
|
maybe-init-ssl
|
2008-11-23 03:36:26 -05:00
|
|
|
[
|
|
|
|
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*
|
2012-08-25 22:44:22 -04:00
|
|
|
[
|
|
|
|
[ aliens>> [ &free drop ] each ]
|
|
|
|
[ sessions>> values [ SSL_SESSION_free ] each ]
|
|
|
|
[ handle>> SSL_CTX_free ]
|
|
|
|
tri
|
|
|
|
] with-destructors ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
2009-08-24 03:26:13 -04:00
|
|
|
TUPLE: ssl-handle < disposable file handle connected ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
|
|
|
SYMBOL: default-secure-context
|
|
|
|
|
|
|
|
: current-secure-context ( -- ctx )
|
|
|
|
secure-context get [
|
2009-02-20 21:51:13 -05:00
|
|
|
default-secure-context [
|
|
|
|
<secure-config> <secure-context>
|
|
|
|
] initialize-alien
|
2008-11-23 03:36:26 -05:00
|
|
|
] unless* ;
|
|
|
|
|
2013-10-17 12:14:50 -04:00
|
|
|
: get-session ( addrspec -- session/f )
|
|
|
|
current-secure-context sessions>> at ;
|
|
|
|
|
|
|
|
: save-session ( session addrspec -- )
|
|
|
|
current-secure-context sessions>> set-at ;
|
|
|
|
|
2008-11-23 03:36:26 -05:00
|
|
|
: <ssl-handle> ( fd -- ssl )
|
2012-08-25 22:44:22 -04:00
|
|
|
[
|
|
|
|
ssl-handle new-disposable |dispose
|
|
|
|
current-secure-context handle>> SSL_new
|
|
|
|
dup ssl-error >>handle
|
|
|
|
swap >>file
|
|
|
|
] with-destructors ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
2014-07-07 21:45:22 -04:00
|
|
|
: <ssl-socket> ( winsock -- ssl )
|
|
|
|
[
|
|
|
|
socket-handle BIO_NOCLOSE BIO_new_socket dup ssl-error
|
|
|
|
] keep <ssl-handle>
|
|
|
|
[ handle>> swap dup SSL_set_bio ] keep ;
|
|
|
|
|
2014-04-18 12:32:59 -04:00
|
|
|
! Error handling
|
|
|
|
: syscall-error ( r -- event )
|
2013-10-17 12:14:50 -04:00
|
|
|
ERR_get_error [
|
|
|
|
{
|
2015-08-13 06:20:39 -04:00
|
|
|
{ -1 [
|
2015-08-13 19:13:05 -04:00
|
|
|
errno ECONNRESET = [ premature-close ]
|
2015-08-13 06:20:39 -04:00
|
|
|
[ throw-errno ] if
|
|
|
|
] }
|
2013-10-17 12:14:50 -04:00
|
|
|
! 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 ;
|
|
|
|
|
2014-04-18 12:32:59 -04:00
|
|
|
: check-ssl-error ( ssl ret exra-cases/f -- event/f )
|
|
|
|
[ swap over SSL_get_error ] dip
|
2013-10-17 12:14:50 -04:00
|
|
|
{
|
2014-04-18 12:32:59 -04:00
|
|
|
{ SSL_ERROR_NONE [ drop f ] }
|
|
|
|
{ SSL_ERROR_WANT_READ [ drop +input+ ] }
|
|
|
|
{ SSL_ERROR_WANT_WRITE [ drop +output+ ] }
|
2013-10-17 12:14:50 -04:00
|
|
|
{ SSL_ERROR_SYSCALL [ syscall-error ] }
|
2014-04-18 12:32:59 -04:00
|
|
|
{ SSL_ERROR_SSL [ drop (ssl-error) ] }
|
|
|
|
} append [ [ execute( -- n ) ] dip ] assoc-map
|
|
|
|
at [ call( x -- y ) ] [ no-cond ] if* ;
|
|
|
|
|
|
|
|
! Accept
|
|
|
|
: do-ssl-accept-once ( ssl -- event/f )
|
|
|
|
dup SSL_accept {
|
2013-10-17 12:14:50 -04:00
|
|
|
{ SSL_ERROR_ZERO_RETURN [ (ssl-error) ] }
|
2014-04-18 12:32:59 -04:00
|
|
|
{ SSL_ERROR_WANT_ACCEPT [ drop +input+ ] }
|
|
|
|
} check-ssl-error ;
|
2013-10-17 12:14:50 -04:00
|
|
|
|
|
|
|
: do-ssl-accept ( ssl-handle -- )
|
2014-04-18 12:32:59 -04:00
|
|
|
dup handle>> do-ssl-accept-once
|
|
|
|
[ [ dup file>> ] dip wait-for-fd do-ssl-accept ] [ drop ] if* ;
|
2013-10-17 12:14:50 -04:00
|
|
|
|
|
|
|
: maybe-handshake ( ssl-handle -- )
|
|
|
|
dup connected>> [ drop ] [
|
|
|
|
t >>connected
|
|
|
|
[ do-ssl-accept ] with-timeout
|
|
|
|
] if ;
|
|
|
|
|
|
|
|
! Input ports
|
2014-04-18 12:32:59 -04:00
|
|
|
: do-ssl-read ( buffer ssl -- event/f )
|
|
|
|
2dup swap [ buffer-end ] [ buffer-capacity ] bi SSL_read [
|
|
|
|
{ { SSL_ERROR_ZERO_RETURN [ drop f ] } } check-ssl-error
|
2014-11-16 21:54:24 -05:00
|
|
|
] keep swap [ 2nip ] [ swap buffer+ f ] if* ;
|
2014-04-18 12:32:59 -04:00
|
|
|
|
|
|
|
M: ssl-handle refill ( port handle -- event/f )
|
|
|
|
dup maybe-handshake [ buffer>> ] [ handle>> ] bi* do-ssl-read ;
|
2013-10-17 12:14:50 -04:00
|
|
|
|
|
|
|
! Output ports
|
2014-04-18 12:32:59 -04:00
|
|
|
: do-ssl-write ( buffer ssl -- event/f )
|
|
|
|
2dup swap [ buffer@ ] [ buffer-length ] bi SSL_write
|
|
|
|
[ f check-ssl-error ] keep swap [ 2nip ] [ swap buffer-consume f ] if* ;
|
|
|
|
|
|
|
|
M: ssl-handle drain ( port handle -- event/f )
|
|
|
|
dup maybe-handshake [ buffer>> ] [ handle>> ] bi* do-ssl-write ;
|
2013-10-17 12:14:50 -04:00
|
|
|
|
|
|
|
! Connect
|
2014-04-18 12:32:59 -04:00
|
|
|
: do-ssl-connect-once ( ssl -- event/f )
|
|
|
|
dup SSL_connect f check-ssl-error ;
|
2013-10-17 12:14:50 -04:00
|
|
|
|
|
|
|
: do-ssl-connect ( ssl-handle -- )
|
2014-04-18 12:32:59 -04:00
|
|
|
dup handle>> do-ssl-connect-once
|
|
|
|
[ dupd wait-for-fd do-ssl-connect ] [ drop ] if* ;
|
2013-10-17 12:14:50 -04:00
|
|
|
|
|
|
|
: 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 ;
|
|
|
|
|
2008-11-23 03:36:26 -05:00
|
|
|
M: ssl-handle dispose*
|
2012-08-25 22:44:22 -04:00
|
|
|
[
|
|
|
|
! Free file>> after SSL_free
|
|
|
|
[ file>> &dispose drop ]
|
|
|
|
[ handle>> SSL_free ] bi
|
|
|
|
] with-destructors ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
|
|
|
: check-verify-result ( ssl-handle -- )
|
|
|
|
SSL_get_verify_result dup X509_V_OK =
|
2015-08-13 19:13:05 -04:00
|
|
|
[ drop ] [ verify-message certificate-verify-error ] if ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
2013-09-09 17:59:40 -04:00
|
|
|
: x509name>string ( x509name -- string )
|
2008-11-23 03:36:26 -05:00
|
|
|
NID_commonName 256 <byte-array>
|
|
|
|
[ 256 X509_NAME_get_text_by_NID ] keep
|
|
|
|
swap -1 = [ drop f ] [ latin1 alien>string ] if ;
|
|
|
|
|
2013-09-14 15:18:13 -04:00
|
|
|
: subject-name ( certificate -- host )
|
2013-09-09 17:59:40 -04:00
|
|
|
X509_get_subject_name x509name>string ;
|
|
|
|
|
|
|
|
: issuer-name ( certificate -- issuer )
|
|
|
|
X509_get_issuer_name x509name>string ;
|
|
|
|
|
2013-09-16 20:24:31 -04:00
|
|
|
: name-stack>sequence ( name-stack -- seq )
|
2013-09-14 15:18:13 -04:00
|
|
|
dup sk_num iota [ sk_value GENERAL_NAME_st memory>struct ] with map ;
|
|
|
|
|
|
|
|
: alternative-dns-names ( certificate -- dns-names )
|
2013-09-16 20:24:31 -04:00
|
|
|
NID_subject_alt_name f f X509_get_ext_d2i
|
|
|
|
[ name-stack>sequence ] [ f ] if*
|
2013-09-14 15:18:13 -04:00
|
|
|
[ type>> GEN_DNS = ] filter
|
|
|
|
[ d>> dNSName>> data>> utf8 alien>string ] map ;
|
|
|
|
|
|
|
|
: subject-names-match? ( host subject -- ? )
|
2008-11-23 03:36:26 -05:00
|
|
|
[ >lower ] bi@ "*." ?head [ tail? ] [ = ] if ;
|
|
|
|
|
2013-09-14 15:18:13 -04:00
|
|
|
: check-subject-name ( host ssl-handle -- )
|
2014-03-06 12:41:37 -05:00
|
|
|
SSL_get_peer_certificate [
|
|
|
|
[ alternative-dns-names ] [ subject-name ] bi suffix
|
|
|
|
2dup [ subject-names-match? ] with any?
|
2015-08-13 19:13:05 -04:00
|
|
|
[ 2drop ] [ subject-name-verify-error ] if
|
|
|
|
] [ certificate-missing-error ] if* ;
|
2008-11-23 03:36:26 -05:00
|
|
|
|
|
|
|
M: openssl check-certificate ( host ssl -- )
|
|
|
|
current-secure-context config>> verify>> [
|
|
|
|
handle>>
|
|
|
|
[ nip check-verify-result ]
|
2013-09-14 15:18:13 -04:00
|
|
|
[ check-subject-name ]
|
2008-11-23 03:36:26 -05:00
|
|
|
2bi
|
|
|
|
] [ 2drop ] if ;
|
|
|
|
|
2014-07-07 21:34:41 -04:00
|
|
|
: check-buffer ( port -- port )
|
2015-08-13 19:13:05 -04:00
|
|
|
dup buffer>> buffer-empty? [ upgrade-buffers-full ] unless ;
|
2014-07-07 21:34:41 -04:00
|
|
|
|
|
|
|
: input/output-ports ( -- input output )
|
|
|
|
input-stream output-stream
|
|
|
|
[ get underlying-port check-buffer ] bi@
|
2015-08-13 19:13:05 -04:00
|
|
|
2dup [ handle>> ] bi@ eq? [ upgrade-on-non-socket ] unless ;
|
2014-07-07 21:34:41 -04:00
|
|
|
|
|
|
|
: make-input/output-secure ( input output -- )
|
2015-08-13 19:13:05 -04:00
|
|
|
dup handle>> non-ssl-socket? [ upgrade-on-non-socket ] unless
|
2014-07-07 21:34:41 -04:00
|
|
|
[ <ssl-socket> ] change-handle
|
|
|
|
handle>> >>handle drop ;
|
|
|
|
|
|
|
|
: (send-secure-handshake) ( output -- )
|
2015-08-13 19:13:05 -04:00
|
|
|
remote-address get [ upgrade-on-non-socket ] unless*
|
2014-07-07 21:34:41 -04:00
|
|
|
secure-connection ;
|
|
|
|
|
|
|
|
M: openssl send-secure-handshake
|
|
|
|
input/output-ports
|
|
|
|
[ make-input/output-secure ] keep
|
|
|
|
[ (send-secure-handshake) ] keep
|
|
|
|
remote-address get dup inet? [
|
|
|
|
host>> swap handle>> check-certificate
|
|
|
|
] [ 2drop ] if ;
|
|
|
|
|
|
|
|
M: openssl accept-secure-handshake ( -- )
|
|
|
|
input/output-ports
|
|
|
|
make-input/output-secure ;
|
|
|
|
|
2008-11-23 03:36:26 -05:00
|
|
|
openssl secure-socket-backend set-global
|