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
56868f94
Kaydet (Commit)
56868f94
authored
Tem 21, 2018
tarafından
jdemeyer
Kaydeden (comit)
Serhiy Storchaka
Tem 21, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34126: Fix crashes while profiling invalid calls. (GH-8300)
üst
a692efe4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
4 deletions
+28
-4
test_sys_setprofile.py
Lib/test/test_sys_setprofile.py
+16
-0
2018-07-16-20-55-29.bpo-34126.mBVmgc.rst
...ore and Builtins/2018-07-16-20-55-29.bpo-34126.mBVmgc.rst
+2
-0
ceval.c
Python/ceval.c
+10
-4
No files found.
Lib/test/test_sys_setprofile.py
Dosyayı görüntüle @
56868f94
...
...
@@ -334,6 +334,22 @@ class ProfileSimulatorTestCase(TestCaseBase):
(
1
,
'return'
,
j_ident
),
])
# Test an invalid call (bpo-34126)
def
test_unbound_method_no_args
(
self
):
def
f
(
p
):
dict
.
get
()
f_ident
=
ident
(
f
)
self
.
check_events
(
f
,
[(
1
,
'call'
,
f_ident
),
(
1
,
'return'
,
f_ident
)])
# Test an invalid call (bpo-34126)
def
test_unbound_method_invalid_args
(
self
):
def
f
(
p
):
dict
.
get
(
print
,
42
)
f_ident
=
ident
(
f
)
self
.
check_events
(
f
,
[(
1
,
'call'
,
f_ident
),
(
1
,
'return'
,
f_ident
)])
def
ident
(
function
):
if
hasattr
(
function
,
"f_code"
):
...
...
Misc/NEWS.d/next/Core and Builtins/2018-07-16-20-55-29.bpo-34126.mBVmgc.rst
0 → 100644
Dosyayı görüntüle @
56868f94
Fix crashes when profiling certain invalid calls of unbound methods.
Patch by Jeroen Demeyer.
Python/ceval.c
Dosyayı görüntüle @
56868f94
...
...
@@ -4566,10 +4566,16 @@ call_function(PyObject ***pp_stack, Py_ssize_t oparg, PyObject *kwnames)
}
else
if
(
Py_TYPE
(
func
)
==
&
PyMethodDescr_Type
)
{
PyThreadState
*
tstate
=
PyThreadState_GET
();
if
(
tstate
->
use_tracing
&&
tstate
->
c_profilefunc
)
{
// We need to create PyCFunctionObject for tracing.
PyMethodDescrObject
*
descr
=
(
PyMethodDescrObject
*
)
func
;
func
=
PyCFunction_NewEx
(
descr
->
d_method
,
stack
[
0
],
NULL
);
if
(
nargs
>
0
&&
tstate
->
use_tracing
)
{
/* We need to create a temporary bound method as argument
for profiling.
If nargs == 0, then this cannot work because we have no
"self". In any case, the call itself would raise
TypeError (foo needs an argument), so we just skip
profiling. */
PyObject
*
self
=
stack
[
0
];
func
=
Py_TYPE
(
func
)
->
tp_descr_get
(
func
,
self
,
(
PyObject
*
)
Py_TYPE
(
self
));
if
(
func
==
NULL
)
{
return
NULL
;
}
...
...
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