]> git.sur5r.net Git - openldap/blob - servers/slapd/add.c
Change overlapping `strcpy( x, y )' to `SAFEMEMCPY( x, y, strlen( y ) + 1 )'
[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         dn = dn_normalize( ch_strdup( dn ) );
62         Debug( LDAP_DEBUG_ARGS, "    do_add: dn (%s)\n", dn, 0, 0 );
63
64         /* get the attrs */
65         e->e_attrs = NULL;
66         for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
67             tag = ber_next_element( ber, &len, last ) ) {
68                 char            *type;
69                 struct berval   **vals;
70
71                 if ( ber_scanf( ber, "{a{V}}", &type, &vals ) == LBER_ERROR ) {
72                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR,
73                             NULL, "decoding error" );
74                         entry_free( e );
75                         return;
76                 }
77
78                 if ( vals == NULL ) {
79                         Debug( LDAP_DEBUG_ANY, "no values for type %s\n", type,
80                             0, 0 );
81                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
82                             NULL );
83                         entry_free( e );
84                         return;
85                 }
86
87                 attr_merge( e, type, vals );
88
89                 free( type );
90                 ber_bvecfree( vals );
91         }
92
93         Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d ADD dn=\"%s\"\n",
94             conn->c_connid, op->o_opid, dn, 0, 0 );
95
96         /*
97          * We could be serving multiple database backends.  Select the
98          * appropriate one, or send a referral to our "referral server"
99          * if we don't hold it.
100          */
101         if ( (be = select_backend( dn )) == NULL ) {
102                 entry_free( e );
103                 send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
104                     default_referral );
105                 return;
106         }
107
108         /*
109          * do the add if 1 && (2 || 3)
110          * 1) there is an add function implemented in this backend;
111          * 2) this backend is master for what it holds;
112          * 3) it's a replica and the dn supplied is the updatedn.
113          */
114         if ( be->be_add != NULL ) {
115                 /* do the update here */
116                 if ( be->be_updatedn == NULL ||
117                         strcasecmp( be->be_updatedn, op->o_dn ) == 0 ) {
118
119                         if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
120                                 global_lastmod == ON)) && be->be_updatedn == NULL ) {
121
122                                 add_created_attrs( op, e );
123                         }
124                         if ( (*be->be_add)( be, conn, op, e ) == 0 ) {
125                                 replog( be, LDAP_REQ_ADD, e->e_dn, e, 0 );
126                         }
127
128                 } else {
129                         entry_free( e );
130                         send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
131                             default_referral );
132                 }
133         } else {
134             Debug( LDAP_DEBUG_ARGS, "    do_add: HHH\n", 0, 0, 0 );
135                 entry_free( e );
136                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
137                     "Function not implemented" );
138         }
139 }
140
141 static void
142 add_created_attrs( Operation *op, Entry *e )
143 {
144         char            buf[22];
145         struct berval   bv;
146         struct berval   *bvals[2];
147         Attribute       **a, **next;
148         Attribute       *tmp;
149         struct tm       *ltm;
150
151         Debug( LDAP_DEBUG_TRACE, "add_created_attrs\n", 0, 0, 0 );
152
153         bvals[0] = &bv;
154         bvals[1] = NULL;
155
156         /* remove any attempts by the user to add these attrs */
157         for ( a = &e->e_attrs; *a != NULL; a = next ) {
158                 if ( strcasecmp( (*a)->a_type, "modifiersname" ) == 0 || 
159                         strcasecmp( (*a)->a_type, "modifytimestamp" ) == 0 ||
160                         strcasecmp( (*a)->a_type, "creatorsname" ) == 0 ||
161                         strcasecmp( (*a)->a_type, "createtimestamp" ) == 0 ) {
162                         tmp = *a;
163                         *a = (*a)->a_next;
164                         attr_free( tmp );
165                         next = a;
166                 } else {
167                         next = &(*a)->a_next;
168                 }
169         }
170
171         if ( op->o_dn == NULL || op->o_dn[0] == '\0' ) {
172                 bv.bv_val = "NULLDN";
173                 bv.bv_len = strlen( bv.bv_val );
174         } else {
175                 bv.bv_val = op->o_dn;
176                 bv.bv_len = strlen( bv.bv_val );
177         }
178         attr_merge( e, "creatorsname", bvals );
179
180         pthread_mutex_lock( &currenttime_mutex );
181 #ifndef LDAP_LOCALTIME
182         ltm = gmtime( &currenttime );
183         strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
184 #else
185         ltm = localtime( &currenttime );
186         strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
187 #endif
188         pthread_mutex_unlock( &currenttime_mutex );
189
190         bv.bv_val = buf;
191         bv.bv_len = strlen( bv.bv_val );
192         attr_merge( e, "createtimestamp", bvals );
193 }