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
a9002f82
Kaydet (Commit)
a9002f82
authored
Haz 30, 2003
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix SF #754870, SSL crash interpreter when remote side closes during connect
Also fix a memory leak.
üst
b346096b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
2 deletions
+39
-2
test_socket_ssl.py
Lib/test/test_socket_ssl.py
+37
-1
_ssl.c
Modules/_ssl.c
+2
-1
No files found.
Lib/test/test_socket_ssl.py
Dosyayı görüntüle @
a9002f82
...
...
@@ -2,13 +2,14 @@
from
test
import
test_support
import
socket
import
time
# Optionally test SSL support. This requires the 'network' resource as given
# on the regrtest command line.
skip_expected
=
not
(
test_support
.
is_resource_enabled
(
'network'
)
and
hasattr
(
socket
,
"ssl"
))
def
test_
main
():
def
test_
basic
():
test_support
.
requires
(
'network'
)
if
not
hasattr
(
socket
,
"ssl"
):
raise
test_support
.
TestSkipped
(
"socket module has no ssl support"
)
...
...
@@ -28,5 +29,40 @@ def test_main():
buf
=
f
.
read
()
f
.
close
()
def
test_rude_shutdown
():
try
:
import
thread
except
ImportError
:
return
# some random port to connect to
PORT
=
9934
def
listener
():
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
s
.
bind
((
''
,
PORT
))
s
.
listen
(
5
)
s
.
accept
()
del
s
thread
.
exit
()
def
connector
():
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
s
.
connect
((
''
,
PORT
))
try
:
ssl_sock
=
socket
.
ssl
(
s
)
except
socket
.
sslerror
:
pass
else
:
raise
test_support
.
TestFailed
,
\
'connecting to closed SSL socket failed'
thread
.
start_new_thread
(
listener
,
())
time
.
sleep
(
1
)
connector
()
def
test_main
():
test_rude_shutdown
()
test_basic
()
if
__name__
==
"__main__"
:
test_main
()
Modules/_ssl.c
Dosyayı görüntüle @
a9002f82
...
...
@@ -110,7 +110,7 @@ PySSL_SetError(PySSLObject *obj, int ret)
{
unsigned
long
e
=
ERR_get_error
();
if
(
e
==
0
)
{
if
(
ret
==
0
)
{
if
(
ret
==
0
||
!
obj
->
Socket
)
{
p
=
PY_SSL_ERROR_EOF
;
errstr
=
"EOF occurred in violation of protocol"
;
}
else
if
(
ret
==
-
1
)
{
...
...
@@ -432,6 +432,7 @@ static PyObject *PySSL_SSLread(PySSLObject *self, PyObject *args)
timedout
=
wait_for_timeout
(
self
->
Socket
,
0
);
if
(
timedout
)
{
PyErr_SetString
(
PySSLErrorObject
,
"The read operation timed out"
);
Py_DECREF
(
buf
);
return
NULL
;
}
do
{
...
...
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