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