Skip to content

Commit 1a704d3

Browse files
authored
Exclude LD_LIBRARY_PATH and PYTHONHOME when invoking subprocesses (heroku#1565)
During the build, the buildpack makes the config vars set on the app available to certain subprocesses (such as Django collectstatic) via the `sub_env` utility function. This function filters out env vars that might cause the subprocess to fail. (Note: This filtering only affects app config vars, and not the env vars provided by buildpacks that run prior to the Python buildpack.) This change adds `LD_LIBRARY_PATH` and `PYTHONHOME` to the list of env vars that are filtered out, to prevent errors when they are set to invalid values. In particular, very old versions of the buildpack used to set these env vars as actual app config vars (via the `bin/release` script), to values that no longer work: https://github.com/heroku/heroku-buildpack-python/blob/27abdfe7d7ad104dabceb45641415251e965671c/bin/release#L11-L18 These broken app config vars have not typically caused problems since: 1. Only Python apps created in 2012 or earlier will have them (unless someone manually sets them on an app) 2. Static builds of Python don't rely upon `LD_LIBRARY_PATH` However, as of Python 3.10 we switched to building in shared mode (see heroku#1320), and so apps with broken config vars will otherwise see errors like the following once they upgrade Python versions: ``` python: error while loading shared libraries: libpython3.10.so.1.0: cannot open shared object file: No such file or directory ``` As seen in: https://heroku.support/1365030 The `GIT_DIR` env var was removed from the filter list, since there is no need to filter it out, since it's no longer set by the build system, see heroku#1120. (The CNB isn't affected by this issue, and already has a test to confirm that.) GUS-W-15519103.
1 parent 4e335e1 commit 1a704d3

File tree

5 files changed

+23
-3
lines changed

5 files changed

+23
-3
lines changed

.rubocop.yml

+6
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@ RSpec/Focus:
2626

2727
RSpec/MultipleExpectations:
2828
Enabled: false
29+
30+
Style/TrailingCommaInArrayLiteral:
31+
EnforcedStyleForMultiline: consistent_comma
32+
33+
Style/TrailingCommaInHashLiteral:
34+
EnforcedStyleForMultiline: consistent_comma

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [Unreleased]
44

5+
- Excluded `LD_LIBRARY_PATH` and `PYTHONHOME` app config vars when invoking subprocesses during the build. ([#1565](https://github.com/heroku/heroku-buildpack-python/pull/1565))
56

67
## [v248] - 2024-04-09
78

spec/hatchet/django_spec.rb

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,23 @@
22

33
require_relative '../spec_helper'
44

5+
# Tests that broken user-provided env vars don't take precedence over those set by this buildpack
6+
# and break running Python. This is particularly important when using shared builds of Python,
7+
# since they rely upon `LD_LIBRARY_PATH` being correct. This list of env vars is based on those
8+
# that used to be set to different values by `bin/release` in very old versions of the buildpack:
9+
# https://github.com/heroku/heroku-buildpack-python/blob/27abdfe7d7ad104dabceb45641415251e965671c/bin/release#L11-L18
10+
BROKEN_CONFIG_VARS = {
11+
LD_LIBRARY_PATH: '/invalid-path',
12+
LIBRARY_PATH: '/invalid-path',
13+
PATH: '/invalid-path',
14+
PYTHONHOME: '/invalid-path',
15+
PYTHONPATH: '/invalid-path',
16+
}.freeze
17+
518
RSpec.describe 'Django support' do
619
describe 'collectstatic' do
720
context 'when building a Django project' do
8-
let(:app) { Hatchet::Runner.new('python-getting-started') }
21+
let(:app) { Hatchet::Runner.new('python-getting-started', config: BROKEN_CONFIG_VARS) }
922

1023
it 'runs collectstatic' do
1124
app.deploy do |app|

spec/hatchet/profile_d_scripts_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'PYTHONHOME=/this-should-be-overridden',
4747
'PYTHONPATH=/this-should-be-preserved',
4848
'PYTHONUNBUFFERED=this-should-be-overridden',
49-
'WEB_CONCURRENCY=this-should-be-preserved'
49+
'WEB_CONCURRENCY=this-should-be-preserved',
5050
]
5151
app.run_multi(list_envs_cmd, heroku: { env: user_env_vars.join(';'), type: 'example-worker' }) do |output, _|
5252
expect(output).to eq(<<~OUTPUT)

vendor/buildpack-stdlib_v8.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ _env_blacklist() {
9595
if [ -n "$regex" ]; then
9696
regex="|$regex"
9797
fi
98-
echo "^(PATH|GIT_DIR|CPATH|CPPATH|LD_PRELOAD|LIBRARY_PATH$regex)$"
98+
echo "^(PATH|CPATH|CPPATH|LD_PRELOAD|LIBRARY_PATH|LD_LIBRARY_PATH|PYTHONHOME$regex)$"
9999
}
100100

101101
# Usage: $ export-env ENV_DIR WHITELIST BLACKLIST

0 commit comments

Comments
 (0)