Sto cercando di recuperare una risorsa tramite SSL utilizzando Net::HTTP
. Ecco il frammento di codice rilevante:Ruby 1.8.7 e Net :: HTTP: creazione di una richiesta GET SSL con cert client?
req = Net::HTTP::Get.new(ContentURI.path)
https = Net::HTTP.new(ContentURI.host, ContentURI.port)
https.use_ssl = true
https.cert = OpenSSL::X509::Certificate.new(@cert_raw)
https.key = OpenSSL::PKey::RSA.new(@cert_key_raw)
https.verify_mode = OpenSSL::SSL::VERIFY_PEER
https.ca_file = File.join(TestDataPath, 'cacert.pem')
resp = https.start { |cx| cx.request(req) }
o con l'ultima riga alternato:
resp = https.get(ContentURI.path)
Ho verificato che i vari bit (CERT, chiave, CA CERT, ecc) sono corrette .
Il problema è che il cx.request(req)
genera un'eccezione:
OpenSSL::SSL::SSLError: SSL_connect SYSCALL returned=5 errno=0 state=SSLv3 read server session ticket A
Il log degli errori Apache SSL sul server contiene quanto segue:
[Tue Jan 24 11:47:26 2012] [debug] ssl_engine_kernel.c(1876): OpenSSL: Loop: SSLv3 read finished A
[Tue Jan 24 11:47:26 2012] [debug] ssl_engine_kernel.c(1905): OpenSSL: Exit: error in SSLv3 write session ticket A
[Tue Jan 24 11:47:26 2012] [debug] ssl_engine_kernel.c(1905): OpenSSL: Exit: error in SSLv3 write session ticket A
[Tue Jan 24 11:47:26 2012] [info] [client 10.11.88.53] SSL handshake interrupted by system [Hint: Stop button pressed in browser?!]
[Tue Jan 24 11:47:26 2012] [info] [client 10.11.88.53] Connection closed to child 0 with abortive shutdown (server _SERVERNAME_:443
il CERT, chiave, e il lavoro di file cert CA con questo host SSL attraverso altri strumenti; Sto solo avendo problemi a riprodurre quel successo programmaticamente usando Net::HTTP[S]
.
Grazie a tutti coloro che possono identificare ciò che sto facendo male!
guardando il sorgente OpenSSL, il messaggio di errore è legato alla mancanza ticket di sessione (dati client-forniti necessario per riprendere la sessione ssl); nessun indizio sul perché ciò avvenga in questo caso ... – Wejn