mailing list of musl libc
 help / color / mirror / code / Atom feed
* Removing sys/sysmacros.h from sys/types.h
@ 2019-06-14 20:20 Benjamin Wright
  2019-06-14 21:15 ` Rich Felker
  0 siblings, 1 reply; 5+ messages in thread
From: Benjamin Wright @ 2019-06-14 20:20 UTC (permalink / raw)
  To: musl

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

Hello,

Would it be possible to remove the sys/sysmacros.h include from sys/types.h?

This change was added in 2011 -
https://git.musl-libc.org/cgit/musl/commit/include/sys/types.h?id=f552c792c7ce5a560f214e1104d93ee5b0833967

However it appears to have been removed from other standard libc
implementations around ~2015 based on this announcement:
https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html

This can cause issues with user defined symbol collision of the symbols
major, minor or makedev.

Thanks,
Ben

[-- Attachment #2: Type: text/html, Size: 786 bytes --]

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

* Re: Removing sys/sysmacros.h from sys/types.h
  2019-06-14 20:20 Removing sys/sysmacros.h from sys/types.h Benjamin Wright
@ 2019-06-14 21:15 ` Rich Felker
  2019-06-29 21:00   ` Michael Forney
  0 siblings, 1 reply; 5+ messages in thread
From: Rich Felker @ 2019-06-14 21:15 UTC (permalink / raw)
  To: musl

On Fri, Jun 14, 2019 at 01:20:21PM -0700, Benjamin Wright wrote:
> Hello,
> 
> Would it be possible to remove the sys/sysmacros.h include from sys/types.h?
> 
> This change was added in 2011 -
> https://git.musl-libc.org/cgit/musl/commit/include/sys/types.h?id=f552c792c7ce5a560f214e1104d93ee5b0833967
> 
> However it appears to have been removed from other standard libc
> implementations around ~2015 based on this announcement:
> https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html
> 
> This can cause issues with user defined symbol collision of the symbols
> major, minor or makedev.

Yes, I'd actually forgotten we did this. I'll remove it right away in
time for the next release.

Rich


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

* Re: Removing sys/sysmacros.h from sys/types.h
  2019-06-14 21:15 ` Rich Felker
@ 2019-06-29 21:00   ` Michael Forney
  2019-06-29 21:41     ` Rich Felker
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Forney @ 2019-06-29 21:00 UTC (permalink / raw)
  To: musl

On 2019-06-14, Rich Felker <dalias@libc.org> wrote:
> On Fri, Jun 14, 2019 at 01:20:21PM -0700, Benjamin Wright wrote:
>> Hello,
>>
>> Would it be possible to remove the sys/sysmacros.h include from
>> sys/types.h?
>>
>> This change was added in 2011 -
>> https://git.musl-libc.org/cgit/musl/commit/include/sys/types.h?id=f552c792c7ce5a560f214e1104d93ee5b0833967
>>
>> However it appears to have been removed from other standard libc
>> implementations around ~2015 based on this announcement:
>> https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html
>>
>> This can cause issues with user defined symbol collision of the symbols
>> major, minor or makedev.
>
> Yes, I'd actually forgotten we did this. I'll remove it right away in
> time for the next release.

I'm just curious if there is a good way to use these macros in
software that is otherwise portable without adding a configure script.
Most BSDs don't have sys/sysmacros.h, and now glibc and musl require
including sys/sysmacros.h to use them.

It's a shame that while these macros are available on most unix-like
operating systems, they can't be accessed in a generic way.


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

* Re: Removing sys/sysmacros.h from sys/types.h
  2019-06-29 21:00   ` Michael Forney
@ 2019-06-29 21:41     ` Rich Felker
  2019-06-29 22:11       ` Michael Forney
  0 siblings, 1 reply; 5+ messages in thread
From: Rich Felker @ 2019-06-29 21:41 UTC (permalink / raw)
  To: musl

On Sat, Jun 29, 2019 at 02:00:46PM -0700, Michael Forney wrote:
> On 2019-06-14, Rich Felker <dalias@libc.org> wrote:
> > On Fri, Jun 14, 2019 at 01:20:21PM -0700, Benjamin Wright wrote:
> >> Hello,
> >>
> >> Would it be possible to remove the sys/sysmacros.h include from
> >> sys/types.h?
> >>
> >> This change was added in 2011 -
> >> https://git.musl-libc.org/cgit/musl/commit/include/sys/types.h?id=f552c792c7ce5a560f214e1104d93ee5b0833967
> >>
> >> However it appears to have been removed from other standard libc
> >> implementations around ~2015 based on this announcement:
> >> https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html
> >>
> >> This can cause issues with user defined symbol collision of the symbols
> >> major, minor or makedev.
> >
> > Yes, I'd actually forgotten we did this. I'll remove it right away in
> > time for the next release.
> 
> I'm just curious if there is a good way to use these macros in
> software that is otherwise portable without adding a configure script.
> Most BSDs don't have sys/sysmacros.h, and now glibc and musl require
> including sys/sysmacros.h to use them.
> 
> It's a shame that while these macros are available on most unix-like
> operating systems, they can't be accessed in a generic way.

There's really not much of a use for them at all in portable software.
Devices having "major/minor numbers", rather than dev_t just being an
abstract identifier, is an anachronism that's not really compatible
with exploding numbers of device types or operating systems that don't
expose any idea of a type/major.

If you really do need them, you should probably just search for them
with a configure check, first for sys/sysmacros.h, then for any other
historical places they might have been found in.

Rich


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

* Re: Removing sys/sysmacros.h from sys/types.h
  2019-06-29 21:41     ` Rich Felker
@ 2019-06-29 22:11       ` Michael Forney
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Forney @ 2019-06-29 22:11 UTC (permalink / raw)
  To: musl

On 2019-06-29, Rich Felker <dalias@libc.org> wrote:
>> I'm just curious if there is a good way to use these macros in
>> software that is otherwise portable without adding a configure script.
>> Most BSDs don't have sys/sysmacros.h, and now glibc and musl require
>> including sys/sysmacros.h to use them.
>>
>> It's a shame that while these macros are available on most unix-like
>> operating systems, they can't be accessed in a generic way.
>
> There's really not much of a use for them at all in portable software.
> Devices having "major/minor numbers", rather than dev_t just being an
> abstract identifier, is an anachronism that's not really compatible
> with exploding numbers of device types or operating systems that don't
> expose any idea of a type/major.
>
> If you really do need them, you should probably just search for them
> with a configure check, first for sys/sysmacros.h, then for any other
> historical places they might have been found in.

The case I'm interested in is implementing ls(1), which needs a way to
display the dev_t in a human readable way, and tar(1) since the ustar
format stores devmajor and devminor separately.

But anyway, I guess adding a configure script is the only reliable way
to use them. I wonder if any of the BSDs would consider adding
sys/sysmacros.h...

Thanks for your input.


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

end of thread, other threads:[~2019-06-29 22:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-14 20:20 Removing sys/sysmacros.h from sys/types.h Benjamin Wright
2019-06-14 21:15 ` Rich Felker
2019-06-29 21:00   ` Michael Forney
2019-06-29 21:41     ` Rich Felker
2019-06-29 22:11       ` Michael Forney

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

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 NNTP newsgroup(s).