Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apport: catch ProcessLookupError in forward_crash_to_container #487

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

bdrung
Copy link
Collaborator

@bdrung bdrung commented Mar 28, 2025

Crashes in the Chrome snap can crash Apport:

Traceback (most recent call last):
  File "/usr/share/apport/apport", line 1248, in <module>
    sys.exit(main(sys.argv[1:]))
             ^^^^^^^^^^^^^^^^^^
  File "/usr/share/apport/apport", line 773, in main
    if _check_global_pid_and_forward(options):
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/share/apport/apport", line 732, in _check_global_pid_and_forward
    forward_crash_to_container(options)
  File "/usr/share/apport/apport", line 531, in forward_crash_to_container
    sock_fd = os.open(
              ^^^^^^^^
ProcessLookupError: [Errno 3] No such process: 'root/run/apport.socket'

Example /proc/cmdline:

/usr/bin/python3 /usr/share/apport/apport -p1 -s4 -c0 -d1 -P570846 -u1000 -g1000 -- !snap!chromium!2934!usr!lib!chromium-browser!chrome
/usr/bin/python3 /usr/share/apport/apport -p1 -s4 -c0 -d1 -P22550 -u1001 -g1001 -- !snap!brave!438!opt!brave.com!brave!brave

The Snap container does neither have /run nor /run/apport.socket. Python throws ProcessLookupErrorinstead ofFileNotFoundError`. So catch this exception type as well. Writing a test case for this use case is tricky unless you want to setup snaps in your test environment.

Bug-Ubuntu: https://launchpad.net/bugs/2080499

Crashes in the Chrome snap can crash Apport:

```
Traceback (most recent call last):
  File "/usr/share/apport/apport", line 1248, in <module>
    sys.exit(main(sys.argv[1:]))
             ^^^^^^^^^^^^^^^^^^
  File "/usr/share/apport/apport", line 773, in main
    if _check_global_pid_and_forward(options):
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/share/apport/apport", line 732, in _check_global_pid_and_forward
    forward_crash_to_container(options)
  File "/usr/share/apport/apport", line 531, in forward_crash_to_container
    sock_fd = os.open(
              ^^^^^^^^
ProcessLookupError: [Errno 3] No such process: 'root/run/apport.socket'
```

Example /proc/cmdline:

```
/usr/bin/python3 /usr/share/apport/apport -p1 -s4 -c0 -d1 -P570846 -u1000 -g1000 -- !snap!chromium!2934!usr!lib!chromium-browser!chrome
/usr/bin/python3 /usr/share/apport/apport -p1 -s4 -c0 -d1 -P22550 -u1001 -g1001 -- !snap!brave!438!opt!brave.com!brave!brave
```

The Snap container does neither have `/run` nor /run/apport.socket`.
Python throws `ProcessLookupError` instead of `FileNotFoundError`. So
catch this exception type as well. Writing a test case for this use case
is tricky unless you want to setup snaps in your test environment.

Bug-Ubuntu: https://launchpad.net/bugs/2080499
Copy link

codecov bot commented Mar 28, 2025

Codecov Report

Attention: Patch coverage is 0% with 1 line in your changes missing coverage. Please review.

Project coverage is 83.92%. Comparing base (3164b24) to head (8d1b037).

Files with missing lines Patch % Lines
data/apport 0.00% 1 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##             main     #487   +/-   ##
=======================================
  Coverage   83.92%   83.92%           
=======================================
  Files         101      101           
  Lines       20455    20455           
  Branches     3215     3215           
=======================================
  Hits        17167    17167           
- Misses       2839     2840    +1     
+ Partials      449      448    -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant