]> git.sur5r.net Git - openldap/blob - servers/slurpd/ri.c
The world compiles and links....
[openldap] / servers / slurpd / ri.c
1 /*
2  * Copyright (c) 1996 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 /*
14  * ri.c - routines used to manipulate Ri structures.  An Ri (Replica
15  * information) struct contains all information about one replica
16  * instance.  The Ri struct is defined in slurp.h
17  */
18
19
20 #include "portable.h"
21
22 #include <stdio.h>
23 #include <ac/signal.h>
24
25 #include "slurp.h"
26 #include "globals.h"
27
28
29 /* External references */
30 extern void write_reject LDAP_P(( Ri *, Re *, int, char * ));
31 extern void do_nothing LDAP_P(());
32
33 /* Forward references */
34 static int ismine LDAP_P(( Ri  *, Re  * ));
35 static int isnew LDAP_P(( Ri  *, Re  * ));
36 void tsleep LDAP_P(( time_t ));
37
38
39 /*
40  * Process any unhandled replication entries in the queue.
41  */
42 static int
43 Ri_process(
44     Ri *ri
45 )
46 {
47     Rq          *rq = sglob->rq;
48     Re          *re, *new_re;
49     int         i;
50     int         rc ;
51     char        *errmsg;
52
53 #ifdef HAVE_LINUX_THREADS
54     (void) SIGNAL( SIGSTKFLT, (void *) do_nothing );
55 #else
56     (void) SIGNAL( SIGUSR1, (void *) do_nothing );
57 #endif
58     (void) SIGNAL( SIGPIPE, SIG_IGN );
59     if ( ri == NULL ) {
60         Debug( LDAP_DEBUG_ANY, "Error: Ri_process: ri == NULL!\n", 0, 0, 0 );
61         return -1;
62     }
63
64     /*
65      * Startup code.  See if there's any work to do.  If not, wait on the
66      * rq->rq_more condition variable.
67      */
68     rq->rq_lock( rq );
69     while ( !sglob->slurpd_shutdown &&
70             (( re = rq->rq_gethead( rq )) == NULL )) {
71         /* No work - wait on condition variable */
72         pthread_cond_wait( &rq->rq_more, &rq->rq_mutex );
73     }
74
75     /*
76      * When we get here, there's work in the queue, and we have the
77      * queue locked.  re should be pointing to the head of the queue.
78      */
79     rq->rq_unlock( rq );
80     while ( !sglob->slurpd_shutdown ) {
81         if ( re != NULL ) {
82             if ( !ismine( ri, re )) {
83                 /* The Re doesn't list my host:port */
84                 Debug( LDAP_DEBUG_TRACE,
85                         "Replica %s:%d, skip repl record for %s (not mine)\n",
86                         ri->ri_hostname, ri->ri_port, re->re_dn );
87             } else if ( !isnew( ri, re )) {
88                 /* This Re is older than my saved status information */
89                 Debug( LDAP_DEBUG_TRACE,
90                         "Replica %s:%d, skip repl record for %s (old)\n",
91                         ri->ri_hostname, ri->ri_port, re->re_dn );
92             } else {
93                 rc = do_ldap( ri, re, &errmsg );
94                 switch ( rc ) {
95                 case DO_LDAP_ERR_RETRYABLE:
96                     tsleep( RETRY_SLEEP_TIME );
97                     Debug( LDAP_DEBUG_ANY,
98                             "Retrying operation for DN %s on replica %s:%d\n",
99                             re->re_dn, ri->ri_hostname, ri->ri_port );
100                     continue;
101                     break;
102                 case DO_LDAP_ERR_FATAL:
103                     /* Non-retryable error.  Write rejection log. */
104                     write_reject( ri, re, ri->ri_ldp->ld_errno, errmsg );
105                     /* Update status ... */
106                     (void) sglob->st->st_update( sglob->st, ri->ri_stel, re );
107                     /* ... and write to disk */
108                     (void) sglob->st->st_write( sglob->st );
109                     break;
110                 default:
111                     /* LDAP op completed ok - update status... */
112                     (void) sglob->st->st_update( sglob->st, ri->ri_stel, re );
113                     /* ... and write to disk */
114                     (void) sglob->st->st_write( sglob->st );
115                     break;
116                 }
117             }
118         } else {
119             Debug( LDAP_DEBUG_ANY, "Error: re is null in Ri_process\n",
120                     0, 0, 0 );
121         }
122         rq->rq_lock( rq );
123         while ( !sglob->slurpd_shutdown &&
124                 ((new_re = re->re_getnext( re )) == NULL )) {
125             if ( sglob->one_shot_mode ) {
126                 return 0;
127             }
128             /* No work - wait on condition variable */
129             pthread_cond_wait( &rq->rq_more, &rq->rq_mutex );
130         }
131         re->re_decrefcnt( re );
132         re = new_re;
133         rq->rq_unlock( rq );
134         if ( sglob->slurpd_shutdown ) {
135             return 0;
136         }
137     }
138     return 0;
139 }
140
141
142 /*
143  * Wake a replication thread which may be sleeping.
144  * Send it a SIG(STKFLT|USR1).
145  */
146 static void
147 Ri_wake(
148     Ri *ri
149
150 {
151     if ( ri == NULL ) {
152         return;
153     }
154 #ifdef HAVE_LINUX_THREADS
155     pthread_kill( ri->ri_tid, SIGSTKFLT );
156     (void) SIGNAL( SIGSTKFLT, (void *) do_nothing );
157 #else
158     pthread_kill( ri->ri_tid, SIGUSR1 );
159     (void) SIGNAL( SIGUSR1, (void *) do_nothing );
160 #endif
161 }
162
163
164
165 /* 
166  * Allocate and initialize an Ri struct.
167  */
168 int
169 Ri_init(
170     Ri  **ri
171 )
172 {
173     (*ri) = ( Ri * ) malloc( sizeof( Ri ));
174     if ( *ri == NULL ) {
175         return -1;
176     }
177
178     /* Initialize member functions */
179     (*ri)->ri_process = Ri_process;
180     (*ri)->ri_wake = Ri_wake;
181
182     /* Initialize private data */
183     (*ri)->ri_hostname = NULL;
184     (*ri)->ri_port = 0;
185     (*ri)->ri_ldp = NULL;
186     (*ri)->ri_bind_method = 0;
187     (*ri)->ri_bind_dn = NULL;
188     (*ri)->ri_password = NULL;
189     (*ri)->ri_principal = NULL;
190     (*ri)->ri_srvtab = NULL;
191     (*ri)->ri_curr = NULL;
192
193     return 0;
194 }
195
196
197
198
199 /*
200  * Return 1 if the hostname and port in re match the hostname and port
201  * in ri, otherwise return zero.
202  */
203 static int
204 ismine(
205     Ri  *ri,
206     Re  *re
207 )
208 {
209     Rh  *rh;
210     int i;
211
212     if ( ri == NULL || re == NULL || ri->ri_hostname == NULL ||
213             re->re_replicas == NULL ) {
214         return 0;
215     }
216     rh = re->re_replicas;
217     for ( i = 0; rh[ i ].rh_hostname != NULL; i++ ) {
218         if ( !strcmp( rh[ i ].rh_hostname, ri->ri_hostname) &&
219                 rh[ i ].rh_port == ri->ri_port ) {
220             return 1;
221         }
222     }
223     return 0;
224 }
225
226
227
228
229 /*
230  * Return 1 if the Re's timestamp/seq combination are greater than the
231  * timestamp and seq in the Ri's ri_stel member.  In other words, if we
232  * find replication entries in the log which we've already processed,
233  * don't process them.  If the re is "old," return 0.
234  * No check for NULL pointers is done.
235  */
236 static int
237 isnew(
238     Ri  *ri,
239     Re  *re
240 )
241 {
242     int x;
243     int ret;
244
245     /* Lock the St struct to avoid a race */
246     sglob->st->st_lock( sglob->st );
247     x = strcmp( re->re_timestamp, ri->ri_stel->last );
248     if ( x > 0 ) {
249         /* re timestamp is newer */
250         ret = 1;
251     } else if ( x < 0 ) {
252         ret = 0;
253     } else {
254         /* timestamps were equal */
255         if ( re->re_seq > ri->ri_stel->seq ) {
256             /* re seq is newer */
257             ret = 1;
258         } else {
259             ret = 0;
260         }
261     }
262     sglob->st->st_unlock( sglob->st );
263     return ret;
264 }
265
266