]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/modify.c
Sync with head
[openldap] / servers / slapd / back-monitor / modify.c
1 /* modify.c - monitor backend modify routine */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
8  * 
9  * This work has beed deveolped for the OpenLDAP Foundation 
10  * in the hope that it may be useful to the Open Source community, 
11  * but WITHOUT ANY WARRANTY.
12  * 
13  * Permission is granted to anyone to use this software for any purpose
14  * on any computer system, and to alter it and redistribute it, subject
15  * to the following restrictions:
16  * 
17  * 1. The author and SysNet s.n.c. are not responsible for the consequences
18  *    of use of this software, no matter how awful, even if they arise from
19  *    flaws in it.
20  * 
21  * 2. The origin of this software must not be misrepresented, either by
22  *    explicit claim or by omission.  Since few users ever read sources,
23  *    credits should appear in the documentation.
24  * 
25  * 3. Altered versions must be plainly marked as such, and must not be
26  *    misrepresented as being the original software.  Since few users
27  *    ever read sources, credits should appear in the documentation.
28  *    SysNet s.n.c. cannot be responsible for the consequences of the
29  *    alterations.
30  * 
31  * 4. This notice may not be removed or altered.
32  */
33
34 #include "portable.h"
35
36 #include <stdio.h>
37
38 #include <ac/string.h>
39 #include <ac/socket.h>
40
41 #include "slap.h"
42 #include "back-monitor.h"
43 #include "proto-back-monitor.h"
44
45 int
46 monitor_back_modify(
47     Backend     *be,
48     Connection  *conn,
49     Operation   *op,
50     struct berval       *dn,
51     struct berval       *ndn,
52     Modifications       *modlist
53 )
54 {
55         int             rc = 0;
56         struct monitorinfo      *mi = (struct monitorinfo *) be->be_private;
57         Entry           *matched;
58         Entry           *e;
59
60 #ifdef NEW_LOGGING
61         LDAP_LOG( BACK_MON, ENTRY,
62                 "monitor_back_modify: enter\n", 0, 0, 0 );
63 #else
64         Debug(LDAP_DEBUG_ARGS, "monitor_back_modify:\n", 0, 0, 0);
65 #endif
66
67         /* acquire and lock entry */
68         monitor_cache_dn2entry( mi, ndn, &e, &matched );
69         if ( e == NULL ) {
70                 send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT,
71                                 matched ? matched->e_dn : NULL,
72                                 NULL, NULL, NULL );
73                 if ( matched != NULL ) {
74                         monitor_cache_release( mi, matched );
75                         return( 0 );
76                 }
77         }
78
79         if ( !acl_check_modlist( be, conn, op, e, modlist )) {
80                 rc = LDAP_INSUFFICIENT_ACCESS;
81         } else {
82                 rc = monitor_entry_modify( mi, e, modlist );
83         }
84
85         send_ldap_result( conn, op, rc, NULL, NULL, NULL, NULL );
86
87         monitor_cache_release( mi, e );
88
89         return( 0 );
90 }
91