Skip to content

Commit 86a9f26

Browse files
committed
Disable AT_SECURE check when OpenSSL reads environment variables
1 parent 83d2f89 commit 86a9f26

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

android-env.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ export CFLAGS=""
6262
export LDFLAGS="-Wl,--build-id=sha1 -Wl,--no-rosegment"
6363

6464
# Many packages get away with omitting this on standard Linux, but Android is stricter.
65-
LDFLAGS+=" -lm"
65+
LDFLAGS="$LDFLAGS -lm"
6666

6767
# -mstackrealign is included where necessary in the clang launcher scripts which are
6868
# pointed to by $CC, so we don't need to include it here.
6969
if [ $HOST = "arm-linux-androideabi" ]; then
70-
CFLAGS+=" -march=armv7-a -mthumb"
70+
CFLAGS="$CFLAGS -march=armv7-a -mthumb"
7171
fi
7272

7373
if [ -n "${PREFIX:-}" ]; then

openssl/at_secure.patch

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
--- a/crypto/uid.c 2024-01-30 13:28:16
2+
+++ b/crypto/uid.c 2024-03-09 12:34:25
3+
@@ -46,7 +46,11 @@
4+
5+
int OPENSSL_issetugid(void)
6+
{
7+
-# ifdef OSSL_IMPLEMENT_GETAUXVAL
8+
+// CPython: due to the way Android apps are started, they always have AT_SECURE set
9+
+// (https://android.googlesource.com/platform/bionic/+/6bb01b6%5E%21/). But all their
10+
+// environment variables come either from the operating system or the app itself, so
11+
+// there's no security risk here.
12+
+# if defined(OSSL_IMPLEMENT_GETAUXVAL) && !defined(__ANDROID__)
13+
return getauxval(AT_SECURE) != 0;
14+
# else
15+
return getuid() != geteuid() || getgid() != getegid();

openssl/build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ cd $build_dir
2020
tar -xf $version_dir/$src_filename
2121
cd $(basename $src_filename .tar.gz)
2222

23+
patch -p1 -i $recipe_dir/at_secure.patch
24+
2325
# CFLAGS environment variable replaces default flags rather than adding to them.
2426
CFLAGS+=" -O2"
2527
export LDLIBS="-latomic"

0 commit comments

Comments
 (0)