public inbox for libc-help@sourceware.org
 help / color / mirror / Atom feed
From: Ola x Nilsson <ola.x.nilsson@axis.com>
To: <libc-help@sourceware.org>
Subject: ppoll with -D_TIME_BITS=64 and -D_FORTIFY_SOURCE
Date: Wed, 9 Nov 2022 09:31:21 +0100	[thread overview]
Message-ID: <jwqpmdwqtti.fsf@axis.com> (raw)


I've run into some problems when building programs using ppoll on a
32bit system with
-D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE -O

A C file containing a function call like

  int res = ppoll(fds, sizeof(fds)/sizeof(*fds), &timeout, NULL);

compiled without any of the above options will generate an ELF file with
an undefined symbol
ppoll@GLIBC_2.4

 $ objdump -wt ppoll-test | grep 'ppoll.*|GLIBC'
 00000000       F *UND*	00000000              ppoll@GLIBC_2.4

If it is compiled with 

-D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64

the ELF file will contain the undefined symbol __ppoll64@GLIBC_2.34

 $ objdump -wt ppoll-test-64bit | grep 'ppoll.*@GLIBC'
 00000000       F *UND*	00000000              __ppoll64@GLIBC_2.34

This is in line with how I interpret the sys/poll.h header file, if
__USE_TIME_BITS64 is defined, redirect ppoll to __ppoll64.


But if I build it with
-D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE -O
bits/poll2.h will add another redirect and the ELF file will again refer
to ppoll@GLIBC_2_4

 $ objdump -wt ppoll-test-64bit-fortified | grep 'ppoll.*@GLIBC'
 00000000       F *UND*	00000000              ppoll@GLIBC_2.4


I interpret this to mean that the actual system call will be resolved to
the 32-bit time version of ppoll.  But maybe I'm way off.

Can someone help me figure out what is going on here?

I've created a github repo with my test code here
https://github.com/snogge/glibc-ppoll-test .  I tested the build using
gcc-linaro-13.0.0-2022.11-x86_64_arm-linux-gnueabihf.tar.xz downloaded
from
https://snapshots.linaro.org/gnu-toolchain/13.0-2022.11-1/arm-linux-gnueabihf/
It uses glibc > 2.36.

/Ola

             reply	other threads:[~2022-11-09 10:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-09  8:31 Ola x Nilsson [this message]
2022-11-09 11:34 ` Florian Weimer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwqpmdwqtti.fsf@axis.com \
    --to=ola.x.nilsson@axis.com \
    --cc=libc-help@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).