xref: /netbsd-src/external/bsd/openldap/dist/servers/slapd/back-monitor/bind.c (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1 /*	$NetBSD: bind.c,v 1.1.1.6 2018/02/06 01:53:16 christos Exp $	*/
2 
3 /* bind.c - monitor backend bind routine */
4 /* $OpenLDAP$ */
5 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
6  *
7  * Copyright 2001-2017 The OpenLDAP Foundation.
8  * Portions Copyright 2001-2003 Pierangelo Masarati.
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted only as authorized by the OpenLDAP
13  * Public License.
14  *
15  * A copy of this license is available in file LICENSE in the
16  * top-level directory of the distribution or, alternatively, at
17  * <http://www.OpenLDAP.org/license.html>.
18  */
19 /* ACKNOWLEDGEMENTS:
20  * This work was initially developed by Pierangelo Masarati for inclusion
21  * in OpenLDAP Software.
22  */
23 
24 #include <sys/cdefs.h>
25 __RCSID("$NetBSD: bind.c,v 1.1.1.6 2018/02/06 01:53:16 christos Exp $");
26 
27 #include "portable.h"
28 
29 #include <stdio.h>
30 
31 #include <slap.h>
32 #include "back-monitor.h"
33 
34 /*
35  * At present, only rootdn can bind with simple bind
36  */
37 
38 int
39 monitor_back_bind( Operation *op, SlapReply *rs )
40 {
41 	Debug(LDAP_DEBUG_ARGS, "==> monitor_back_bind: dn: %s\n",
42 			op->o_req_dn.bv_val, 0, 0 );
43 
44 	if ( be_isroot_pw( op ) ) {
45 		return LDAP_SUCCESS;
46 	}
47 
48 	rs->sr_err = LDAP_INVALID_CREDENTIALS;
49 	send_ldap_result( op, rs );
50 
51 	return rs->sr_err;
52 }
53 
54