]> git.sur5r.net Git - openldap/blob - servers/slapd/ldapsync.c
f4e80ac873efdbcae87dd429bdb0e3210b4cb187
[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         cookie->rid = strtoul( &rid_ptr[ STRLENOF( "rid=" ) ], &next, 10 );
118         if ( next == &rid_ptr[ STRLENOF( "rid=" ) ] || ( next[ 0 ] != ',' && next[ 0 ] != '\0' ) ) {
119                 return -1;
120         }
121
122         while (( csn_ptr = strstr( cookie->octet_str.bv_val, "csn=" )) != NULL ) {
123                 AttributeDescription *ad = slap_schema.si_ad_modifyTimestamp;
124                 slap_syntax_validate_func *validate;
125                 struct berval stamp;
126
127                 /* This only happens when called from main */
128                 if ( ad == NULL )
129                         break;
130
131                 if ( csn_ptr >= &cookie->octet_str.bv_val[ cookie->octet_str.bv_len - STRLENOF( "csn=" ) ] ) {
132                         return -1;
133                 }
134
135                 csn_str = csn_ptr + STRLENOF("csn=");
136                 cval = strchr( csn_str, ',' );
137                 if ( cval && cval < &cookie->octet_str.bv_val[ cookie->octet_str.bv_len ] )
138                         csn_str_len = cval - csn_str;
139                 else
140                         csn_str_len = 0;
141
142                 /* FIXME use csnValidate when it gets implemented */
143                 csn_ptr = strchr( csn_str, '#' );
144                 if ( !csn_ptr || csn_str >= &cookie->octet_str.bv_val[ cookie->octet_str.bv_len ] ) break;
145
146                 stamp.bv_val = csn_str;
147                 stamp.bv_len = csn_ptr - csn_str;
148                 validate = ad->ad_type->sat_syntax->ssyn_validate;
149                 if ( validate( ad->ad_type->sat_syntax, &stamp ) != LDAP_SUCCESS )
150                         break;
151                 valid = 1;
152                 break;
153         }
154         if ( valid ) {
155                 ber_str2bv_x( csn_str, csn_str_len, 1, &cookie->ctxcsn, memctx );
156         } else {
157                 BER_BVZERO( &cookie->ctxcsn );
158         }
159
160         return 0;
161 }
162
163 int
164 slap_init_sync_cookie_ctxcsn(
165         struct sync_cookie *cookie
166 )
167 {
168         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE + 4 ];
169         struct berval octet_str = BER_BVNULL;
170         struct berval ctxcsn = BER_BVNULL;
171
172         if ( cookie == NULL )
173                 return -1;
174
175         octet_str.bv_len = snprintf( csnbuf, LDAP_LUTIL_CSNSTR_BUFSIZE + 4,
176                                         "csn=%4d%02d%02d%02d%02d%02dZ#%06x#%02x#%06x",
177                                         1900, 1, 1, 0, 0, 0, 0, 0, 0 );
178         octet_str.bv_val = csnbuf;
179         ch_free( cookie->octet_str.bv_val );
180         ber_dupbv( &cookie->octet_str, &octet_str );
181
182         ctxcsn.bv_val = octet_str.bv_val + 4;
183         ctxcsn.bv_len = octet_str.bv_len - 4;
184         ber_dupbv( &cookie->ctxcsn, &ctxcsn );
185
186         return 0;
187 }
188
189 struct sync_cookie *
190 slap_dup_sync_cookie(
191         struct sync_cookie *dst,
192         struct sync_cookie *src
193 )
194 {
195         struct sync_cookie *new;
196
197         if ( src == NULL )
198                 return NULL;
199
200         if ( dst ) {
201                 ch_free( dst->ctxcsn.bv_val );
202                 ch_free( dst->octet_str.bv_val );
203                 BER_BVZERO( &dst->ctxcsn );
204                 BER_BVZERO( &dst->octet_str );
205                 new = dst;
206         } else {
207                 new = ( struct sync_cookie * )
208                                 ch_calloc( 1, sizeof( struct sync_cookie ));
209         }
210
211         new->rid = src->rid;
212
213         if ( !BER_BVISNULL( &src->ctxcsn )) {
214                 ber_dupbv( &new->ctxcsn, &src->ctxcsn );
215         }
216
217         if ( !BER_BVISNULL( &src->octet_str )) {
218                 ber_dupbv( &new->octet_str, &src->octet_str );
219         }
220
221         return new;
222 }
223