]> andersk Git - nss_nonlocal.git/commitdiff
Skip the nonlocal handler, so we can expunge the magic buflen hack.
authorAnders Kaseorg <andersk@mit.edu>
Mon, 28 Jul 2008 11:59:42 +0000 (07:59 -0400)
committerAnders Kaseorg <andersk@mit.edu>
Tue, 29 Jul 2008 10:56:26 +0000 (06:56 -0400)
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
nonlocal-group.c
nonlocal-passwd.c

index a09c0c3d2aaefc59c10c0ab2a97def134c3d59ba..c8e8d7b2dbe4315b59824556e9b28014ea163d3a 100644 (file)
 #include "nsswitch-internal.h"
 #include "nonlocal.h"
 
-#define MAGIC_LOCAL_GR_BUFLEN (sysconf(_SC_GETGR_R_SIZE_MAX) + 7)
 #define MAGIC_NONLOCAL_GROUPNAME "nss-nonlocal-users"
 #define MAGIC_LOCAL_GROUPNAME "nss-local-users"
 
 
+enum nss_status
+_nss_nonlocal_getgrnam_r(const char *name, struct group *grp,
+                        char *buffer, size_t buflen, int *errnop);
+
+enum nss_status
+_nss_nonlocal_getgrgid_r(gid_t gid, struct group *grp,
+                        char *buffer, size_t buflen, int *errnop);
+
+
 static service_user *
 nss_group_nonlocal_database(void)
 {
@@ -72,7 +80,8 @@ check_nonlocal_gid(const char *user, gid_t gid, int *errnop)
     } fct;
     struct group gbuf;
     int old_errno = errno;
-    int buflen = MAGIC_LOCAL_GR_BUFLEN;
+
+    int buflen = sysconf(_SC_GETGR_R_SIZE_MAX);
     char *buf = malloc(buflen);
     if (buf == NULL) {
        *errnop = ENOMEM;
@@ -88,7 +97,10 @@ check_nonlocal_gid(const char *user, gid_t gid, int *errnop)
     nip = startp;
     fct.ptr = fct_start;
     do {
-       status = DL_CALL_FCT(fct.l, (gid, &gbuf, buf, buflen, errnop));
+       if (fct.l == _nss_nonlocal_getgrgid_r)
+           status = NSS_STATUS_NOTFOUND;
+       else
+           status = DL_CALL_FCT(fct.l, (gid, &gbuf, buf, buflen, errnop));
        if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE)
            break;
     } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
@@ -120,7 +132,8 @@ get_local_group(const char *name, struct group *grp, char *buffer, size_t buflen
     struct group gbuf;
     int n;
     int old_errno = errno;
-    int len = MAGIC_LOCAL_GR_BUFLEN;
+
+    int len = sysconf(_SC_GETGR_R_SIZE_MAX);
     char *buf = malloc(len);
     if (buf == NULL) {
        *errnop = ENOMEM;
@@ -136,7 +149,10 @@ get_local_group(const char *name, struct group *grp, char *buffer, size_t buflen
     nip = startp;
     fct.ptr = fct_start;
     do {
-       status = DL_CALL_FCT(fct.l, (name, &gbuf, buf, buflen, errnop));
+       if (fct.l == _nss_nonlocal_getgrnam_r)
+           status = NSS_STATUS_NOTFOUND;
+       else
+           status = DL_CALL_FCT(fct.l, (name, &gbuf, buf, buflen, errnop));
        if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE)
            break;
     } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
@@ -258,8 +274,7 @@ _nss_nonlocal_getgrent_r(struct group *grp, char *buffer, size_t buflen,
     enum nss_status status;
 
     char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV);
-    if (buflen == MAGIC_LOCAL_GR_BUFLEN ||
-       (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0'))
+    if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0')
        return NSS_STATUS_UNAVAIL;
 
     if (grent_nip == NULL) {
@@ -304,8 +319,7 @@ _nss_nonlocal_getgrnam_r(const char *name, struct group *grp,
     } fct;
 
     char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV);
-    if (buflen == MAGIC_LOCAL_GR_BUFLEN ||
-       (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0'))
+    if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0')
        return NSS_STATUS_UNAVAIL;
 
     nip = nss_group_nonlocal_database();
@@ -343,8 +357,7 @@ _nss_nonlocal_getgrgid_r(gid_t gid, struct group *grp,
     } fct;
 
     char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV);
-    if (buflen == MAGIC_LOCAL_GR_BUFLEN ||
-       (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0'))
+    if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0')
        return NSS_STATUS_UNAVAIL;
 
     nip = nss_group_nonlocal_database();
index 2810e1676841406fe4dd1b5b7059d696bec1792c..80708dc1f8d62ba4d6d270dc2cf2b5c48b3476c1 100644 (file)
 #include "nsswitch-internal.h"
 #include "nonlocal.h"
 
-#define MAGIC_LOCAL_PW_BUFLEN (sysconf(_SC_GETPW_R_SIZE_MAX) + 7)
+
+enum nss_status
+_nss_nonlocal_getpwuid_r(uid_t uid, struct passwd *pwd,
+                        char *buffer, size_t buflen, int *errnop);
+enum nss_status
+_nss_nonlocal_getpwnam_r(const char *name, struct passwd *pwd,
+                        char *buffer, size_t buflen, int *errnop);
 
 
 static service_user *
@@ -72,7 +78,8 @@ check_nonlocal_uid(const char *user, uid_t uid, int *errnop)
     } fct;
     struct passwd pwbuf;
     int old_errno = errno;
-    int buflen = MAGIC_LOCAL_PW_BUFLEN;
+
+    int buflen = sysconf(_SC_GETPW_R_SIZE_MAX);
     char *buf = malloc(buflen);
     if (buf == NULL) {
        *errnop = ENOMEM;
@@ -88,7 +95,10 @@ check_nonlocal_uid(const char *user, uid_t uid, int *errnop)
     nip = startp;
     fct.ptr = fct_start;
     do {
-       status = DL_CALL_FCT(fct.l, (uid, &pwbuf, buf, buflen, errnop));
+       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)
            break;
     } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
@@ -119,7 +129,8 @@ check_nonlocal_user(const char *user, int *errnop)
     } fct;
     struct passwd pwbuf;
     int old_errno = errno;
-    int buflen = MAGIC_LOCAL_PW_BUFLEN;
+
+    int buflen = sysconf(_SC_GETPW_R_SIZE_MAX);
     char *buf = malloc(buflen);
     if (buf == NULL) {
        *errnop = ENOMEM;
@@ -135,7 +146,10 @@ check_nonlocal_user(const char *user, int *errnop)
     nip = startp;
     fct.ptr = fct_start;
     do {
-       status = DL_CALL_FCT(fct.l, (user, &pwbuf, buf, buflen, errnop));
+       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)
            break;
     } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0);
@@ -229,8 +243,7 @@ _nss_nonlocal_getpwent_r(struct passwd *pwd, char *buffer, size_t buflen,
     enum nss_status status;
 
     char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV);
-    if (buflen == MAGIC_LOCAL_PW_BUFLEN ||
-       (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0'))
+    if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0')
        return NSS_STATUS_UNAVAIL;
 
     if (pwent_nip == NULL) {
@@ -276,8 +289,7 @@ _nss_nonlocal_getpwnam_r(const char *name, struct passwd *pwd,
     int group_errno;
 
     char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV);
-    if (buflen == MAGIC_LOCAL_PW_BUFLEN ||
-       (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0'))
+    if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0')
        return NSS_STATUS_UNAVAIL;
 
     nip = nss_passwd_nonlocal_database();
@@ -323,8 +335,7 @@ _nss_nonlocal_getpwuid_r(uid_t uid, struct passwd *pwd,
     int group_errno;
 
     char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV);
-    if (buflen == MAGIC_LOCAL_PW_BUFLEN ||
-       (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0'))
+    if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0')
        return NSS_STATUS_UNAVAIL;
 
     nip = nss_passwd_nonlocal_database();
This page took 1.132067 seconds and 5 git commands to generate.