1 /* bind.c - shell backend bind function */
4 * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
12 #include <ac/socket.h>
13 #include <ac/string.h>
30 struct shellinfo *si = (struct shellinfo *) be->be_private;
36 if ( si->si_bind == NULL ) {
37 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
38 "bind not implemented", NULL, NULL );
42 if ( (op->o_private = (void *) forkandexec( si->si_bind, &rfp, &wfp ))
44 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
45 "could not fork/exec", NULL, NULL );
49 /* write out the request to the bind process */
50 fprintf( wfp, "BIND\n" );
51 fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
52 print_suffixes( wfp, be );
53 fprintf( wfp, "dn: %s\n", dn );
54 fprintf( wfp, "method: %d\n", method );
55 fprintf( wfp, "credlen: %lu\n", cred->bv_len );
56 fprintf( wfp, "cred: %s\n", cred->bv_val ); /* XXX */
59 /* read in the results and send them along */
60 rc = read_and_send_results( be, conn, op, rfp, NULL, 0 );