Page MenuHomeFreeBSD

Split libc into libc and libsys
AbandonedPublic

Authored by brooks on Mar 7 2018, 7:19 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Apr 12, 9:26 AM
Unknown Object (File)
Fri, Mar 29, 1:46 AM
Unknown Object (File)
Mon, Mar 18, 11:01 PM
Unknown Object (File)
Mon, Mar 18, 11:01 PM
Unknown Object (File)
Mon, Mar 18, 10:42 PM
Unknown Object (File)
Mon, Mar 18, 10:39 PM
Unknown Object (File)
Mar 17 2024, 12:37 AM
Unknown Object (File)
Mar 14 2024, 7:30 AM

Details

Reviewers
theraven
talg_cs.stanford.edu
kib
bdrewery
andrew
ali_mashtizadeh.com
Commits
rG1995ea1ea265: libsys: add guards to MD manpages
rG9cbd96582c0a: libc: split libc and syscall interposing (1/2)
rG228d8c9efe1e: libc: split libc and syscall interposing (2/2)
rG8269e7673cf0: libsys: relocate implementations and manpages
rG8f529310bd09: libc: libc/sys/Makefile.inc -> libsys/Makefile.sys
rG29d079c96491: libsys: move __libsys_interposer consumers
rG84dd0c080ba5: libc: libc/gen/sched_getcpu_gen.c -> libsys/
rG0d6cc87b18de: libc: libc/<arch>/sys/__vdso_gettc -> libsys/<arch>/
rG4bc66c0f9f2c: libc: remove remaining x86 sys bits to libsys
rG19149b03b1b5: libc: remove .PATH refs to libc/<arch>/sys
rG31a46e2cc84d: libc: Move per-arch sys/Makefile.inc to libsys
rGcdecda8da32b: libc: move rfork_thread(3) to libsys
rG1e2502bfca58: libc: move MD sys related symbols to libsys
rG81245a77f0a3: libc: compile _once in libsys
rG4c33415e4cf5: libc: elf auxiliary vector handling to libsys
rGf70c5a0925c6: libc: move getpagesize(s) to libsys
rG10f1b536ad71: libc: move __getosreldate to libsys
rGb71defdbd871: makesyscalls: generate private syscall symbols
rG86deddfacb6f: libsys: generate private symbol map
rGe9d961055aa2: libsys: plumb in to build
rGef9871c6205c: libthr: move _umtx_op_err() to libsys
rG0d4f7723bc43: libc: link libsys as a auxiliary filter library
rGf21777224411: SYS.h: make _SYSCALL_BODY overridable
rG8d2e8f720516: libc: make syscall stubs empty for shared lib
rG11f9745c5bab: libsys: fix powerpcspe build
rG57ddfad884a0: lib/libc: version auxiliary libsys.so
rG49076f376af5: libc: don't directly link libsys
rG49d684369c66: libthr: filter rather than link with libsys
rGd04abb05375d: Belatedly bump __FreeBSD_version for libsys
rG82bebc793658: rescue: Don't explicitly link with libsys
rGcc697d22c4a4: libsys: move some missed manpages
rGd5677b0b8b8a: libsys: actually install manpages
Summary

Split libc.so into libc.so and libsys.so libraries that enable third
party tools to interpose on system calls more easilly. A tool will replace the
libsys library at runtime with their own version. In a follow up patch libsys.a
will be linked against rtld rather than all of libc. This patch is based off
of the CheriBSD project.

Test Plan

make universe, testing amd64 builds, and building open source
applications agains the new version of the library. Compare symbols
present in libc before and after the change. Run performance tests as
well.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 19513
Build 19105: arc lint + arc unit

Event Timeline

lib/libc/gen/__pthread_mutex_init_calloc_cb_stub.c
43–44 ↗(On Diff #40044)

What's going on here exactly? I think a comment is warranted.

I do not understand this. There were a desire to have something name libsys for long time.

But: the library must have the dynamic version, with the defined and versioned ABI. If such library is provided, rtld should link against it statically, and perhaps libc should depend on the library. libc_nosyscalls is not needed then. Depending on the exported interfaces [do we want apps to directly reference syscall symbols from libsys, or only provide the libsys for libc and libthr use ?] libc might be linked as a filter for libsys.

What you do seems to be 0.1 of the whole road in this direction, and it feels like an unfinished hack.

lib/libc/gen/__pthread_mutex_init_calloc_cb_stub.c
43–44 ↗(On Diff #40044)

No, it is spelled __unused.

sys/amd64/include/asm.h
48 ↗(On Diff #40044)

Why is this needed ?

In CheriBSD this is implemented as a low-impact hack which avoids touching libc.so.7. I'd be fine with looking at a more aggressive approach. At one point I did try making the libc linker script add libsyscalls to a a syscall-less libc. My motivation for that approach vs linking libc.so.7 against libsyscalls was to make it easy to reuse the syscall-less libc in a sandbox where a completely different libsyscalls is used. I'm happy to try to support a move to another approach.

I don't care much how we spell the name. If there is ABI stuff other than syscalls that makes sense to put in there then a libsys, libsystem, or libabi might be a better name.

@ali_mashtizadeh.com: we should run the missing prototypes and the like through as separate revisions so they aren't part of what ever this diff becomes.

Thanks for the comments I'll rework the diff

  • Change the names to libabi and libc_noabi unless there's an objection
  • Add versioning
  • Test a build with libabi added to libc linker script
  • Remove the warning fixes for now
lib/libc/gen/__pthread_mutex_init_calloc_cb_stub.c
43–44 ↗(On Diff #40044)

I think this part is now unnecessary. A bit of cruft from updating to HEAD from where I cross ported the changes.

I set "WARNS=2" in libsyscalls/Makefile to eliminate a few warnings and not require these changes.

As Brooks suggested we can take care of this in another diff and I'm happy to do that. I also saw a bit of cleanup in a few files that folks should appreciate.

sys/amd64/include/asm.h
48 ↗(On Diff #40044)

This prevents requiring an ifdef in the amd64 version of setlogin.S and keeps the code essentially on par with the i386 version.

Thanks for the comments I'll rework the diff

  • Change the names to libabi and libc_noabi unless there's an objection
  • Add versioning
  • Test a build with libabi added to libc linker script
  • Remove the warning fixes for now

libabi is the worst name among all proposed. What does the library have to do with ABI ?

I do not want binaries to grow direct dependency on lib<whatever> (I will continue calling it libsys. I like the name). libsys.so.1 should be a dependency of the libc, most likely libc should be a filter over libsys. So no linker script modifications are necessary. But note the next question.

What symbols should export libsys.so ? Are the symbols should be internal sys_<syscallname>, and libc redirecting <syscallname> to sys_XXX ? Or do we want to allow libsys to directly export raw versioned syscall names, to be bound by the application references ? I suspect that the later is undesirable, in poaticular because some 'syscall' symbols are not, they are wrappers. e.g. open(2).

Another related question, should libsys export symbols for compat syscalls ? I think yes.

In D14609#307039, @kib wrote:

I do not want binaries to grow direct dependency on lib<whatever> (I will continue calling it libsys. I like the name). libsys.so.1 should be a dependency of the libc, most likely libc should be a filter over libsys. So no linker script modifications are necessary. But note the next question.

I'm fine with libsys.

What symbols should export libsys.so ? Are the symbols should be internal sys_<syscallname>, and libc redirecting <syscallname> to sys_XXX ? Or do we want to allow libsys to directly export raw versioned syscall names, to be bound by the application references ? I suspect that the later is undesirable, in poaticular because some 'syscall' symbols are not, they are wrappers. e.g. open(2).

I think having libsys.so export __sys_<syscallname> and having libc provide the other symbols makes sense. That decouples the syscall mechanism from libc and nothing more which is the desired effect.

Another related question, should libsys export symbols for compat syscalls ? I think yes.

I think so too.

Copy from my email regarding the proposed plan

I've made a rough sketch of the changes and it seems to be working on my machine. So I wanted to show you my plan for the libc/libsys split before I polish things up.

I will make libsys into an auxiliary library for libc. This means libsys will have to export all of the same weak symbols that libc exports. Also, the linker doesn't require an aux library (it's optional) so I'll enforce that in the generated stubs in libc.

  • Dynamic Libraries ***

libc.so:

  • Changed: __sys_<syscall> (write a default error string & abort), (same weak symbols as before)

libsys.so:

  • Include: __sys_<syscall> (syscall implementation), _<syscall> (weak symbol), <syscall> (weak symbol)
  • Include: compat calls
  • Include: error(), set_error_selector(), single threaded error
  • Versioning and symbols have to match libc to an extent for this to be an auxiliary library
  • See vDSO discussion below
    • Static libc.so ***
  • Roughly unchanged
  • Static libc_pic.a ***

I think the easiest way to generate libc_pic.a correctly (that -fPIE applications can be supported transparently) is to create a new lib/libc_pic/Makefile that links the necessary files from libc and libsys. This shouldn't add to the build time. If -fPIE is not a concern, rtld can be manually linked against libc_pic.so and libsys_pic.so.

General:
I plan to move the platform specific assembly routines into the lib/libsys/* directory.


vDSO:

  • Encapsulating vDSO into libsys isn't too bad and it seems some related functions we would bring in with vDSO is duplicated in RTLD.
  • Requires including __vdso_* functions, auxv.c, sysconf.c
  • Only a couple additional files reference auxv.c so that could be encapsulated in libsys as well. Some of these provide functions that are duplicated in rtld again.
  • The alternative for packages that want to interpose by replacing libsys without including vDSO would be to modify the Elf_Auxinfo by in the parent process or at startup. Seems simple enough and I've looked into this for my record/replay system.

RTLD:

  • To link rtld against libsys we need these additional functions:
    • Memory/String operations: memcpy, str*cpy, str*cat, strchr, strsep, strdup, strspn/strcspn, bzero
    • Environment variables: getenv, unsetenv
    • Misc: assert(i.e. abort)
  • rtld already has replacement functions for getosreldate, stack protection, etc that we could bring in with vDSO into libsys? Maybe there's a case that those functions are worth moving into libsys.
  • I'll get a better sense of what else I've missed once I finish the rewrite of this patch. I've got a few patches towards the goal of linking rtld against libsys that I can cleanup and submit separately.

Updated patch against head and lots of cleanup to amd64 and i386. Similar cleanup in progress on other platforms.

Brooks & Konstantin if there's no objections I'm consolidating all the system call symbols for libsys/libc together. They have to be kept in sync to support library filtering otherwise it breaks. There's some fallout from that deduplication work, I'll wrap that up tomorrow.

ali_mashtizadeh.com retitled this revision from Provide libc_nosyscalls and libsyscalls to Split libc into libc and libsys.Jun 27 2018, 6:27 PM

Sorry for the delay in dealing with this...

I've finally found some time to do some testing and something is not working right. I built and installed 12.0-ALPHA6 on a system, then built a poudriere jail with this patch applied. The programs seem to work fine when run on the host environment, but most dynamic programs fail with Abort trap when run. Interestingly, while the jail version of /bin/sh fails early, if I run one from the host, it gets as far as the prompt, but fails on exit.

Hello Brooks,

I'm refreshing the diff it was either an outstanding change I applied to my diff or when I rebased onto head that it broke. I have a fix I'm testing now (with fixes for other archs too) and hope that will be done by tonight/tomorrow.

It would still be good to see what major changes/issues you have with the patch so I could start addressing those.

Best,
Ali

Hello Brooks,

Can you double check maybe you have to delete your build directory because of my changes to the build. I made a few more improvements but I'm fairly certain that shouldn't fix the bug you saw. I both PXEBooted the OS and ran a jail without any crash on X86-64. I'm going to finish testing other platforms.

Did you compared export tables for patched vs. unpatched libc ?

Can you put pre-built libc.so and syscalls lib somewhere ?

Ali,

Rebuilding with a clean objdir seems to have worked. We're probably going to want to find the root cause there so we can add workarounds to Makefile.inc1.

I'm now doing some large port builds to exercise things a bit.

I need to look at the changes some more, but one thing I'm noticing is that git's rename detection did a truly terrible job in creating the diff. Do you think you can recreate the list of files moved around in some form suitable for use with svn mv when we do an actual commit? That might also make things a little easier to understand.

kevans added inline comments.
Makefile.inc1
2476

This also needs the accompanying __L dependency: lib/libc__L: lib/libsys__L. libcompiler_rt moved into _prereq_libs in the meantime, so that dependency is already fulfilled.

After far too many years 😢, I've kicked off a fresh effort to integrate this change. I've got a WIP pull request at https://github.com/freebsd/freebsd-src/pull/908 that isn't complete, but basically works and some prodding with gdb suggests it's doing the right thing in terms of which implementations are being called in simple programs.

brooks added commits: rGd5677b0b8b8a: libsys: actually install manpages, rGcc697d22c4a4: libsys: move some missed manpages, rG82bebc793658: rescue: Don't explicitly link with libsys, rGd04abb05375d: Belatedly bump __FreeBSD_version for libsys, rG49d684369c66: libthr: filter rather than link with libsys, rG49076f376af5: libc: don't directly link libsys, rG57ddfad884a0: lib/libc: version auxiliary libsys.so, rG11f9745c5bab: libsys: fix powerpcspe build, rG8d2e8f720516: libc: make syscall stubs empty for shared lib, rGf21777224411: SYS.h: make _SYSCALL_BODY overridable, rG0d4f7723bc43: libc: link libsys as a auxiliary filter library, rGef9871c6205c: libthr: move _umtx_op_err() to libsys, rGe9d961055aa2: libsys: plumb in to build, rG86deddfacb6f: libsys: generate private symbol map, rGb71defdbd871: makesyscalls: generate private syscall symbols, rG10f1b536ad71: libc: move __getosreldate to libsys, rGf70c5a0925c6: libc: move getpagesize(s) to libsys, rG4c33415e4cf5: libc: elf auxiliary vector handling to libsys, rG81245a77f0a3: libc: compile _once in libsys, rG1e2502bfca58: libc: move MD sys related symbols to libsys, rGcdecda8da32b: libc: move rfork_thread(3) to libsys, rG31a46e2cc84d: libc: Move per-arch sys/Makefile.inc to libsys, rG19149b03b1b5: libc: remove .PATH refs to libc/<arch>/sys, rG4bc66c0f9f2c: libc: remove remaining x86 sys bits to libsys, rG0d6cc87b18de: libc: libc/<arch>/sys/__vdso_gettc -> libsys/<arch>/, rG84dd0c080ba5: libc: libc/gen/sched_getcpu_gen.c -> libsys/, rG29d079c96491: libsys: move __libsys_interposer consumers, rG8f529310bd09: libc: libc/sys/Makefile.inc -> libsys/Makefile.sys, rG8269e7673cf0: libsys: relocate implementations and manpages, rG228d8c9efe1e: libc: split libc and syscall interposing (2/2), rG9cbd96582c0a: libc: split libc and syscall interposing (1/2).Feb 9 2024, 12:40 AM
brooks edited reviewers, added: ali_mashtizadeh.com; removed: brooks.

Commandeer so I can close as I've landed this.