You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Krzysztof Kwiatkowski f6b77e1b27 Adds description 11 年之前
etc Add certs 11 年之前
Makefile Added exit() whenever WANT_SOMETHING 11 年之前
README.md Adds description 11 年之前
client.cpp Adds description 11 年之前
client.h Init sources. Doesn't work yet 11 年之前
defs.h Show bug a bit better 11 年之前
server.cpp Show bug a bit better 11 年之前
server.h Init sources. Doesn't work yet 11 年之前
ssl_process.cpp Init sources. Doesn't work yet 11 年之前
ssl_process.h Init sources. Doesn't work yet 11 年之前

README.md

buggy_openssl_with_fullduplex

Toy code which shows problems with non-blocking, fullduplex I/O & renegotiation in OpenSSL

How it works:

Client & Server:
- it has two threads - sender & receiver
- writes and reads are mutexed

Client:
- I/O is blocking (but can be non-blocking)

Server:
- I/O is non-blocking
- each thread runs it's own select()

1. After client & server are connected (and SSL handshake done) client sender
thread starts sending first message (in a loop).

2. When server receives first query it starts sending string EXCHANGE_STRING for
SEND_ITERATIONS number of times. So now we have 4 threads that are sending
and receiving traffic at the same time ( 2 send/receive threads on each
server and client side )

3. When client receives RENEG_INIT_LEN number of characters it starts
renegotiation ( if other one is not pending ). Bug starts to occure here

BUG:
Client side: client starts to report SSL_ERROR_SYSCALL
Server side: server reports SSL_ERROR_WANT_READ when receive function is called

TCP:
In TCP exchange we can see that transfer between client & server is OK until
client sends "Client Hello" packet. This packet is sent when SSL_renegotiate
is called