2 Unix SMB/CIFS implementation.
6 Copyright (C) 2005,2006 Tim Potter <tpot@samba.org>
7 Copyright (C) 2006 Simo Sorce <idra@samba.org>
8 Copyright (C) 2007-2008 Jelmer Vernooij <jelmer@samba.org>
10 ** NOTE! The following LGPL license applies to the ldb
11 ** library. This does NOT imply that all of Samba is released
14 This library is free software; you can redistribute it and/or
15 modify it under the terms of the GNU Lesser General Public
16 License as published by the Free Software Foundation; either
17 version 3 of the License, or (at your option) any later version.
19 This library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
24 You should have received a copy of the GNU Lesser General Public
25 License along with this library; if not, see <http://www.gnu.org/licenses/>.
29 "An interface to LDB, a LDAP-like API that can either to talk an embedded database (TDB-based) or a standards-compliant LDAP server."
32 %module(docstring=DOCSTRING) ldb
41 #include "ldb_errors.h"
42 #include "ldb_private.h"
44 typedef struct ldb_message ldb_msg;
45 typedef struct ldb_context ldb;
46 typedef struct ldb_dn ldb_dn;
47 typedef struct ldb_ldif ldb_ldif;
48 typedef struct ldb_message_element ldb_message_element;
49 typedef struct ldb_module ldb_module;
50 typedef int ldb_error;
51 typedef int ldb_int_error;
57 %include "exception.i"
60 /* Don't expose talloc contexts in Python code. Python does reference
61 counting for us, so just create a new top-level talloc context.
63 %typemap(in, numinputs=0, noblock=1) TALLOC_CTX * {
69 %constant int SCOPE_DEFAULT = LDB_SCOPE_DEFAULT;
70 %constant int SCOPE_BASE = LDB_SCOPE_BASE;
71 %constant int SCOPE_ONELEVEL = LDB_SCOPE_ONELEVEL;
72 %constant int SCOPE_SUBTREE = LDB_SCOPE_SUBTREE;
74 %constant int CHANGETYPE_NONE = LDB_CHANGETYPE_NONE;
75 %constant int CHANGETYPE_ADD = LDB_CHANGETYPE_ADD;
76 %constant int CHANGETYPE_DELETE = LDB_CHANGETYPE_DELETE;
77 %constant int CHANGETYPE_MODIFY = LDB_CHANGETYPE_MODIFY;
80 * Wrap struct ldb_context
83 /* The ldb functions will crash if a NULL ldb context is passed so
84 catch this before it happens. */
86 %typemap(check,noblock=1) struct ldb_context* {
88 SWIG_exception(SWIG_ValueError,
89 "ldb context must be non-NULL");
92 %typemap(check,noblock=1) ldb_msg * {
94 SWIG_exception(SWIG_ValueError,
95 "Message can not be None");
102 %typemap(in,noblock=1) struct ldb_val *INPUT (struct ldb_val temp) {
104 if (!PyString_Check($input)) {
105 PyErr_SetString(PyExc_TypeError, "string arg expected");
108 $1->length = PyString_Size($input);
109 $1->data = PyString_AsString($input);
113 PyObject *ldb_val_to_py_object(struct ldb_context *ldb_ctx,
114 struct ldb_message_element *el,
117 const struct ldb_schema_attribute *a;
118 struct ldb_val new_val;
119 TALLOC_CTX *mem_ctx = talloc_new(NULL);
124 if (ldb_ctx != NULL) {
125 a = ldb_schema_attribute_by_name(ldb_ctx, el->name);
128 if (a->syntax->ldif_write_fn(ldb_ctx, mem_ctx, val, &new_val) != 0) {
129 talloc_free(mem_ctx);
135 ret = PyString_FromStringAndSize((const char *)new_val.data, new_val.length);
137 talloc_free(mem_ctx);
144 %typemap(out,noblock=1) struct ldb_val * {
145 $result = PyString_FromStringAndSize((const char *)$1->data, $1->length)
148 %typemap(out,noblock=1) struct ldb_val {
149 $result = PyString_FromStringAndSize((const char *)$1.data, $1.length)
153 * Wrap struct ldb_result
156 %typemap(in,noblock=1,numinputs=0) struct ldb_result ** (struct ldb_result *temp_ldb_result) {
157 $1 = &temp_ldb_result;
161 %typemap(argout,noblock=1) struct ldb_result ** (int i) {
165 $result = PyList_New((*$1)->count);
166 for (i = 0; i < (*$1)->count; i++) {
167 PyList_SetItem($result, i,
168 SWIG_NewPointerObj((*$1)->msgs[i], SWIGTYPE_p_ldb_message, 0)
174 %typemap(in,noblock=1,numinputs=1) const char * const *NULL_STR_LIST {
175 if ($input == Py_None) {
177 } else if (PySequence_Check($input)) {
179 $1 = talloc_array(NULL, char *, PySequence_Size($input)+1);
180 for(i = 0; i < PySequence_Size($input); i++)
181 $1[i] = PyString_AsString(PySequence_GetItem($input, i));
184 SWIG_exception(SWIG_TypeError, "expected sequence");
188 %typemap(freearg,noblock=1) const char * const *NULL_STR_LIST {
192 %apply const char * const *NULL_STR_LIST { const char * const *attrs }
193 %apply const char * const *NULL_STR_LIST { const char * const *options }
194 %apply const char * const *NULL_STR_LIST { const char * const *control_strings }
198 %types(struct ldb_result *, struct ldb_parse_tree *);
204 %rename(__str__) ldb_dn::get_linearized;
205 %rename(__cmp__) ldb_dn::compare;
206 %rename(__len__) ldb_dn::get_comp_num;
208 %feature("docstring") ldb_dn "A LDB distinguished name.";
209 typedef struct ldb_dn {
211 %feature("docstring") ldb_dn "S.__init__(ldb, string)\n" \
213 ldb_dn(ldb *ldb_ctx, const char *str)
215 ldb_dn *ret = ldb_dn_new(ldb_ctx, ldb_ctx, str);
216 /* ldb_dn_new() doesn't accept NULL as memory context, so
217 we do it this way... */
218 talloc_steal(NULL, ret);
220 if (ret == NULL || !ldb_dn_validate(ret))
221 SWIG_exception(SWIG_ValueError,
222 "unable to parse dn string");
226 ~ldb_dn() { talloc_free($self); }
227 %feature("docstring") validate "S.validate() -> bool\n" \
228 "Validate DN is correct.";
230 const char *get_casefold();
231 const char *get_linearized();
232 %feature("docstring") parent "S.parent() -> dn\n" \
233 "Get the parent for this DN.";
234 ldb_dn *parent() { return ldb_dn_get_parent(NULL, $self); }
235 int compare(ldb_dn *other);
237 %feature("docstring") is_special "S.is_special() -> bool\n" \
238 "Check whether this is a special LDB DN.";
240 %feature("docstring") is_null "S.is_null() -> bool\n" \
241 "Check whether this is a null DN.";
243 bool check_special(const char *name);
245 %feature("docstring") add_child "S.add_child(dn) -> None\n" \
246 "Add a child DN to this DN.";
247 bool add_child(ldb_dn *child);
248 %feature("docstring") add_base "S.add_base(dn) -> None\n" \
249 "Add a base DN to this DN.";
250 bool add_base(ldb_dn *base);
251 %feature("docstring") canonical_str "S.canonical_str() -> string\n" \
252 "Canonical version of this DN (like a posix path).";
253 const char *canonical_str() {
254 return ldb_dn_canonical_string($self, $self);
256 %feature("docstring") canonical_ex_str "S.canonical_ex_str() -> string\n" \
257 "Canonical version of this DN (like a posix path, with terminating newline).";
258 const char *canonical_ex_str() {
259 return ldb_dn_canonical_ex_string($self, $self);
264 char *dn = ldb_dn_get_linearized($self), *ret;
265 asprintf(&ret, "Dn('%s')", dn);
269 ldb_dn *__add__(ldb_dn *other)
271 ldb_dn *ret = ldb_dn_copy(NULL, $self);
272 ldb_dn_add_child(ret, other);
276 /* FIXME: implement __getslice__ */
279 def __eq__(self, other):
280 if isinstance(other, self.__class__):
281 return self.__cmp__(other) == 0
282 if isinstance(other, str):
283 return str(self) == other
291 struct ldb_context *ldb_context_from_py_object(PyObject *py_obj)
293 struct ldb_context *ldb_ctx;
294 if (SWIG_ConvertPtr(py_obj, (void *)&ldb_ctx, SWIGTYPE_p_ldb_context, 0 | 0 ) < 0)
299 int ldb_dn_from_pyobject(TALLOC_CTX *mem_ctx, PyObject *object,
300 struct ldb_context *ldb_ctx, ldb_dn **dn)
304 if (ldb_ctx != NULL && PyString_Check(object)) {
305 odn = ldb_dn_new(mem_ctx, ldb_ctx, PyString_AsString(object));
312 ret = SWIG_ConvertPtr(object, (void **)&odn, SWIGTYPE_p_ldb_dn,
313 SWIG_POINTER_EXCEPTION);
314 *dn = ldb_dn_copy(mem_ctx, odn);
321 ldb_message_element *ldb_msg_element_from_pyobject(TALLOC_CTX *mem_ctx,
322 PyObject *set_obj, int flags,
323 const char *attr_name)
325 struct ldb_message_element *me = talloc(mem_ctx, struct ldb_message_element);
326 me->name = attr_name;
328 if (PyString_Check(set_obj)) {
330 me->values = talloc_array(me, struct ldb_val, me->num_values);
331 me->values[0].length = PyString_Size(set_obj);
332 me->values[0].data = (uint8_t *)talloc_strdup(me->values,
333 PyString_AsString(set_obj));
334 } else if (PySequence_Check(set_obj)) {
336 me->num_values = PySequence_Size(set_obj);
337 me->values = talloc_array(me, struct ldb_val, me->num_values);
338 for (i = 0; i < me->num_values; i++) {
339 PyObject *obj = PySequence_GetItem(set_obj, i);
340 me->values[i].length = PyString_Size(obj);
341 me->values[i].data = (uint8_t *)PyString_AsString(obj);
351 PyObject *ldb_msg_element_to_set(struct ldb_context *ldb_ctx,
352 ldb_message_element *me)
357 /* Python << 2.5 doesn't have PySet_New and PySet_Add. */
358 result = PyList_New(me->num_values);
360 for (i = 0; i < me->num_values; i++) {
361 PyList_SetItem(result, i,
362 ldb_val_to_py_object(ldb_ctx, me, &me->values[i]));
371 /* ldb_message_element */
372 %rename(MessageElement) ldb_message_element;
373 %feature("docstring") ldb_message_element "Message element.";
374 typedef struct ldb_message_element {
377 int __cmp__(ldb_message_element *other)
379 return ldb_msg_element_compare($self, other);
382 PyObject *__iter__(void)
384 return PyObject_GetIter(ldb_msg_element_to_set(NULL, $self));
387 PyObject *__set__(void)
389 return ldb_msg_element_to_set(NULL, $self);
392 ldb_message_element(PyObject *set_obj, int flags=0, const char *name = NULL)
394 return ldb_msg_element_from_pyobject(NULL, set_obj, flags, name);
399 return $self->num_values;
405 if (i < 0 || i >= $self->num_values)
408 return ldb_val_to_py_object(NULL, $self, &$self->values[i]);
411 ~ldb_message_element() { talloc_free($self); }
414 def __getitem__(self, i):
417 raise KeyError("no such value")
421 return "MessageElement([%s])" % (",".join(repr(x) for x in self.__set__()))
423 def __eq__(self, other):
424 if (len(self) == 1 and self.get(0) == other):
426 if isinstance(other, self.__class__):
427 return self.__cmp__(other) == 0
429 for i in range(len(self)):
430 if self.get(i) != o.next():
434 } ldb_message_element;
438 %feature("docstring") ldb_message "Message.";
439 %rename(Message) ldb_message;
441 %rename(__delitem__) ldb_message::remove_attr;
442 %typemap(out) ldb_message_element * {
444 PyErr_SetString(PyExc_KeyError, "no such element");
446 $result = SWIG_NewPointerObj($1, SWIGTYPE_p_ldb_message_element, 0);
450 PyObject *ldb_msg_list_elements(ldb_msg *msg)
453 PyObject *obj = PyList_New(msg->num_elements+(msg->dn != NULL?1:0));
454 if (msg->dn != NULL) {
455 PyList_SetItem(obj, j, PyString_FromString("dn"));
458 for (i = 0; i < msg->num_elements; i++) {
459 PyList_SetItem(obj, j, PyString_FromString(msg->elements[i].name));
468 typedef struct ldb_message {
472 ldb_msg(ldb_dn *dn = NULL) {
473 ldb_msg *ret = ldb_msg_new(NULL);
474 ret->dn = talloc_reference(ret, dn);
477 ~ldb_msg() { talloc_free($self); }
478 ldb_message_element *find_element(const char *name);
481 void __setitem__(const char *attr_name, ldb_message_element *val)
483 struct ldb_message_element *el;
485 ldb_msg_remove_attr($self, attr_name);
487 el = talloc($self, struct ldb_message_element);
488 el->name = talloc_strdup(el, attr_name);
489 el->num_values = val->num_values;
490 el->values = talloc_reference(el, val->values);
492 ldb_msg_add($self, el, val->flags);
495 void __setitem__(const char *attr_name, PyObject *val)
497 struct ldb_message_element *el = ldb_msg_element_from_pyobject(NULL,
499 talloc_steal($self, el);
500 ldb_msg_remove_attr($self, attr_name);
501 ldb_msg_add($self, el, el->flags);
504 unsigned int __len__() { return $self->num_elements; }
508 return ldb_msg_list_elements($self);
511 PyObject *__iter__(void)
513 return PyObject_GetIter(ldb_msg_list_elements($self));
516 void remove_attr(const char *name);
518 def get(self, key, default=None):
521 return self.find_element(key)
523 def __getitem__(self, key):
524 ret = self.get(key, None)
526 raise KeyError("No such element")
530 for k in self.keys():
534 return list(self.iteritems())
537 return "Message(%s)" % repr(dict(self.iteritems()))
542 /* FIXME: Convert ldb_result to 3-tuple:
543 (msgs, refs, controls)
546 typedef struct ldb_ldif ldb_ldif;
550 static void py_ldb_debug(void *context, enum ldb_debug_level level, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(3, 0);
552 static void py_ldb_debug(void *context, enum ldb_debug_level level, const char *fmt, va_list ap)
555 PyObject *fn = context;
557 vasprintf(&text, fmt, ap);
558 PyObject_CallFunction(fn, (char *)"(i,s)", level, text);
563 %typemap(in,numinputs=1,noblock=1) (void (*debug)(void *context, enum ldb_debug_level level, const char *fmt, va_list ap), void *context) {
565 /* FIXME: Should be decreased somewhere as well. Perhaps register a
566 destructor and tie it to the ldb context ? */
573 static PyObject *ldb_ldif_to_pyobject(ldb_ldif *ldif)
578 return Py_BuildValue((char *)"(iO)", ldif->changetype,
579 SWIG_NewPointerObj(ldif->msg, SWIGTYPE_p_ldb_message, 0));
589 PyObject *PyExc_LdbError;
593 LdbError = _ldb.LdbError
597 PyExc_LdbError = PyErr_NewException((char *)"_ldb.LdbError", NULL, NULL);
598 PyDict_SetItemString(d, "LdbError", PyExc_LdbError);
601 %ignore _LDB_ERRORS_H_;
603 %include "include/ldb_errors.h"
610 %typemap(out,noblock=1) ldb_error {
611 if ($1 != LDB_SUCCESS) {
612 PyErr_SetObject(PyExc_LdbError, Py_BuildValue((char *)"(i,s)", $1, ldb_errstring(arg1)));
618 %typemap(out,noblock=1) ldb_int_error {
619 if ($1 != LDB_SUCCESS) {
620 PyErr_SetObject(PyExc_LdbError, Py_BuildValue((char *)"(i,s)", $1, ldb_strerror($1)));
626 %typemap(out,noblock=1) struct ldb_control ** {
628 PyErr_SetObject(PyExc_LdbError, Py_BuildValue((char *)"(s)", ldb_errstring(arg1)));
631 $result = SWIG_NewPointerObj($1, $1_descriptor, 0);
634 %rename(Ldb) ldb_context;
635 %feature("docstring") ldb_context "Connection to a LDB database.";
637 %typemap(in,noblock=1) struct ldb_dn * {
638 if (ldb_dn_from_pyobject(NULL, $input, arg1, &$1) != 0) {
643 %typemap(freearg,noblock=1) struct ldb_dn * {
647 %typemap(in,numinputs=1) ldb_msg *add_msg {
648 Py_ssize_t dict_pos, msg_pos;
649 ldb_message_element *msgel;
650 PyObject *key, *value;
652 if (PyDict_Check($input)) {
653 PyObject *dn_value = PyDict_GetItemString($input, "dn");
654 $1 = ldb_msg_new(NULL);
655 $1->elements = talloc_zero_array($1, struct ldb_message_element, PyDict_Size($input));
656 msg_pos = dict_pos = 0;
658 /* using argp1 (magic SWIG value) here is a hack */
659 if (ldb_dn_from_pyobject($1, dn_value, argp1, &$1->dn) != 0) {
660 SWIG_exception(SWIG_TypeError, "unable to import dn object");
662 if ($1->dn == NULL) {
663 SWIG_exception(SWIG_TypeError, "dn set but not found");
667 while (PyDict_Next($input, &dict_pos, &key, &value)) {
668 char *key_str = PyString_AsString(key);
669 if (strcmp(key_str, "dn") != 0) {
670 msgel = ldb_msg_element_from_pyobject($1->elements, value, 0, key_str);
672 SWIG_exception(SWIG_TypeError, "unable to import element");
674 memcpy(&$1->elements[msg_pos], msgel, sizeof(*msgel));
679 if ($1->dn == NULL) {
680 SWIG_exception(SWIG_TypeError, "no dn set");
683 $1->num_elements = msg_pos;
685 if (SWIG_ConvertPtr($input, (void **)&$1, SWIGTYPE_p_ldb_message, 0) != 0) {
686 SWIG_exception(SWIG_TypeError, "unable to convert ldb message");
691 /* Top-level ldb operations */
692 typedef struct ldb_context {
693 %rename(firstmodule) modules;
694 struct ldb_module *modules;
697 def itermodules(self):
704 return list(self.itermodules())
709 return ldb_init(NULL, event_context_init(NULL));
712 %feature("docstring") connect "S.connect(url,flags=0,options=None) -> None\n" \
713 "Connect to a LDB URL.";
714 ldb_error connect(const char *url, unsigned int flags = 0,
715 const char *const *options = NULL);
717 ~ldb() { talloc_free($self); }
719 ldb_error search_ex(TALLOC_CTX *mem_ctx,
721 enum ldb_scope scope = LDB_SCOPE_DEFAULT,
722 const char *expression = NULL,
723 const char *const *attrs = NULL,
724 struct ldb_control **controls = NULL,
725 struct ldb_result **OUT) {
727 struct ldb_result *res;
728 struct ldb_request *req;
729 res = talloc_zero(mem_ctx, struct ldb_result);
731 return LDB_ERR_OPERATIONS_ERROR;
734 ret = ldb_build_search_req(&req, $self, mem_ctx,
735 base?base:ldb_get_default_basedn($self),
741 ldb_search_default_callback,
744 if (ret != LDB_SUCCESS) {
749 ret = ldb_request($self, req);
751 if (ret == LDB_SUCCESS) {
752 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
761 %feature("docstring") delete "S.delete(dn) -> None\n" \
763 ldb_error delete(ldb_dn *dn);
764 %feature("docstring") rename "S.rename(old_dn, new_dn) -> None\n" \
766 ldb_error rename(ldb_dn *olddn, ldb_dn *newdn);
767 struct ldb_control **parse_control_strings(TALLOC_CTX *mem_ctx,
768 const char * const*control_strings);
769 %feature("docstring") add "S.add(message) -> None\n" \
771 ldb_error add(ldb_msg *add_msg);
772 %feature("docstring") modify "S.modify(message) -> None\n" \
774 ldb_error modify(ldb_msg *message);
775 ldb_dn *get_config_basedn();
776 ldb_dn *get_root_basedn();
777 ldb_dn *get_schema_basedn();
778 ldb_dn *get_default_basedn();
779 PyObject *schema_format_value(const char *element_name, PyObject *val)
781 const struct ldb_schema_attribute *a;
782 struct ldb_val old_val;
783 struct ldb_val new_val;
784 TALLOC_CTX *mem_ctx = talloc_new(NULL);
787 old_val.data = PyString_AsString(val);
788 old_val.length = PyString_Size(val);
790 a = ldb_schema_attribute_by_name($self, element_name);
796 if (a->syntax->ldif_write_fn($self, mem_ctx, &old_val, &new_val) != 0) {
797 talloc_free(mem_ctx);
801 ret = PyString_FromStringAndSize((const char *)new_val.data, new_val.length);
803 talloc_free(mem_ctx);
808 const char *errstring();
809 %feature("docstring") set_create_perms "S.set_create_perms(mode) -> None\n" \
810 "Set mode to use when creating new LDB files.";
811 void set_create_perms(unsigned int perms);
812 %feature("docstring") set_modules_dir "S.set_modules_dir(path) -> None\n" \
813 "Set path LDB should search for modules";
814 void set_modules_dir(const char *path);
815 %feature("docstring") set_debug "S.set_debug(callback) -> None\n" \
816 "Set callback for LDB debug messages.\n" \
817 "The callback should accept a debug level and debug text.";
818 ldb_error set_debug(void (*debug)(void *context, enum ldb_debug_level level,
819 const char *fmt, va_list ap),
821 %feature("docstring") set_opaque "S.set_opaque(name, value) -> None\n" \
822 "Set an opaque value on this LDB connection. \n"
823 ":note: Passing incorrect values may cause crashes.";
824 ldb_error set_opaque(const char *name, void *value);
825 %feature("docstring") get_opaque "S.get_opaque(name) -> value\n" \
826 "Get an opaque value set on this LDB connection. \n"
827 ":note: The returned value may not be useful in Python.";
828 void *get_opaque(const char *name);
829 %feature("docstring") transaction_start "S.transaction_start() -> None\n" \
830 "Start a new transaction.";
831 ldb_error transaction_start();
832 %feature("docstring") transaction_commit "S.transaction_commit() -> None\n" \
833 "Commit currently active transaction.";
834 ldb_error transaction_commit();
835 %feature("docstring") transaction_cancel "S.transaction_cancel() -> None\n" \
836 "Cancel currently active transaction.";
837 ldb_error transaction_cancel();
838 void schema_attribute_remove(const char *name);
839 ldb_error schema_attribute_add(const char *attribute, unsigned flags, const char *syntax);
840 ldb_error setup_wellknown_attributes(void);
843 %typemap(in,numinputs=0,noblock=1) struct ldb_result **result_as_bool (struct ldb_result *tmp) { $1 = &tmp; }
844 %typemap(argout,noblock=1) struct ldb_result **result_as_bool { $result = ((*$1)->count > 0)?Py_True:Py_False; }
845 %typemap(freearg,noblock=1) struct ldb_result **result_as_bool { talloc_free(*$1); }
846 ldb_error __contains__(ldb_dn *dn, struct ldb_result **result_as_bool)
848 return ldb_search($self, $self, result_as_bool, dn, LDB_SCOPE_BASE, NULL, NULL);
851 %feature("docstring") parse_ldif "S.parse_ldif(ldif) -> iter(messages)\n" \
852 "Parse a string formatted using LDIF.";
854 PyObject *parse_ldif(const char *s)
856 PyObject *list = PyList_New(0);
857 struct ldb_ldif *ldif;
858 while ((ldif = ldb_ldif_read_string($self, &s)) != NULL) {
859 PyList_Append(list, ldb_ldif_to_pyobject(ldif));
861 return PyObject_GetIter(list);
867 asprintf(&ret, "<ldb connection at 0x%x>", ret);
873 def __init__(self, url=None, flags=0, options=None):
874 """Create a new LDB object.
876 Will also connect to the specified URL if one was given.
878 _ldb.Ldb_swiginit(self,_ldb.new_Ldb())
880 self.connect(url, flags, options)
882 def search(self, base=None, scope=SCOPE_DEFAULT, expression=None,
883 attrs=None, controls=None):
884 """Search in a database.
886 :param base: Optional base DN to search
887 :param scope: Search scope (SCOPE_BASE, SCOPE_ONELEVEL or SCOPE_SUBTREE)
888 :param expression: Optional search expression
889 :param attrs: Attributes to return (defaults to all)
890 :param controls: Optional list of controls
891 :return: Iterator over Message objects
893 if not (attrs is None or isinstance(attrs, list)):
894 raise TypeError("attributes not a list")
895 parsed_controls = None
896 if controls is not None:
897 parsed_controls = self.parse_control_strings(controls)
898 return self.search_ex(base, scope, expression, attrs,
904 %typemap(in,noblock=1) struct ldb_dn *;
905 %typemap(freearg,noblock=1) struct ldb_dn *;
907 %nodefault ldb_message;
908 %nodefault ldb_context;
911 %rename(valid_attr_name) ldb_valid_attr_name;
912 %feature("docstring") ldb_valid_attr_name "S.valid_attr_name(name) -> bool\n"
913 "Check whether the supplied name is a valid attribute name.";
914 int ldb_valid_attr_name(const char *s);
916 typedef unsigned long time_t;
918 %feature("docstring") timestring "S.timestring(int) -> string\n"
919 "Generate a LDAP time string from a UNIX timestamp";
922 static char *timestring(time_t t)
924 char *tresult = ldb_timestring(NULL, t);
925 char *result = strdup(tresult);
926 talloc_free(tresult);
931 %rename(string_to_time) ldb_string_to_time;
932 %feature("docstring") ldb_string_to_time "S.string_to_time(string) -> int\n"
933 "Parse a LDAP time string into a UNIX timestamp.";
934 time_t ldb_string_to_time(const char *s);
936 typedef struct ldb_module {
937 struct ldb_module *prev, *next;
941 const char *__str__() {
942 return $self->ops->name;
946 asprintf(&ret, "<ldb module '%s'>", $self->ops->name);
950 int search(struct ldb_dn *base, enum ldb_scope scope, struct ldb_parse_tree *tree, const char * const * attrs, struct ldb_result **res) {
952 struct ldb_request *req = talloc_zero(NULL, struct ldb_request);
954 req->operation = LDB_SEARCH;
955 req->op.search.base = base;
956 req->op.search.scope = scope;
957 req->op.search.tree = tree;
958 req->op.search.attrs = attrs;
960 req->op.search.res = talloc_zero(NULL, struct ldb_result);
962 ret = $self->ops->search($self, req);
964 *res = req->op.search.res;
970 ldb_error add(struct ldb_message *message) {
971 struct ldb_request *req = talloc_zero(NULL, struct ldb_request);
972 req->operation = LDB_ADD;
973 req->op.add.message = message;
975 return $self->ops->add($self, &req);
977 ldb_error modify(struct ldb_message *message) {
978 struct ldb_request *req = talloc_zero(NULL, struct ldb_request);
979 req->operation = LDB_MODIFY;
980 req->op.mod.message = message;
982 return $self->ops->modify($self, &req);
984 ldb_error delete(struct ldb_dn *dn) {
985 struct ldb_request *req = talloc_zero(NULL, struct ldb_request);
986 req->operation = LDB_DELETE;
989 return $self->ops->del($self, &req);
992 ldb_error rename(struct ldb_dn *olddn, struct ldb_dn *newdn) {
993 struct ldb_request *req = talloc_zero(NULL, struct ldb_request);
994 req->operation = LDB_RENAME;
995 req->op.rename.olddn = olddn;
996 req->op.rename.olddn = newdn;
998 return $self->ops->rename($self, &req);
1000 ldb_error start_transaction() {
1001 return $self->ops->start_transaction($self);
1003 ldb_error end_transaction() {
1004 return $self->ops->end_transaction($self);
1006 ldb_error del_transaction() {
1007 return $self->ops->del_transaction($self);
1013 int py_module_search(struct ldb_module *mod, struct ldb_request *req)
1015 PyObject *py_ldb = mod->private_data;
1016 PyObject *py_result, *py_base, *py_attrs, *py_tree;
1018 py_base = SWIG_NewPointerObj(req->op.search.base, SWIGTYPE_p_ldb_dn, 0);
1020 if (py_base == NULL)
1021 return LDB_ERR_OPERATIONS_ERROR;
1023 py_tree = SWIG_NewPointerObj(req->op.search.tree, SWIGTYPE_p_ldb_parse_tree, 0);
1025 if (py_tree == NULL)
1026 return LDB_ERR_OPERATIONS_ERROR;
1028 if (req->op.search.attrs == NULL) {
1032 for (len = 0; req->op.search.attrs[len]; len++);
1033 py_attrs = PyList_New(len);
1034 for (i = 0; i < len; i++)
1035 PyList_SetItem(py_attrs, i, PyString_FromString(req->op.search.attrs[i]));
1038 py_result = PyObject_CallMethod(py_ldb, "search", "OiOO", py_base, req->op.search.scope, py_tree, py_attrs);
1040 Py_DECREF(py_attrs);
1044 if (py_result == NULL) {
1045 return LDB_ERR_OPERATIONS_ERROR;
1048 if (SWIG_ConvertPtr(py_result, &req->op.search.res, SWIGTYPE_p_ldb_result, 0) != 0) {
1049 return LDB_ERR_OPERATIONS_ERROR;
1052 Py_DECREF(py_result);
1057 int py_module_add(struct ldb_module *mod, struct ldb_request *req)
1059 PyObject *py_ldb = mod->private_data;
1060 PyObject *py_result, *py_msg;
1062 py_msg = SWIG_NewPointerObj(req->op.add.message, SWIGTYPE_p_ldb_message, 0);
1064 if (py_msg == NULL) {
1065 return LDB_ERR_OPERATIONS_ERROR;
1068 py_result = PyObject_CallMethod(py_ldb, "add", "O", py_msg);
1072 if (py_result == NULL) {
1073 return LDB_ERR_OPERATIONS_ERROR;
1076 Py_DECREF(py_result);
1081 int py_module_modify(struct ldb_module *mod, struct ldb_request *req)
1083 PyObject *py_ldb = mod->private_data;
1084 PyObject *py_result, *py_msg;
1086 py_msg = SWIG_NewPointerObj(req->op.mod.message, SWIGTYPE_p_ldb_message, 0);
1088 if (py_msg == NULL) {
1089 return LDB_ERR_OPERATIONS_ERROR;
1092 py_result = PyObject_CallMethod(py_ldb, "modify", "O", py_msg);
1096 if (py_result == NULL) {
1097 return LDB_ERR_OPERATIONS_ERROR;
1100 Py_DECREF(py_result);
1105 int py_module_del(struct ldb_module *mod, struct ldb_request *req)
1107 PyObject *py_ldb = mod->private_data;
1108 PyObject *py_result, *py_dn;
1110 py_dn = SWIG_NewPointerObj(req->op.del.dn, SWIGTYPE_p_ldb_dn, 0);
1113 return LDB_ERR_OPERATIONS_ERROR;
1115 py_result = PyObject_CallMethod(py_ldb, "delete", "O", py_dn);
1117 if (py_result == NULL) {
1118 return LDB_ERR_OPERATIONS_ERROR;
1121 Py_DECREF(py_result);
1126 int py_module_rename(struct ldb_module *mod, struct ldb_request *req)
1128 PyObject *py_ldb = mod->private_data;
1129 PyObject *py_result, *py_olddn, *py_newdn;
1131 py_olddn = SWIG_NewPointerObj(req->op.rename.olddn, SWIGTYPE_p_ldb_dn, 0);
1133 if (py_olddn == NULL)
1134 return LDB_ERR_OPERATIONS_ERROR;
1136 py_newdn = SWIG_NewPointerObj(req->op.rename.newdn, SWIGTYPE_p_ldb_dn, 0);
1138 if (py_newdn == NULL)
1139 return LDB_ERR_OPERATIONS_ERROR;
1141 py_result = PyObject_CallMethod(py_ldb, "rename", "OO", py_olddn, py_newdn);
1143 Py_DECREF(py_olddn);
1144 Py_DECREF(py_newdn);
1146 if (py_result == NULL) {
1147 return LDB_ERR_OPERATIONS_ERROR;
1150 Py_DECREF(py_result);
1155 int py_module_request(struct ldb_module *mod, struct ldb_request *req)
1157 PyObject *py_ldb = mod->private_data;
1158 PyObject *py_result;
1160 py_result = PyObject_CallMethod(py_ldb, "request", "");
1162 return LDB_ERR_OPERATIONS_ERROR;
1165 int py_module_extended(struct ldb_module *mod, struct ldb_request *req)
1167 PyObject *py_ldb = mod->private_data;
1168 PyObject *py_result;
1170 py_result = PyObject_CallMethod(py_ldb, "extended", "");
1172 return LDB_ERR_OPERATIONS_ERROR;
1175 int py_module_start_transaction(struct ldb_module *mod)
1177 PyObject *py_ldb = mod->private_data;
1178 PyObject *py_result;
1180 py_result = PyObject_CallMethod(py_ldb, "start_transaction", "");
1182 if (py_result == NULL) {
1183 return LDB_ERR_OPERATIONS_ERROR;
1186 Py_DECREF(py_result);
1191 int py_module_end_transaction(struct ldb_module *mod)
1193 PyObject *py_ldb = mod->private_data;
1194 PyObject *py_result;
1196 py_result = PyObject_CallMethod(py_ldb, "end_transaction", "");
1198 if (py_result == NULL) {
1199 return LDB_ERR_OPERATIONS_ERROR;
1202 Py_DECREF(py_result);
1207 int py_module_del_transaction(struct ldb_module *mod)
1209 PyObject *py_ldb = mod->private_data;
1210 PyObject *py_result;
1212 py_result = PyObject_CallMethod(py_ldb, "del_transaction", "");
1214 if (py_result == NULL) {
1215 return LDB_ERR_OPERATIONS_ERROR;
1218 Py_DECREF(py_result);
1223 static int py_module_destructor(void *_mod)
1225 struct ldb_module *mod = _mod;
1226 Py_DECREF((PyObject *)mod->private_data);
1230 int py_module_init (struct ldb_module *mod)
1232 PyObject *py_class = mod->ops->private_data;
1233 PyObject *py_result, *py_next, *py_ldb;
1235 py_ldb = SWIG_NewPointerObj(mod->ldb, SWIGTYPE_p_ldb_context, 0);
1238 return LDB_ERR_OPERATIONS_ERROR;
1240 py_next = SWIG_NewPointerObj(mod->next, SWIGTYPE_p_ldb_module, 0);
1242 if (py_next == NULL)
1243 return LDB_ERR_OPERATIONS_ERROR;
1245 py_result = PyObject_CallFunction(py_class, "OO", py_ldb, py_next);
1247 if (py_result == NULL) {
1248 return LDB_ERR_OPERATIONS_ERROR;
1251 mod->private_data = py_result;
1253 talloc_set_destructor (mod, py_module_destructor);
1255 return ldb_next_init(mod);
1259 %typemap(in,noblock=1) const struct ldb_module_ops * {
1260 $1 = talloc_zero(talloc_autofree_context(), struct ldb_module_ops);
1262 $1->name = talloc_strdup($1, PyString_AsString(PyObject_GetAttrString($input, (char *)"name")));
1265 $1->private_data = $input;
1266 $1->init_context = py_module_init;
1267 $1->search = py_module_search;
1268 $1->add = py_module_add;
1269 $1->modify = py_module_modify;
1270 $1->del = py_module_del;
1271 $1->rename = py_module_rename;
1272 $1->request = py_module_request;
1273 $1->extended = py_module_extended;
1274 $1->start_transaction = py_module_start_transaction;
1275 $1->end_transaction = py_module_end_transaction;
1276 $1->del_transaction = py_module_del_transaction;
1279 %feature("docstring") ldb_register_module "S.register_module(module) -> None\n"
1280 "Register a LDB module.";
1281 %rename(register_module) ldb_register_module;
1282 ldb_int_error ldb_register_module(const struct ldb_module_ops *);
1285 __docformat__ = "restructuredText"