r12242: - make the push notifications triggered by the change count
[jra/samba/.git] / source4 / wrepl_server / wrepl_server.h
1 /* 
2    Unix SMB/CIFS implementation.
3    
4    WINS Replication server
5    
6    Copyright (C) Stefan Metzmacher      2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 struct wreplsrv_service;
24 struct wreplsrv_in_connection;
25 struct wreplsrv_out_connection;
26 struct wreplsrv_partner;
27
28 #define WREPLSRV_VALID_ASSOC_CTX        0x12345678
29 #define WREPLSRV_INVALID_ASSOC_CTX      0x0000000a
30
31 /*
32   state of an incoming wrepl call
33 */
34 struct wreplsrv_in_call {
35         struct wreplsrv_in_connection *wreplconn;
36         struct wrepl_packet req_packet;
37         struct wrepl_packet rep_packet;
38         BOOL terminate_after_send;
39 };
40
41 /*
42   state of an incoming wrepl connection
43 */
44 struct wreplsrv_in_connection {
45         struct wreplsrv_in_connection *prev,*next;
46         struct stream_connection *conn;
47         struct packet_context *packet;
48
49         /* our global service context */
50         struct wreplsrv_service *service;
51
52         /*
53          * the partner that connects us,
54          * can be NULL, when we got a connection
55          * from an unknown address
56          */
57         struct wreplsrv_partner *partner;
58
59         /*
60          * we need to take care of our own ip address,
61          * as this is the WINS-Owner ID the peer expect
62          * from us.
63          */
64         const char *our_ip;
65
66         /* keep track of the assoc_ctx's */
67         struct {
68                 BOOL stopped;
69                 uint32_t our_ctx;
70                 uint32_t peer_ctx;
71         } assoc_ctx;
72 };
73
74 /*
75   state of an outcoming wrepl connection
76 */
77 struct wreplsrv_out_connection {
78         /* our global service context */
79         struct wreplsrv_service *service;
80
81         /*
82          * the partner that connects us,
83          * can be NULL, when we got a connection
84          * from an unknown address
85          */
86         struct wreplsrv_partner *partner;
87
88         /* keep track of the assoc_ctx's */
89         struct {
90                 uint32_t our_ctx;
91                 uint32_t peer_ctx;
92         } assoc_ctx;
93
94         /* 
95          * the client socket to the partner,
96          * NULL if not yet connected
97          */
98         struct wrepl_socket *sock;
99 };
100
101 enum winsrepl_partner_type {
102         WINSREPL_PARTNER_NONE = 0x0,
103         WINSREPL_PARTNER_PULL = 0x1,
104         WINSREPL_PARTNER_PUSH = 0x2,
105         WINSREPL_PARTNER_BOTH = (WINSREPL_PARTNER_PULL | WINSREPL_PARTNER_PUSH)
106 };
107
108 #define WINSREPL_DEFAULT_PULL_INTERVAL (30*60)
109 #define WINSREPL_DEFAULT_PULL_RETRY_INTERVAL (30)
110
111 #define WINSREPL_DEFAULT_PUSH_CHANGE_COUNT (0)
112
113 /*
114  this represents one of our configured partners
115 */
116 struct wreplsrv_partner {
117         struct wreplsrv_partner *prev,*next;
118
119         /* our global service context */
120         struct wreplsrv_service *service;
121
122         /* the netbios name of the partner, mostly just for debugging */
123         const char *name;
124
125         /* the ip-address of the partner */
126         const char *address;
127
128         /* 
129          * as wins partners identified by ip-address, we need to use a specific source-ip
130          *  when we want to connect to the partner
131          */
132         const char *our_address;
133
134         /* the type of the partner, pull, push or both */
135         enum winsrepl_partner_type type;
136
137         /* pull specific options */
138         struct {
139                 /* the interval between 2 pull replications to the partner */
140                 uint32_t interval;
141
142                 /* the retry_interval if a pull cycle failed to the partner */
143                 uint32_t retry_interval;
144
145                 /* the error count till the last success */
146                 uint32_t error_count;
147
148                 /* the status of the last pull cycle */
149                 NTSTATUS last_status;
150
151                 /* this is a list of each wins_owner the partner knows about */
152                 struct wreplsrv_owner *table;
153
154                 /* the outgoing connection to the partner */
155                 struct wreplsrv_out_connection *wreplconn;
156
157                 /* the current pending pull cycle request */
158                 struct composite_context *creq;
159
160                 /* the pull cycle io params */
161                 struct wreplsrv_pull_cycle_io *cycle_io;
162
163                 /* the current timed_event to the next pull cycle */
164                 struct timed_event *te;
165         } pull;
166
167         /* push specific options */
168         struct {
169                 /* change count till push notification */
170                 uint32_t change_count;
171
172                 /* we should use WREPL_REPL_INFORM* messages to this partner */
173                 BOOL use_inform;
174
175                 /* the error count till the last success */
176                 uint32_t error_count;
177
178                 /* the status of the last push cycle */
179                 NTSTATUS last_status;
180
181                 /* the timestamp of the last run */
182                 struct timeval last_run;
183
184                 /* the outgoing connection to the partner */
185                 struct wreplsrv_out_connection *wreplconn;
186
187                 /* the current push notification */
188                 struct composite_context *creq;
189
190                 /* the pull cycle io params */
191                 struct wreplsrv_push_notify_io *notify_io;
192         } push;
193 };
194
195 struct wreplsrv_owner {
196         struct wreplsrv_owner *prev,*next;
197
198         /* this hold the owner_id (address), min_version, max_version and partner_type */
199         struct wrepl_wins_owner owner;
200
201         /* can be NULL if this owner isn't a configure partner */
202         struct wreplsrv_partner *partner; 
203 };
204
205 /*
206   state of the whole wrepl service
207 */
208 struct wreplsrv_service {
209         /* the whole wrepl service is in one task */
210         struct task_server *task;
211
212         /* the winsdb handle */
213         struct ldb_context *wins_db;
214
215         /* some configuration */
216         struct {
217                 /* 
218                  * the interval (in secs) till an active record will be marked as RELEASED 
219                  */
220                 uint32_t renew_interval;
221
222                 /* 
223                  * the interval (in secs) a record remains in RELEASED state,
224                  * before it will be marked as TOMBSTONE
225                  * (also known as extinction interval)
226                  */
227                 uint32_t tombstone_interval;
228
229                 /* 
230                  * the interval (in secs) a record remains in TOMBSTONE state,
231                  * before it will be removed from the database.
232                  * (also known as extinction timeout)
233                  */
234                 uint32_t tombstone_timeout;
235
236                 /* 
237                  * the interval (in secs) till a replica record will be verified
238                  * with the owning wins server
239                  */
240                 uint32_t verify_interval;
241
242                 /* 
243                  * the interval (in secs) to the next periodic processing
244                  * (this is the maximun interval)
245                  */
246                 uint32_t periodic_interval;
247         } config;
248
249         /* all incoming connections */
250         struct wreplsrv_in_connection *in_connections;
251
252         /* all partners (pull and push) */
253         struct wreplsrv_partner *partners;
254
255         /* this is a list of each wins_owner we know about in our database */
256         struct wreplsrv_owner *table;
257
258         /* some stuff for periodic processing */
259         struct {
260                 /*
261                  * the timestamp for the current event,
262                  */
263                 struct timeval current_event;
264
265                 /*
266                  * the timestamp for the next event,
267                  * this is the timstamp passed to event_add_timed()
268                  */
269                 struct timeval next_event;
270
271                 /* here we have a reference to the timed event the schedules the periodic stuff */
272                 struct timed_event *te;
273         } periodic;
274 };