public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>,
	Joseph Myers <joseph@codesourcery.com>,
	Paul Eggert <eggert@cs.ucla.edu>,
	Alistair Francis <alistair23@gmail.com>,
	Alistair Francis <alistair.francis@wdc.com>,
	GNU C Library <libc-alpha@sourceware.org>,
	Florian Weimer <fweimer@redhat.com>,
	Carlos O'Donell <carlos@redhat.com>,
	Stepan Golosunov <stepan@golosunov.pp.ru>,
	Andreas Schwab <schwab@suse.de>, Zack Weinberg <zackw@panix.com>
Subject: Re: [RFC 00/10] y2038: nptl: futex: Provide support for futex_time64
Date: Fri, 17 Jul 2020 18:41:46 +0200	[thread overview]
Message-ID: <20200717184146.060f1b85@jawa> (raw)
In-Reply-To: <3353cedd-49c3-f637-62ac-784dbce76508@linaro.org>

[-- Attachment #1: Type: text/plain, Size: 7034 bytes --]

Hi Adhemerval,

> On 17/07/2020 05:11, Arnd Bergmann wrote:
> > On Fri, Jul 17, 2020 at 9:27 AM Lukasz Majewski <lukma@denx.de>
> > wrote:  
> >>>
> >>> Yes, it is on my list. I am trying to handle the mess of stat
> >>> functions  
> >>
> >> Regarding stat - it is indeed a mess - many versions of the same
> >> functions for generic, LFS, and architectures (like ARM).
> >> Conversion to 64 bit time support is challenging there as well.
> >>
> >> But as fair as I can tell - more than "code base" cleanup - the
> >> raise of glibc minimal kernel supported version would help much
> >> more in this situation as code for many "use cases" would be just
> >> removed.
> >>
> >> A side remark - now the oldest LTS kernel supported is 4.4 and
> >> oldest supported kernel for glibc is 3.2.
> >> Maybe it is a good time to bump the minimal supported kernel for
> >> glibc? 
> >>> before starting on the lowlevellock-futex.h.  
> >>
> >> If you don't have time to do the conversion in next two weeks then
> >> - I can in the meantime do a conversion for the above code snippet
> >> - futex_reltimed_wait_time64() (and up to
> >> pthread_mutex_{timed,clock}). This work shall be orthogonal to
> >> lowlevellock-futex.h cleanup.
> >>
> >> What do you think?  
> > 
> > I don't think it makes any difference for stat: linux-3.2 and
> > linux-5.0 appear to have the exact same kernel interface for
> > newstat/stat64 and newfstatat/fstatat64 on all architectures,
> > though there are two special cases that need to be handled:
> > 
> > - mips-n32 and ix86-x32 are lacking the stat64 version, so they only
> >   have the non-LFS newstat/newfstatat version but not
> > stat64/fstatat64. The x32 version is wide enough to support 64-bit
> > offsets but uses the non-LFS name for it.
> > 
> > - alpha, parisc and sparc are 64-bit architecture with
> > stat64/fstatat64, but they lack newstat/newfstatat.
> > 
> > While statx() was added in in linux-4.11, it was not enabled in ia64
> > until linux-5.1 when we sanitized the syscall tables across
> > architectures, so you can't rely on that until v5.1 is the minimum
> > kernel for glibc, and that will still be a long time.
> > 
> > There may be other reasons to increase the minimum runtimer kernel
> > level or the minimum kernel header version for glibc in the
> > meantime.  
> 
> Indeed raising the kernel does not help us much here, as you pointed
> out we need to handle some outliers. My current work to simplify the
> code base and keep me sane while adding y2038 support is to:
> 
>   1. Consolidate the {f}xstat{at}{64} routines.  With some ifdef
> checks to use the right syscall the only architectures that require
> special implementations are alpha and mips64 (which support either
> specific glibc _STAT_VER version or special function conversions.
> 
>   2. Remove internal usage of the {f}xstat{at}{64} routines and
> replace with {f}stat{at}64.
> 
>   3. Move the {f}xstat{at}{64} to compat symbols and add {f}stat{at}64
>      symbol for 2.33.  My plan is also do decouple the struct stat
>      definition from the kernel and define a glibc generic one for
>      *all* architectures (we can do it because there are new symbols).
> 
>   4. Implement fstat, lstat, and fstat on fstatat basis.  This will
> simplify the y2038 support since only the all syscall selection logic
> will at fstatat.
> 
>   5. Add y2038 support by adding a new internal struct
> __stat{64}_time{64}. These will require some for symbol for non-LFS
> architectures, but with the implementation consolidation their
> implementation should be way simpler.
> 
> For the generic fstatat{64} my plan is to  adjust the current struct 
> kernel_stat to defined for *all* architectures (not only when it is
> required, such as mips).  It will decouple the glibc from kernel,
> although it will require some routines to copy out the result (which
> we are do for some architectures anyway).  In a high level what I
> have devised so far is:
> 
> ---
> * fstatat.c
> 
> /* XSTAT_IS_XSTAT64 defines whether architecture support LFS or not.
> */ #if !XSTAT_IS_XSTAT64
> 
> /* Copies the fields from the kernel struct stat KST to glibc struct
> stat ST, returning EOVERFLOW if st_ino, st_size, or st_blocks does
> not fit in the non-LFS ST.  */
> extern int __kstat_to_stat (struct kernel_stat *kst, struct stat *st);
> 
> /* This is build only for ABI with non-LFS support: arm, csky, i386,
>    hppa, m68k, mips32, microblaze, nios2, s390, sh, powerpc32, and 
>    sparc32.  */
> int
> __fxstatat (int vers, int fd, const char *file, struct stat *st, int
> flag) {
>   struct kernel_stat kst;
>   int r = INLINE_SYSCALL_CALL (fstatat64, fd, file, &kst, flag);
>   return r ?: __kstat_to_stat (&kst, st);
> }
> 
> #endif /* XSTAT_IS_XSTAT64  */
> 
> --
> * fstatat64.c
> 
> int
> __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st,
> int flag) {
> #ifdef __NR_newfstatat
>   /* 64-bit kABI, e.g. aarch64, ia64, mips64*, powerpc64*, s390x,
> riscv64, and x86_64.  */
>   r = INLINE_SYSCALL_CALL (newfstatat, fd, file, &kst, flag);
> #if defined __NR_fstatat64
>   /* 64-bit kABI outlier, e.g. alpha and sparc64.  */
>   r = INLINE_SYSCALL_CALL (fstatat64, fd, file, &kst, flag)
> #else
>   struct statx tmp;
>   int r = INLINE_SYSCALL_CALL (statx, fd, file, AT_NO_AUTOMOUNT |
> flag, STATX_BASIC_STATS, &tmp);
>   if (r == 0 || errno != ENOSYS)
>     {
>       if (r == 0)
>         __cp_stat64_statx (st, &tmp);
>       return r;
>     }
>   /* Maybe I need to handle mips64-n32 here... */
>   r =  INLINE_SYSCALL_CALL (fstatat64, fd, file, &kst, flag);
> #endif
>   return r ?: __kstat_to_stat64 (&kst, st);
> }
> --
> 
> I am currently working on the 4. item on the list above and this is
> just the part to consolidate the implementations and make it sane.
> The y2038 part should be way simpler than trying to work with current
> implementation: the __fxstatat64 would be the same, but for the statx
> fallback to use fstatat64 we will need an extra convention to check
> for overflow.

It would be great to have the "syscall decision logic" in one place.

Some of my "hackish" attempts to convert *stat* [1][2][3] to support
64 bit time were using statx as it is already available and supported
in glibc.

The only issue was to convert/emulate data for stat output.


Links:

[1] -
https://github.com/lmajewski/y2038_glibc/commit/57841b674d3fc007e31e7551a66963834cf096ac
[2] -
https://github.com/lmajewski/y2038_glibc/commit/d79192c729562f5734a4fbc058e933c2a715d893
[3] -
https://github.com/lmajewski/y2038_glibc/commit/c74c19ab74eef4dcba8bd48d5306d4b38c55648e


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2020-07-17 16:41 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-07 15:08 Lukasz Majewski
2020-07-07 15:08 ` [RFC 01/10] doc: Fix wording and formatting in ./support/README Lukasz Majewski
2020-07-07 15:11   ` Florian Weimer
2020-07-07 15:08 ` [RFC 02/10] y2038: Convert timespec_* from posix-timer.h to be Y2038 safe Lukasz Majewski
2020-07-07 15:08 ` [RFC 03/10] y2038: Convert __lll_futex* functions to use futex_time64 when available Lukasz Majewski
2020-07-12 13:43   ` Lukasz Majewski
2020-07-13 21:08     ` Joseph Myers
2020-07-14  7:23       ` Lukasz Majewski
2020-07-07 15:08 ` [RFC 04/10] y2038: Replace struct timespec with __timespec64 in futex-internal.h Lukasz Majewski
2020-07-07 15:08 ` [RFC 05/10] y2038: Convert pthread_* functions to support 64 bit time Lukasz Majewski
2020-07-07 15:08 ` [RFC 06/10] y2038: Convert sem_{timed|clock}wait to support 64 bit timeout Lukasz Majewski
2020-07-07 15:08 ` [RFC 07/10] y2038: Convert __lll_clocklock_wait function to support 64 bit time Lukasz Majewski
2020-07-07 15:08 ` [RFC 08/10] y2038: Convert aio_suspend to support 64 bit timeout Lukasz Majewski
2020-07-07 15:08 ` [RFC 09/10] y2038: Convert gai_suspend " Lukasz Majewski
2020-07-07 15:08 ` [RFC 10/10] y2038: x86: Fix __lll_clocklock_elision to support 64 bit time Lukasz Majewski
2020-07-12 13:42 ` [RFC 00/10] y2038: nptl: futex: Provide support for futex_time64 Lukasz Majewski
2020-07-13 17:15 ` Adhemerval Zanella
2020-07-14  7:56   ` Lukasz Majewski
2020-07-14 15:10     ` Adhemerval Zanella
2020-07-15  8:47       ` Lukasz Majewski
2020-07-16 19:02         ` Adhemerval Zanella
2020-07-17  7:27           ` Lukasz Majewski
2020-07-17  8:11             ` Arnd Bergmann
2020-07-17 10:17               ` Lukasz Majewski
2020-07-17 15:04               ` Adhemerval Zanella
2020-07-17 16:41                 ` Lukasz Majewski [this message]
2020-07-17 17:18                 ` Joseph Myers
2020-07-17 14:32             ` Joseph Myers
2020-07-17 15:04             ` Adhemerval Zanella
2020-07-17 16:42               ` Lukasz Majewski

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=20200717184146.060f1b85@jawa \
    --to=lukma@denx.de \
    --cc=adhemerval.zanella@linaro.org \
    --cc=alistair.francis@wdc.com \
    --cc=alistair23@gmail.com \
    --cc=arnd@arndb.de \
    --cc=carlos@redhat.com \
    --cc=eggert@cs.ucla.edu \
    --cc=fweimer@redhat.com \
    --cc=joseph@codesourcery.com \
    --cc=libc-alpha@sourceware.org \
    --cc=schwab@suse.de \
    --cc=stepan@golosunov.pp.ru \
    --cc=zackw@panix.com \
    /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).