]> andersk Git - openssh.git/blobdiff - groupaccess.c
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / groupaccess.c
index 2b7117b70d5a5eac6ed85ece6e6e3a85d9042b64..2381aeb15b57edf4deefacd0084ba5697a522149 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: groupaccess.c,v 1.9 2006/07/02 22:45:59 stevesk Exp $ */
+/* $OpenBSD: groupaccess.c,v 1.13 2008/07/04 03:44:59 djm 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 <string.h>
 
-#include "groupaccess.h"
 #include "xmalloc.h"
+#include "groupaccess.h"
 #include "match.h"
 #include "log.h"
 
@@ -84,6 +88,30 @@ ga_match(char * const *groups, int n)
        return 0;
 }
 
+/*
+ * Return 1 if one of user's groups matches group_pattern list.
+ * Return 0 on negated or no match.
+ */
+int
+ga_match_pattern_list(const char *group_pattern)
+{
+       int i, found = 0;
+       size_t len = strlen(group_pattern);
+
+       for (i = 0; i < ngroups; i++) {
+               switch (match_pattern_list(groups_byname[i],
+                   group_pattern, len, 0)) {
+               case -1:
+                       return 0;       /* Negated match wins */
+               case 0:
+                       continue;
+               case 1:
+                       found = 1;
+               }
+       }
+       return found;
+}
+
 /*
  * Free memory allocated for group access list.
  */
This page took 0.400446 seconds and 4 git commands to generate.