]> git.sur5r.net Git - openldap/blob - servers/slapd/ldapsync.c
1d34c9e8912cce3b17f95313f3c8f07fd5c298dc
[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 #if 0
31 struct sync_cookie *slap_sync_cookie = NULL;
32 #else
33 struct slap_sync_cookie_s slap_sync_cookie =
34         LDAP_STAILQ_HEAD_INITIALIZER( slap_sync_cookie );
35 #endif
36
37 void
38 slap_compose_sync_cookie(
39         Operation *op,
40         struct berval *cookie,
41         struct berval *csn,
42         int rid )
43 {
44         char cookiestr[ LDAP_LUTIL_CSNSTR_BUFSIZE + 20 ];
45
46         if ( csn->bv_val == NULL ) {
47                 if ( rid == -1 ) {
48                         cookiestr[0] = '\0';
49                 } else {
50                         snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
51                                         "rid=%03d", rid );
52                 }
53         } else {
54                 if ( rid == -1 ) {
55                         snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
56                                         "csn=%s", csn->bv_val );
57                 } else {
58                         snprintf( cookiestr, LDAP_LUTIL_CSNSTR_BUFSIZE + 20,
59                                         "csn=%s,rid=%03d", csn->bv_val, rid );
60                 }
61         }
62         ber_str2bv( cookiestr, strlen(cookiestr), 1, cookie );
63 }
64
65 void
66 slap_sync_cookie_free(
67         struct sync_cookie *cookie,
68         int free_cookie
69 )
70 {
71         if ( cookie == NULL )
72                 return;
73
74         if ( !BER_BVISNULL( &cookie->ctxcsn )) {
75                 ch_free( cookie->ctxcsn.bv_val );
76                 BER_BVZERO( &cookie->ctxcsn );
77         }
78
79         if ( !BER_BVISNULL( &cookie->octet_str )) {
80                 ch_free( cookie->octet_str.bv_val );
81                 BER_BVZERO( &cookie->octet_str );
82         }
83
84         if ( free_cookie ) {
85                 ch_free( cookie );
86         }
87
88         return;
89 }
90
91 int
92 slap_parse_sync_cookie(
93         struct sync_cookie *cookie
94 )
95 {
96         char *csn_ptr;
97         char *csn_str;
98         int csn_str_len;
99         int valid = 0;
100         char *rid_ptr;
101         char *rid_str;
102         char *cval;
103
104         if ( cookie == NULL )
105                 return -1;
106
107         while (( csn_ptr = strstr( cookie->octet_str.bv_val, "csn=" )) != NULL ) {
108                 AttributeDescription *ad = slap_schema.si_ad_modifyTimestamp;
109                 slap_syntax_validate_func *validate;
110                 struct berval stamp;
111
112                 csn_str = csn_ptr + STRLENOF("csn=");
113                 cval = strchr( csn_str, ',' );
114                 if ( cval )
115                         csn_str_len = cval - csn_str;
116                 else
117                         csn_str_len = 0;
118
119                 /* FIXME use csnValidate when it gets implemented */
120                 csn_ptr = strchr( csn_str, '#' );
121                 if ( !csn_ptr ) break;
122
123                 stamp.bv_val = csn_str;
124                 stamp.bv_len = csn_ptr - csn_str;
125                 validate = ad->ad_type->sat_syntax->ssyn_validate;
126                 if ( validate( ad->ad_type->sat_syntax, &stamp ) != LDAP_SUCCESS )
127                         break;
128                 valid = 1;
129                 break;
130         }
131         if ( valid ) {
132                 ber_str2bv( csn_str, csn_str_len, 1, &cookie->ctxcsn );
133         } else {
134                 BER_BVZERO( &cookie->ctxcsn );
135         }
136
137         if (( rid_ptr = strstr( cookie->octet_str.bv_val, "rid=" )) != NULL ) {
138                 rid_str = SLAP_STRNDUP( rid_ptr,
139                                                         SLAP_SYNC_RID_SIZE + sizeof("rid=") - 1 );
140                 if ( (cval = strchr( rid_str, ',' )) != NULL ) {
141                         *cval = '\0';
142                 }
143                 cookie->rid = atoi( rid_str + sizeof("rid=") - 1 );
144                 ch_free( rid_str );
145         } else {
146                 cookie->rid = -1;
147         }
148         return 0;
149 }
150
151 int
152 slap_init_sync_cookie_ctxcsn(
153         struct sync_cookie *cookie
154 )
155 {
156         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE + 4 ];
157         struct berval octet_str = BER_BVNULL;
158         struct berval ctxcsn = BER_BVNULL;
159
160         if ( cookie == NULL )
161                 return -1;
162
163         octet_str.bv_len = snprintf( csnbuf, LDAP_LUTIL_CSNSTR_BUFSIZE + 4,
164                                         "csn=%4d%02d%02d%02d%02d%02dZ#%06x#%02x#%06x",
165                                         1900, 1, 1, 0, 0, 0, 0, 0, 0 );
166         octet_str.bv_val = csnbuf;
167         ch_free( cookie->octet_str.bv_val );
168         ber_dupbv( &cookie->octet_str, &octet_str );
169
170         ctxcsn.bv_val = octet_str.bv_val + 4;
171         ctxcsn.bv_len = octet_str.bv_len - 4;
172         ber_dupbv( &cookie->ctxcsn, &ctxcsn );
173
174         return 0;
175 }
176
177 struct sync_cookie *
178 slap_dup_sync_cookie(
179         struct sync_cookie *dst,
180         struct sync_cookie *src
181 )
182 {
183         int i;
184         struct sync_cookie *new;
185         struct berval tmp_bv;
186
187         if ( src == NULL )
188                 return NULL;
189
190         if ( dst ) {
191                 ch_free( dst->ctxcsn.bv_val );
192                 ch_free( dst->octet_str.bv_val );
193                 BER_BVZERO( &dst->ctxcsn );
194                 BER_BVZERO( &dst->octet_str );
195                 new = dst;
196         } else {
197                 new = ( struct sync_cookie * )
198                                 ch_calloc( 1, sizeof( struct sync_cookie ));
199         }
200
201         new->rid = src->rid;
202
203         if ( !BER_BVISNULL( &src->ctxcsn )) {
204                 ber_dupbv( &new->ctxcsn, &src->ctxcsn );
205         }
206
207         if ( !BER_BVISNULL( &src->octet_str )) {
208                 ber_dupbv( &new->octet_str, &src->octet_str );
209         }
210
211         return new;
212 }
213