]> git.sur5r.net Git - openldap/blob - servers/slapd/ldapsync.c
reject registrations when back-monitor is not configured
[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( cookiestr, strlen(cookiestr), 1, cookie );
59 }
60
61 void
62 slap_sync_cookie_free(
63         struct sync_cookie *cookie,
64         int free_cookie
65 )
66 {
67         if ( cookie == NULL )
68                 return;
69
70         if ( !BER_BVISNULL( &cookie->ctxcsn )) {
71                 ch_free( cookie->ctxcsn.bv_val );
72                 BER_BVZERO( &cookie->ctxcsn );
73         }
74
75         if ( !BER_BVISNULL( &cookie->octet_str )) {
76                 ch_free( cookie->octet_str.bv_val );
77                 BER_BVZERO( &cookie->octet_str );
78         }
79
80         if ( free_cookie ) {
81                 ch_free( cookie );
82         }
83
84         return;
85 }
86
87 int
88 slap_parse_sync_cookie(
89         struct sync_cookie *cookie,
90         void *memctx
91 )
92 {
93         char *csn_ptr;
94         char *csn_str;
95         int csn_str_len;
96         int valid = 0;
97         char *rid_ptr;
98         char *cval;
99
100         if ( cookie == NULL )
101                 return -1;
102
103         cookie->rid = -1;
104         if (( rid_ptr = strstr( cookie->octet_str.bv_val, "rid=" )) != NULL ) {
105                 if ( (cval = strchr( rid_ptr, ',' )) != NULL ) {
106                         *cval = '\0';
107                 }
108                 cookie->rid = atoi( rid_ptr + sizeof("rid=") - 1 );
109                 if ( cval != NULL ) {
110                         *cval = ',';
111                 }
112         } else {
113                 return -1;
114         }
115
116         while (( csn_ptr = strstr( cookie->octet_str.bv_val, "csn=" )) != NULL ) {
117                 AttributeDescription *ad = slap_schema.si_ad_modifyTimestamp;
118                 slap_syntax_validate_func *validate;
119                 struct berval stamp;
120
121                 /* This only happens when called from main */
122                 if ( ad == NULL )
123                         break;
124
125                 csn_str = csn_ptr + STRLENOF("csn=");
126                 cval = strchr( csn_str, ',' );
127                 if ( cval )
128                         csn_str_len = cval - csn_str;
129                 else
130                         csn_str_len = 0;
131
132                 /* FIXME use csnValidate when it gets implemented */
133                 csn_ptr = strchr( csn_str, '#' );
134                 if ( !csn_ptr ) break;
135
136                 stamp.bv_val = csn_str;
137                 stamp.bv_len = csn_ptr - csn_str;
138                 validate = ad->ad_type->sat_syntax->ssyn_validate;
139                 if ( validate( ad->ad_type->sat_syntax, &stamp ) != LDAP_SUCCESS )
140                         break;
141                 valid = 1;
142                 break;
143         }
144         if ( valid ) {
145                 ber_str2bv_x( csn_str, csn_str_len, 1, &cookie->ctxcsn, memctx );
146         } else {
147                 BER_BVZERO( &cookie->ctxcsn );
148         }
149
150         return 0;
151 }
152
153 int
154 slap_init_sync_cookie_ctxcsn(
155         struct sync_cookie *cookie
156 )
157 {
158         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE + 4 ];
159         struct berval octet_str = BER_BVNULL;
160         struct berval ctxcsn = BER_BVNULL;
161
162         if ( cookie == NULL )
163                 return -1;
164
165         octet_str.bv_len = snprintf( csnbuf, LDAP_LUTIL_CSNSTR_BUFSIZE + 4,
166                                         "csn=%4d%02d%02d%02d%02d%02dZ#%06x#%02x#%06x",
167                                         1900, 1, 1, 0, 0, 0, 0, 0, 0 );
168         octet_str.bv_val = csnbuf;
169         ch_free( cookie->octet_str.bv_val );
170         ber_dupbv( &cookie->octet_str, &octet_str );
171
172         ctxcsn.bv_val = octet_str.bv_val + 4;
173         ctxcsn.bv_len = octet_str.bv_len - 4;
174         ber_dupbv( &cookie->ctxcsn, &ctxcsn );
175
176         return 0;
177 }
178
179 struct sync_cookie *
180 slap_dup_sync_cookie(
181         struct sync_cookie *dst,
182         struct sync_cookie *src
183 )
184 {
185         struct sync_cookie *new;
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