Date: Fri, 21 Feb 2025 01:49:57 +0200 From: Konstantin Belousov <kib@freebsd.org> To: =?utf-8?B?Vmluw61jaXVz?= dos Santos Oliveira <vini.ipsmaker@gmail.com> Cc: freebsd-hackers@freebsd.org Subject: Re: Capsicum and weak libc symbols Message-ID: <Z7e_pTUHL9BBxP3H@kib.kiev.ua> In-Reply-To: <CAK9RveLiLZZgEBUkWnAkOQBXDpbQhmF%2BOKPsB37rH8y4pFWtxw@mail.gmail.com> References: <CAK9Rve%2BftgxgbgHmVe=dDF_9kASDsqP=0Lxnj%2BEsOquZXtFcaw@mail.gmail.com> <Z6V5D6mn6XbBt1n7@kib.kiev.ua> <CAK9RveLiLZZgEBUkWnAkOQBXDpbQhmF%2BOKPsB37rH8y4pFWtxw@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, Feb 19, 2025 at 06:57:57AM -0300, Vinícius dos Santos Oliveira wrote: > Em sex., 7 de fev. de 2025 às 00:08, Konstantin Belousov > <kostikbel@gmail.com> escreveu: > > On Thu, Feb 06, 2025 at 10:40:52PM -0300, Vinícius dos Santos Oliveira wrote: > > > [...] > > > > The purpose of the weak attribute is to allow the weak symbol to be undefined. > > It is not about the order of resolution (by default our rtld indeed prefers > > non-weak over weak, but it is a bug, and there is knob to turn this behavior > > off). > > > > If you need to interpose symbol, just link the interposing object before the > > object that supplies the symbol to be preempted by your definition. > > There are two use cases for interposing symbols: > > * with rtld > * without rtld (fully static binaries) > > I don't want to change what rtld sees. I don't want to change > /lib/libc.so.7. It works fines as is right now. > > I want to change what /usr/bin/ld.lld sees. I only want the symbols to > be weak in /usr/lib/libc.a. > > For instance, the following code fails to compile when you try to > build a static binary (it works fine on the default mode though): > > > #include <dirent.h> > #include <unistd.h> > #include <fcntl.h> > #include <errno.h> > > DIR *opendir(const char *name) > { > if (name[0] == '\0') { > errno = ENOENT; > return NULL; > } > > int fd = open(name, O_RDONLY | O_NONBLOCK | O_DIRECTORY | O_CLOEXEC); > if (fd == -1) { > return NULL; > } > > DIR *ret = fdopendir(fd); > if (!ret) { > int saved_errno = errno; > close(fd); > errno = saved_errno; > } > return ret; > } > > int main(int argc, char *argv[]) > { > (void)argc; > (void)argv; > } > > > The build output for for clang -static will be: > > > ld: error: duplicate symbol: opendir > >>> defined at t2.c > >>> /tmp/t2-3cf81c.o:(opendir) > >>> defined at opendir.c:55 (/usr/src/lib/libc/gen/opendir.c:55) > >>> opendir.o:(.text+0x0) in archive /usr/lib/libc.a > clang: error: linker command failed with exit code 1 (use -v to see invocation) > > > Meanwhile symbols such as unlink are weak (in /usr/lib/libc.a) and I > can interpose them easily in static builds as well. The proper fix there is not to make symbols weak, but to move the opendir() and fdopendir() into dedicated source files, so that they are located in different .o files in libc.a. https://reviews.freebsd.org/D49089 > > However with further investigation I've realised that weak symbols in > /usr/lib/libc.a are also weak in /lib/libc.so.7. Does FreeBSD use the > same weak attributes whether it's building libc.so.7 or libc.a? > > > -- > Vinícius dos Santos Oliveira > https://vinipsmaker.github.io/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Z7e_pTUHL9BBxP3H>