From: GNU Libc Maintainers Date: Sat, 2 Dec 2017 10:07:17 +0000 (+0000) Subject: local-nss-upgrade X-Git-Tag: archive/raspbian/2.25-3+rpi1^2~26 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cafe368c99da01398c98accee08eeaa6324e474f;p=glibc.git local-nss-upgrade # DP: This patch makes future upgrades easier. It resolves problems with # DP: running daemons having NSS modules upgraded out from under them. Gbp-Pq: Topic any Gbp-Pq: Name local-nss-upgrade.diff --- diff --git a/nss/nsswitch.c b/nss/nsswitch.c index 0a65f6ad0..ae1d20d18 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -358,9 +358,20 @@ nss_load_library (service_user *ni) ni->library->lib_handle = __libc_dlopen (shlib_name); if (ni->library->lib_handle == NULL) { - /* Failed to load the library. */ - ni->library->lib_handle = (void *) -1l; - __set_errno (saved_errno); + /* Failed to load the library. Try a fallback. */ + int n = __snprintf(shlib_name, shlen, "libnss_%s.so.%d.%d", + ni->library->name, __GLIBC__, __GLIBC_MINOR__); + if (n >= shlen) + ni->library->lib_handle = NULL; + else + ni->library->lib_handle = __libc_dlopen (shlib_name); + + if (ni->library->lib_handle == NULL) + { + /* Ok, really fail now. */ + ni->library->lib_handle = (void *) -1l; + __set_errno (saved_errno); + } } # ifdef USE_NSCD else if (is_nscd)