2 Unix SMB/CIFS implementation.
3 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2008
4 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2011
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "libcli/util/pyerrors.h"
23 #include "param/param.h"
26 #include "auth/system_session_proto.h"
27 #include "auth/auth.h"
28 #include "param/pyparam.h"
29 #include "libcli/security/security.h"
30 #include "auth/credentials/pycredentials.h"
32 #include "librpc/rpc/pyrpc_util.h"
36 staticforward PyTypeObject PyAuthContext
;
38 /* There's no Py_ssize_t in 2.4, apparently */
39 #if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION < 5
40 typedef int Py_ssize_t
;
41 typedef inquiry lenfunc
;
42 typedef intargfunc ssizeargfunc
;
45 #ifndef Py_RETURN_NONE
46 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
49 static PyObject
*PyAuthSession_FromSession(struct auth_session_info
*session
)
51 return py_return_ndr_struct("samba.dcerpc.auth", "session_info", session
, session
);
54 static PyObject
*py_system_session(PyObject
*module
, PyObject
*args
)
56 PyObject
*py_lp_ctx
= Py_None
;
57 struct loadparm_context
*lp_ctx
= NULL
;
58 struct auth_session_info
*session
;
60 if (!PyArg_ParseTuple(args
, "|O", &py_lp_ctx
))
63 mem_ctx
= talloc_new(NULL
);
64 if (mem_ctx
== NULL
) {
69 lp_ctx
= lpcfg_from_py_object(mem_ctx
, py_lp_ctx
);
75 session
= system_session(lp_ctx
);
79 return PyAuthSession_FromSession(session
);
83 static PyObject
*py_admin_session(PyObject
*module
, PyObject
*args
)
87 struct loadparm_context
*lp_ctx
= NULL
;
88 struct auth_session_info
*session
;
89 struct dom_sid
*domain_sid
= NULL
;
92 if (!PyArg_ParseTuple(args
, "OO", &py_lp_ctx
, &py_sid
))
95 mem_ctx
= talloc_new(NULL
);
96 if (mem_ctx
== NULL
) {
101 lp_ctx
= lpcfg_from_py_object(mem_ctx
, py_lp_ctx
);
102 if (lp_ctx
== NULL
) {
103 talloc_free(mem_ctx
);
107 domain_sid
= dom_sid_parse_talloc(mem_ctx
, PyString_AsString(py_sid
));
108 if (domain_sid
== NULL
) {
109 PyErr_Format(PyExc_RuntimeError
, "Unable to parse sid %s",
110 PyString_AsString(py_sid
));
111 talloc_free(mem_ctx
);
114 session
= admin_session(NULL
, lp_ctx
, domain_sid
);
115 talloc_free(mem_ctx
);
117 return PyAuthSession_FromSession(session
);
120 static PyObject
*py_user_session(PyObject
*module
, PyObject
*args
, PyObject
*kwargs
)
123 struct auth_session_info
*session
;
125 const char * const kwnames
[] = { "ldb", "lp_ctx", "principal", "dn", "session_info_flags", NULL
};
126 struct ldb_context
*ldb_ctx
;
127 PyObject
*py_ldb
= Py_None
;
128 PyObject
*py_dn
= Py_None
;
129 PyObject
*py_lp_ctx
= Py_None
;
130 struct loadparm_context
*lp_ctx
= NULL
;
131 struct ldb_dn
*user_dn
;
132 char *principal
= NULL
;
133 int session_info_flags
= 0; /* This is an int, because that's
134 * what we need for the python
135 * PyArg_ParseTupleAndKeywords */
137 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "O|OzOi",
138 discard_const_p(char *, kwnames
),
139 &py_ldb
, &py_lp_ctx
, &principal
, &py_dn
, &session_info_flags
)) {
143 mem_ctx
= talloc_new(NULL
);
144 if (mem_ctx
== NULL
) {
149 ldb_ctx
= PyLdb_AsLdbContext(py_ldb
);
151 if (py_dn
== Py_None
) {
154 if (!PyObject_AsDn(ldb_ctx
, py_dn
, ldb_ctx
, &user_dn
)) {
155 talloc_free(mem_ctx
);
160 lp_ctx
= lpcfg_from_py_object(mem_ctx
, py_lp_ctx
);
161 if (lp_ctx
== NULL
) {
162 talloc_free(mem_ctx
);
166 nt_status
= authsam_get_session_info_principal(mem_ctx
, lp_ctx
, ldb_ctx
, principal
, user_dn
,
167 session_info_flags
, &session
);
168 if (!NT_STATUS_IS_OK(nt_status
)) {
169 talloc_free(mem_ctx
);
170 PyErr_NTSTATUS_IS_ERR_RAISE(nt_status
);
173 talloc_steal(NULL
, session
);
174 talloc_free(mem_ctx
);
176 return PyAuthSession_FromSession(session
);
180 static const char **PyList_AsStringList(TALLOC_CTX
*mem_ctx
, PyObject
*list
,
181 const char *paramname
)
185 if (!PyList_Check(list
)) {
186 PyErr_Format(PyExc_TypeError
, "%s is not a list", paramname
);
189 ret
= talloc_array(NULL
, const char *, PyList_Size(list
)+1);
195 for (i
= 0; i
< PyList_Size(list
); i
++) {
196 PyObject
*item
= PyList_GetItem(list
, i
);
197 if (!PyString_Check(item
)) {
198 PyErr_Format(PyExc_TypeError
, "%s should be strings", paramname
);
201 ret
[i
] = talloc_strndup(ret
, PyString_AsString(item
),
202 PyString_Size(item
));
208 static PyObject
*PyAuthContext_FromContext(struct auth_context
*auth_context
)
210 return py_talloc_reference(&PyAuthContext
, auth_context
);
213 static PyObject
*py_auth_context_new(PyTypeObject
*type
, PyObject
*args
, PyObject
*kwargs
)
215 PyObject
*py_lp_ctx
= Py_None
;
216 PyObject
*py_ldb
= Py_None
;
217 PyObject
*py_messaging_ctx
= Py_None
;
218 PyObject
*py_auth_context
= Py_None
;
219 PyObject
*py_methods
= Py_None
;
221 struct auth_context
*auth_context
;
222 struct messaging_context
*messaging_context
= NULL
;
223 struct loadparm_context
*lp_ctx
;
224 struct tevent_context
*ev
;
225 struct ldb_context
*ldb
;
227 const char **methods
;
229 const char * const kwnames
[] = { "lp_ctx", "messaging_ctx", "ldb", "methods", NULL
};
231 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, "|OOOO",
232 discard_const_p(char *, kwnames
),
233 &py_lp_ctx
, &py_messaging_ctx
, &py_ldb
, &py_methods
))
236 mem_ctx
= talloc_new(NULL
);
237 if (mem_ctx
== NULL
) {
242 if (py_ldb
!= Py_None
) {
243 ldb
= PyLdb_AsLdbContext(py_ldb
);
246 lp_ctx
= lpcfg_from_py_object(mem_ctx
, py_lp_ctx
);
248 ev
= tevent_context_init(mem_ctx
);
254 if (py_messaging_ctx
!= Py_None
) {
255 messaging_context
= py_talloc_get_type(py_messaging_ctx
, struct messaging_context
);
258 if (py_methods
== Py_None
&& py_ldb
== Py_None
) {
259 nt_status
= auth_context_create(mem_ctx
, ev
, messaging_context
, lp_ctx
, &auth_context
);
261 if (py_methods
!= Py_None
) {
262 methods
= PyList_AsStringList(mem_ctx
, py_methods
, "methods");
263 if (methods
== NULL
) {
264 talloc_free(mem_ctx
);
268 methods
= auth_methods_from_lp(mem_ctx
, lp_ctx
);
270 nt_status
= auth_context_create_methods(mem_ctx
, methods
, ev
,
271 messaging_context
, lp_ctx
,
275 if (!NT_STATUS_IS_OK(nt_status
)) {
276 talloc_free(mem_ctx
);
277 PyErr_NTSTATUS_IS_ERR_RAISE(nt_status
);
280 if (!talloc_reference(auth_context
, lp_ctx
)) {
281 talloc_free(mem_ctx
);
286 if (!talloc_reference(auth_context
, ev
)) {
287 talloc_free(mem_ctx
);
292 py_auth_context
= PyAuthContext_FromContext(auth_context
);
294 talloc_free(mem_ctx
);
296 return py_auth_context
;
299 static PyTypeObject PyAuthContext
= {
300 .tp_name
= "AuthContext",
301 .tp_basicsize
= sizeof(py_talloc_Object
),
302 .tp_flags
= Py_TPFLAGS_DEFAULT
,
303 .tp_new
= py_auth_context_new
,
304 .tp_basicsize
= sizeof(py_talloc_Object
),
307 static PyMethodDef py_auth_methods
[] = {
308 { "system_session", (PyCFunction
)py_system_session
, METH_VARARGS
, NULL
},
309 { "admin_session", (PyCFunction
)py_admin_session
, METH_VARARGS
, NULL
},
310 { "user_session", (PyCFunction
)py_user_session
, METH_VARARGS
|METH_KEYWORDS
, NULL
},
318 PyAuthContext
.tp_base
= PyTalloc_GetObjectType();
319 if (PyAuthContext
.tp_base
== NULL
)
322 if (PyType_Ready(&PyAuthContext
) < 0)
325 m
= Py_InitModule3("auth", py_auth_methods
,
326 "Authentication and authorization support.");
330 Py_INCREF(&PyAuthContext
);
331 PyModule_AddObject(m
, "AuthContext", (PyObject
*)&PyAuthContext
);
333 #define ADD_FLAG(val) PyModule_AddObject(m, #val, PyInt_FromLong(val))
334 ADD_FLAG(AUTH_SESSION_INFO_DEFAULT_GROUPS
);
335 ADD_FLAG(AUTH_SESSION_INFO_AUTHENTICATED
);
336 ADD_FLAG(AUTH_SESSION_INFO_SIMPLE_PRIVILEGES
);