summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2016-03-01 14:19:33 +1300
committerAndrew Bartlett <abartlet@samba.org>2016-03-08 01:58:29 +0100
commitec5d63f9edcf311b581df4f37a702a54d659d443 (patch)
tree6f98263ce78a69b9ab8d68161807ea0bde4df53f /source4/auth
parent43af1905d578ec6f374f1f67f72c37428ecd361f (diff)
downloadsamba-ec5d63f9edcf311b581df4f37a702a54d659d443.tar.gz
pygensec: Use pytalloc_steal() in gensec_start_{client,server}()
This is better than casting to get to the pytalloc_Object structure directly Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/gensec/pygensec.c72
1 files changed, 31 insertions, 41 deletions
diff --git a/source4/auth/gensec/pygensec.c b/source4/auth/gensec/pygensec.c
index 2c98776ac37..16a5326a290 100644
--- a/source4/auth/gensec/pygensec.c
+++ b/source4/auth/gensec/pygensec.c
@@ -79,43 +79,37 @@ static struct gensec_settings *settings_from_object(TALLOC_CTX *mem_ctx, PyObjec
static PyObject *py_gensec_start_client(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
NTSTATUS status;
- pytalloc_Object *self;
+ PyObject *self;
struct gensec_settings *settings;
const char *kwnames[] = { "settings", NULL };
PyObject *py_settings = Py_None;
struct gensec_security *gensec;
+ TALLOC_CTX *frame;
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O", discard_const_p(char *, kwnames), &py_settings))
return NULL;
- self = (pytalloc_Object*)type->tp_alloc(type, 0);
- if (self == NULL) {
- PyErr_NoMemory();
- return NULL;
- }
- self->talloc_ctx = talloc_new(NULL);
- if (self->talloc_ctx == NULL) {
- PyErr_NoMemory();
- return NULL;
- }
+ frame = talloc_stackframe();
if (py_settings != Py_None) {
- settings = settings_from_object(self->talloc_ctx, py_settings);
+ settings = settings_from_object(frame, py_settings);
if (settings == NULL) {
- PyObject_DEL(self);
+ PyErr_NoMemory();
+ TALLOC_FREE(frame);
return NULL;
}
} else {
- settings = talloc_zero(self->talloc_ctx, struct gensec_settings);
+ settings = talloc_zero(frame, struct gensec_settings);
if (settings == NULL) {
- PyObject_DEL(self);
+ PyErr_NoMemory();
+ TALLOC_FREE(frame);
return NULL;
}
settings->lp_ctx = loadparm_init_global(true);
if (settings->lp_ctx == NULL) {
PyErr_NoMemory();
- PyObject_DEL(self);
+ TALLOC_FREE(frame);
return NULL;
}
}
@@ -123,18 +117,19 @@ static PyObject *py_gensec_start_client(PyTypeObject *type, PyObject *args, PyOb
status = gensec_init();
if (!NT_STATUS_IS_OK(status)) {
PyErr_SetNTSTATUS(status);
- PyObject_DEL(self);
+ TALLOC_FREE(frame);
return NULL;
}
- status = gensec_client_start(self->talloc_ctx, &gensec, settings);
+ status = gensec_client_start(frame, &gensec, settings);
if (!NT_STATUS_IS_OK(status)) {
PyErr_SetNTSTATUS(status);
- PyObject_DEL(self);
+ TALLOC_FREE(frame);
return NULL;
}
- self->ptr = gensec;
+ self = pytalloc_steal(type, gensec);
+ TALLOC_FREE(frame);
return (PyObject *)self;
}
@@ -142,45 +137,39 @@ static PyObject *py_gensec_start_client(PyTypeObject *type, PyObject *args, PyOb
static PyObject *py_gensec_start_server(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
NTSTATUS status;
- pytalloc_Object *self;
+ PyObject *self;
struct gensec_settings *settings = NULL;
const char *kwnames[] = { "settings", "auth_context", NULL };
PyObject *py_settings = Py_None;
PyObject *py_auth_context = Py_None;
struct gensec_security *gensec;
struct auth4_context *auth_context = NULL;
+ TALLOC_CTX *frame;
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OO", discard_const_p(char *, kwnames), &py_settings, &py_auth_context))
return NULL;
- self = (pytalloc_Object*)type->tp_alloc(type, 0);
- if (self == NULL) {
- PyErr_NoMemory();
- return NULL;
- }
- self->talloc_ctx = talloc_new(NULL);
- if (self->talloc_ctx == NULL) {
- PyErr_NoMemory();
- return NULL;
- }
+ frame = talloc_stackframe();
if (py_settings != Py_None) {
- settings = settings_from_object(self->talloc_ctx, py_settings);
+ settings = settings_from_object(frame, py_settings);
if (settings == NULL) {
- PyObject_DEL(self);
+ PyErr_NoMemory();
+ TALLOC_FREE(frame);
return NULL;
}
} else {
- settings = talloc_zero(self->talloc_ctx, struct gensec_settings);
+ settings = talloc_zero(frame, struct gensec_settings);
if (settings == NULL) {
- PyObject_DEL(self);
+ PyErr_NoMemory();
+ TALLOC_FREE(frame);
return NULL;
}
settings->lp_ctx = loadparm_init_global(true);
if (settings->lp_ctx == NULL) {
PyErr_NoMemory();
- PyObject_DEL(self);
+ TALLOC_FREE(frame);
return NULL;
}
}
@@ -198,20 +187,21 @@ static PyObject *py_gensec_start_server(PyTypeObject *type, PyObject *args, PyOb
status = gensec_init();
if (!NT_STATUS_IS_OK(status)) {
PyErr_SetNTSTATUS(status);
- PyObject_DEL(self);
+ TALLOC_FREE(frame);
return NULL;
}
- status = gensec_server_start(self->talloc_ctx, settings, auth_context, &gensec);
+ status = gensec_server_start(frame, settings, auth_context, &gensec);
if (!NT_STATUS_IS_OK(status)) {
PyErr_SetNTSTATUS(status);
- PyObject_DEL(self);
+ TALLOC_FREE(frame);
return NULL;
}
- self->ptr = gensec;
+ self = pytalloc_steal(type, gensec);
+ TALLOC_FREE(frame);
- return (PyObject *)self;
+ return self;
}
static PyObject *py_gensec_set_target_hostname(PyObject *self, PyObject *args)