blob: 66c022ea2ef7281316dce04040639e5cf3566ea3 [file] [log] [blame]
Guido van Rossum864407d1991-04-10 19:48:25 +00001/***********************************************************
Guido van Rossum524b5881995-01-04 19:10:35 +00002Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
Guido van Rossum864407d1991-04-10 19:48:25 +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 Rossum864407d1991-04-10 19:48:25 +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 Rossum864407d1991-04-10 19:48:25 +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 Rossum864407d1991-04-10 19:48:25 +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 Rossum864407d1991-04-10 19:48:25 +000029
30******************************************************************/
31
Guido van Rossumb6775db1994-08-01 11:34:53 +000032/* UNIX password file access module */
Guido van Rossum864407d1991-04-10 19:48:25 +000033
34#include "allobjects.h"
35#include "modsupport.h"
36
37#include <sys/types.h>
38#include <pwd.h>
Guido van Rossum864407d1991-04-10 19:48:25 +000039
40static object *mkpwent(p)
41 struct passwd *p;
42{
Guido van Rossume5372401993-03-16 12:15:04 +000043 return mkvalue("(ssllsss)",
44 p->pw_name,
45 p->pw_passwd,
Guido van Rossum03e8ffa1995-02-07 15:38:56 +000046#if defined(NeXT) && defined(_POSIX_SOURCE) && defined(__LITTLE_ENDIAN__)
47/* Correct a bug present on Intel machines in NextStep 3.2 and 3.3;
48 for later versions you may have to remove this */
49 (long)p->pw_short_pad1, /* ugh-NeXT broke the padding */
50 (long)p->pw_short_pad2,
51#else
Guido van Rossume5372401993-03-16 12:15:04 +000052 (long)p->pw_uid,
53 (long)p->pw_gid,
Guido van Rossum03e8ffa1995-02-07 15:38:56 +000054#endif
Guido van Rossume5372401993-03-16 12:15:04 +000055 p->pw_gecos,
56 p->pw_dir,
57 p->pw_shell);
Guido van Rossum864407d1991-04-10 19:48:25 +000058}
59
60static object *pwd_getpwuid(self, args)
61 object *self, *args;
62{
63 int uid;
64 struct passwd *p;
65 if (!getintarg(args, &uid))
66 return NULL;
67 if ((p = getpwuid(uid)) == NULL) {
Guido van Rossum0e8e8721991-12-24 13:28:38 +000068 err_setstr(KeyError, "getpwuid(): uid not found");
Guido van Rossum864407d1991-04-10 19:48:25 +000069 return NULL;
70 }
71 return mkpwent(p);
72}
73
74static object *pwd_getpwnam(self, args)
75 object *self, *args;
76{
Guido van Rossumef0a00e1992-01-27 16:51:30 +000077 char *name;
Guido van Rossum864407d1991-04-10 19:48:25 +000078 struct passwd *p;
79 if (!getstrarg(args, &name))
80 return NULL;
Guido van Rossumef0a00e1992-01-27 16:51:30 +000081 if ((p = getpwnam(name)) == NULL) {
Guido van Rossum0e8e8721991-12-24 13:28:38 +000082 err_setstr(KeyError, "getpwnam(): name not found");
Guido van Rossum864407d1991-04-10 19:48:25 +000083 return NULL;
84 }
85 return mkpwent(p);
86}
87
88static object *pwd_getpwall(self, args)
89 object *self, *args;
90{
91 object *d;
92 struct passwd *p;
93 if (!getnoarg(args))
94 return NULL;
95 if ((d = newlistobject(0)) == NULL)
96 return NULL;
97 setpwent();
98 while ((p = getpwent()) != NULL) {
99 object *v = mkpwent(p);
100 if (v == NULL || addlistitem(d, v) != 0) {
101 XDECREF(v);
102 DECREF(d);
103 return NULL;
104 }
105 }
106 return d;
107}
108
109static struct methodlist pwd_methods[] = {
110 {"getpwuid", pwd_getpwuid},
111 {"getpwnam", pwd_getpwnam},
112 {"getpwall", pwd_getpwall},
113 {NULL, NULL} /* sentinel */
114};
115
116void
117initpwd()
118{
119 initmodule("pwd", pwd_methods);
120}