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