diff options
| -rw-r--r-- | meta/recipes-core/glibc/glibc/0024-fix-create-thread-failed-in-unprivileged-process-BZ-.patch | 88 | ||||
| -rw-r--r-- | meta/recipes-core/glibc/glibc_2.35.bb | 1 |
2 files changed, 89 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc/0024-fix-create-thread-failed-in-unprivileged-process-BZ-.patch b/meta/recipes-core/glibc/glibc/0024-fix-create-thread-failed-in-unprivileged-process-BZ-.patch new file mode 100644 index 0000000000..b431ea168d --- /dev/null +++ b/meta/recipes-core/glibc/glibc/0024-fix-create-thread-failed-in-unprivileged-process-BZ-.patch | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | From 6609858239b8f94e12c19eac0cec425511d1211f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 3 | Date: Sun, 29 Aug 2021 20:49:16 +0800 | ||
| 4 | Subject: [PATCH] fix create thread failed in unprivileged process [BZ #28287] | ||
| 5 | |||
| 6 | Since commit [d8ea0d0168 Add an internal wrapper for clone, clone2 and clone3] | ||
| 7 | applied, start a unprivileged container (docker run without --privileged), | ||
| 8 | it creates a thread failed in container. | ||
| 9 | |||
| 10 | In commit d8ea0d0168, it calls __clone3 if HAVE_CLONE3_WAPPER is defined. If | ||
| 11 | __clone3 returns -1 with ENOSYS, fall back to clone or clone2. | ||
| 12 | |||
| 13 | As known from [1], cloneXXX fails with EPERM if CLONE_NEWCGROUP, | ||
| 14 | CLONE_NEWIPC, CLONE_NEWNET, CLONE_NEWNS, CLONE_NEWPID, or CLONE_NEWUTS | ||
| 15 | was specified by an unprivileged process (process without CAP_SYS_ADMIN) | ||
| 16 | |||
| 17 | [1] https://man7.org/linux/man-pages/man2/clone3.2.html | ||
| 18 | |||
| 19 | So if __clone3 returns -1 with EPERM, fall back to clone or clone2 could | ||
| 20 | fix the issue. Here are the test steps: | ||
| 21 | |||
| 22 | 1) Prepare test code | ||
| 23 | cat > conftest.c <<ENDOF | ||
| 24 | #include <pthread.h> | ||
| 25 | #include <stdio.h> | ||
| 26 | |||
| 27 | int check_me = 0; | ||
| 28 | void* func(void* data) {check_me = 42; printf("start thread: check_me %d\n", check_me); return &check_me;} | ||
| 29 | int main() | ||
| 30 | { | ||
| 31 | pthread_t t; | ||
| 32 | void *ret; | ||
| 33 | pthread_create (&t, 0, func, 0); | ||
| 34 | pthread_join (t, &ret); | ||
| 35 | printf("check_me %d, p %p\n", check_me, &ret); | ||
| 36 | return (check_me != 42 || ret != &check_me); | ||
| 37 | } | ||
| 38 | |||
| 39 | ENDOF | ||
| 40 | |||
| 41 | 2) Compile | ||
| 42 | gcc -o conftest -pthread conftest.c | ||
| 43 | |||
| 44 | 3) Start a container with glibc 2.34 installed | ||
| 45 | [skip details] | ||
| 46 | docker run -it <container-image-name> bash | ||
| 47 | |||
| 48 | 4) Run conftest without this patch | ||
| 49 | $ ./conftest | ||
| 50 | check_me 0, p 0x7ffd91ccd400 | ||
| 51 | |||
| 52 | 5) Run conftest with this patch | ||
| 53 | $ ./conftest | ||
| 54 | start thread: check_me 42 | ||
| 55 | check_me 42, p 0x7ffe253c6f20 | ||
| 56 | |||
| 57 | Upstream-Status: Inappropriate [Rejected by upstream] | ||
| 58 | |||
| 59 | Upstream glibc rejected it because the latest docker has resolved the issue [1], | ||
| 60 | and upstream glibc does not backward compatibility with old docker[2] | ||
| 61 | |||
| 62 | In order to build Yocto with uninative in old docker, we need this local | ||
| 63 | patch | ||
| 64 | |||
| 65 | [1] https://github.com/moby/moby/commit/9f6b562dd12ef7b1f9e2f8e6f2ab6477790a6594 | ||
| 66 | [2] https://sourceware.org/pipermail/libc-alpha/2021-August/130590.html | ||
| 67 | |||
| 68 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 69 | --- | ||
| 70 | sysdeps/unix/sysv/linux/clone-internal.c | 2 +- | ||
| 71 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 72 | |||
| 73 | diff --git a/sysdeps/unix/sysv/linux/clone-internal.c b/sysdeps/unix/sysv/linux/clone-internal.c | ||
| 74 | index a71effcbd3..a0569113aa 100644 | ||
| 75 | --- a/sysdeps/unix/sysv/linux/clone-internal.c | ||
| 76 | +++ b/sysdeps/unix/sysv/linux/clone-internal.c | ||
| 77 | @@ -52,7 +52,7 @@ __clone_internal (struct clone_args *cl_args, | ||
| 78 | /* Try clone3 first. */ | ||
| 79 | int saved_errno = errno; | ||
| 80 | ret = __clone3 (cl_args, sizeof (*cl_args), func, arg); | ||
| 81 | - if (ret != -1 || errno != ENOSYS) | ||
| 82 | + if (ret != -1 || (errno != ENOSYS && errno != EPERM)) | ||
| 83 | return ret; | ||
| 84 | |||
| 85 | /* NB: Restore errno since errno may be checked against non-zero | ||
| 86 | -- | ||
| 87 | 2.27.0 | ||
| 88 | |||
diff --git a/meta/recipes-core/glibc/glibc_2.35.bb b/meta/recipes-core/glibc/glibc_2.35.bb index 2903a4001f..b785b61154 100644 --- a/meta/recipes-core/glibc/glibc_2.35.bb +++ b/meta/recipes-core/glibc/glibc_2.35.bb | |||
| @@ -47,6 +47,7 @@ SRC_URI = "${GLIBC_GIT_URI};branch=${SRCBRANCH};name=glibc \ | |||
| 47 | file://0021-Replace-echo-with-printf-builtin-in-nscd-init-script.patch \ | 47 | file://0021-Replace-echo-with-printf-builtin-in-nscd-init-script.patch \ |
| 48 | file://0022-sysdeps-gnu-configure.ac-Set-libc_cv_rootsbindir-onl.patch \ | 48 | file://0022-sysdeps-gnu-configure.ac-Set-libc_cv_rootsbindir-onl.patch \ |
| 49 | file://0023-timezone-Make-shell-interpreter-overridable-in-tzsel.patch \ | 49 | file://0023-timezone-Make-shell-interpreter-overridable-in-tzsel.patch \ |
| 50 | file://0024-fix-create-thread-failed-in-unprivileged-process-BZ-.patch \ | ||
| 50 | " | 51 | " |
| 51 | S = "${WORKDIR}/git" | 52 | S = "${WORKDIR}/git" |
| 52 | B = "${WORKDIR}/build-${TARGET_SYS}" | 53 | B = "${WORKDIR}/build-${TARGET_SYS}" |
