| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | /* UNIX password file access module */ | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-11 16:54:40 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  | #include "posixmodule.h"
 | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <pwd.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | #include "clinic/pwdmodule.c.h"
 | 
					
						
							|  |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | module pwd | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							| 
									
										
										
										
											2015-04-03 23:53:51 +03:00
										 |  |  | /*[clinic end generated code: output=da39a3ee5e6b4b0d input=60f628ef356b97b6]*/ | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | static PyStructSequence_Field struct_pwd_type_fields[] = { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     {"pw_name", "user name"}, | 
					
						
							|  |  |  |     {"pw_passwd", "password"}, | 
					
						
							|  |  |  |     {"pw_uid", "user id"}, | 
					
						
							|  |  |  |     {"pw_gid", "group id"}, | 
					
						
							|  |  |  |     {"pw_gecos", "real name"}, | 
					
						
							|  |  |  |     {"pw_dir", "home directory"}, | 
					
						
							|  |  |  |     {"pw_shell", "shell program"}, | 
					
						
							|  |  |  |     {0} | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(struct_passwd__doc__, | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | "pwd.struct_passwd: Results from getpw*() routines.\n\n\
 | 
					
						
							|  |  |  | This object may be accessed either as a tuple of\n\ | 
					
						
							|  |  |  |   (pw_name,pw_passwd,pw_uid,pw_gid,pw_gecos,pw_dir,pw_shell)\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | or via the object attributes as named in the above tuple."); | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyStructSequence_Desc struct_pwd_type_desc = { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     "pwd.struct_passwd", | 
					
						
							|  |  |  |     struct_passwd__doc__, | 
					
						
							|  |  |  |     struct_pwd_type_fields, | 
					
						
							|  |  |  |     7, | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(pwd__doc__, | 
					
						
							|  |  |  | "This module provides access to the Unix password database.\n\
 | 
					
						
							| 
									
										
										
										
											1998-03-03 22:03:26 +00:00
										 |  |  | It is available on all Unix versions.\n\ | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Password database entries are reported as 7-tuples containing the following\n\ | 
					
						
							|  |  |  | items from the password database (see `<pwd.h>'), in order:\n\ | 
					
						
							|  |  |  | pw_name, pw_passwd, pw_uid, pw_gid, pw_gecos, pw_dir, pw_shell.\n\ | 
					
						
							|  |  |  | The uid and gid items are integers, all others are strings. An\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | exception is raised if the entry asked for cannot be found."); | 
					
						
							| 
									
										
										
										
											1998-03-03 22:03:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | static int initialized; | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | static PyTypeObject StructPwdType; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-17 09:34:06 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2007-08-24 23:26:23 +00:00
										 |  |  | sets(PyObject *v, int i, const char* val) | 
					
						
							| 
									
										
										
										
											2002-09-17 09:34:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-27 05:40:06 +00:00
										 |  |  |   if (val) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |       PyObject *o = PyUnicode_DecodeFSDefault(val); | 
					
						
							|  |  |  |       PyStructSequence_SET_ITEM(v, i, o); | 
					
						
							| 
									
										
										
										
											2007-10-27 05:40:06 +00:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2002-09-17 09:34:06 +00:00
										 |  |  |   else { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |       PyStructSequence_SET_ITEM(v, i, Py_None); | 
					
						
							|  |  |  |       Py_INCREF(Py_None); | 
					
						
							| 
									
										
										
										
											2002-09-17 09:34:06 +00:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-11 16:54:40 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 13:12:27 +00:00
										 |  |  | mkpwent(struct passwd *p) | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     int setIndex = 0; | 
					
						
							|  |  |  |     PyObject *v = PyStructSequence_New(&StructPwdType); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-02 14:31:20 +00:00
										 |  |  | #define SETI(i,val) PyStructSequence_SET_ITEM(v, i, PyLong_FromLong((long) val))
 | 
					
						
							| 
									
										
										
										
											2002-09-17 09:34:06 +00:00
										 |  |  | #define SETS(i,val) sets(v, i, val)
 | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     SETS(setIndex++, p->pw_name); | 
					
						
							|  |  |  |     SETS(setIndex++, p->pw_passwd); | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  |     PyStructSequence_SET_ITEM(v, setIndex++, _PyLong_FromUid(p->pw_uid)); | 
					
						
							|  |  |  |     PyStructSequence_SET_ITEM(v, setIndex++, _PyLong_FromGid(p->pw_gid)); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     SETS(setIndex++, p->pw_gecos); | 
					
						
							|  |  |  |     SETS(setIndex++, p->pw_dir); | 
					
						
							|  |  |  |     SETS(setIndex++, p->pw_shell); | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef SETS
 | 
					
						
							|  |  |  | #undef SETI
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (PyErr_Occurred()) { | 
					
						
							|  |  |  |         Py_XDECREF(v); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-03-01 10:38:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return v; | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | pwd.getpwuid | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     uidobj: object | 
					
						
							|  |  |  |     / | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Return the password database entry for the given numeric user ID. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | See `help(pwd)` for more on password database entries. | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							| 
									
										
										
										
											1998-03-03 22:03:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-11 16:54:40 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | pwd_getpwuid(PyModuleDef *module, PyObject *uidobj) | 
					
						
							|  |  |  | /*[clinic end generated code: output=cba29ae4c2bcb8e1 input=ae64d507a1c6d3e8]*/ | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  |     uid_t uid; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     struct passwd *p; | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!_Py_Uid_Converter(uidobj, &uid)) { | 
					
						
							| 
									
										
										
										
											2013-02-11 20:32:47 +02:00
										 |  |  |         if (PyErr_ExceptionMatches(PyExc_OverflowError)) | 
					
						
							|  |  |  |             PyErr_Format(PyExc_KeyError, | 
					
						
							|  |  |  |                          "getpwuid(): uid not found"); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2013-02-11 20:32:47 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if ((p = getpwuid(uid)) == NULL) { | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  |         PyObject *uid_obj = _PyLong_FromUid(uid); | 
					
						
							|  |  |  |         if (uid_obj == NULL) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         PyErr_Format(PyExc_KeyError, | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  |                      "getpwuid(): uid not found: %S", uid_obj); | 
					
						
							|  |  |  |         Py_DECREF(uid_obj); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return mkpwent(p); | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | pwd.getpwnam | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     arg: unicode | 
					
						
							|  |  |  |     / | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Return the password database entry for the given user name. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | See `help(pwd)` for more on password database entries. | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							| 
									
										
										
										
											1998-03-03 22:03:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-11 16:54:40 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | pwd_getpwnam_impl(PyModuleDef *module, PyObject *arg) | 
					
						
							|  |  |  | /*[clinic end generated code: output=66848d42d386fca3 input=d5f7e700919b02d3]*/ | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     char *name; | 
					
						
							|  |  |  |     struct passwd *p; | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  |     PyObject *bytes, *retval = NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-15 16:27:27 +00:00
										 |  |  |     if ((bytes = PyUnicode_EncodeFSDefault(arg)) == NULL) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     if (PyBytes_AsStringAndSize(bytes, &name, NULL) == -1) | 
					
						
							|  |  |  |         goto out; | 
					
						
							|  |  |  |     if ((p = getpwnam(name)) == NULL) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_KeyError, | 
					
						
							|  |  |  |                      "getpwnam(): name not found: %s", name); | 
					
						
							|  |  |  |         goto out; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     retval = mkpwent(p); | 
					
						
							| 
									
										
										
										
											2009-05-29 15:23:17 +00:00
										 |  |  | out: | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_DECREF(bytes); | 
					
						
							|  |  |  |     return retval; | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-22 20:42:00 +00:00
										 |  |  | #ifdef HAVE_GETPWENT
 | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | pwd.getpwall | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Return a list of all available password database entries, in arbitrary order. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | See help(pwd) for more on password database entries. | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							| 
									
										
										
										
											1998-03-03 22:03:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-11 16:54:40 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  | pwd_getpwall_impl(PyModuleDef *module) | 
					
						
							|  |  |  | /*[clinic end generated code: output=ab30e37bf26d431d input=d7ecebfd90219b85]*/ | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *d; | 
					
						
							|  |  |  |     struct passwd *p; | 
					
						
							|  |  |  |     if ((d = PyList_New(0)) == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     setpwent(); | 
					
						
							|  |  |  |     while ((p = getpwent()) != NULL) { | 
					
						
							|  |  |  |         PyObject *v = mkpwent(p); | 
					
						
							|  |  |  |         if (v == NULL || PyList_Append(d, v) != 0) { | 
					
						
							|  |  |  |             Py_XDECREF(v); | 
					
						
							|  |  |  |             Py_DECREF(d); | 
					
						
							|  |  |  |             endpwent(); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         Py_DECREF(v); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     endpwent(); | 
					
						
							|  |  |  |     return d; | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1997-08-22 20:42:00 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-11 16:54:40 +00:00
										 |  |  | static PyMethodDef pwd_methods[] = { | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  |     PWD_GETPWUID_METHODDEF | 
					
						
							|  |  |  |     PWD_GETPWNAM_METHODDEF | 
					
						
							| 
									
										
										
										
											1997-08-22 20:42:00 +00:00
										 |  |  | #ifdef HAVE_GETPWENT
 | 
					
						
							| 
									
										
										
										
											2014-08-22 14:03:51 -04:00
										 |  |  |     PWD_GETPWALL_METHODDEF | 
					
						
							| 
									
										
										
										
											1997-08-22 20:42:00 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     {NULL,              NULL}           /* sentinel */ | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 05:26:20 +00:00
										 |  |  | static struct PyModuleDef pwdmodule = { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyModuleDef_HEAD_INIT, | 
					
						
							|  |  |  |     "pwd", | 
					
						
							|  |  |  |     pwd__doc__, | 
					
						
							|  |  |  |     -1, | 
					
						
							|  |  |  |     pwd_methods, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL | 
					
						
							| 
									
										
										
										
											2008-06-11 05:26:20 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-02 02:27:13 +00:00
										 |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2008-06-11 05:26:20 +00:00
										 |  |  | PyInit_pwd(void) | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *m; | 
					
						
							|  |  |  |     m = PyModule_Create(&pwdmodule); | 
					
						
							|  |  |  |     if (m == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!initialized) { | 
					
						
							| 
									
										
										
										
											2013-07-22 22:24:54 +02:00
										 |  |  |         if (PyStructSequence_InitType2(&StructPwdType, | 
					
						
							|  |  |  |                                        &struct_pwd_type_desc) < 0) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         initialized = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_INCREF((PyObject *) &StructPwdType); | 
					
						
							|  |  |  |     PyModule_AddObject(m, "struct_passwd", (PyObject *) &StructPwdType); | 
					
						
							|  |  |  |     return m; | 
					
						
							| 
									
										
										
										
											1991-04-10 19:48:25 +00:00
										 |  |  | } |