]> git.sur5r.net Git - openldap/blob - servers/slapd/ldapsync.c
don't return matchedDN in the case described in ITS#4195
[openldap] / servers / slapd / ldapsync.c
1 /* ldapsync.c -- LDAP Content Sync Routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003-2005 The OpenLDAP Foundation.
6  * Portions Copyright 2003 IBM Corporation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #include <ac/string.h>
23 #include <ac/socket.h>
24
25 #include "lutil.h"
26 #include "slap.h"
27 #include "../../libraries/liblber/lber-int.h" /* get ber_strndup() */
28 #include "lutil_ldap.h"
29
30 struct slap_sync_cookie_s slap_sync_cookie =
31         LDAP_STAILQ_HEAD_INITIALIZER( slap_sync_cookie );
32
33 void
34 slap_compose_sync_cookie(
35         Operation *op,
36         struct berval *cookie,
37         struct berval *csn,
38         int rid )
39 {
40         char cookiestr[ LDAP_LUTIL_CSNSTR_BUFSIZE + 20 ];
41
42         if ( BER_BVISNULL( csn )) {
43                 if ( rid == -1 ) {
44                         cookiestr[0] = '\0';
45                 } else {
46                         snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
47                                         "rid=%03d", rid );
48                 }
49         } else {
50                 if ( rid == -1 ) {
51                         snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
52                                         "csn=%s", csn->bv_val );
53                 } else {
54                         snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
55                                         "csn=%s,rid=%03d", csn->bv_val, rid );
56                 }
57         }
58         ber_str2bv_x( cookiestr, strlen(cookiestr), 1, cookie, 
59                 op ? op->o_tmpmemctx : NULL );
60 }
61
62 void
63 slap_sync_cookie_free(
64         struct sync_cookie *cookie,
65         int free_cookie
66 )
67 {
68         if ( cookie == NULL )
69                 return;
70
71         if ( !BER_BVISNULL( &cookie->ctxcsn )) {
72                 ch_free( cookie->ctxcsn.bv_val );
73                 BER_BVZERO( &cookie->ctxcsn );
74         }
75
76         if ( !BER_BVISNULL( &cookie->octet_str )) {
77                 ch_free( cookie->octet_str.bv_val );
78                 BER_BVZERO( &cookie->octet_str );
79         }
80
81         if ( free_cookie ) {
82                 ch_free( cookie );
83         }
84
85         return;
86 }
87
88 int
89 slap_parse_sync_cookie(
90         struct sync_cookie *cookie,
91         void *memctx
92 )
93 {
94         char *csn_ptr;
95         char *csn_str;
96         int csn_str_len;
97         int valid = 0;
98         char *rid_ptr;
99         char *cval;
100         char *next;
101
102         if ( cookie == NULL )
103                 return -1;
104
105         if ( cookie->octet_str.bv_len <= STRLENOF( "rid=" ) )
106                 return -1;
107
108         cookie->rid = -1;
109         /* FIXME: may read past end of cookie->octet_str.bv_val */
110         rid_ptr = strstr( cookie->octet_str.bv_val, "rid=" );
111         if ( rid_ptr == NULL 
112                 || rid_ptr > &cookie->octet_str.bv_val[ cookie->octet_str.bv_len - STRLENOF( "rid=" ) ] )
113         {
114                 return -1;
115
116         }
117
118         cookie->rid = strtoul( &rid_ptr[ STRLENOF( "rid=" ) ], &next, 10 );
119         if ( next == &rid_ptr[ STRLENOF( "rid=" ) ] || ( next[ 0 ] != ',' && next[ 0 ] != '\0' ) ) {
120                 return -1;
121         }
122
123         while (( csn_ptr = strstr( cookie->octet_str.bv_val, "csn=" )) != NULL ) {
124                 AttributeDescription *ad = slap_schema.si_ad_modifyTimestamp;
125                 slap_syntax_validate_func *validate;
126                 struct berval stamp;
127
128                 /* This only happens when called from main */
129                 if ( ad == NULL )
130                         break;
131
132                 if ( csn_ptr >= &cookie->octet_str.bv_val[ cookie->octet_str.bv_len - STRLENOF( "csn=" ) ] ) {
133                         return -1;
134                 }
135
136                 csn_str = csn_ptr + STRLENOF("csn=");
137                 cval = strchr( csn_str, ',' );
138                 if ( cval && cval < &cookie->octet_str.bv_val[ cookie->octet_str.bv_len ] )
139                         csn_str_len = cval - csn_str;
140                 else
141                         csn_str_len = 0;
142
143                 /* FIXME use csnValidate when it gets implemented */
144                 csn_ptr = strchr( csn_str, '#' );
145                 if ( !csn_ptr || csn_str >= &cookie->octet_str.bv_val[ cookie->octet_str.bv_len ] ) break;
146
147                 stamp.bv_val = csn_str;
148                 stamp.bv_len = csn_ptr - csn_str;
149                 validate = ad->ad_type->sat_syntax->ssyn_validate;
150                 if ( validate( ad->ad_type->sat_syntax, &stamp ) != LDAP_SUCCESS )
151                         break;
152                 valid = 1;
153                 break;
154         }
155         if ( valid ) {
156                 ber_str2bv_x( csn_str, csn_str_len, 1, &cookie->ctxcsn, memctx );
157         } else {
158                 BER_BVZERO( &cookie->ctxcsn );
159         }
160
161         return 0;
162 }
163
164 int
165 slap_init_sync_cookie_ctxcsn(
166         struct sync_cookie *cookie
167 )
168 {
169         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE + 4 ];
170         struct berval octet_str = BER_BVNULL;
171         struct berval ctxcsn = BER_BVNULL;
172
173         if ( cookie == NULL )
174                 return -1;
175
176         octet_str.bv_len = snprintf( csnbuf, LDAP_LUTIL_CSNSTR_BUFSIZE + 4,
177                                         "csn=%4d%02d%02d%02d%02d%02dZ#%06x#%02x#%06x",
178                                         1900, 1, 1, 0, 0, 0, 0, 0, 0 );
179         octet_str.bv_val = csnbuf;
180         ch_free( cookie->octet_str.bv_val );
181         ber_dupbv( &cookie->octet_str, &octet_str );
182
183         ctxcsn.bv_val = octet_str.bv_val + 4;
184         ctxcsn.bv_len = octet_str.bv_len - 4;
185         ber_dupbv( &cookie->ctxcsn, &ctxcsn );
186
187         return 0;
188 }
189
190 struct sync_cookie *
191 slap_dup_sync_cookie(
192         struct sync_cookie *dst,
193         struct sync_cookie *src
194 )
195 {
196         struct sync_cookie *new;
197
198         if ( src == NULL )
199                 return NULL;
200
201         if ( dst ) {
202                 ch_free( dst->ctxcsn.bv_val );
203                 ch_free( dst->octet_str.bv_val );
204                 BER_BVZERO( &dst->ctxcsn );
205                 BER_BVZERO( &dst->octet_str );
206                 new = dst;
207         } else {
208                 new = ( struct sync_cookie * )
209                                 ch_calloc( 1, sizeof( struct sync_cookie ));
210         }
211
212         new->rid = src->rid;
213
214         if ( !BER_BVISNULL( &src->ctxcsn )) {
215                 ber_dupbv( &new->ctxcsn, &src->ctxcsn );
216         }
217
218         if ( !BER_BVISNULL( &src->octet_str )) {
219                 ber_dupbv( &new->octet_str, &src->octet_str );
220         }
221
222         return new;
223 }
224