r12200: - move the the winsreplication client and server code to the packet_context
[sfrench/samba-autobuild/.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                 /* the status of the last push cycle */
173                 NTSTATUS last_status;
174
175                 /* the outgoing connection to the partner */
176                 struct wreplsrv_out_connection *wreplconn;
177
178                 /* the current push notification */
179                 struct composite_context *creq;
180
181                 /* the pull cycle io params */
182                 struct wreplsrv_push_notify_io *notify_io;
183
184                 /* the current timed_event to the next push notify */
185                 struct timed_event *te;
186         } push;
187 };
188
189 struct wreplsrv_owner {
190         struct wreplsrv_owner *prev,*next;
191
192         /* this hold the owner_id (address), min_version, max_version and partner_type */
193         struct wrepl_wins_owner owner;
194
195         /* can be NULL if this owner isn't a configure partner */
196         struct wreplsrv_partner *partner; 
197 };
198
199 /*
200   state of the whole wrepl service
201 */
202 struct wreplsrv_service {
203         /* the whole wrepl service is in one task */
204         struct task_server *task;
205
206         /* the winsdb handle */
207         struct ldb_context *wins_db;
208
209         /* some configuration */
210         struct {
211                 /* 
212                  * the interval (in secs) till an active record will be marked as RELEASED 
213                  */
214                 uint32_t renew_interval;
215
216                 /* 
217                  * the interval (in secs) a record remains in RELEASED state,
218                  * before it will be marked as TOMBSTONE
219                  * (also known as extinction interval)
220                  */
221                 uint32_t tombstone_interval;
222
223                 /* 
224                  * the interval (in secs) a record remains in TOMBSTONE state,
225                  * before it will be removed from the database.
226                  * (also known as extinction timeout)
227                  */
228                 uint32_t tombstone_timeout;
229
230                 /* 
231                  * the interval (in secs) till a replica record will be verified
232                  * with the owning wins server
233                  */
234                 uint32_t verify_interval;
235         } config;
236
237         /* all incoming connections */
238         struct wreplsrv_in_connection *in_connections;
239
240         /* all partners (pull and push) */
241         struct wreplsrv_partner *partners;
242
243         /* this is a list of each wins_owner we know about in our database */
244         struct wreplsrv_owner *table;
245 };