Line data Source code
1 : #include "../burp.h"
2 : #include "../conffile.h"
3 : #include "../action.h"
4 : #include "../asfd.h"
5 : #include "../async.h"
6 : #include "../cmd.h"
7 : #include "../cntr.h"
8 : #include "../fsops.h"
9 : #include "../handy.h"
10 : #include "../iobuf.h"
11 : #include "../log.h"
12 : #include "../run_script.h"
13 : #include "auth.h"
14 : #include "backup.h"
15 : #include "ca.h"
16 : #include "delete.h"
17 : #include "extra_comms.h"
18 : #include "list.h"
19 : #include "monitor.h"
20 : #include "monitor/status_client_ncurses.h"
21 : #include "protocol2/restore.h"
22 : #include "restore.h"
23 :
24 : #ifndef HAVE_WIN32
25 : #include <sys/utsname.h>
26 : #endif
27 :
28 : // These will also be used as the exit codes of the program and are therefore
29 : // unsigned integers.
30 : // Remember to update the man page if you update these.
31 : enum cliret
32 : {
33 : CLIENT_OK=0,
34 : CLIENT_ERROR=1,
35 : CLIENT_RESTORE_WARNINGS=2,
36 : CLIENT_SERVER_TIMER_NOT_MET=3,
37 : CLIENT_COULD_NOT_CONNECT=4,
38 : // This one happens after a successful certificate signing request so
39 : // that it connects again straight away with the new key/certificate.
40 : CLIENT_RECONNECT=100
41 : };
42 :
43 : struct tchk
44 : {
45 : int resume;
46 : enum cliret ret;
47 : };
48 :
49 0 : static enum asl_ret maybe_check_timer_func(struct asfd *asfd,
50 : struct conf **confs, void *param)
51 : {
52 0 : int complen=0;
53 0 : struct tchk *tchk=(struct tchk *)param;
54 :
55 0 : if(!strcmp(asfd->rbuf->buf, "timer conditions not met"))
56 : {
57 0 : logp("Timer conditions on the server were not met\n");
58 0 : tchk->ret=CLIENT_SERVER_TIMER_NOT_MET;
59 0 : return ASL_END_OK;
60 : }
61 0 : else if(!strcmp(asfd->rbuf->buf, "timer conditions met"))
62 : {
63 : // Only happens on 'timer check only'.
64 0 : logp("Timer conditions on the server were met\n");
65 0 : tchk->ret=CLIENT_OK;
66 0 : return ASL_END_OK;
67 : }
68 :
69 0 : if(!strncmp_w(asfd->rbuf->buf, "ok"))
70 : complen=3;
71 0 : else if(!strncmp_w(asfd->rbuf->buf, "resume"))
72 : {
73 0 : complen=7;
74 0 : tchk->resume=1;
75 0 : logp("server wants to resume previous backup.\n");
76 : }
77 : else
78 : {
79 0 : iobuf_log_unexpected(asfd->rbuf, __func__);
80 0 : return ASL_END_ERROR;
81 : }
82 :
83 : // The server now tells us the compression level in the OK response.
84 0 : if(strlen(asfd->rbuf->buf)>3)
85 0 : set_int(confs[OPT_COMPRESSION], atoi(asfd->rbuf->buf+complen));
86 : logp("Compression level: %d\n",
87 0 : get_int(confs[OPT_COMPRESSION]));
88 :
89 0 : return ASL_END_OK;
90 : }
91 :
92 0 : static enum cliret maybe_check_timer(struct asfd *asfd,
93 : enum action action, const char *phase1str,
94 : struct conf **confs, int *resume)
95 : {
96 : struct tchk tchk;
97 : memset(&tchk, 0, sizeof(tchk));
98 0 : if(asfd->write_str(asfd, CMD_GEN, phase1str))
99 : return CLIENT_ERROR;
100 :
101 0 : if(asfd->simple_loop(asfd, confs, &tchk,
102 0 : __func__, maybe_check_timer_func)) return CLIENT_ERROR;
103 0 : *resume=tchk.resume;
104 0 : return tchk.ret;
105 : }
106 :
107 0 : static enum cliret backup_wrapper(struct asfd *asfd,
108 : enum action action, const char *phase1str,
109 : const char *incexc, struct conf **confs)
110 : {
111 0 : int resume=0;
112 0 : enum cliret ret=CLIENT_OK;
113 0 : const char *b_script_pre=get_string(confs[OPT_B_SCRIPT_PRE]);
114 0 : const char *b_script_post=get_string(confs[OPT_B_SCRIPT_POST]);
115 :
116 : // Set bulk packets quality of service flags on backup.
117 0 : if(incexc)
118 : {
119 0 : logp("Server is overriding the configuration\n");
120 0 : logp("with the following settings:\n");
121 0 : if(log_incexcs_buf(incexc)) goto error;
122 : }
123 0 : if(!get_strlist(confs[OPT_STARTDIR]))
124 : {
125 0 : logp("Found no include paths!\n");
126 0 : goto error;
127 : }
128 :
129 0 : switch(maybe_check_timer(asfd, action, phase1str, confs, &resume))
130 : {
131 : case CLIENT_OK:
132 0 : if(action==ACTION_TIMER_CHECK) goto end;
133 : break;
134 : case CLIENT_SERVER_TIMER_NOT_MET:
135 : goto timer_not_met;
136 : default:
137 : goto error;
138 : }
139 :
140 0 : if(b_script_pre)
141 : {
142 0 : int a=0;
143 : const char *args[12];
144 0 : args[a++]=b_script_pre;
145 0 : if(get_int(confs[OPT_B_SCRIPT_RESERVED_ARGS]))
146 : {
147 0 : args[a++]="pre";
148 0 : args[a++]="reserved2";
149 0 : args[a++]="reserved3";
150 0 : args[a++]="reserved4";
151 0 : args[a++]="reserved5";
152 : }
153 0 : args[a++]=NULL;
154 0 : if(run_script(asfd,
155 : args, get_strlist(confs[OPT_B_SCRIPT_PRE_ARG]),
156 0 : confs, 1, 1, 1))
157 0 : ret=CLIENT_ERROR;
158 :
159 0 : if(get_int(confs[OPT_GLOB_AFTER_SCRIPT_PRE]))
160 : {
161 0 : if(reeval_glob(confs))
162 0 : ret=CLIENT_ERROR;
163 : }
164 : }
165 :
166 0 : if(ret==CLIENT_OK && do_backup_client(asfd,
167 0 : confs, action, resume)) ret=CLIENT_ERROR;
168 :
169 0 : if((ret==CLIENT_OK || get_int(confs[OPT_B_SCRIPT_POST_RUN_ON_FAIL]))
170 0 : && b_script_post)
171 : {
172 0 : int a=0;
173 : const char *args[12];
174 0 : if(get_int(confs[OPT_B_SCRIPT_RESERVED_ARGS]))
175 : {
176 0 : args[a++]=b_script_post;
177 0 : args[a++]="post";
178 : // Tell post script whether the restore failed.
179 0 : args[a++]=ret?"1":"0";
180 0 : args[a++]="reserved3";
181 0 : args[a++]="reserved4";
182 0 : args[a++]="reserved5";
183 : }
184 0 : args[a++]=NULL;
185 0 : if(run_script(asfd,
186 : args, get_strlist(confs[OPT_B_SCRIPT_POST_ARG]),
187 0 : confs, 1, 1, 1))
188 0 : ret=CLIENT_ERROR;
189 : }
190 :
191 0 : if(ret==CLIENT_OK) logp("backup finished ok\n");
192 :
193 : end:
194 0 : return ret;
195 : error:
196 0 : logp("error in backup\n");
197 0 : return CLIENT_ERROR;
198 : timer_not_met:
199 : return CLIENT_SERVER_TIMER_NOT_MET;
200 : }
201 :
202 : static int s_server_session_id_context=1;
203 :
204 0 : static int ssl_setup(int *rfd, SSL **ssl, SSL_CTX **ctx,
205 : enum action action, struct conf **confs)
206 : {
207 0 : BIO *sbio=NULL;
208 0 : ssl_load_globals();
209 0 : if(!(*ctx=ssl_initialise_ctx(confs)))
210 : {
211 0 : logp("error initialising ssl ctx\n");
212 0 : return -1;
213 : }
214 :
215 : SSL_CTX_set_session_id_context(*ctx,
216 : (const uint8_t *)&s_server_session_id_context,
217 0 : sizeof(s_server_session_id_context));
218 :
219 0 : if((*rfd=init_client_socket(get_string(confs[OPT_SERVER]),
220 : action==ACTION_MONITOR?
221 0 : get_string(confs[OPT_STATUS_PORT]):get_string(confs[OPT_PORT])))<0)
222 : return -1;
223 :
224 0 : if(!(*ssl=SSL_new(*ctx))
225 0 : || !(sbio=BIO_new_socket(*rfd, BIO_NOCLOSE)))
226 : {
227 0 : logp_ssl_err("Problem joining SSL to the socket\n");
228 0 : return -1;
229 : }
230 0 : SSL_set_bio(*ssl, sbio, sbio);
231 0 : if(SSL_connect(*ssl)<=0)
232 : {
233 0 : logp_ssl_err("SSL connect error\n");
234 0 : return -1;
235 : }
236 : return 0;
237 : }
238 :
239 0 : static enum cliret initial_comms(struct async *as,
240 : enum action *action, char **incexc, struct conf **confs)
241 : {
242 : struct asfd *asfd;
243 0 : char *server_version=NULL;
244 0 : enum cliret ret=CLIENT_OK;
245 0 : asfd=as->asfd;
246 :
247 0 : if(authorise_client(asfd, &server_version,
248 0 : get_string(confs[OPT_CNAME]),
249 0 : get_string(confs[OPT_PASSWORD]),
250 0 : get_cntr(confs)))
251 : goto error;
252 :
253 0 : if(server_version)
254 : {
255 0 : logp("Server version: %s\n", server_version);
256 : // Servers before 1.3.2 did not tell us their versions.
257 : // 1.3.2 and above can do the automatic CA stuff that
258 : // follows.
259 0 : switch(ca_client_setup(asfd, confs))
260 : {
261 : case 0:
262 : break; // All OK.
263 : case 1:
264 : // Certificate signed successfully.
265 : // Everything is OK, but we will reconnect now,
266 : // in order to use the new keys/certificates.
267 : goto reconnect;
268 : default:
269 0 : logp("Error with cert signing request\n");
270 0 : goto error;
271 : }
272 : }
273 :
274 0 : set_non_blocking(asfd->fd);
275 :
276 0 : if(ssl_check_cert(asfd->ssl, NULL, confs))
277 : {
278 0 : logp("check cert failed\n");
279 0 : goto error;
280 : }
281 :
282 0 : if(extra_comms(as, confs, action, incexc))
283 : {
284 0 : logp("extra comms failed\n");
285 0 : goto error;
286 : }
287 :
288 : ret=CLIENT_OK; goto end;
289 : error:
290 : ret=CLIENT_ERROR; goto end;
291 : reconnect:
292 : ret=CLIENT_RECONNECT; goto end;
293 : end:
294 0 : free_w(&server_version);
295 0 : return ret;
296 : }
297 :
298 0 : static enum cliret restore_wrapper(struct asfd *asfd, enum action action,
299 : int vss_restore, struct conf **confs)
300 : {
301 0 : enum cliret ret=CLIENT_OK;
302 0 : const char *r_script_pre=get_string(confs[OPT_R_SCRIPT_PRE]);
303 0 : const char *r_script_post=get_string(confs[OPT_R_SCRIPT_POST]);
304 :
305 0 : if(r_script_pre)
306 : {
307 0 : int a=0;
308 : const char *args[12];
309 0 : args[a++]=r_script_pre;
310 0 : if(get_int(confs[OPT_R_SCRIPT_RESERVED_ARGS]))
311 : {
312 0 : args[a++]="pre";
313 0 : args[a++]="reserved2";
314 0 : args[a++]="reserved3";
315 0 : args[a++]="reserved4";
316 0 : args[a++]="reserved5";
317 : }
318 0 : args[a++]=NULL;
319 0 : if(run_script(asfd,
320 : args, get_strlist(confs[OPT_R_SCRIPT_PRE_ARG]),
321 0 : confs, 1, 1, 1))
322 0 : ret=CLIENT_ERROR;
323 : }
324 0 : if(ret==CLIENT_OK)
325 : {
326 0 : if(do_restore_client(asfd, confs,
327 0 : action, vss_restore)) ret=CLIENT_ERROR;
328 : }
329 0 : if((ret==CLIENT_OK || get_int(confs[OPT_R_SCRIPT_POST_RUN_ON_FAIL]))
330 0 : && r_script_post)
331 : {
332 0 : int a=0;
333 : const char *args[12];
334 0 : args[a++]=r_script_pre;
335 0 : if(get_int(confs[OPT_R_SCRIPT_RESERVED_ARGS]))
336 : {
337 0 : args[a++]="post";
338 : // Tell post script whether the restore failed.
339 0 : args[a++]=ret?"1":"0";
340 0 : args[a++]="reserved3";
341 0 : args[a++]="reserved4";
342 0 : args[a++]="reserved5";
343 : }
344 0 : args[a++]=NULL;
345 0 : if(run_script(asfd,
346 : args, get_strlist(confs[OPT_R_SCRIPT_POST_ARG]),
347 0 : confs, 1, 1, 1))
348 0 : ret=CLIENT_ERROR;
349 : }
350 :
351 : // Return non-zero if there were warnings,
352 : // so that the test script can easily check.
353 0 : if(ret==CLIENT_OK && get_cntr(confs)->ent[CMD_WARNING]->count)
354 0 : ret=CLIENT_RESTORE_WARNINGS;
355 :
356 0 : return ret;
357 : }
358 :
359 0 : static enum cliret do_client(struct conf **confs,
360 : enum action action, int vss_restore)
361 : {
362 0 : enum cliret ret=CLIENT_OK;
363 0 : int rfd=-1;
364 0 : SSL *ssl=NULL;
365 0 : SSL_CTX *ctx=NULL;
366 0 : struct cntr *cntr=NULL;
367 0 : char *incexc=NULL;
368 0 : enum action act=action;
369 0 : struct async *as=NULL;
370 0 : struct asfd *asfd=NULL;
371 :
372 : // as->settimers(0, 100);
373 :
374 : // logp("begin client\n");
375 : // logp("action %d\n", action);
376 :
377 : // Status monitor forks a child process instead of connecting to
378 : // the server directly.
379 0 : if(action==ACTION_STATUS
380 0 : || action==ACTION_STATUS_SNAPSHOT)
381 : {
382 : #ifdef HAVE_WIN32
383 : logp("Status mode not implemented on Windows.\n");
384 : goto error;
385 : #endif
386 0 : if(status_client_ncurses_init(act)
387 0 : || status_client_ncurses(confs)) ret=CLIENT_ERROR;
388 : goto end;
389 : }
390 :
391 0 : if(!(cntr=cntr_alloc())
392 0 : || cntr_init(cntr, get_string(confs[OPT_CNAME]))) goto error;
393 0 : set_cntr(confs[OPT_CNTR], cntr);
394 :
395 0 : if(act!=ACTION_ESTIMATE
396 0 : && ssl_setup(&rfd, &ssl, &ctx, action, confs))
397 : goto could_not_connect;
398 :
399 0 : if(!(as=async_alloc())
400 0 : || !(asfd=asfd_alloc())
401 0 : || as->init(as, act==ACTION_ESTIMATE)
402 0 : || asfd->init(asfd, "main socket", as, rfd, ssl,
403 0 : ASFD_STREAM_STANDARD, confs))
404 : goto end;
405 0 : as->asfd_add(as, asfd);
406 :
407 : // Set quality of service bits on backup packets.
408 0 : if(act==ACTION_BACKUP
409 0 : || act==ACTION_BACKUP_TIMED
410 0 : || act==ACTION_TIMER_CHECK)
411 0 : as->asfd->set_bulk_packets(as->asfd);
412 :
413 0 : if(act!=ACTION_ESTIMATE)
414 : {
415 0 : if((ret=initial_comms(as, &act, &incexc, confs)))
416 : goto end;
417 : }
418 :
419 0 : rfd=-1;
420 0 : switch(act)
421 : {
422 : case ACTION_BACKUP:
423 : ret=backup_wrapper(asfd, act, "backupphase1",
424 0 : incexc, confs);
425 0 : break;
426 : case ACTION_BACKUP_TIMED:
427 : ret=backup_wrapper(asfd, act, "backupphase1timed",
428 0 : incexc, confs);
429 0 : break;
430 : case ACTION_TIMER_CHECK:
431 : ret=backup_wrapper(asfd, act, "backupphase1timedcheck",
432 0 : incexc, confs);
433 0 : break;
434 : case ACTION_RESTORE:
435 : case ACTION_VERIFY:
436 0 : ret=restore_wrapper(asfd, act, vss_restore, confs);
437 0 : break;
438 : case ACTION_ESTIMATE:
439 0 : if(do_backup_client(asfd, confs, act, 0))
440 : goto error;
441 : break;
442 : case ACTION_DELETE:
443 0 : if(do_delete_client(asfd, confs)) goto error;
444 : break;
445 : case ACTION_MONITOR:
446 0 : if(do_monitor_client(asfd, confs)) goto error;
447 : break;
448 : case ACTION_DIFF:
449 : case ACTION_DIFF_LONG:
450 : /*
451 : if(!strcmp(get_string(confs[OPT_BACKUP2]), "n"))
452 : // Do a phase1 scan and diff that.
453 : ret=backup_wrapper(asfd, act,
454 : "backupphase1diff", incexc, confs);
455 : else
456 : */
457 : // Diff two backups that already exist.
458 : // Fall through, the list code is all we need
459 : // for simple diffs on the client side.
460 : case ACTION_LIST:
461 : case ACTION_LIST_LONG:
462 : default:
463 0 : if(do_list_client(asfd, act, confs)) goto error;
464 : break;
465 : }
466 :
467 0 : if(asfd_flush_asio(asfd))
468 0 : ret=CLIENT_ERROR;
469 :
470 : goto end;
471 : error:
472 : ret=CLIENT_ERROR; goto end;
473 : could_not_connect:
474 : ret=CLIENT_COULD_NOT_CONNECT;
475 : end:
476 0 : close_fd(&rfd);
477 0 : async_free(&as);
478 0 : asfd_free(&asfd);
479 0 : if(ctx) ssl_destroy_ctx(ctx);
480 0 : free_w(&incexc);
481 0 : set_cntr(confs[OPT_CNTR], NULL);
482 0 : cntr_free(&cntr);
483 :
484 : //logp("end client\n");
485 0 : return ret;
486 : }
487 :
488 0 : int client(struct conf **confs, enum action action, int vss_restore)
489 : {
490 0 : enum cliret ret=CLIENT_OK;
491 :
492 0 : if(!get_int(confs[OPT_ENABLED]))
493 : {
494 0 : logp("Client not enabled\n");
495 0 : return ret;
496 : }
497 :
498 : #ifdef HAVE_WIN32
499 : // prevent sleep when idle
500 : SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED);
501 : #endif
502 :
503 0 : switch((ret=do_client(confs, action, vss_restore)))
504 : {
505 : case CLIENT_RECONNECT:
506 0 : logp("Re-opening connection to server\n");
507 0 : sleep(5);
508 0 : ret=do_client(confs, action, vss_restore);
509 : default:
510 : break;
511 : }
512 :
513 : #ifdef HAVE_WIN32
514 : // allow sleep when idle
515 : SetThreadExecutionState(ES_CONTINUOUS);
516 : #endif
517 :
518 : // See enum cliret for return codes.
519 0 : return (int)ret;
520 : }
|