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/>.
22 #include "../lib/util/asn1.h"
23 #include "../lib/tsocket/tsocket.h"
24 #include "../lib/util/tevent_unix.h"
26 static int tldap_simple_recv(struct tevent_req
*req
);
28 bool tevent_req_is_ldap_error(struct tevent_req
*req
, int *perr
)
30 enum tevent_req_state state
;
33 if (!tevent_req_is_error(req
, &state
, &err
)) {
37 case TEVENT_REQ_TIMED_OUT
:
38 *perr
= TLDAP_TIMEOUT
;
40 case TEVENT_REQ_NO_MEMORY
:
41 *perr
= TLDAP_NO_MEMORY
;
43 case TEVENT_REQ_USER_ERROR
:
47 *perr
= TLDAP_OPERATIONS_ERROR
;
53 struct tldap_ctx_attribute
{
58 struct tldap_context
{
63 struct tstream_context
*conn
;
66 struct tevent_queue
*outgoing
;
67 struct tevent_req
**pending
;
69 /* For the sync wrappers we need something like get_last_error... */
70 struct tldap_message
*last_msg
;
73 void (*log_fn
)(void *context
, enum tldap_debug_level level
,
74 const char *fmt
, va_list ap
);
77 struct tldap_ctx_attribute
*ctx_attrs
;
80 struct tldap_message
{
81 struct asn1_data
*data
;
88 struct tldap_attribute
*attribs
;
90 /* Error data sent by the server */
93 char *res_diagnosticmessage
;
95 struct tldap_control
*res_sctrls
;
97 /* Controls sent by the server */
98 struct tldap_control
*ctrls
;
101 void tldap_set_debug(struct tldap_context
*ld
,
102 void (*log_fn
)(void *log_private
,
103 enum tldap_debug_level level
,
105 va_list ap
) PRINTF_ATTRIBUTE(3,0),
109 ld
->log_private
= log_private
;
112 static void tldap_debug(struct tldap_context
*ld
,
113 enum tldap_debug_level level
,
114 const char *fmt
, ...)
120 if (ld
->log_fn
== NULL
) {
124 ld
->log_fn(ld
->log_private
, level
, fmt
, ap
);
128 static int tldap_next_msgid(struct tldap_context
*ld
)
132 result
= ld
->msgid
++;
133 if (ld
->msgid
== 2147483647) {
139 struct tldap_context
*tldap_context_create(TALLOC_CTX
*mem_ctx
, int fd
)
141 struct tldap_context
*ctx
;
144 ctx
= talloc_zero(mem_ctx
, struct tldap_context
);
148 ret
= tstream_bsd_existing_socket(ctx
, fd
, &ctx
->conn
);
155 ctx
->outgoing
= tevent_queue_create(ctx
, "tldap_outgoing");
156 if (ctx
->outgoing
== NULL
) {
163 bool tldap_connection_ok(struct tldap_context
*ld
)
168 return !ld
->server_down
;
171 static struct tldap_ctx_attribute
*tldap_context_findattr(
172 struct tldap_context
*ld
, const char *name
)
176 num_attrs
= talloc_array_length(ld
->ctx_attrs
);
178 for (i
=0; i
<num_attrs
; i
++) {
179 if (strcmp(ld
->ctx_attrs
[i
].name
, name
) == 0) {
180 return &ld
->ctx_attrs
[i
];
186 bool tldap_context_setattr(struct tldap_context
*ld
,
187 const char *name
, const void *_pptr
)
189 struct tldap_ctx_attribute
*tmp
, *attr
;
192 void **pptr
= (void **)discard_const_p(void,_pptr
);
194 attr
= tldap_context_findattr(ld
, name
);
197 * We don't actually delete attrs, we don't expect tons of
198 * attributes being shuffled around.
200 TALLOC_FREE(attr
->ptr
);
202 attr
->ptr
= talloc_move(ld
->ctx_attrs
, pptr
);
208 tmpname
= talloc_strdup(ld
, name
);
209 if (tmpname
== NULL
) {
213 num_attrs
= talloc_array_length(ld
->ctx_attrs
);
215 tmp
= talloc_realloc(ld
, ld
->ctx_attrs
, struct tldap_ctx_attribute
,
218 TALLOC_FREE(tmpname
);
221 tmp
[num_attrs
].name
= talloc_move(tmp
, &tmpname
);
223 tmp
[num_attrs
].ptr
= talloc_move(tmp
, pptr
);
225 tmp
[num_attrs
].ptr
= NULL
;
232 void *tldap_context_getattr(struct tldap_context
*ld
, const char *name
)
234 struct tldap_ctx_attribute
*attr
= tldap_context_findattr(ld
, name
);
242 struct read_ldap_state
{
247 static ssize_t
read_ldap_more(uint8_t *buf
, size_t buflen
, void *private_data
);
248 static void read_ldap_done(struct tevent_req
*subreq
);
250 static struct tevent_req
*read_ldap_send(TALLOC_CTX
*mem_ctx
,
251 struct tevent_context
*ev
,
252 struct tstream_context
*conn
)
254 struct tevent_req
*req
, *subreq
;
255 struct read_ldap_state
*state
;
257 req
= tevent_req_create(mem_ctx
, &state
, struct read_ldap_state
);
263 subreq
= tstream_read_packet_send(state
, ev
, conn
, 2, read_ldap_more
,
265 if (tevent_req_nomem(subreq
, req
)) {
266 return tevent_req_post(req
, ev
);
268 tevent_req_set_callback(subreq
, read_ldap_done
, req
);
272 static ssize_t
read_ldap_more(uint8_t *buf
, size_t buflen
, void *private_data
)
274 struct read_ldap_state
*state
= talloc_get_type_abort(
275 private_data
, struct read_ldap_state
);
280 /* We've been here, we're done */
285 * From ldap.h: LDAP_TAG_MESSAGE is 0x30
287 if (buf
[0] != 0x30) {
292 if ((len
& 0x80) == 0) {
297 lensize
= (len
& 0x7f);
301 /* Please get us the full length */
304 if (buflen
> 2 + lensize
) {
308 if (buflen
!= 2 + lensize
) {
312 for (i
=0; i
<lensize
; i
++) {
313 len
= (len
<< 8) | buf
[2+i
];
318 static void read_ldap_done(struct tevent_req
*subreq
)
320 struct tevent_req
*req
= tevent_req_callback_data(
321 subreq
, struct tevent_req
);
322 struct read_ldap_state
*state
= tevent_req_data(
323 req
, struct read_ldap_state
);
327 nread
= tstream_read_packet_recv(subreq
, state
, &state
->buf
, &err
);
330 tevent_req_error(req
, err
);
333 tevent_req_done(req
);
336 static ssize_t
read_ldap_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
337 uint8_t **pbuf
, int *perrno
)
339 struct read_ldap_state
*state
= tevent_req_data(
340 req
, struct read_ldap_state
);
342 if (tevent_req_is_unix_error(req
, perrno
)) {
345 *pbuf
= talloc_move(mem_ctx
, &state
->buf
);
346 return talloc_get_size(*pbuf
);
349 struct tldap_msg_state
{
350 struct tldap_context
*ld
;
351 struct tevent_context
*ev
;
355 struct asn1_data
*data
;
359 static void tldap_push_controls(struct asn1_data
*data
,
360 struct tldap_control
*sctrls
,
365 if ((sctrls
== NULL
) || (num_sctrls
== 0)) {
369 asn1_push_tag(data
, ASN1_CONTEXT(0));
371 for (i
=0; i
<num_sctrls
; i
++) {
372 struct tldap_control
*c
= &sctrls
[i
];
373 asn1_push_tag(data
, ASN1_SEQUENCE(0));
374 asn1_write_OctetString(data
, c
->oid
, strlen(c
->oid
));
376 asn1_write_BOOLEAN(data
, true);
378 if (c
->value
.data
!= NULL
) {
379 asn1_write_OctetString(data
, c
->value
.data
,
382 asn1_pop_tag(data
); /* ASN1_SEQUENCE(0) */
385 asn1_pop_tag(data
); /* ASN1_CONTEXT(0) */
388 static void tldap_msg_sent(struct tevent_req
*subreq
);
389 static void tldap_msg_received(struct tevent_req
*subreq
);
391 static struct tevent_req
*tldap_msg_send(TALLOC_CTX
*mem_ctx
,
392 struct tevent_context
*ev
,
393 struct tldap_context
*ld
,
394 int id
, struct asn1_data
*data
,
395 struct tldap_control
*sctrls
,
398 struct tevent_req
*req
, *subreq
;
399 struct tldap_msg_state
*state
;
402 tldap_debug(ld
, TLDAP_DEBUG_TRACE
, "tldap_msg_send: sending msg %d\n",
405 req
= tevent_req_create(mem_ctx
, &state
, struct tldap_msg_state
);
413 if (state
->ld
->server_down
) {
414 tevent_req_error(req
, TLDAP_SERVER_DOWN
);
415 return tevent_req_post(req
, ev
);
418 tldap_push_controls(data
, sctrls
, num_sctrls
);
422 if (!asn1_blob(data
, &blob
)) {
423 tevent_req_error(req
, TLDAP_ENCODING_ERROR
);
424 return tevent_req_post(req
, ev
);
427 state
->iov
.iov_base
= (void *)blob
.data
;
428 state
->iov
.iov_len
= blob
.length
;
430 subreq
= tstream_writev_queue_send(state
, ev
, ld
->conn
, ld
->outgoing
,
432 if (tevent_req_nomem(subreq
, req
)) {
433 return tevent_req_post(req
, ev
);
435 tevent_req_set_callback(subreq
, tldap_msg_sent
, req
);
439 static void tldap_msg_unset_pending(struct tevent_req
*req
)
441 struct tldap_msg_state
*state
= tevent_req_data(
442 req
, struct tldap_msg_state
);
443 struct tldap_context
*ld
= state
->ld
;
444 int num_pending
= talloc_array_length(ld
->pending
);
447 if (num_pending
== 1) {
448 TALLOC_FREE(ld
->pending
);
452 for (i
=0; i
<num_pending
; i
++) {
453 if (req
== ld
->pending
[i
]) {
457 if (i
== num_pending
) {
459 * Something's seriously broken. Just returning here is the
460 * right thing nevertheless, the point of this routine is to
461 * remove ourselves from cli->pending.
467 * Remove ourselves from the cli->pending array
469 if (num_pending
> 1) {
470 ld
->pending
[i
] = ld
->pending
[num_pending
-1];
474 * No NULL check here, we're shrinking by sizeof(void *), and
475 * talloc_realloc just adjusts the size for this.
477 ld
->pending
= talloc_realloc(NULL
, ld
->pending
, struct tevent_req
*,
482 static int tldap_msg_destructor(struct tevent_req
*req
)
484 tldap_msg_unset_pending(req
);
488 static bool tldap_msg_set_pending(struct tevent_req
*req
)
490 struct tldap_msg_state
*state
= tevent_req_data(
491 req
, struct tldap_msg_state
);
492 struct tldap_context
*ld
;
493 struct tevent_req
**pending
;
495 struct tevent_req
*subreq
;
498 num_pending
= talloc_array_length(ld
->pending
);
500 pending
= talloc_realloc(ld
, ld
->pending
, struct tevent_req
*,
502 if (pending
== NULL
) {
505 pending
[num_pending
] = req
;
506 ld
->pending
= pending
;
507 talloc_set_destructor(req
, tldap_msg_destructor
);
509 if (num_pending
> 0) {
514 * We're the first one, add the read_ldap request that waits for the
515 * answer from the server
517 subreq
= read_ldap_send(ld
->pending
, state
->ev
, ld
->conn
);
518 if (subreq
== NULL
) {
519 tldap_msg_unset_pending(req
);
522 tevent_req_set_callback(subreq
, tldap_msg_received
, ld
);
526 static void tldap_msg_sent(struct tevent_req
*subreq
)
528 struct tevent_req
*req
= tevent_req_callback_data(
529 subreq
, struct tevent_req
);
530 struct tldap_msg_state
*state
= tevent_req_data(
531 req
, struct tldap_msg_state
);
535 nwritten
= tstream_writev_queue_recv(subreq
, &err
);
537 if (nwritten
== -1) {
538 state
->ld
->server_down
= true;
539 tevent_req_error(req
, TLDAP_SERVER_DOWN
);
543 if (!tldap_msg_set_pending(req
)) {
549 static int tldap_msg_msgid(struct tevent_req
*req
)
551 struct tldap_msg_state
*state
= tevent_req_data(
552 req
, struct tldap_msg_state
);
557 static void tldap_msg_received(struct tevent_req
*subreq
)
559 struct tldap_context
*ld
= tevent_req_callback_data(
560 subreq
, struct tldap_context
);
561 struct tevent_req
*req
;
562 struct tldap_msg_state
*state
;
563 struct asn1_data
*data
;
572 received
= read_ldap_recv(subreq
, talloc_tos(), &inbuf
, &err
);
574 if (received
== -1) {
575 status
= TLDAP_SERVER_DOWN
;
579 data
= asn1_init(talloc_tos());
581 status
= TLDAP_NO_MEMORY
;
584 asn1_load_nocopy(data
, inbuf
, received
);
587 ok
&= asn1_start_tag(data
, ASN1_SEQUENCE(0));
588 ok
&= asn1_read_Integer(data
, &id
);
589 ok
&= asn1_peek_uint8(data
, &type
);
592 status
= TLDAP_PROTOCOL_ERROR
;
596 tldap_debug(ld
, TLDAP_DEBUG_TRACE
, "tldap_msg_received: got msg %d "
597 "type %d\n", id
, (int)type
);
599 num_pending
= talloc_array_length(ld
->pending
);
601 for (i
=0; i
<num_pending
; i
++) {
602 if (id
== tldap_msg_msgid(ld
->pending
[i
])) {
606 if (i
== num_pending
) {
607 /* Dump unexpected reply */
608 tldap_debug(ld
, TLDAP_DEBUG_WARNING
, "tldap_msg_received: "
609 "No request pending for msg %d\n", id
);
615 req
= ld
->pending
[i
];
616 state
= tevent_req_data(req
, struct tldap_msg_state
);
618 state
->inbuf
= talloc_move(state
, &inbuf
);
619 state
->data
= talloc_move(state
, &data
);
621 talloc_set_destructor(req
, NULL
);
622 tldap_msg_unset_pending(req
);
623 num_pending
= talloc_array_length(ld
->pending
);
625 tevent_req_done(req
);
628 if (num_pending
== 0) {
631 if (talloc_array_length(ld
->pending
) > num_pending
) {
633 * The callback functions called from tevent_req_done() above
634 * have put something on the pending queue. We don't have to
635 * trigger the read_ldap_send(), tldap_msg_set_pending() has
636 * done it for us already.
641 state
= tevent_req_data(ld
->pending
[0], struct tldap_msg_state
);
642 subreq
= read_ldap_send(ld
->pending
, state
->ev
, ld
->conn
);
643 if (subreq
== NULL
) {
644 status
= TLDAP_NO_MEMORY
;
647 tevent_req_set_callback(subreq
, tldap_msg_received
, ld
);
651 while (talloc_array_length(ld
->pending
) > 0) {
652 req
= ld
->pending
[0];
653 talloc_set_destructor(req
, NULL
);
654 tldap_msg_destructor(req
);
655 tevent_req_error(req
, status
);
659 static int tldap_msg_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
660 struct tldap_message
**pmsg
)
662 struct tldap_msg_state
*state
= tevent_req_data(
663 req
, struct tldap_msg_state
);
664 struct tldap_message
*msg
;
668 if (tevent_req_is_ldap_error(req
, &err
)) {
672 if (!asn1_peek_uint8(state
->data
, &msgtype
)) {
673 return TLDAP_PROTOCOL_ERROR
;
677 return TLDAP_SUCCESS
;
680 msg
= talloc_zero(mem_ctx
, struct tldap_message
);
682 return TLDAP_NO_MEMORY
;
686 msg
->inbuf
= talloc_move(msg
, &state
->inbuf
);
687 msg
->data
= talloc_move(msg
, &state
->data
);
691 return TLDAP_SUCCESS
;
694 struct tldap_req_state
{
696 struct asn1_data
*out
;
697 struct tldap_message
*result
;
700 static struct tevent_req
*tldap_req_create(TALLOC_CTX
*mem_ctx
,
701 struct tldap_context
*ld
,
702 struct tldap_req_state
**pstate
)
704 struct tevent_req
*req
;
705 struct tldap_req_state
*state
;
707 req
= tevent_req_create(mem_ctx
, &state
, struct tldap_req_state
);
712 state
->out
= asn1_init(state
);
713 if (state
->out
== NULL
) {
717 state
->result
= NULL
;
718 state
->id
= tldap_next_msgid(ld
);
720 asn1_push_tag(state
->out
, ASN1_SEQUENCE(0));
721 asn1_write_Integer(state
->out
, state
->id
);
727 static void tldap_save_msg(struct tldap_context
*ld
, struct tevent_req
*req
)
729 struct tldap_req_state
*state
= tevent_req_data(
730 req
, struct tldap_req_state
);
732 TALLOC_FREE(ld
->last_msg
);
733 ld
->last_msg
= talloc_move(ld
, &state
->result
);
736 static char *blob2string_talloc(TALLOC_CTX
*mem_ctx
, DATA_BLOB blob
)
738 char *result
= talloc_array(mem_ctx
, char, blob
.length
+1);
740 if (result
== NULL
) {
744 memcpy(result
, blob
.data
, blob
.length
);
745 result
[blob
.length
] = '\0';
749 static bool asn1_read_OctetString_talloc(TALLOC_CTX
*mem_ctx
,
750 struct asn1_data
*data
,
755 if (!asn1_read_OctetString(data
, mem_ctx
, &string
))
758 result
= blob2string_talloc(mem_ctx
, string
);
760 data_blob_free(&string
);
762 if (result
== NULL
) {
769 static bool tldap_decode_controls(struct tldap_req_state
*state
);
771 static bool tldap_decode_response(struct tldap_req_state
*state
)
773 struct asn1_data
*data
= state
->result
->data
;
774 struct tldap_message
*msg
= state
->result
;
777 ok
&= asn1_read_enumerated(data
, &msg
->lderr
);
778 ok
&= asn1_read_OctetString_talloc(msg
, data
, &msg
->res_matcheddn
);
779 ok
&= asn1_read_OctetString_talloc(msg
, data
,
780 &msg
->res_diagnosticmessage
);
781 if (asn1_peek_tag(data
, ASN1_CONTEXT(3))) {
782 ok
&= asn1_start_tag(data
, ASN1_CONTEXT(3));
783 ok
&= asn1_read_OctetString_talloc(msg
, data
,
785 ok
&= asn1_end_tag(data
);
787 msg
->res_referral
= NULL
;
793 static void tldap_sasl_bind_done(struct tevent_req
*subreq
);
795 struct tevent_req
*tldap_sasl_bind_send(TALLOC_CTX
*mem_ctx
,
796 struct tevent_context
*ev
,
797 struct tldap_context
*ld
,
799 const char *mechanism
,
801 struct tldap_control
*sctrls
,
803 struct tldap_control
*cctrls
,
806 struct tevent_req
*req
, *subreq
;
807 struct tldap_req_state
*state
;
809 req
= tldap_req_create(mem_ctx
, ld
, &state
);
818 asn1_push_tag(state
->out
, TLDAP_REQ_BIND
);
819 asn1_write_Integer(state
->out
, ld
->ld_version
);
820 asn1_write_OctetString(state
->out
, dn
, (dn
!= NULL
) ? strlen(dn
) : 0);
822 if (mechanism
== NULL
) {
823 asn1_push_tag(state
->out
, ASN1_CONTEXT_SIMPLE(0));
824 asn1_write(state
->out
, creds
->data
, creds
->length
);
825 asn1_pop_tag(state
->out
);
827 asn1_push_tag(state
->out
, ASN1_CONTEXT(3));
828 asn1_write_OctetString(state
->out
, mechanism
,
830 if ((creds
!= NULL
) && (creds
->data
!= NULL
)) {
831 asn1_write_OctetString(state
->out
, creds
->data
,
834 asn1_pop_tag(state
->out
);
837 if (!asn1_pop_tag(state
->out
)) {
838 tevent_req_error(req
, TLDAP_ENCODING_ERROR
);
839 return tevent_req_post(req
, ev
);
842 subreq
= tldap_msg_send(state
, ev
, ld
, state
->id
, state
->out
,
844 if (tevent_req_nomem(subreq
, req
)) {
845 return tevent_req_post(req
, ev
);
847 tevent_req_set_callback(subreq
, tldap_sasl_bind_done
, req
);
851 static void tldap_sasl_bind_done(struct tevent_req
*subreq
)
853 struct tevent_req
*req
= tevent_req_callback_data(
854 subreq
, struct tevent_req
);
855 struct tldap_req_state
*state
= tevent_req_data(
856 req
, struct tldap_req_state
);
859 err
= tldap_msg_recv(subreq
, state
, &state
->result
);
861 if (err
!= TLDAP_SUCCESS
) {
862 tevent_req_error(req
, err
);
865 if (state
->result
->type
!= TLDAP_RES_BIND
) {
866 tevent_req_error(req
, TLDAP_PROTOCOL_ERROR
);
869 if (!asn1_start_tag(state
->result
->data
, state
->result
->type
) ||
870 !tldap_decode_response(state
) ||
871 !asn1_end_tag(state
->result
->data
)) {
872 tevent_req_error(req
, TLDAP_DECODING_ERROR
);
876 * TODO: pull the reply blob
878 if (state
->result
->lderr
!= TLDAP_SUCCESS
) {
879 tevent_req_error(req
, state
->result
->lderr
);
882 tevent_req_done(req
);
885 int tldap_sasl_bind_recv(struct tevent_req
*req
)
887 return tldap_simple_recv(req
);
890 int tldap_sasl_bind(struct tldap_context
*ld
,
892 const char *mechanism
,
894 struct tldap_control
*sctrls
,
896 struct tldap_control
*cctrls
,
899 TALLOC_CTX
*frame
= talloc_stackframe();
900 struct tevent_context
*ev
;
901 struct tevent_req
*req
;
904 ev
= event_context_init(frame
);
906 result
= TLDAP_NO_MEMORY
;
910 req
= tldap_sasl_bind_send(frame
, ev
, ld
, dn
, mechanism
, creds
,
911 sctrls
, num_sctrls
, cctrls
, num_cctrls
);
913 result
= TLDAP_NO_MEMORY
;
917 if (!tevent_req_poll(req
, ev
)) {
918 result
= TLDAP_OPERATIONS_ERROR
;
922 result
= tldap_sasl_bind_recv(req
);
923 tldap_save_msg(ld
, req
);
929 struct tevent_req
*tldap_simple_bind_send(TALLOC_CTX
*mem_ctx
,
930 struct tevent_context
*ev
,
931 struct tldap_context
*ld
,
937 if (passwd
!= NULL
) {
938 cred
.data
= discard_const_p(uint8_t, passwd
);
939 cred
.length
= strlen(passwd
);
941 cred
.data
= discard_const_p(uint8_t, "");
944 return tldap_sasl_bind_send(mem_ctx
, ev
, ld
, dn
, NULL
, &cred
, NULL
, 0,
948 int tldap_simple_bind_recv(struct tevent_req
*req
)
950 return tldap_sasl_bind_recv(req
);
953 int tldap_simple_bind(struct tldap_context
*ld
, const char *dn
,
958 if (passwd
!= NULL
) {
959 cred
.data
= discard_const_p(uint8_t, passwd
);
960 cred
.length
= strlen(passwd
);
962 cred
.data
= discard_const_p(uint8_t, "");
965 return tldap_sasl_bind(ld
, dn
, NULL
, &cred
, NULL
, 0, NULL
, 0);
968 /*****************************************************************************/
970 /* can't use isalpha() as only a strict set is valid for LDAP */
972 static bool tldap_is_alpha(char c
)
974 return (((c
>= 'a') && (c
<= 'z')) || \
975 ((c
>= 'A') && (c
<= 'Z')));
978 static bool tldap_is_adh(char c
)
980 return tldap_is_alpha(c
) || isdigit(c
) || (c
== '-');
983 #define TLDAP_FILTER_AND ASN1_CONTEXT(0)
984 #define TLDAP_FILTER_OR ASN1_CONTEXT(1)
985 #define TLDAP_FILTER_NOT ASN1_CONTEXT(2)
986 #define TLDAP_FILTER_EQ ASN1_CONTEXT(3)
987 #define TLDAP_FILTER_SUB ASN1_CONTEXT(4)
988 #define TLDAP_FILTER_LE ASN1_CONTEXT(5)
989 #define TLDAP_FILTER_GE ASN1_CONTEXT(6)
990 #define TLDAP_FILTER_PRES ASN1_CONTEXT_SIMPLE(7)
991 #define TLDAP_FILTER_APX ASN1_CONTEXT(8)
992 #define TLDAP_FILTER_EXT ASN1_CONTEXT(9)
994 #define TLDAP_SUB_INI ASN1_CONTEXT_SIMPLE(0)
995 #define TLDAP_SUB_ANY ASN1_CONTEXT_SIMPLE(1)
996 #define TLDAP_SUB_FIN ASN1_CONTEXT_SIMPLE(2)
999 /* oid's should be numerical only in theory,
1000 * but apparently some broken servers may have alphanum aliases instead.
1001 * Do like openldap libraries and allow alphanum aliases for oids, but
1002 * do not allow Tagging options in that case.
1004 static bool tldap_is_attrdesc(const char *s
, int len
, bool no_tagopts
)
1006 bool is_oid
= false;
1010 /* first char has stricter rules */
1013 } else if (!tldap_is_alpha(*s
)) {
1014 /* bad first char */
1018 for (i
= 1; i
< len
; i
++) {
1021 if (isdigit(s
[i
])) {
1034 if (tldap_is_adh(s
[i
])) {
1041 /* no tagging options */
1048 if ((i
+ 1) == len
) {
1066 /* this function copies the value until the closing parenthesis is found. */
1067 static char *tldap_get_val(TALLOC_CTX
*memctx
,
1068 const char *value
, const char **_s
)
1070 const char *s
= value
;
1072 /* find terminator */
1075 if (s
&& (*(s
- 1) == '\\')) {
1080 if (!s
|| !(*s
== ')')) {
1081 /* malformed filter */
1087 return talloc_strndup(memctx
, value
, s
- value
);
1090 static int tldap_hex2char(const char *x
)
1092 if (isxdigit(x
[0]) && isxdigit(x
[1])) {
1093 const char h1
= x
[0], h2
= x
[1];
1096 if (h1
>= 'a') c
= h1
- (int)'a' + 10;
1097 else if (h1
>= 'A') c
= h1
- (int)'A' + 10;
1098 else if (h1
>= '0') c
= h1
- (int)'0';
1100 if (h2
>= 'a') c
+= h2
- (int)'a' + 10;
1101 else if (h2
>= 'A') c
+= h2
- (int)'A' + 10;
1102 else if (h2
>= '0') c
+= h2
- (int)'0';
1110 static bool tldap_find_first_star(const char *val
, const char **star
)
1114 for (s
= val
; *s
; s
++) {
1117 if (isxdigit(s
[1]) && isxdigit(s
[2])) {
1121 /* not hex based escape, check older syntax */
1130 /* invalid escape sequence */
1135 /* end of val, nothing found */
1145 /* string ended without closing parenthesis, filter is malformed */
1149 static bool tldap_unescape_inplace(char *value
, size_t *val_len
)
1153 for (i
= 0,p
= 0; i
< *val_len
; i
++) {
1159 /* these must be escaped */
1163 if (!value
[i
+ 1]) {
1169 c
= tldap_hex2char(&value
[i
]);
1170 if (c
>= 0 && c
< 256) {
1182 value
[p
] = value
[i
];
1191 value
[p
] = value
[i
];
1200 static bool tldap_push_filter_basic(struct tldap_context
*ld
,
1201 struct asn1_data
*data
,
1203 static bool tldap_push_filter_substring(struct tldap_context
*ld
,
1204 struct asn1_data
*data
,
1207 static bool tldap_push_filter_int(struct tldap_context
*ld
,
1208 struct asn1_data
*data
,
1211 const char *s
= *_s
;
1215 tldap_debug(ld
, TLDAP_DEBUG_ERROR
,
1216 "Incomplete or malformed filter\n");
1221 /* we are right after a parenthesis,
1222 * find out what op we have at hand */
1225 tldap_debug(ld
, TLDAP_DEBUG_TRACE
, "Filter op: AND\n");
1226 asn1_push_tag(data
, TLDAP_FILTER_AND
);
1231 tldap_debug(ld
, TLDAP_DEBUG_TRACE
, "Filter op: OR\n");
1232 asn1_push_tag(data
, TLDAP_FILTER_OR
);
1237 tldap_debug(ld
, TLDAP_DEBUG_TRACE
, "Filter op: NOT\n");
1238 asn1_push_tag(data
, TLDAP_FILTER_NOT
);
1240 ret
= tldap_push_filter_int(ld
, data
, &s
);
1249 tldap_debug(ld
, TLDAP_DEBUG_ERROR
,
1250 "Invalid parenthesis '%c'\n", *s
);
1254 tldap_debug(ld
, TLDAP_DEBUG_ERROR
,
1255 "Invalid filter termination\n");
1259 ret
= tldap_push_filter_basic(ld
, data
, &s
);
1266 /* only and/or filters get here.
1267 * go through the list of filters */
1270 /* RFC 4526: empty and/or */
1276 ret
= tldap_push_filter_int(ld
, data
, &s
);
1282 /* end of list, return */
1290 tldap_debug(ld
, TLDAP_DEBUG_ERROR
,
1291 "Incomplete or malformed filter\n");
1296 if (data
->has_error
) {
1305 static bool tldap_push_filter_basic(struct tldap_context
*ld
,
1306 struct asn1_data
*data
,
1309 TALLOC_CTX
*tmpctx
= talloc_tos();
1310 const char *s
= *_s
;
1318 size_t type_len
= 0;
1321 bool write_octect
= true;
1324 eq
= strchr(s
, '=');
1326 tldap_debug(ld
, TLDAP_DEBUG_ERROR
,
1327 "Invalid filter, missing equal sign\n");
1336 asn1_push_tag(data
, TLDAP_FILTER_LE
);
1340 asn1_push_tag(data
, TLDAP_FILTER_GE
);
1344 asn1_push_tag(data
, TLDAP_FILTER_APX
);
1348 asn1_push_tag(data
, TLDAP_FILTER_EXT
);
1349 write_octect
= false;
1355 if (*s
== ':') { /* [:dn]:rule:= value */
1357 /* malformed filter */
1361 } else { /* type[:dn][:rule]:= value */
1363 dn
= strchr(s
, ':');
1364 type_len
= dn
- type
;
1365 if (dn
== e
) { /* type:= value */
1372 rule
= strchr(dn
, ':');
1376 if ((rule
== dn
+ 1) || rule
+ 1 == e
) {
1377 /* malformed filter, contains "::" */
1381 if (strncasecmp_m(dn
, "dn:", 3) != 0) {
1386 /* malformed filter. With two
1387 * optionals, the first must be "dn"
1400 if (!type
&& !dn
&& !rule
) {
1401 /* malformed filter, there must be at least one */
1406 MatchingRuleAssertion ::= SEQUENCE {
1407 matchingRule [1] MatchingRuleID OPTIONAL,
1408 type [2] AttributeDescription OPTIONAL,
1409 matchValue [3] AssertionValue,
1410 dnAttributes [4] BOOLEAN DEFAULT FALSE
1414 /* check and add rule */
1416 ret
= tldap_is_attrdesc(rule
, e
- rule
, true);
1420 asn1_push_tag(data
, ASN1_CONTEXT_SIMPLE(1));
1421 asn1_write(data
, rule
, e
- rule
);
1425 /* check and add type */
1427 ret
= tldap_is_attrdesc(type
, type_len
, false);
1431 asn1_push_tag(data
, ASN1_CONTEXT_SIMPLE(2));
1432 asn1_write(data
, type
, type_len
);
1436 uval
= tldap_get_val(tmpctx
, val
, _s
);
1440 uval_len
= *_s
- val
;
1441 ret
= tldap_unescape_inplace(uval
, &uval_len
);
1446 asn1_push_tag(data
, ASN1_CONTEXT_SIMPLE(3));
1447 asn1_write(data
, uval
, uval_len
);
1450 asn1_push_tag(data
, ASN1_CONTEXT_SIMPLE(4));
1451 asn1_write_uint8(data
, dn
?1:0);
1458 ret
= tldap_is_attrdesc(s
, e
- s
, false);
1463 if (strncmp(val
, "*)", 2) == 0) {
1465 asn1_push_tag(data
, TLDAP_FILTER_PRES
);
1466 asn1_write(data
, s
, e
- s
);
1468 write_octect
= false;
1472 ret
= tldap_find_first_star(val
, &star
);
1478 asn1_push_tag(data
, TLDAP_FILTER_SUB
);
1479 asn1_write_OctetString(data
, s
, e
- s
);
1480 ret
= tldap_push_filter_substring(ld
, data
, val
, &s
);
1485 write_octect
= false;
1489 /* if nothing else, then it is just equality */
1490 asn1_push_tag(data
, TLDAP_FILTER_EQ
);
1491 write_octect
= true;
1496 uval
= tldap_get_val(tmpctx
, val
, _s
);
1500 uval_len
= *_s
- val
;
1501 ret
= tldap_unescape_inplace(uval
, &uval_len
);
1506 asn1_write_OctetString(data
, s
, e
- s
);
1507 asn1_write_OctetString(data
, uval
, uval_len
);
1510 if (data
->has_error
) {
1517 static bool tldap_push_filter_substring(struct tldap_context
*ld
,
1518 struct asn1_data
*data
,
1522 TALLOC_CTX
*tmpctx
= talloc_tos();
1523 bool initial
= true;
1530 SubstringFilter ::= SEQUENCE {
1531 type AttributeDescription,
1532 -- at least one must be present
1533 substrings SEQUENCE OF CHOICE {
1534 initial [0] LDAPString,
1536 final [2] LDAPString } }
1538 asn1_push_tag(data
, ASN1_SEQUENCE(0));
1541 ret
= tldap_find_first_star(val
, &star
);
1545 chunk_len
= star
- val
;
1549 if (!initial
&& chunk_len
== 0) {
1550 /* found '**', which is illegal */
1566 if (initial
&& chunk_len
== 0) {
1572 chunk
= talloc_strndup(tmpctx
, val
, chunk_len
);
1576 ret
= tldap_unescape_inplace(chunk
, &chunk_len
);
1583 asn1_push_tag(data
, TLDAP_SUB_INI
);
1586 asn1_push_tag(data
, TLDAP_SUB_ANY
);
1590 asn1_push_tag(data
, TLDAP_SUB_FIN
);
1596 asn1_write(data
, chunk
, chunk_len
);
1601 } while (*star
== '*');
1605 /* end of sequence */
1610 /* NOTE: although openldap libraries allow for spaces in some places, mosly
1611 * around parenthesis, we do not allow any spaces (except in values of
1612 * course) as I couldn't fine any place in RFC 4512 or RFC 4515 where
1613 * leading or trailing spaces where allowed.
1615 static bool tldap_push_filter(struct tldap_context
*ld
,
1616 struct asn1_data
*data
,
1619 const char *s
= filter
;
1622 ret
= tldap_push_filter_int(ld
, data
, &s
);
1624 tldap_debug(ld
, TLDAP_DEBUG_ERROR
,
1625 "Incomplete or malformed filter\n");
1631 /*****************************************************************************/
1633 static void tldap_search_done(struct tevent_req
*subreq
);
1635 struct tevent_req
*tldap_search_send(TALLOC_CTX
*mem_ctx
,
1636 struct tevent_context
*ev
,
1637 struct tldap_context
*ld
,
1638 const char *base
, int scope
,
1643 struct tldap_control
*sctrls
,
1645 struct tldap_control
*cctrls
,
1651 struct tevent_req
*req
, *subreq
;
1652 struct tldap_req_state
*state
;
1655 req
= tldap_req_create(mem_ctx
, ld
, &state
);
1660 asn1_push_tag(state
->out
, TLDAP_REQ_SEARCH
);
1661 asn1_write_OctetString(state
->out
, base
, strlen(base
));
1662 asn1_write_enumerated(state
->out
, scope
);
1663 asn1_write_enumerated(state
->out
, deref
);
1664 asn1_write_Integer(state
->out
, sizelimit
);
1665 asn1_write_Integer(state
->out
, timelimit
);
1666 asn1_write_BOOLEAN(state
->out
, attrsonly
);
1668 if (!tldap_push_filter(ld
, state
->out
, filter
)) {
1669 goto encoding_error
;
1672 asn1_push_tag(state
->out
, ASN1_SEQUENCE(0));
1673 for (i
=0; i
<num_attrs
; i
++) {
1674 asn1_write_OctetString(state
->out
, attrs
[i
], strlen(attrs
[i
]));
1676 asn1_pop_tag(state
->out
);
1677 asn1_pop_tag(state
->out
);
1679 subreq
= tldap_msg_send(state
, ev
, ld
, state
->id
, state
->out
,
1680 sctrls
, num_sctrls
);
1681 if (tevent_req_nomem(subreq
, req
)) {
1682 return tevent_req_post(req
, ev
);
1684 tevent_req_set_callback(subreq
, tldap_search_done
, req
);
1688 tevent_req_error(req
, TLDAP_ENCODING_ERROR
);
1689 return tevent_req_post(req
, ev
);
1692 static void tldap_search_done(struct tevent_req
*subreq
)
1694 struct tevent_req
*req
= tevent_req_callback_data(
1695 subreq
, struct tevent_req
);
1696 struct tldap_req_state
*state
= tevent_req_data(
1697 req
, struct tldap_req_state
);
1700 err
= tldap_msg_recv(subreq
, state
, &state
->result
);
1701 if (err
!= TLDAP_SUCCESS
) {
1702 tevent_req_error(req
, err
);
1705 switch (state
->result
->type
) {
1706 case TLDAP_RES_SEARCH_ENTRY
:
1707 case TLDAP_RES_SEARCH_REFERENCE
:
1708 if (!tldap_msg_set_pending(subreq
)) {
1709 tevent_req_oom(req
);
1712 tevent_req_notify_callback(req
);
1714 case TLDAP_RES_SEARCH_RESULT
:
1715 TALLOC_FREE(subreq
);
1716 if (!asn1_start_tag(state
->result
->data
,
1717 state
->result
->type
) ||
1718 !tldap_decode_response(state
) ||
1719 !asn1_end_tag(state
->result
->data
) ||
1720 !tldap_decode_controls(state
)) {
1721 tevent_req_error(req
, TLDAP_DECODING_ERROR
);
1724 tevent_req_done(req
);
1727 tevent_req_error(req
, TLDAP_PROTOCOL_ERROR
);
1732 int tldap_search_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
1733 struct tldap_message
**pmsg
)
1735 struct tldap_req_state
*state
= tevent_req_data(
1736 req
, struct tldap_req_state
);
1739 if (!tevent_req_is_in_progress(req
)
1740 && tevent_req_is_ldap_error(req
, &err
)) {
1744 if (tevent_req_is_in_progress(req
)) {
1745 switch (state
->result
->type
) {
1746 case TLDAP_RES_SEARCH_ENTRY
:
1747 case TLDAP_RES_SEARCH_REFERENCE
:
1750 return TLDAP_OPERATIONS_ERROR
;
1754 *pmsg
= talloc_move(mem_ctx
, &state
->result
);
1755 return TLDAP_SUCCESS
;
1758 struct tldap_sync_search_state
{
1759 TALLOC_CTX
*mem_ctx
;
1760 struct tldap_message
**entries
;
1761 struct tldap_message
**refs
;
1765 static void tldap_search_cb(struct tevent_req
*req
)
1767 struct tldap_sync_search_state
*state
=
1768 (struct tldap_sync_search_state
*)
1769 tevent_req_callback_data_void(req
);
1770 struct tldap_message
*msg
, **tmp
;
1771 int rc
, num_entries
, num_refs
;
1773 rc
= tldap_search_recv(req
, talloc_tos(), &msg
);
1774 if (rc
!= TLDAP_SUCCESS
) {
1779 switch (tldap_msg_type(msg
)) {
1780 case TLDAP_RES_SEARCH_ENTRY
:
1781 num_entries
= talloc_array_length(state
->entries
);
1782 tmp
= talloc_realloc(state
->mem_ctx
, state
->entries
,
1783 struct tldap_message
*, num_entries
+ 1);
1785 state
->rc
= TLDAP_NO_MEMORY
;
1788 state
->entries
= tmp
;
1789 state
->entries
[num_entries
] = talloc_move(state
->entries
,
1792 case TLDAP_RES_SEARCH_REFERENCE
:
1793 num_refs
= talloc_array_length(state
->refs
);
1794 tmp
= talloc_realloc(state
->mem_ctx
, state
->refs
,
1795 struct tldap_message
*, num_refs
+ 1);
1797 state
->rc
= TLDAP_NO_MEMORY
;
1801 state
->refs
[num_refs
] = talloc_move(state
->refs
, &msg
);
1803 case TLDAP_RES_SEARCH_RESULT
:
1804 state
->rc
= TLDAP_SUCCESS
;
1807 state
->rc
= TLDAP_PROTOCOL_ERROR
;
1812 int tldap_search(struct tldap_context
*ld
,
1813 const char *base
, int scope
, const char *filter
,
1814 const char **attrs
, int num_attrs
, int attrsonly
,
1815 struct tldap_control
*sctrls
, int num_sctrls
,
1816 struct tldap_control
*cctrls
, int num_cctrls
,
1817 int timelimit
, int sizelimit
, int deref
,
1818 TALLOC_CTX
*mem_ctx
, struct tldap_message
***entries
,
1819 struct tldap_message
***refs
)
1821 TALLOC_CTX
*frame
= talloc_stackframe();
1822 struct tevent_context
*ev
;
1823 struct tevent_req
*req
;
1824 struct tldap_sync_search_state state
;
1827 state
.mem_ctx
= mem_ctx
;
1828 state
.rc
= TLDAP_SUCCESS
;
1830 ev
= event_context_init(frame
);
1832 state
.rc
= TLDAP_NO_MEMORY
;
1836 req
= tldap_search_send(frame
, ev
, ld
, base
, scope
, filter
,
1837 attrs
, num_attrs
, attrsonly
,
1838 sctrls
, num_sctrls
, cctrls
, num_cctrls
,
1839 timelimit
, sizelimit
, deref
);
1841 state
.rc
= TLDAP_NO_MEMORY
;
1845 tevent_req_set_callback(req
, tldap_search_cb
, &state
);
1847 if (!tevent_req_is_in_progress(req
)) {
1848 /* an error happend before sending */
1849 if (tevent_req_is_ldap_error(req
, &state
.rc
)) {
1854 while (tevent_req_is_in_progress(req
)
1855 && (state
.rc
== TLDAP_SUCCESS
)) {
1856 if (tevent_loop_once(ev
) == -1) {
1857 return TLDAP_OPERATIONS_ERROR
;
1861 if (state
.rc
!= TLDAP_SUCCESS
) {
1865 if (entries
!= NULL
) {
1866 *entries
= state
.entries
;
1868 TALLOC_FREE(state
.entries
);
1873 TALLOC_FREE(state
.refs
);
1875 tldap_save_msg(ld
, req
);
1881 static bool tldap_parse_search_entry(struct tldap_message
*msg
)
1883 int num_attribs
= 0;
1885 asn1_start_tag(msg
->data
, msg
->type
);
1889 asn1_read_OctetString_talloc(msg
, msg
->data
, &msg
->dn
);
1890 if (msg
->dn
== NULL
) {
1895 * Attributes: We overallocate msg->attribs by one, so that while
1896 * looping over the attributes we can directly parse into the last
1897 * array element. Same for the values in the inner loop.
1900 msg
->attribs
= talloc_array(msg
, struct tldap_attribute
, 1);
1901 if (msg
->attribs
== NULL
) {
1905 asn1_start_tag(msg
->data
, ASN1_SEQUENCE(0));
1906 while (asn1_peek_tag(msg
->data
, ASN1_SEQUENCE(0))) {
1907 struct tldap_attribute
*attrib
;
1910 attrib
= &msg
->attribs
[num_attribs
];
1911 attrib
->values
= talloc_array(msg
->attribs
, DATA_BLOB
, 1);
1912 if (attrib
->values
== NULL
) {
1915 asn1_start_tag(msg
->data
, ASN1_SEQUENCE(0));
1916 asn1_read_OctetString_talloc(msg
->attribs
, msg
->data
,
1918 asn1_start_tag(msg
->data
, ASN1_SET
);
1920 while (asn1_peek_tag(msg
->data
, ASN1_OCTET_STRING
)) {
1921 asn1_read_OctetString(msg
->data
, msg
,
1922 &attrib
->values
[num_values
]);
1924 attrib
->values
= talloc_realloc(
1925 msg
->attribs
, attrib
->values
, DATA_BLOB
,
1927 if (attrib
->values
== NULL
) {
1932 attrib
->values
= talloc_realloc(msg
->attribs
, attrib
->values
,
1933 DATA_BLOB
, num_values
);
1934 attrib
->num_values
= num_values
;
1936 asn1_end_tag(msg
->data
); /* ASN1_SET */
1937 asn1_end_tag(msg
->data
); /* ASN1_SEQUENCE(0) */
1938 msg
->attribs
= talloc_realloc(
1939 msg
, msg
->attribs
, struct tldap_attribute
,
1941 if (msg
->attribs
== NULL
) {
1946 msg
->attribs
= talloc_realloc(
1947 msg
, msg
->attribs
, struct tldap_attribute
, num_attribs
);
1948 asn1_end_tag(msg
->data
);
1949 if (msg
->data
->has_error
) {
1955 bool tldap_entry_dn(struct tldap_message
*msg
, char **dn
)
1957 if ((msg
->dn
== NULL
) && (!tldap_parse_search_entry(msg
))) {
1964 bool tldap_entry_attributes(struct tldap_message
*msg
,
1965 struct tldap_attribute
**attributes
,
1966 int *num_attributes
)
1968 if ((msg
->dn
== NULL
) && (!tldap_parse_search_entry(msg
))) {
1971 *attributes
= msg
->attribs
;
1972 *num_attributes
= talloc_array_length(msg
->attribs
);
1976 static bool tldap_decode_controls(struct tldap_req_state
*state
)
1978 struct tldap_message
*msg
= state
->result
;
1979 struct asn1_data
*data
= msg
->data
;
1980 struct tldap_control
*sctrls
= NULL
;
1981 int num_controls
= 0;
1983 msg
->res_sctrls
= NULL
;
1985 if (!asn1_peek_tag(data
, ASN1_CONTEXT(0))) {
1989 asn1_start_tag(data
, ASN1_CONTEXT(0));
1991 while (asn1_peek_tag(data
, ASN1_SEQUENCE(0))) {
1992 struct tldap_control
*c
;
1995 sctrls
= talloc_realloc(msg
, sctrls
, struct tldap_control
,
1997 if (sctrls
== NULL
) {
2000 c
= &sctrls
[num_controls
];
2002 asn1_start_tag(data
, ASN1_SEQUENCE(0));
2003 asn1_read_OctetString_talloc(msg
, data
, &oid
);
2004 if ((data
->has_error
) || (oid
== NULL
)) {
2008 if (asn1_peek_tag(data
, ASN1_BOOLEAN
)) {
2009 asn1_read_BOOLEAN(data
, &c
->critical
);
2011 c
->critical
= false;
2013 c
->value
= data_blob_null
;
2014 if (asn1_peek_tag(data
, ASN1_OCTET_STRING
) &&
2015 !asn1_read_OctetString(data
, msg
, &c
->value
)) {
2018 asn1_end_tag(data
); /* ASN1_SEQUENCE(0) */
2023 asn1_end_tag(data
); /* ASN1_CONTEXT(0) */
2025 if (data
->has_error
) {
2026 TALLOC_FREE(sctrls
);
2029 msg
->res_sctrls
= sctrls
;
2033 static void tldap_simple_done(struct tevent_req
*subreq
, int type
)
2035 struct tevent_req
*req
= tevent_req_callback_data(
2036 subreq
, struct tevent_req
);
2037 struct tldap_req_state
*state
= tevent_req_data(
2038 req
, struct tldap_req_state
);
2041 err
= tldap_msg_recv(subreq
, state
, &state
->result
);
2042 TALLOC_FREE(subreq
);
2043 if (err
!= TLDAP_SUCCESS
) {
2044 tevent_req_error(req
, err
);
2047 if (state
->result
->type
!= type
) {
2048 tevent_req_error(req
, TLDAP_PROTOCOL_ERROR
);
2051 if (!asn1_start_tag(state
->result
->data
, state
->result
->type
) ||
2052 !tldap_decode_response(state
) ||
2053 !asn1_end_tag(state
->result
->data
) ||
2054 !tldap_decode_controls(state
)) {
2055 tevent_req_error(req
, TLDAP_DECODING_ERROR
);
2058 if (state
->result
->lderr
!= TLDAP_SUCCESS
) {
2059 tevent_req_error(req
, state
->result
->lderr
);
2062 tevent_req_done(req
);
2065 static int tldap_simple_recv(struct tevent_req
*req
)
2068 if (tevent_req_is_ldap_error(req
, &err
)) {
2071 return TLDAP_SUCCESS
;
2074 static void tldap_add_done(struct tevent_req
*subreq
);
2076 struct tevent_req
*tldap_add_send(TALLOC_CTX
*mem_ctx
,
2077 struct tevent_context
*ev
,
2078 struct tldap_context
*ld
,
2080 struct tldap_mod
*attributes
,
2082 struct tldap_control
*sctrls
,
2084 struct tldap_control
*cctrls
,
2087 struct tevent_req
*req
, *subreq
;
2088 struct tldap_req_state
*state
;
2091 req
= tldap_req_create(mem_ctx
, ld
, &state
);
2096 asn1_push_tag(state
->out
, TLDAP_REQ_ADD
);
2097 asn1_write_OctetString(state
->out
, dn
, strlen(dn
));
2098 asn1_push_tag(state
->out
, ASN1_SEQUENCE(0));
2100 for (i
=0; i
<num_attributes
; i
++) {
2101 struct tldap_mod
*attrib
= &attributes
[i
];
2102 asn1_push_tag(state
->out
, ASN1_SEQUENCE(0));
2103 asn1_write_OctetString(state
->out
, attrib
->attribute
,
2104 strlen(attrib
->attribute
));
2105 asn1_push_tag(state
->out
, ASN1_SET
);
2106 for (j
=0; j
<attrib
->num_values
; j
++) {
2107 asn1_write_OctetString(state
->out
,
2108 attrib
->values
[j
].data
,
2109 attrib
->values
[j
].length
);
2111 asn1_pop_tag(state
->out
);
2112 asn1_pop_tag(state
->out
);
2115 asn1_pop_tag(state
->out
);
2116 asn1_pop_tag(state
->out
);
2118 subreq
= tldap_msg_send(state
, ev
, ld
, state
->id
, state
->out
,
2119 sctrls
, num_sctrls
);
2120 if (tevent_req_nomem(subreq
, req
)) {
2121 return tevent_req_post(req
, ev
);
2123 tevent_req_set_callback(subreq
, tldap_add_done
, req
);
2127 static void tldap_add_done(struct tevent_req
*subreq
)
2129 tldap_simple_done(subreq
, TLDAP_RES_ADD
);
2132 int tldap_add_recv(struct tevent_req
*req
)
2134 return tldap_simple_recv(req
);
2137 int tldap_add(struct tldap_context
*ld
, const char *dn
,
2138 struct tldap_mod
*attributes
, int num_attributes
,
2139 struct tldap_control
*sctrls
, int num_sctrls
,
2140 struct tldap_control
*cctrls
, int num_cctrls
)
2142 TALLOC_CTX
*frame
= talloc_stackframe();
2143 struct tevent_context
*ev
;
2144 struct tevent_req
*req
;
2147 ev
= event_context_init(frame
);
2149 result
= TLDAP_NO_MEMORY
;
2153 req
= tldap_add_send(frame
, ev
, ld
, dn
, attributes
, num_attributes
,
2154 sctrls
, num_sctrls
, cctrls
, num_cctrls
);
2156 result
= TLDAP_NO_MEMORY
;
2160 if (!tevent_req_poll(req
, ev
)) {
2161 result
= TLDAP_OPERATIONS_ERROR
;
2165 result
= tldap_add_recv(req
);
2166 tldap_save_msg(ld
, req
);
2172 static void tldap_modify_done(struct tevent_req
*subreq
);
2174 struct tevent_req
*tldap_modify_send(TALLOC_CTX
*mem_ctx
,
2175 struct tevent_context
*ev
,
2176 struct tldap_context
*ld
,
2178 struct tldap_mod
*mods
, int num_mods
,
2179 struct tldap_control
*sctrls
,
2181 struct tldap_control
*cctrls
,
2184 struct tevent_req
*req
, *subreq
;
2185 struct tldap_req_state
*state
;
2188 req
= tldap_req_create(mem_ctx
, ld
, &state
);
2193 asn1_push_tag(state
->out
, TLDAP_REQ_MODIFY
);
2194 asn1_write_OctetString(state
->out
, dn
, strlen(dn
));
2195 asn1_push_tag(state
->out
, ASN1_SEQUENCE(0));
2197 for (i
=0; i
<num_mods
; i
++) {
2198 struct tldap_mod
*mod
= &mods
[i
];
2199 asn1_push_tag(state
->out
, ASN1_SEQUENCE(0));
2200 asn1_write_enumerated(state
->out
, mod
->mod_op
),
2201 asn1_push_tag(state
->out
, ASN1_SEQUENCE(0));
2202 asn1_write_OctetString(state
->out
, mod
->attribute
,
2203 strlen(mod
->attribute
));
2204 asn1_push_tag(state
->out
, ASN1_SET
);
2205 for (j
=0; j
<mod
->num_values
; j
++) {
2206 asn1_write_OctetString(state
->out
,
2207 mod
->values
[j
].data
,
2208 mod
->values
[j
].length
);
2210 asn1_pop_tag(state
->out
);
2211 asn1_pop_tag(state
->out
);
2212 asn1_pop_tag(state
->out
);
2215 asn1_pop_tag(state
->out
);
2216 asn1_pop_tag(state
->out
);
2218 subreq
= tldap_msg_send(state
, ev
, ld
, state
->id
, state
->out
,
2219 sctrls
, num_sctrls
);
2220 if (tevent_req_nomem(subreq
, req
)) {
2221 return tevent_req_post(req
, ev
);
2223 tevent_req_set_callback(subreq
, tldap_modify_done
, req
);
2227 static void tldap_modify_done(struct tevent_req
*subreq
)
2229 tldap_simple_done(subreq
, TLDAP_RES_MODIFY
);
2232 int tldap_modify_recv(struct tevent_req
*req
)
2234 return tldap_simple_recv(req
);
2237 int tldap_modify(struct tldap_context
*ld
, const char *dn
,
2238 struct tldap_mod
*mods
, int num_mods
,
2239 struct tldap_control
*sctrls
, int num_sctrls
,
2240 struct tldap_control
*cctrls
, int num_cctrls
)
2242 TALLOC_CTX
*frame
= talloc_stackframe();
2243 struct tevent_context
*ev
;
2244 struct tevent_req
*req
;
2247 ev
= event_context_init(frame
);
2249 result
= TLDAP_NO_MEMORY
;
2253 req
= tldap_modify_send(frame
, ev
, ld
, dn
, mods
, num_mods
,
2254 sctrls
, num_sctrls
, cctrls
, num_cctrls
);
2256 result
= TLDAP_NO_MEMORY
;
2260 if (!tevent_req_poll(req
, ev
)) {
2261 result
= TLDAP_OPERATIONS_ERROR
;
2265 result
= tldap_modify_recv(req
);
2266 tldap_save_msg(ld
, req
);
2272 static void tldap_delete_done(struct tevent_req
*subreq
);
2274 struct tevent_req
*tldap_delete_send(TALLOC_CTX
*mem_ctx
,
2275 struct tevent_context
*ev
,
2276 struct tldap_context
*ld
,
2278 struct tldap_control
*sctrls
,
2280 struct tldap_control
*cctrls
,
2283 struct tevent_req
*req
, *subreq
;
2284 struct tldap_req_state
*state
;
2286 req
= tldap_req_create(mem_ctx
, ld
, &state
);
2291 asn1_push_tag(state
->out
, TLDAP_REQ_DELETE
);
2292 asn1_write(state
->out
, dn
, strlen(dn
));
2293 asn1_pop_tag(state
->out
);
2295 subreq
= tldap_msg_send(state
, ev
, ld
, state
->id
, state
->out
,
2296 sctrls
, num_sctrls
);
2297 if (tevent_req_nomem(subreq
, req
)) {
2298 return tevent_req_post(req
, ev
);
2300 tevent_req_set_callback(subreq
, tldap_delete_done
, req
);
2304 static void tldap_delete_done(struct tevent_req
*subreq
)
2306 tldap_simple_done(subreq
, TLDAP_RES_DELETE
);
2309 int tldap_delete_recv(struct tevent_req
*req
)
2311 return tldap_simple_recv(req
);
2314 int tldap_delete(struct tldap_context
*ld
, const char *dn
,
2315 struct tldap_control
*sctrls
, int num_sctrls
,
2316 struct tldap_control
*cctrls
, int num_cctrls
)
2318 TALLOC_CTX
*frame
= talloc_stackframe();
2319 struct tevent_context
*ev
;
2320 struct tevent_req
*req
;
2323 ev
= event_context_init(frame
);
2325 result
= TLDAP_NO_MEMORY
;
2329 req
= tldap_delete_send(frame
, ev
, ld
, dn
, sctrls
, num_sctrls
,
2330 cctrls
, num_cctrls
);
2332 result
= TLDAP_NO_MEMORY
;
2336 if (!tevent_req_poll(req
, ev
)) {
2337 result
= TLDAP_OPERATIONS_ERROR
;
2341 result
= tldap_delete_recv(req
);
2342 tldap_save_msg(ld
, req
);
2348 int tldap_msg_id(const struct tldap_message
*msg
)
2353 int tldap_msg_type(const struct tldap_message
*msg
)
2358 const char *tldap_msg_matcheddn(struct tldap_message
*msg
)
2363 return msg
->res_matcheddn
;
2366 const char *tldap_msg_diagnosticmessage(struct tldap_message
*msg
)
2371 return msg
->res_diagnosticmessage
;
2374 const char *tldap_msg_referral(struct tldap_message
*msg
)
2379 return msg
->res_referral
;
2382 void tldap_msg_sctrls(struct tldap_message
*msg
, int *num_sctrls
,
2383 struct tldap_control
**sctrls
)
2390 *sctrls
= msg
->res_sctrls
;
2391 *num_sctrls
= talloc_array_length(msg
->res_sctrls
);
2394 struct tldap_message
*tldap_ctx_lastmsg(struct tldap_context
*ld
)
2396 return ld
->last_msg
;
2399 const char *tldap_err2string(int rc
)
2401 const char *res
= NULL
;
2404 * This would normally be a table, but the error codes are not fully
2405 * sequential. Let the compiler figure out the optimum implementation
2411 res
= "TLDAP_SUCCESS";
2413 case TLDAP_OPERATIONS_ERROR
:
2414 res
= "TLDAP_OPERATIONS_ERROR";
2416 case TLDAP_PROTOCOL_ERROR
:
2417 res
= "TLDAP_PROTOCOL_ERROR";
2419 case TLDAP_TIMELIMIT_EXCEEDED
:
2420 res
= "TLDAP_TIMELIMIT_EXCEEDED";
2422 case TLDAP_SIZELIMIT_EXCEEDED
:
2423 res
= "TLDAP_SIZELIMIT_EXCEEDED";
2425 case TLDAP_COMPARE_FALSE
:
2426 res
= "TLDAP_COMPARE_FALSE";
2428 case TLDAP_COMPARE_TRUE
:
2429 res
= "TLDAP_COMPARE_TRUE";
2431 case TLDAP_STRONG_AUTH_NOT_SUPPORTED
:
2432 res
= "TLDAP_STRONG_AUTH_NOT_SUPPORTED";
2434 case TLDAP_STRONG_AUTH_REQUIRED
:
2435 res
= "TLDAP_STRONG_AUTH_REQUIRED";
2437 case TLDAP_REFERRAL
:
2438 res
= "TLDAP_REFERRAL";
2440 case TLDAP_ADMINLIMIT_EXCEEDED
:
2441 res
= "TLDAP_ADMINLIMIT_EXCEEDED";
2443 case TLDAP_UNAVAILABLE_CRITICAL_EXTENSION
:
2444 res
= "TLDAP_UNAVAILABLE_CRITICAL_EXTENSION";
2446 case TLDAP_CONFIDENTIALITY_REQUIRED
:
2447 res
= "TLDAP_CONFIDENTIALITY_REQUIRED";
2449 case TLDAP_SASL_BIND_IN_PROGRESS
:
2450 res
= "TLDAP_SASL_BIND_IN_PROGRESS";
2452 case TLDAP_NO_SUCH_ATTRIBUTE
:
2453 res
= "TLDAP_NO_SUCH_ATTRIBUTE";
2455 case TLDAP_UNDEFINED_TYPE
:
2456 res
= "TLDAP_UNDEFINED_TYPE";
2458 case TLDAP_INAPPROPRIATE_MATCHING
:
2459 res
= "TLDAP_INAPPROPRIATE_MATCHING";
2461 case TLDAP_CONSTRAINT_VIOLATION
:
2462 res
= "TLDAP_CONSTRAINT_VIOLATION";
2464 case TLDAP_TYPE_OR_VALUE_EXISTS
:
2465 res
= "TLDAP_TYPE_OR_VALUE_EXISTS";
2467 case TLDAP_INVALID_SYNTAX
:
2468 res
= "TLDAP_INVALID_SYNTAX";
2470 case TLDAP_NO_SUCH_OBJECT
:
2471 res
= "TLDAP_NO_SUCH_OBJECT";
2473 case TLDAP_ALIAS_PROBLEM
:
2474 res
= "TLDAP_ALIAS_PROBLEM";
2476 case TLDAP_INVALID_DN_SYNTAX
:
2477 res
= "TLDAP_INVALID_DN_SYNTAX";
2480 res
= "TLDAP_IS_LEAF";
2482 case TLDAP_ALIAS_DEREF_PROBLEM
:
2483 res
= "TLDAP_ALIAS_DEREF_PROBLEM";
2485 case TLDAP_INAPPROPRIATE_AUTH
:
2486 res
= "TLDAP_INAPPROPRIATE_AUTH";
2488 case TLDAP_INVALID_CREDENTIALS
:
2489 res
= "TLDAP_INVALID_CREDENTIALS";
2491 case TLDAP_INSUFFICIENT_ACCESS
:
2492 res
= "TLDAP_INSUFFICIENT_ACCESS";
2497 case TLDAP_UNAVAILABLE
:
2498 res
= "TLDAP_UNAVAILABLE";
2500 case TLDAP_UNWILLING_TO_PERFORM
:
2501 res
= "TLDAP_UNWILLING_TO_PERFORM";
2503 case TLDAP_LOOP_DETECT
:
2504 res
= "TLDAP_LOOP_DETECT";
2506 case TLDAP_NAMING_VIOLATION
:
2507 res
= "TLDAP_NAMING_VIOLATION";
2509 case TLDAP_OBJECT_CLASS_VIOLATION
:
2510 res
= "TLDAP_OBJECT_CLASS_VIOLATION";
2512 case TLDAP_NOT_ALLOWED_ON_NONLEAF
:
2513 res
= "TLDAP_NOT_ALLOWED_ON_NONLEAF";
2515 case TLDAP_NOT_ALLOWED_ON_RDN
:
2516 res
= "TLDAP_NOT_ALLOWED_ON_RDN";
2518 case TLDAP_ALREADY_EXISTS
:
2519 res
= "TLDAP_ALREADY_EXISTS";
2521 case TLDAP_NO_OBJECT_CLASS_MODS
:
2522 res
= "TLDAP_NO_OBJECT_CLASS_MODS";
2524 case TLDAP_RESULTS_TOO_LARGE
:
2525 res
= "TLDAP_RESULTS_TOO_LARGE";
2527 case TLDAP_AFFECTS_MULTIPLE_DSAS
:
2528 res
= "TLDAP_AFFECTS_MULTIPLE_DSAS";
2531 res
= "TLDAP_OTHER";
2533 case TLDAP_SERVER_DOWN
:
2534 res
= "TLDAP_SERVER_DOWN";
2536 case TLDAP_LOCAL_ERROR
:
2537 res
= "TLDAP_LOCAL_ERROR";
2539 case TLDAP_ENCODING_ERROR
:
2540 res
= "TLDAP_ENCODING_ERROR";
2542 case TLDAP_DECODING_ERROR
:
2543 res
= "TLDAP_DECODING_ERROR";
2546 res
= "TLDAP_TIMEOUT";
2548 case TLDAP_AUTH_UNKNOWN
:
2549 res
= "TLDAP_AUTH_UNKNOWN";
2551 case TLDAP_FILTER_ERROR
:
2552 res
= "TLDAP_FILTER_ERROR";
2554 case TLDAP_USER_CANCELLED
:
2555 res
= "TLDAP_USER_CANCELLED";
2557 case TLDAP_PARAM_ERROR
:
2558 res
= "TLDAP_PARAM_ERROR";
2560 case TLDAP_NO_MEMORY
:
2561 res
= "TLDAP_NO_MEMORY";
2563 case TLDAP_CONNECT_ERROR
:
2564 res
= "TLDAP_CONNECT_ERROR";
2566 case TLDAP_NOT_SUPPORTED
:
2567 res
= "TLDAP_NOT_SUPPORTED";
2569 case TLDAP_CONTROL_NOT_FOUND
:
2570 res
= "TLDAP_CONTROL_NOT_FOUND";
2572 case TLDAP_NO_RESULTS_RETURNED
:
2573 res
= "TLDAP_NO_RESULTS_RETURNED";
2575 case TLDAP_MORE_RESULTS_TO_RETURN
:
2576 res
= "TLDAP_MORE_RESULTS_TO_RETURN";
2578 case TLDAP_CLIENT_LOOP
:
2579 res
= "TLDAP_CLIENT_LOOP";
2581 case TLDAP_REFERRAL_LIMIT_EXCEEDED
:
2582 res
= "TLDAP_REFERRAL_LIMIT_EXCEEDED";
2585 res
= talloc_asprintf(talloc_tos(), "Unknown LDAP Error (%d)",
2590 res
= "Unknown LDAP Error";