]> git.sur5r.net Git - openldap/blob - servers/slapd/add.c
Import Hallvards idl memory plugs from devel.
[openldap] / servers / slapd / add.c
1 /*
2  * Copyright (c) 1995 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include <ac/string.h>
18 #include <ac/time.h>
19 #include <ac/socket.h>
20
21 #include "slap.h"
22
23 static void     add_created_attrs(Operation *op, Entry *e);
24
25 void
26 do_add( Connection *conn, Operation *op )
27 {
28         BerElement      *ber = op->o_ber;
29         char            *dn, *last;
30         unsigned long   len, tag;
31         Entry           *e;
32         Backend         *be;
33
34         Debug( LDAP_DEBUG_TRACE, "do_add\n", 0, 0, 0 );
35
36         /*
37          * Parse the add request.  It looks like this:
38          *
39          *      AddRequest := [APPLICATION 14] SEQUENCE {
40          *              name    DistinguishedName,
41          *              attrs   SEQUENCE OF SEQUENCE {
42          *                      type    AttributeType,
43          *                      values  SET OF AttributeValue
44          *              }
45          *      }
46          */
47
48         /* get the name */
49         if ( ber_scanf( ber, "{a", &dn ) == LBER_ERROR ) {
50                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
51                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
52                     "decoding error" );
53                 return;
54         }
55
56         e = (Entry *) ch_calloc( 1, sizeof(Entry) );
57         /* initialize reader/writer lock */
58         entry_rdwr_init(e);
59
60         e->e_dn = dn;
61         e->e_ndn = dn_normalize_case( ch_strdup( dn ) );
62         dn = NULL;
63
64         Debug( LDAP_DEBUG_ARGS, "    do_add: ndn (%s)\n", e->e_ndn, 0, 0 );
65
66         /* get the attrs */
67         e->e_attrs = NULL;
68         for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
69             tag = ber_next_element( ber, &len, last ) ) {
70                 char            *type;
71                 struct berval   **vals;
72
73                 if ( ber_scanf( ber, "{a{V}}", &type, &vals ) == LBER_ERROR ) {
74                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR,
75                             NULL, "decoding error" );
76                         entry_free( e );
77                         return;
78                 }
79
80                 if ( vals == NULL ) {
81                         Debug( LDAP_DEBUG_ANY, "no values for type %s\n", type,
82                             0, 0 );
83                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
84                             NULL );
85                         free( type );
86                         entry_free( e );
87                         return;
88                 }
89
90                 attr_merge( e, type, vals );
91
92                 free( type );
93                 ber_bvecfree( vals );
94         }
95
96         Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d ADD dn=\"%s\"\n",
97             conn->c_connid, op->o_opid, e->e_ndn, 0, 0 );
98
99         /*
100          * We could be serving multiple database backends.  Select the
101          * appropriate one, or send a referral to our "referral server"
102          * if we don't hold it.
103          */
104         be = select_backend( e->e_ndn );
105         if ( be == NULL ) {
106                 entry_free( e );
107                 send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
108                     default_referral );
109                 return;
110         }
111
112         /*
113          * do the add if 1 && (2 || 3)
114          * 1) there is an add function implemented in this backend;
115          * 2) this backend is master for what it holds;
116          * 3) it's a replica and the dn supplied is the updatedn.
117          */
118         if ( be->be_add != NULL ) {
119                 /* do the update here */
120                 if ( be->be_update_ndn == NULL ||
121                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
122                 {
123                         if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
124                                 global_lastmod == ON)) && be->be_update_ndn == NULL ) {
125
126                                 add_created_attrs( op, e );
127                         }
128                         if ( (*be->be_add)( be, conn, op, e ) == 0 ) {
129                                 replog( be, LDAP_REQ_ADD, e->e_dn, e, 0 );
130                         }
131
132                 } else {
133                         entry_free( e );
134                         send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
135                             default_referral );
136                 }
137         } else {
138             Debug( LDAP_DEBUG_ARGS, "    do_add: HHH\n", 0, 0, 0 );
139                 entry_free( e );
140                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
141                     "Function not implemented" );
142         }
143 }
144
145 static void
146 add_created_attrs( Operation *op, Entry *e )
147 {
148         char            buf[22];
149         struct berval   bv;
150         struct berval   *bvals[2];
151         Attribute       **a, **next;
152         Attribute       *tmp;
153         struct tm       *ltm;
154
155         Debug( LDAP_DEBUG_TRACE, "add_created_attrs\n", 0, 0, 0 );
156
157         bvals[0] = &bv;
158         bvals[1] = NULL;
159
160         /* remove any attempts by the user to add these attrs */
161         for ( a = &e->e_attrs; *a != NULL; a = next ) {
162                 if ( strcasecmp( (*a)->a_type, "modifiersname" ) == 0 || 
163                         strcasecmp( (*a)->a_type, "modifytimestamp" ) == 0 ||
164                         strcasecmp( (*a)->a_type, "creatorsname" ) == 0 ||
165                         strcasecmp( (*a)->a_type, "createtimestamp" ) == 0 ) {
166                         tmp = *a;
167                         *a = (*a)->a_next;
168                         attr_free( tmp );
169                         next = a;
170                 } else {
171                         next = &(*a)->a_next;
172                 }
173         }
174
175         if ( op->o_dn == NULL || op->o_dn[0] == '\0' ) {
176                 bv.bv_val = "NULLDN";
177                 bv.bv_len = strlen( bv.bv_val );
178         } else {
179                 bv.bv_val = op->o_dn;
180                 bv.bv_len = strlen( bv.bv_val );
181         }
182         attr_merge( e, "creatorsname", bvals );
183
184         ldap_pvt_thread_mutex_lock( &currenttime_mutex );
185 #ifndef LDAP_LOCALTIME
186         ltm = gmtime( &currenttime );
187         strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
188 #else
189         ltm = localtime( &currenttime );
190         strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
191 #endif
192         ldap_pvt_thread_mutex_unlock( &currenttime_mutex );
193
194         bv.bv_val = buf;
195         bv.bv_len = strlen( bv.bv_val );
196         attr_merge( e, "createtimestamp", bvals );
197 }