blob: 9134edc1b17965e7a50bb26e0671ec2e95ecaee4 [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[] = {
11 {"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}
19};
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 = {
28 "pwd.struct_passwd",
29 struct_passwd__doc__,
30 struct_pwd_type_fields,
31 7,
32};
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
44
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000045static PyTypeObject StructPwdType;
46
Martin v. Löwis29275c92002-09-17 09:34:06 +000047static void
48sets(PyObject *v, int i, char* val)
49{
50 if (val)
51 PyStructSequence_SET_ITEM(v, i, PyString_FromString(val));
52 else {
53 PyStructSequence_SET_ITEM(v, i, Py_None);
54 Py_INCREF(Py_None);
55 }
56}
57
Barry Warsaw50c5cf11996-12-11 16:54:40 +000058static PyObject *
Peter Schneider-Kamp39e0e5a2000-07-10 13:12:27 +000059mkpwent(struct passwd *p)
Guido van Rossum864407d1991-04-10 19:48:25 +000060{
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000061 int setIndex = 0;
62 PyObject *v = PyStructSequence_New(&StructPwdType);
63 if (v == NULL)
64 return NULL;
65
66#define SETI(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
Martin v. Löwis29275c92002-09-17 09:34:06 +000067#define SETS(i,val) sets(v, i, val)
Martin v. Löwisdbd55b32002-03-01 10:38:44 +000068
69 SETS(setIndex++, p->pw_name);
70 SETS(setIndex++, p->pw_passwd);
71 SETI(setIndex++, p->pw_uid);
72 SETI(setIndex++, p->pw_gid);
73 SETS(setIndex++, p->pw_gecos);
74 SETS(setIndex++, p->pw_dir);
75 SETS(setIndex++, p->pw_shell);
76
77#undef SETS
78#undef SETI
79
80 if (PyErr_Occurred()) {
81 Py_XDECREF(v);
82 return NULL;
83 }
84
85 return v;
Guido van Rossum864407d1991-04-10 19:48:25 +000086}
87
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000088PyDoc_STRVAR(pwd_getpwuid__doc__,
89"getpwuid(uid) -> (pw_name,pw_passwd,pw_uid,\n\
90 pw_gid,pw_gecos,pw_dir,pw_shell)\n\
Guido van Rossum3e79c441998-03-03 22:03:26 +000091Return the password database entry for the given numeric user ID.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000092See pwd.__doc__ for more on password database entries.");
Guido van Rossum3e79c441998-03-03 22:03:26 +000093
Barry Warsaw50c5cf11996-12-11 16:54:40 +000094static PyObject *
Peter Schneider-Kamp39e0e5a2000-07-10 13:12:27 +000095pwd_getpwuid(PyObject *self, PyObject *args)
Guido van Rossum864407d1991-04-10 19:48:25 +000096{
97 int uid;
98 struct passwd *p;
Neal Norwitzba3a16c2002-03-31 15:27:00 +000099 if (!PyArg_ParseTuple(args, "i:getpwuid", &uid))
Guido van Rossum864407d1991-04-10 19:48:25 +0000100 return NULL;
101 if ((p = getpwuid(uid)) == NULL) {
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000102 PyErr_SetString(PyExc_KeyError, "getpwuid(): uid not found");
Guido van Rossum864407d1991-04-10 19:48:25 +0000103 return NULL;
104 }
105 return mkpwent(p);
106}
107
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000108PyDoc_STRVAR(pwd_getpwnam__doc__,
109"getpwnam(name) -> (pw_name,pw_passwd,pw_uid,\n\
110 pw_gid,pw_gecos,pw_dir,pw_shell)\n\
Guido van Rossum3e79c441998-03-03 22:03:26 +0000111Return the password database entry for the given user name.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000112See pwd.__doc__ for more on password database entries.");
Guido van Rossum3e79c441998-03-03 22:03:26 +0000113
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000114static PyObject *
Peter Schneider-Kamp39e0e5a2000-07-10 13:12:27 +0000115pwd_getpwnam(PyObject *self, PyObject *args)
Guido van Rossum864407d1991-04-10 19:48:25 +0000116{
Guido van Rossumef0a00e1992-01-27 16:51:30 +0000117 char *name;
Guido van Rossum864407d1991-04-10 19:48:25 +0000118 struct passwd *p;
Neal Norwitzba3a16c2002-03-31 15:27:00 +0000119 if (!PyArg_ParseTuple(args, "s:getpwnam", &name))
Guido van Rossum864407d1991-04-10 19:48:25 +0000120 return NULL;
Guido van Rossumef0a00e1992-01-27 16:51:30 +0000121 if ((p = getpwnam(name)) == NULL) {
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000122 PyErr_SetString(PyExc_KeyError, "getpwnam(): name not found");
Guido van Rossum864407d1991-04-10 19:48:25 +0000123 return NULL;
124 }
125 return mkpwent(p);
126}
127
Guido van Rossum1171ee61997-08-22 20:42:00 +0000128#ifdef HAVE_GETPWENT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000129PyDoc_STRVAR(pwd_getpwall__doc__,
130"getpwall() -> list_of_entries\n\
Guido van Rossum3e79c441998-03-03 22:03:26 +0000131Return a list of all available password database entries, \
132in arbitrary order.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000133See pwd.__doc__ for more on password database entries.");
Guido van Rossum3e79c441998-03-03 22:03:26 +0000134
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000135static PyObject *
Neal Norwitz3a6f9782002-03-25 20:46:46 +0000136pwd_getpwall(PyObject *self)
Guido van Rossum864407d1991-04-10 19:48:25 +0000137{
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000138 PyObject *d;
Guido van Rossum864407d1991-04-10 19:48:25 +0000139 struct passwd *p;
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000140 if ((d = PyList_New(0)) == NULL)
Guido van Rossum864407d1991-04-10 19:48:25 +0000141 return NULL;
Andrew MacIntyre7bf68332002-03-03 02:59:16 +0000142#if defined(PYOS_OS2) && defined(PYCC_GCC)
143 if ((p = getpwuid(0)) != NULL) {
144#else
Guido van Rossum864407d1991-04-10 19:48:25 +0000145 setpwent();
146 while ((p = getpwent()) != NULL) {
Andrew MacIntyre7bf68332002-03-03 02:59:16 +0000147#endif
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000148 PyObject *v = mkpwent(p);
149 if (v == NULL || PyList_Append(d, v) != 0) {
150 Py_XDECREF(v);
151 Py_DECREF(d);
Guido van Rossum864407d1991-04-10 19:48:25 +0000152 return NULL;
153 }
Barry Warsaw4bc9d391997-01-09 22:22:05 +0000154 Py_DECREF(v);
Guido van Rossum864407d1991-04-10 19:48:25 +0000155 }
Fred Drake8e68eb62001-03-11 03:03:07 +0000156 endpwent();
Guido van Rossum864407d1991-04-10 19:48:25 +0000157 return d;
158}
Guido van Rossum1171ee61997-08-22 20:42:00 +0000159#endif
Guido van Rossum864407d1991-04-10 19:48:25 +0000160
Barry Warsaw50c5cf11996-12-11 16:54:40 +0000161static PyMethodDef pwd_methods[] = {
Neal Norwitzba3a16c2002-03-31 15:27:00 +0000162 {"getpwuid", pwd_getpwuid, METH_VARARGS, pwd_getpwuid__doc__},
163 {"getpwnam", pwd_getpwnam, METH_VARARGS, pwd_getpwnam__doc__},
Guido van Rossum1171ee61997-08-22 20:42:00 +0000164#ifdef HAVE_GETPWENT
Neil Schemenauercc07ec12002-03-29 19:58:25 +0000165 {"getpwall", (PyCFunction)pwd_getpwall,
166 METH_NOARGS, pwd_getpwall__doc__},
Guido van Rossum1171ee61997-08-22 20:42:00 +0000167#endif
Guido van Rossum864407d1991-04-10 19:48:25 +0000168 {NULL, NULL} /* sentinel */
169};
170
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000171PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000172initpwd(void)
Guido van Rossum864407d1991-04-10 19:48:25 +0000173{
Neal Norwitz726e0132002-04-15 16:29:00 +0000174 PyObject *m;
Fred Drake88c93442002-04-13 21:07:45 +0000175 m = Py_InitModule3("pwd", pwd_methods, pwd__doc__);
176
Martin v. Löwisdbd55b32002-03-01 10:38:44 +0000177 PyStructSequence_InitType(&StructPwdType, &struct_pwd_type_desc);
Fred Drake88c93442002-04-13 21:07:45 +0000178 Py_INCREF((PyObject *) &StructPwdType);
179 PyModule_AddObject(m, "struct_pwent", (PyObject *) &StructPwdType);
Guido van Rossum864407d1991-04-10 19:48:25 +0000180}