Opened 9 years ago

Closed 6 years ago

Last modified 6 years ago

#12214 closed bug (fixed)

[runtime_loader] can't find libgcc_s.so.1 when LD_PRELOAD is used

Reported by: diver Owned by: zooey
Priority: normal Milestone: Unscheduled
Component: System/runtime_loader Version: R1/Development
Keywords: Cc: stippi, pulkomandy
Blocked By: Blocking:
Platform: All

Description

hrev49408.

The following command used to work without errors:

LD_PRELOAD=/system/lib/x86/libroot_debug.so /system/apps/WebPositive http://depot.haiku-os.org
runtime_loader: Cannot open file libgcc_s.so.1: No such file or directory
LD_PRELOAD="/boot/system/lib/x86/libgcc_s.so.1 /system/lib/x86/libroot_debug.so" /system/apps/WebPositive http://depot.haiku-os.org
runtime_loader: /boot/system/lib/x86/libgcc_s.so.1: Could not resolve symbol 'pthread_cancel'
resolve symbol "pthread_cancel" returned: -2147478780
runtime_loader: /boot/system/lib/x86/libgcc_s.so.1: Troubles relocating: Symbol not found
runtime_loader: Cannot open file libgcc_s.so.1: No such file or directory

Attachments (4)

libroot_debug_syms.txt (512.8 KB ) - added by korli 9 years ago.
output of readelf -W --syms /system/lib/x86/libroot_debug.so
libgcc_syms.txt (29.0 KB ) - added by korli 9 years ago.
output of readelf -W --syms /system/lib/x86/libgcc_s.so.1
WebPositive.strace.txt (1.0 MB ) - added by korli 9 years ago.
LDPRELOAD=/system/lib/x86/libroot_debug.so strace -l -o WebPositive.strace.txt WebPositive
WebPositive.straceT.txt (1.4 MB ) - added by korli 9 years ago.
LDPRELOAD=/system/lib/x86/libroot_debug.so strace -T -o WebPositive.strace.txt WebPositive

Change History (23)

comment:1 by pulkomandy, 9 years ago

Owner: changed from bonefish to korli
Status: newassigned

Possibly related to the recent update of the gcc package?

comment:2 by waddlesplash, 9 years ago

Not sure. I had the same issue a few days ago, before the GCC package update, IIRC.

comment:3 by korli, 9 years ago

Owner: changed from korli to nobody

 LD_PRELOAD=/system/lib/x86/libroot.so /system/apps/WebPositive displays the same message about libgcc_s.so.1.

comment:4 by bonefish, 9 years ago

readelf -W --syms .../libroot_debug.so anyone?

by korli, 9 years ago

Attachment: libroot_debug_syms.txt added

output of readelf -W --syms /system/lib/x86/libroot_debug.so

comment:5 by bonefish, 9 years ago

pthread_cancel is properly exported at least (also no symbol versioning used). Same info for libgcc_s.so.1, please. Also an strace might help (with "-l").

by korli, 9 years ago

Attachment: libgcc_syms.txt added

output of readelf -W --syms /system/lib/x86/libgcc_s.so.1

by korli, 9 years ago

Attachment: WebPositive.strace.txt added

LDPRELOAD=/system/lib/x86/libroot_debug.so strace -l -o WebPositive.strace.txt WebPositive

comment:6 by bonefish, 9 years ago

The libgcc_s.so.1 symbols are as expected. The strace output is unfortunately incomplete. I played around a little with an older Haiku image I have at hand and often the beginning of the output is missing. So apparently something is broken. :-/

Anyway, most of the loading phase still seems to be captured. The images have been loaded and relocated at line 572. Thereafter the initialization code of the images is invoked -- libroot, libbe (lots of locale related stuff), libmedia, and finally WebPositive itself, around line 1243. A few lines later the BApplication is constructed.

So we have already entered main(). The problem must occur when loading some add-on/library dynamically. Since I see no mention of libgcc_s.so.1, this does apparently happen in another thread. An strace run tracing all threads would be helpful ("-T"; "-l" won't be needed).

by korli, 9 years ago

Attachment: WebPositive.straceT.txt added

LDPRELOAD=/system/lib/x86/libroot_debug.so strace -T -o WebPositive.strace.txt WebPositive

comment:7 by bonefish, 9 years ago

Cc: stippi pulkomandy added

Thanks, korli!

I see no indication of the error or the output quoted in the ticket description being produced (no _kern_write(0x2,...) in the strace log. The "-t" strace option would also trace new teams spawned by WebPositive, which is where I suppose the error originates from. CC'ing the folks who might actually know what is supposed to happen at least.

comment:8 by pulkomandy, 9 years ago

Could it be that the spawned team (I don't see what it could be) is a gcc2 application? Can't find the ticket right now, but there is a similar problem when trying to take a screenshot of Web+ with LD_PRELOAD forcing an x86 lib, because screenshot is a gcc2 application.

comment:9 by bonefish, 9 years ago

Sounds plausible. The question is: Why has that changed (recently) respectively why is WebPositive requiring a gcc 2 application at start-up now?

comment:10 by waddlesplash, 9 years ago

I don't think this is the case at all, because I was getting similar problems (except runtime_loader shows "can't find libstdc++" IIRC) trying to use LD_PRELOAD on a libbe I'd just compiled to run StyledEdit. I'm not at my dev machine ATM, but I will be in a few hours, so I'll try to reproduce the issue that way and upload strace output.

Last edited 9 years ago by waddlesplash (previous) (diff)

comment:11 by diver, 9 years ago

Owner: changed from nobody to zooey

Found the problem. Ot was introduced in hrev47677 with the merge of 'gcc_syslibs' branch.

Version 0, edited 9 years ago by diver (next)

comment:13 by pulkomandy, 9 years ago

You can use git bisect to further bisect the commit inside the branch. It requires compiling Haiku yourself.

git bisect start hrev47677 hrev47676

git will checkout a commit in the middle of the range (including the branch). Build and test, then use either git bisect good or git bisect bad (or git bisect skipif that build fails for another reason). Until git tells you the exact commit creating the problem.

comment:14 by korli, 9 years ago

An idea: When loading an x86 libroot_debug.so on a x86_gcc2 system, open_executable is used to load libroot_debug dependencies aka libgcc_s, but sSearchPathSubDir is still NULL because the application isn't loaded yet. libgcc_s isn't located in standard search paths for x86_gcc2 and cannot be found hence the failure message. It has maybe worked earlier when libroot_debug.so had no dependencies. In the end, it may be worthwhile to set sSearchPathSubDir also for libraries when not already set.

comment:15 by diver, 9 years ago

Interestingly, copying the following libs:

/system/lib/x86/libgcc_s.so.1
/system/lib/x86/libroot_debug.so

into a lib folder next to an examined binary and invoking LD_PRELOAD=lib/libroot_debug.so mpv-x86 seem to work. However, this doesn't seems to work for Web+ as I get:

runtime_loader: /boot/system/lib/x86/libsupc++.so: Could not resolve symbol '___tls_get_addr'
resolve symbol "___tls_get_addr" returned: -2147478780
runtime_loader: /boot/system/lib/x86/libsupc++.so: Troubles relocating: Symbol not found

comment:16 by mmu_man, 7 years ago

FWIW, I just had this same error when porting MuseScore. Somehow the build system ended up passing -Wl,-rpath,/boot/system/lib -Wl,-rpath,/boot/system/lib/x86 for a gcc4 build on a gcc2 hybrid. Setting CMAKE_SKIP_RPATH made it skip the first rpath, and it worked that way.

comment:17 by waddlesplash, 6 years ago

Resolution: fixed
Status: assignedclosed

Fixed in hrev51600, using more-or-less the model that korli proposed.

comment:18 by pulkomandy, 6 years ago

Not sure this is right. This path is used for lookup of the "lib" dir next to the application. Now it will look for it next to libroot_debug instead (or whatever you preloaded first).

Maybe something like this would make more sense:

if (sSearchPathSubDir == NULL || type == B_APP_IMAGE)

That is, set it with anything we can grab as soon as we can, but then replace it with the app path when we get to loading that.

comment:19 by waddlesplash, 6 years ago

If you look in the code below the changed, you will see that sSearchPathSubDir is set to either "x86_gcc2" or "x86", not a full path. So adding that second case will only matter if we load things from different ABIs in the same binary...?

Note: See TracTickets for help on using tickets.