270-uapi-libc-compat-add-fallback-for-unsupported-libcs.patch 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. From c6bdd0d302119819de72439972d0462c26ef9eda Mon Sep 17 00:00:00 2001
  2. From: Felix Janda <felix.janda@posteo.de>
  3. Date: Sun, 12 Nov 2017 13:30:17 -0500
  4. Subject: uapi libc compat: add fallback for unsupported libcs
  5. libc-compat.h aims to prevent symbol collisions between uapi and libc
  6. headers for each supported libc. This requires continuous coordination
  7. between them.
  8. The goal of this commit is to improve the situation for libcs (such as
  9. musl) which are not yet supported and/or do not wish to be explicitly
  10. supported, while not affecting supported libcs. More precisely, with
  11. this commit, unsupported libcs can request the suppression of any
  12. specific uapi definition by defining the correspondings _UAPI_DEF_*
  13. macro as 0. This can fix symbol collisions for them, as long as the
  14. libc headers are included before the uapi headers. Inclusion in the
  15. other order is outside the scope of this commit.
  16. All infrastructure in order to enable this fallback for unsupported
  17. libcs is already in place, except that libc-compat.h unconditionally
  18. defines all _UAPI_DEF_* macros to 1 for all unsupported libcs so that
  19. any previous definitions are ignored. In order to fix this, this commit
  20. merely makes these definitions conditional.
  21. This commit together with the musl libc commit
  22. http://git.musl-libc.org/cgit/musl/commit/?id=04983f2272382af92eb8f8838964ff944fbb8258
  23. fixes for example the following compiler errors when <linux/in6.h> is
  24. included after musl's <netinet/in.h>:
  25. ./linux/in6.h:32:8: error: redefinition of 'struct in6_addr'
  26. ./linux/in6.h:49:8: error: redefinition of 'struct sockaddr_in6'
  27. ./linux/in6.h:59:8: error: redefinition of 'struct ipv6_mreq'
  28. The comments referencing glibc are still correct, but this file is not
  29. only used for glibc any more.
  30. Signed-off-by: Felix Janda <felix.janda@posteo.de>
  31. Reviewed-by: Hauke Mehrtens <hauke@hauke-m.de>
  32. ---
  33. include/uapi/linux/libc-compat.h | 55 +++++++++++++++++++++++++++++++++++++++-
  34. 1 file changed, 54 insertions(+), 1 deletion(-)
  35. --- a/include/uapi/linux/libc-compat.h
  36. +++ b/include/uapi/linux/libc-compat.h
  37. @@ -110,27 +110,54 @@
  38. /* If we did not see any headers from any supported C libraries,
  39. * or we are being included in the kernel, then define everything
  40. - * that we need. */
  41. + * that we need. Check for previous __UAPI_* definitions to give
  42. + * unsupported C libraries a way to opt out of any kernel definition. */
  43. #else /* !defined(__GLIBC__) */
  44. /* Definitions for in.h */
  45. +#ifndef __UAPI_DEF_IN_ADDR
  46. #define __UAPI_DEF_IN_ADDR 1
  47. +#endif
  48. +#ifndef __UAPI_DEF_IN_IPPROTO
  49. #define __UAPI_DEF_IN_IPPROTO 1
  50. +#endif
  51. +#ifndef __UAPI_DEF_IN_PKTINFO
  52. #define __UAPI_DEF_IN_PKTINFO 1
  53. +#endif
  54. +#ifndef __UAPI_DEF_IP_MREQ
  55. #define __UAPI_DEF_IP_MREQ 1
  56. +#endif
  57. +#ifndef __UAPI_DEF_SOCKADDR_IN
  58. #define __UAPI_DEF_SOCKADDR_IN 1
  59. +#endif
  60. +#ifndef __UAPI_DEF_IN_CLASS
  61. #define __UAPI_DEF_IN_CLASS 1
  62. +#endif
  63. /* Definitions for in6.h */
  64. +#ifndef __UAPI_DEF_IN6_ADDR
  65. #define __UAPI_DEF_IN6_ADDR 1
  66. +#endif
  67. +#ifndef __UAPI_DEF_IN6_ADDR_ALT
  68. #define __UAPI_DEF_IN6_ADDR_ALT 1
  69. +#endif
  70. +#ifndef __UAPI_DEF_SOCKADDR_IN6
  71. #define __UAPI_DEF_SOCKADDR_IN6 1
  72. +#endif
  73. +#ifndef __UAPI_DEF_IPV6_MREQ
  74. #define __UAPI_DEF_IPV6_MREQ 1
  75. +#endif
  76. +#ifndef __UAPI_DEF_IPPROTO_V6
  77. #define __UAPI_DEF_IPPROTO_V6 1
  78. +#endif
  79. +#ifndef __UAPI_DEF_IPV6_OPTIONS
  80. #define __UAPI_DEF_IPV6_OPTIONS 1
  81. +#endif
  82. /* Definitions for xattr.h */
  83. +#ifndef __UAPI_DEF_XATTR
  84. #define __UAPI_DEF_XATTR 1
  85. +#endif
  86. #endif /* __GLIBC__ */