pycredentials: Use talloc.Object.
[Samba.git] / source4 / auth / credentials / pycredentials.c
blobc51e5e1f45564d8a8c254bc47549b2abcde8b8b5
1 /*
2 Unix SMB/CIFS implementation.
3 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include <Python.h>
20 #include "includes.h"
21 #include "pycredentials.h"
22 #include "param/param.h"
23 #include "lib/cmdline/credentials.h"
24 #include "librpc/gen_ndr/samr.h" /* for struct samr_Password */
25 #include "libcli/util/pyerrors.h"
26 #include "param/pyparam.h"
27 #include <tevent.h>
29 static PyObject *PyString_FromStringOrNULL(const char *str)
31 if (str == NULL)
32 Py_RETURN_NONE;
33 return PyString_FromString(str);
36 static PyObject *py_creds_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
38 py_talloc_Object *ret = (py_talloc_Object *)type->tp_alloc(type, 0);
39 if (ret == NULL) {
40 PyErr_NoMemory();
41 return NULL;
43 ret->talloc_ctx = talloc_new(NULL);
44 if (ret->talloc_ctx == NULL) {
45 PyErr_NoMemory();
46 return NULL;
48 ret->ptr = cli_credentials_init(ret->talloc_ctx);
49 return (PyObject *)ret;
52 static PyObject *py_creds_get_username(py_talloc_Object *self)
54 return PyString_FromStringOrNULL(cli_credentials_get_username(PyCredentials_AsCliCredentials(self)));
57 static PyObject *py_creds_set_username(py_talloc_Object *self, PyObject *args)
59 char *newval;
60 enum credentials_obtained obt = CRED_SPECIFIED;
61 if (!PyArg_ParseTuple(args, "s|i", &newval, &obt))
62 return NULL;
64 return PyBool_FromLong(cli_credentials_set_username(PyCredentials_AsCliCredentials(self), newval, obt));
67 static PyObject *py_creds_get_password(py_talloc_Object *self)
69 return PyString_FromStringOrNULL(cli_credentials_get_password(PyCredentials_AsCliCredentials(self)));
73 static PyObject *py_creds_set_password(py_talloc_Object *self, PyObject *args)
75 char *newval;
76 enum credentials_obtained obt = CRED_SPECIFIED;
77 if (!PyArg_ParseTuple(args, "s|i", &newval, &obt))
78 return NULL;
80 return PyBool_FromLong(cli_credentials_set_password(PyCredentials_AsCliCredentials(self), newval, obt));
83 static PyObject *py_creds_get_domain(py_talloc_Object *self)
85 return PyString_FromStringOrNULL(cli_credentials_get_domain(PyCredentials_AsCliCredentials(self)));
88 static PyObject *py_creds_set_domain(py_talloc_Object *self, PyObject *args)
90 char *newval;
91 enum credentials_obtained obt = CRED_SPECIFIED;
92 if (!PyArg_ParseTuple(args, "s|i", &newval, &obt))
93 return NULL;
95 return PyBool_FromLong(cli_credentials_set_domain(PyCredentials_AsCliCredentials(self), newval, obt));
98 static PyObject *py_creds_get_realm(py_talloc_Object *self)
100 return PyString_FromStringOrNULL(cli_credentials_get_realm(PyCredentials_AsCliCredentials(self)));
103 static PyObject *py_creds_set_realm(py_talloc_Object *self, PyObject *args)
105 char *newval;
106 enum credentials_obtained obt = CRED_SPECIFIED;
107 if (!PyArg_ParseTuple(args, "s|i", &newval, &obt))
108 return NULL;
110 return PyBool_FromLong(cli_credentials_set_realm(PyCredentials_AsCliCredentials(self), newval, obt));
113 static PyObject *py_creds_get_bind_dn(py_talloc_Object *self)
115 return PyString_FromStringOrNULL(cli_credentials_get_bind_dn(PyCredentials_AsCliCredentials(self)));
118 static PyObject *py_creds_set_bind_dn(py_talloc_Object *self, PyObject *args)
120 char *newval;
121 if (!PyArg_ParseTuple(args, "s", &newval))
122 return NULL;
124 return PyBool_FromLong(cli_credentials_set_bind_dn(PyCredentials_AsCliCredentials(self), newval));
127 static PyObject *py_creds_get_workstation(py_talloc_Object *self)
129 return PyString_FromStringOrNULL(cli_credentials_get_workstation(PyCredentials_AsCliCredentials(self)));
132 static PyObject *py_creds_set_workstation(py_talloc_Object *self, PyObject *args)
134 char *newval;
135 enum credentials_obtained obt = CRED_SPECIFIED;
136 if (!PyArg_ParseTuple(args, "s|i", &newval, &obt))
137 return NULL;
139 return PyBool_FromLong(cli_credentials_set_workstation(PyCredentials_AsCliCredentials(self), newval, obt));
142 static PyObject *py_creds_is_anonymous(py_talloc_Object *self)
144 return PyBool_FromLong(cli_credentials_is_anonymous(PyCredentials_AsCliCredentials(self)));
147 static PyObject *py_creds_set_anonymous(py_talloc_Object *self)
149 cli_credentials_set_anonymous(PyCredentials_AsCliCredentials(self));
150 Py_RETURN_NONE;
153 static PyObject *py_creds_authentication_requested(py_talloc_Object *self)
155 return PyBool_FromLong(cli_credentials_authentication_requested(PyCredentials_AsCliCredentials(self)));
158 static PyObject *py_creds_wrong_password(py_talloc_Object *self)
160 return PyBool_FromLong(cli_credentials_wrong_password(PyCredentials_AsCliCredentials(self)));
163 static PyObject *py_creds_set_cmdline_callbacks(py_talloc_Object *self)
165 return PyBool_FromLong(cli_credentials_set_cmdline_callbacks(PyCredentials_AsCliCredentials(self)));
168 static PyObject *py_creds_parse_string(py_talloc_Object *self, PyObject *args)
170 char *newval;
171 enum credentials_obtained obt = CRED_SPECIFIED;
172 if (!PyArg_ParseTuple(args, "s|i", &newval, &obt))
173 return NULL;
175 cli_credentials_parse_string(PyCredentials_AsCliCredentials(self), newval, obt);
176 Py_RETURN_NONE;
179 static PyObject *py_creds_get_nt_hash(py_talloc_Object *self)
181 const struct samr_Password *ntpw = cli_credentials_get_nt_hash(PyCredentials_AsCliCredentials(self), self->ptr);
183 return PyString_FromStringAndSize(discard_const_p(char, ntpw->hash), 16);
186 static PyObject *py_creds_set_kerberos_state(py_talloc_Object *self, PyObject *args)
188 int state;
189 if (!PyArg_ParseTuple(args, "i", &state))
190 return NULL;
192 cli_credentials_set_kerberos_state(PyCredentials_AsCliCredentials(self), state);
193 Py_RETURN_NONE;
196 static PyObject *py_creds_set_krb_forwardable(py_talloc_Object *self, PyObject *args)
198 int state;
199 if (!PyArg_ParseTuple(args, "i", &state))
200 return NULL;
202 cli_credentials_set_krb_forwardable(PyCredentials_AsCliCredentials(self), state);
203 Py_RETURN_NONE;
206 static PyObject *py_creds_guess(py_talloc_Object *self, PyObject *args)
208 PyObject *py_lp_ctx = Py_None;
209 struct loadparm_context *lp_ctx;
210 TALLOC_CTX *mem_ctx;
211 struct cli_credentials *creds;
213 creds = PyCredentials_AsCliCredentials(self);
215 if (!PyArg_ParseTuple(args, "|O", &py_lp_ctx))
216 return NULL;
218 mem_ctx = talloc_new(NULL);
219 if (mem_ctx == NULL) {
220 PyErr_NoMemory();
221 return NULL;
224 lp_ctx = lpcfg_from_py_object(mem_ctx, py_lp_ctx);
225 if (lp_ctx == NULL) {
226 talloc_free(mem_ctx);
227 return NULL;
230 cli_credentials_guess(creds, lp_ctx);
232 talloc_free(mem_ctx);
234 Py_RETURN_NONE;
237 static PyObject *py_creds_set_machine_account(py_talloc_Object *self, PyObject *args)
239 PyObject *py_lp_ctx = Py_None;
240 struct loadparm_context *lp_ctx;
241 NTSTATUS status;
242 struct cli_credentials *creds;
243 TALLOC_CTX *mem_ctx;
245 creds = PyCredentials_AsCliCredentials(self);
247 if (!PyArg_ParseTuple(args, "|O", &py_lp_ctx))
248 return NULL;
250 mem_ctx = talloc_new(NULL);
251 if (mem_ctx == NULL) {
252 PyErr_NoMemory();
253 return NULL;
256 lp_ctx = lpcfg_from_py_object(mem_ctx, py_lp_ctx);
257 if (lp_ctx == NULL) {
258 talloc_free(mem_ctx);
259 return NULL;
262 status = cli_credentials_set_machine_account(creds, lp_ctx);
263 talloc_free(mem_ctx);
265 PyErr_NTSTATUS_IS_ERR_RAISE(status);
267 Py_RETURN_NONE;
270 PyObject *PyCredentialCacheContainer_from_ccache_container(struct ccache_container *ccc)
272 PyCredentialCacheContainerObject *py_ret;
274 if (ccc == NULL) {
275 Py_RETURN_NONE;
278 py_ret = (PyCredentialCacheContainerObject *)PyCredentialCacheContainer.tp_alloc(&PyCredentialCacheContainer, 0);
279 if (py_ret == NULL) {
280 PyErr_NoMemory();
281 return NULL;
283 py_ret->mem_ctx = talloc_new(NULL);
284 py_ret->ccc = talloc_reference(py_ret->mem_ctx, ccc);
285 return (PyObject *)py_ret;
289 static PyObject *py_creds_get_named_ccache(py_talloc_Object *self, PyObject *args)
291 PyObject *py_lp_ctx = Py_None;
292 char *ccache_name;
293 struct loadparm_context *lp_ctx;
294 struct ccache_container *ccc;
295 struct tevent_context *event_ctx;
296 int ret;
297 const char *error_string;
298 struct cli_credentials *creds;
299 TALLOC_CTX *mem_ctx;
301 creds = PyCredentials_AsCliCredentials(self);
303 if (!PyArg_ParseTuple(args, "|Os", &py_lp_ctx, &ccache_name))
304 return NULL;
306 mem_ctx = talloc_new(NULL);
307 if (mem_ctx == NULL) {
308 PyErr_NoMemory();
309 return NULL;
312 lp_ctx = lpcfg_from_py_object(mem_ctx, py_lp_ctx);
313 if (lp_ctx == NULL) {
314 talloc_free(mem_ctx);
315 return NULL;
318 event_ctx = tevent_context_init(mem_ctx);
320 ret = cli_credentials_get_named_ccache(creds, event_ctx, lp_ctx,
321 ccache_name, &ccc, &error_string);
322 talloc_unlink(mem_ctx, lp_ctx);
323 if (ret == 0) {
324 talloc_steal(ccc, event_ctx);
325 talloc_free(mem_ctx);
326 return PyCredentialCacheContainer_from_ccache_container(ccc);
329 PyErr_SetString(PyExc_RuntimeError, error_string?error_string:"NULL");
331 talloc_free(mem_ctx);
332 return NULL;
335 static PyObject *py_creds_set_gensec_features(py_talloc_Object *self, PyObject *args)
337 unsigned int gensec_features;
339 if (!PyArg_ParseTuple(args, "I", &gensec_features))
340 return NULL;
342 cli_credentials_set_gensec_features(PyCredentials_AsCliCredentials(self), gensec_features);
344 Py_RETURN_NONE;
347 static PyObject *py_creds_get_gensec_features(py_talloc_Object *self, PyObject *args)
349 unsigned int gensec_features;
351 gensec_features = cli_credentials_get_gensec_features(PyCredentials_AsCliCredentials(self));
352 return PyInt_FromLong(gensec_features);
356 static PyMethodDef py_creds_methods[] = {
357 { "get_username", (PyCFunction)py_creds_get_username, METH_NOARGS,
358 "S.get_username() -> username\nObtain username." },
359 { "set_username", (PyCFunction)py_creds_set_username, METH_VARARGS,
360 "S.set_username(name, obtained=CRED_SPECIFIED) -> None\n"
361 "Change username." },
362 { "get_password", (PyCFunction)py_creds_get_password, METH_NOARGS,
363 "S.get_password() -> password\n"
364 "Obtain password." },
365 { "set_password", (PyCFunction)py_creds_set_password, METH_VARARGS,
366 "S.set_password(password, obtained=CRED_SPECIFIED) -> None\n"
367 "Change password." },
368 { "get_domain", (PyCFunction)py_creds_get_domain, METH_NOARGS,
369 "S.get_domain() -> domain\n"
370 "Obtain domain name." },
371 { "set_domain", (PyCFunction)py_creds_set_domain, METH_VARARGS,
372 "S.set_domain(domain, obtained=CRED_SPECIFIED) -> None\n"
373 "Change domain name." },
374 { "get_realm", (PyCFunction)py_creds_get_realm, METH_NOARGS,
375 "S.get_realm() -> realm\n"
376 "Obtain realm name." },
377 { "set_realm", (PyCFunction)py_creds_set_realm, METH_VARARGS,
378 "S.set_realm(realm, obtained=CRED_SPECIFIED) -> None\n"
379 "Change realm name." },
380 { "get_bind_dn", (PyCFunction)py_creds_get_bind_dn, METH_NOARGS,
381 "S.get_bind_dn() -> bind dn\n"
382 "Obtain bind DN." },
383 { "set_bind_dn", (PyCFunction)py_creds_set_bind_dn, METH_VARARGS,
384 "S.set_bind_dn(bind_dn) -> None\n"
385 "Change bind DN." },
386 { "is_anonymous", (PyCFunction)py_creds_is_anonymous, METH_NOARGS,
387 NULL },
388 { "set_anonymous", (PyCFunction)py_creds_set_anonymous, METH_NOARGS,
389 "S.set_anonymous() -> None\n"
390 "Use anonymous credentials." },
391 { "get_workstation", (PyCFunction)py_creds_get_workstation, METH_NOARGS,
392 NULL },
393 { "set_workstation", (PyCFunction)py_creds_set_workstation, METH_VARARGS,
394 NULL },
395 { "authentication_requested", (PyCFunction)py_creds_authentication_requested, METH_NOARGS,
396 NULL },
397 { "wrong_password", (PyCFunction)py_creds_wrong_password, METH_NOARGS,
398 "S.wrong_password() -> bool\n"
399 "Indicate the returned password was incorrect." },
400 { "set_cmdline_callbacks", (PyCFunction)py_creds_set_cmdline_callbacks, METH_NOARGS,
401 "S.set_cmdline_callbacks() -> bool\n"
402 "Use command-line to obtain credentials not explicitly set." },
403 { "parse_string", (PyCFunction)py_creds_parse_string, METH_VARARGS,
404 "S.parse_string(text, obtained=CRED_SPECIFIED) -> None\n"
405 "Parse credentials string." },
406 { "get_nt_hash", (PyCFunction)py_creds_get_nt_hash, METH_NOARGS,
407 NULL },
408 { "set_kerberos_state", (PyCFunction)py_creds_set_kerberos_state, METH_VARARGS,
409 NULL },
410 { "set_krb_forwardable", (PyCFunction)py_creds_set_krb_forwardable, METH_VARARGS,
411 NULL },
412 { "guess", (PyCFunction)py_creds_guess, METH_VARARGS, NULL },
413 { "set_machine_account", (PyCFunction)py_creds_set_machine_account, METH_VARARGS, NULL },
414 { "get_named_ccache", (PyCFunction)py_creds_get_named_ccache, METH_VARARGS, NULL },
415 { "set_gensec_features", (PyCFunction)py_creds_set_gensec_features, METH_VARARGS, NULL },
416 { "get_gensec_features", (PyCFunction)py_creds_get_gensec_features, METH_NOARGS, NULL },
417 { NULL }
420 PyTypeObject PyCredentials = {
421 .tp_name = "Credentials",
422 .tp_basicsize = sizeof(py_talloc_Object),
423 .tp_new = py_creds_new,
424 .tp_flags = Py_TPFLAGS_DEFAULT,
425 .tp_methods = py_creds_methods,
429 PyTypeObject PyCredentialCacheContainer = {
430 .tp_name = "CredentialCacheContainer",
431 .tp_basicsize = sizeof(py_talloc_Object),
432 .tp_flags = Py_TPFLAGS_DEFAULT,
435 void initcredentials(void)
437 PyObject *m;
438 PyTypeObject *talloc_type = PyTalloc_GetObjectType();
439 if (talloc_type == NULL)
440 return;
442 PyCredentials.tp_base = PyCredentialCacheContainer.tp_base = talloc_type;
444 if (PyType_Ready(&PyCredentials) < 0)
445 return;
447 if (PyType_Ready(&PyCredentialCacheContainer) < 0)
448 return;
450 m = Py_InitModule3("credentials", NULL, "Credentials management.");
451 if (m == NULL)
452 return;
454 PyModule_AddObject(m, "AUTO_USE_KERBEROS", PyInt_FromLong(CRED_AUTO_USE_KERBEROS));
455 PyModule_AddObject(m, "DONT_USE_KERBEROS", PyInt_FromLong(CRED_DONT_USE_KERBEROS));
456 PyModule_AddObject(m, "MUST_USE_KERBEROS", PyInt_FromLong(CRED_MUST_USE_KERBEROS));
458 PyModule_AddObject(m, "AUTO_KRB_FORWARDABLE", PyInt_FromLong(CRED_AUTO_KRB_FORWARDABLE));
459 PyModule_AddObject(m, "NO_KRB_FORWARDABLE", PyInt_FromLong(CRED_NO_KRB_FORWARDABLE));
460 PyModule_AddObject(m, "FORCE_KRB_FORWARDABLE", PyInt_FromLong(CRED_FORCE_KRB_FORWARDABLE));
462 Py_INCREF(&PyCredentials);
463 PyModule_AddObject(m, "Credentials", (PyObject *)&PyCredentials);
464 Py_INCREF(&PyCredentialCacheContainer);
465 PyModule_AddObject(m, "CredentialCacheContainer", (PyObject *)&PyCredentialCacheContainer);