aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/openssl/ossl_ssl.c10
-rw-r--r--test/openssl/test_ssl.rb14
3 files changed, 27 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f0d30a245..2a924b4ce2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jun 25 02:40:33 2015 Eric Wong <e@80x24.org>
+
+ * ext/openssl/ossl_ssl.c (ossl_ssl_read_internal):
+ do not process kwargs in blocking mode
+ * test/openssl/test_ssl.rb: test sysread
+
Wed Jun 24 16:54:11 2015 Koichi Sasada <ko1@atdot.net>
* gc.c (gc_mark_children): add additional debug code for #11244.
diff --git a/ext/openssl/ossl_ssl.c b/ext/openssl/ossl_ssl.c
index ce8ce8935c..4496d46ab7 100644
--- a/ext/openssl/ossl_ssl.c
+++ b/ext/openssl/ossl_ssl.c
@@ -1430,13 +1430,17 @@ ossl_ssl_read_internal(int argc, VALUE *argv, VALUE self, int nonblock)
{
SSL *ssl;
int ilen, nread = 0;
- int no_exception;
+ int no_exception = 0;
VALUE len, str;
rb_io_t *fptr;
VALUE opts = Qnil;
- rb_scan_args(argc, argv, "11:", &len, &str, &opts);
- no_exception = get_no_exception(opts);
+ if (nonblock) {
+ rb_scan_args(argc, argv, "11:", &len, &str, &opts);
+ no_exception = get_no_exception(opts);
+ } else {
+ rb_scan_args(argc, argv, "11", &len, &str);
+ }
ilen = NUM2INT(len);
if(NIL_P(str)) str = rb_str_new(0, ilen);
diff --git a/test/openssl/test_ssl.rb b/test/openssl/test_ssl.rb
index 3ffddf8884..f2a64ca7c6 100644
--- a/test/openssl/test_ssl.rb
+++ b/test/openssl/test_ssl.rb
@@ -60,6 +60,20 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase
}
end
+ def test_ssl_sysread_blocking_error
+ start_server(OpenSSL::SSL::VERIFY_NONE, true) { |server, port|
+ server_connect(port) { |ssl|
+ ssl.write("abc\n")
+ assert_raise(TypeError) { ssl.sysread(4, exception: false) }
+ buf = ''
+ assert_raise(ArgumentError) { ssl.sysread(4, buf, exception: false) }
+ assert_equal '', buf
+ assert_equal buf.object_id, ssl.sysread(4, buf).object_id
+ assert_equal "abc\n", buf
+ }
+ }
+ end
+
def test_connect_and_close
start_server(OpenSSL::SSL::VERIFY_NONE, true){|server, port|
sock = TCPSocket.new("127.0.0.1", port)