]> andersk Git - gssapi-openssh.git/blobdiff - openssh/groupaccess.c
update version number for patch release today
[gssapi-openssh.git] / openssh / groupaccess.c
index e73f62b22fdf29bfa6ac29a54f7abc8aef5d87cf..cbfe720356d49dd3964ceea09d9a104799ba0d8e 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: groupaccess.c,v 1.12 2006/08/03 03:34:42 deraadt Exp $ */
+/*     $OpenBSD: groupaccess.c,v 1.4 2001/06/26 17:27:23 markus Exp $  */
+
 /*
  * Copyright (c) 2001 Kevin Steves.  All rights reserved.
  *
 
 #include "includes.h"
 
-#include <sys/types.h>
-#include <sys/param.h>
-
-#include <grp.h>
-#include <unistd.h>
-#include <stdarg.h>
-
-#include "xmalloc.h"
 #include "groupaccess.h"
+#include "xmalloc.h"
 #include "match.h"
 #include "log.h"
 
 static int ngroups;
-static char **groups_byname;
+static char *groups_byname[NGROUPS_MAX + 1];   /* +1 for base/primary group */
 
 /*
  * Initialize group access list for user with primary (base) and
@@ -47,27 +41,19 @@ static char **groups_byname;
 int
 ga_init(const char *user, gid_t base)
 {
-       gid_t *groups_bygid;
+       gid_t groups_bygid[NGROUPS_MAX + 1];
        int i, j;
        struct group *gr;
 
        if (ngroups > 0)
                ga_free();
 
-       ngroups = NGROUPS_MAX;
-#if defined(HAVE_SYSCONF) && defined(_SC_NGROUPS_MAX)
-       ngroups = MAX(NGROUPS_MAX, sysconf(_SC_NGROUPS_MAX));
-#endif
-
-       groups_bygid = xcalloc(ngroups, sizeof(*groups_bygid));
-       groups_byname = xcalloc(ngroups, sizeof(*groups_byname));
-
+       ngroups = sizeof(groups_bygid) / sizeof(gid_t);
        if (getgrouplist(user, base, groups_bygid, &ngroups) == -1)
-               logit("getgrouplist: groups list too small");
+               log("getgrouplist: groups list too small");
        for (i = 0, j = 0; i < ngroups; i++)
                if ((gr = getgrgid(groups_bygid[i])) != NULL)
                        groups_byname[j++] = xstrdup(gr->gr_name);
-       xfree(groups_bygid);
        return (ngroups = j);
 }
 
@@ -99,6 +85,5 @@ ga_free(void)
                for (i = 0; i < ngroups; i++)
                        xfree(groups_byname[i]);
                ngroups = 0;
-               xfree(groups_byname);
        }
 }
This page took 0.038872 seconds and 4 git commands to generate.