X-Git-Url: http://andersk.mit.edu/gitweb/nss_nonlocal.git/blobdiff_plain/f4061d470dcb3543e35a447e4613ac890eb05f36..4893970472bd815b8dbb6f6058dd26358700110e:/nonlocal-passwd.c diff --git a/nonlocal-passwd.c b/nonlocal-passwd.c index bd9d9ad..f8e7f96 100644 --- a/nonlocal-passwd.c +++ b/nonlocal-passwd.c @@ -25,18 +25,19 @@ #define _GNU_SOURCE + #include -#include -#include -#include -#include #include -#include -#include #include -#include -#include #include +#include +#include +#include +#include +#include +#include +#include + #include "nsswitch-internal.h" #include "nonlocal.h" @@ -49,75 +50,49 @@ _nss_nonlocal_getpwnam_r(const char *name, struct passwd *pwd, char *buffer, size_t buflen, int *errnop); -static service_user * -nss_passwd_nonlocal_database(void) +static service_user *__nss_passwd_nonlocal_database; + +static int +internal_function +__nss_passwd_nonlocal_lookup(service_user **ni, const char *fct_name, + void **fctp) { - static service_user *nip = NULL; - if (nip == NULL) - __nss_database_lookup("passwd_nonlocal", NULL, "", &nip); + if (__nss_passwd_nonlocal_database == NULL + && __nss_database_lookup("passwd_nonlocal", NULL, NULL, + &__nss_passwd_nonlocal_database) < 0) + return -1; + + *ni = __nss_passwd_nonlocal_database; - return nip; + *fctp = __nss_lookup_function(*ni, fct_name); + return 0; } enum nss_status check_nonlocal_uid(const char *user, uid_t uid, int *errnop) { - static const char *fct_name = "getpwuid_r"; - static service_user *startp = NULL; - static void *fct_start = NULL; enum nss_status status; - service_user *nip; - union { - enum nss_status (*l)(uid_t uid, struct passwd *pwd, - char *buffer, size_t buflen, int *errnop); - void *ptr; - } fct; struct passwd pwbuf; - int old_errno = errno; - + char *buf; size_t buflen = sysconf(_SC_GETPW_R_SIZE_MAX); - char *buf = malloc(buflen); - errno = old_errno; - if (buf == NULL) { - *errnop = ENOMEM; - return NSS_STATUS_TRYAGAIN; - } - - if (fct_start == NULL && - __nss_passwd_lookup(&startp, fct_name, &fct_start) != 0) { - free(buf); - return NSS_STATUS_UNAVAIL; - } - nip = startp; - fct.ptr = fct_start; - do { - morebuf: - if (fct.l == _nss_nonlocal_getpwuid_r) - status = NSS_STATUS_NOTFOUND; - else - status = DL_CALL_FCT(fct.l, (uid, &pwbuf, buf, buflen, errnop)); - if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE) { - free(buf); - buflen *= 2; - buf = malloc(buflen); - errno = old_errno; - if (buf == NULL) { - *errnop = ENOMEM; - return NSS_STATUS_TRYAGAIN; - } - goto morebuf; - } - } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0); + const struct walk_nss w = { + .lookup = &__nss_passwd_lookup, .fct_name = "getpwuid_r", + .status = &status, .errnop = errnop, .buf = &buf, .buflen = &buflen + }; + const __typeof__(&_nss_nonlocal_getpwuid_r) self = &_nss_nonlocal_getpwuid_r; +#define args (uid, &pwbuf, buf, buflen, errnop) +#include "walk_nss.h" +#undef args if (status == NSS_STATUS_SUCCESS) { syslog(LOG_ERR, "nss_nonlocal: possible spoofing attack: non-local user %s has same UID as local user %s!\n", user, pwbuf.pw_name); + free(buf); status = NSS_STATUS_NOTFOUND; } else if (status != NSS_STATUS_TRYAGAIN) { status = NSS_STATUS_SUCCESS; } - free(buf); return status; } @@ -146,64 +121,49 @@ check_nonlocal_passwd(const char *user, struct passwd *pwd, int *errnop) enum nss_status check_nonlocal_user(const char *user, int *errnop) { - static const char *fct_name = "getpwnam_r"; - static service_user *startp = NULL; - static void *fct_start = NULL; enum nss_status status; - service_user *nip; - union { - enum nss_status (*l)(const char *name, struct passwd *pwd, - char *buffer, size_t buflen, int *errnop); - void *ptr; - } fct; struct passwd pwbuf; - int old_errno = errno; - + char *buf; size_t buflen = sysconf(_SC_GETPW_R_SIZE_MAX); - char *buf = malloc(buflen); - errno = old_errno; - if (buf == NULL) { - *errnop = ENOMEM; - return NSS_STATUS_TRYAGAIN; - } + const struct walk_nss w = { + .lookup = __nss_passwd_lookup, .fct_name = "getpwnam_r", + .status = &status, .errnop = errnop, .buf = &buf, .buflen = &buflen + }; + const __typeof__(&_nss_nonlocal_getpwnam_r) self = &_nss_nonlocal_getpwnam_r; +#define args (user, &pwbuf, buf, buflen, errnop) +#include "walk_nss.h" +#undef args - if (fct_start == NULL && - __nss_passwd_lookup(&startp, fct_name, &fct_start) != 0) { + if (status == NSS_STATUS_SUCCESS) { free(buf); - return NSS_STATUS_UNAVAIL; - } - nip = startp; - fct.ptr = fct_start; - do { - morebuf: - if (fct.l == _nss_nonlocal_getpwnam_r) - status = NSS_STATUS_NOTFOUND; - else - status = DL_CALL_FCT(fct.l, (user, &pwbuf, buf, buflen, errnop)); - if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE) { - free(buf); - buflen *= 2; - buf = malloc(buflen); - errno = old_errno; - if (buf == NULL) { - *errnop = ENOMEM; - return NSS_STATUS_TRYAGAIN; - } - goto morebuf; - } - } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0); - - if (status == NSS_STATUS_SUCCESS) status = NSS_STATUS_NOTFOUND; - else if (status != NSS_STATUS_TRYAGAIN) + } else if (status != NSS_STATUS_TRYAGAIN) { status = NSS_STATUS_SUCCESS; + } + + return status; +} - free(buf); +enum nss_status +get_nonlocal_passwd(const char *name, struct passwd *pwd, char **buffer, + int *errnop) +{ + enum nss_status status; + size_t buflen = sysconf(_SC_GETPW_R_SIZE_MAX); + const struct walk_nss w = { + .lookup = __nss_passwd_nonlocal_lookup, .fct_name = "getpwnam_r", + .status = &status, .errnop = errnop, .buf = buffer, .buflen = &buflen + }; + const __typeof__(&_nss_nonlocal_getpwnam_r) self = NULL; +#define args (name, pwd, *buffer, buflen, errnop) +#include "walk_nss.h" +#undef args return status; } -static service_user *pwent_nip = NULL; +static bool pwent_initialized = false; +static service_user *pwent_startp, *pwent_nip; static void *pwent_fct_start; static union { enum nss_status (*l)(struct passwd *pwd, char *buffer, size_t buflen, @@ -215,33 +175,25 @@ static const char *pwent_fct_name = "getpwent_r"; enum nss_status _nss_nonlocal_setpwent(int stayopen) { - static const char *fct_name = "setpwent"; - static void *fct_start = NULL; enum nss_status status; - service_user *nip; - union { - enum nss_status (*l)(int stayopen); - void *ptr; - } fct; - - nip = nss_passwd_nonlocal_database(); - if (nip == NULL) - return NSS_STATUS_UNAVAIL; - if (fct_start == NULL) - fct_start = __nss_lookup_function(nip, fct_name); - fct.ptr = fct_start; - do { - if (fct.ptr == NULL) - status = NSS_STATUS_UNAVAIL; - else - status = DL_CALL_FCT(fct.l, (stayopen)); - } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0); + const struct walk_nss w = { + .lookup = &__nss_passwd_nonlocal_lookup, .fct_name = "setpwent", + .status = &status + }; + const __typeof__(&_nss_nonlocal_setpwent) self = NULL; +#define args (stayopen) +#include "walk_nss.h" +#undef args if (status != NSS_STATUS_SUCCESS) return status; - pwent_nip = nip; - if (pwent_fct_start == NULL) - pwent_fct_start = __nss_lookup_function(nip, pwent_fct_name); + if (!pwent_initialized) { + __nss_passwd_nonlocal_lookup(&pwent_startp, pwent_fct_name, + &pwent_fct_start); + __sync_synchronize(); + pwent_initialized = true; + } + pwent_nip = pwent_startp; pwent_fct.ptr = pwent_fct_start; return NSS_STATUS_SUCCESS; } @@ -249,29 +201,18 @@ _nss_nonlocal_setpwent(int stayopen) enum nss_status _nss_nonlocal_endpwent(void) { - static const char *fct_name = "endpwent"; - static void *fct_start = NULL; enum nss_status status; - service_user *nip; - union { - enum nss_status (*l)(void); - void *ptr; - } fct; + const struct walk_nss w = { + .lookup = &__nss_passwd_nonlocal_lookup, .fct_name = "endpwent", + .status = &status + }; + const __typeof__(&_nss_nonlocal_endpwent) self = NULL; pwent_nip = NULL; - nip = nss_passwd_nonlocal_database(); - if (nip == NULL) - return NSS_STATUS_UNAVAIL; - if (fct_start == NULL) - fct_start = __nss_lookup_function(nip, fct_name); - fct.ptr = fct_start; - do { - if (fct.ptr == NULL) - status = NSS_STATUS_UNAVAIL; - else - status = DL_CALL_FCT(fct.l, ()); - } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0); +#define args () +#include "walk_nss.h" +#undef args return status; } @@ -316,35 +257,21 @@ enum nss_status _nss_nonlocal_getpwnam_r(const char *name, struct passwd *pwd, char *buffer, size_t buflen, int *errnop) { - static const char *fct_name = "getpwnam_r"; - static void *fct_start = NULL; enum nss_status status; - service_user *nip; - union { - enum nss_status (*l)(const char *name, struct passwd *pwd, - char *buffer, size_t buflen, int *errnop); - void *ptr; - } fct; int group_errno; + const struct walk_nss w = { + .lookup = __nss_passwd_nonlocal_lookup, .fct_name = "getpwnam_r", + .status = &status, .errnop = errnop + }; + const __typeof__(&_nss_nonlocal_getpwnam_r) self = NULL; char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV); if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0') return NSS_STATUS_UNAVAIL; - nip = nss_passwd_nonlocal_database(); - if (nip == NULL) - return NSS_STATUS_UNAVAIL; - if (fct_start == NULL) - fct_start = __nss_lookup_function(nip, fct_name); - fct.ptr = fct_start; - do { - if (fct.ptr == NULL) - status = NSS_STATUS_UNAVAIL; - else - status = DL_CALL_FCT(fct.l, (name, pwd, buffer, buflen, errnop)); - if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE) - break; - } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0); +#define args (name, pwd, buffer, buflen, errnop) +#include "walk_nss.h" +#undef args if (status != NSS_STATUS_SUCCESS) return status; @@ -357,7 +284,7 @@ _nss_nonlocal_getpwnam_r(const char *name, struct passwd *pwd, if (status != NSS_STATUS_SUCCESS) return status; - if (check_nonlocal_gid(name, pwd->pw_gid, &group_errno) != + if (check_nonlocal_gid(name, NULL, pwd->pw_gid, &group_errno) != NSS_STATUS_SUCCESS) pwd->pw_gid = 65534 /* nogroup */; return NSS_STATUS_SUCCESS; @@ -367,35 +294,21 @@ enum nss_status _nss_nonlocal_getpwuid_r(uid_t uid, struct passwd *pwd, char *buffer, size_t buflen, int *errnop) { - static const char *fct_name = "getpwuid_r"; - static void *fct_start = NULL; enum nss_status status; - service_user *nip; - union { - enum nss_status (*l)(uid_t uid, struct passwd *pwd, - char *buffer, size_t buflen, int *errnop); - void *ptr; - } fct; int group_errno; + const struct walk_nss w = { + .lookup = &__nss_passwd_nonlocal_lookup, .fct_name = "getpwuid_r", + .status = &status, .errnop = errnop + }; + const __typeof__(&_nss_nonlocal_getpwuid_r) self = NULL; char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV); if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0') return NSS_STATUS_UNAVAIL; - nip = nss_passwd_nonlocal_database(); - if (nip == NULL) - return NSS_STATUS_UNAVAIL; - if (fct_start == NULL) - fct_start = __nss_lookup_function(nip, fct_name); - fct.ptr = fct_start; - do { - if (fct.ptr == NULL) - status = NSS_STATUS_UNAVAIL; - else - status = DL_CALL_FCT(fct.l, (uid, pwd, buffer, buflen, errnop)); - if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE) - break; - } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0); +#define args (uid, pwd, buffer, buflen, errnop) +#include "walk_nss.h" +#undef args if (status != NSS_STATUS_SUCCESS) return status; @@ -408,7 +321,7 @@ _nss_nonlocal_getpwuid_r(uid_t uid, struct passwd *pwd, if (status != NSS_STATUS_SUCCESS) return status; - if (check_nonlocal_gid(pwd->pw_name, pwd->pw_gid, &group_errno) != + if (check_nonlocal_gid(pwd->pw_name, NULL, pwd->pw_gid, &group_errno) != NSS_STATUS_SUCCESS) pwd->pw_gid = 65534 /* nogroup */; return NSS_STATUS_SUCCESS;