blob: f75339514570b6ae44bf5ea4b498b3fc0b7df6ec [file] [log] [blame]
Guido van Rossum20882d51994-06-23 11:15:44 +00001/***********************************************************
Guido van Rossum524b5881995-01-04 19:10:35 +00002Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
Guido van Rossum20882d51994-06-23 11:15:44 +00004
5 All Rights Reserved
6
Guido van Rossumd266eb41996-10-25 14:44:06 +00007Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
Guido van Rossum20882d51994-06-23 11:15:44 +00009provided that the above copyright notice appear in all copies and that
Guido van Rossumd266eb41996-10-25 14:44:06 +000010both that copyright notice and this permission notice appear in
Guido van Rossum20882d51994-06-23 11:15:44 +000011supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumd266eb41996-10-25 14:44:06 +000012Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
Guido van Rossum20882d51994-06-23 11:15:44 +000016
Guido van Rossumd266eb41996-10-25 14:44:06 +000017While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum20882d51994-06-23 11:15:44 +000029
30******************************************************************/
31
32/* UNIX group file access module */
33
34#include "allobjects.h"
35#include "modsupport.h"
36
37#include <sys/types.h>
38#include <grp.h>
39
40static object *mkgrent(p)
41 struct group *p;
42{
43 object *v, *w;
44 char **member;
45 if ((w = newlistobject(0)) == NULL) {
46 return NULL;
47 }
48 for (member = p->gr_mem; *member != NULL; member++) {
49 object *x = newstringobject(*member);
50 if (x == NULL || addlistitem(w, x) != 0) {
51 XDECREF(x);
52 DECREF(w);
53 return NULL;
54 }
55 }
56 v = mkvalue("(sslO)",
57 p->gr_name,
58 p->gr_passwd,
Guido van Rossum03e8ffa1995-02-07 15:38:56 +000059#if defined(NeXT) && defined(_POSIX_SOURCE) && defined(__LITTLE_ENDIAN__)
60/* Correct a bug present on Intel machines in NextStep 3.2 and 3.3;
61 for later versions you may have to remove this */
62 (long)p->gr_short_pad, /* ugh-NeXT broke the padding */
63#else
Guido van Rossum20882d51994-06-23 11:15:44 +000064 (long)p->gr_gid,
Guido van Rossum03e8ffa1995-02-07 15:38:56 +000065#endif
Guido van Rossum20882d51994-06-23 11:15:44 +000066 w);
67 DECREF(w);
68 return v;
69}
70
71static object *grp_getgrgid(self, args)
72 object *self, *args;
73{
74 int gid;
75 struct group *p;
76 if (!getintarg(args, &gid))
77 return NULL;
78 if ((p = getgrgid(gid)) == NULL) {
79 err_setstr(KeyError, "getgrgid(): gid not found");
80 return NULL;
81 }
82 return mkgrent(p);
83}
84
85static object *grp_getgrnam(self, args)
86 object *self, *args;
87{
88 char *name;
89 struct group *p;
90 if (!getstrarg(args, &name))
91 return NULL;
92 if ((p = getgrnam(name)) == NULL) {
93 err_setstr(KeyError, "getgrnam(): name not found");
94 return NULL;
95 }
96 return mkgrent(p);
97}
98
99static object *grp_getgrall(self, args)
100 object *self, *args;
101{
102 object *d;
103 struct group *p;
104 if (!getnoarg(args))
105 return NULL;
106 if ((d = newlistobject(0)) == NULL)
107 return NULL;
108 setgrent();
109 while ((p = getgrent()) != NULL) {
110 object *v = mkgrent(p);
111 if (v == NULL || addlistitem(d, v) != 0) {
112 XDECREF(v);
113 DECREF(d);
114 return NULL;
115 }
116 }
117 return d;
118}
119
120static struct methodlist grp_methods[] = {
121 {"getgrgid", grp_getgrgid},
122 {"getgrnam", grp_getgrnam},
123 {"getgrall", grp_getgrall},
124 {NULL, NULL} /* sentinel */
125};
126
127void
128initgrp()
129{
130 initmodule("grp", grp_methods);
131}