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