s3: re-run make samba3-idl.
[Samba/cd1.git] / source3 / include / tldap_util.h
blob2e0da85f53357207a9a12da967d11ffa968e0a8b
1 /*
2 Unix SMB/CIFS implementation.
3 Infrastructure for async ldap client requests
4 Copyright (C) Volker Lendecke 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/>.
20 #ifndef __TLDAP_UTIL_H__
21 #define __TLDAP_UTIL_H__
23 #include "includes.h"
25 bool tldap_entry_values(struct tldap_message *msg, const char *attribute,
26 int *num_values, DATA_BLOB **values);
27 bool tldap_get_single_valueblob(struct tldap_message *msg,
28 const char *attribute, DATA_BLOB *blob);
29 char *tldap_talloc_single_attribute(struct tldap_message *msg,
30 const char *attribute,
31 TALLOC_CTX *mem_ctx);
32 bool tldap_pull_binsid(struct tldap_message *msg, const char *attribute,
33 struct dom_sid *sid);
34 bool tldap_pull_guid(struct tldap_message *msg, const char *attribute,
35 struct GUID *guid);
36 bool tldap_add_mod_blobs(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods,
37 int mod_op, const char *attrib,
38 int num_values, DATA_BLOB *values);
39 bool tldap_add_mod_str(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods,
40 int mod_op, const char *attrib, const char *str);
41 bool tldap_make_mod_blob(struct tldap_message *existing, TALLOC_CTX *mem_ctx,
42 int *pnum_mods, struct tldap_mod **pmods,
43 const char *attrib, DATA_BLOB newval);
44 bool tldap_make_mod_fmt(struct tldap_message *existing, TALLOC_CTX *mem_ctx,
45 int *pnum_mods, struct tldap_mod **pmods,
46 const char *attrib, const char *fmt, ...);
48 const char *tldap_errstr(TALLOC_CTX *mem_ctx, struct tldap_context *ld,
49 int rc);
50 int tldap_search_va(struct tldap_context *ld, const char *base, int scope,
51 const char *attrs[], int num_attrs, int attrsonly,
52 TALLOC_CTX *mem_ctx, struct tldap_message ***res,
53 const char *fmt, va_list ap);
54 int tldap_search_fmt(struct tldap_context *ld, const char *base, int scope,
55 const char *attrs[], int num_attrs, int attrsonly,
56 TALLOC_CTX *mem_ctx, struct tldap_message ***res,
57 const char *fmt, ...);
58 bool tldap_pull_uint64(struct tldap_message *msg, const char *attr,
59 uint64_t *presult);
60 bool tldap_pull_uint32(struct tldap_message *msg, const char *attr,
61 uint32_t *presult);
63 struct tevent_req *tldap_fetch_rootdse_send(TALLOC_CTX *mem_ctx,
64 struct tevent_context *ev,
65 struct tldap_context *ld);
66 int tldap_fetch_rootdse_recv(struct tevent_req *req);
67 int tldap_fetch_rootdse(struct tldap_context *ld);
68 struct tldap_message *tldap_rootdse(struct tldap_context *ld);
70 bool tldap_entry_has_attrvalue(struct tldap_message *msg,
71 const char *attribute,
72 const DATA_BLOB blob);
73 bool tldap_supports_control(struct tldap_context *ld, const char *oid);
75 struct tldap_control *tldap_add_control(TALLOC_CTX *mem_ctx,
76 struct tldap_control *ctrls,
77 int num_ctrls,
78 struct tldap_control *ctrl);
79 struct tldap_control *tldap_msg_findcontrol(struct tldap_message *msg,
80 const char *oid);
82 struct tevent_req *tldap_search_paged_send(TALLOC_CTX *mem_ctx,
83 struct tevent_context *ev,
84 struct tldap_context *ld,
85 const char *base, int scope,
86 const char *filter,
87 const char **attrs,
88 int num_attrs,
89 int attrsonly,
90 struct tldap_control *sctrls,
91 int num_sctrls,
92 struct tldap_control *cctrls,
93 int num_cctrls,
94 int timelimit,
95 int sizelimit,
96 int deref,
97 int page_size);
98 int tldap_search_paged_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
99 struct tldap_message **pmsg);
102 #endif