util: Modernise logging
[metze/samba/wip.git] / libcli / cldap / cldap.h
1 /*
2    Unix SMB/CIFS implementation.
3
4    a async CLDAP library
5
6    Copyright (C) Andrew Tridgell 2005
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "../libcli/netlogon/netlogon.h"
23
24 struct ldap_message;
25 struct tsocket_address;
26 struct cldap_socket;
27
28 struct cldap_incoming {
29         int recv_errno;
30         uint8_t *buf;
31         size_t len;
32         struct tsocket_address *src;
33         struct ldap_message *ldap_msg;
34 };
35
36 /*
37  a general cldap search request
38 */
39 struct cldap_search {
40         struct {
41                 const char *dest_address;
42                 uint16_t dest_port;
43                 const char *filter;
44                 const char * const *attributes;
45                 int timeout;
46                 int retries;
47         } in;
48         struct {
49                 struct ldap_SearchResEntry *response;
50                 struct ldap_Result         *result;
51         } out;
52 };
53
54 NTSTATUS cldap_socket_init(TALLOC_CTX *mem_ctx,
55                            const struct tsocket_address *local_addr,
56                            const struct tsocket_address *remote_addr,
57                            struct cldap_socket **_cldap);
58
59 NTSTATUS cldap_set_incoming_handler(struct cldap_socket *cldap,
60                                     struct tevent_context *ev,
61                                     void (*handler)(struct cldap_socket *,
62                                                     void *private_data,
63                                                     struct cldap_incoming *),
64                                     void *private_data);
65 struct tevent_req *cldap_search_send(TALLOC_CTX *mem_ctx,
66                                      struct tevent_context *ev,
67                                      struct cldap_socket *cldap,
68                                      const struct cldap_search *io);
69 NTSTATUS cldap_search_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
70                            struct cldap_search *io);
71 NTSTATUS cldap_search(struct cldap_socket *cldap, TALLOC_CTX *mem_ctx,
72                       struct cldap_search *io);
73
74 /*
75   a general cldap reply
76 */
77 struct cldap_reply {
78         uint32_t messageid;
79         struct tsocket_address *dest;
80         struct ldap_SearchResEntry *response;
81         struct ldap_Result         *result;
82 };
83
84 NTSTATUS cldap_reply_send(struct cldap_socket *cldap, struct cldap_reply *io);
85
86 NTSTATUS cldap_empty_reply(struct cldap_socket *cldap,
87                            uint32_t message_id,
88                            struct tsocket_address *dst);
89 NTSTATUS cldap_error_reply(struct cldap_socket *cldap,
90                            uint32_t message_id,
91                            struct tsocket_address *dst,
92                            int resultcode,
93                            const char *errormessage);
94
95 /*
96   a netlogon cldap request  
97 */
98 struct cldap_netlogon {
99         struct {
100                 const char *dest_address;
101                 uint16_t dest_port;
102                 const char *realm;
103                 const char *host;
104                 const char *user;
105                 const char *domain_guid;
106                 const char *domain_sid;
107                 int acct_control;
108                 uint32_t version;
109                 bool map_response;
110         } in;
111         struct {
112                 struct netlogon_samlogon_response netlogon;
113         } out;
114 };
115
116 struct tevent_req *cldap_netlogon_send(TALLOC_CTX *mem_ctx,
117                                        struct tevent_context *ev,
118                                        struct cldap_socket *cldap,
119                                        const struct cldap_netlogon *io);
120 NTSTATUS cldap_netlogon_recv(struct tevent_req *req,
121                              TALLOC_CTX *mem_ctx,
122                              struct cldap_netlogon *io);
123 NTSTATUS cldap_netlogon(struct cldap_socket *cldap,
124                         TALLOC_CTX *mem_ctx,
125                         struct cldap_netlogon *io);
126 char *cldap_netlogon_create_filter(TALLOC_CTX *mem_ctx,
127                                    const struct cldap_netlogon *io);
128
129 NTSTATUS cldap_netlogon_reply(struct cldap_socket *cldap,
130                               uint32_t message_id,
131                               struct tsocket_address *dst,
132                               uint32_t version,
133                               struct netlogon_samlogon_response *netlogon);
134