blob: fc29efaa918cb76fab92a65890cca1aab3ecf9ba [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Christopher Ferrise0845012014-07-09 14:58:51 -07002/*
3 * Compatibility interface for userspace libc header coordination:
4 *
5 * Define compatibility macros that are used to control the inclusion or
6 * exclusion of UAPI structures and definitions in coordination with another
7 * userspace C library.
8 *
9 * This header is intended to solve the problem of UAPI definitions that
10 * conflict with userspace definitions. If a UAPI header has such conflicting
11 * definitions then the solution is as follows:
12 *
13 * * Synchronize the UAPI header and the libc headers so either one can be
14 * used and such that the ABI is preserved. If this is not possible then
15 * no simple compatibility interface exists (you need to write translating
16 * wrappers and rename things) and you can't use this interface.
17 *
18 * Then follow this process:
19 *
20 * (a) Include libc-compat.h in the UAPI header.
21 * e.g. #include <linux/libc-compat.h>
22 * This include must be as early as possible.
23 *
24 * (b) In libc-compat.h add enough code to detect that the comflicting
25 * userspace libc header has been included first.
26 *
27 * (c) If the userspace libc header has been included first define a set of
28 * guard macros of the form __UAPI_DEF_FOO and set their values to 1, else
29 * set their values to 0.
30 *
31 * (d) Back in the UAPI header with the conflicting definitions, guard the
32 * definitions with:
33 * #if __UAPI_DEF_FOO
34 * ...
35 * #endif
36 *
37 * This fixes the situation where the linux headers are included *after* the
38 * libc headers. To fix the problem with the inclusion in the other order the
39 * userspace libc headers must be fixed like this:
40 *
41 * * For all definitions that conflict with kernel definitions wrap those
42 * defines in the following:
43 * #if !__UAPI_DEF_FOO
44 * ...
45 * #endif
46 *
47 * This prevents the redefinition of a construct already defined by the kernel.
48 */
49#ifndef _UAPI_LIBC_COMPAT_H
50#define _UAPI_LIBC_COMPAT_H
51
52/* We have included glibc headers... */
53#if defined(__GLIBC__)
54
Christopher Ferris59ac31a2016-05-19 12:25:22 -070055/* Coordinate with glibc net/if.h header. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -070056#if defined(_NET_IF_H) && defined(__USE_MISC)
Christopher Ferris59ac31a2016-05-19 12:25:22 -070057
58/* GLIBC headers included first so don't define anything
59 * that would already be defined. */
60
61#define __UAPI_DEF_IF_IFCONF 0
62#define __UAPI_DEF_IF_IFMAP 0
63#define __UAPI_DEF_IF_IFNAMSIZ 0
64#define __UAPI_DEF_IF_IFREQ 0
65/* Everything up to IFF_DYNAMIC, matches net/if.h until glibc 2.23 */
66#define __UAPI_DEF_IF_NET_DEVICE_FLAGS 0
67/* For the future if glibc adds IFF_LOWER_UP, IFF_DORMANT and IFF_ECHO */
68#ifndef __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO
69#define __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO 1
70#endif /* __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO */
71
72#else /* _NET_IF_H */
73
74/* Linux headers included first, and we must define everything
75 * we need. The expectation is that glibc will check the
76 * __UAPI_DEF_* defines and adjust appropriately. */
77
78#define __UAPI_DEF_IF_IFCONF 1
79#define __UAPI_DEF_IF_IFMAP 1
80#define __UAPI_DEF_IF_IFNAMSIZ 1
81#define __UAPI_DEF_IF_IFREQ 1
82/* Everything up to IFF_DYNAMIC, matches net/if.h until glibc 2.23 */
83#define __UAPI_DEF_IF_NET_DEVICE_FLAGS 1
84/* For the future if glibc adds IFF_LOWER_UP, IFF_DORMANT and IFF_ECHO */
85#define __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO 1
86
87#endif /* _NET_IF_H */
88
Christopher Ferrise0845012014-07-09 14:58:51 -070089/* Coordinate with glibc netinet/in.h header. */
90#if defined(_NETINET_IN_H)
91
92/* GLIBC headers included first so don't define anything
93 * that would already be defined. */
Christopher Ferris12e1f282016-02-04 12:35:07 -080094#define __UAPI_DEF_IN_ADDR 0
95#define __UAPI_DEF_IN_IPPROTO 0
96#define __UAPI_DEF_IN_PKTINFO 0
97#define __UAPI_DEF_IP_MREQ 0
98#define __UAPI_DEF_SOCKADDR_IN 0
99#define __UAPI_DEF_IN_CLASS 0
100
Christopher Ferrise0845012014-07-09 14:58:51 -0700101#define __UAPI_DEF_IN6_ADDR 0
102/* The exception is the in6_addr macros which must be defined
103 * if the glibc code didn't define them. This guard matches
104 * the guard in glibc/inet/netinet/in.h which defines the
105 * additional in6_addr macros e.g. s6_addr16, and s6_addr32. */
106#if defined(__USE_MISC) || defined (__USE_GNU)
107#define __UAPI_DEF_IN6_ADDR_ALT 0
108#else
109#define __UAPI_DEF_IN6_ADDR_ALT 1
110#endif
111#define __UAPI_DEF_SOCKADDR_IN6 0
112#define __UAPI_DEF_IPV6_MREQ 0
113#define __UAPI_DEF_IPPROTO_V6 0
Christopher Ferris67b3b9d2015-03-31 11:49:56 -0700114#define __UAPI_DEF_IPV6_OPTIONS 0
Christopher Ferris12e1f282016-02-04 12:35:07 -0800115#define __UAPI_DEF_IN6_PKTINFO 0
116#define __UAPI_DEF_IP6_MTUINFO 0
Christopher Ferrise0845012014-07-09 14:58:51 -0700117
118#else
119
120/* Linux headers included first, and we must define everything
121 * we need. The expectation is that glibc will check the
122 * __UAPI_DEF_* defines and adjust appropriately. */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800123#define __UAPI_DEF_IN_ADDR 1
124#define __UAPI_DEF_IN_IPPROTO 1
125#define __UAPI_DEF_IN_PKTINFO 1
126#define __UAPI_DEF_IP_MREQ 1
127#define __UAPI_DEF_SOCKADDR_IN 1
128#define __UAPI_DEF_IN_CLASS 1
129
Christopher Ferrise0845012014-07-09 14:58:51 -0700130#define __UAPI_DEF_IN6_ADDR 1
131/* We unconditionally define the in6_addr macros and glibc must
132 * coordinate. */
133#define __UAPI_DEF_IN6_ADDR_ALT 1
134#define __UAPI_DEF_SOCKADDR_IN6 1
135#define __UAPI_DEF_IPV6_MREQ 1
136#define __UAPI_DEF_IPPROTO_V6 1
Christopher Ferris67b3b9d2015-03-31 11:49:56 -0700137#define __UAPI_DEF_IPV6_OPTIONS 1
Christopher Ferris12e1f282016-02-04 12:35:07 -0800138#define __UAPI_DEF_IN6_PKTINFO 1
139#define __UAPI_DEF_IP6_MTUINFO 1
Christopher Ferrise0845012014-07-09 14:58:51 -0700140
141#endif /* _NETINET_IN_H */
142
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800143/* Coordinate with glibc netipx/ipx.h header. */
144#if defined(__NETIPX_IPX_H)
145
146#define __UAPI_DEF_SOCKADDR_IPX 0
147#define __UAPI_DEF_IPX_ROUTE_DEFINITION 0
148#define __UAPI_DEF_IPX_INTERFACE_DEFINITION 0
149#define __UAPI_DEF_IPX_CONFIG_DATA 0
150#define __UAPI_DEF_IPX_ROUTE_DEF 0
151
152#else /* defined(__NETIPX_IPX_H) */
153
154#define __UAPI_DEF_SOCKADDR_IPX 1
155#define __UAPI_DEF_IPX_ROUTE_DEFINITION 1
156#define __UAPI_DEF_IPX_INTERFACE_DEFINITION 1
157#define __UAPI_DEF_IPX_CONFIG_DATA 1
158#define __UAPI_DEF_IPX_ROUTE_DEF 1
159
160#endif /* defined(__NETIPX_IPX_H) */
161
Christopher Ferris31475242014-09-02 17:43:51 -0700162/* Definitions for xattr.h */
163#if defined(_SYS_XATTR_H)
164#define __UAPI_DEF_XATTR 0
165#else
166#define __UAPI_DEF_XATTR 1
167#endif
Christopher Ferrise0845012014-07-09 14:58:51 -0700168
169/* If we did not see any headers from any supported C libraries,
170 * or we are being included in the kernel, then define everything
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800171 * that we need. Check for previous __UAPI_* definitions to give
172 * unsupported C libraries a way to opt out of any kernel definition. */
Christopher Ferrise0845012014-07-09 14:58:51 -0700173#else /* !defined(__GLIBC__) */
174
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700175/* Definitions for if.h */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800176#ifndef __UAPI_DEF_IF_IFCONF
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700177#define __UAPI_DEF_IF_IFCONF 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800178#endif
179#ifndef __UAPI_DEF_IF_IFMAP
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700180#define __UAPI_DEF_IF_IFMAP 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800181#endif
182#ifndef __UAPI_DEF_IF_IFNAMSIZ
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700183#define __UAPI_DEF_IF_IFNAMSIZ 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800184#endif
185#ifndef __UAPI_DEF_IF_IFREQ
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700186#define __UAPI_DEF_IF_IFREQ 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800187#endif
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700188/* Everything up to IFF_DYNAMIC, matches net/if.h until glibc 2.23 */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800189#ifndef __UAPI_DEF_IF_NET_DEVICE_FLAGS
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700190#define __UAPI_DEF_IF_NET_DEVICE_FLAGS 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800191#endif
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700192/* For the future if glibc adds IFF_LOWER_UP, IFF_DORMANT and IFF_ECHO */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800193#ifndef __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700194#define __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800195#endif
Christopher Ferris59ac31a2016-05-19 12:25:22 -0700196
Christopher Ferris12e1f282016-02-04 12:35:07 -0800197/* Definitions for in.h */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800198#ifndef __UAPI_DEF_IN_ADDR
Christopher Ferris12e1f282016-02-04 12:35:07 -0800199#define __UAPI_DEF_IN_ADDR 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800200#endif
201#ifndef __UAPI_DEF_IN_IPPROTO
Christopher Ferris12e1f282016-02-04 12:35:07 -0800202#define __UAPI_DEF_IN_IPPROTO 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800203#endif
204#ifndef __UAPI_DEF_IN_PKTINFO
Christopher Ferris12e1f282016-02-04 12:35:07 -0800205#define __UAPI_DEF_IN_PKTINFO 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800206#endif
207#ifndef __UAPI_DEF_IP_MREQ
Christopher Ferris12e1f282016-02-04 12:35:07 -0800208#define __UAPI_DEF_IP_MREQ 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800209#endif
210#ifndef __UAPI_DEF_SOCKADDR_IN
Christopher Ferris12e1f282016-02-04 12:35:07 -0800211#define __UAPI_DEF_SOCKADDR_IN 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800212#endif
213#ifndef __UAPI_DEF_IN_CLASS
Christopher Ferris12e1f282016-02-04 12:35:07 -0800214#define __UAPI_DEF_IN_CLASS 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800215#endif
Christopher Ferris12e1f282016-02-04 12:35:07 -0800216
Christopher Ferrise0845012014-07-09 14:58:51 -0700217/* Definitions for in6.h */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800218#ifndef __UAPI_DEF_IN6_ADDR
Christopher Ferrise0845012014-07-09 14:58:51 -0700219#define __UAPI_DEF_IN6_ADDR 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800220#endif
221#ifndef __UAPI_DEF_IN6_ADDR_ALT
Christopher Ferrise0845012014-07-09 14:58:51 -0700222#define __UAPI_DEF_IN6_ADDR_ALT 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800223#endif
224#ifndef __UAPI_DEF_SOCKADDR_IN6
Christopher Ferrise0845012014-07-09 14:58:51 -0700225#define __UAPI_DEF_SOCKADDR_IN6 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800226#endif
227#ifndef __UAPI_DEF_IPV6_MREQ
Christopher Ferrise0845012014-07-09 14:58:51 -0700228#define __UAPI_DEF_IPV6_MREQ 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800229#endif
230#ifndef __UAPI_DEF_IPPROTO_V6
Christopher Ferrise0845012014-07-09 14:58:51 -0700231#define __UAPI_DEF_IPPROTO_V6 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800232#endif
233#ifndef __UAPI_DEF_IPV6_OPTIONS
Christopher Ferris67b3b9d2015-03-31 11:49:56 -0700234#define __UAPI_DEF_IPV6_OPTIONS 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800235#endif
236#ifndef __UAPI_DEF_IN6_PKTINFO
Christopher Ferris12e1f282016-02-04 12:35:07 -0800237#define __UAPI_DEF_IN6_PKTINFO 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800238#endif
239#ifndef __UAPI_DEF_IP6_MTUINFO
Christopher Ferris12e1f282016-02-04 12:35:07 -0800240#define __UAPI_DEF_IP6_MTUINFO 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800241#endif
Christopher Ferrise0845012014-07-09 14:58:51 -0700242
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800243/* Definitions for ipx.h */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800244#ifndef __UAPI_DEF_SOCKADDR_IPX
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800245#define __UAPI_DEF_SOCKADDR_IPX 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800246#endif
247#ifndef __UAPI_DEF_IPX_ROUTE_DEFINITION
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800248#define __UAPI_DEF_IPX_ROUTE_DEFINITION 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800249#endif
250#ifndef __UAPI_DEF_IPX_INTERFACE_DEFINITION
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800251#define __UAPI_DEF_IPX_INTERFACE_DEFINITION 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800252#endif
253#ifndef __UAPI_DEF_IPX_CONFIG_DATA
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800254#define __UAPI_DEF_IPX_CONFIG_DATA 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800255#endif
256#ifndef __UAPI_DEF_IPX_ROUTE_DEF
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800257#define __UAPI_DEF_IPX_ROUTE_DEF 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800258#endif
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800259
Christopher Ferris31475242014-09-02 17:43:51 -0700260/* Definitions for xattr.h */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800261#ifndef __UAPI_DEF_XATTR
Christopher Ferris31475242014-09-02 17:43:51 -0700262#define __UAPI_DEF_XATTR 1
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800263#endif
Christopher Ferris31475242014-09-02 17:43:51 -0700264
Christopher Ferrise0845012014-07-09 14:58:51 -0700265#endif /* __GLIBC__ */
266
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800267/* Definitions for if_ether.h */
268/* allow libcs like musl to deactivate this, glibc does not implement this. */
269#ifndef __UAPI_DEF_ETHHDR
270#define __UAPI_DEF_ETHHDR 1
271#endif
272
Christopher Ferrise0845012014-07-09 14:58:51 -0700273#endif /* _UAPI_LIBC_COMPAT_H */