summaryrefslogtreecommitdiff
path: root/source3/python/py_ntsec.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-01 04:19:22 +0000
committerTim Potter <tpot@samba.org>2002-05-01 04:19:22 +0000
commitf530f9c25df2d880fd08fe43b51a2a36d53eb88b (patch)
treeef6c24e64dc43549ffb7a8c9f7a0bba77e64558e /source3/python/py_ntsec.c
parent9a1df3d6683c06bbdabc1ae30c2c441905786d2b (diff)
downloadsamba-f530f9c25df2d880fd08fe43b51a2a36d53eb88b.tar.gz
samba-f530f9c25df2d880fd08fe43b51a2a36d53eb88b.tar.bz2
samba-f530f9c25df2d880fd08fe43b51a2a36d53eb88b.zip
Implemented routines to convert from a Python dictionary to a SEC_DESC
structure. Cleaned up debugging stuff. (This used to be commit f3f4f0d3978f90c589894234bbcc63728940a246)
Diffstat (limited to 'source3/python/py_ntsec.c')
-rw-r--r--source3/python/py_ntsec.c76
1 files changed, 38 insertions, 38 deletions
diff --git a/source3/python/py_ntsec.c b/source3/python/py_ntsec.c
index d8ed50379f..f9881f5a55 100644
--- a/source3/python/py_ntsec.c
+++ b/source3/python/py_ntsec.c
@@ -50,12 +50,7 @@ BOOL py_to_SID(DOM_SID *sid, PyObject *obj)
if (!PyString_Check(obj))
return False;
- result = string_to_sid(sid, PyString_AsString(obj));
-
- if (result)
- DEBUG(0, ("py: got sid %s\n", PyString_AsString(obj)));
-
- return result;
+ return string_to_sid(sid, PyString_AsString(obj));
}
BOOL py_from_ACE(PyObject **dict, SEC_ACE *ace)
@@ -96,16 +91,12 @@ BOOL py_to_ACE(SEC_ACE *ace, PyObject *dict)
ace_type = PyInt_AsLong(obj);
- DEBUG(0, ("py: got ace_type %d\n", ace_type));
-
if (!(obj = PyDict_GetItemString(dict, "flags")) ||
!PyInt_Check(obj))
return False;
ace_flags = PyInt_AsLong(obj);
- DEBUG(0, ("py: got ace_flags %d\n", ace_flags));
-
if (!(obj = PyDict_GetItemString(dict, "trustee")) ||
!PyString_Check(obj))
return False;
@@ -113,18 +104,18 @@ BOOL py_to_ACE(SEC_ACE *ace, PyObject *dict)
if (!py_to_SID(&trustee, obj))
return False;
- DEBUG(0, ("py: got trustee\n"));
-
if (!(obj = PyDict_GetItemString(dict, "mask")) ||
!PyInt_Check(obj))
return False;
sec_access.mask = PyInt_AsLong(obj);
- DEBUG(0, ("py: got mask 0x%08x\n", sec_access.mask));
-
init_sec_ace(ace, &trustee, ace_type, sec_access, ace_flags);
+ /* Fill in size field */
+
+ ace->size = SEC_ACE_HEADER_SIZE + sid_size(&trustee);
+
return True;
}
@@ -168,25 +159,22 @@ BOOL py_to_ACL(SEC_ACL *acl, PyObject *dict, TALLOC_CTX *mem_ctx)
acl->revision = PyInt_AsLong(obj);
- DEBUG(0, ("py: got revision %d\n", acl->revision));
-
if (!(obj = PyDict_GetItemString(dict, "ace_list")) ||
!PyList_Check(obj))
return False;
acl->num_aces = PyList_Size(obj);
- DEBUG(0, ("py: got num_aces %d\n", acl->num_aces));
-
acl->ace = talloc(mem_ctx, acl->num_aces * sizeof(SEC_ACE));
+ acl->size = SEC_ACL_HEADER_SIZE;
for (i = 0; i < acl->num_aces; i++) {
PyObject *py_ace = PyList_GetItem(obj, i);
- if (!py_to_ACE(acl->ace, py_ace))
+ if (!py_to_ACE(&acl->ace[i], py_ace))
return False;
- DEBUG(0, ("py: got ace %d\n", i));
+ acl->size += acl->ace[i].size;
}
return True;
@@ -221,8 +209,8 @@ BOOL py_to_SECDESC(SEC_DESC **sd, PyObject *dict, TALLOC_CTX *mem_ctx)
uint16 revision;
DOM_SID owner_sid, group_sid;
SEC_ACL sacl, dacl;
- size_t sd_size;
BOOL got_dacl = False, got_sacl = False;
+ BOOL got_owner_sid = False, got_group_sid = False;
ZERO_STRUCT(dacl); ZERO_STRUCT(sacl);
ZERO_STRUCT(owner_sid); ZERO_STRUCT(group_sid);
@@ -232,29 +220,41 @@ BOOL py_to_SECDESC(SEC_DESC **sd, PyObject *dict, TALLOC_CTX *mem_ctx)
revision = PyInt_AsLong(obj);
- if (!(obj = PyDict_GetItemString(dict, "owner_sid")))
- return False;
+ if ((obj = PyDict_GetItemString(dict, "owner_sid"))) {
- if (!py_to_SID(&owner_sid, obj))
- return False;
+ if (obj != Py_None) {
- if (!(obj = PyDict_GetItemString(dict, "group_sid")))
- return False;
+ if (!py_to_SID(&owner_sid, obj))
+ return False;
- if (!py_to_SID(&group_sid, obj))
- return False;
+ got_owner_sid = True;
+ }
+ }
- if ((obj = PyDict_GetItemString(dict, "dacl"))) {
+ if ((obj = PyDict_GetItemString(dict, "group_sid"))) {
- if (!py_to_ACL(&dacl, obj, mem_ctx))
- return False;
+ if (obj != Py_None) {
- got_dacl = True;
+ if (!py_to_SID(&group_sid, obj))
+ return False;
+
+ got_group_sid = True;
+ }
}
- DEBUG(0, ("py: got dacl\n"));
+ if ((obj = PyDict_GetItemString(dict, "dacl"))) {
+
+ if (obj != Py_None) {
+
+ if (!py_to_ACL(&dacl, obj, mem_ctx))
+ return False;
+
+ got_dacl = True;
+ }
+ }
if ((obj = PyDict_GetItemString(dict, "sacl"))) {
+
if (obj != Py_None) {
if (!py_to_ACL(&sacl, obj, mem_ctx))
@@ -264,11 +264,11 @@ BOOL py_to_SECDESC(SEC_DESC **sd, PyObject *dict, TALLOC_CTX *mem_ctx)
}
}
- DEBUG(0, ("py: got sacl\n"));
-
- *sd = make_sec_desc(mem_ctx, revision, &owner_sid, &group_sid,
+ *sd = make_sec_desc(mem_ctx, revision,
+ got_owner_sid ? &owner_sid : NULL,
+ got_group_sid ? &group_sid : NULL,
got_sacl ? &sacl : NULL,
- got_dacl ? &dacl : NULL, &sd_size);
+ got_dacl ? &dacl : NULL);
return True;
}