[osv-dev] Re: Build failed in Jenkins: osv-build #1553

2020-01-19 Thread Waldek Kozaczuk
It turns out cpio on fedora does not accept '--extract-over-symlinks' parameter whereas the one on ubuntu does. What is interesting both are the same version: Fedora: cpio (GNU cpio) 2.12 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later

[osv-dev] Build failed in Jenkins: osv-build #1553

2020-01-19 Thread jenkins
See Changes: [jwkozaczuk] apps: updated to the latest -- [...truncated 539.84 KB...] Adding /usr/tomcat/webapps/examples/jsp/security/protected/index.jsp... Adding

[osv-dev] [PATCH v4 2/2] Implement RTLD_NEXT

2020-01-19 Thread Zhiting Zhu
Signed-off-by: Zhiting Zhu --- core/elf.cc| 33 + include/osv/elf.hh | 1 + libc/dlfcn.cc | 4 ++-- tests/tst-dlfcn.cc | 2 +- 4 files changed, 37 insertions(+), 3 deletions(-) diff --git a/core/elf.cc b/core/elf.cc index a419ea6a..ffb16004 100644

[osv-dev] [PATCH v4 1/2] Lookup symbol deeper

2020-01-19 Thread Zhiting Zhu
dlsym function doesn't seem to lookup symbol deep enough. This patch includes a bfs version of collect dependencies. It fixes test_dlsym_from_sofile_with_preload and dlsym_with_dependencies. Signed-off-by: Waldemar Kozaczuk Signed-off-by: Zhiting Zhu --- core/elf.cc| 39

[osv-dev] [COMMIT osv master] apps: updated to the latest

2020-01-19 Thread Commit Bot
From: Waldemar Kozaczuk Committer: Waldemar Kozaczuk Branch: master apps: updated to the latest Signed-off-by: Waldemar Kozaczuk --- diff --git a/apps b/apps --- a/apps +++ b/apps @@ -1 +1 @@ -Subproject commit 32f58972f5521ea750006f36ec538fe3f2779bab +Subproject commit

[osv-dev] [COMMIT osv-apps master] fix openjdk8-fedora

2020-01-19 Thread Commit Bot
From: Waldemar Kozaczuk Committer: Waldemar Kozaczuk Branch: master fix openjdk8-fedora This patch fixes a crash reported by issue #880. The crash actually happens due to a missing library libfreeblpriv3.so provided by nss-softokn-freebl package. The root cause was discovered by tracing vfs*

Re: [osv-dev] [PATCH] java: move balloon code out of kernel into java-base

2020-01-19 Thread Pekka Enberg
(Add osv-dev back to CC...) On Sun, Jan 19, 2020 at 11:16 PM Pekka Enberg wrote: > > On Sun, Jan 19, 2020 at 8:34 AM Waldemar Kozaczuk > wrote: > > > > The main motivation of this patch is to eliminate compile time > > dependencies in kernel on JDK headers. It achieves it by moving > > java

Re: [osv-dev] [PATCH v3 2/2] Implement RTLD_NEXT

2020-01-19 Thread Nadav Har'El
Reviewed-by: Nadav Har'El -- Nadav Har'El n...@scylladb.com On Thu, Jan 16, 2020 at 8:31 PM Zhiting Zhu wrote: > Signed-off-by: Zhiting Zhu > --- > core/elf.cc| 33 + > include/osv/elf.hh | 1 + > libc/dlfcn.cc | 4 ++-- > tests/tst-dlfcn.cc |

Re: [osv-dev] [PATCH v3 1/2] Lookup symbol deeper

2020-01-19 Thread Nadav Har'El
Looks mostly good, sorry for having so many iterations... Just one tiny issue below about setting each item in the set twice, and one style comment. On Thu, Jan 16, 2020 at 8:31 PM Zhiting Zhu wrote: > dlsym function doesn't seem to lookup symbol deep enough. This > patch includes a bfs version