Commit 8bd57a7
authored
Prevent invalid scopes request from crashing debug session (#2026)
* Prevent invalid scopes request from crashing debug session
If an unmapped or non-numeric frameId is sent in a scopes request,
int() raises a ValueError that terminates the debug session. Wrap the
scope construction in a try/except so that invalid frameIds return an
empty scopes list instead, which is valid per the DAP spec.
* Add logging for invalid scopes requests
Log expected errors (ValueError, TypeError) at info level and
unexpected exceptions with full traceback via pydev_log.exception.1 parent bf118c8 commit 8bd57a7
2 files changed
Lines changed: 43 additions & 4 deletions
File tree
- src/debugpy/_vendored/pydevd
- _pydevd_bundle
- tests_python
Lines changed: 11 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1109 | 1109 | | |
1110 | 1110 | | |
1111 | 1111 | | |
1112 | | - | |
1113 | | - | |
1114 | | - | |
1115 | | - | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
1116 | 1123 | | |
1117 | 1124 | | |
1118 | 1125 | | |
| |||
Lines changed: 32 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
0 commit comments