Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 536582 - sys-apps/sandbox-2.6: unavailable multilib headers trigger warnings when building ptrace
Summary: sys-apps/sandbox-2.6: unavailable multilib headers trigger warnings when buil...
Status: RESOLVED FIXED
Alias: None
Product: Portage Development
Classification: Unclassified
Component: Sandbox (show other bugs)
Hardware: All Linux
: Lowest minor
Assignee: Sandbox Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-14 11:27 UTC by cmuelle8
Modified: 2015-09-27 06:15 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
build log (1421232403-install-sys-apps_sandbox-2.6-r1:0::gentoo.out,29.55 KB, text/plain)
2015-01-14 11:33 UTC, cmuelle8
Details
sandbox-2.6-r1.ebuild.patch (sandbox-2.6-r1.ebuild.patch,556 bytes, patch)
2015-01-14 11:36 UTC, cmuelle8
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description cmuelle8 2015-01-14 11:27:29 UTC
The ebuild handles building for multiple ABIs by itself.

Nevertheless, configure of the package does it's own tricks to build for multiple ABIs - it hardcodes a configure option called 'schizo' to being enabled by default. This in turn triggers building for an X32_ABI always _if_ the host_alias matches x86_64*linux*.


The relevant lines triggering this behavior are in configure.ac at line 47:
if test "x$enable_schizo" = "xyes" ; then
        case $host_alias in
                x86_64*linux*) SB_SCHIZO_SETTINGS="x86_64:-m64 x86:-m32 x32:-mx32";;
        esac
fi


This will not work if the host does not make use of X32 ABI, the system will miss x32 specific header files that are tried to be read at compile time:
  CC     libsandbox_la-trace.lo
In file included from /usr/include/features.h:390:0,
                 from /usr/include/dirent.h:25,
                 from ./../../sandbox-2.6/headers.h:15,
                 from <command-line>:0:
/usr/include/gnu/stubs.h:13:28: fatal error: gnu/stubs-x32.h: No such file or directory
 # include <gnu/stubs-x32.h>
                            ^
compilation terminated.
(See attached build log for context.)


To make things even worse:  Portage/Paludis will NOT die because of this error (even though it is fatal).  Instead they continue to merge the build image to the live system.

Reproducible: Always
Comment 1 cmuelle8 2015-01-14 11:33:57 UTC
Created attachment 393956 [details]
build log

note that I have modified the ebuild to die unconditionally after compilation stages have finished.  i did this to preserve the output log that normally is removed by the package manager on completion.

neither LTO nor the gold linker have been used.  just using standard flags exhibits this bugs problem.
Comment 2 cmuelle8 2015-01-14 11:36:02 UTC
Created attachment 393958 [details, diff]
sandbox-2.6-r1.ebuild.patch
Comment 3 cmuelle8 2015-01-14 12:09:33 UTC
(In reply to cmuelle8 from comment #2)
> Created attachment 393958 [details, diff] [details, diff]
> sandbox-2.6-r1.ebuild.patch

IMHO: Aside from this fix the ebuild should further be modified to make the package manager fail if fatal errors arise during compile stage (as is expected for such cases).
Comment 4 SpanKY gentoo-dev 2015-02-21 19:59:23 UTC
the code is not failing in the way you think it is.  it is attempting to generate a list of syscalls for ptracing.  if the ABI isn't usable at compile time, then you won't get a list of syscalls, and you won't be able to sandbox that ABI.  since you've already made x32 not available, this isn't a problem.
Comment 5 cmuelle8 2015-02-22 17:28:43 UTC
(In reply to SpanKY from comment #4)
> it is attempting to generate a list of syscalls for ptracing.
> [..]
> since you've already made x32 not available, this isn't a problem.

ACK, but imho if this is an error that the programmer expects or is known to be generated, then there is no need to show it during the build process.

Also, the code does not _need_ to probe for X32, if it is _known_ we are not building for it (wrt to active abi use flags).


To me it looks as if these lines of code are a reminiscence to the days when ebuilds did not 'make' the package for each ABI individually (or better, when PMS/eclass were not ready for it).

It's also noteworthy that this 'schizo' thing has been implemented for x86_64 _only_.  For the sake of consistency: If the ebuild handles multiple ABIs itself for other archs, it should do so for x86_64.


You also point out that 'this isn't a problem', if 'x32 not available'.  What about the case where x32 actually _is_ available, but the x32 abi use flag is disabled (intently, for testing purpose or other reason)?

In the latter case, for x86_64, the build will not result in what the admin/pkg builder expects - i.e. a sandbox without support of x32.  imho the ebuild behavior should be streamlined to that found for other archs.  There'll be less source of error and more predictability in the attempts to find such.  This is easy to have, since by using the configure option, we do not need to modify upstream source.
Comment 6 SpanKY gentoo-dev 2015-09-20 09:03:17 UTC
(In reply to cmuelle8 from comment #5)

you're confusing enabled ABIs with possible kernel ABIs.  any libsandbox library can be called on to execute static programs of a different ABI which is why a single build must know about all of them.

as for ABI support, things happen when developers actually invest time in implementing things.  the fact that only x86_64/x86/x32 is currently supported is because that's what i've gotten around to coding.  if you want other ABIs, then you should contribute to the effort.  otherwise, tbh, complaining about missing functionality is simply obnoxious.

not having x32 headers but x32 support in the kernel is something that should be addressed, but again, that's only possible when someone implements it.  most likely it'll come about by pregenerating the headers ahead of time & committing them to the source repo.

as for user configurations, i don't think that's relevant.  user's rarely understand what's going on at this level, and there's no real need to even allow them to dive in this far.  the expectation is the sandbox catches bad code and that's it.
Comment 7 SpanKY gentoo-dev 2015-09-27 06:15:01 UTC
the build no longer generates warnings with:
http://gitweb.gentoo.org/proj/sandbox.git/commit/?id=46fe624223cfe62fb6c2fbb609be42f2f1d1734b

i'll probably precompile things ahead of time at some point, but don't need a bug open for that