]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/modify.c
notices
[openldap] / servers / slapd / back-monitor / modify.c
1 /* modify.c - monitor backend modify 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 <ac/string.h>
54 #include <ac/socket.h>
55
56 #include "slap.h"
57 #include "back-monitor.h"
58 #include "proto-back-monitor.h"
59
60 int
61 monitor_back_modify( Operation *op, SlapReply *rs )
62         /*
63         Backend         *be,
64         Connection      *conn,
65         Operation       *op,
66         struct berval   *dn,
67         struct berval   *ndn,
68         Modifications   *modlist
69         */
70 {
71         int                     rc = 0;
72         struct monitorinfo      *mi
73                 = (struct monitorinfo *) op->o_bd->be_private;
74         Entry                   *matched;
75         Entry                   *e;
76
77 #ifdef NEW_LOGGING
78         LDAP_LOG( BACK_MON, ENTRY, "monitor_back_modify: enter\n", 0, 0, 0 );
79 #else
80         Debug(LDAP_DEBUG_ARGS, "monitor_back_modify:\n", 0, 0, 0);
81 #endif
82
83         /* acquire and lock entry */
84         monitor_cache_dn2entry( op, &op->o_req_ndn, &e, &matched );
85         if ( e == NULL ) {
86                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
87                 if ( matched ) {
88                         rs->sr_matched = matched->e_name.bv_val;
89                 }
90                 send_ldap_result( op, rs );
91                 if ( matched != NULL ) {
92                         rs->sr_matched = NULL;
93                         monitor_cache_release( mi, matched );
94                 }
95                 return( 0 );
96         }
97
98         if ( !acl_check_modlist( op, e, op->oq_modify.rs_modlist )) {
99                 rc = LDAP_INSUFFICIENT_ACCESS;
100         } else {
101                 rc = monitor_entry_modify( op, e );
102         }
103
104         rs->sr_err = rc;
105         send_ldap_result( op, rs );
106
107         monitor_cache_release( mi, e );
108
109         return( 0 );
110 }
111