]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/bind.c
eb95bd872ab0e213b34825542d04128b4a4c5ef9
[openldap] / servers / slapd / back-monitor / bind.c
1 /* bind.c - monitor backend bind routine */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001 The OpenLDAP Foundation, All Rights Reserved.
8  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
9  * 
10  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
11  * 
12  * This work has beed deveolped for the OpenLDAP Foundation 
13  * in the hope that it may be useful to the Open Source community, 
14  * but WITHOUT ANY WARRANTY.
15  * 
16  * Permission is granted to anyone to use this software for any purpose
17  * on any computer system, and to alter it and redistribute it, subject
18  * to the following restrictions:
19  * 
20  * 1. The author and SysNet s.n.c. are not responsible for the consequences
21  *    of use of this software, no matter how awful, even if they arise from
22  *    flaws in it.
23  * 
24  * 2. The origin of this software must not be misrepresented, either by
25  *    explicit claim or by omission.  Since few users ever read sources,
26  *    credits should appear in the documentation.
27  * 
28  * 3. Altered versions must be plainly marked as such, and must not be
29  *    misrepresented as being the original software.  Since few users
30  *    ever read sources, credits should appear in the documentation.
31  *    SysNet s.n.c. cannot be responsible for the consequences of the
32  *    alterations.
33  * 
34  * 4. This notice may not be removed or altered.
35  */
36
37 #include "portable.h"
38
39 #include <stdio.h>
40
41 #include <slap.h>
42 #include "back-monitor.h"
43
44 /*
45  * At present, only rootdn can bind with simple bind
46  */
47
48 int
49 monitor_back_bind(
50         Backend         *be,
51         Connection      *conn,
52         Operation       *op,
53         struct berval   *dn,
54         struct berval   *ndn,
55         int             method,
56         struct berval   *cred,
57         struct berval   *edn
58                                     
59 )
60 {
61 #if 0   /* not used yet */
62         struct monitorinfo      *mi = (struct monitorinfo *) be->be_private;
63 #endif
64
65 #ifdef NEW_LOGGING
66         LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
67                 "monitor_back_bind: dn: %s.\n", dn->bv_val ));
68 #else
69         Debug(LDAP_DEBUG_ARGS, "==> monitor_back_bind: dn: %s\n%s%s", 
70                         dn->bv_val, "", "");
71 #endif
72         
73         if ( method == LDAP_AUTH_SIMPLE 
74                         && be_isroot_pw( be, conn, ndn, cred ) ) {
75                 ber_dupbv( edn, be_root_dn( be ) );
76                 return( 0 );
77         }
78
79         send_ldap_result( conn, op, LDAP_INVALID_CREDENTIALS,
80                                 NULL, NULL, NULL, NULL );
81
82         return( 1 );
83 }
84