All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Julien Béraud" <julien.beraud@spectracom.orolia.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/1] apr: fix size of pid_t
Date: Wed, 22 Mar 2017 10:51:53 +0000	[thread overview]
Message-ID: <DB5PR06MB1352CB001DB18176BAB30DFBB43C0@DB5PR06MB1352.eurprd06.prod.outlook.com> (raw)
In-Reply-To: <20170321230453.6165e76d@free-electrons.com>

Thanks Thomas,

>Hello,
>
>On Tue, 21 Mar 2017 14:23:56 +0100, Julien Beraud wrote:
>> pid_t is a signed 32bits integer on both 32bits and 64bits 
>> architectures.
>> This fixes an issue with apache server which causes bad pid to be 
>> written in PidFile
>> 
>> Signed-off-by: Julien Beraud <julien.beraud@spectracom.orolia.com>
>> ---
>>  package/apr/apr.mk | 1 +
>>  1 file changed, 1 insertion(+)
>
>I've applied to our master branch, thanks! Peter, I believe this is a good candidate for the LTS branch.
>
>However, a few comments:
>
> * It is strange that their configure script does:
>
>   APR_CHECK_SIZEOF_EXTENDED([#include <sys/types.h>], pid_t, 8)
>
>   which means "assume size is 8 bytes" if cross-compiling when pid_t
>   is always 4 bytes.
>
> * There are other sizeof that are probably bogus:
>
>   APR_CHECK_SIZEOF_EXTENDED([#include <sys/types.h>], ssize_t, 8)
>   APR_CHECK_SIZEOF_EXTENDED([#include <stddef.h>], size_t, 8)
>   APR_CHECK_SIZEOF_EXTENDED([#include <sys/types.h>], off_t, 8)
>
>   Indeed on 32 bit systems, ssize_t, size_t are 4 bytes. off_t is an
>   even more complicated beast: it's 8 bytes on 64 bits platform, but
>   on 32 bits platform, it depends if large file support is enabled or
>   not.
>
>See (executed on x86-64) :
>
>$ cat toto.c
>#include <unistd.h>
>#include <sys/types.h>
>#include <stdio.h>
>
>int main(void)
>{
>	printf("pid_t = %ld\n", sizeof(pid_t));
>	printf("size_t = %ld\n", sizeof(size_t));
>	printf("ssize_t = %ld\n", sizeof(ssize_t));
>	printf("off_t = %ld\n", sizeof(off_t));
>	return 0;
>}
>$ gcc -o toto toto.c
>$ ./toto
>pid_t = 4
>size_t = 8
>ssize_t = 8
>off_t = 8
>$ gcc -m32 -o toto toto.c
>$ ./toto
>pid_t = 4
>size_t = 4
>ssize_t = 4
>off_t = 4
>$ gcc -m32 -D_FILE_OFFSET_BITS=64 -o toto toto.c $ ./toto pid_t = 4 size_t = 4 ssize_t = 4 off_t = 8
>
>I really wonder why they are not using the regular AC_CHECK_SIZEOF() for those types.
>
>So I believe there's more stuff to fix in there.

The pid_t type was causing a very easy to notice issue, but the other types sizes being wrong could as
well be causing some issues.
I will take a look at the other types sizes and add them in order to avoid any possible issue. I will also
take a look at proposing patches to apr for those.

Regards,
Julien

  reply	other threads:[~2017-03-22 10:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-21 13:23 [Buildroot] [PATCH 1/1] apr: fix size of pid_t Julien Beraud
2017-03-21 22:04 ` Thomas Petazzoni
2017-03-22 10:51   ` Julien Béraud [this message]
2017-03-30 22:32   ` Peter Korsgaard

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=DB5PR06MB1352CB001DB18176BAB30DFBB43C0@DB5PR06MB1352.eurprd06.prod.outlook.com \
    --to=julien.beraud@spectracom.orolia.com \
    --cc=buildroot@busybox.net \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.