-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_transfer.c
850 lines (789 loc) · 29.3 KB
/
server_transfer.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
/*
* UFTP - UDP based FTP with multicast
*
* Copyright (C) 2001-2015 Dennis A. Bush, Jr. [email protected]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Additional permission under GNU GPL version 3 section 7
*
* If you modify this program, or any covered work, by linking or
* combining it with the OpenSSL project's OpenSSL library (or a
* modified version of that library), containing parts covered by the
* terms of the OpenSSL or SSLeay licenses, the copyright holder
* grants you additional permission to convey the resulting work.
* Corresponding Source for a non-source form of such a combination
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#ifdef WINDOWS
#include "win_func.h"
#else // if WINDOWS
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
#include "server.h"
#include "server_common.h"
#include "server_transfer.h"
/**
* Send out DONE_CONF messages specifying all completed clients.
* Returns 1 on success, 0 on fail
*/
int send_doneconf(const struct finfo_t *finfo, int attempt)
{
unsigned char *buf;
struct uftp_h *header;
struct doneconf_h *doneconf;
uint32_t *idlist;
int rval;
if (finfo->file_id != 0) {
return 1;
}
buf = safe_calloc(MAXMTU, 1);
header = (struct uftp_h *)buf;
doneconf = (struct doneconf_h *)(buf + sizeof(struct uftp_h));
set_uftp_header(header, DONE_CONF, finfo->group_id, finfo->group_inst,
grtt, destcount);
doneconf->func = DONE_CONF;
doneconf->hlen = sizeof(struct doneconf_h) / 4;
idlist = (uint32_t *)((uint8_t *)doneconf + (doneconf->hlen * 4));
rval = send_multiple(finfo, buf, DONE_CONF, attempt, idlist, DEST_DONE,
(keytype != KEY_NONE), &receive_dest, 0);
free(buf);
return rval;
}
/**
* Send out DONE messages specifying active clients that haven't yet responded.
* The grtt is being passed in because multiple threads could be touching it.
* Returns 1 on success, 0 on fail
*/
int send_done(const struct finfo_t *finfo, int attempt, int section,
double l_grtt)
{
unsigned char *buf;
struct uftp_h *header;
struct done_h *done;
uint32_t *idlist;
int rval;
buf = safe_calloc(MAXMTU, 1);
header = (struct uftp_h *)buf;
done = (struct done_h *)(buf + sizeof(struct uftp_h));
set_uftp_header(header, DONE, finfo->group_id, finfo->group_inst,
l_grtt, destcount);
done->func = DONE;
done->hlen = sizeof(struct done_h) / 4;
done->file_id = htons(finfo->file_id);
done->section = htons(section);
idlist = (uint32_t *)((uint8_t *)done + (done->hlen * 4));
rval = send_multiple(finfo, buf, DONE, attempt, idlist, DEST_ACTIVE,
(keytype != KEY_NONE), &receive_dest, 0);
free(buf);
return rval;
}
/**
* Creates the body of a CONG_CTRL message
* This is done separate from sending the message so that the receiving thread
* can perform this part. We do this because the receiving thread checks
* timeouts, and because the referenced data structures are now only
* read/written in one thread, so we don't have to lock when we do this part.
*/
void create_cc_list(unsigned char **body, int *len)
{
struct cc_item *list;
int *has_rtt, *no_rtt, has_rtt_len, no_rtt_len, maxlist, count, i;
*body = safe_calloc(blocksize, 1);
has_rtt = safe_calloc(MAXDEST, sizeof(int));
no_rtt = safe_calloc(MAXDEST, sizeof(int));
for (has_rtt_len = 0, no_rtt_len = 0, i = 0; i < destcount; i++) {
if (i == clr) continue;
if (destlist[i].rtt_sent) {
has_rtt[has_rtt_len++] = i;
} else {
no_rtt[no_rtt_len++] = i;
}
}
maxlist = blocksize / sizeof(struct cc_item);
list = (struct cc_item *)*body;
count = 0;
if (clr != -1) {
list[count].dest_id = destlist[clr].id;
list[count].flags =
FLAG_CC_CLR | FLAG_CC_RTT | (slowstart ? FLAG_CC_START : 0);
list[count].rtt = quantize_grtt(destlist[clr].rtt);
destlist[clr].rtt_sent = 1;
count++;
}
for (i = 0; (i < no_rtt_len) && (count < maxlist); i++) {
list[count].dest_id = destlist[no_rtt[i]].id;
list[count].flags = FLAG_CC_RTT | (slowstart ? FLAG_CC_START : 0);
list[count].rtt = quantize_grtt(destlist[no_rtt[i]].rtt);
count++;
destlist[i].rtt_sent = 1;
}
for (i = 0; (i < has_rtt_len) && (count < maxlist); i++) {
list[count].dest_id = destlist[has_rtt[i]].id;
list[count].flags = FLAG_CC_RTT | (slowstart ? FLAG_CC_START : 0);
list[count].rtt = quantize_grtt(destlist[has_rtt[i]].rtt);
count++;
destlist[i].rtt_sent = 1;
}
*len = count * sizeof(struct cc_item);
free(has_rtt);
free(no_rtt);
}
/**
* Send out a CONG_CTRL message
*/
void send_cong_ctrl(const struct finfo_t *finfo, double l_grtt,
uint16_t l_cc_seq, uint32_t l_cc_rate,
unsigned char *body, int len)
{
unsigned char *buf, *bodyptr, *encrypted, *outpacket;
struct uftp_h *header;
struct cong_ctrl_h *cong_ctrl;
struct timeval now;
int payloadlen, enclen;
buf = safe_calloc(MAXMTU, 1);
header = (struct uftp_h *)buf;
cong_ctrl = (struct cong_ctrl_h *)(buf + sizeof(struct uftp_h));
set_uftp_header(header, CONG_CTRL, finfo->group_id, finfo->group_inst,
l_grtt, destcount);
header->seq = htons(send_seq++);
cong_ctrl->func = CONG_CTRL;
cong_ctrl->hlen = sizeof(struct cong_ctrl_h) / 4;
cong_ctrl->cc_seq = htons(l_cc_seq);
cong_ctrl->cc_rate = htons(quantize_rate(l_cc_rate));
gettimeofday(&now, NULL);
cong_ctrl->tstamp_sec = htonl(now.tv_sec);
cong_ctrl->tstamp_usec = htonl(now.tv_usec);
bodyptr = (unsigned char *)cong_ctrl + (cong_ctrl->hlen * 4);
memcpy(bodyptr, body, len);
payloadlen = (cong_ctrl->hlen * 4) + len;
if (keytype != KEY_NONE) {
encrypted = NULL;
if (!encrypt_and_sign(buf, &encrypted, payloadlen, &enclen, keytype,
groupkey, groupsalt, &ivctr, ivlen, hashtype, grouphmackey,
hmaclen, sigtype, keyextype, privkey, privkeylen)) {
glog0(finfo, "Error encrypting CONG_CTRL");
free(buf);
return;
}
outpacket = encrypted;
payloadlen = enclen;
} else {
encrypted = NULL;
outpacket = buf;
}
if (nb_sendto(sock, outpacket, payloadlen + sizeof(struct uftp_h), 0,
(struct sockaddr *)&receive_dest,
family_len(receive_dest)) == SOCKET_ERROR) {
gsockerror(finfo, "Error sending CONG_CTRL");
}
glog4(finfo, "Sent CONG_CTRL, seq %d", l_cc_seq);
free(buf);
free(encrypted);
}
/**
* Handle a EXT_FREESPACE_INFO extension in a COMPLETE
*/
void handle_freespace_info(const struct freespace_info_he *freespace,
int hostidx)
{
destlist[hostidx].freespace = ntohl(freespace->freespace_lo);
destlist[hostidx].freespace |= (int64_t)ntohl(freespace->freespace_hi)<<32;
}
/**
* Process an expected COMPLETE message
*/
void handle_complete(const unsigned char *message, unsigned meslen,
struct finfo_t *finfo, int hostidx)
{
const struct complete_h *complete;
const struct freespace_info_he *freespace;
const uint8_t *he;
const uint32_t *idlist;
int clientcnt, clientidx, dupmsg, isproxy, i;
unsigned extlen;
char status[20];
complete = (const struct complete_h *)message;
idlist = (const uint32_t *)(message + (complete->hlen * 4));
clientcnt = (meslen - (complete->hlen * 4)) / 4;
if ((meslen < (complete->hlen * 4U)) ||
((complete->hlen * 4U) < sizeof(struct complete_h))) {
glog1(finfo, "Rejecting COMPLETE from %s: invalid message size",
destlist[hostidx].name);
return;
}
if (ntohs(complete->file_id) != finfo->file_id) {
if (finfo->file_id == 0) {
return; // Reject silently
}
glog1(finfo, "Rejecting COMPLETE from %s: invalid file ID %04X, "
"expected %04X ", destlist[hostidx].name,
ntohs(complete->file_id), finfo->file_id);
if (clientcnt > 0) {
for (i = 0; i < clientcnt; i++) {
clientidx = find_client(idlist[i]);
if (clientidx == -1) {
glog1(finfo, " For client %08X", ntohl(idlist[i]));
} else {
glog1(finfo, " For client %s", destlist[clientidx].name);
}
}
}
return;
}
freespace = NULL;
if (complete->hlen * 4U > sizeof(struct complete_h)) {
he = (const uint8_t *)complete + sizeof(struct complete_h);
if (*he == EXT_FREESPACE_INFO) {
freespace = (const struct freespace_info_he *)he;
extlen = freespace->extlen * 4U;
if ((extlen > (complete->hlen * 4U) - sizeof(struct complete_h)) ||
extlen < sizeof(struct freespace_info_he)) {
glog1(finfo, "Rejecting COMPLETE from %s: "
"invalid extension size", destlist[hostidx].name);
return;
}
}
}
dupmsg = (destlist[hostidx].status == DEST_DONE);
isproxy = destlist[hostidx].isproxy;
destlist[hostidx].comp_status = complete->status;
switch (complete->status) {
case COMP_STAT_NORMAL:
strncpy(status, "", sizeof(status));
files_sent = 1;
break;
case COMP_STAT_SKIPPED:
strncpy(status, "(skipped)", sizeof(status));
// The remote file is up to date, so we consider it "sent"
files_sent = 1;
break;
case COMP_STAT_OVERWRITE:
strncpy(status, "(overwritten)", sizeof(status));
files_sent = 1;
break;
case COMP_STAT_REJECTED:
strncpy(status, "(rejected)", sizeof(status));
break;
}
glog2(finfo, "Got COMPLETE%s%s from %s %s", status,
(dupmsg && !isproxy) ? "+" : "",
(isproxy) ? "proxy" : "client", destlist[hostidx].name);
if (isproxy) {
for (i = 0; i < clientcnt; i++) {
clientidx = find_client(idlist[i]);
if (clientidx == -1) {
glog1(finfo, "Client %08X via proxy %s not found",
ntohl(idlist[i]), destlist[hostidx].name);
} else {
dupmsg = (destlist[clientidx].status == DEST_DONE);
glog2(finfo, " For client%s %s",
dupmsg ? "+" : "", destlist[clientidx].name);
finfo->deststate[clientidx].conf_sent = 0;
destlist[clientidx].status = DEST_DONE;
destlist[clientidx].comp_status = complete->status;
gettimeofday(&finfo->deststate[clientidx].time, NULL);
}
}
} else {
finfo->deststate[hostidx].conf_sent = 0;
destlist[hostidx].status = DEST_DONE;
gettimeofday(&finfo->deststate[hostidx].time, NULL);
}
if (freespace) {
handle_freespace_info(freespace, hostidx);
}
}
/**
* Handle a EXT_TFMCC_ACK_INFO extension in a STATUS or CC_ACK
* The mux_main mutex should already be locked
*/
void handle_tfmcc_ack_info(const struct finfo_t *finfo,
const struct tfmcc_ack_info_he *tfmcc, int hostidx)
{
struct timeval now, msgtime;
int flag_ss, flag_rtt, rate_1grtt;
unsigned client_rate;
double l_adv_grtt;
gettimeofday(&now, NULL);
msgtime.tv_sec = ntohl(tfmcc->tstamp_sec);
msgtime.tv_usec = ntohl(tfmcc->tstamp_usec);
destlist[hostidx].rtt = diff_usec(now, msgtime) / 1000000.0;
if (destlist[hostidx].rtt < CLIENT_RTT_MIN) {
destlist[hostidx].rtt = CLIENT_RTT_MIN;
}
destlist[hostidx].rtt_measured = 1;
destlist[hostidx].rtt_sent = 0;
glog4(finfo, " rtt = %.6f", destlist[hostidx].rtt);
client_rate = unquantize_rate(ntohs(tfmcc->cc_rate));
flag_ss = ((tfmcc->flags & FLAG_CC_START) != 0);
flag_rtt = ((tfmcc->flags & FLAG_CC_RTT) != 0);
// TODO: should we be checking the advertised GRTT instead of the real GRTT?
if (destlist[hostidx].rtt > grtt) {
grtt = destlist[hostidx].rtt;
}
if (!flag_ss) {
slowstart = 0;
}
if (hostidx == clr) {
glog3(finfo, "Got clr CC response for round %d", ntohs(tfmcc->cc_seq));
rate_1grtt = (int)(datapacketsize / grtt);
if (!flag_ss && !flag_rtt) {
client_rate = (unsigned)((double)client_rate *
(adv_grtt / destlist[hostidx].rtt));
}
if ((client_rate > (unsigned)rate + rate_1grtt) && !slowstart) {
rate += rate_1grtt;
} else {
rate = client_rate;
}
if ((max_rate > 0) && (rate > max_rate)) {
rate = max_rate;
slowstart = 0;
}
packet_wait = (int32_t)(1000000.0 * datapacketsize / rate);
last_clr_time = now;
} else {
glog3(finfo, "Got CC response for round %d", ntohs(tfmcc->cc_seq));
if (client_rate < cc_rate) {
cc_rate = (int)(client_rate * 0.9);
}
if (!flag_ss && !flag_rtt) {
client_rate = (unsigned)((double)client_rate *
(adv_grtt / destlist[hostidx].rtt));
}
if ((client_rate < (unsigned)rate) || (clr == -1)) {
glog3(finfo, "Selected new clr %s", destlist[hostidx].name);
if (!clr_drop) {
rate = client_rate;
if ((max_rate > 0) && (rate > max_rate)) {
rate = max_rate;
slowstart = 0;
}
packet_wait = (int32_t)(1000000.0 * datapacketsize / rate);
rate_change = 1;
} else if (client_rate < (unsigned)rate) {
new_rate = client_rate;
} else {
new_rate = rate;
}
clr = hostidx;
last_clr_time = now;
}
}
l_adv_grtt = (double)datapacketsize / rate;
if (l_adv_grtt < grtt) {
l_adv_grtt = grtt;
}
if (l_adv_grtt > adv_grtt) {
adv_grtt = l_adv_grtt;
}
glog4(finfo, "rate = %d", rate);
}
/**
* Process an expected STATUS message
* Sets *status_postion to the lowest numbered packet NAKed in this message
*/
void handle_status(const unsigned char *message, unsigned meslen,
struct finfo_t *finfo, int hostidx, int *got_naks)
{
const struct status_h *status;
const struct tfmcc_ack_info_he *tfmcc;
const uint8_t *naklist, *he;
unsigned section, current_section, naks, section_offset, blocks_this_sec;
unsigned nakidx, listidx, nak_bytes, i, j;
unsigned extlen;
status = (const struct status_h *)message;
naklist = ((const uint8_t *)status) + (status->hlen * 4);
section = ntohs(status->section);
if ((meslen < (status->hlen * 4U)) ||
((status->hlen * 4U) < sizeof(struct status_h))) {
glog1(finfo, "Rejecting STATUS from %s: invalid message size",
destlist[hostidx].name);
return;
}
if (ntohs(status->file_id) != finfo->file_id) {
glog1(finfo, "Rejecting STATUS from %s: invalid file ID %04X, "
"expected %04X ", destlist[hostidx].name,
ntohs(status->file_id), finfo->file_id );
return;
}
tfmcc = NULL;
if (status->hlen * 4U > sizeof(struct status_h)) {
he = (const uint8_t *)status + sizeof(struct status_h);
if (*he == EXT_TFMCC_ACK_INFO) {
tfmcc = (const struct tfmcc_ack_info_he *)he;
extlen = tfmcc->extlen * 4U;
if ((extlen > (status->hlen * 4U) - sizeof(struct status_h)) ||
extlen < sizeof(struct tfmcc_ack_info_he)) {
glog1(finfo, "Rejecting STATUS from %s: invalid extension size",
destlist[hostidx].name);
return;
}
}
}
if (section >= finfo->big_sections) {
section_offset = (finfo->big_sections * finfo->secsize_big) +
((section - finfo->big_sections) * finfo->secsize_small);
blocks_this_sec = finfo->secsize_small;
} else {
section_offset = section * finfo->secsize_big;
blocks_this_sec = finfo->secsize_big;
}
if (meslen < (status->hlen * 4U) + (blocks_this_sec / 8) + 1) {
glog1(finfo, "Rejecting STATUS from %s: invalid message size",
destlist[hostidx].name);
return;
}
if (mux_lock(mux_main)) {
glog0(finfo, "Failed to lock mutex in handle_status");
return;
}
if ((cc_type == CC_TFMCC) && tfmcc) {
handle_tfmcc_ack_info(finfo, tfmcc, hostidx);
}
if (current_position < finfo->blocks) {
if (current_position >= finfo->big_sections * finfo->secsize_big) {
current_section = ((current_position -
(finfo->big_sections * finfo->secsize_big)) /
finfo->secsize_small) + finfo->big_sections;
} else {
current_section = current_position / finfo->secsize_big;
}
if (section == current_section) {
// Don't accept if it's for the current section
glog3(finfo, "Dropping STATUS for section %d", section);
if (mux_unlock(mux_main)) {
glog0(finfo, "Failed to unlock mutex in handle_status");
}
return;
}
}
// Count the NAKs first to see if there's an excessive amount
nak_bytes = blocks_this_sec / 8;
for (naks = 0, i = 0; i < nak_bytes; i++) {
for (j = 0; j < 8; j++) {
if ((naklist[i] & (1 << j)) != 0) {
naks++;
}
}
}
if ((naks * 100 / blocks_this_sec) > (unsigned)max_nak_pct) {
destlist[hostidx].max_nak_exceed++;
}
if (destlist[hostidx].max_nak_exceed >= max_nak_cnt) {
glog1(finfo, "Got excessive NAKs (%d) "
"for section %d from %s %s, aborting", naks, section,
destlist[hostidx].isproxy ? "proxy" : "client",
destlist[hostidx].name);
destlist[hostidx].status = DEST_ABORT;
send_abort(finfo, "Excessive NAKs received",
&receive_dest, destlist[hostidx].id, (keytype != KEY_NONE), 0);
if (mux_unlock(mux_main)) {
glog0(finfo, "Failed to unlock mutex in handle_status");
}
return;
}
// Now record the NAKs
for (naks = 0, i = 0; i < blocks_this_sec; i++) {
// Each bit represents a NAK; check each one
// Simplified: (naklist[listidx / 8] & (1 << (listidx % 8)))
nakidx = i + section_offset;
listidx = i;
if ((naklist[listidx >> 3] & (1 << (listidx & 7))) != 0) {
glog4(finfo, "Got NAK for %d", nakidx);
finfo->naklist[nakidx] = 1;
*got_naks = 1;
naks++;
}
}
if (mux_unlock(mux_main)) {
glog0(finfo, "Failed to unlock mutex in handle_status");
}
glog2(finfo, "Got %d NAKs for section %d from %s %s", naks, section,
destlist[hostidx].isproxy ? "proxy" : "client",
destlist[hostidx].name);
destlist[hostidx].status = DEST_ACTIVE_NAK;
}
/**
* Process an expected CC_ACK message
*/
void handle_cc_ack(const unsigned char *message, unsigned meslen,
struct finfo_t *finfo, int hostidx)
{
const struct cc_ack_h *cc_ack;
const struct tfmcc_ack_info_he *tfmcc;
const uint8_t *he;
unsigned extlen;
cc_ack = (const struct cc_ack_h *)message;
if ((meslen < (cc_ack->hlen * 4U)) ||
((cc_ack->hlen * 4U) < sizeof(struct cc_ack_h))) {
glog1(finfo, "Rejecting CC_ACK from %s: invalid message size",
destlist[hostidx].name);
return;
}
tfmcc = NULL;
if (cc_ack->hlen * 4U > sizeof(struct cc_ack_h)) {
he = (const uint8_t *)cc_ack + sizeof(struct cc_ack_h);
if (*he == EXT_TFMCC_ACK_INFO) {
tfmcc = (const struct tfmcc_ack_info_he *)he;
extlen = tfmcc->extlen * 4U;
if ((extlen > (cc_ack->hlen * 4U) - sizeof(struct cc_ack_h)) ||
extlen < sizeof(struct tfmcc_ack_info_he)) {
glog1(finfo, "Rejecting CC_ACK from %s: invalid extension size",
destlist[hostidx].name);
return;
}
}
}
glog3(finfo, "Got CC_ACK from %s", destlist[hostidx].name);
if ((cc_type == CC_TFMCC) && tfmcc) {
if (mux_lock(mux_main)) {
glog0(finfo, "Failed to lock mutex in handle_cc_ack");
return;
}
handle_tfmcc_ack_info(finfo, tfmcc, hostidx);
if (mux_unlock(mux_main)) {
glog0(finfo, "Failed to unlock mutex in handle_cc_ack");
return;
}
}
}
/**
* Sends out a data packet. All headers should be populated
*/
int send_data(const struct finfo_t *finfo, unsigned char *packet, int datalen,
unsigned char *encpacket)
{
struct uftp_h *header;
struct fileseg_h *fileseg;
int payloadlen, enclen;
unsigned char *outpacket;
header = (struct uftp_h *)packet;
fileseg = (struct fileseg_h *)(packet + sizeof(struct uftp_h));
header->seq = htons(send_seq++);
payloadlen = (fileseg->hlen * 4) + datalen;
if (keytype != KEY_NONE) {
if (!encrypt_and_sign(packet, &encpacket, payloadlen, &enclen, keytype,
groupkey, groupsalt, &ivctr, ivlen, hashtype, grouphmackey,
hmaclen, sigtype, keyextype, privkey, privkeylen)) {
glog0(finfo, "Error encrypting FILESEG");
return 0;
}
outpacket = encpacket;
payloadlen = enclen;
} else {
outpacket = packet;
}
if (nb_sendto(sock, outpacket, payloadlen + sizeof(struct uftp_h), 0,
(struct sockaddr *)&receive_dest,
family_len(receive_dest)) == SOCKET_ERROR) {
gsockerror(finfo, "Error sending FILESEG");
return 0;
}
return 1;
}
/**
* Print the final statistics for the given file to the status file
*/
void print_status_file(const struct finfo_t *finfo, struct timeval start_time)
{
double elapsed_time, throughput;
int i;
if (finfo->file_id == 0) {
fprintf(status_file, "HSTATS;target;copy;overwrite;"
"skip;totalMB;time;speedKB/s\n");
for (i = 0; i < destcount; i++) {
if (destlist[i].isproxy) {
continue;
}
if (destlist[i].total_time > 0) {
throughput = destlist[i].total_size /
destlist[i].total_time / 1024;
} else {
throughput = 0;
}
fprintf(status_file, "STATS;%s;%d;%d;%d;%sMB;%.3f;%.2fKB/s\n",
destlist[i].name, destlist[i].num_copy,
destlist[i].num_overwrite, destlist[i].num_skip,
printll(destlist[i].total_size / 1048576),
destlist[i].total_time,
throughput);
}
return;
}
for (i = 0; i < destcount; i++) {
if (destlist[i].isproxy) {
continue;
}
fprintf(status_file, "RESULT;%s;%s;%sKB;", destlist[i].name,
finfo->destfname, printll(finfo->size / 1024));
switch (destlist[i].status) {
case DEST_MUTE:
fprintf(status_file, "mute;\n");
break;
case DEST_LOST:
fprintf(status_file, "lost;\n");
break;
case DEST_ABORT:
fprintf(status_file, "aborted;\n");
break;
case DEST_DONE:
if (sync_preview) {
throughput = rate / 8;
elapsed_time = finfo->size / (throughput * 1024);
} else {
elapsed_time = diff_usec(finfo->deststate[i].time,
start_time) / 1000000.0;
if (elapsed_time > 0) {
throughput = finfo->size / elapsed_time / 1024;
} else {
throughput = 0;
}
}
switch (destlist[i].comp_status) {
case COMP_STAT_NORMAL:
fprintf(status_file, "copy;%.2fKB/s\n", throughput);
destlist[i].num_copy++;
destlist[i].total_time += elapsed_time;
destlist[i].total_size += finfo->size;
break;
case COMP_STAT_SKIPPED:
fprintf(status_file, "skipped;\n");
destlist[i].num_skip++;
break;
case COMP_STAT_OVERWRITE:
fprintf(status_file, "overwritten;%.2fKB/s\n", throughput);
destlist[i].num_overwrite++;
destlist[i].total_time += elapsed_time;
destlist[i].total_size += finfo->size;
break;
case COMP_STAT_REJECTED:
fprintf(status_file, "rejected;\n");
break;
default:
fprintf(status_file, "Unknown;\n");
break;
}
if (destlist[i].freespace != -1) {
fprintf(status_file, "FREESPACE;%s;%s\n", finfo->destfname,
printll(destlist[i].freespace));
}
break;
default:
fprintf(status_file, "Unknown;\n");
break;
}
}
}
/**
* Print the final statistics for the given file
*/
void print_status(const struct finfo_t *finfo, struct timeval start_time)
{
struct timeval done_time;
double elapsed_time;
int i;
if (status_file) {
print_status_file(finfo, start_time);
}
if (finfo->file_id == 0) {
glog2(finfo, "Group complete");
return;
}
glog2(finfo, "Transfer status:");
for (done_time = start_time, i = 0; i < destcount; i++) {
if (destlist[i].isproxy) {
continue;
}
cglog2(finfo, "Host: %-15s Status: ", destlist[i].name);
switch (destlist[i].status) {
case DEST_MUTE:
if (log_level >= 2) {
slog2("Mute");
} else {
glog0(finfo, "%-15s Mute", destlist[i].name);
}
break;
case DEST_LOST:
if (log_level >= 2) {
slog2("Lost connection");
} else {
glog0(finfo, "%-15s Lost connection", destlist[i].name);
}
break;
case DEST_ABORT:
if (log_level >= 2) {
slog2("Aborted");
} else {
glog0(finfo, "%-15s Aborted", destlist[i].name);
}
break;
case DEST_DONE:
switch (destlist[i].comp_status) {
case COMP_STAT_NORMAL:
if (diff_usec(finfo->deststate[i].time, done_time) > 0) {
done_time = finfo->deststate[i].time;
}
elapsed_time = diff_usec(finfo->deststate[i].time,
start_time) / 1000000.0;
slog2("Completed time: %7.3f seconds", elapsed_time);
break;
case COMP_STAT_SKIPPED:
slog2("Skipped");
break;
case COMP_STAT_OVERWRITE:
if (diff_usec(finfo->deststate[i].time, done_time) > 0) {
done_time = finfo->deststate[i].time;
}
elapsed_time = diff_usec(finfo->deststate[i].time,
start_time) / 1000000.0;
slog2("Completed(overwritten) time: %7.3f seconds",
elapsed_time);
break;
case COMP_STAT_REJECTED:
slog2("Rejected");
break;
default:
slog2("Unknown completion status: %d", destlist[i].comp_status);
break;
}
if (destlist[i].freespace != -1) {
glog2(finfo, " Free space on host: %s bytes",
printll(destlist[i].freespace));
}
break;
default:
if (log_level >= 2) {
slog2("Unknown code: %d", destlist[i].status);
} else {
glog0(finfo, "%-15s Unknown code %d",
destlist[i].name, destlist[i].status);
}
break;
}
}
elapsed_time = diff_usec(done_time, start_time) / 1000000.0;
glog2(finfo, "Total elapsed time: %.3f seconds", elapsed_time);
glog2(finfo, "Overall throughput: %.2f KB/s",
(elapsed_time != 0) ? (finfo->size / elapsed_time / 1024) : 0);
}