]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix multiple definitions of __nss_*_database (bug 22918)
authorAndreas Schwab <schwab@linux-m68k.org>
Fri, 2 Mar 2018 22:07:14 +0000 (23:07 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Fri, 2 Mar 2018 22:07:14 +0000 (23:07 +0100)
(cherry picked from commit eaf6753f8aac33a36deb98c1031d1bad7b593d2d)

ChangeLog
NEWS
nscd/gai.c
nss/nsswitch.c
nss/nsswitch.h
posix/tst-rfc3484-2.c
posix/tst-rfc3484-3.c
posix/tst-rfc3484.c

index baff9fa4795c7ec2e9b59dd9aa43cab24013b4b5..8585b90d0d1c18621ee39d977a7adafee0799982 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2018-03-03  Andreas Schwab  <schwab@linux-m68k.org>
+
+       [BZ #22918]
+       * nss/nsswitch.h (DEFINE_DATABASE): Don't define __nss_*_database.
+       * nss/nsswitch.c (DEFINE_DATABASE): Define __nss_*_database here.
+       * nscd/gai.c (__nss_hosts_database): Readd definition.
+       * posix/tst-rfc3484.c (__nss_hosts_database): Likewise.
+       * posix/tst-rfc3484-3.c (__nss_hosts_database): Likewise.
+       * posix/tst-rfc3484-2.c (__nss_hosts_database): Likewise.
+
 2018-03-01  DJ Delorie  <dj@delorie.com>
 
        [BZ #22342]
diff --git a/NEWS b/NEWS
index ad425f2c37b19c13a41c298896e422ff8d9a162a..d0dfacd2644815b0a45e571de20ddffd341c857f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -19,6 +19,7 @@ The following bugs are resolved with this release:
   [22807] PTRACE_* constants missing for powerpc
   [22818] posix/tst-glob_lstat_compat failure on alpha
   [22827] RISC-V ELF64 parser mis-reads flag in ldconfig
+  [22918] multiple common of `__nss_shadow_database'
   [22919] sparc32: backtrace yields infinite backtrace with makecontext
   [22926] FTBFS on powerpcspe
 
index d0817477976c0bdf95f9b28ee9f71ebaf14de199..576fd0045b4abf361693efcd400dcee9a30e3237 100644 (file)
@@ -45,3 +45,6 @@
 #ifdef HAVE_LIBIDN
 # include <libidn/idn-stub.c>
 #endif
+
+/* Some variables normally defined in libc.  */
+service_user *__nss_hosts_database attribute_hidden;
index d5e655974f223e2daa18687be6f3378a40dfcdb1..b0f0c11a3e3595c742ff95946b6e7536006e36f3 100644 (file)
@@ -62,7 +62,7 @@ static service_library *nss_new_service (name_database *database,
 
 /* Declare external database variables.  */
 #define DEFINE_DATABASE(name)                                                \
-  extern service_user *__nss_##name##_database attribute_hidden;             \
+  service_user *__nss_##name##_database attribute_hidden;                    \
   weak_extern (__nss_##name##_database)
 #include "databases.def"
 #undef DEFINE_DATABASE
index eccb535ef535f87656c8c3083583b5419a94f317..63573b9ebc830d07105e88de2740101a4056761f 100644 (file)
@@ -226,10 +226,10 @@ libc_hidden_proto (__nss_hostname_digits_dots)
 #define MAX_NR_ADDRS    48
 
 /* Prototypes for __nss_*_lookup2 functions.  */
-#define DEFINE_DATABASE(arg)                               \
-  service_user *__nss_##arg##_database attribute_hidden;    \
-  int __nss_##arg##_lookup2 (service_user **, const char *, \
-                            const char *, void **);        \
+#define DEFINE_DATABASE(arg)                                                 \
+  extern service_user *__nss_##arg##_database attribute_hidden;                      \
+  int __nss_##arg##_lookup2 (service_user **, const char *,                  \
+                            const char *, void **);                          \
   libc_hidden_proto (__nss_##arg##_lookup2)
 #include "databases.def"
 #undef DEFINE_DATABASE
index f509534ca9b99775880ba6fa90f11d6fbe4251b3..8c64ac59ff5777ce3b7e0fb504415a75652808da 100644 (file)
@@ -58,6 +58,7 @@ _res_hconf_init (void)
 #undef USE_NSCD
 #include "../sysdeps/posix/getaddrinfo.c"
 
+service_user *__nss_hosts_database attribute_hidden;
 
 /* This is the beginning of the real test code.  The above defines
    (among other things) the function rfc3484_sort.  */
index ae44087a105eeeb04c51a071b7e7e10278a1d003..1c61aaf84484fba3458b6286dbb28d48f37e380e 100644 (file)
@@ -58,6 +58,7 @@ _res_hconf_init (void)
 #undef USE_NSCD
 #include "../sysdeps/posix/getaddrinfo.c"
 
+service_user *__nss_hosts_database attribute_hidden;
 
 /* This is the beginning of the real test code.  The above defines
    (among other things) the function rfc3484_sort.  */
index 7f191abbbc541dd4a36c840b4ea4d59995221a07..8f45848e44608f8fa94aa96e5ab87fede15d396a 100644 (file)
@@ -58,6 +58,7 @@ _res_hconf_init (void)
 #undef USE_NSCD
 #include "../sysdeps/posix/getaddrinfo.c"
 
+service_user *__nss_hosts_database attribute_hidden;
 
 /* This is the beginning of the real test code.  The above defines
    (among other things) the function rfc3484_sort.  */