[RFC] linux/time.h vs. sys/time.h mess (was [PATCH 1/2] [media] remove include/linux/dvb/dmx.h)

From: Laurent Pinchart
Date: Fri Oct 19 2012 - 08:19:29 EST


Hi Mauro,

(CC'ing LKML)

On Friday 19 October 2012 08:21:16 Mauro Carvalho Chehab wrote:
> Em Fri, 19 Oct 2012 07:43:11 -0300
>
> Mauro Carvalho Chehab <mchehab@xxxxxxxxxx> escreveu:
> > -#include <linux/time.h>
> > -#include <uapi/linux/dvb/dmx.h>
> > -
> > -#endif /*_DVBDMX_H_*/
>
> Just to not discard a valid comment on IRC, Laurent proposed that we
> should investigate if we can, instead, move:
>
> #include <linux/time.h>
>
> to both dmx.h and videodev2.h, letting it to be included by both userspace
> and Kernelspace.
>
> I remember this used to cause compilation breakage in the past, as some
> userspace programs need to include <sys/time.h> and this used to conflict
> with <linux/time.h>.
>
> I'm not sure if this got fixed there. if so, Laurent has a point.

It's still not solved, but that's what the proper fix should be.

Several UAPI headers use struct timeval or struct timespec. Kernel code and
user space code thus need to include the header(s) that define those
structures, either directly or indirectly.

In kernel space struct timeval and struct timespec are defined in
include/uapi/linux/time.h. In user space they're defined in <sys/time.h>. No
proper conditional compilation exists in those headers to guard against
multiple definitions, so they can't be included together.

On the kernel side <sys/time.h> isn't available, so we can include
<linux/time.h> in the headers that use the timeval and timespec structures.
This "self-contained" headers mechanism avoids forcing all users of those
headers to explicitly include <linux/time.h>.

However, this then breaks user space applications that include both
<sys/time.h> and a kernel header that includes <linux/time.h>. The way we've
dealt with that until now is by including either <linux/time.h> or
<sys/time.h> depending on __KERNEL__

#ifdef __KERNEL__
#include <linux/time.h>
#else
#include <sys/kernel.h>
#endif

in our user-facing headers. The recent UAPI disintegration patches resulted in
nearly empty headers in include/linux/ that just #include both <linux/time.h>
and the corresponding UAPI header. For instance include/linux/videodev2.h is
now just

#ifndef __LINUX_VIDEODEV2_H
#define __LINUX_VIDEODEV2_H

#include <linux/time.h> /* need struct timeval */
#include <uapi/linux/videodev2.h>

#endif /* __LINUX_VIDEODEV2_H */

Patches have been posted to remove those headers and push the #include
<linux/time.h> one level up, which breaks the "self-contained" headers
concept.

How could we fix this ? Are there legitimate users of <linux/time.h> in user
space ? A quick grep in glibc doesn't reveal anything.

--
Regards,

Laurent Pinchart

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/