]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/bind.c
bbfbdde06c536eafe5c7ca3d54673cb526ee1c4b
[openldap] / servers / slapd / back-monitor / bind.c
1 /* bind.c - monitor backend bind routine */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2003 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 file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by Pierangelo Masarati for inclusion
18  * in OpenLDAP Software.
19  */
20 /* This is an altered version */
21 /*
22  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
23  * 
24  * This work has beed deveolped for the OpenLDAP Foundation 
25  * in the hope that it may be useful to the Open Source community, 
26  * but WITHOUT ANY WARRANTY.
27  * 
28  * Permission is granted to anyone to use this software for any purpose
29  * on any computer system, and to alter it and redistribute it, subject
30  * to the following restrictions:
31  * 
32  * 1. The author and SysNet s.n.c. are not responsible for the consequences
33  *    of use of this software, no matter how awful, even if they arise from
34  *    flaws in it.
35  * 
36  * 2. The origin of this software must not be misrepresented, either by
37  *    explicit claim or by omission.  Since few users ever read sources,
38  *    credits should appear in the documentation.
39  * 
40  * 3. Altered versions must be plainly marked as such, and must not be
41  *    misrepresented as being the original software.  Since few users
42  *    ever read sources, credits should appear in the documentation.
43  *    SysNet s.n.c. cannot be responsible for the consequences of the
44  *    alterations.
45  * 
46  * 4. This notice may not be removed or altered.
47  */
48
49 #include "portable.h"
50
51 #include <stdio.h>
52
53 #include <slap.h>
54 #include "back-monitor.h"
55
56 /*
57  * At present, only rootdn can bind with simple bind
58  */
59
60 int
61 monitor_back_bind( Operation *op, SlapReply *rs )
62 {
63 #if 0   /* not used yet */
64         struct monitorinfo      *mi
65                 = (struct monitorinfo *) op->o_bd->be_private;
66 #endif
67
68 #ifdef NEW_LOGGING
69         LDAP_LOG( BACK_MON, ENTRY, "monitor_back_bind: dn: %s.\n",
70                         op->o_req_dn.bv_val, 0, 0 );
71 #else
72         Debug(LDAP_DEBUG_ARGS, "==> monitor_back_bind: dn: %s\n", 
73                         op->o_req_dn.bv_val, 0, 0 );
74 #endif
75         
76         if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE 
77                         && be_isroot_pw( op ) ) {
78                 ber_dupbv( &op->oq_bind.rb_edn, be_root_dn( op->o_bd ) );
79                 return( 0 );
80         }
81
82         rs->sr_err = LDAP_INVALID_CREDENTIALS;
83         send_ldap_result( op, rs );
84
85         return( 1 );
86 }
87