1 /*	$NetBSD: add.c,v 1.3 2021/08/14 16:15:01 christos Exp $	*/
2 
3 /* $OpenLDAP$ */
4 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5  *
6  * Copyright 1999-2021 The OpenLDAP Foundation.
7  * Portions Copyright 1999 John C. Quillan.
8  * Portions Copyright 2002 myinternet Limited.
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 
20 #include "perl_back.h"
21 
22 int
perl_back_add(Operation * op,SlapReply * rs)23 perl_back_add(
24 	Operation	*op,
25 	SlapReply	*rs )
26 {
27 	PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
28 	int len;
29 	int count;
30 
31 	PERL_SET_CONTEXT( PERL_INTERPRETER );
32 	ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
33 	ldap_pvt_thread_mutex_lock( &entry2str_mutex );
34 
35 	{
36 		dSP; ENTER; SAVETMPS;
37 
38 		PUSHMARK(sp);
39 		XPUSHs( perl_back->pb_obj_ref );
40 		XPUSHs(sv_2mortal(newSVpv( entry2str( op->ora_e, &len ), 0 )));
41 
42 		PUTBACK;
43 
44 		count = call_method("add", G_SCALAR);
45 
46 		SPAGAIN;
47 
48 		if (count != 1) {
49 			croak("Big trouble in back_add\n");
50 		}
51 
52 		rs->sr_err = POPi;
53 
54 		PUTBACK; FREETMPS; LEAVE;
55 	}
56 
57 	ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
58 	ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
59 
60 	send_ldap_result( op, rs );
61 
62 	Debug( LDAP_DEBUG_ANY, "Perl ADD\n" );
63 	return( 0 );
64 }
65