]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/bind.c
fd0be7f83ec72b21a26c296cf922b6966dfcc5e2
[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 #ifndef _BACK_MONITOR_H_
50 #define _BACK_MONITOR_H_
51
52 #include <ldap_pvt.h>
53 #include <ldap_pvt_thread.h>
54 #include <avl.h>
55 #include <slap.h>
56
57 LDAP_BEGIN_DECL
58
59 /*
60  * The cache maps DNs to Entries.
61 /*
62  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
63  * 
64  * This work has beed deveolped for the OpenLDAP Foundation 
65  * in the hope that it may be useful to the Open Source community, 
66  * but WITHOUT ANY WARRANTY.
67  * 
68  * Permission is granted to anyone to use this software for any purpose
69  * on any computer system, and to alter it and redistribute it, subject
70  * to the following restrictions:
71  * 
72  * 1. The author and SysNet s.n.c. are not responsible for the consequences
73  *    of use of this software, no matter how awful, even if they arise from
74  *    flaws in it.
75  * 
76  * 2. The origin of this software must not be misrepresented, either by
77  *    explicit claim or by omission.  Since few users ever read sources,
78  *    credits should appear in the documentation.
79  * 
80  * 3. Altered versions must be plainly marked as such, and must not be
81  *    misrepresented as being the original software.  Since few users
82  *    ever read sources, credits should appear in the documentation.
83  *    SysNet s.n.c. cannot be responsible for the consequences of the
84  *    alterations.
85  * 
86  * 4. This notice may not be removed or altered.
87  */
88
89 #include "portable.h"
90
91 #include <stdio.h>
92
93 #include <slap.h>
94 #include "back-monitor.h"
95
96 /*
97  * At present, only rootdn can bind with simple bind
98  */
99
100 int
101 monitor_back_bind( Operation *op, SlapReply *rs )
102 {
103 #if 0   /* not used yet */
104         struct monitorinfo      *mi
105                 = (struct monitorinfo *) op->o_bd->be_private;
106 #endif
107
108 #ifdef NEW_LOGGING
109         LDAP_LOG( BACK_MON, ENTRY, "monitor_back_bind: dn: %s.\n",
110                         op->o_req_dn.bv_val, 0, 0 );
111 #else
112         Debug(LDAP_DEBUG_ARGS, "==> monitor_back_bind: dn: %s\n", 
113                         op->o_req_dn.bv_val, 0, 0 );
114 #endif
115         
116         if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE 
117                         && be_isroot_pw( op ) ) {
118                 ber_dupbv( &op->oq_bind.rb_edn, be_root_dn( op->o_bd ) );
119                 return( 0 );
120         }
121
122         rs->sr_err = LDAP_INVALID_CREDENTIALS;
123         send_ldap_result( op, rs );
124
125         return( 1 );
126 }
127