nss_wrapper: resort calls to move public calls to the end.
authorGünther Deschner <gd@samba.org>
Sun, 31 May 2009 00:20:29 +0000 (02:20 +0200)
committerGünther Deschner <gd@samba.org>
Tue, 2 Jun 2009 11:11:57 +0000 (13:11 +0200)
Guenther

lib/nss_wrapper/nss_wrapper.c

index 1ac26aa3c63fc0894bf7ffe459980ce4c8ab461d..318cfa80e4f6692b05b40671322c2ca017538602 100644 (file)
@@ -887,15 +887,6 @@ static struct passwd *nwrap_files_getpwnam(const char *name)
        return NULL;
 }
 
        return NULL;
 }
 
-_PUBLIC_ struct passwd *nwrap_getpwnam(const char *name)
-{
-       if (!nwrap_enabled()) {
-               return real_getpwnam(name);
-       }
-
-       return nwrap_main_global->ops->getpwnam(name);
-}
-
 static int nwrap_files_getpwnam_r(const char *name, struct passwd *pwdst,
                                  char *buf, size_t buflen, struct passwd **pwdstp)
 {
 static int nwrap_files_getpwnam_r(const char *name, struct passwd *pwdst,
                                  char *buf, size_t buflen, struct passwd **pwdstp)
 {
@@ -912,16 +903,6 @@ static int nwrap_files_getpwnam_r(const char *name, struct passwd *pwdst,
        return nwrap_pw_copy_r(pw, pwdst, buf, buflen, pwdstp);
 }
 
        return nwrap_pw_copy_r(pw, pwdst, buf, buflen, pwdstp);
 }
 
-_PUBLIC_ int nwrap_getpwnam_r(const char *name, struct passwd *pwdst,
-                             char *buf, size_t buflen, struct passwd **pwdstp)
-{
-       if (!nwrap_enabled()) {
-               return real_getpwnam_r(name, pwdst, buf, buflen, pwdstp);
-       }
-
-       return nwrap_main_global->ops->getpwnam_r(name, pwdst, buf, buflen, pwdstp);
-}
-
 static struct passwd *nwrap_files_getpwuid(uid_t uid)
 {
        int i;
 static struct passwd *nwrap_files_getpwuid(uid_t uid)
 {
        int i;
@@ -945,15 +926,6 @@ static struct passwd *nwrap_files_getpwuid(uid_t uid)
        return NULL;
 }
 
        return NULL;
 }
 
-_PUBLIC_ struct passwd *nwrap_getpwuid(uid_t uid)
-{
-       if (!nwrap_enabled()) {
-               return real_getpwuid(uid);
-       }
-
-       return nwrap_main_global->ops->getpwuid(uid);
-}
-
 static int nwrap_files_getpwuid_r(uid_t uid, struct passwd *pwdst,
                                  char *buf, size_t buflen, struct passwd **pwdstp)
 {
 static int nwrap_files_getpwuid_r(uid_t uid, struct passwd *pwdst,
                                  char *buf, size_t buflen, struct passwd **pwdstp)
 {
@@ -970,32 +942,12 @@ static int nwrap_files_getpwuid_r(uid_t uid, struct passwd *pwdst,
        return nwrap_pw_copy_r(pw, pwdst, buf, buflen, pwdstp);
 }
 
        return nwrap_pw_copy_r(pw, pwdst, buf, buflen, pwdstp);
 }
 
-_PUBLIC_ int nwrap_getpwuid_r(uid_t uid, struct passwd *pwdst,
-                             char *buf, size_t buflen, struct passwd **pwdstp)
-{
-       if (!nwrap_enabled()) {
-               return real_getpwuid_r(uid, pwdst, buf, buflen, pwdstp);
-       }
-
-       return nwrap_main_global->ops->getpwuid_r(uid, pwdst, buf, buflen, pwdstp);
-}
-
 /* user enum functions */
 static void nwrap_files_setpwent(void)
 {
        nwrap_pw_global.idx = 0;
 }
 
 /* user enum functions */
 static void nwrap_files_setpwent(void)
 {
        nwrap_pw_global.idx = 0;
 }
 
-_PUBLIC_ void nwrap_setpwent(void)
-{
-       if (!nwrap_enabled()) {
-               real_setpwent();
-               return;
-       }
-
-       nwrap_main_global->ops->setpwent();
-}
-
 static struct passwd *nwrap_files_getpwent(void)
 {
        struct passwd *pw;
 static struct passwd *nwrap_files_getpwent(void)
 {
        struct passwd *pw;
@@ -1017,15 +969,6 @@ static struct passwd *nwrap_files_getpwent(void)
        return pw;
 }
 
        return pw;
 }
 
-_PUBLIC_ struct passwd *nwrap_getpwent(void)
-{
-       if (!nwrap_enabled()) {
-               return real_getpwent();
-       }
-
-       return nwrap_main_global->ops->getpwent();
-}
-
 static int nwrap_files_getpwent_r(struct passwd *pwdst, char *buf,
                                  size_t buflen, struct passwd **pwdstp)
 {
 static int nwrap_files_getpwent_r(struct passwd *pwdst, char *buf,
                                  size_t buflen, struct passwd **pwdstp)
 {
@@ -1042,46 +985,11 @@ static int nwrap_files_getpwent_r(struct passwd *pwdst, char *buf,
        return nwrap_pw_copy_r(pw, pwdst, buf, buflen, pwdstp);
 }
 
        return nwrap_pw_copy_r(pw, pwdst, buf, buflen, pwdstp);
 }
 
-_PUBLIC_ int nwrap_getpwent_r(struct passwd *pwdst, char *buf,
-                             size_t buflen, struct passwd **pwdstp)
-{
-       if (!nwrap_enabled()) {
-#ifdef SOLARIS_GETPWENT_R
-               struct passwd *pw;
-               pw = real_getpwent_r(pwdst, buf, buflen);
-               if (!pw) {
-                       if (errno == 0) {
-                               return ENOENT;
-                       }
-                       return errno;
-               }
-               if (pwdstp) {
-                       *pwdstp = pw;
-               }
-               return 0;
-#else
-               return real_getpwent_r(pwdst, buf, buflen, pwdstp);
-#endif
-       }
-
-       return nwrap_main_global->ops->getpwent_r(pwdst, buf, buflen, pwdstp);
-}
-
 static void nwrap_files_endpwent(void)
 {
        nwrap_pw_global.idx = 0;
 }
 
 static void nwrap_files_endpwent(void)
 {
        nwrap_pw_global.idx = 0;
 }
 
-_PUBLIC_ void nwrap_endpwent(void)
-{
-       if (!nwrap_enabled()) {
-               real_endpwent();
-               return;
-       }
-
-       nwrap_main_global->ops->endpwent();
-}
-
 /* misc functions */
 static int nwrap_files_initgroups(const char *user, gid_t group)
 {
 /* misc functions */
 static int nwrap_files_initgroups(const char *user, gid_t group)
 {
@@ -1089,15 +997,6 @@ static int nwrap_files_initgroups(const char *user, gid_t group)
        return EPERM;
 }
 
        return EPERM;
 }
 
-_PUBLIC_ int nwrap_initgroups(const char *user, gid_t group)
-{
-       if (!nwrap_enabled()) {
-               return real_initgroups(user, group);
-       }
-
-       return nwrap_main_global->ops->initgroups(user, group);
-}
-
 /* group functions */
 static struct group *nwrap_files_getgrnam(const char *name)
 {
 /* group functions */
 static struct group *nwrap_files_getgrnam(const char *name)
 {
@@ -1122,15 +1021,6 @@ static struct group *nwrap_files_getgrnam(const char *name)
        return NULL;
 }
 
        return NULL;
 }
 
-_PUBLIC_ struct group *nwrap_getgrnam(const char *name)
-{
-       if (!nwrap_enabled()) {
-               return real_getgrnam(name);
-       }
-
-       return nwrap_main_global->ops->getgrnam(name);
-}
-
 static int nwrap_files_getgrnam_r(const char *name, struct group *grdst,
                                  char *buf, size_t buflen, struct group **grdstp)
 {
 static int nwrap_files_getgrnam_r(const char *name, struct group *grdst,
                                  char *buf, size_t buflen, struct group **grdstp)
 {
@@ -1147,16 +1037,6 @@ static int nwrap_files_getgrnam_r(const char *name, struct group *grdst,
        return nwrap_gr_copy_r(gr, grdst, buf, buflen, grdstp);
 }
 
        return nwrap_gr_copy_r(gr, grdst, buf, buflen, grdstp);
 }
 
-_PUBLIC_ int nwrap_getgrnam_r(const char *name, struct group *grdst,
-                             char *buf, size_t buflen, struct group **grdstp)
-{
-       if (!nwrap_enabled()) {
-               return real_getgrnam_r(name, grdst, buf, buflen, grdstp);
-       }
-
-       return nwrap_main_global->ops->getgrnam_r(name, grdst, buf, buflen, grdstp);
-}
-
 static struct group *nwrap_files_getgrgid(gid_t gid)
 {
        int i;
 static struct group *nwrap_files_getgrgid(gid_t gid)
 {
        int i;
@@ -1180,15 +1060,6 @@ static struct group *nwrap_files_getgrgid(gid_t gid)
        return NULL;
 }
 
        return NULL;
 }
 
-_PUBLIC_ struct group *nwrap_getgrgid(gid_t gid)
-{
-       if (!nwrap_enabled()) {
-               return real_getgrgid(gid);
-       }
-
-       return nwrap_main_global->ops->getgrgid(gid);
-}
-
 static int nwrap_files_getgrgid_r(gid_t gid, struct group *grdst,
                                  char *buf, size_t buflen, struct group **grdstp)
 {
 static int nwrap_files_getgrgid_r(gid_t gid, struct group *grdst,
                                  char *buf, size_t buflen, struct group **grdstp)
 {
@@ -1207,32 +1078,12 @@ static int nwrap_files_getgrgid_r(gid_t gid, struct group *grdst,
        return ENOENT;
 }
 
        return ENOENT;
 }
 
-_PUBLIC_ int nwrap_getgrgid_r(gid_t gid, struct group *grdst,
-                             char *buf, size_t buflen, struct group **grdstp)
-{
-       if (!nwrap_enabled()) {
-               return real_getgrgid_r(gid, grdst, buf, buflen, grdstp);
-       }
-
-       return nwrap_main_global->ops->getgrgid_r(gid, grdst, buf, buflen, grdstp);
-}
-
 /* group enum functions */
 static void nwrap_files_setgrent(void)
 {
        nwrap_gr_global.idx = 0;
 }
 
 /* group enum functions */
 static void nwrap_files_setgrent(void)
 {
        nwrap_gr_global.idx = 0;
 }
 
-_PUBLIC_ void nwrap_setgrent(void)
-{
-       if (!nwrap_enabled()) {
-               real_setgrent();
-               return;
-       }
-
-       nwrap_main_global->ops->setgrent();
-}
-
 static struct group *nwrap_files_getgrent(void)
 {
        struct group *gr;
 static struct group *nwrap_files_getgrent(void)
 {
        struct group *gr;
@@ -1254,15 +1105,6 @@ static struct group *nwrap_files_getgrent(void)
        return gr;
 }
 
        return gr;
 }
 
-_PUBLIC_ struct group *nwrap_getgrent(void)
-{
-       if (!nwrap_enabled()) {
-               return real_getgrent();
-       }
-
-       return nwrap_main_global->ops->getgrent();
-}
-
 static int nwrap_files_getgrent_r(struct group *grdst, char *buf,
                                  size_t buflen, struct group **grdstp)
 {
 static int nwrap_files_getgrent_r(struct group *grdst, char *buf,
                                  size_t buflen, struct group **grdstp)
 {
@@ -1279,46 +1121,11 @@ static int nwrap_files_getgrent_r(struct group *grdst, char *buf,
        return nwrap_gr_copy_r(gr, grdst, buf, buflen, grdstp);
 }
 
        return nwrap_gr_copy_r(gr, grdst, buf, buflen, grdstp);
 }
 
-_PUBLIC_ int nwrap_getgrent_r(struct group *grdst, char *buf,
-                             size_t buflen, struct group **grdstp)
-{
-       if (!nwrap_enabled()) {
-#ifdef SOLARIS_GETGRENT_R
-               struct group *gr;
-               gr = real_getgrent_r(grdst, buf, buflen);
-               if (!gr) {
-                       if (errno == 0) {
-                               return ENOENT;
-                       }
-                       return errno;
-               }
-               if (grdstp) {
-                       *grdstp = gr;
-               }
-               return 0;
-#else
-               return real_getgrent_r(grdst, buf, buflen, grdstp);
-#endif
-       }
-
-       return nwrap_main_global->ops->getgrent_r(grdst, buf, buflen, grdstp);
-}
-
 static void nwrap_files_endgrent(void)
 {
        nwrap_gr_global.idx = 0;
 }
 
 static void nwrap_files_endgrent(void)
 {
        nwrap_gr_global.idx = 0;
 }
 
-_PUBLIC_ void nwrap_endgrent(void)
-{
-       if (!nwrap_enabled()) {
-               real_endgrent();
-               return;
-       }
-
-       nwrap_main_global->ops->endgrent();
-}
-
 static int nwrap_files_getgrouplist(const char *user, gid_t group, gid_t *groups, int *ngroups)
 {
        struct group *grp;
 static int nwrap_files_getgrouplist(const char *user, gid_t group, gid_t *groups, int *ngroups)
 {
        struct group *grp;
@@ -1387,6 +1194,203 @@ static int nwrap_files_getgrouplist(const char *user, gid_t group, gid_t *groups
        return count;
 }
 
        return count;
 }
 
+/*
+ * PUBLIC interface
+ */
+
+_PUBLIC_ struct passwd *nwrap_getpwnam(const char *name)
+{
+       if (!nwrap_enabled()) {
+               return real_getpwnam(name);
+       }
+
+       return nwrap_main_global->ops->getpwnam(name);
+}
+
+_PUBLIC_ int nwrap_getpwnam_r(const char *name, struct passwd *pwdst,
+                             char *buf, size_t buflen, struct passwd **pwdstp)
+{
+       if (!nwrap_enabled()) {
+               return real_getpwnam_r(name, pwdst, buf, buflen, pwdstp);
+       }
+
+       return nwrap_main_global->ops->getpwnam_r(name, pwdst, buf, buflen, pwdstp);
+}
+
+_PUBLIC_ struct passwd *nwrap_getpwuid(uid_t uid)
+{
+       if (!nwrap_enabled()) {
+               return real_getpwuid(uid);
+       }
+
+       return nwrap_main_global->ops->getpwuid(uid);
+}
+
+_PUBLIC_ int nwrap_getpwuid_r(uid_t uid, struct passwd *pwdst,
+                             char *buf, size_t buflen, struct passwd **pwdstp)
+{
+       if (!nwrap_enabled()) {
+               return real_getpwuid_r(uid, pwdst, buf, buflen, pwdstp);
+       }
+
+       return nwrap_main_global->ops->getpwuid_r(uid, pwdst, buf, buflen, pwdstp);
+}
+
+_PUBLIC_ void nwrap_setpwent(void)
+{
+       if (!nwrap_enabled()) {
+               real_setpwent();
+               return;
+       }
+
+       nwrap_main_global->ops->setpwent();
+}
+
+_PUBLIC_ struct passwd *nwrap_getpwent(void)
+{
+       if (!nwrap_enabled()) {
+               return real_getpwent();
+       }
+
+       return nwrap_main_global->ops->getpwent();
+}
+
+_PUBLIC_ int nwrap_getpwent_r(struct passwd *pwdst, char *buf,
+                             size_t buflen, struct passwd **pwdstp)
+{
+       if (!nwrap_enabled()) {
+#ifdef SOLARIS_GETPWENT_R
+               struct passwd *pw;
+               pw = real_getpwent_r(pwdst, buf, buflen);
+               if (!pw) {
+                       if (errno == 0) {
+                               return ENOENT;
+                       }
+                       return errno;
+               }
+               if (pwdstp) {
+                       *pwdstp = pw;
+               }
+               return 0;
+#else
+               return real_getpwent_r(pwdst, buf, buflen, pwdstp);
+#endif
+       }
+
+       return nwrap_main_global->ops->getpwent_r(pwdst, buf, buflen, pwdstp);
+}
+
+_PUBLIC_ void nwrap_endpwent(void)
+{
+       if (!nwrap_enabled()) {
+               real_endpwent();
+               return;
+       }
+
+       nwrap_main_global->ops->endpwent();
+}
+
+_PUBLIC_ int nwrap_initgroups(const char *user, gid_t group)
+{
+       if (!nwrap_enabled()) {
+               return real_initgroups(user, group);
+       }
+
+       return nwrap_main_global->ops->initgroups(user, group);
+}
+
+_PUBLIC_ struct group *nwrap_getgrnam(const char *name)
+{
+       if (!nwrap_enabled()) {
+               return real_getgrnam(name);
+       }
+
+       return nwrap_main_global->ops->getgrnam(name);
+}
+
+_PUBLIC_ int nwrap_getgrnam_r(const char *name, struct group *grdst,
+                             char *buf, size_t buflen, struct group **grdstp)
+{
+       if (!nwrap_enabled()) {
+               return real_getgrnam_r(name, grdst, buf, buflen, grdstp);
+       }
+
+       return nwrap_main_global->ops->getgrnam_r(name, grdst, buf, buflen, grdstp);
+}
+
+_PUBLIC_ struct group *nwrap_getgrgid(gid_t gid)
+{
+       if (!nwrap_enabled()) {
+               return real_getgrgid(gid);
+       }
+
+       return nwrap_main_global->ops->getgrgid(gid);
+}
+
+_PUBLIC_ int nwrap_getgrgid_r(gid_t gid, struct group *grdst,
+                             char *buf, size_t buflen, struct group **grdstp)
+{
+       if (!nwrap_enabled()) {
+               return real_getgrgid_r(gid, grdst, buf, buflen, grdstp);
+       }
+
+       return nwrap_main_global->ops->getgrgid_r(gid, grdst, buf, buflen, grdstp);
+}
+
+_PUBLIC_ void nwrap_setgrent(void)
+{
+       if (!nwrap_enabled()) {
+               real_setgrent();
+               return;
+       }
+
+       nwrap_main_global->ops->setgrent();
+}
+
+_PUBLIC_ struct group *nwrap_getgrent(void)
+{
+       if (!nwrap_enabled()) {
+               return real_getgrent();
+       }
+
+       return nwrap_main_global->ops->getgrent();
+}
+
+_PUBLIC_ int nwrap_getgrent_r(struct group *grdst, char *buf,
+                             size_t buflen, struct group **grdstp)
+{
+       if (!nwrap_enabled()) {
+#ifdef SOLARIS_GETGRENT_R
+               struct group *gr;
+               gr = real_getgrent_r(grdst, buf, buflen);
+               if (!gr) {
+                       if (errno == 0) {
+                               return ENOENT;
+                       }
+                       return errno;
+               }
+               if (grdstp) {
+                       *grdstp = gr;
+               }
+               return 0;
+#else
+               return real_getgrent_r(grdst, buf, buflen, grdstp);
+#endif
+       }
+
+       return nwrap_main_global->ops->getgrent_r(grdst, buf, buflen, grdstp);
+}
+
+_PUBLIC_ void nwrap_endgrent(void)
+{
+       if (!nwrap_enabled()) {
+               real_endgrent();
+               return;
+       }
+
+       nwrap_main_global->ops->endgrent();
+}
+
 _PUBLIC_ int nwrap_getgrouplist(const char *user, gid_t group, gid_t *groups, int *ngroups)
 {
        if (!nwrap_enabled()) {
 _PUBLIC_ int nwrap_getgrouplist(const char *user, gid_t group, gid_t *groups, int *ngroups)
 {
        if (!nwrap_enabled()) {