Line data Source code
1 : #include "burp.h"
2 : #include "alloc.h"
3 : #include "asfd.h"
4 : #include "async.h"
5 : #include "cmd.h"
6 : #include "cntr.h"
7 : #include "cstat.h"
8 : #include "fsops.h"
9 : #include "handy.h"
10 : #include "log.h"
11 :
12 : #include "server/monitor/json_output.h"
13 :
14 : #include <limits.h>
15 :
16 : #define CNTR_VERSION 3
17 : #define CNTR_PATH_BUF_LEN 256
18 :
19 2425 : static void cntr_ent_free_content(struct cntr_ent *cntr_ent)
20 : {
21 4850 : if(!cntr_ent) return;
22 2425 : free_w(&cntr_ent->field);
23 2425 : free_w(&cntr_ent->label);
24 : }
25 :
26 2425 : static void cntr_ent_free(struct cntr_ent **cntr_ent)
27 : {
28 4850 : if(!cntr_ent || !*cntr_ent) return;
29 2425 : cntr_ent_free_content(*cntr_ent);
30 2425 : free_v((void **)cntr_ent);
31 : }
32 :
33 97 : struct cntr *cntr_alloc(void)
34 : {
35 97 : return (struct cntr *)calloc_w(1, sizeof(struct cntr), __func__);
36 : }
37 :
38 2425 : static int add_cntr_ent(struct cntr *cntr, int flags,
39 : enum cmd cmd, const char *field, const char *label)
40 : {
41 2425 : struct cntr_ent *cenew=NULL;
42 2425 : if(!(cenew=(struct cntr_ent *)
43 2425 : calloc_w(1, sizeof(struct cntr_ent), __func__))
44 2425 : || !(cenew->field=strdup_w(field, __func__))
45 4850 : || !(cenew->label=strdup_w(label, __func__)))
46 : goto error;
47 2425 : cenew->flags=flags;
48 2425 : cenew->cmd=cmd;
49 :
50 2425 : if(cntr->list) cenew->next=cntr->list;
51 2425 : cntr->list=cenew;
52 :
53 2425 : cntr->ent[(uint8_t)cmd]=cenew;
54 2425 : return 0;
55 : error:
56 0 : cntr_ent_free(&cenew);
57 0 : return -1;
58 : }
59 :
60 97 : static size_t calc_max_str_len(struct cntr *cntr, const char *cname)
61 : {
62 97 : size_t slen=0;
63 : char ullmax[64];
64 97 : struct cntr_ent *e=NULL;
65 :
66 : // See cntr_to_str().
67 : // First section - name/version/status
68 97 : slen+=strlen(cname);
69 97 : slen+=16; // More than enough space.
70 :
71 : // Second section.
72 : snprintf(ullmax, sizeof(ullmax),
73 : " %" PRIu64 "\n", (uint64_t)ULLONG_MAX);
74 2522 : for(e=cntr->list; e; e=e->next)
75 : {
76 2425 : if(e->flags & CNTR_SINGLE_FIELD)
77 : // %c%llu\t
78 873 : slen+=strlen(ullmax)+2;
79 : else
80 : // %c%llu/%llu/%llu/%llu/%llu\t
81 1552 : slen+=(strlen(ullmax)*5)+6;
82 : }
83 :
84 : // Fourth section - a path. Cannot know how long this might be. Guess.
85 97 : slen+=CNTR_PATH_BUF_LEN+3; // %c%s\t\n
86 :
87 97 : slen+=1; // Terminating character.
88 :
89 97 : return slen;
90 : }
91 :
92 97 : int cntr_init(struct cntr *cntr, const char *cname)
93 : {
94 97 : if(!cname)
95 : {
96 0 : logp("%s called with no client name\n", __func__);
97 0 : return -1;
98 : }
99 :
100 : // Add in reverse order, so that iterating over from the beginning
101 : // comes out in the right order.
102 97 : if(
103 : add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
104 97 : CMD_TIMESTAMP_END, "time_end", "End time")
105 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
106 97 : CMD_TIMESTAMP, "time_start", "Start time")
107 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
108 97 : CMD_BYTES_SENT, "bytes_sent", "Bytes sent")
109 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
110 97 : CMD_BYTES_RECV, "bytes_received", "Bytes received")
111 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
112 97 : CMD_BYTES, "bytes", "Bytes")
113 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
114 97 : CMD_BYTES_ESTIMATED, "bytes_estimated", "Bytes estimated")
115 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
116 97 : CMD_MESSAGE, "messages", "Messages")
117 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
118 97 : CMD_WARNING, "warnings", "Warnings")
119 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
120 97 : CMD_GRAND_TOTAL, "grand_total", "Grand total")
121 97 : || add_cntr_ent(cntr, 0,
122 97 : CMD_TOTAL, "total", "Total")
123 97 : || add_cntr_ent(cntr, CNTR_SINGLE_FIELD,
124 97 : CMD_ERROR, "errors", "Errors")
125 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
126 97 : CMD_DATA, "blocks", "Blocks")
127 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
128 97 : CMD_EFS_FILE, "efs_files", "EFS files")
129 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
130 97 : CMD_ENC_VSS_T, "vss_footers_encrypted", "VSS footers (enc)")
131 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
132 97 : CMD_VSS_T, "vss_footers", "VSS footers")
133 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
134 97 : CMD_ENC_VSS, "vss_headers_encrypted", "VSS headers (enc)")
135 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
136 97 : CMD_VSS, "vss_headers", "VSS headers")
137 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
138 97 : CMD_SPECIAL, "special_files", "Special files")
139 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
140 97 : CMD_SOFT_LINK, "hard_links", "Soft links")
141 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
142 97 : CMD_HARD_LINK, "soft_links", "Hard links")
143 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
144 97 : CMD_DIRECTORY, "directories", "Directories")
145 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
146 97 : CMD_ENC_METADATA, "meta_data_encrypted", "Meta data (enc)")
147 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
148 97 : CMD_METADATA, "meta_data", "Meta data")
149 97 : || add_cntr_ent(cntr, CNTR_TABULATE,
150 97 : CMD_ENC_FILE, "files_encrypted", "Files (encrypted)")
151 194 : || add_cntr_ent(cntr, CNTR_TABULATE,
152 97 : CMD_FILE, "files", "Files")
153 : )
154 : return -1;
155 :
156 97 : cntr->ent[(uint8_t)CMD_TIMESTAMP]->count=(uint64_t)time(NULL);
157 :
158 97 : cntr->str_max_len=calc_max_str_len(cntr, cname);
159 194 : if(!(cntr->str=(char *)calloc_w(1, cntr->str_max_len, __func__))
160 97 : || !(cntr->cname=strdup_w(cname, __func__)))
161 : return -1;
162 :
163 97 : return 0;
164 : }
165 :
166 97 : static void cntr_free_content(struct cntr *cntr)
167 : {
168 : struct cntr_ent *e;
169 97 : struct cntr_ent *l=NULL;
170 2522 : for(e=cntr->list; e; e=l)
171 : {
172 2425 : l=e->next;
173 2425 : cntr_ent_free(&e);
174 : }
175 97 : cntr->list=NULL;
176 97 : free_w(&cntr->str);
177 97 : free_w(&cntr->cname);
178 97 : }
179 :
180 390 : void cntr_free(struct cntr **cntr)
181 : {
182 780 : if(!cntr || !*cntr) return;
183 97 : cntr_free_content(*cntr);
184 97 : free_v((void **)cntr);
185 : }
186 :
187 2 : const char *bytes_to_human(uint64_t counter)
188 : {
189 : static char ret[32]="";
190 2 : float div=(float)counter;
191 2 : char units[3]="";
192 :
193 2 : if(div<1024) return "";
194 :
195 0 : if((div/=1024)<1024)
196 : snprintf(units, sizeof(units), "KB");
197 0 : else if((div/=1024)<1024)
198 : snprintf(units, sizeof(units), "MB");
199 0 : else if((div/=1024)<1024)
200 : snprintf(units, sizeof(units), "GB");
201 0 : else if((div/=1024)<1024)
202 : snprintf(units, sizeof(units), "TB");
203 0 : else if((div/=1024)<1024)
204 : snprintf(units, sizeof(units), "EB");
205 : else
206 : {
207 0 : div/=1024;
208 : snprintf(units, sizeof(units), "PB");
209 : }
210 0 : snprintf(ret, sizeof(ret), " (%.2f %s)", div, units);
211 0 : return ret;
212 : }
213 :
214 : static void border(void)
215 : {
216 0 : logc("--------------------------------------------------------------------------------\n");
217 : }
218 :
219 0 : static void table_border(enum action act)
220 : {
221 0 : if(act==ACTION_BACKUP
222 0 : || act==ACTION_BACKUP_TIMED)
223 : {
224 0 : logc("%18s ------------------------------------------------------------\n", "");
225 : }
226 0 : if(act==ACTION_RESTORE
227 0 : || act==ACTION_VERIFY)
228 : {
229 0 : logc("%18s ------------------------------\n", "");
230 : }
231 0 : }
232 :
233 : static void incr_count_val(struct cntr *cntr, char ch, uint64_t val)
234 : {
235 8565 : if(!cntr) return;
236 0 : if(cntr->ent[(uint8_t)ch]) cntr->ent[(uint8_t)ch]->count+=val;
237 : }
238 :
239 : static void incr_same_val(struct cntr *cntr, char ch, uint64_t val)
240 : {
241 37878 : if(!cntr) return;
242 0 : if(cntr->ent[(uint8_t)ch]) cntr->ent[(uint8_t)ch]->same+=val;
243 : }
244 :
245 : static void incr_changed_val(struct cntr *cntr, char ch, uint64_t val)
246 : {
247 12 : if(!cntr) return;
248 0 : if(cntr->ent[(uint8_t)ch]) cntr->ent[(uint8_t)ch]->changed+=val;
249 : }
250 :
251 : static void incr_deleted_val(struct cntr *cntr, char ch, uint64_t val)
252 : {
253 0 : if(!cntr) return;
254 0 : if(cntr->ent[(uint8_t)ch]) cntr->ent[(uint8_t)ch]->deleted+=val;
255 : }
256 :
257 : static void incr_phase1_val(struct cntr *cntr, char ch, uint64_t val)
258 : {
259 0 : if(!cntr) return;
260 0 : if(cntr->ent[(uint8_t)ch]) cntr->ent[(uint8_t)ch]->phase1+=val;
261 : }
262 :
263 : static void incr_count(struct cntr *cntr, char ch)
264 : {
265 0 : return incr_count_val(cntr, ch, 1);
266 : }
267 :
268 : static void incr_same(struct cntr *cntr, char ch)
269 : {
270 37878 : return incr_same_val(cntr, ch, 1);
271 : }
272 :
273 : static void incr_changed(struct cntr *cntr, char ch)
274 : {
275 12 : return incr_changed_val(cntr, ch, 1);
276 : }
277 :
278 : static void incr_deleted(struct cntr *cntr, char ch)
279 : {
280 0 : return incr_deleted_val(cntr, ch, 1);
281 : }
282 :
283 : static void incr_phase1(struct cntr *cntr, char ch)
284 : {
285 0 : return incr_phase1_val(cntr, ch, 1);
286 : }
287 :
288 : static void print_end(uint64_t val)
289 : {
290 0 : if(val) logc(" %" PRIu64 "\n", val);
291 : }
292 :
293 42388 : void cntr_add(struct cntr *c, char ch, int print)
294 : {
295 : struct cntr_ent *grand_total_ent;
296 42388 : if(!c) return;
297 0 : if(!(grand_total_ent=c->ent[CMD_GRAND_TOTAL])) return;
298 0 : if(print)
299 : {
300 0 : if(ch!=CMD_MESSAGE && ch!=CMD_WARNING)
301 0 : logc("%c", ch);
302 : }
303 0 : if(ch==CMD_FILE_CHANGED)
304 : {
305 : incr_changed(c, CMD_FILE);
306 : incr_changed(c, CMD_TOTAL);
307 : incr_changed(c, CMD_GRAND_TOTAL);
308 : }
309 : else
310 : {
311 0 : incr_count(c, ch);
312 0 : if(ch==CMD_WARNING || ch==CMD_MESSAGE) return;
313 : incr_count(c, CMD_TOTAL);
314 : }
315 :
316 0 : if(!((++grand_total_ent->count)%64) && print)
317 0 : print_end(grand_total_ent->count);
318 0 : fflush(stdout);
319 : }
320 :
321 0 : void cntr_add_phase1(struct cntr *c, char ch, int print)
322 : {
323 : static struct cntr_ent *total;
324 0 : incr_phase1(c, ch);
325 :
326 0 : total=c->ent[(uint8_t)CMD_GRAND_TOTAL];
327 0 : ++total->phase1;
328 0 : if(!print) return;
329 0 : if(total->phase1==1) logc("\n");
330 0 : logc("%c", ch);
331 0 : if(!((total->phase1)%64))
332 0 : print_end(total->phase1);
333 0 : fflush(stdout);
334 : }
335 :
336 0 : void cntr_add_val(struct cntr *c, char ch, uint64_t val, int print)
337 : {
338 0 : incr_count_val(c, ch, val);
339 0 : }
340 :
341 33720 : void cntr_add_new(struct cntr *c, char ch)
342 : {
343 33720 : cntr_add(c, ch, 0);
344 33720 : }
345 :
346 12626 : void cntr_add_same(struct cntr *c, char ch)
347 : {
348 12626 : incr_same(c, ch);
349 : incr_same(c, CMD_TOTAL);
350 : incr_same(c, CMD_GRAND_TOTAL);
351 12626 : }
352 :
353 0 : void cntr_add_same_val(struct cntr *c, char ch, uint64_t val)
354 : {
355 0 : incr_same_val(c, ch, val);
356 : incr_same_val(c, CMD_TOTAL, val);
357 : incr_same_val(c, CMD_GRAND_TOTAL, val);
358 0 : }
359 :
360 4 : void cntr_add_changed(struct cntr *c, char ch)
361 : {
362 4 : incr_changed(c, ch);
363 : incr_changed(c, CMD_TOTAL);
364 : incr_changed(c, CMD_GRAND_TOTAL);
365 4 : }
366 :
367 0 : void cntr_add_changed_val(struct cntr *c, char ch, uint64_t val)
368 : {
369 0 : incr_changed_val(c, ch, val);
370 : incr_changed_val(c, CMD_TOTAL, val);
371 : incr_changed_val(c, CMD_GRAND_TOTAL, val);
372 0 : }
373 :
374 0 : void cntr_add_deleted(struct cntr *c, char ch)
375 : {
376 0 : incr_deleted(c, ch);
377 : incr_deleted(c, CMD_TOTAL);
378 : incr_deleted(c, CMD_GRAND_TOTAL);
379 0 : }
380 :
381 20 : void cntr_add_bytes(struct cntr *c, uint64_t bytes)
382 : {
383 : incr_count_val(c, CMD_BYTES, bytes);
384 20 : }
385 :
386 15 : void cntr_add_sentbytes(struct cntr *c, uint64_t bytes)
387 : {
388 : incr_count_val(c, CMD_BYTES_SENT, bytes);
389 15 : }
390 :
391 8530 : void cntr_add_recvbytes(struct cntr *c, uint64_t bytes)
392 : {
393 : incr_count_val(c, CMD_BYTES_RECV, bytes);
394 8530 : }
395 :
396 0 : static void quint_print(struct cntr_ent *ent, enum action act)
397 : {
398 : uint64_t a;
399 : uint64_t b;
400 : uint64_t c;
401 : uint64_t d;
402 : uint64_t e;
403 0 : if(!ent) return;
404 0 : a=ent->count;
405 0 : b=ent->changed;
406 0 : c=ent->same;
407 0 : d=ent->deleted;
408 0 : e=ent->phase1;
409 :
410 0 : if(!(ent->flags & CNTR_TABULATE)) return;
411 :
412 0 : if(!e && !a && !b && !c) return;
413 0 : logc("%18s:", ent->label);
414 0 : if(act==ACTION_BACKUP
415 0 : || act==ACTION_BACKUP_TIMED)
416 : {
417 0 : logc("%9" PRIu64 " ", a);
418 0 : logc("%9" PRIu64 " ", b);
419 0 : logc("%9" PRIu64 " ", c);
420 0 : logc("%9" PRIu64 " ", d);
421 : }
422 0 : if(act==ACTION_RESTORE
423 0 : || act==ACTION_VERIFY)
424 : {
425 0 : logc("%9s ", "");
426 : //logc("%9s ", "");
427 : //logc("%9s ", "");
428 : //logc("%9s ", "");
429 : }
430 0 : if(act==ACTION_ESTIMATE)
431 : {
432 0 : logc("%9s ", "");
433 0 : logc("%9s ", "");
434 0 : logc("%9" PRIu64 "\n", e);
435 : }
436 : else
437 : {
438 0 : logc("%9" PRIu64 " |", a+b+c);
439 0 : logc("%9" PRIu64 "\n", e);
440 : }
441 : }
442 :
443 : static uint64_t get_count(struct cntr_ent **ent, enum cmd cmd)
444 : {
445 0 : if(!ent[(uint8_t)cmd]) return 0;
446 0 : return ent[(uint8_t)cmd]->count;
447 : }
448 :
449 0 : static void bottom_part(struct cntr *c, enum action act)
450 : {
451 : uint64_t l;
452 0 : struct cntr_ent **e=c->ent;
453 0 : logc("\n");
454 0 : logc(" Messages: %11" PRIu64 "\n", get_count(e, CMD_MESSAGE));
455 0 : logc(" Warnings: %11" PRIu64 "\n", get_count(e, CMD_WARNING));
456 0 : logc("\n");
457 0 : logc(" Bytes estimated: %11" PRIu64, get_count(e, CMD_BYTES_ESTIMATED));
458 0 : logc("%s\n", bytes_to_human(get_count(e, CMD_BYTES_ESTIMATED)));
459 :
460 0 : if(act==ACTION_ESTIMATE) return;
461 :
462 0 : if(act==ACTION_BACKUP
463 0 : || act==ACTION_BACKUP_TIMED)
464 : {
465 0 : l=get_count(e, CMD_BYTES);
466 0 : logc(" Bytes in backup: %11" PRIu64, l);
467 0 : logc("%s\n", bytes_to_human(l));
468 : }
469 0 : if(act==ACTION_RESTORE)
470 : {
471 0 : l=get_count(e, CMD_BYTES);
472 0 : logc(" Bytes attempted: %11" PRIu64, l);
473 0 : logc("%s\n", bytes_to_human(l));
474 : }
475 0 : if(act==ACTION_VERIFY)
476 : {
477 0 : l=get_count(e, CMD_BYTES);
478 0 : logc(" Bytes checked: %11" PRIu64, l);
479 0 : logc("%s\n", bytes_to_human(l));
480 : }
481 :
482 0 : if(act==ACTION_BACKUP
483 : || act==ACTION_BACKUP_TIMED)
484 : {
485 0 : l=get_count(e, CMD_BYTES_RECV);
486 0 : logc(" Bytes received: %11" PRIu64, l);
487 0 : logc("%s\n", bytes_to_human(l));
488 : }
489 0 : if(act==ACTION_BACKUP
490 : || act==ACTION_BACKUP_TIMED
491 0 : || act==ACTION_RESTORE)
492 : {
493 0 : l=get_count(e, CMD_BYTES_SENT);
494 0 : logc(" Bytes sent: %11" PRIu64, l);
495 0 : logc("%s\n", bytes_to_human(l));
496 : }
497 : }
498 :
499 27 : void cntr_print(struct cntr *cntr, enum action act)
500 : {
501 : struct cntr_ent *e;
502 : time_t now;
503 : time_t start;
504 : char time_start_str[32];
505 : char time_end_str[32];
506 54 : if(!cntr) return;
507 0 : now=time(NULL);
508 0 : start=(time_t)cntr->ent[(uint8_t)CMD_TIMESTAMP]->count;
509 0 : cntr->ent[(uint8_t)CMD_TIMESTAMP_END]->count=(uint64_t)now;
510 :
511 : border();
512 0 : encode_time(start, time_start_str);
513 0 : encode_time(now, time_end_str);
514 0 : logc("Start time: %s\n", time_start_str);
515 0 : logc(" End time: %s\n", time_end_str);
516 0 : logc("Time taken: %s\n", time_taken(now-start));
517 0 : if(act==ACTION_BACKUP
518 0 : || act==ACTION_BACKUP_TIMED)
519 : {
520 : logc("%18s %9s %9s %9s %9s %9s |%9s\n",
521 0 : " ", "New", "Changed", "Duplicate", "Deleted", "Total", "Scanned");
522 : }
523 0 : if(act==ACTION_RESTORE
524 0 : || act==ACTION_VERIFY)
525 : {
526 : logc("%18s %9s %9s |%9s\n",
527 0 : " ", "", "Attempted", "Expected");
528 : }
529 0 : if(act==ACTION_ESTIMATE)
530 : {
531 : logc("%18s %9s %9s %9s\n",
532 0 : " ", "", "", "Scanned");
533 : }
534 0 : table_border(act);
535 :
536 0 : for(e=cntr->list; e; e=e->next)
537 0 : quint_print(e, act);
538 :
539 0 : table_border(act);
540 0 : bottom_part(cntr, act);
541 :
542 : border();
543 : }
544 :
545 : #ifndef HAVE_WIN32
546 :
547 5 : int cntr_stats_to_file(struct cntr *cntr,
548 : const char *directory, enum action act, struct conf **confs)
549 : {
550 5 : int ret=-1;
551 5 : int fd=-1;
552 5 : char *path=NULL;
553 5 : const char *fname=NULL;
554 5 : struct async *as=NULL;
555 5 : struct asfd *wfd=NULL;
556 5 : if(!cntr)
557 : return 0;
558 0 : cntr->ent[(uint8_t)CMD_TIMESTAMP_END]->count
559 0 : =(uint64_t)time(NULL);
560 :
561 0 : if(act==ACTION_BACKUP
562 0 : || act==ACTION_BACKUP_TIMED)
563 : fname="backup_stats";
564 0 : else if(act==ACTION_RESTORE)
565 : fname="restore_stats";
566 0 : else if(act==ACTION_VERIFY)
567 : fname="verify_stats";
568 : else
569 : return 0;
570 :
571 0 : if(!(path=prepend_s(directory, fname)))
572 : goto end;
573 0 : if((fd=open(path, O_WRONLY|O_CREAT, 0666))<0)
574 : {
575 : logp("Could not open %s for writing in %s: %s\n",
576 0 : path, __func__, strerror(errno));
577 0 : goto end;
578 : }
579 :
580 0 : if(!(as=async_alloc())
581 0 : || as->init(as, 0)
582 0 : || !(wfd=setup_asfd_linebuf_write(as, "stats file", &fd)))
583 : goto end;
584 :
585 0 : if(json_cntr(wfd, cntr))
586 : goto end;
587 :
588 0 : ret=0;
589 : end:
590 0 : close_fd(&fd);
591 0 : free_w(&path);
592 0 : async_free(&as);
593 0 : asfd_free(&wfd);
594 0 : return ret;
595 : }
596 :
597 : #endif
598 :
599 22 : void cntr_print_end(struct cntr *cntr)
600 : {
601 : struct cntr_ent *grand_total_ent;
602 44 : if(!cntr) return;
603 0 : grand_total_ent=cntr->ent[CMD_GRAND_TOTAL];
604 0 : if(grand_total_ent)
605 : {
606 0 : print_end(grand_total_ent->count);
607 0 : logc("\n");
608 : }
609 : }
610 :
611 0 : void cntr_print_end_phase1(struct cntr *cntr)
612 : {
613 : struct cntr_ent *grand_total_ent;
614 0 : if(!cntr) return;
615 0 : grand_total_ent=cntr->ent[CMD_GRAND_TOTAL];
616 0 : if(grand_total_ent)
617 : {
618 0 : print_end(grand_total_ent->phase1);
619 0 : logc("\n");
620 : }
621 : }
622 :
623 : #ifndef HAVE_WIN32
624 : // Return string length.
625 0 : size_t cntr_to_str(struct cntr *cntr, const char *path)
626 : {
627 : static char tmp[CNTR_PATH_BUF_LEN+3]="";
628 0 : struct cntr_ent *e=NULL;
629 0 : char *str=cntr->str;
630 :
631 0 : cntr->ent[(uint8_t)CMD_TIMESTAMP_END]->count=time(NULL);
632 :
633 : snprintf(str, cntr->str_max_len-1, "%s\t%d\t%d\t",
634 0 : cntr->cname, CNTR_VERSION, cntr->cntr_status);
635 :
636 0 : for(e=cntr->list; e; e=e->next)
637 : {
638 0 : if(e->flags & CNTR_SINGLE_FIELD)
639 : snprintf(tmp, sizeof(tmp),
640 0 : "%c%" PRIu64"\t", e->cmd, e->count);
641 : else
642 : snprintf(tmp, sizeof(tmp),
643 : "%c%" PRIu64
644 : "/%" PRIu64
645 : "/%" PRIu64
646 : "/%" PRIu64
647 : "/%" PRIu64
648 : "\t",
649 : e->cmd, e->count, e->same,
650 0 : e->changed, e->deleted, e->phase1);
651 : strcat(str, tmp);
652 : }
653 :
654 : // Abuse CMD_DATAPTH.
655 0 : snprintf(tmp, sizeof(tmp), "%c%s\t\n", CMD_DATAPTH, path?path:"");
656 : strcat(str, tmp);
657 :
658 0 : return strlen(str);
659 : }
660 : #endif
661 :
662 0 : static int extract_ul(const char *value, struct cntr_ent *ent)
663 : {
664 0 : char *as=NULL;
665 0 : char *bs=NULL;
666 0 : char *cs=NULL;
667 0 : char *ds=NULL;
668 0 : char *es=NULL;
669 0 : char *copy=NULL;
670 0 : if(!value || !(copy=strdup_w(value, __func__))) return -1;
671 :
672 : // Do not want to use strtok, just in case I end up running more
673 : // than one at a time.
674 0 : as=copy;
675 0 : if((bs=strchr(as, '/')))
676 : {
677 0 : *bs='\0';
678 0 : ent->count=strtoull(as, NULL, 10);
679 0 : if((cs=strchr(++bs, '/')))
680 : {
681 0 : *cs='\0';
682 0 : ent->changed=strtoull(bs, NULL, 10);
683 0 : if((ds=strchr(++cs, '/')))
684 : {
685 0 : *ds='\0';
686 0 : ent->same=strtoull(cs, NULL, 10);
687 0 : if((es=strchr(++ds, '/')))
688 : {
689 0 : ent->deleted=strtoull(ds, NULL, 10);
690 0 : *es='\0';
691 0 : es++;
692 0 : ent->phase1=strtoull(es, NULL, 10);
693 : }
694 : }
695 : }
696 : }
697 : else
698 : {
699 : // Single field.
700 0 : ent->count=strtoull(as, NULL, 10);
701 : }
702 0 : free_w(©);
703 0 : return 0;
704 : }
705 :
706 : /*
707 : static char *get_backup_str(const char *s, int *deletable)
708 : {
709 : static char str[32]="";
710 : const char *cp=NULL;
711 : const char *dp=NULL;
712 : if(!s || !*s) return NULL;
713 : if(!(cp=strchr(s, ' '))
714 : || !(dp=strchr(cp+1, ' ')))
715 : snprintf(str, sizeof(str), "never");
716 : else
717 : {
718 : uint64_t backupnum=0;
719 : backupnum=strtoul(s, NULL, 10);
720 : snprintf(str, sizeof(str),
721 : "%07lu %s", backupnum, getdatestr(atol(dp+1)));
722 : if(*(cp+1)=='1') *deletable=1;
723 : }
724 : return str;
725 : }
726 : */
727 :
728 : /*
729 : static int add_to_backup_list(struct strlist **backups, const char *tok)
730 : {
731 : int deletable=0;
732 : const char *str=NULL;
733 : if(!(str=get_backup_str(tok, &deletable))) return 0;
734 : if(strlist_add(backups, (char *)str, deletable)) return -1;
735 : return 0;
736 : }
737 : */
738 :
739 0 : static int extract_cntrs(struct cstat *cstat, char **path)
740 : {
741 : char *tok;
742 0 : struct cntr *cntr=cstat->cntr;
743 0 : while((tok=strtok(NULL, "\t\n")))
744 : {
745 0 : switch(tok[0])
746 : {
747 : case CMD_DATAPTH:
748 0 : free_w(path);
749 0 : if(!(*path=strdup_w(tok+1, __func__)))
750 : return -1;
751 : break;
752 : default:
753 0 : if(cntr->ent[(uint8_t)tok[0]]
754 0 : && extract_ul(tok+1,
755 0 : cntr->ent[(uint8_t)tok[0]]))
756 : return -1;
757 : break;
758 : }
759 : }
760 : return 0;
761 : }
762 :
763 0 : int str_to_cntr(const char *str, struct cstat *cstat, char **path)
764 : {
765 0 : int ret=-1;
766 0 : char *tok=NULL;
767 0 : char *copy=NULL;
768 :
769 0 : if(!(copy=strdup_w(str, __func__)))
770 : return -1;
771 :
772 0 : if((tok=strtok(copy, "\t\n")))
773 : {
774 0 : char *tmp=NULL;
775 : // First token is the client name. Do not need that here.
776 : // Second is the cntr version.
777 0 : if(!(tmp=strtok(NULL, "\t\n")))
778 : {
779 : logp("Parsing problem in %s: null version\n",
780 0 : __func__);
781 0 : goto end;
782 : }
783 0 : if(atoi(tmp)!=CNTR_VERSION)
784 : {
785 : ret=0;
786 : goto end;
787 : }
788 : // Third is cstat_status.
789 0 : if(!(tmp=strtok(NULL, "\t\n")))
790 : {
791 : logp("Parsing problem in %s: null cstat_status\n",
792 0 : __func__);
793 0 : goto end;
794 : }
795 0 : cstat->cntr->cntr_status=(enum cntr_status)atoi(tmp);
796 :
797 0 : if(extract_cntrs(cstat, path)) goto end;
798 : }
799 :
800 : ret=0;
801 : end:
802 0 : free_w(©);
803 0 : return ret;
804 : }
805 :
806 : #ifndef HAVE_WIN32
807 0 : int cntr_send(struct cntr *cntr)
808 : {
809 : /*
810 : size_t l;
811 : char buf[4096]="";
812 : l=cntr_to_str(get_cntr(confs[OPT_CNTR]), STATUS_RUNNING, " ");
813 : if(async_write_strn(CMD_GEN, buf, l))
814 : {
815 : logp("Error when sending counters to client.\n");
816 : return -1;
817 : }
818 : */
819 0 : return 0;
820 : }
821 : #endif
822 :
823 0 : static enum asl_ret cntr_recv_func(struct asfd *asfd,
824 : struct conf **confs, void *param)
825 : {
826 : /*
827 : if(str_to_cntr(asfd->rbuf->buf, NULL, NULL, NULL, NULL,
828 : conf->p1cntr, get_cntr(confs[OPT_CNTR]), NULL))
829 : return ASL_END_ERROR;
830 : */
831 0 : return ASL_END_OK;
832 : }
833 :
834 0 : int cntr_recv(struct asfd *asfd, struct conf **confs)
835 : {
836 0 : return asfd->simple_loop(asfd, confs, NULL, __func__, cntr_recv_func);
837 : }
838 :
839 0 : const char *cntr_status_to_str(struct cntr *cntr)
840 : {
841 0 : switch(cntr->cntr_status)
842 : {
843 : case CNTR_STATUS_SCANNING: return CNTR_STATUS_STR_SCANNING;
844 : case CNTR_STATUS_BACKUP: return CNTR_STATUS_STR_BACKUP;
845 : case CNTR_STATUS_MERGING: return CNTR_STATUS_STR_MERGING;
846 : case CNTR_STATUS_SHUFFLING: return CNTR_STATUS_STR_SHUFFLING;
847 : case CNTR_STATUS_LISTING: return CNTR_STATUS_STR_LISTING;
848 : case CNTR_STATUS_RESTORING: return CNTR_STATUS_STR_RESTORING;
849 : case CNTR_STATUS_VERIFYING: return CNTR_STATUS_STR_VERIFYING;
850 : case CNTR_STATUS_DELETING: return CNTR_STATUS_STR_DELETING;
851 : case CNTR_STATUS_DIFFING: return CNTR_STATUS_STR_DIFFING;
852 : default: return "unknown";
853 : }
854 : }
855 :
856 0 : enum cntr_status cntr_str_to_status(const char *str)
857 : {
858 0 : if(!strcmp(str, CNTR_STATUS_STR_SCANNING))
859 : return CNTR_STATUS_SCANNING;
860 0 : else if(!strcmp(str, CNTR_STATUS_STR_BACKUP))
861 : return CNTR_STATUS_BACKUP;
862 0 : else if(!strcmp(str, CNTR_STATUS_STR_MERGING))
863 : return CNTR_STATUS_MERGING;
864 0 : else if(!strcmp(str, CNTR_STATUS_STR_SHUFFLING))
865 : return CNTR_STATUS_SHUFFLING;
866 0 : else if(!strcmp(str, CNTR_STATUS_STR_LISTING))
867 : return CNTR_STATUS_LISTING;
868 0 : else if(!strcmp(str, CNTR_STATUS_STR_RESTORING))
869 : return CNTR_STATUS_RESTORING;
870 0 : else if(!strcmp(str, CNTR_STATUS_STR_VERIFYING))
871 : return CNTR_STATUS_VERIFYING;
872 0 : else if(!strcmp(str, CNTR_STATUS_STR_DELETING))
873 : return CNTR_STATUS_DELETING;
874 0 : else if(!strcmp(str, CNTR_STATUS_STR_DIFFING))
875 : return CNTR_STATUS_DIFFING;
876 0 : return CNTR_STATUS_UNSET;
877 : }
|