Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
43f08a85
Kaydet (Commit)
43f08a85
authored
Mar 31, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1380952: fix SSL objects timing out on consecutive read()s
üst
dd2245f2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
8 deletions
+31
-8
test_socket_ssl.py
Lib/test/test_socket_ssl.py
+14
-0
NEWS
Misc/NEWS
+2
-0
_ssl.c
Modules/_ssl.c
+15
-8
No files found.
Lib/test/test_socket_ssl.py
Dosyayı görüntüle @
43f08a85
...
...
@@ -26,6 +26,19 @@ def test_basic():
buf
=
f
.
read
()
f
.
close
()
def
test_timeout
():
test_support
.
requires
(
'network'
)
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
s
.
settimeout
(
30.0
)
# connect to service which issues an welcome banner (without need to write anything)
s
.
connect
((
"gmail.org"
,
995
))
ss
=
socket
.
ssl
(
s
)
# read part of return welcome banner twice,# read part of return welcome banner twice
ss
.
read
(
1
)
ss
.
read
(
1
)
s
.
close
()
def
test_rude_shutdown
():
try
:
import
threading
...
...
@@ -74,6 +87,7 @@ def test_main():
raise
test_support
.
TestSkipped
(
"socket module has no ssl support"
)
test_rude_shutdown
()
test_basic
()
test_timeout
()
if
__name__
==
"__main__"
:
test_main
()
Misc/NEWS
Dosyayı görüntüle @
43f08a85
...
...
@@ -303,6 +303,8 @@ Core and builtins
Extension Modules
-----------------
- Patch #1380952: fix SSL objects timing out on consecutive read()s
- Patch #1309579: wait3 and wait4 were added to the posix module.
- Patch #1231053: The audioop module now supports encoding/decoding of alaw.
...
...
Modules/_ssl.c
Dosyayı görüntüle @
43f08a85
...
...
@@ -474,15 +474,22 @@ static PyObject *PySSL_SSLread(PySSLObject *self, PyObject *args)
if
(
!
(
buf
=
PyString_FromStringAndSize
((
char
*
)
0
,
len
)))
return
NULL
;
/* first check if there are bytes ready to be read */
Py_BEGIN_ALLOW_THREADS
count
=
SSL_pending
(
self
->
ssl
);
Py_END_ALLOW_THREADS
sockstate
=
check_socket_and_wait_for_timeout
(
self
->
Socket
,
0
);
if
(
sockstate
==
SOCKET_HAS_TIMED_OUT
)
{
PyErr_SetString
(
PySSLErrorObject
,
"The read operation timed out"
);
Py_DECREF
(
buf
);
return
NULL
;
}
else
if
(
sockstate
==
SOCKET_TOO_LARGE_FOR_SELECT
)
{
PyErr_SetString
(
PySSLErrorObject
,
"Underlying socket too large for select()."
);
return
NULL
;
if
(
!
count
)
{
sockstate
=
check_socket_and_wait_for_timeout
(
self
->
Socket
,
0
);
if
(
sockstate
==
SOCKET_HAS_TIMED_OUT
)
{
PyErr_SetString
(
PySSLErrorObject
,
"The read operation timed out"
);
Py_DECREF
(
buf
);
return
NULL
;
}
else
if
(
sockstate
==
SOCKET_TOO_LARGE_FOR_SELECT
)
{
PyErr_SetString
(
PySSLErrorObject
,
"Underlying socket too large for select()."
);
return
NULL
;
}
}
do
{
err
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment