This repository has been archived by the owner on Jul 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
peer.c
1993 lines (1591 loc) · 62.6 KB
/
peer.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
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Function strptime
#define _XOPEN_SOURCE 700
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <arpa/inet.h>
#include <string.h>
#include <dirent.h>
#include <unistd.h>
#include <sys/time.h>
#include <time.h>
#include <sys/timerfd.h>
#define COMMAND_LENGTH 1024
#define BUFFER_SIZE 4096
#define BOOT_LENGTH 4
#define RES_BOOT_LENGTH 4
#define TIMEOUT_INTERVAL 5
#define RES_FLOOD_TIMEOUT 3
#define MAX_NEIGHBORS 2
#define MAX_REQUESTERS 5
// General utility
int my_port;
struct sockaddr_in my_addr;
int connected; // 1 connesso al network, 0 non connesso
int register_closed; // 1 se il registro giornaliero è chiuso 0 se è aperto
// Prima data selezionabile
char *start_date = "1:12:2020";
// Utility comando get
char missing_regs[1024]; // stringa che contiene i registri mancanti per la richiesta get
int received_REPLY_DATA_NULL; // memorizza il numero di reply data NULL ricevute dai neighbor
int waiting_for_RES_FLOOD = 0; // evita che la tastiera accetti altri comandi durante l'attesa dei res_flood
char regs_to_send[MAX_REQUESTERS][4096]; // memorizza i regs da inviare ai requesters
int n_requesters; // numero di requesters per le mie entry
// Memorizzo i parametri del comando get che sto gestendo
char last_get_aggr[11];
char last_get_type[2];
char last_get_period[25];
// Timer per ricevere i RES_FLOOD
int timerfd;
// Utility Neighbors
int n_neighbors = 0;
struct neighbors{
int port; // numero porta neighbor
int sd; // descrittore socket TCP
}n_list[MAX_NEIGHBORS];
struct sockaddr_in neig_addr[MAX_NEIGHBORS];
// Socket che ascolta le richieste di connessione dai peer
int listener;
// Utility Discovery Server
char DS_addr[256];
int DS_port;
int sv_udp_socket; // Socket invio boot message UDP
struct sockaddr_in sv_addr;
// File descriptor table utility
int fdmax;
fd_set master;
fd_set read_fds;
fd_set write_fds;
void prompt()
{
printf("\n> ");
fflush(stdout);
}
void fdt_init() {
FD_ZERO(&master);
FD_ZERO(&read_fds);
FD_ZERO(&write_fds);
FD_SET(0, &master);
fdmax = 0;
}
void create_tcp_notifying_socket(int i) // Creo un socket TCP con il neighbor i
{
int yes = 1;
printf("Invio richiesta di connessione al neighbor %d\n", n_list[i].port);
// Creazione del socket TCP
if((n_list[i].sd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
perror("socket() error");
printf("Chiusura del programma...\n");
exit(-1);
}
//printf("TCP socket: %d.\n", tcp_socket);
// Creazione indirizzo del neighbor
memset(&neig_addr[i], 0, sizeof(neig_addr[i])); // Pulizia
neig_addr[i].sin_family = AF_INET;
neig_addr[i].sin_port = htons(n_list[i].port);
inet_pton(AF_INET, "127.0.0.1", &neig_addr[i].sin_addr);
// Creazione indirizzo di bind
memset(&my_addr, 0, sizeof(my_addr)); // Pulizia
my_addr.sin_family = AF_INET;
my_addr.sin_port = htons(my_port);
my_addr.sin_addr.s_addr = INADDR_ANY;
// Voglio usare la stessa porta sia per il listener delle richieste sia per le connessioni private con i neighbor
if(setsockopt(n_list[i].sd, SOL_SOCKET, SO_REUSEPORT, &yes, sizeof(yes)) == -1) {
perror("setsockopt() error");
exit(-1);
}
if(bind(n_list[i].sd, (struct sockaddr*)&my_addr, sizeof(my_addr)) == -1) {
perror("bind() error");
exit(-1);
}
// Connessione al neighbor
if(connect(n_list[i].sd, (struct sockaddr*)&neig_addr[i], sizeof(neig_addr[i])) == -1) {
perror("connect() error");
exit(-1);
}
printf("I miei neighbor ora sono %d %d\n", n_list[0].port, n_list[1].port);
}
void create_tcp_listening_socket(int *sd)
{
printf("Creo socket di ascolto richieste dai peer\n");
int yes = 1;
// Creazione del socket TCP
if((*sd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
perror("socket() error");
printf("Chiusura del programma...\n");
exit(-1);
}
//printf("TCP socket: %d.\n", tcp_socket);
// Creazione indirizzo di bind
memset(&my_addr, 0, sizeof(my_addr)); // Pulizia
my_addr.sin_family = AF_INET;
my_addr.sin_port = htons(my_port);
my_addr.sin_addr.s_addr = INADDR_ANY;
if(setsockopt(*sd, SOL_SOCKET, SO_REUSEPORT, &yes, sizeof(yes)) == -1) {
perror("setsockopt() error");
exit(-1);
}
// Connessione al server
if(bind(*sd, (struct sockaddr*)&my_addr, sizeof(my_addr)) == -1) {
perror("bind() error");
exit(-1);
}
// Mi metto in ascolto
if(listen(*sd,10) == -1){
perror("Errore listen()");
exit(-1);
}
}
void create_sv_udp_socket() {
// Creazione del socket UDP
if((sv_udp_socket = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
perror("socket() error");
printf("Chiusura del programma...\n");
exit(-1);
}
//printf("UDP socket: %d.\n", udp_socket);
// Creazione indirizzo di bind
memset(&my_addr, 0, sizeof(my_addr));
my_addr.sin_family = AF_INET;
my_addr.sin_port = htons(my_port);
my_addr.sin_addr.s_addr = INADDR_ANY;
if(bind(sv_udp_socket, (struct sockaddr*)&my_addr, sizeof(my_addr)) == -1) {
perror("bind() error");
exit(1);
}
if(sv_udp_socket > fdmax)
fdmax = sv_udp_socket;
FD_SET(sv_udp_socket, &master);
// Creazione indirizzo server
memset(&sv_addr, 0, sizeof(sv_addr));
sv_addr.sin_family = AF_INET;
sv_addr.sin_port = htons(DS_port);
if(inet_pton(AF_INET, DS_addr, &sv_addr.sin_addr) == 0) {
perror("inet_pton() error");
exit(1);
}
}
int find_old_neighbor(int victim_port) // ritorna la posizione dell'array di neigh a cui associare il nuovo neigh
{
if(n_list[0].port == 0 || (n_list[0].port == victim_port && n_neighbors == 2))
return 0;
else
return 1;
}
void next_day_date(char* date)
{
int year, month, day;
char next_date[11];
// Recupero il giorno il mese e l'anno
sscanf(date, "%d:%d:%d", &day, &month, &year);
day++; // tomorrow
int days_per_month = 31;
if (month == 4 || month == 6 || month == 9 || month == 11) {
days_per_month = 30;
} else if (month == 2) {
days_per_month = 28;
if (year % 4 == 0) {
days_per_month = 29;
if (year % 100 == 0) {
days_per_month = 28;
if (year % 400 == 0) {
days_per_month = 29;
}
}
}
}
if (day > days_per_month) {
day = 1;
month++;
if (month > 12) {
month = 1;
year++;
}
}
sprintf(next_date, "%d:%d:%d", day, month, year);
strcpy(date, next_date);
}
int search_aggr_data(char *dato_richiesto, char* dato_aggr) // Cerca nell'archivio il dato richiesto e lo scrive in dato_aggr
{
FILE* ptr;
char dato[1024];
char work_string[256];
char file_dati_aggr_path[256];
char *temp;
sprintf(file_dati_aggr_path, "./data/dati_aggregati_%d.txt", my_port);
if((ptr = fopen(file_dati_aggr_path, "r")) == NULL){
perror("Errore fopen()");
exit(-1);
}
while (fscanf(ptr,"%s", work_string) == 1){
if(strstr(work_string, dato_richiesto) != NULL) {
// Recupero dato
strcpy(dato, work_string);
strtok(dato, "=");
temp = strtok(NULL, "=");
strcpy(dato_aggr, temp);
fclose(ptr);
return 1;
}
}
fclose(ptr);
return 0;
}
void print_aggr(char *aggr, char *period, char *dato_trovato) // Stampa dato aggregato
{
if(!strcmp(aggr, "variazione")){
char from[11], to[11], *entry_val, temp[64], dato_trovato_copy[1024];
strcpy(temp, period);
strcpy(dato_trovato_copy, dato_trovato);
strcpy(from, strtok(temp, "-"));
strcpy(to, strtok(NULL, "-"));
entry_val = strtok(dato_trovato_copy, ",");
while(strcmp(from, to)){
next_day_date(from);
printf("Variazione %s: %s\n", from, entry_val);
entry_val = strtok(NULL, ",");
}
}
else
printf("Totale: %s\n", dato_trovato);
}
void calcola_dato_aggregato(char *aggr, char *type, char *period)
{
FILE *ptr;
char from[11], to[11], *entry_type;
char reg_path[64], archivio_path[64], temp[64], s_entry_value[64], period_copy[64];
int totale = 0, totale_oggi, totale_ieri, first_it = 1, val;
// Contiene il dato aggregato da aggiungere all'archivio
char s_data[1024]="";
// Recupero le date limite del periodo
strcpy(period_copy, period);
strcpy(from, strtok(period_copy, "-"));
strcpy(to, strtok(NULL, "-"));
// Includo "to" nell'intervallo temporale considerato
next_day_date(to);
while(strcmp(from, to)){
totale_oggi = 0;
// Apro il register
sprintf(reg_path, "./data/registers_%d/%s$.txt", my_port, from);
if((ptr = fopen(reg_path, "r")) == NULL){
perror("Errore fopen()");
exit(-1);
}
// Scorro le entry
while(fscanf(ptr, "%s", temp) == 1){
// Recupero il tipo dell'entry
strtok(temp, ",");
entry_type = strtok(NULL, ",");
// L'entry si riferisce all'evento richiesto, aggiorno totale
if(!strcmp(entry_type, type)){
val = atoi(strtok(NULL, ","));
totale_oggi += val;
totale += val;
}
}
// La prima iterazione non stampo
if(first_it && !strcmp(aggr, "variazione")){
first_it = 0;
}
else if(!strcmp(aggr, "variazione")){
printf("Variazione %s: %d\n", from, totale_oggi - totale_ieri);
sprintf(s_entry_value, "%d", totale_oggi - totale_ieri);
strcat(s_data, s_entry_value);
strcat(s_data, ",");
}
totale_ieri = totale_oggi;
// Scorro al register successivo
next_day_date(from);
fclose(ptr);
}
if(!strcmp(aggr, "totale")){
printf("Totale: %d\n", totale);
sprintf(s_data, "%d", totale);
}
// Tolgo l'ultima virgola
else{
s_data[strlen(s_data)-1] = '\0';
}
// Aggiungo dato aggregato all'archivio
sprintf(archivio_path, "./data/dati_aggregati_%d.txt", my_port);
if((ptr = fopen(archivio_path, "a")) == NULL){
perror("Errore fopen()");
exit(-1);
}
printf("Aggiungo il dato aggregato all'archivio\n");
if(fprintf(ptr, "%s%s%s=%s\n", aggr, type, period, s_data) == -1){
perror("Errore fprintf()");
exit(-1);
}
fclose(ptr);
}
void send_REPLY_DATA(int ret, char *dato_aggr, int sd)
{
char buffer[BUFFER_SIZE];
if(ret == 0)
sprintf(buffer, "REPLY_DATA-NULL");
else
sprintf(buffer, "REPLY_DATA-%s", dato_aggr);
if(send(sd, buffer, strlen(buffer), 0) == -1){
perror("Errore send()");
exit(-1);
}
}
void send_FLOOD_FOR_ENTRIES(int sd, int requester_port, char *regs)
{
char buffer[BUFFER_SIZE];
// Preparo richiesta FLOOD con dimensione registri
sprintf(buffer, "FLOOD_FOR_ENTRIES-%d-%s", requester_port, regs);
// printf("Invio %s\n", buffer);
if(send(sd, buffer, strlen(buffer), 0) == -1){
perror("Errore send()");
exit(-1);
}
}
int already_to_serve(char* request) // Controlla se il FLOOD_FOR_ENTRIES è già stato ricevuto
{
int i;
for(i=0; i<n_requesters-1; i++){ //regs_to_send[n_requesters-1] è la richiesta corrente
// Confronto la porta del registro da servire
if(!strncmp(regs_to_send[i], request, 5)){
return 1;
}
}
return 0;
}
char *strremove(char *str, const char *sub) // Rimuove dalla stringa str la sottostringa sub
{
size_t len = strlen(sub);
if (len > 0) {
char *p = str;
while ((p = strstr(p, sub)) != NULL) {
memmove(p, p + len, strlen(p + len) + 1);
}
}
return str;
}
void add_entries(char *entries)
{
char *token, *save_ptr, *save_ptr1;
char data_reg[12], last_data_reg[12];
char reg_path[64], old_reg_path[64];
char entry[64];
FILE *ptr = NULL;
// strtok_r() serve per eseguire più strtok in simultanea
token = strtok_r(entries, "-", &save_ptr);
while(token != NULL){
// Recupero la data dell'entry
strcpy(data_reg, token);
strtok_r(data_reg, ",", &save_ptr1);
sprintf(reg_path, "./data/registers_%d/%s$.txt", my_port, data_reg);
sprintf(old_reg_path, "./data/registers_%d/%s.txt", my_port, data_reg);
// Se l'entry è marchiata
if(token[strlen(token)-1] == '$'){
// Se è la prima del registro
if(strcmp(data_reg, last_data_reg)){
// Il registro marchiato è già presente, se l'ha mandato un peer in precedenza
if((ptr = fopen(reg_path, "r")) != NULL){
// Scorro alla prossima entry, non aggiorno old_data_reg, così ri eseguo questo controllo anche sull'entry successiva
fclose(ptr);
token = strtok_r(NULL, "-", &save_ptr);
continue;
}
printf("Elimino vecchio reg\n");
// Creo/sovrascrivo il vecchio registro non marchiato
if((ptr = fopen(old_reg_path, "w")) == NULL){
perror("Errore fopen()");
exit(-1);
}
// Aggiungo il marchio al registro
rename(old_reg_path, reg_path);
}
else {
// Apro/creo il register corrispondente
if((ptr = fopen(reg_path, "a")) == NULL){
perror("Errore fopen()");
exit(-1);
}
}
}
// L'entry non è marchiata
else{
// Se è già presente il registro marchiato non inserisco la entry
if((ptr = fopen(reg_path, "r")) != NULL){
// Scorro alla prossima entry
fclose(ptr);
token = strtok_r(NULL, "-", &save_ptr);
strcpy(last_data_reg, data_reg);
continue;
}
// Apro/creo il register corrispondente
if((ptr = fopen(old_reg_path, "a")) == NULL){
perror("Errore fopen()");
exit(-1);
}
}
// Preparo la entry
strcpy(entry, token);
// Rimuovo il marchio dalla entry
if(entry[strlen(entry)-1] == '$')
entry[strlen(entry)-1] = '\0';
// Aggiungo la entry al register
printf("Aggiungo entry %s \n", entry);
if(fprintf(ptr, "%s\n", entry) < 0){
perror("Errore fprintf()");
exit(-1);
}
fclose(ptr);
// Scorro alla prossima entry
token = strtok_r(NULL, "-", &save_ptr);
// Aggiorno last_data_reg
strcpy(last_data_reg, data_reg);
}
}
void send_READY_TO_RECEIVE(int donor_port)
{
int donor_sd;
char *buffer = NULL;
char temp[64];
char size[16];
unsigned long entries_size = 0;
struct sockaddr_in dest_addr;
int yes = 1;
printf("Invio richiesta di connessione al donor %d\n", donor_port);
// Creazione del socket TCP
if((donor_sd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
perror("socket() error");
printf("Chiusura del programma...\n");
exit(-1);
}
// Creazione indirizzo del neighbor
memset(&dest_addr, 0, sizeof(dest_addr)); // Pulizia
dest_addr.sin_family = AF_INET;
dest_addr.sin_port = htons(donor_port);
inet_pton(AF_INET, "127.0.0.1", &dest_addr.sin_addr);
// Voglio usare la stessa porta sia per il listener delle richieste sia per le connessioni private con i neighbor
if(setsockopt(donor_sd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) == -1) {
perror("setsockopt() error");
exit(-1);
}
// Connessione al peer
if(connect(donor_sd, (struct sockaddr*)&dest_addr, sizeof(dest_addr)) == -1) {
perror("connect() error");
exit(-1);
}
printf("Connesso al peer donor %d\n", donor_port);
// Invio avviso che sono pronto a ricevere, specificando la mia porta
sprintf(temp, "READY_TO_RECEIVE-%d", my_port);
if(send(donor_sd, temp, strlen(temp), 0) == -1){
perror("Errore send()");
exit(-1);
}
// printf("Inviato %s \n", temp);
// Ricevo la dimensione del buffer
if(recv(donor_sd, size, sizeof(size), 0) == -1){
perror("Errore recv()");
exit(-1);
}
// printf("Ricevuto %s \n", size);
entries_size = atoi(size) + 1;
// Alloco un buffer che possa contenere tutte le entry
buffer = malloc(entries_size);
memset(buffer, 0, entries_size);
// Avviso il donor di inviare le entry
if(send(donor_sd, "ACK", strlen("ACK"), 0) == -1){
perror("Errore send()");
exit(-1);
}
// Attendo le entry
if(recv(donor_sd, buffer, entries_size - 1, 0) == -1){
perror("Errore recv()");
exit(-1);
}
// Aggiungo le entry ai miei registri
add_entries(buffer);
printf("Entry aggiunte\n");
// Chiudo la connessione
close(donor_sd);
}
void add_mark_to_regs(char *period)
{
char from[11], to[11];
char temp[64], old_reg_path[64], new_reg_path[64];
FILE *ptr;
strcpy(temp, period);
strcpy(from, strtok(temp, "-"));
strcpy(to, strtok(NULL, "-"));
// Devo aggiungere il marchio anche al registro di data "to"
next_day_date(to);
while(strcmp(from, to)){
sprintf(old_reg_path, "./data/registers_%d/%s.txt", my_port, from);
sprintf(new_reg_path, "./data/registers_%d/%s$.txt", my_port, from);
// Aggiungo il marchio al registro, se non c'era lo creo
if(rename(old_reg_path, new_reg_path) == -1){
if((ptr = fopen(new_reg_path, "a")) == NULL){
perror("Errore fopen()");
exit(-1);
}
else
fclose(ptr);
}
// Scorro al registro successivo
next_day_date(from);
}
}
long get_dir_size(char *dirname)
{
DIR *dir = opendir(dirname);
if (dir == 0)
return 0;
struct dirent *dit;
struct stat st;
long size = 0;
long total_size = 0;
char filePath[256];
while ((dit = readdir(dir)) != NULL)
{
if ( (strcmp(dit->d_name, ".") == 0) || (strcmp(dit->d_name, "..") == 0) )
continue;
sprintf(filePath, "%s/%s", dirname, dit->d_name);
if (lstat(filePath, &st) != 0)
continue;
size = st.st_size;
// File trovato
if (!S_ISDIR(st.st_mode)){
total_size += size;
// Aggiungo qualche byte in più perchè per ogni entry potrei aggiungere i $
total_size += (size/10);
}
}
return total_size;
}
void send_requested_regs(int requester_port, int sd)
{
// Recupero i registri richiesti dal requester
int i;
char r_port[6];
char *token;
FILE *ptr;
char reg_path[64];
char dir_path[64];
char *entries;
int dir_size;
char size[16];
char temp[64];
pid_t pid;
sprintf(r_port, "%d", requester_port);
// Scorro l'array dei registri da spedire ai requesters fino a che non trovo quello della porta in questione
for(i=0; i<MAX_REQUESTERS; i++){
if(!strncmp(r_port, regs_to_send[i], strlen(r_port))){
printf("Registri da spedire: %s\n", regs_to_send[i]);
break;
}
}
// Ho servito un requester
n_requesters--;
sprintf(dir_path, "./data/registers_%d", my_port);
dir_size = get_dir_size(dir_path);
pid = fork();
if(pid == -1){
perror("Errore fork()");
exit(-1);
}
// Faccio gestire la richiesta al figlio
if(pid == 0){
// Alloco un buffer che contenga sicuramente tutte le entry
entries = malloc(dir_size);
memset(entries, 0, dir_size);
// Scorro i registri da inviare
token = strtok(regs_to_send[i], "-");
token = strtok(NULL, ",");
while(token != NULL){
sprintf(reg_path, "./data/registers_%d/%s.txt", my_port, token);
if((ptr = fopen(reg_path, "r")) == NULL){
perror("Errore: fopen()");
exit(-1);
}
// Scorro tutte le entry del registro e le aggiungo al buffer da inviare
while(EOF != fscanf(ptr, "%s", temp)){
// printf("Entry: %s\n", temp);
strcat(entries, temp);
// Se l'entry appartiene a un registro marchiato, aggiungo il marchio alla entry
if(token[strlen(token)-1] == '$')
strcat(entries, "$");
strcat(entries, "-");
}
// Passo al registro successivo
token = strtok(NULL, ",");
}
// Invio la dimensione delle entry
sprintf(size, "%d", (int)strlen(entries));
if(send(sd, size, strlen(size),0) == -1){
perror("Errore send()");
exit(-1);
}
// Attendo ACK
if(recv(sd, size, 4, 0) == -1){
perror("Errore recv()");
exit(-1);
}
// Invio entries
if(send(sd, entries, strlen(entries), 0) == -1){
perror("Errore send()");
exit(-1);
}
// Pulisco regs_to_send[i]
memset(regs_to_send[i], 0, sizeof(regs_to_send[i]));
free(entries);
exit(0);
}
}
void remove_spaces(char* s)
{
const char* d = s;
do {
while (*d == ' ') {
++d;
}
}
while ((*s++ = *d++));
}
int remove_directory(const char *path) // Rimuove i register del peer
{
DIR *d = opendir(path);
size_t path_len = strlen(path);
int r = -1;
if (d) {
struct dirent *p;
r = 0;
while (!r && (p=readdir(d))) {
int r2 = -1;
char *buf;
size_t len;
// Salta i file "." e ".."
if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
continue;
len = path_len + strlen(p->d_name) + 2;
buf = malloc(len);
if (buf) {
struct stat statbuf;
snprintf(buf, len, "%s/%s", path, p->d_name);
if (!stat(buf, &statbuf)) {
if (S_ISDIR(statbuf.st_mode))
r2 = remove_directory(buf);
else
r2 = unlink(buf);
}
free(buf);
}
r = r2;
}
closedir(d);
}
if (!r)
r = rmdir(path);
return r;
}
void help_command()
{
printf( "Digita un comando:\n\n"
"1) start <DS_addr> <DS_port> --> connette il client al DS specificato\n"
"2) add <type> <quantity> --> aggiorna il registro della data corrente\n"
"3) get <aggr> <type> <period> --> richiede dato aggregato \n"
"4) stop --> disconnette il peer dal network\n");
}
void start_command() // Comando di boot
{
int ret, i;
char folder_path[50];
char file_dati_aggr_path[50];
FILE *ptr;
socklen_t len;
// Per creazione directory
struct stat st = {0};
// Buffer per il recupero dei parametri
char arg1[256];
char arg2[256];
// Transfer buffer
char buffer[BUFFER_SIZE];
// Opcode messaggio start (BOOT = 1)
uint16_t opcode = htons(1);
// Recupero indirizzo del DS
scanf("%s", arg1);
// Recupero porta del DS
scanf("%s", arg2);
// check argomenti mancanti
// Inizializzo variabili globali
memcpy(DS_addr, arg1, sizeof(arg1));
DS_port = atoi(arg2);
// Creo cartella registri
sprintf(folder_path, "./data/registers_%d", my_port);
if (stat(folder_path, &st) == -1) {
printf("Creo nuova cartella %s\n", folder_path);
mkdir(folder_path, 0700);
}
// Creo archivio dati aggregati calcolati
sprintf(file_dati_aggr_path, "./data/dati_aggregati_%d.txt", my_port);
if((ptr = fopen(file_dati_aggr_path, "a")) == NULL){
perror("Errore fopen()");
exit(-1);
}
// Creo socket UDP per comunicare con il server
create_sv_udp_socket();
// Setto il timeout, SO_RCVTIMEO specifica il receiving timeout prima di segnalare un errore
struct timeval tv;
tv.tv_sec = TIMEOUT_INTERVAL;
tv.tv_usec = 0;
setsockopt(sv_udp_socket, SOL_SOCKET, SO_RCVTIMEO, (const char*)&tv, sizeof tv);
// Preparo il buffer
memcpy(buffer, &opcode, 2);
// Invio boot message finchè non ricevo risposta
do{
// Stampa info
printf("Invio richiesta di connessione al network %s:%d\n", DS_addr, DS_port);
ret = sendto(sv_udp_socket, buffer, sizeof(u_int16_t), 0,
(struct sockaddr*)&sv_addr, sizeof(sv_addr));
if(ret < 0)
continue;
// Ricevo i numeri di porta dei due neighbor
ret = recvfrom(sv_udp_socket, buffer, BUFFER_SIZE, 0,
(struct sockaddr*)&sv_addr, &len);
}
while(ret < 0);
printf("Connessione riuscita\n");
connected = 1;
// Inizializzazione lista dei neighbor
sscanf(buffer, "%d %d", &n_list[0].port, &n_list[1].port);
// Conto il numero di neighbors
if(n_list[0].port != 0)
n_neighbors++;
if(n_list[1].port != 0)
n_neighbors++;
// Mostro a video i neighbors
printf("Lista neighbors ricevuta:\n");
for(i=0; i<MAX_NEIGHBORS; i++){
if(!n_list[0].port){
printf("Nessun neighbor disponibile\n");
break;
}
if(n_list[i].port != 0)
printf("%d) Porta: %d\n", i+1, n_list[i].port);
}
// Creo il socket TCP per ricevere richieste dai peer
create_tcp_listening_socket(&listener);
// Aggiungo il nuovo socket al set
FD_SET(listener, &master);
if(listener > fdmax){ fdmax = listener;}
// Creo i socket TCP per comunicare con i neighbor
// Avviso i neighbors, se presenti
for(i=0; i<n_neighbors; i++){
create_tcp_notifying_socket(i); // socket in scrittura
// Invio altro neighbor
sprintf(buffer, "NEIGHBOR_REQUEST-%d", n_list[!i].port);
if(send(n_list[i].sd, buffer, strlen(buffer), 0) == -1){
perror("send() error");
exit(-1);
}
// Aggiungo il nuovo socket al set
FD_SET(n_list[i].sd, &master);
if(n_list[i].sd > fdmax){ fdmax = n_list[i].sd;}
}
}
void add_command() // Aggiunge una entry al registro odierno
{
int ret;
char arg1[256], arg2[256], entry[256];
char quantity[32];
char event[2];
char reg_path[50];
char current_date[256];
FILE* ptr;
time_t rawtime;
struct tm* timeinfo;
scanf("%s", arg1);
scanf("%s", arg2);
// Controlli sul tipo dell'evento
if(strcmp(arg1, "tampone") &&
(strcmp(arg1, "nuovo") || strcmp(arg2, "caso"))){