unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] alpha: force old OSF1 syscalls for getegid, geteuid and getppid [BZ #24986]
@ 2019-09-10 10:53 Aurelien Jarno
  2019-09-10 11:20 ` Florian Weimer
  0 siblings, 1 reply; 5+ messages in thread
From: Aurelien Jarno @ 2019-09-10 10:53 UTC (permalink / raw)
  To: libc-alpha; +Cc: Richard Henderson, Aurelien Jarno

On alpha, Linux kernel 5.1 added the standard getegid, geteuid and
getppid syscalls (commit ecf7e0a4ad15287). Up to now alpha was using
the corresponding OSF1 syscalls through:
 - sysdeps/unix/alpha/getegid.S
 - sysdeps/unix/alpha/geteuid.S
 - sysdeps/unix/alpha/getppid.S

When building against kernel headers >= 5.1, the glibc now use the new
syscalls through sysdeps/unix/sysv/linux/syscalls.list. When it is then
used with an older kernel, the corresponding 3 functions fail.

A quick fix is to move the OSF1 wrappers under the
sysdeps/unix/sysv/linux/alpha directory so they override the standard
linux ones. A better fix would be to try the new syscalls and fallback
to the old OSF1 in case the new ones fail. This can be implemented in
a later commit.

Changelog:
	[BZ #24986]
        * sysdeps/unix/alpha/getegid.S: Move to ...
	* sysdeps/unix/sysv/linux/alpha/getegid.S: ... here.
        * sysdeps/unix/alpha/geteuid.S: Move to ...
	* sysdeps/unix/sysv/linux/alpha/geteuid.S: ... here.
        * sysdeps/unix/alpha/getppid.S: Move to ...
	* sysdeps/unix/sysv/linux/alpha/getppid.S: ... here
---
 ChangeLog                                     | 10 ++++++++++
 sysdeps/unix/{ => sysv/linux}/alpha/getegid.S |  0
 sysdeps/unix/{ => sysv/linux}/alpha/geteuid.S |  0
 sysdeps/unix/{ => sysv/linux}/alpha/getppid.S |  0
 4 files changed, 10 insertions(+)
 rename sysdeps/unix/{ => sysv/linux}/alpha/getegid.S (100%)
 rename sysdeps/unix/{ => sysv/linux}/alpha/geteuid.S (100%)
 rename sysdeps/unix/{ => sysv/linux}/alpha/getppid.S (100%)

diff --git a/ChangeLog b/ChangeLog
index 00658e68350..4950b4e2125 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2019-09-10  Aurelien Jarno  <aurelien@aurel32.net>
+
+	[BZ #24986]
+        * sysdeps/unix/alpha/getegid.S: Move to ...
+	* sysdeps/unix/sysv/linux/alpha/getegid.S: ... here.
+        * sysdeps/unix/alpha/geteuid.S: Move to ...
+	* sysdeps/unix/sysv/linux/alpha/geteuid.S: ... here.
+        * sysdeps/unix/alpha/getppid.S: Move to ...
+	* sysdeps/unix/sysv/linux/alpha/getppid.S: ... here
+
 2019-09-09  Paul Eggert  <eggert@cs.ucla.edu>
 
 	Fix http: URL in 'configure'
diff --git a/sysdeps/unix/alpha/getegid.S b/sysdeps/unix/sysv/linux/alpha/getegid.S
similarity index 100%
rename from sysdeps/unix/alpha/getegid.S
rename to sysdeps/unix/sysv/linux/alpha/getegid.S
diff --git a/sysdeps/unix/alpha/geteuid.S b/sysdeps/unix/sysv/linux/alpha/geteuid.S
similarity index 100%
rename from sysdeps/unix/alpha/geteuid.S
rename to sysdeps/unix/sysv/linux/alpha/geteuid.S
diff --git a/sysdeps/unix/alpha/getppid.S b/sysdeps/unix/sysv/linux/alpha/getppid.S
similarity index 100%
rename from sysdeps/unix/alpha/getppid.S
rename to sysdeps/unix/sysv/linux/alpha/getppid.S
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] alpha: force old OSF1 syscalls for getegid, geteuid and getppid [BZ #24986]
  2019-09-10 10:53 [PATCH] alpha: force old OSF1 syscalls for getegid, geteuid and getppid [BZ #24986] Aurelien Jarno
@ 2019-09-10 11:20 ` Florian Weimer
  2019-09-10 14:58   ` Aurelien Jarno
  0 siblings, 1 reply; 5+ messages in thread
From: Florian Weimer @ 2019-09-10 11:20 UTC (permalink / raw)
  To: Aurelien Jarno; +Cc: libc-alpha, Richard Henderson

* Aurelien Jarno:

> Changelog:
> 	[BZ #24986]
>         * sysdeps/unix/alpha/getegid.S: Move to ...
> 	* sysdeps/unix/sysv/linux/alpha/getegid.S: ... here.
>         * sysdeps/unix/alpha/geteuid.S: Move to ...
> 	* sysdeps/unix/sysv/linux/alpha/geteuid.S: ... here.
>         * sysdeps/unix/alpha/getppid.S: Move to ...
> 	* sysdeps/unix/sysv/linux/alpha/getppid.S: ... here

Looks reasonable to me.

Thanks,
Florian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] alpha: force old OSF1 syscalls for getegid, geteuid and getppid [BZ #24986]
  2019-09-10 11:20 ` Florian Weimer
@ 2019-09-10 14:58   ` Aurelien Jarno
  2019-09-10 15:44     ` Zack Weinberg
  0 siblings, 1 reply; 5+ messages in thread
From: Aurelien Jarno @ 2019-09-10 14:58 UTC (permalink / raw)
  To: Florian Weimer; +Cc: libc-alpha, Richard Henderson

On 2019-09-10 13:20, Florian Weimer wrote:
> * Aurelien Jarno:
> 
> > Changelog:
> > 	[BZ #24986]
> >         * sysdeps/unix/alpha/getegid.S: Move to ...
> > 	* sysdeps/unix/sysv/linux/alpha/getegid.S: ... here.
> >         * sysdeps/unix/alpha/geteuid.S: Move to ...
> > 	* sysdeps/unix/sysv/linux/alpha/geteuid.S: ... here.
> >         * sysdeps/unix/alpha/getppid.S: Move to ...
> > 	* sysdeps/unix/sysv/linux/alpha/getppid.S: ... here
> 
> Looks reasonable to me.
> 

The other alternative instead of moving the files is to add those files
with a simple #include <sysdeps/unix/alpha/getXXXX.S>. It's the strategy
chosen for pipe.S for example.

-- 
Aurelien Jarno                          GPG: 4096R/1DDD8C9B
aurelien@aurel32.net                 http://www.aurel32.net

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] alpha: force old OSF1 syscalls for getegid, geteuid and getppid [BZ #24986]
  2019-09-10 14:58   ` Aurelien Jarno
@ 2019-09-10 15:44     ` Zack Weinberg
  2019-09-14 16:26       ` Aurelien Jarno
  0 siblings, 1 reply; 5+ messages in thread
From: Zack Weinberg @ 2019-09-10 15:44 UTC (permalink / raw)
  To: Aurelien Jarno; +Cc: Florian Weimer, GNU C Library, Richard Henderson

On Tue, Sep 10, 2019 at 10:58 AM Aurelien Jarno <aurelien@aurel32.net> wrote:
> On 2019-09-10 13:20, Florian Weimer wrote:
> > * Aurelien Jarno:
> >
> > > Changelog:
> > >     [BZ #24986]
> > >         * sysdeps/unix/alpha/getegid.S: Move to ...
> > >     * sysdeps/unix/sysv/linux/alpha/getegid.S: ... here.
> > >         * sysdeps/unix/alpha/geteuid.S: Move to ...
> > >     * sysdeps/unix/sysv/linux/alpha/geteuid.S: ... here.
> > >         * sysdeps/unix/alpha/getppid.S: Move to ...
> > >     * sysdeps/unix/sysv/linux/alpha/getppid.S: ... here
> >
> > Looks reasonable to me.
>
> The other alternative instead of moving the files is to add those files
> with a simple #include <sysdeps/unix/alpha/getXXXX.S>. It's the strategy
> chosen for pipe.S for example.

What are the odds that a hypothetical future port to Alpha with a
non-Linux kernel would want to use these files, though?  If they're
not likely to be wanted, moving the files is simpler.

zw

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] alpha: force old OSF1 syscalls for getegid, geteuid and getppid [BZ #24986]
  2019-09-10 15:44     ` Zack Weinberg
@ 2019-09-14 16:26       ` Aurelien Jarno
  0 siblings, 0 replies; 5+ messages in thread
From: Aurelien Jarno @ 2019-09-14 16:26 UTC (permalink / raw)
  To: Zack Weinberg; +Cc: Florian Weimer, GNU C Library, Richard Henderson

On 2019-09-10 11:44, Zack Weinberg wrote:
> On Tue, Sep 10, 2019 at 10:58 AM Aurelien Jarno <aurelien@aurel32.net> wrote:
> > On 2019-09-10 13:20, Florian Weimer wrote:
> > > * Aurelien Jarno:
> > >
> > > > Changelog:
> > > >     [BZ #24986]
> > > >         * sysdeps/unix/alpha/getegid.S: Move to ...
> > > >     * sysdeps/unix/sysv/linux/alpha/getegid.S: ... here.
> > > >         * sysdeps/unix/alpha/geteuid.S: Move to ...
> > > >     * sysdeps/unix/sysv/linux/alpha/geteuid.S: ... here.
> > > >         * sysdeps/unix/alpha/getppid.S: Move to ...
> > > >     * sysdeps/unix/sysv/linux/alpha/getppid.S: ... here
> > >
> > > Looks reasonable to me.
> >
> > The other alternative instead of moving the files is to add those files
> > with a simple #include <sysdeps/unix/alpha/getXXXX.S>. It's the strategy
> > chosen for pipe.S for example.
> 
> What are the odds that a hypothetical future port to Alpha with a
> non-Linux kernel would want to use these files, though?  If they're
> not likely to be wanted, moving the files is simpler.

There is already little interest for the Linux kernel port, so I really
doubt a non-Linux kernel port will happen. I have therefore committed
the patch.
 
-- 
Aurelien Jarno                          GPG: 4096R/1DDD8C9B
aurelien@aurel32.net                 http://www.aurel32.net

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-09-14 16:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-10 10:53 [PATCH] alpha: force old OSF1 syscalls for getegid, geteuid and getppid [BZ #24986] Aurelien Jarno
2019-09-10 11:20 ` Florian Weimer
2019-09-10 14:58   ` Aurelien Jarno
2019-09-10 15:44     ` Zack Weinberg
2019-09-14 16:26       ` Aurelien Jarno

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).