-
- Downloads
"git@gitlab.cobolworx.com:COBOLworx/gcc-cobol.git" did not exist on "e2d1f8587c33e7f956e97a2889f1210e1df673c8"
analyzer: More features for CPython analyzer plugin [PR107646]
This patch adds known function subclasses for Python/C API functions
PyList_New, PyLong_FromLong, and PyList_Append. It also adds new
optional parameters for
region_model::get_or_create_region_for_heap_alloc, allowing for the
newly allocated region to immediately transition from the start state to
the assumed non-null state in the malloc state machine if desired.
Finally, it adds a new procedure, dg-require-python-h, intended as a
directive in Python-related analyzer tests, to append necessary Python
flags during the tests' build process.
The main warnings we gain in this patch with respect to the known function
subclasses mentioned are leak related. For example:
rc3.c: In function ‘create_py_object’:
│
rc3.c:21:10: warning: leak of ‘item’ [CWE-401] [-Wanalyzer-malloc-leak]
│
21 | return list;
│
| ^~~~
│
‘create_py_object’: events 1-4
│
|
│
| 4 | PyObject* item = PyLong_FromLong(10);
│
| | ^~~~~~~~~~~~~~~~~~~
│
| | |
│
| | (1) allocated here
│
| | (2) when ‘PyLong_FromLong’ succeeds
│
| 5 | PyObject* list = PyList_New(2);
│
| | ~~~~~~~~~~~~~
│
| | |
│
| | (3) when ‘PyList_New’ fails
│
|......
│
| 21 | return list;
│
| | ~~~~
│
| | |
│
| | (4) ‘item’ leaks here; was allocated at (1)
│
Some concessions were made to
simplify the analysis process when comparing kf_PyList_Append with the
real implementation. In particular, PyList_Append performs some
optimization internally to try and avoid calls to realloc if
possible. For simplicity, we assume that realloc is called every time.
Also, we grow the size by just 1 (to ensure enough space for adding a
new element) rather than abide by the heuristics that the actual implementation
follows.
gcc/analyzer/ChangeLog:
PR analyzer/107646
* call-details.h: New function.
* region-model.cc (region_model::get_or_create_region_for_heap_alloc):
New optional parameters.
* region-model.h (class region_model): New optional parameters.
* sm-malloc.cc (on_realloc_with_move): New function.
(region_model::transition_ptr_sval_non_null): New function.
gcc/testsuite/ChangeLog:
PR analyzer/107646
* gcc.dg/plugin/analyzer_cpython_plugin.c: Analyzer support for
PyList_New, PyList_Append, PyLong_FromLong
* gcc.dg/plugin/plugin.exp: New test.
* lib/target-supports.exp: New procedure.
* gcc.dg/plugin/cpython-plugin-test-2.c: New test.
Signed-off-by:
Eric Feng <ef2648@columbia.edu>
Showing
- gcc/analyzer/call-details.h 4 additions, 0 deletionsgcc/analyzer/call-details.h
- gcc/analyzer/region-model.cc 15 additions, 2 deletionsgcc/analyzer/region-model.cc
- gcc/analyzer/region-model.h 11 additions, 3 deletionsgcc/analyzer/region-model.h
- gcc/analyzer/sm-malloc.cc 42 additions, 0 deletionsgcc/analyzer/sm-malloc.cc
- gcc/testsuite/gcc.dg/plugin/analyzer_cpython_plugin.c 722 additions, 0 deletionsgcc/testsuite/gcc.dg/plugin/analyzer_cpython_plugin.c
- gcc/testsuite/gcc.dg/plugin/cpython-plugin-test-2.c 78 additions, 0 deletionsgcc/testsuite/gcc.dg/plugin/cpython-plugin-test-2.c
- gcc/testsuite/gcc.dg/plugin/plugin.exp 2 additions, 1 deletiongcc/testsuite/gcc.dg/plugin/plugin.exp
- gcc/testsuite/lib/target-supports.exp 25 additions, 0 deletionsgcc/testsuite/lib/target-supports.exp
Loading
Please register or sign in to comment