blob: ae358e0d81e981f0583c959ecd535dcbdce7bc83 [file] [log] [blame]
Guido van Rossum864407d1991-04-10 19:48:25 +00001
Guido van Rossumb6775db1994-08-01 11:34:53 +00002/* UNIX password file access module */
Guido van Rossum864407d1991-04-10 19:48:25 +00003
Barry Warsaw50c5cf11996-12-11 16:54:40 +00004#include "Python.h"
Martin v. Löwisdbd55b32002-03-01 10:38:44 +00005#include "structseq.h"
Guido van Rossum864407d1991-04-10 19:48:25 +00006
7#include <sys/types.h>
8#include <pwd.h>
Guido van Rossum864407d1991-04-10 19:48:25 +00009
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000010static PyStructSequence_Field struct_pwd_type_fields[] = {
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000011 {"pw_name", "user name"},
12 {"pw_passwd", "password"},
13 {"pw_uid", "user id"},
14 {"pw_gid", "group id"},
15 {"pw_gecos", "real name"},
16 {"pw_dir", "home directory"},
17 {"pw_shell", "shell program"},
18 {0}
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000019};
20
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000021PyDoc_STRVAR(struct_passwd__doc__,
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000022"pwd.struct_passwd: Results from getpw*() routines.\n\n\
23This object may be accessed either as a tuple of\n\
24 (pw_name,pw_passwd,pw_uid,pw_gid,pw_gecos,pw_dir,pw_shell)\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000025or via the object attributes as named in the above tuple.");
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000026
27static PyStructSequence_Desc struct_pwd_type_desc = {
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000028 "pwd.struct_passwd",
29 struct_passwd__doc__,
30 struct_pwd_type_fields,
31 7,
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000032};
33
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000034PyDoc_STRVAR(pwd__doc__,
35"This module provides access to the Unix password database.\n\
Guido van Rossum3e79c441998-03-03 22:03:26 +000036It is available on all Unix versions.\n\
37\n\
38Password database entries are reported as 7-tuples containing the following\n\
39items from the password database (see `<pwd.h>'), in order:\n\
40pw_name, pw_passwd, pw_uid, pw_gid, pw_gecos, pw_dir, pw_shell.\n\
41The uid and gid items are integers, all others are strings. An\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000042exception is raised if the entry asked for cannot be found.");
Guido van Rossum3e79c441998-03-03 22:03:26 +000043
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000044
Martin v. Löwis19ab6c92006-04-16 18:55:50 +000045static int initialized;
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000046static PyTypeObject StructPwdType;
47
Martin v. Löwis29275c92002-09-17 09:34:06 +000048static void
49sets(PyObject *v, int i, char* val)
50{
51 if (val)
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000052 PyStructSequence_SET_ITEM(v, i, PyString_FromString(val));
Martin v. Löwis29275c92002-09-17 09:34:06 +000053 else {
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000054 PyStructSequence_SET_ITEM(v, i, Py_None);
55 Py_INCREF(Py_None);
Martin v. Löwis29275c92002-09-17 09:34:06 +000056 }
57}
58
Barry Warsaw50c5cf11996-12-11 16:54:40 +000059static PyObject *
Peter Schneider-Kamp39e0e5a2000-07-10 13:12:27 +000060mkpwent(struct passwd *p)
Guido van Rossum864407d1991-04-10 19:48:25 +000061{
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000062 int setIndex = 0;
63 PyObject *v = PyStructSequence_New(&StructPwdType);
64 if (v == NULL)
65 return NULL;
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000066
67#define SETI(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
Martin v. Löwis29275c92002-09-17 09:34:06 +000068#define SETS(i,val) sets(v, i, val)
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000069
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000070 SETS(setIndex++, p->pw_name);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000071#ifdef __VMS
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000072 SETS(setIndex++, "");
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000073#else
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000074 SETS(setIndex++, p->pw_passwd);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000075#endif
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000076 SETI(setIndex++, p->pw_uid);
77 SETI(setIndex++, p->pw_gid);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000078#ifdef __VMS
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000079 SETS(setIndex++, "");
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000080#else
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000081 SETS(setIndex++, p->pw_gecos);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000082#endif
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000083 SETS(setIndex++, p->pw_dir);
84 SETS(setIndex++, p->pw_shell);
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000085
86#undef SETS
87#undef SETI
88
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000089 if (PyErr_Occurred()) {
90 Py_XDECREF(v);
91 return NULL;
92 }
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000093
Antoine Pitrouc7c96a92010-05-09 15:15:40 +000094 return v;
Guido van Rossum864407d1991-04-10 19:48:25 +000095}
96
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000097PyDoc_STRVAR(pwd_getpwuid__doc__,
98"getpwuid(uid) -> (pw_name,pw_passwd,pw_uid,\n\
99 pw_gid,pw_gecos,pw_dir,pw_shell)\n\
Guido van Rossum3e79c441998-03-03 22:03:26 +0000100Return the password database entry for the given numeric user ID.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000101See pwd.__doc__ for more on password database entries.");
Guido van Rossum3e79c441998-03-03 22:03:26 +0000102
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000103static PyObject *
Peter Schneider-Kamp39e0e5a2000-07-10 13:12:27 +0000104pwd_getpwuid(PyObject *self, PyObject *args)
Guido van Rossum864407d1991-04-10 19:48:25 +0000105{
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000106 unsigned int uid;
107 struct passwd *p;
108 if (!PyArg_ParseTuple(args, "I:getpwuid", &uid))
109 return NULL;
110 if ((p = getpwuid(uid)) == NULL) {
111 PyErr_Format(PyExc_KeyError,
112 "getpwuid(): uid not found: %d", uid);
113 return NULL;
114 }
115 return mkpwent(p);
Guido van Rossum864407d1991-04-10 19:48:25 +0000116}
117
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000118PyDoc_STRVAR(pwd_getpwnam__doc__,
119"getpwnam(name) -> (pw_name,pw_passwd,pw_uid,\n\
120 pw_gid,pw_gecos,pw_dir,pw_shell)\n\
Guido van Rossum3e79c441998-03-03 22:03:26 +0000121Return the password database entry for the given user name.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000122See pwd.__doc__ for more on password database entries.");
Guido van Rossum3e79c441998-03-03 22:03:26 +0000123
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000124static PyObject *
Peter Schneider-Kamp39e0e5a2000-07-10 13:12:27 +0000125pwd_getpwnam(PyObject *self, PyObject *args)
Guido van Rossum864407d1991-04-10 19:48:25 +0000126{
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000127 char *name;
128 struct passwd *p;
129 if (!PyArg_ParseTuple(args, "s:getpwnam", &name))
130 return NULL;
131 if ((p = getpwnam(name)) == NULL) {
132 PyErr_Format(PyExc_KeyError,
133 "getpwnam(): name not found: %s", name);
134 return NULL;
135 }
136 return mkpwent(p);
Guido van Rossum864407d1991-04-10 19:48:25 +0000137}
138
Guido van Rossum1171ee61997-08-22 20:42:00 +0000139#ifdef HAVE_GETPWENT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000140PyDoc_STRVAR(pwd_getpwall__doc__,
141"getpwall() -> list_of_entries\n\
Guido van Rossum3e79c441998-03-03 22:03:26 +0000142Return a list of all available password database entries, \
143in arbitrary order.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000144See pwd.__doc__ for more on password database entries.");
Guido van Rossum3e79c441998-03-03 22:03:26 +0000145
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000146static PyObject *
Neal Norwitz3a6f9782002-03-25 20:46:46 +0000147pwd_getpwall(PyObject *self)
Guido van Rossum864407d1991-04-10 19:48:25 +0000148{
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000149 PyObject *d;
150 struct passwd *p;
151 if ((d = PyList_New(0)) == NULL)
152 return NULL;
Andrew MacIntyre7bf68332002-03-03 02:59:16 +0000153#if defined(PYOS_OS2) && defined(PYCC_GCC)
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000154 if ((p = getpwuid(0)) != NULL) {
Andrew MacIntyre7bf68332002-03-03 02:59:16 +0000155#else
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000156 setpwent();
157 while ((p = getpwent()) != NULL) {
Andrew MacIntyre7bf68332002-03-03 02:59:16 +0000158#endif
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000159 PyObject *v = mkpwent(p);
160 if (v == NULL || PyList_Append(d, v) != 0) {
161 Py_XDECREF(v);
162 Py_DECREF(d);
163 endpwent();
164 return NULL;
165 }
166 Py_DECREF(v);
167 }
168 endpwent();
169 return d;
Guido van Rossum864407d1991-04-10 19:48:25 +0000170}
Guido van Rossum1171ee61997-08-22 20:42:00 +0000171#endif
Guido van Rossum864407d1991-04-10 19:48:25 +0000172
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000173static PyMethodDef pwd_methods[] = {
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000174 {"getpwuid", pwd_getpwuid, METH_VARARGS, pwd_getpwuid__doc__},
175 {"getpwnam", pwd_getpwnam, METH_VARARGS, pwd_getpwnam__doc__},
Guido van Rossum1171ee61997-08-22 20:42:00 +0000176#ifdef HAVE_GETPWENT
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000177 {"getpwall", (PyCFunction)pwd_getpwall,
178 METH_NOARGS, pwd_getpwall__doc__},
Guido van Rossum1171ee61997-08-22 20:42:00 +0000179#endif
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000180 {NULL, NULL} /* sentinel */
Guido van Rossum864407d1991-04-10 19:48:25 +0000181};
182
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000183PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000184initpwd(void)
Guido van Rossum864407d1991-04-10 19:48:25 +0000185{
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000186 PyObject *m;
187 m = Py_InitModule3("pwd", pwd_methods, pwd__doc__);
188 if (m == NULL)
189 return;
Fred Drake88c93442002-04-13 21:07:45 +0000190
Antoine Pitrouc7c96a92010-05-09 15:15:40 +0000191 if (!initialized)
192 PyStructSequence_InitType(&StructPwdType,
193 &struct_pwd_type_desc);
194 Py_INCREF((PyObject *) &StructPwdType);
195 PyModule_AddObject(m, "struct_passwd", (PyObject *) &StructPwdType);
196 /* And for b/w compatibility (this was defined by mistake): */
197 Py_INCREF((PyObject *) &StructPwdType);
198 PyModule_AddObject(m, "struct_pwent", (PyObject *) &StructPwdType);
199 initialized = 1;
Guido van Rossum864407d1991-04-10 19:48:25 +0000200}