summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-01-18 19:13:19 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-01-18 10:55:05 +0100
commit24a4b9a7387f75c6d6a922800bef9b2178747f86 (patch)
tree0b5d8f9ea092d8bff2eca11d370a4b64b0386b7d /source4/auth
parent08051ae29e53e83844bffb67bfe8ecf1cf4dc887 (diff)
downloadsamba-24a4b9a7387f75c6d6a922800bef9b2178747f86.tar.gz
samba-24a4b9a7387f75c6d6a922800bef9b2178747f86.tar.bz2
samba-24a4b9a7387f75c6d6a922800bef9b2178747f86.zip
s4-auth Extend python bindings to allow ldb and message to be specified
This will allow for some more tokenGroups tests in future. Andrew Bartlett
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/auth.h1
-rw-r--r--source4/auth/ntlm/auth.c2
-rw-r--r--source4/auth/pyauth.c69
3 files changed, 61 insertions, 11 deletions
diff --git a/source4/auth/auth.h b/source4/auth/auth.h
index 33c398df99..6d3dedefbf 100644
--- a/source4/auth/auth.h
+++ b/source4/auth/auth.h
@@ -233,6 +233,7 @@ NTSTATUS auth_context_create_methods(TALLOC_CTX *mem_ctx, const char **methods,
struct loadparm_context *lp_ctx,
struct ldb_context *sam_ctx,
struct auth_context **auth_ctx);
+const char **auth_methods_from_lp(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx);
NTSTATUS auth_context_create(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
diff --git a/source4/auth/ntlm/auth.c b/source4/auth/ntlm/auth.c
index 0c6c8ef52c..7f355d7055 100644
--- a/source4/auth/ntlm/auth.c
+++ b/source4/auth/ntlm/auth.c
@@ -496,7 +496,7 @@ _PUBLIC_ NTSTATUS auth_context_create_methods(TALLOC_CTX *mem_ctx, const char **
return NT_STATUS_OK;
}
-static const char **auth_methods_from_lp(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
+const char **auth_methods_from_lp(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
{
const char **auth_methods = NULL;
switch (lpcfg_server_role(lp_ctx)) {
diff --git a/source4/auth/pyauth.c b/source4/auth/pyauth.c
index 486d30f3d8..a603053e73 100644
--- a/source4/auth/pyauth.c
+++ b/source4/auth/pyauth.c
@@ -226,6 +226,35 @@ static PyObject *py_user_session(PyObject *module, PyObject *args, PyObject *kwa
return PyAuthSession_FromSession(session);
}
+
+static const char **PyList_AsStringList(TALLOC_CTX *mem_ctx, PyObject *list,
+ const char *paramname)
+{
+ const char **ret;
+ Py_ssize_t i;
+ if (!PyList_Check(list)) {
+ PyErr_Format(PyExc_TypeError, "%s is not a list", paramname);
+ return NULL;
+ }
+ ret = talloc_array(NULL, const char *, PyList_Size(list)+1);
+ if (ret == NULL) {
+ PyErr_NoMemory();
+ return NULL;
+ }
+
+ for (i = 0; i < PyList_Size(list); i++) {
+ PyObject *item = PyList_GetItem(list, i);
+ if (!PyString_Check(item)) {
+ PyErr_Format(PyExc_TypeError, "%s should be strings", paramname);
+ return NULL;
+ }
+ ret[i] = talloc_strndup(ret, PyString_AsString(item),
+ PyString_Size(item));
+ }
+ ret[i] = NULL;
+ return ret;
+}
+
static PyObject *PyAuthContext_FromContext(struct auth_context *auth_context)
{
return py_talloc_reference(&PyAuthContext, auth_context);
@@ -233,21 +262,25 @@ static PyObject *PyAuthContext_FromContext(struct auth_context *auth_context)
static PyObject *py_auth_context_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
- PyObject *py_lp_ctx;
- PyObject *py_messaging_ctx;
- PyObject *py_auth_context;
+ PyObject *py_lp_ctx = Py_None;
+ PyObject *py_ldb = Py_None;
+ PyObject *py_messaging_ctx = Py_None;
+ PyObject *py_auth_context = Py_None;
+ PyObject *py_methods = Py_None;
TALLOC_CTX *mem_ctx;
struct auth_context *auth_context;
struct messaging_context *messaging_context;
struct loadparm_context *lp_ctx;
struct tevent_context *ev;
+ struct ldb_context *ldb;
NTSTATUS nt_status;
+ const char **methods;
- const char * const kwnames[] = { "lp_ctx", "messaging_ctx", NULL };
+ const char * const kwnames[] = { "lp_ctx", "messaging_ctx", "ldb", "methods", NULL };
- if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO",
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OOOO",
discard_const_p(char *, kwnames),
- &py_lp_ctx, &py_messaging_ctx))
+ &py_lp_ctx, &py_messaging_ctx, &py_ldb, &py_methods))
return NULL;
mem_ctx = talloc_new(NULL);
@@ -256,11 +289,12 @@ static PyObject *py_auth_context_new(PyTypeObject *type, PyObject *args, PyObjec
return NULL;
}
- lp_ctx = lpcfg_from_py_object(mem_ctx, py_lp_ctx);
- if (!lp_ctx) {
- return NULL;
+ if (py_ldb != Py_None) {
+ ldb = PyLdb_AsLdbContext(py_ldb);
}
+ lp_ctx = lpcfg_from_py_object(mem_ctx, py_lp_ctx);
+
ev = tevent_context_init(mem_ctx);
if (ev == NULL) {
PyErr_NoMemory();
@@ -269,7 +303,22 @@ static PyObject *py_auth_context_new(PyTypeObject *type, PyObject *args, PyObjec
messaging_context = py_talloc_get_type(py_messaging_ctx, struct messaging_context);
- nt_status = auth_context_create(mem_ctx, ev, messaging_context, lp_ctx, &auth_context);
+ if (py_methods == Py_None && py_ldb == Py_None) {
+ nt_status = auth_context_create(mem_ctx, ev, messaging_context, lp_ctx, &auth_context);
+ } else {
+ if (py_methods != Py_None) {
+ methods = PyList_AsStringList(mem_ctx, py_methods, "methods");
+ if (methods == NULL) {
+ talloc_free(mem_ctx);
+ return NULL;
+ }
+ } else {
+ methods = auth_methods_from_lp(mem_ctx, lp_ctx);
+ }
+ nt_status = auth_context_create_methods(mem_ctx, methods, ev,
+ messaging_context, lp_ctx,
+ ldb, &auth_context);
+ }
if (!NT_STATUS_IS_OK(nt_status)) {
talloc_free(mem_ctx);