Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-wsgi
[nivanova/samba-autobuild/.git] / source4 / libcli / cldap / cldap.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    cldap client 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 /*
23   see RFC1798 for details of CLDAP
24
25   basic properties
26     - carried over UDP on port 389
27     - request and response matched by message ID
28     - request consists of only a single searchRequest element
29     - response can be in one of two forms
30        - a single searchResponse, followed by a searchResult
31        - a single searchResult
32 */
33
34 #include "includes.h"
35 #include "lib/events/events.h"
36 #include "lib/util/dlinklist.h"
37 #include "libcli/ldap/ldap.h"
38 #include "libcli/ldap/ldap_ndr.h"
39 #include "libcli/cldap/cldap.h"
40 #include "lib/socket/socket.h"
41 #include "libcli/security/security.h"
42 #include "librpc/gen_ndr/ndr_nbt.h"
43 #include "param/param.h"
44
45 /*
46   destroy a pending request
47 */
48 static int cldap_request_destructor(struct cldap_request *req)
49 {
50         if (req->state == CLDAP_REQUEST_SEND) {
51                 DLIST_REMOVE(req->cldap->send_queue, req);
52         }
53         if (!req->is_reply && req->message_id != 0) {
54                 idr_remove(req->cldap->idr, req->message_id);
55                 req->message_id = 0;
56         }
57         return 0;
58 }
59
60 /*
61   handle recv events on a cldap socket
62 */
63 static void cldap_socket_recv(struct cldap_socket *cldap)
64 {
65         TALLOC_CTX *tmp_ctx = talloc_new(cldap);
66         NTSTATUS status;
67         struct socket_address *src;
68         DATA_BLOB blob;
69         size_t nread, dsize;
70         struct asn1_data *asn1 = asn1_init(tmp_ctx);
71         struct ldap_message *ldap_msg;
72         struct cldap_request *req;
73
74         if (!asn1) return;
75
76         status = socket_pending(cldap->sock, &dsize);
77         if (!NT_STATUS_IS_OK(status)) {
78                 talloc_free(tmp_ctx);
79                 return;
80         }
81
82         blob = data_blob_talloc(tmp_ctx, NULL, dsize);
83         if (blob.data == NULL) {
84                 talloc_free(tmp_ctx);
85                 return;
86         }
87
88         status = socket_recvfrom(cldap->sock, blob.data, blob.length, &nread,
89                                  tmp_ctx, &src);
90         if (!NT_STATUS_IS_OK(status)) {
91                 talloc_free(tmp_ctx);
92                 return;
93         }
94         blob.length = nread;
95
96         DEBUG(2,("Received cldap packet of length %d from %s:%d\n", 
97                  (int)blob.length, src->addr, src->port));
98
99         if (!asn1_load(asn1, blob)) {
100                 DEBUG(2,("Failed to setup for asn.1 decode\n"));
101                 talloc_free(tmp_ctx);
102                 return;
103         }
104
105         ldap_msg = talloc(tmp_ctx, struct ldap_message);
106         if (ldap_msg == NULL) {
107                 talloc_free(tmp_ctx);
108                 return;
109         }
110
111         /* this initial decode is used to find the message id */
112         status = ldap_decode(asn1, ldap_msg);
113         if (!NT_STATUS_IS_OK(status)) {
114                 DEBUG(2,("Failed to decode ldap message: %s\n", nt_errstr(status)));
115                 talloc_free(tmp_ctx);
116                 return;
117         }
118
119         /* find the pending request */
120         req = idr_find(cldap->idr, ldap_msg->messageid);
121         if (req == NULL) {
122                 if (cldap->incoming.handler) {
123                         cldap->incoming.handler(cldap, ldap_msg, src);
124                 } else {
125                         DEBUG(2,("Mismatched cldap reply %u from %s:%d\n",
126                                  ldap_msg->messageid, src->addr, src->port));
127                 }
128                 talloc_free(tmp_ctx);
129                 return;
130         }
131
132         req->asn1 = talloc_steal(req, asn1);
133         req->asn1->ofs = 0;
134
135         req->state = CLDAP_REQUEST_DONE;
136         talloc_free(req->te);
137
138         talloc_free(tmp_ctx);
139
140         if (req->async.fn) {
141                 req->async.fn(req);
142         }
143 }
144
145 /*
146   handle request timeouts
147 */
148 static void cldap_request_timeout(struct event_context *event_ctx, 
149                                   struct timed_event *te, struct timeval t,
150                                   void *private)
151 {
152         struct cldap_request *req = talloc_get_type(private, struct cldap_request);
153
154         /* possibly try again */
155         if (req->num_retries != 0) {
156                 size_t len = req->encoded.length;
157
158                 req->num_retries--;
159
160                 socket_sendto(req->cldap->sock, &req->encoded, &len, 
161                               req->dest);
162
163                 req->te = event_add_timed(req->cldap->event_ctx, req, 
164                                           timeval_current_ofs(req->timeout, 0),
165                                           cldap_request_timeout, req);
166                 return;
167         }
168
169         req->state = CLDAP_REQUEST_ERROR;
170         req->status = NT_STATUS_IO_TIMEOUT;
171         if (req->async.fn) {
172                 req->async.fn(req);
173         }
174 }
175
176 /*
177   handle send events on a cldap socket
178 */
179 static void cldap_socket_send(struct cldap_socket *cldap)
180 {
181         struct cldap_request *req;
182         NTSTATUS status;
183
184         while ((req = cldap->send_queue)) {
185                 size_t len;
186                 
187                 len = req->encoded.length;
188                 status = socket_sendto(cldap->sock, &req->encoded, &len,
189                                        req->dest);
190                 if (NT_STATUS_IS_ERR(status)) {
191                         DEBUG(0,("Failed to send cldap request of length %u to %s:%d\n",
192                                  (unsigned)req->encoded.length, req->dest->addr, req->dest->port));
193                         DLIST_REMOVE(cldap->send_queue, req);
194                         req->state = CLDAP_REQUEST_ERROR;
195                         req->status = status;
196                         if (req->async.fn) {
197                                 req->async.fn(req);
198                         }
199                         continue;
200                 }
201
202                 if (!NT_STATUS_IS_OK(status)) return;
203
204                 DLIST_REMOVE(cldap->send_queue, req);
205
206                 if (req->is_reply) {
207                         talloc_free(req);
208                 } else {
209                         req->state = CLDAP_REQUEST_WAIT;
210
211                         req->te = event_add_timed(cldap->event_ctx, req, 
212                                                   timeval_current_ofs(req->timeout, 0),
213                                                   cldap_request_timeout, req);
214
215                         EVENT_FD_READABLE(cldap->fde);
216                 }
217         }
218
219         EVENT_FD_NOT_WRITEABLE(cldap->fde);
220         return;
221 }
222
223
224 /*
225   handle fd events on a cldap_socket
226 */
227 static void cldap_socket_handler(struct event_context *ev, struct fd_event *fde,
228                                  uint16_t flags, void *private)
229 {
230         struct cldap_socket *cldap = talloc_get_type(private, struct cldap_socket);
231         if (flags & EVENT_FD_WRITE) {
232                 cldap_socket_send(cldap);
233         } 
234         if (flags & EVENT_FD_READ) {
235                 cldap_socket_recv(cldap);
236         }
237 }
238
239 /*
240   initialise a cldap_socket. The event_ctx is optional, if provided
241   then operations will use that event context
242 */
243 struct cldap_socket *cldap_socket_init(TALLOC_CTX *mem_ctx, 
244                                        struct event_context *event_ctx,
245                                        struct smb_iconv_convenience *iconv_convenience)
246 {
247         struct cldap_socket *cldap;
248         NTSTATUS status;
249
250         cldap = talloc(mem_ctx, struct cldap_socket);
251         if (cldap == NULL) goto failed;
252
253         cldap->event_ctx = talloc_reference(cldap, event_ctx);
254         if (cldap->event_ctx == NULL) goto failed;
255
256         cldap->idr = idr_init(cldap);
257         if (cldap->idr == NULL) goto failed;
258
259         status = socket_create("ip", SOCKET_TYPE_DGRAM, &cldap->sock, 0);
260         if (!NT_STATUS_IS_OK(status)) goto failed;
261
262         talloc_steal(cldap, cldap->sock);
263
264         cldap->fde = event_add_fd(cldap->event_ctx, cldap, 
265                                       socket_get_fd(cldap->sock), 0,
266                                       cldap_socket_handler, cldap);
267
268         cldap->send_queue = NULL;
269         cldap->incoming.handler = NULL;
270         cldap->iconv_convenience = iconv_convenience;
271         
272         return cldap;
273
274 failed:
275         talloc_free(cldap);
276         return NULL;
277 }
278
279
280 /*
281   setup a handler for incoming requests
282 */
283 NTSTATUS cldap_set_incoming_handler(struct cldap_socket *cldap,
284                                   void (*handler)(struct cldap_socket *, struct ldap_message *, 
285                                                   struct socket_address *),
286                                   void *private)
287 {
288         cldap->incoming.handler = handler;
289         cldap->incoming.private = private;
290         EVENT_FD_READABLE(cldap->fde);
291         return NT_STATUS_OK;
292 }
293
294 /*
295   queue a cldap request for send
296 */
297 struct cldap_request *cldap_search_send(struct cldap_socket *cldap, 
298                                         struct cldap_search *io)
299 {
300         struct ldap_message *msg;
301         struct cldap_request *req;
302         struct ldap_SearchRequest *search;
303
304         req = talloc_zero(cldap, struct cldap_request);
305         if (req == NULL) goto failed;
306
307         req->cldap       = cldap;
308         req->state       = CLDAP_REQUEST_SEND;
309         req->timeout     = io->in.timeout;
310         req->num_retries = io->in.retries;
311         req->is_reply    = false;
312         req->asn1        = asn1_init(req);
313         if (!req->asn1) {
314                 goto failed;
315         }
316
317         req->dest = socket_address_from_strings(req, cldap->sock->backend_name,
318                                                 io->in.dest_address, 
319                                                 io->in.dest_port);
320         if (!req->dest) goto failed;
321
322         req->message_id = idr_get_new_random(cldap->idr, req, UINT16_MAX);
323         if (req->message_id == -1) goto failed;
324
325         talloc_set_destructor(req, cldap_request_destructor);
326
327         msg = talloc(req, struct ldap_message);
328         if (msg == NULL) goto failed;
329         msg->messageid       = req->message_id;
330         msg->type            = LDAP_TAG_SearchRequest;
331         msg->controls        = NULL;
332         search = &msg->r.SearchRequest;
333
334         search->basedn         = "";
335         search->scope          = LDAP_SEARCH_SCOPE_BASE;
336         search->deref          = LDAP_DEREFERENCE_NEVER;
337         search->timelimit      = 0;
338         search->sizelimit      = 0;
339         search->attributesonly = false;
340         search->num_attributes = str_list_length(io->in.attributes);
341         search->attributes     = io->in.attributes;
342         search->tree           = ldb_parse_tree(req, io->in.filter);
343         if (search->tree == NULL) {
344                 goto failed;
345         }
346
347         if (!ldap_encode(msg, &req->encoded, req)) {
348                 DEBUG(0,("Failed to encode cldap message to %s:%d\n",
349                          req->dest->addr, req->dest->port));
350                 goto failed;
351         }
352
353         DLIST_ADD_END(cldap->send_queue, req, struct cldap_request *);
354
355         EVENT_FD_WRITEABLE(cldap->fde);
356
357         return req;
358
359 failed:
360         talloc_free(req);
361         return NULL;
362 }
363
364
365 /*
366   queue a cldap reply for send
367 */
368 NTSTATUS cldap_reply_send(struct cldap_socket *cldap, struct cldap_reply *io)
369 {
370         struct ldap_message *msg;
371         struct cldap_request *req;
372         DATA_BLOB blob1, blob2;
373         NTSTATUS status = NT_STATUS_NO_MEMORY;
374
375         req = talloc_zero(cldap, struct cldap_request);
376         if (req == NULL) goto failed;
377
378         req->cldap       = cldap;
379         req->state       = CLDAP_REQUEST_SEND;
380         req->is_reply    = true;
381         req->asn1        = asn1_init(req);
382         if (!req->asn1) {
383                 goto failed;
384         }
385
386         req->dest        = io->dest;
387         if (talloc_reference(req, io->dest) == NULL) goto failed;
388
389         talloc_set_destructor(req, cldap_request_destructor);
390
391         msg = talloc(req, struct ldap_message);
392         if (msg == NULL) goto failed;
393         msg->messageid       = io->messageid;
394         msg->controls        = NULL;
395         
396         if (io->response) {
397                 msg->type = LDAP_TAG_SearchResultEntry;
398                 msg->r.SearchResultEntry = *io->response;
399
400                 if (!ldap_encode(msg, &blob1, req)) {
401                         DEBUG(0,("Failed to encode cldap message to %s:%d\n",
402                                  req->dest->addr, req->dest->port));
403                         status = NT_STATUS_INVALID_PARAMETER;
404                         goto failed;
405                 }
406         } else {
407                 blob1 = data_blob(NULL, 0);
408         }
409
410         msg->type = LDAP_TAG_SearchResultDone;
411         msg->r.SearchResultDone = *io->result;
412
413         if (!ldap_encode(msg, &blob2, req)) {
414                 DEBUG(0,("Failed to encode cldap message to %s:%d\n",
415                          req->dest->addr, req->dest->port));
416                 status = NT_STATUS_INVALID_PARAMETER;
417                 goto failed;
418         }
419
420         req->encoded = data_blob_talloc(req, NULL, blob1.length + blob2.length);
421         if (req->encoded.data == NULL) goto failed;
422
423         memcpy(req->encoded.data, blob1.data, blob1.length);
424         memcpy(req->encoded.data+blob1.length, blob2.data, blob2.length);
425
426         DLIST_ADD_END(cldap->send_queue, req, struct cldap_request *);
427
428         EVENT_FD_WRITEABLE(cldap->fde);
429
430         return NT_STATUS_OK;
431
432 failed:
433         talloc_free(req);
434         return status;
435 }
436
437 /*
438   receive a cldap reply
439 */
440 NTSTATUS cldap_search_recv(struct cldap_request *req, 
441                            TALLOC_CTX *mem_ctx, 
442                            struct cldap_search *io)
443 {
444         struct ldap_message *ldap_msg;
445         NTSTATUS status;
446
447         if (req == NULL) {
448                 return NT_STATUS_NO_MEMORY;
449         }
450
451         while (req->state < CLDAP_REQUEST_DONE) {
452                 if (event_loop_once(req->cldap->event_ctx) != 0) {
453                         talloc_free(req);
454                         return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
455                 }
456         }
457
458         if (req->state == CLDAP_REQUEST_ERROR) {
459                 status = req->status;
460                 talloc_free(req);
461                 return status;
462         }
463
464         ldap_msg = talloc(mem_ctx, struct ldap_message);
465         NT_STATUS_HAVE_NO_MEMORY(ldap_msg);
466
467         status = ldap_decode(req->asn1, ldap_msg);
468         if (!NT_STATUS_IS_OK(status)) {
469                 DEBUG(2,("Failed to decode cldap search reply: %s\n", nt_errstr(status)));
470                 talloc_free(req);
471                 return status;
472         }
473
474         ZERO_STRUCT(io->out);
475
476         /* the first possible form has a search result in first place */
477         if (ldap_msg->type == LDAP_TAG_SearchResultEntry) {
478                 io->out.response = talloc(mem_ctx, struct ldap_SearchResEntry);
479                 NT_STATUS_HAVE_NO_MEMORY(io->out.response);
480                 *io->out.response = ldap_msg->r.SearchResultEntry;
481
482                 /* decode the 2nd part */
483                 status = ldap_decode(req->asn1, ldap_msg);
484                 if (!NT_STATUS_IS_OK(status)) {
485                         DEBUG(2,("Failed to decode cldap search result entry: %s\n", nt_errstr(status)));
486                         talloc_free(req);
487                         return status;
488                 }
489         }
490
491         if (ldap_msg->type != LDAP_TAG_SearchResultDone) {
492                 talloc_free(req);
493                 return NT_STATUS_LDAP(LDAP_PROTOCOL_ERROR);
494         }
495
496         io->out.result = talloc(mem_ctx, struct ldap_Result);
497         NT_STATUS_HAVE_NO_MEMORY(io->out.result);
498         *io->out.result = ldap_msg->r.SearchResultDone;
499
500         talloc_free(req);
501
502         if (io->out.result->resultcode != LDAP_SUCCESS) {
503                 return NT_STATUS_LDAP(io->out.result->resultcode);
504         }
505         return NT_STATUS_OK;
506 }
507
508
509 /*
510   synchronous cldap search
511 */
512 NTSTATUS cldap_search(struct cldap_socket *cldap, 
513                       TALLOC_CTX *mem_ctx, 
514                       struct cldap_search *io)
515 {
516         struct cldap_request *req = cldap_search_send(cldap, io);
517         return cldap_search_recv(req, mem_ctx, io);
518 }
519
520
521
522 /*
523   queue a cldap netlogon for send
524 */
525 struct cldap_request *cldap_netlogon_send(struct cldap_socket *cldap, 
526                                           struct cldap_netlogon *io)
527 {
528         struct cldap_search search;
529         char *filter;
530         struct cldap_request *req;
531         const char *attr[] = { "NetLogon", NULL };
532         TALLOC_CTX *tmp_ctx = talloc_new(cldap);
533
534         filter = talloc_asprintf(tmp_ctx, "(&(NtVer=%s)", 
535                                  ldap_encode_ndr_uint32(tmp_ctx, io->in.version));
536         if (filter == NULL) goto failed;
537         if (io->in.user) {
538                 filter = talloc_asprintf_append_buffer(filter, "(User=%s)", io->in.user);
539                 if (filter == NULL) goto failed;
540         }
541         if (io->in.host) {
542                 filter = talloc_asprintf_append_buffer(filter, "(Host=%s)", io->in.host);
543                 if (filter == NULL) goto failed;
544         }
545         if (io->in.realm) {
546                 filter = talloc_asprintf_append_buffer(filter, "(DnsDomain=%s)", io->in.realm);
547                 if (filter == NULL) goto failed;
548         }
549         if (io->in.acct_control != -1) {
550                 filter = talloc_asprintf_append_buffer(filter, "(AAC=%s)", 
551                                                 ldap_encode_ndr_uint32(tmp_ctx, io->in.acct_control));
552                 if (filter == NULL) goto failed;
553         }
554         if (io->in.domain_sid) {
555                 struct dom_sid *sid = dom_sid_parse_talloc(tmp_ctx, io->in.domain_sid);
556                 if (sid == NULL) goto failed;
557                 filter = talloc_asprintf_append_buffer(filter, "(domainSid=%s)",
558                                                 ldap_encode_ndr_dom_sid(tmp_ctx, sid));
559                 if (filter == NULL) goto failed;
560         }
561         if (io->in.domain_guid) {
562                 struct GUID guid;
563                 NTSTATUS status;
564                 status = GUID_from_string(io->in.domain_guid, &guid);
565                 if (!NT_STATUS_IS_OK(status)) goto failed;
566                 filter = talloc_asprintf_append_buffer(filter, "(DomainGuid=%s)",
567                                                 ldap_encode_ndr_GUID(tmp_ctx, &guid));
568                 if (filter == NULL) goto failed;
569         }
570         filter = talloc_asprintf_append_buffer(filter, ")");
571         if (filter == NULL) goto failed;
572
573         search.in.dest_address = io->in.dest_address;
574         search.in.dest_port    = io->in.dest_port;
575         search.in.filter       = filter;
576         search.in.attributes   = attr;
577         search.in.timeout      = 2;
578         search.in.retries      = 2;
579
580         req = cldap_search_send(cldap, &search);
581
582         talloc_free(tmp_ctx);
583         return req;
584 failed:
585         talloc_free(tmp_ctx);
586         return NULL;
587 }
588
589
590 /*
591   receive a cldap netlogon reply
592 */
593 NTSTATUS cldap_netlogon_recv(struct cldap_request *req, 
594                              TALLOC_CTX *mem_ctx, 
595                              struct cldap_netlogon *io)
596 {
597         NTSTATUS status;
598         struct cldap_search search;
599         struct cldap_socket *cldap;
600         DATA_BLOB *data;
601
602         cldap = req->cldap;
603
604         status = cldap_search_recv(req, mem_ctx, &search);
605         if (!NT_STATUS_IS_OK(status)) {
606                 return status;
607         }
608         if (search.out.response == NULL) {
609                 return NT_STATUS_NOT_FOUND;
610         }
611
612         if (search.out.response->num_attributes != 1 ||
613             strcasecmp(search.out.response->attributes[0].name, "netlogon") != 0 ||
614             search.out.response->attributes[0].num_values != 1 ||
615             search.out.response->attributes[0].values->length < 2) {
616                 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
617         }
618         data = search.out.response->attributes[0].values;
619
620         status = pull_netlogon_samlogon_response(data, mem_ctx, req->cldap->iconv_convenience,
621                                                  &io->out.netlogon);
622         if (!NT_STATUS_IS_OK(status)) {
623                 return status;
624         }
625         
626         if (io->in.map_response) {
627                 map_netlogon_samlogon_response(&io->out.netlogon);
628         }
629         return NT_STATUS_OK;
630 }
631
632 /*
633   sync cldap netlogon search
634 */
635 NTSTATUS cldap_netlogon(struct cldap_socket *cldap, 
636                         TALLOC_CTX *mem_ctx, struct cldap_netlogon *io)
637 {
638         struct cldap_request *req = cldap_netlogon_send(cldap, io);
639         return cldap_netlogon_recv(req, mem_ctx, io);
640 }
641
642
643 /*
644   send an empty reply (used on any error, so the client doesn't keep waiting
645   or send the bad request again)
646 */
647 NTSTATUS cldap_empty_reply(struct cldap_socket *cldap, 
648                            uint32_t message_id,
649                            struct socket_address *src)
650 {
651         NTSTATUS status;
652         struct cldap_reply reply;
653         struct ldap_Result result;
654
655         reply.messageid    = message_id;
656         reply.dest         = src;
657         reply.response     = NULL;
658         reply.result       = &result;
659
660         ZERO_STRUCT(result);
661
662         status = cldap_reply_send(cldap, &reply);
663
664         return status;
665 }
666
667 /*
668   send an error reply (used on any error, so the client doesn't keep waiting
669   or send the bad request again)
670 */
671 NTSTATUS cldap_error_reply(struct cldap_socket *cldap, 
672                            uint32_t message_id,
673                            struct socket_address *src,
674                            int resultcode,
675                            const char *errormessage)
676 {
677         NTSTATUS status;
678         struct cldap_reply reply;
679         struct ldap_Result result;
680
681         reply.messageid    = message_id;
682         reply.dest         = src;
683         reply.response     = NULL;
684         reply.result       = &result;
685
686         ZERO_STRUCT(result);
687         result.resultcode       = resultcode;
688         result.errormessage     = errormessage;
689
690         status = cldap_reply_send(cldap, &reply);
691
692         return status;
693 }
694
695
696 /*
697   send a netlogon reply 
698 */
699 NTSTATUS cldap_netlogon_reply(struct cldap_socket *cldap, 
700                               uint32_t message_id,
701                               struct socket_address *src,
702                               uint32_t version,
703                               struct netlogon_samlogon_response *netlogon)
704 {
705         NTSTATUS status;
706         struct cldap_reply reply;
707         struct ldap_SearchResEntry response;
708         struct ldap_Result result;
709         TALLOC_CTX *tmp_ctx = talloc_new(cldap);
710         DATA_BLOB blob;
711
712         status = push_netlogon_samlogon_response(&blob, tmp_ctx, cldap->iconv_convenience,
713                                                  netlogon);
714         if (!NT_STATUS_IS_OK(status)) {
715                 return status;
716         }
717         reply.messageid    = message_id;
718         reply.dest         = src;
719         reply.response     = &response;
720         reply.result       = &result;
721
722         ZERO_STRUCT(result);
723
724         response.dn = "";
725         response.num_attributes = 1;
726         response.attributes = talloc(tmp_ctx, struct ldb_message_element);
727         NT_STATUS_HAVE_NO_MEMORY(response.attributes);
728         response.attributes->name = "netlogon";
729         response.attributes->num_values = 1;
730         response.attributes->values = &blob;
731
732         status = cldap_reply_send(cldap, &reply);
733
734         talloc_free(tmp_ctx);
735
736         return status;
737 }
738
739