mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@libc.org>
To: "Rafael Ávila de Espíndola" <rafael@espindo.la>
Cc: musl@lists.openwall.com
Subject: Re: [musl] ioctl signature
Date: Fri, 24 May 2024 13:10:18 -0400	[thread overview]
Message-ID: <20240524171018.GE10433@brightrain.aerifal.cx> (raw)
In-Reply-To: <87v833cfb4.fsf@espindo.la>

On Fri, May 24, 2024 at 05:03:59PM +0000, Rafael Ávila de Espíndola wrote:
> The signature of ioctl in musl is
> 
> int ioctl (int, int, ...);
> 
> In glibc it is
> 
> int ioctl(int fd, unsigned long request, ...);
> 
> The requests are always 32 bits, and the most significant bit is used to
> indicated that this ioctl is a read operation. This means that some
> constants are negative numbers if using an int. I have noticed this
> because rust's interface to libc matches the system libc implementation,
> and in alpine I got an error for a literal out of range for
> 0xc0104801. I don't know if a C compiler would produce a warning, but
> that seems somewhat reasonable.
> 
> Should the declaration be changed to use an unsigned request?:
> 
> int ioctl (int, unsigned int, ...);

The declaration matches the POSIX definition of the ioctl interface,
which is obsolete but the relevant historical standard. From a C
standpoint it doesn't really matter whether the argument is signed or
unsigned since either way the value round-trips right.

I think we explored trying to make the constants come out as signed to
match the interface, but there were reasons that didn't work well
either.

Rich

      reply	other threads:[~2024-05-24 17:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-24 17:03 Rafael Ávila de Espíndola
2024-05-24 17:10 ` Rich Felker [this message]

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=20240524171018.GE10433@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --cc=musl@lists.openwall.com \
    --cc=rafael@espindo.la \
    /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.
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).