]> git.sur5r.net Git - openldap/blob - libraries/libldap/bind.c
f70b1e20db2aa527be048d43eb75b41dedbac062
[openldap] / libraries / libldap / bind.c
1 /* bind.c */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2007 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1990 Regents of the University of Michigan.
17  * All rights reserved.
18  */
19
20 #include "portable.h"
21
22 #include <stdio.h>
23
24 #include <ac/stdlib.h>
25
26 #include <ac/socket.h>
27 #include <ac/string.h>
28 #include <ac/time.h>
29
30 #include "ldap-int.h"
31 #include "ldap_log.h"
32
33 /*
34  *      BindRequest ::= SEQUENCE {
35  *              version         INTEGER,
36  *              name            DistinguishedName,       -- who
37  *              authentication  CHOICE {
38  *                      simple          [0] OCTET STRING -- passwd
39 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
40  *                      krbv42ldap      [1] OCTET STRING
41  *                      krbv42dsa       [2] OCTET STRING
42 #endif
43  *                      sasl            [3] SaslCredentials     -- LDAPv3
44  *              }
45  *      }
46  *
47  *      BindResponse ::= SEQUENCE {
48  *              COMPONENTS OF LDAPResult,
49  *              serverSaslCreds         OCTET STRING OPTIONAL -- LDAPv3
50  *      }
51  *
52  * (Source: RFC 2251)
53  */
54
55 /*
56  * ldap_bind - bind to the ldap server (and X.500).  The dn and password
57  * of the entry to which to bind are supplied, along with the authentication
58  * method to use.  The msgid of the bind request is returned on success,
59  * -1 if there's trouble.  ldap_result() should be called to find out the
60  * outcome of the bind request.
61  *
62  * Example:
63  *      ldap_bind( ld, "cn=manager, o=university of michigan, c=us", "secret",
64  *          LDAP_AUTH_SIMPLE )
65  */
66
67 int
68 ldap_bind( LDAP *ld, LDAP_CONST char *dn, LDAP_CONST char *passwd, int authmethod )
69 {
70         Debug( LDAP_DEBUG_TRACE, "ldap_bind\n", 0, 0, 0 );
71
72         switch ( authmethod ) {
73         case LDAP_AUTH_SIMPLE:
74                 return( ldap_simple_bind( ld, dn, passwd ) );
75
76         case LDAP_AUTH_SASL:
77                 /* user must use ldap_sasl_bind */
78                 /* FALL-THRU */
79
80         default:
81                 ld->ld_errno = LDAP_AUTH_UNKNOWN;
82                 return( -1 );
83         }
84 }
85
86 /*
87  * ldap_bind_s - bind to the ldap server (and X.500).  The dn and password
88  * of the entry to which to bind are supplied, along with the authentication
89  * method to use.  This routine just calls whichever bind routine is
90  * appropriate and returns the result of the bind (e.g. LDAP_SUCCESS or
91  * some other error indication).
92  *
93  * Examples:
94  *      ldap_bind_s( ld, "cn=manager, o=university of michigan, c=us",
95  *          "secret", LDAP_AUTH_SIMPLE )
96  *      ldap_bind_s( ld, "cn=manager, o=university of michigan, c=us",
97  *          NULL, LDAP_AUTH_KRBV4 )
98  */
99 int
100 ldap_bind_s(
101         LDAP *ld,
102         LDAP_CONST char *dn,
103         LDAP_CONST char *passwd,
104         int authmethod )
105 {
106         Debug( LDAP_DEBUG_TRACE, "ldap_bind_s\n", 0, 0, 0 );
107
108         switch ( authmethod ) {
109         case LDAP_AUTH_SIMPLE:
110                 return( ldap_simple_bind_s( ld, dn, passwd ) );
111
112         case LDAP_AUTH_SASL:
113                 /* user must use ldap_sasl_bind */
114                 /* FALL-THRU */
115
116         default:
117                 return( ld->ld_errno = LDAP_AUTH_UNKNOWN );
118         }
119 }