Line data Source code
1 : #include "../../burp.h"
2 : #include "../../alloc.h"
3 : #include "../../bu.h"
4 : #include "../../cstat.h"
5 : #include "../../conffile.h"
6 : #include "../../fsops.h"
7 : #include "../../lock.h"
8 : #include "../../log.h"
9 : #include "../../strlist.h"
10 : #include "../bu_get.h"
11 : #include "../sdirs.h"
12 : #include "cstat.h"
13 :
14 : #ifndef UTEST
15 : static
16 : #endif
17 19 : int cstat_permitted(struct cstat *cstat,
18 : struct conf **monitor_cconfs, struct conf **cconfs)
19 : {
20 : struct strlist *rclient;
21 : const char *monitorconf_cname;
22 :
23 19 : monitorconf_cname=get_string(monitor_cconfs[OPT_CNAME]);
24 19 : if(!monitorconf_cname)
25 : return 0;
26 :
27 : // Allow clients to look at themselves.
28 4 : if(!strcmp(cstat->name, monitorconf_cname))
29 : return 1;
30 :
31 : // Do not allow clients using the restore_client option to see more
32 : // than the client that it is pretending to be.
33 3 : if(get_string(monitor_cconfs[OPT_RESTORE_CLIENT]))
34 : return 0;
35 :
36 : // If we are listed in this restore_client list.
37 6 : for(rclient=get_strlist(cconfs[OPT_RESTORE_CLIENTS]);
38 2 : rclient; rclient=rclient->next)
39 3 : if(!strcmp(get_string(monitor_cconfs[OPT_CNAME]), rclient->path))
40 : return 1;
41 : return 0;
42 : }
43 :
44 15 : static int cstat_set_sdirs_protocol_unknown(struct cstat *cstat,
45 : struct conf **cconfs)
46 : {
47 : struct stat buf1;
48 : struct stat buf2;
49 15 : struct sdirs *sdirs1=NULL;
50 15 : struct sdirs *sdirs2=NULL;
51 :
52 15 : if(!(sdirs1=sdirs_alloc())
53 15 : || !(sdirs2=sdirs_alloc()))
54 : goto error;
55 :
56 15 : set_protocol(cconfs, PROTO_1);
57 15 : if(sdirs_init_from_confs(sdirs1, cconfs))
58 : goto error;
59 15 : set_protocol(cconfs, PROTO_2);
60 15 : if(sdirs_init_from_confs(sdirs2, cconfs))
61 : goto error;
62 :
63 30 : if(lstat(sdirs2->client, &buf2))
64 : goto protocol1; // No protocol2 client directory.
65 :
66 0 : if(lstat(sdirs1->client, &buf1))
67 : goto protocol2; // No protocol1 client directory.
68 :
69 : // Both directories exist.
70 :
71 0 : if(buf2.st_mtime>buf1.st_mtime)
72 : goto protocol2; // 2 was modified most recently.
73 :
74 : // Fall through to protocol1.
75 :
76 : protocol1:
77 15 : cstat->sdirs=sdirs1;
78 15 : cstat->protocol=PROTO_1;
79 15 : sdirs_free(&sdirs2);
80 15 : set_protocol(cconfs, PROTO_AUTO);
81 : return 0;
82 : protocol2:
83 0 : cstat->sdirs=sdirs2;
84 0 : cstat->protocol=PROTO_2;
85 0 : sdirs_free(&sdirs1);
86 0 : set_protocol(cconfs, PROTO_AUTO);
87 : return 0;
88 : error:
89 0 : sdirs_free(&sdirs1);
90 0 : sdirs_free(&sdirs2);
91 0 : set_protocol(cconfs, PROTO_AUTO);
92 : return -1;
93 : }
94 :
95 0 : static int cstat_set_sdirs_protocol_known(struct cstat *cstat,
96 : struct conf **cconfs)
97 : {
98 0 : struct sdirs *sdirs=NULL;
99 :
100 0 : if(!(sdirs=sdirs_alloc()))
101 : return -1;
102 0 : if(sdirs_init_from_confs(sdirs, cconfs))
103 : {
104 0 : sdirs_free(&sdirs);
105 : return -1;
106 : }
107 0 : cstat->sdirs=sdirs;
108 : return 0;
109 : }
110 :
111 15 : static int cstat_set_sdirs(struct cstat *cstat, struct conf **cconfs)
112 : {
113 15 : enum protocol protocol=get_protocol(cconfs);
114 15 : sdirs_free((struct sdirs **)&cstat->sdirs);
115 :
116 15 : if(protocol==PROTO_AUTO)
117 15 : return cstat_set_sdirs_protocol_unknown(cstat, cconfs);
118 :
119 0 : cstat->protocol=protocol;
120 0 : return cstat_set_sdirs_protocol_known(cstat, cconfs);
121 : }
122 :
123 15 : static int set_cstat_from_conf(struct cstat *cstat,
124 : struct conf **monitor_cconfs, struct conf **cconfs)
125 : {
126 15 : struct strlist *s=NULL;
127 : // Make sure the permitted flag is set appropriately.
128 15 : cstat->permitted=cstat_permitted(cstat, monitor_cconfs, cconfs);
129 :
130 15 : if(cstat_set_sdirs(cstat, cconfs))
131 : return -1;
132 15 : strlists_free(&cstat->labels);
133 21 : for(s=get_strlist(cconfs[OPT_LABEL]); s; s=s->next)
134 6 : if(strlist_add_sorted(&cstat->labels, s->path, s->flag))
135 : return -1;
136 : return 0;
137 : }
138 :
139 : #ifndef UTEST
140 : static
141 : #endif
142 24 : int cstat_get_client_names(struct cstat **clist, const char *clientconfdir)
143 : {
144 24 : int i=0;
145 24 : int n=0;
146 24 : int ret=-1;
147 : struct cstat *c;
148 : struct cstat *cnew;
149 24 : struct dirent **dir=NULL;
150 :
151 24 : if((n=scandir(clientconfdir, &dir, filter_dot, NULL))<0)
152 : {
153 1 : logp("scandir failed for %s in %s: %s\n",
154 1 : clientconfdir, __func__, strerror(errno));
155 1 : goto end;
156 : }
157 75 : for(i=0; i<n; i++)
158 : {
159 75 : if(!cname_valid(dir[i]->d_name))
160 2 : continue;
161 175 : for(c=*clist; c; c=c->next)
162 : {
163 119 : if(!c->name) continue;
164 119 : if(!strcmp(dir[i]->d_name, c->name))
165 : break;
166 : }
167 73 : if(c) continue;
168 :
169 : // We do not have this client yet. Add it.
170 56 : if(!(cnew=cstat_alloc())
171 56 : || cstat_init(cnew, dir[i]->d_name, clientconfdir))
172 : goto end;
173 56 : cstat_add_to_list(clist, cnew);
174 : }
175 :
176 : ret=0;
177 : end:
178 24 : if(dir)
179 : {
180 75 : for(i=0; i<n; i++)
181 75 : free(dir[i]);
182 23 : free(dir);
183 : }
184 24 : return ret;
185 : }
186 :
187 : static void cstat_free_w(struct cstat **cstat)
188 : {
189 8 : sdirs_free((struct sdirs **)&(*cstat)->sdirs);
190 8 : cstat_free(cstat);
191 : }
192 :
193 : #ifndef UTEST
194 : static
195 : #endif
196 8 : void cstat_remove(struct cstat **clist, struct cstat **cstat)
197 : {
198 : struct cstat *c;
199 8 : if(!cstat || !*cstat) return;
200 8 : if(*clist==*cstat)
201 : {
202 4 : *clist=(*clist)->next;
203 4 : if(*clist) (*clist)->prev=NULL;
204 4 : cstat_free_w(cstat);
205 4 : *cstat=*clist;
206 4 : return;
207 : }
208 10 : for(c=*clist; c; c=c->next)
209 : {
210 7 : if(c->next!=*cstat)
211 3 : continue;
212 4 : c->next=(*cstat)->next;
213 4 : if(c->next)
214 3 : c->next->prev=(*cstat)->prev;
215 4 : cstat_free_w(cstat);
216 4 : *cstat=*clist;
217 4 : return;
218 : }
219 : }
220 :
221 : // Returns -1 on error, otherwise the number of clients that were reloaded.
222 : #ifndef UTEST
223 : static
224 : #endif
225 12 : int cstat_reload_from_client_confs(struct cstat **clist,
226 : struct conf **monitor_cconfs,
227 : struct conf **globalcs, struct conf **cconfs)
228 : {
229 : struct cstat *c;
230 : struct stat statp;
231 : static time_t global_mtime=0;
232 12 : time_t global_mtime_new=0;
233 : const char *globalconffile;
234 12 : int reloaded=0;
235 :
236 12 : globalconffile=get_string(globalcs[OPT_CONFFILE]);
237 :
238 12 : if(stat(globalconffile, &statp)
239 11 : || !S_ISREG(statp.st_mode))
240 : {
241 1 : logp("Could not stat main conf file %s: %s\n",
242 1 : globalconffile, strerror(errno));
243 1 : return -1;
244 : }
245 11 : global_mtime_new=statp.st_mtime;
246 :
247 : // FIX THIS: If '. included' conf files have changed, this code will
248 : // not detect them. I guess that conf.c should make a list of them.
249 : while(1)
250 : {
251 41 : for(c=*clist; c; c=c->next)
252 : {
253 : // Look at the client conf files to see if they have
254 : // changed, and reload bits and pieces if they have.
255 :
256 31 : if(!c->conffile) continue;
257 62 : if(stat(c->conffile, &statp)
258 28 : || !S_ISREG(statp.st_mode))
259 : {
260 3 : cstat_remove(clist, &c);
261 3 : break; // Go to the beginning of the list.
262 : }
263 28 : if(statp.st_mtime==c->conf_mtime
264 12 : && global_mtime_new==global_mtime)
265 : {
266 : // The conf files have not changed - no need to
267 : // do anything.
268 12 : continue;
269 : }
270 16 : c->conf_mtime=statp.st_mtime;
271 :
272 16 : confs_free_content(cconfs);
273 16 : if(set_string(cconfs[OPT_CNAME], c->name))
274 : return -1;
275 16 : if(conf_load_clientconfdir(globalcs, cconfs))
276 : {
277 : // If the file has junk in it, we will keep
278 : // trying to reload it after removal.
279 : // So, just deny permission to view it.
280 1 : c->permitted=0;
281 1 : continue;
282 : }
283 :
284 15 : if(set_cstat_from_conf(c, monitor_cconfs, cconfs))
285 : return -1;
286 15 : reloaded++;
287 : }
288 : // Only stop if the end of the list was not reached.
289 13 : if(!c) break;
290 : }
291 11 : if(global_mtime!=global_mtime_new)
292 3 : global_mtime=global_mtime_new;
293 : return reloaded;
294 : }
295 :
296 22 : void cstat_set_run_status(struct cstat *cstat, enum run_status run_status)
297 : {
298 22 : if(!cstat->permitted)
299 : return;
300 20 : cstat->run_status=run_status;
301 : }
302 :
303 : // Return -1 on error, or the number of reloaded clients.
304 : #ifndef UTEST
305 : static
306 : #endif
307 8 : int reload_from_clientdir(struct cstat **clist)
308 : {
309 8 : int reloaded=0;
310 : struct cstat *c;
311 27 : for(c=*clist; c; c=c->next)
312 : {
313 : struct stat statp;
314 : struct sdirs *sdirs;
315 :
316 36 : if(!c->permitted) continue;
317 :
318 6 : sdirs=(struct sdirs *)c->sdirs;
319 6 : if(!sdirs || !sdirs->client) continue;
320 12 : if(stat(sdirs->client, &statp))
321 2 : continue;
322 :
323 4 : if(statp.st_mtime==c->clientdir_mtime)
324 : {
325 : // clientdir has not changed - no need to do anything.
326 2 : continue;
327 : }
328 2 : c->clientdir_mtime=statp.st_mtime;
329 :
330 2 : bu_list_free(&c->bu);
331 : // FIX THIS: should probably not load everything each time.
332 : // if(bu_get_current(sdirs, &c->bu))
333 : // goto error;
334 2 : if(bu_get_list_with_working(sdirs, &c->bu))
335 : goto error;
336 2 : reloaded++;
337 : }
338 : return reloaded;
339 : error:
340 0 : return -1;
341 : }
342 :
343 2 : int cstat_load_data_from_disk(struct cstat **clist,
344 : struct conf **monitor_cconfs,
345 : struct conf **globalcs, struct conf **cconfs)
346 : {
347 2 : if(!globalcs) return -1;
348 2 : return cstat_get_client_names(clist,
349 2 : get_string(globalcs[OPT_CLIENTCONFDIR]))
350 2 : || cstat_reload_from_client_confs(clist,
351 : monitor_cconfs, globalcs, cconfs)<0
352 4 : || reload_from_clientdir(clist)<0;
353 : }
354 :
355 26 : int cstat_set_backup_list(struct cstat *cstat)
356 : {
357 26 : struct bu *bu=NULL;
358 :
359 : // Free any previous list.
360 26 : bu_list_free(&cstat->bu);
361 :
362 26 : if(!cstat->permitted) return 0;
363 :
364 24 : if(bu_get_list_with_working((struct sdirs *)cstat->sdirs, &bu))
365 : {
366 : //logp("error when looking up current backups\n");
367 : return 0;
368 : }
369 :
370 : // Find the end of the list just loaded, so we can traverse
371 : // it backwards later.
372 50 : while(bu && bu->next) bu=bu->next;
373 :
374 23 : cstat->bu=bu;
375 23 : return 0;
376 : }
|