2 Unix SMB/CIFS implementation.
3 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2010
4 Copyright (C) Matthias Dieter Wallnöfer 2009
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/>.
24 #include "dsdb/samdb/samdb.h"
25 #include "libcli/security/security.h"
26 #include "librpc/ndr/libndr.h"
27 #include "system/kerberos.h"
28 #include "auth/kerberos/kerberos.h"
29 #include "librpc/rpc/pyrpc_util.h"
30 #include "lib/policy/policy.h"
34 /* There's no Py_ssize_t in 2.4, apparently */
35 #if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION < 5
36 typedef int Py_ssize_t
;
37 typedef inquiry lenfunc
;
38 typedef intargfunc ssizeargfunc
;
41 /* FIXME: These should be in a header file somewhere */
42 #define PyErr_LDB_OR_RAISE(py_ldb, ldb) \
43 /* if (!PyLdb_Check(py_ldb)) { \
44 PyErr_SetString(py_ldb_get_exception(), "Ldb connection object required"); \
47 ldb = pyldb_Ldb_AsLdbContext(py_ldb);
49 static PyObject
*py_ldb_get_exception(void)
51 PyObject
*mod
= PyImport_ImportModule("ldb");
55 return PyObject_GetAttrString(mod
, "LdbError");
58 static void PyErr_SetLdbError(PyObject
*error
, int ret
, struct ldb_context
*ldb_ctx
)
60 if (ret
== LDB_ERR_PYTHON_EXCEPTION
)
61 return; /* Python exception should already be set, just keep that */
63 PyErr_SetObject(error
,
64 Py_BuildValue(discard_const_p(char, "(i,s)"), ret
,
65 ldb_ctx
== NULL
?ldb_strerror(ret
):ldb_errstring(ldb_ctx
)));
68 static PyObject
*py_samdb_server_site_name(PyObject
*self
, PyObject
*args
)
70 PyObject
*py_ldb
, *result
;
71 struct ldb_context
*ldb
;
75 if (!PyArg_ParseTuple(args
, "O", &py_ldb
))
78 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
80 mem_ctx
= talloc_new(NULL
);
81 if (mem_ctx
== NULL
) {
86 site
= samdb_server_site_name(ldb
, mem_ctx
);
88 PyErr_SetString(PyExc_RuntimeError
, "Failed to find server site");
93 result
= PyString_FromString(site
);
98 static PyObject
*py_dsdb_convert_schema_to_openldap(PyObject
*self
,
101 char *target_str
, *mapping
;
103 struct ldb_context
*ldb
;
107 if (!PyArg_ParseTuple(args
, "Oss", &py_ldb
, &target_str
, &mapping
))
110 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
112 retstr
= dsdb_convert_schema_to_openldap(ldb
, target_str
, mapping
);
113 if (retstr
== NULL
) {
114 PyErr_SetString(PyExc_RuntimeError
,
115 "dsdb_convert_schema_to_openldap failed");
119 ret
= PyString_FromString(retstr
);
124 static PyObject
*py_samdb_set_domain_sid(PyLdbObject
*self
, PyObject
*args
)
126 PyObject
*py_ldb
, *py_sid
;
127 struct ldb_context
*ldb
;
131 if (!PyArg_ParseTuple(args
, "OO", &py_ldb
, &py_sid
))
134 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
136 sid
= dom_sid_parse_talloc(NULL
, PyString_AsString(py_sid
));
142 ret
= samdb_set_domain_sid(ldb
, sid
);
145 PyErr_SetString(PyExc_RuntimeError
, "set_domain_sid failed");
151 static PyObject
*py_samdb_set_ntds_settings_dn(PyLdbObject
*self
, PyObject
*args
)
153 PyObject
*py_ldb
, *py_ntds_settings_dn
;
154 struct ldb_context
*ldb
;
155 struct ldb_dn
*ntds_settings_dn
;
159 if (!PyArg_ParseTuple(args
, "OO", &py_ldb
, &py_ntds_settings_dn
))
162 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
164 tmp_ctx
= talloc_new(NULL
);
165 if (tmp_ctx
== NULL
) {
170 if (!pyldb_Object_AsDn(tmp_ctx
, py_ntds_settings_dn
, ldb
, &ntds_settings_dn
)) {
171 /* exception thrown by "pyldb_Object_AsDn" */
172 talloc_free(tmp_ctx
);
176 ret
= samdb_set_ntds_settings_dn(ldb
, ntds_settings_dn
);
177 talloc_free(tmp_ctx
);
179 PyErr_SetString(PyExc_RuntimeError
, "set_ntds_settings_dn failed");
185 static PyObject
*py_samdb_get_domain_sid(PyLdbObject
*self
, PyObject
*args
)
188 struct ldb_context
*ldb
;
189 const struct dom_sid
*sid
;
193 if (!PyArg_ParseTuple(args
, "O", &py_ldb
))
196 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
198 sid
= samdb_domain_sid(ldb
);
200 PyErr_SetString(PyExc_RuntimeError
, "samdb_domain_sid failed");
204 retstr
= dom_sid_string(NULL
, sid
);
205 if (retstr
== NULL
) {
209 ret
= PyString_FromString(retstr
);
214 static PyObject
*py_samdb_ntds_invocation_id(PyObject
*self
, PyObject
*args
)
216 PyObject
*py_ldb
, *result
;
217 struct ldb_context
*ldb
;
218 const struct GUID
*guid
;
221 if (!PyArg_ParseTuple(args
, "O", &py_ldb
)) {
225 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
227 guid
= samdb_ntds_invocation_id(ldb
);
229 PyErr_SetString(PyExc_RuntimeError
,
230 "Failed to find NTDS invocation ID");
234 retstr
= GUID_string(NULL
, guid
);
235 if (retstr
== NULL
) {
239 result
= PyString_FromString(retstr
);
244 static PyObject
*py_dsdb_get_oid_from_attid(PyObject
*self
, PyObject
*args
)
247 struct ldb_context
*ldb
;
249 struct dsdb_schema
*schema
;
255 if (!PyArg_ParseTuple(args
, "Oi", &py_ldb
, &attid
))
258 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
260 mem_ctx
= talloc_new(NULL
);
266 schema
= dsdb_get_schema(ldb
, mem_ctx
);
268 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb \n");
269 talloc_free(mem_ctx
);
273 status
= dsdb_schema_pfm_oid_from_attid(schema
->prefixmap
, attid
,
275 if (!W_ERROR_IS_OK(status
)) {
276 PyErr_SetWERROR(status
);
277 talloc_free(mem_ctx
);
281 ret
= PyString_FromString(oid
);
283 talloc_free(mem_ctx
);
289 static PyObject
*py_dsdb_get_attid_from_lDAPDisplayName(PyObject
*self
, PyObject
*args
)
291 PyObject
*py_ldb
, *is_schema_nc
;
292 struct ldb_context
*ldb
;
293 struct dsdb_schema
*schema
;
294 const char *ldap_display_name
;
295 bool schema_nc
= false;
296 const struct dsdb_attribute
*a
;
299 if (!PyArg_ParseTuple(args
, "OsO", &py_ldb
, &ldap_display_name
, &is_schema_nc
))
302 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
305 if (!PyBool_Check(is_schema_nc
)) {
306 PyErr_SetString(PyExc_TypeError
, "Expected boolean is_schema_nc");
309 if (is_schema_nc
== Py_True
) {
314 schema
= dsdb_get_schema(ldb
, NULL
);
317 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
321 a
= dsdb_attribute_by_lDAPDisplayName(schema
, ldap_display_name
);
323 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '%s'", ldap_display_name
);
327 attid
= dsdb_attribute_get_attid(a
, schema_nc
);
329 return PyLong_FromUnsignedLong(attid
);
333 return the systemFlags as int from the attribute name
335 static PyObject
*py_dsdb_get_systemFlags_from_lDAPDisplayName(PyObject
*self
, PyObject
*args
)
338 struct ldb_context
*ldb
;
339 struct dsdb_schema
*schema
;
340 const char *ldap_display_name
;
341 const struct dsdb_attribute
*attribute
;
343 if (!PyArg_ParseTuple(args
, "Os", &py_ldb
, &ldap_display_name
))
346 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
348 schema
= dsdb_get_schema(ldb
, NULL
);
351 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
355 attribute
= dsdb_attribute_by_lDAPDisplayName(schema
, ldap_display_name
);
356 if (attribute
== NULL
) {
357 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '%s'", ldap_display_name
);
361 return PyInt_FromLong(attribute
->systemFlags
);
365 return the linkID from the attribute name
367 static PyObject
*py_dsdb_get_linkId_from_lDAPDisplayName(PyObject
*self
, PyObject
*args
)
370 struct ldb_context
*ldb
;
371 struct dsdb_schema
*schema
;
372 const char *ldap_display_name
;
373 const struct dsdb_attribute
*attribute
;
375 if (!PyArg_ParseTuple(args
, "Os", &py_ldb
, &ldap_display_name
))
378 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
380 schema
= dsdb_get_schema(ldb
, NULL
);
383 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
387 attribute
= dsdb_attribute_by_lDAPDisplayName(schema
, ldap_display_name
);
388 if (attribute
== NULL
) {
389 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '%s'", ldap_display_name
);
393 return PyInt_FromLong(attribute
->linkID
);
397 return the backlink attribute name (if any) for an attribute
399 static PyObject
*py_dsdb_get_backlink_from_lDAPDisplayName(PyObject
*self
, PyObject
*args
)
402 struct ldb_context
*ldb
;
403 struct dsdb_schema
*schema
;
404 const char *ldap_display_name
;
405 const struct dsdb_attribute
*attribute
, *target_attr
;
407 if (!PyArg_ParseTuple(args
, "Os", &py_ldb
, &ldap_display_name
))
410 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
412 schema
= dsdb_get_schema(ldb
, NULL
);
415 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
419 attribute
= dsdb_attribute_by_lDAPDisplayName(schema
, ldap_display_name
);
420 if (attribute
== NULL
) {
421 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '%s'", ldap_display_name
);
425 if (attribute
->linkID
== 0) {
429 target_attr
= dsdb_attribute_by_linkID(schema
, attribute
->linkID
^ 1);
430 if (target_attr
== NULL
) {
431 /* when we add pseudo-backlinks we'll need to handle
436 return PyString_FromString(target_attr
->lDAPDisplayName
);
440 static PyObject
*py_dsdb_get_lDAPDisplayName_by_attid(PyObject
*self
, PyObject
*args
)
443 struct ldb_context
*ldb
;
444 struct dsdb_schema
*schema
;
445 const struct dsdb_attribute
*a
;
448 if (!PyArg_ParseTuple(args
, "Oi", &py_ldb
, &attid
))
451 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
453 schema
= dsdb_get_schema(ldb
, NULL
);
456 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
460 a
= dsdb_attribute_by_attributeID_id(schema
, attid
);
462 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '0x%08x'", attid
);
466 return PyString_FromString(a
->lDAPDisplayName
);
471 return the attribute syntax oid as a string from the attribute name
473 static PyObject
*py_dsdb_get_syntax_oid_from_lDAPDisplayName(PyObject
*self
, PyObject
*args
)
476 struct ldb_context
*ldb
;
477 struct dsdb_schema
*schema
;
478 const char *ldap_display_name
;
479 const struct dsdb_attribute
*attribute
;
481 if (!PyArg_ParseTuple(args
, "Os", &py_ldb
, &ldap_display_name
))
484 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
486 schema
= dsdb_get_schema(ldb
, NULL
);
489 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
493 attribute
= dsdb_attribute_by_lDAPDisplayName(schema
, ldap_display_name
);
494 if (attribute
== NULL
) {
495 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '%s'", ldap_display_name
);
499 return PyString_FromString(attribute
->syntax
->ldap_oid
);
503 convert a python string to a DRSUAPI drsuapi_DsReplicaAttribute attribute
505 static PyObject
*py_dsdb_DsReplicaAttribute(PyObject
*self
, PyObject
*args
)
507 PyObject
*py_ldb
, *el_list
, *ret
;
508 struct ldb_context
*ldb
;
509 char *ldap_display_name
;
510 const struct dsdb_attribute
*a
;
511 struct dsdb_schema
*schema
;
512 struct dsdb_syntax_ctx syntax_ctx
;
513 struct ldb_message_element
*el
;
514 struct drsuapi_DsReplicaAttribute
*attr
;
519 if (!PyArg_ParseTuple(args
, "OsO", &py_ldb
, &ldap_display_name
, &el_list
)) {
523 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
525 if (!PyList_Check(el_list
)) {
526 PyErr_Format(PyExc_TypeError
, "ldif_elements must be a list");
530 schema
= dsdb_get_schema(ldb
, NULL
);
532 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
536 a
= dsdb_attribute_by_lDAPDisplayName(schema
, ldap_display_name
);
538 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '%s'", ldap_display_name
);
542 dsdb_syntax_ctx_init(&syntax_ctx
, ldb
, schema
);
543 syntax_ctx
.is_schema_nc
= false;
545 tmp_ctx
= talloc_new(ldb
);
546 if (tmp_ctx
== NULL
) {
551 el
= talloc_zero(tmp_ctx
, struct ldb_message_element
);
554 talloc_free(tmp_ctx
);
558 el
->name
= ldap_display_name
;
559 el
->num_values
= PyList_Size(el_list
);
561 el
->values
= talloc_array(el
, struct ldb_val
, el
->num_values
);
562 if (el
->values
== NULL
) {
564 talloc_free(tmp_ctx
);
568 for (i
= 0; i
< el
->num_values
; i
++) {
569 PyObject
*item
= PyList_GetItem(el_list
, i
);
570 if (!PyString_Check(item
)) {
571 PyErr_Format(PyExc_TypeError
, "ldif_elements should be strings");
574 el
->values
[i
].data
= (uint8_t *)PyString_AsString(item
);
575 el
->values
[i
].length
= PyString_Size(item
);
578 attr
= talloc_zero(tmp_ctx
, struct drsuapi_DsReplicaAttribute
);
581 talloc_free(tmp_ctx
);
585 werr
= a
->syntax
->ldb_to_drsuapi(&syntax_ctx
, a
, el
, attr
, attr
);
586 PyErr_WERROR_IS_ERR_RAISE(werr
);
588 ret
= py_return_ndr_struct("samba.dcerpc.drsuapi", "DsReplicaAttribute", attr
, attr
);
590 talloc_free(tmp_ctx
);
597 normalise a ldb attribute list
599 static PyObject
*py_dsdb_normalise_attributes(PyObject
*self
, PyObject
*args
)
601 PyObject
*py_ldb
, *el_list
, *ret
;
602 struct ldb_context
*ldb
;
603 char *ldap_display_name
;
604 const struct dsdb_attribute
*a
;
605 struct dsdb_schema
*schema
;
606 struct dsdb_syntax_ctx syntax_ctx
;
607 struct ldb_message_element
*el
;
608 struct drsuapi_DsReplicaAttribute
*attr
;
613 if (!PyArg_ParseTuple(args
, "OsO", &py_ldb
, &ldap_display_name
, &el_list
)) {
617 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
619 if (!PyList_Check(el_list
)) {
620 PyErr_Format(PyExc_TypeError
, "ldif_elements must be a list");
624 schema
= dsdb_get_schema(ldb
, NULL
);
626 PyErr_SetString(PyExc_RuntimeError
, "Failed to find a schema from ldb");
630 a
= dsdb_attribute_by_lDAPDisplayName(schema
, ldap_display_name
);
632 PyErr_Format(PyExc_RuntimeError
, "Failed to find attribute '%s'", ldap_display_name
);
636 dsdb_syntax_ctx_init(&syntax_ctx
, ldb
, schema
);
637 syntax_ctx
.is_schema_nc
= false;
639 tmp_ctx
= talloc_new(ldb
);
640 if (tmp_ctx
== NULL
) {
645 el
= talloc_zero(tmp_ctx
, struct ldb_message_element
);
648 talloc_free(tmp_ctx
);
652 el
->name
= ldap_display_name
;
653 el
->num_values
= PyList_Size(el_list
);
655 el
->values
= talloc_array(el
, struct ldb_val
, el
->num_values
);
656 if (el
->values
== NULL
) {
658 talloc_free(tmp_ctx
);
662 for (i
= 0; i
< el
->num_values
; i
++) {
663 PyObject
*item
= PyList_GetItem(el_list
, i
);
664 if (!PyString_Check(item
)) {
665 PyErr_Format(PyExc_TypeError
, "ldif_elements should be strings");
668 el
->values
[i
].data
= (uint8_t *)PyString_AsString(item
);
669 el
->values
[i
].length
= PyString_Size(item
);
672 /* first run ldb_to_drsuapi, then convert back again. This has
673 * the effect of normalising the attributes
676 attr
= talloc_zero(tmp_ctx
, struct drsuapi_DsReplicaAttribute
);
679 talloc_free(tmp_ctx
);
683 werr
= a
->syntax
->ldb_to_drsuapi(&syntax_ctx
, a
, el
, attr
, attr
);
684 PyErr_WERROR_IS_ERR_RAISE(werr
);
686 /* now convert back again */
687 werr
= a
->syntax
->drsuapi_to_ldb(&syntax_ctx
, a
, attr
, el
, el
);
688 PyErr_WERROR_IS_ERR_RAISE(werr
);
690 ret
= py_return_ndr_struct("ldb", "MessageElement", el
, el
);
692 talloc_free(tmp_ctx
);
698 static PyObject
*py_dsdb_set_ntds_invocation_id(PyObject
*self
, PyObject
*args
)
700 PyObject
*py_ldb
, *py_guid
;
703 struct ldb_context
*ldb
;
704 if (!PyArg_ParseTuple(args
, "OO", &py_ldb
, &py_guid
))
707 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
708 GUID_from_string(PyString_AsString(py_guid
), &guid
);
710 ret
= samdb_set_ntds_invocation_id(ldb
, &guid
);
712 PyErr_SetString(PyExc_RuntimeError
, "set_ntds_invocation_id failed");
718 static PyObject
*py_samdb_ntds_objectGUID(PyObject
*self
, PyObject
*args
)
720 PyObject
*py_ldb
, *result
;
721 struct ldb_context
*ldb
;
722 const struct GUID
*guid
;
725 if (!PyArg_ParseTuple(args
, "O", &py_ldb
)) {
729 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
731 guid
= samdb_ntds_objectGUID(ldb
);
733 PyErr_SetString(PyExc_RuntimeError
, "Failed to find NTDS GUID");
737 retstr
= GUID_string(NULL
, guid
);
738 if (retstr
== NULL
) {
742 result
= PyString_FromString(retstr
);
747 static PyObject
*py_dsdb_set_global_schema(PyObject
*self
, PyObject
*args
)
750 struct ldb_context
*ldb
;
752 if (!PyArg_ParseTuple(args
, "O", &py_ldb
))
755 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
757 ret
= dsdb_set_global_schema(ldb
);
758 PyErr_LDB_ERROR_IS_ERR_RAISE(py_ldb_get_exception(), ret
, ldb
);
763 static PyObject
*py_dsdb_load_partition_usn(PyObject
*self
, PyObject
*args
)
765 PyObject
*py_dn
, *py_ldb
, *result
;
767 uint64_t highest_uSN
, urgent_uSN
;
768 struct ldb_context
*ldb
;
772 if (!PyArg_ParseTuple(args
, "OO", &py_ldb
, &py_dn
)) {
776 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
778 mem_ctx
= talloc_new(NULL
);
779 if (mem_ctx
== NULL
) {
784 if (!pyldb_Object_AsDn(mem_ctx
, py_dn
, ldb
, &dn
)) {
785 talloc_free(mem_ctx
);
789 ret
= dsdb_load_partition_usn(ldb
, dn
, &highest_uSN
, &urgent_uSN
);
790 if (ret
!= LDB_SUCCESS
) {
791 PyErr_Format(PyExc_RuntimeError
,
792 "Failed to load partition [%s] uSN - %s",
793 ldb_dn_get_linearized(dn
),
795 talloc_free(mem_ctx
);
799 talloc_free(mem_ctx
);
801 result
= PyDict_New();
803 PyDict_SetItemString(result
, "uSNHighest", PyInt_FromLong((uint64_t)highest_uSN
));
804 PyDict_SetItemString(result
, "uSNUrgent", PyInt_FromLong((uint64_t)urgent_uSN
));
810 static PyObject
*py_dsdb_set_am_rodc(PyObject
*self
, PyObject
*args
)
814 struct ldb_context
*ldb
;
817 if (!PyArg_ParseTuple(args
, "Oi", &py_ldb
, &py_val
))
820 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
821 ret
= samdb_set_am_rodc(ldb
, (bool)py_val
);
823 PyErr_SetString(PyExc_RuntimeError
, "set_am_rodc failed");
829 static PyObject
*py_dsdb_set_schema_from_ldif(PyObject
*self
, PyObject
*args
)
834 struct ldb_context
*ldb
;
836 if (!PyArg_ParseTuple(args
, "Osss", &py_ldb
, &pf
, &df
, &dn
))
839 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
841 result
= dsdb_set_schema_from_ldif(ldb
, pf
, df
, dn
);
842 PyErr_WERROR_IS_ERR_RAISE(result
);
847 static PyObject
*py_dsdb_set_schema_from_ldb(PyObject
*self
, PyObject
*args
)
850 struct ldb_context
*ldb
;
851 PyObject
*py_from_ldb
;
852 struct ldb_context
*from_ldb
;
853 struct dsdb_schema
*schema
;
855 if (!PyArg_ParseTuple(args
, "OO", &py_ldb
, &py_from_ldb
))
858 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
860 PyErr_LDB_OR_RAISE(py_from_ldb
, from_ldb
);
862 schema
= dsdb_get_schema(from_ldb
, NULL
);
864 PyErr_SetString(PyExc_RuntimeError
, "Failed to set find a schema on 'from' ldb!\n");
868 ret
= dsdb_reference_schema(ldb
, schema
, true);
869 PyErr_LDB_ERROR_IS_ERR_RAISE(py_ldb_get_exception(), ret
, ldb
);
874 static PyObject
*py_dsdb_write_prefixes_from_schema_to_ldb(PyObject
*self
, PyObject
*args
)
877 struct ldb_context
*ldb
;
879 struct dsdb_schema
*schema
;
881 if (!PyArg_ParseTuple(args
, "O", &py_ldb
))
884 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
886 schema
= dsdb_get_schema(ldb
, NULL
);
888 PyErr_SetString(PyExc_RuntimeError
, "Failed to set find a schema on ldb!\n");
892 result
= dsdb_write_prefixes_from_schema_to_ldb(NULL
, ldb
, schema
);
893 PyErr_WERROR_IS_ERR_RAISE(result
);
899 static PyObject
*py_dsdb_get_partitions_dn(PyObject
*self
, PyObject
*args
)
901 struct ldb_context
*ldb
;
903 PyObject
*py_ldb
, *ret
;
906 mod
= PyImport_ImportModule("ldb");
908 if (!PyArg_ParseTuple(args
, "O", &py_ldb
))
911 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
913 dn
= samdb_partitions_dn(ldb
, NULL
);
918 ret
= pyldb_Dn_FromDn(dn
);
925 call into samdb_rodc()
927 static PyObject
*py_dsdb_am_rodc(PyObject
*self
, PyObject
*args
)
930 struct ldb_context
*ldb
;
934 if (!PyArg_ParseTuple(args
, "O", &py_ldb
))
937 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
939 ret
= samdb_rodc(ldb
, &am_rodc
);
940 if (ret
!= LDB_SUCCESS
) {
941 PyErr_SetString(PyExc_RuntimeError
, ldb_errstring(ldb
));
945 return PyBool_FromLong(am_rodc
);
949 call into samdb_is_pdc()
951 static PyObject
*py_dsdb_am_pdc(PyObject
*self
, PyObject
*args
)
954 struct ldb_context
*ldb
;
958 if (!PyArg_ParseTuple(args
, "O", &py_ldb
))
961 PyErr_LDB_OR_RAISE(py_ldb
, ldb
);
963 am_pdc
= samdb_is_pdc(ldb
);
964 return PyBool_FromLong(am_pdc
);
968 static PyMethodDef py_dsdb_methods
[] = {
969 { "_samdb_server_site_name", (PyCFunction
)py_samdb_server_site_name
,
970 METH_VARARGS
, "Get the server site name as a string"},
971 { "_dsdb_convert_schema_to_openldap",
972 (PyCFunction
)py_dsdb_convert_schema_to_openldap
, METH_VARARGS
,
973 "dsdb_convert_schema_to_openldap(ldb, target_str, mapping) -> str\n"
974 "Create an OpenLDAP schema from a schema." },
975 { "_samdb_set_domain_sid", (PyCFunction
)py_samdb_set_domain_sid
,
977 "samdb_set_domain_sid(samdb, sid)\n"
978 "Set SID of domain to use." },
979 { "_samdb_get_domain_sid", (PyCFunction
)py_samdb_get_domain_sid
,
981 "samdb_get_domain_sid(samdb)\n"
982 "Get SID of domain in use." },
983 { "_samdb_ntds_invocation_id", (PyCFunction
)py_samdb_ntds_invocation_id
,
984 METH_VARARGS
, "get the NTDS invocation ID GUID as a string"},
985 { "_samdb_set_ntds_settings_dn", (PyCFunction
)py_samdb_set_ntds_settings_dn
,
987 "samdb_set_ntds_settings_dn(samdb, ntds_settings_dn)\n"
988 "Set NTDS Settings DN for this LDB (allows it to be set before the DB fully exists)." },
989 { "_dsdb_get_oid_from_attid", (PyCFunction
)py_dsdb_get_oid_from_attid
,
990 METH_VARARGS
, NULL
},
991 { "_dsdb_get_attid_from_lDAPDisplayName", (PyCFunction
)py_dsdb_get_attid_from_lDAPDisplayName
,
992 METH_VARARGS
, NULL
},
993 { "_dsdb_get_syntax_oid_from_lDAPDisplayName", (PyCFunction
)py_dsdb_get_syntax_oid_from_lDAPDisplayName
,
994 METH_VARARGS
, NULL
},
995 { "_dsdb_get_systemFlags_from_lDAPDisplayName", (PyCFunction
)py_dsdb_get_systemFlags_from_lDAPDisplayName
,
996 METH_VARARGS
, NULL
},
997 { "_dsdb_get_linkId_from_lDAPDisplayName", (PyCFunction
)py_dsdb_get_linkId_from_lDAPDisplayName
,
998 METH_VARARGS
, NULL
},
999 { "_dsdb_get_lDAPDisplayName_by_attid", (PyCFunction
)py_dsdb_get_lDAPDisplayName_by_attid
,
1000 METH_VARARGS
, NULL
},
1001 { "_dsdb_get_backlink_from_lDAPDisplayName", (PyCFunction
)py_dsdb_get_backlink_from_lDAPDisplayName
,
1002 METH_VARARGS
, NULL
},
1003 { "_dsdb_set_ntds_invocation_id",
1004 (PyCFunction
)py_dsdb_set_ntds_invocation_id
, METH_VARARGS
,
1006 { "_samdb_ntds_objectGUID", (PyCFunction
)py_samdb_ntds_objectGUID
,
1007 METH_VARARGS
, "get the NTDS objectGUID as a string"},
1008 { "_dsdb_set_global_schema", (PyCFunction
)py_dsdb_set_global_schema
,
1009 METH_VARARGS
, NULL
},
1010 { "_dsdb_load_partition_usn", (PyCFunction
)py_dsdb_load_partition_usn
,
1012 "get uSNHighest and uSNUrgent from the partition @REPLCHANGED"},
1013 { "_dsdb_set_am_rodc",
1014 (PyCFunction
)py_dsdb_set_am_rodc
, METH_VARARGS
,
1017 (PyCFunction
)py_dsdb_am_rodc
, METH_VARARGS
,
1020 (PyCFunction
)py_dsdb_am_pdc
, METH_VARARGS
,
1022 { "_dsdb_set_schema_from_ldif", (PyCFunction
)py_dsdb_set_schema_from_ldif
, METH_VARARGS
,
1024 { "_dsdb_set_schema_from_ldb", (PyCFunction
)py_dsdb_set_schema_from_ldb
, METH_VARARGS
,
1026 { "_dsdb_write_prefixes_from_schema_to_ldb", (PyCFunction
)py_dsdb_write_prefixes_from_schema_to_ldb
, METH_VARARGS
,
1028 { "_dsdb_get_partitions_dn", (PyCFunction
)py_dsdb_get_partitions_dn
, METH_VARARGS
, NULL
},
1029 { "_dsdb_DsReplicaAttribute", (PyCFunction
)py_dsdb_DsReplicaAttribute
, METH_VARARGS
, NULL
},
1030 { "_dsdb_normalise_attributes", (PyCFunction
)py_dsdb_normalise_attributes
, METH_VARARGS
, NULL
},
1038 m
= Py_InitModule3("dsdb", py_dsdb_methods
,
1039 "Python bindings for the directory service databases.");
1043 #define ADD_DSDB_FLAG(val) PyModule_AddObject(m, #val, PyInt_FromLong(val))
1045 /* "userAccountControl" flags */
1046 ADD_DSDB_FLAG(UF_NORMAL_ACCOUNT
);
1047 ADD_DSDB_FLAG(UF_TEMP_DUPLICATE_ACCOUNT
);
1048 ADD_DSDB_FLAG(UF_SERVER_TRUST_ACCOUNT
);
1049 ADD_DSDB_FLAG(UF_WORKSTATION_TRUST_ACCOUNT
);
1050 ADD_DSDB_FLAG(UF_INTERDOMAIN_TRUST_ACCOUNT
);
1051 ADD_DSDB_FLAG(UF_PASSWD_NOTREQD
);
1052 ADD_DSDB_FLAG(UF_ACCOUNTDISABLE
);
1054 ADD_DSDB_FLAG(UF_SCRIPT
);
1055 ADD_DSDB_FLAG(UF_ACCOUNTDISABLE
);
1056 ADD_DSDB_FLAG(UF_00000004
);
1057 ADD_DSDB_FLAG(UF_HOMEDIR_REQUIRED
);
1058 ADD_DSDB_FLAG(UF_LOCKOUT
);
1059 ADD_DSDB_FLAG(UF_PASSWD_NOTREQD
);
1060 ADD_DSDB_FLAG(UF_PASSWD_CANT_CHANGE
);
1061 ADD_DSDB_FLAG(UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED
);
1062 ADD_DSDB_FLAG(UF_TEMP_DUPLICATE_ACCOUNT
);
1063 ADD_DSDB_FLAG(UF_NORMAL_ACCOUNT
);
1064 ADD_DSDB_FLAG(UF_00000400
);
1065 ADD_DSDB_FLAG(UF_INTERDOMAIN_TRUST_ACCOUNT
);
1066 ADD_DSDB_FLAG(UF_WORKSTATION_TRUST_ACCOUNT
);
1067 ADD_DSDB_FLAG(UF_SERVER_TRUST_ACCOUNT
);
1068 ADD_DSDB_FLAG(UF_00004000
);
1069 ADD_DSDB_FLAG(UF_00008000
);
1070 ADD_DSDB_FLAG(UF_DONT_EXPIRE_PASSWD
);
1071 ADD_DSDB_FLAG(UF_MNS_LOGON_ACCOUNT
);
1072 ADD_DSDB_FLAG(UF_SMARTCARD_REQUIRED
);
1073 ADD_DSDB_FLAG(UF_TRUSTED_FOR_DELEGATION
);
1074 ADD_DSDB_FLAG(UF_NOT_DELEGATED
);
1075 ADD_DSDB_FLAG(UF_USE_DES_KEY_ONLY
);
1076 ADD_DSDB_FLAG(UF_DONT_REQUIRE_PREAUTH
);
1077 ADD_DSDB_FLAG(UF_PASSWORD_EXPIRED
);
1078 ADD_DSDB_FLAG(UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION
);
1079 ADD_DSDB_FLAG(UF_NO_AUTH_DATA_REQUIRED
);
1080 ADD_DSDB_FLAG(UF_PARTIAL_SECRETS_ACCOUNT
);
1082 /* groupType flags */
1083 ADD_DSDB_FLAG(GTYPE_SECURITY_BUILTIN_LOCAL_GROUP
);
1084 ADD_DSDB_FLAG(GTYPE_SECURITY_GLOBAL_GROUP
);
1085 ADD_DSDB_FLAG(GTYPE_SECURITY_DOMAIN_LOCAL_GROUP
);
1086 ADD_DSDB_FLAG(GTYPE_SECURITY_UNIVERSAL_GROUP
);
1087 ADD_DSDB_FLAG(GTYPE_DISTRIBUTION_GLOBAL_GROUP
);
1088 ADD_DSDB_FLAG(GTYPE_DISTRIBUTION_DOMAIN_LOCAL_GROUP
);
1089 ADD_DSDB_FLAG(GTYPE_DISTRIBUTION_UNIVERSAL_GROUP
);
1091 /* "sAMAccountType" flags */
1092 ADD_DSDB_FLAG(ATYPE_NORMAL_ACCOUNT
);
1093 ADD_DSDB_FLAG(ATYPE_WORKSTATION_TRUST
);
1094 ADD_DSDB_FLAG(ATYPE_INTERDOMAIN_TRUST
);
1095 ADD_DSDB_FLAG(ATYPE_SECURITY_GLOBAL_GROUP
);
1096 ADD_DSDB_FLAG(ATYPE_SECURITY_LOCAL_GROUP
);
1097 ADD_DSDB_FLAG(ATYPE_SECURITY_UNIVERSAL_GROUP
);
1098 ADD_DSDB_FLAG(ATYPE_DISTRIBUTION_GLOBAL_GROUP
);
1099 ADD_DSDB_FLAG(ATYPE_DISTRIBUTION_LOCAL_GROUP
);
1100 ADD_DSDB_FLAG(ATYPE_DISTRIBUTION_UNIVERSAL_GROUP
);
1102 /* "domainFunctionality", "forestFunctionality" flags in the rootDSE */
1103 ADD_DSDB_FLAG(DS_DOMAIN_FUNCTION_2000
);
1104 ADD_DSDB_FLAG(DS_DOMAIN_FUNCTION_2003_MIXED
);
1105 ADD_DSDB_FLAG(DS_DOMAIN_FUNCTION_2003
);
1106 ADD_DSDB_FLAG(DS_DOMAIN_FUNCTION_2008
);
1107 ADD_DSDB_FLAG(DS_DOMAIN_FUNCTION_2008_R2
);
1109 /* nc replica flags */
1110 ADD_DSDB_FLAG(INSTANCE_TYPE_IS_NC_HEAD
);
1111 ADD_DSDB_FLAG(INSTANCE_TYPE_UNINSTANT
);
1112 ADD_DSDB_FLAG(INSTANCE_TYPE_WRITE
);
1113 ADD_DSDB_FLAG(INSTANCE_TYPE_NC_ABOVE
);
1114 ADD_DSDB_FLAG(INSTANCE_TYPE_NC_COMING
);
1115 ADD_DSDB_FLAG(INSTANCE_TYPE_NC_GOING
);
1118 ADD_DSDB_FLAG(SYSTEM_FLAG_CR_NTDS_NC
);
1119 ADD_DSDB_FLAG(SYSTEM_FLAG_CR_NTDS_DOMAIN
);
1120 ADD_DSDB_FLAG(SYSTEM_FLAG_CR_NTDS_NOT_GC_REPLICATED
);
1121 ADD_DSDB_FLAG(SYSTEM_FLAG_SCHEMA_BASE_OBJECT
);
1122 ADD_DSDB_FLAG(SYSTEM_FLAG_ATTR_IS_RDN
);
1123 ADD_DSDB_FLAG(SYSTEM_FLAG_DISALLOW_MOVE_ON_DELETE
);
1124 ADD_DSDB_FLAG(SYSTEM_FLAG_DOMAIN_DISALLOW_MOVE
);
1125 ADD_DSDB_FLAG(SYSTEM_FLAG_DOMAIN_DISALLOW_RENAME
);
1126 ADD_DSDB_FLAG(SYSTEM_FLAG_CONFIG_ALLOW_LIMITED_MOVE
);
1127 ADD_DSDB_FLAG(SYSTEM_FLAG_CONFIG_ALLOW_MOVE
);
1128 ADD_DSDB_FLAG(SYSTEM_FLAG_CONFIG_ALLOW_RENAME
);
1129 ADD_DSDB_FLAG(SYSTEM_FLAG_DISALLOW_DELETE
);
1131 /* Kerberos encryption type constants */
1132 ADD_DSDB_FLAG(ENC_ALL_TYPES
);
1133 ADD_DSDB_FLAG(ENC_CRC32
);
1134 ADD_DSDB_FLAG(ENC_RSA_MD5
);
1135 ADD_DSDB_FLAG(ENC_RC4_HMAC_MD5
);
1136 ADD_DSDB_FLAG(ENC_HMAC_SHA1_96_AES128
);
1137 ADD_DSDB_FLAG(ENC_HMAC_SHA1_96_AES256
);
1139 ADD_DSDB_FLAG(SEARCH_FLAG_ATTINDEX
);
1140 ADD_DSDB_FLAG(SEARCH_FLAG_PDNTATTINDEX
);
1141 ADD_DSDB_FLAG(SEARCH_FLAG_ANR
);
1142 ADD_DSDB_FLAG(SEARCH_FLAG_PRESERVEONDELETE
);
1143 ADD_DSDB_FLAG(SEARCH_FLAG_COPY
);
1144 ADD_DSDB_FLAG(SEARCH_FLAG_TUPLEINDEX
);
1145 ADD_DSDB_FLAG(SEARCH_FLAG_SUBTREEATTRINDEX
);
1146 ADD_DSDB_FLAG(SEARCH_FLAG_CONFIDENTIAL
);
1147 ADD_DSDB_FLAG(SEARCH_FLAG_NEVERVALUEAUDIT
);
1148 ADD_DSDB_FLAG(SEARCH_FLAG_RODC_ATTRIBUTE
);
1150 ADD_DSDB_FLAG(DS_FLAG_ATTR_NOT_REPLICATED
);
1151 ADD_DSDB_FLAG(DS_FLAG_ATTR_REQ_PARTIAL_SET_MEMBER
);
1152 ADD_DSDB_FLAG(DS_FLAG_ATTR_IS_CONSTRUCTED
);
1154 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_AUTO_TOPOLOGY_DISABLED
);
1155 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_TOPL_CLEANUP_DISABLED
);
1156 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_TOPL_MIN_HOPS_DISABLED
);
1157 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_TOPL_DETECT_STALE_DISABLED
);
1158 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_INTER_SITE_AUTO_TOPOLOGY_DISABLED
);
1159 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_GROUP_CACHING_ENABLED
);
1160 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_FORCE_KCC_WHISTLER_BEHAVIOR
);
1161 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_RAND_BH_SELECTION_DISABLED
);
1162 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_SCHEDULE_HASHING_ENABLED
);
1163 ADD_DSDB_FLAG(DS_NTDSSETTINGS_OPT_IS_REDUNDANT_SERVER_TOPOLOGY_ENABLED
);
1165 ADD_DSDB_FLAG(DS_NTDSDSA_OPT_IS_GC
);
1166 ADD_DSDB_FLAG(DS_NTDSDSA_OPT_DISABLE_INBOUND_REPL
);
1167 ADD_DSDB_FLAG(DS_NTDSDSA_OPT_DISABLE_OUTBOUND_REPL
);
1168 ADD_DSDB_FLAG(DS_NTDSDSA_OPT_DISABLE_NTDSCONN_XLATE
);
1169 ADD_DSDB_FLAG(DS_NTDSDSA_OPT_DISABLE_SPN_REGISTRATION
);
1171 ADD_DSDB_FLAG(NTDSCONN_KCC_GC_TOPOLOGY
);
1172 ADD_DSDB_FLAG(NTDSCONN_KCC_RING_TOPOLOGY
);
1173 ADD_DSDB_FLAG(NTDSCONN_KCC_MINIMIZE_HOPS_TOPOLOGY
);
1174 ADD_DSDB_FLAG(NTDSCONN_KCC_STALE_SERVERS_TOPOLOGY
);
1175 ADD_DSDB_FLAG(NTDSCONN_KCC_OSCILLATING_CONNECTION_TOPOLOGY
);
1176 ADD_DSDB_FLAG(NTDSCONN_KCC_INTERSITE_GC_TOPOLOGY
);
1177 ADD_DSDB_FLAG(NTDSCONN_KCC_INTERSITE_TOPOLOGY
);
1178 ADD_DSDB_FLAG(NTDSCONN_KCC_SERVER_FAILOVER_TOPOLOGY
);
1179 ADD_DSDB_FLAG(NTDSCONN_KCC_SITE_FAILOVER_TOPOLOGY
);
1180 ADD_DSDB_FLAG(NTDSCONN_KCC_REDUNDANT_SERVER_TOPOLOGY
);
1182 ADD_DSDB_FLAG(NTDSCONN_OPT_IS_GENERATED
);
1183 ADD_DSDB_FLAG(NTDSCONN_OPT_TWOWAY_SYNC
);
1184 ADD_DSDB_FLAG(NTDSCONN_OPT_OVERRIDE_NOTIFY_DEFAULT
);
1185 ADD_DSDB_FLAG(NTDSCONN_OPT_USE_NOTIFY
);
1186 ADD_DSDB_FLAG(NTDSCONN_OPT_DISABLE_INTERSITE_COMPRESSION
);
1187 ADD_DSDB_FLAG(NTDSCONN_OPT_USER_OWNED_SCHEDULE
);
1188 ADD_DSDB_FLAG(NTDSCONN_OPT_RODC_TOPOLOGY
);
1190 /* GPO policy flags */
1191 ADD_DSDB_FLAG(GPLINK_OPT_DISABLE
);
1192 ADD_DSDB_FLAG(GPLINK_OPT_ENFORCE
);
1193 ADD_DSDB_FLAG(GPO_FLAG_USER_DISABLE
);
1194 ADD_DSDB_FLAG(GPO_FLAG_MACHINE_DISABLE
);
1195 ADD_DSDB_FLAG(GPO_INHERIT
);
1196 ADD_DSDB_FLAG(GPO_BLOCK_INHERITANCE
);
1198 #define ADD_DSDB_STRING(val) PyModule_AddObject(m, #val, PyString_FromString(val))
1200 ADD_DSDB_STRING(DSDB_SYNTAX_BINARY_DN
);
1201 ADD_DSDB_STRING(DSDB_SYNTAX_STRING_DN
);
1202 ADD_DSDB_STRING(DSDB_SYNTAX_OR_NAME
);
1203 ADD_DSDB_STRING(DSDB_CONTROL_DBCHECK
);