-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeer.c
2453 lines (1835 loc) · 101 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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#define BUFFER_SIZE 1024
#define COMMAND_SIZE 25
#define POLLING_TIME 3
#define STDIN 0
#define NEIGH_LEN 10 //ACK %d %d\0
#define ACK_LEN 4 //ACK\0
#define REQ_LEN 9 // BOOT_REQ\0 DISC_REQ\0 ...
#define N_LEN 20
#define DATE_LEN 12 // dd:mm:yyyy
//indica se il peer è connesso al server
int connesso = 0;
//buffer da utilizzare per memorizzare la stringa dei comandi da stdin
char buffer[BUFFER_SIZE];
//comandi con relative ed eventuali opzioni
char comando[COMMAND_SIZE], opzione1[COMMAND_SIZE], opzione2[COMMAND_SIZE], opzione3[COMMAND_SIZE], opzione4[COMMAND_SIZE];
//porta del peer
int portaPeer;
//porta del DS
int portaDS;
//neighbors
int neighbor1;
int neighbor2;
//variabile per gestire la chiusura del registro giornaliero
int regChiuso = 0;
//ora corrente
int ora;
//STRUTTURA DATI CHE RAPPRESENTA UNA ENTRY
struct entry{
//DATA NELLA QUALE È STATA AGGIUNTA LA ENTRY
char date[12];
//TIPO DELLA ENTRY: t = nuovo tampone; p = nuovo caso;
char type[4];
//NUMERO DI PORTA IN CUI È STATA REGISTRATA LA ENTRY,
// SERVE PER EVITARE DOPPIONI NEL REG GENERALE
int porta;
//NUMERO DI DATI ASSOCIATI ALLA ENTRY
int quantity;
//PUNTATORE PER REALIZZARE LE LISTE DEI REGISTRI
struct entry* next;
};
//STRUTTURA DATI CHE RAPPRESENTA UN RISULTATO DI UNA AGGREGAZIOONE
struct aggr{
//COMANDO DI AGGREGAZIONE SALVATO
char aggr[45];
//VALORE DEL RISULTATO DELLA AGGREGAZIONE
int valore;
//PUNTATORE PER REALIZZARE UNA LISTA DELLE AGGREGAZIONI SALVATE
struct aggr* next;
};
//REGISTRO IN CUI VENGONO SALVATE TUTTE LE ENTRY GIORNALIERE
struct entry* RegGiornaliero = NULL;
//REGISTRO IN CUI VENGONO SALVATE TUTTE LE ENTRY DEI GIORNI PRECEDENTI
struct entry* RegGenerale = NULL;
//REGISTRO IN CUI VENGONO SALVATE TUTTE LE AGGREGAZIONI RICHIESTE IN PRECEDENZA
struct aggr* RegAggr = NULL;
//STAMPA I COMANDI POSSIBILI
void stampaComandi(){
char* comandi = "\n***************************** PEER COVID STARTED *******************************\n"
"Digita un comando:\n"
"1) start <DS_addr> <DS_port> --> richiede la connessione al network\n"
"2) add <type> <quantity> --> aggiunge l'evento al register odierno \n"
"3) get <aggr> <type> <period> --> richiede l'elaborazione del dato aggregato\n"
"4) stop --> richiesta di disconnessione al network\n\n";
printf("%s", comandi);
}
//RICAVA L'ORA CORRENTE
void getHour(int* hour){
time_t rawtime;
struct tm* info;
time(&rawtime);
info = localtime( &rawtime);
*hour = info->tm_hour;
return;
}
//RICAVA LA DATA ODIERNA
void getDate(char* str){
time_t rawtime;
char dd[3];
char mm[3];
char yyyy[5];
int giorno;
struct tm *info;
time(&rawtime);
info = localtime( &rawtime );
if(info->tm_hour < 18){
giorno = info->tm_mday;
}else{
giorno = info->tm_mday+1;
}
if(info->tm_mon+1 < 10){
sprintf(mm,"0%d",info->tm_mon+1);
}else{
sprintf(mm,"%d",info->tm_mon+1);
}
if(giorno < 10){
sprintf(dd,"0%d",giorno);
}else{
sprintf(dd,"%d",giorno);
}
sprintf(yyyy,"%d",info->tm_year+1900);
sprintf(str,"%s:%s:%s",dd,mm,yyyy);
}
//RESTITUISCE LA DATA ODIERNA
void getDateOdierna(char* str){
time_t rawtime;
char dd[3];
char mm[3];
char yyyy[5];
time(&rawtime);
struct tm *info;
info = localtime( &rawtime );
if(info->tm_mon+1 < 10){
sprintf(mm,"0%d",info->tm_mon+1);
}else{
sprintf(mm,"%d",info->tm_mon);
}
if(info->tm_mday+1 < 10){
sprintf(dd,"0%d",info->tm_mday+1);
}else{
sprintf(dd,"%d",info->tm_mday);
}
sprintf(yyyy,"%d",info->tm_year+1900);
sprintf(str,"%s:%s:%s",dd,mm,yyyy);
}
//INSERISCE UNA NUOVA ENTRY AL REGISTRO GIORNALIERO, VENGONO PASSATI IL TIPO E IL NUMERO DI NUOVI DATI
void inserisciEntry(char* tipo, int num, int porta){
struct entry* new = (struct entry*)malloc(sizeof(struct entry));
new->quantity = num;
new->porta = porta;
strcpy(new->type, tipo);
getDate(new->date);
//printf("%s\n",new->date);
//printf("%s %s %d\n",new->date,new->type,new->quantity);
new->next = RegGiornaliero;
RegGiornaliero = new;
printf("[PEER][LOG] Entry: %s %s %d %d inserita correttamente\n", new->date, new->type, new->quantity, new->porta);
return;
}
//INSERISCE IN REGISTRO GENERALE, VIENE PASSATO UN PUNTATORE ALL'ELEMENTO DA TRASFERIRE, È UTILIZZATA DA chiusuraRegGiornaliero()
void inserisciRegGenerale(struct entry* elemento){
//struct entry* work;
if(RegGenerale == NULL){
elemento->next = NULL;
RegGenerale = elemento;
//printf("Primo elemento della lista inserito!\n");
return;
}
elemento->next = RegGenerale;
RegGenerale = elemento;
return;
}
//CHIUDE IL REGIRSTRO GIORNALIERO E INSERISCE LE SUE ENTRY NEL REGISTRO GENERALE IN FORMA RIASSUNTA
void chiusuraRegGornaliero(){ //DONE
struct entry* s;
//struct entry* work;
struct entry* nuovicasi = (struct entry*)malloc(sizeof(struct entry));
struct entry* tamponi = (struct entry*)malloc(sizeof(struct entry));
//INIZIALIZZO NUOVICASI E TAMPONI ODIERNI
getDateOdierna(nuovicasi->date);
getDateOdierna(tamponi->date);
nuovicasi->quantity = 0;
tamponi->quantity = 0;
nuovicasi->porta = portaPeer;
tamponi->porta = portaPeer;
strcpy(nuovicasi->type,"n");
strcpy(tamponi->type,"t");
s = RegGiornaliero;
while(s != NULL){
if(strcmp(s->type,"n") == 0){
nuovicasi->quantity += s->quantity;
}else if(strcmp(s->type,"t") == 0){
tamponi->quantity += s->quantity;
}
s = s->next;
}
RegGiornaliero = NULL;
inserisciRegGenerale(nuovicasi);
inserisciRegGenerale(tamponi);
return;
}
//STAMPA IL REGISTRO GENEREALE
void stampaRegGen(){ // PER DEBUG DEL REG GENERALE
struct entry* s ;
s = RegGenerale;
if(s == NULL){
printf("Reg generale vuoto\n");
return;
}else{
printf("Reg Generale: \n");
}
while(s != NULL){
printf("%s %s %d %d\n",s->date, s->type, s->quantity, s->porta);
s = s->next;
}
}
//STAMPA IL REGISTRO GIORNALIERO
void stampaRegGiornaliero(){ //PER DEBUG DEL REG GIORNALIERO
struct entry* s ;
s = RegGiornaliero;
if(s == NULL){
printf("Reg giornaliero vuoto\n");
return;
}else{
printf("Reg giornaliero: \n");
}
while(s != NULL){
printf("%s %s %d\n",s->date, s->type, s->quantity);
s = s->next;
}
}
//CONTROLLA SE LA ENTRI CON DATA TIPO E PORTA È PRESENTE NEL REG GENERALE, SE C'È RESTITUISCE 1, ALTRIMENTI 0
int entryTrovata(char* data, char* tipo, int porta){
//Variabile per la scansione
struct entry* s;
s = RegGenerale;
while(s != NULL){
if((strcmp(s->date,data) == 0) && (strcmp(s->type,tipo) == 0) && s->porta == porta){
//printf("Entry trovata!\n");
return s->quantity;
}
s = s->next;
}
return -1;
}
//INSERISCE L'AGGREGAZIONE str CON RISULTATO num NEL REGISTRO DELLE AGGREGAZIONI
void inserisciAggr(char* str, int num){
//Struttura da inserire nella lista
struct aggr* new = (struct aggr*)malloc(sizeof(struct aggr));
new->valore = num;
strcpy(new->aggr,str);
//inserimento in testa
new->next = RegAggr;
RegAggr = new;
}
//STAMPA IL REGISTRO DELLE AGGREGAZIONI
void stampaAggr(){ //PER DEBUG DEL REG AGGR
struct aggr* s;
if(RegAggr == NULL){
printf("vuoto\n");
return;
}
s = RegAggr;
printf("RegAggr:\n");
while(s != NULL){
printf("%s\n",s->aggr);
s = s->next;
}
}
//CERCA NELL REGISTRO DELLE AGGREGAZIONI str, RESTITUISCE 0 SE NON LA TROVA, IL VALORE DEL RISULTATO ALTRIMENTI
int trovaAggr(char* str){
//per scorrere
struct aggr* s;
//Controlla se il reg è vuoto, ridondante con il primo controllo seguente nel while
if(RegAggr == NULL){
return -1;
}
s = RegAggr;
while(s != NULL){
if(strcmp(str,s->aggr) == 0){
//Ritorna il valore della aggregazione
return s->valore;
}
s = s->next;
}
return -1;
}
//Prende in ingresso una data in formato dd:mm:yyyy e la decrementa, sovrascrivendola a data
void decrementaData( char* data){
//Variabili per splittare con strtok
char* token = NULL;
const char delimiter[] = ":";
//variabili d'appoggio per i calcoli
char giorno[3];
char mese[3];
char anno[5];
int g,m,a;
token = strtok(data,delimiter);
strcpy(giorno,token);
token = strtok(NULL, delimiter);
strcpy(mese,token);
token = strtok(NULL, delimiter);
strcpy(anno,token);
g = atoi(giorno);
m = atoi(mese);
a = atoi(anno);
if(g == 1){
if(m == 1 || m == 2 || m == 4 || m == 6 || m == 8 || m == 9 || m == 12 ){
g = 31;
}else if(m == 3){
g = 28;
}else{
g = 30;
}
if(m == 1){
m = 12;
a--;
}else{
m--;
}
}else{
g--;
}
if(m < 10){
sprintf(mese,"0%d",m);
}else{
sprintf(mese,"%d",m);
}
if(g < 10){
sprintf(giorno,"0%d",g);
}else{
sprintf(giorno,"%d",g);
}
sprintf(anno,"%d",a);
sprintf(data,"%s:%s:%s",giorno,mese,anno);
}
//Controllo se la data passata è presente nel Reg Generale, serve per il caso di data1 = *, 1 se lo trova, 0 altrimenti
int dataTrovata(char* data){
//Variabile per scorrere il registro generale
struct entry* s = RegGenerale;
while(s != NULL){
if(strcmp(s->date,data) == 0)
return 1;
s = s->next;
}
return 0;
}
//Prende in ingresso aggr type data1 data2 e calcola l'aggr richiesto, restituisce -1 se le date non sono consistenti
int calcoloTotale(char* operazione, char* tipo){
//Variabili d'appoggio per aggr tipo ed eventuale tipo2 in caso di tipo = n (nuovo caso)
char aggr[11]; //totale o variazione
char tipo1[8]; //tampone o nuovo
char tipo2[5]; //caso
//Data più remota
char data1[12];
//Data più recente
char data2[12];
//Risultato dell'operazione, se rimane a -1 significa che
int risultato = -1;
//Estraggo le informazioni per l'operazione
//printf("controllo tipo\n");
if(strcmp(tipo,"t") == 0){
sscanf(operazione,"%s %s %s %s",aggr, tipo1, data1, data2);
}else{
sscanf(operazione,"%s %s %s %s %s",aggr, tipo1, tipo2, data1, data2);
}
if(strcmp(data2,"*") == 0){
getDate(data2);
decrementaData(data2);
//printf("%s\n",data2);
}
while( strcmp(data1,data2) != 0 && dataTrovata(data2) == 1){
//printf("dentro while\n");
struct entry* s;
if( RegGenerale == NULL)
return -1;
s = RegGenerale;
while (s != NULL){
//printf("controllo date\n");
if(strcmp(s->date,data2) == 0 && strcmp(tipo, s->type) == 0){
if(risultato == -1){
//printf("aggiorno res\n");
risultato = s->quantity;
}else{
//printf("aggiorno res\n");
risultato += s->quantity;
}
}
s = s->next;
}
//printf("sono fuori\n");
decrementaData(data2);
}
//SONO ARRIVATO ALL'ULTIMO GIORNO
struct entry* s;
if( RegGenerale == NULL)
return -1;
s = RegGenerale;
while (s != NULL){
if(strcmp(s->date,data2) == 0 && strcmp(tipo, s->type) == 0){
if(risultato == -1){
risultato = s->quantity;
}else{
risultato += s->quantity;
}
}
s = s->next;
}
return risultato;
}
//Prende in ingresso due date su un tipo e ne calcola la variazione, data1 è la meno recente, data2 la più recente
int calcoloVariazione(char* data1, char* data2, char* tipo){
//Per scorrere la lista
struct entry* s = RegGenerale;
//totale giornaliero di data1
int valore1 = 0;
//totale giornaliero di data2
int valore2 = 0;
//risultato
int risultato = 0;
while(s != NULL){
if(strcmp(data1,s->date) == 0 && strcmp(tipo,s->type) == 0){
valore1 += s->quantity;
}
s = s->next;
}
s = RegGenerale;
while(s != NULL){
if(strcmp(data2,s->date) == 0 && strcmp(tipo,s->type) == 0){
valore2 += s->quantity;
}
s = s->next;
}
risultato = valore2 - valore1;
return risultato;
}
//Carica il proprio registro generale dal file RegistroEntry.txt
void caricaRegGenerale(){
FILE *fptr;
//Conterrà la data letta da file
char data[12];
//Conterrà il tipo letto da file
char tipo[2];
//conterrà il valore della entry
int quanti;
//porta in cui è stata registrata la entry
int porta;
//Variabile d'appoggio
char e[60];
struct entry* nuova;
if(portaPeer == 5001){
fptr = fopen("5001.txt","r");
}else if( portaPeer == 5002){
fptr = fopen("5002.txt","r");
}else if( portaPeer == 5003){
fptr = fopen("5003.txt","r");
}else if( portaPeer == 5004){
fptr = fopen("5004.txt","r");
}else if( portaPeer == 5005){
fptr = fopen("5005.txt","r");
}else{
return;
}
if(fptr == NULL){
perror("errore");
return;
}
while(fscanf(fptr,"%s %s %d %d", data, tipo, &quanti, &porta) != EOF ){
sprintf(e,"%s %s %d %d",data,tipo,quanti,porta);
nuova = (struct entry*)malloc(sizeof(struct entry));
nuova->porta = porta;
strcpy(nuova->date,data);
strcpy(nuova->type,tipo);
nuova->quantity = quanti;
inserisciRegGenerale(nuova);
}
fclose(fptr);
}
//Salva il proprio registro generale nel file RegistroEntry.txt
void salvaRegGenerale(){
char e[60];
FILE *fptr;
struct entry* s = RegGenerale;
if(portaPeer == 5001){
fptr = fopen("5001.txt","w");
}else if( portaPeer == 5002){
fptr = fopen("5002.txt","w");
}else if( portaPeer == 5003){
fptr = fopen("5003.txt","w");
}else if( portaPeer == 5004){
fptr = fopen("5004.txt","w");
}else if( portaPeer == 5005){
fptr = fopen("5005.txt","w");
}else{
return;
}
if(fptr == NULL){
perror("errore");
return;
}
while(s != NULL){
//printf("inserisco\n");
sprintf(e,"%s %s %d %d\n",s->date, s->type, s->quantity, s->porta );
fprintf(fptr,"%s",e);
s = s->next;
}
fclose(fptr);
}
int main(int argc, char** argv){
//variabili di appoggio
int ret, sd, maxfd, size;
socklen_t len;
socklen_t addrlen;
u_int16_t lmsg;
struct sockaddr_in my_addr,srv_addr,connecting_addr;
//set di fd da monitorare
fd_set read_fds;
//variabili di appoggio
char str1[BUFFER_SIZE];
//variabile per far sì che la select non sia bloccante
struct timeval timeout = {0,0};
//variabile per indicare il timeout entro il quale occorre reinviare la BOOT_REQ al server
struct timeval socktv = {10,0};
addrlen = sizeof(connecting_addr);
char msg[BUFFER_SIZE];
//controllo se il è presente il numero di porta
if(argc == 2){
portaPeer = atoi(argv[1]);
printf("[PEER][LOG] Porta peer: %d\n", portaPeer);
}else{
perror("[PEER][ERR] Non è stata inserita la porta\n");
exit(-1);
}
caricaRegGenerale();
//stampaRegGen();
//Creazione socket UDP
sd = socket(AF_INET,SOCK_DGRAM, 0);
if(sd < 0){
perror("[PEER][ERR] Errore in fase di creazione del socket: \n" );
exit(-1);
}else{
printf("[PEER][LOG] Socket %d creato correttamente\n",sd);
}
if (setsockopt(sd, SOL_SOCKET, SO_RCVTIMEO,&socktv,sizeof(socktv))<0)
perror("Errore");
//Creazione indirizzo
memset(&my_addr, 0, sizeof(my_addr));
my_addr.sin_family = AF_INET ;
my_addr.sin_port = htons(portaPeer);
my_addr.sin_addr.s_addr = INADDR_ANY;
ret = bind(sd, (struct sockaddr*)&my_addr, sizeof(my_addr));
if(ret < 0){
perror("[PEER][ERR] Errore in fase di bind: \n" );
exit(-1);
}else{
printf("[PEER][LOG] Bind completata correttamente\n");
}
//pulizia
FD_ZERO(&read_fds);
maxfd = (sd > STDIN)?sd:STDIN;
maxfd++;
//stampa i possibili comandi
stampaComandi();
//imposto il set di lettura
FD_SET(sd, &read_fds);
FD_SET(STDIN, &read_fds);
while(1){
//estraggo i descrittori pronti dal read_fds set
while(select(maxfd, &read_fds, NULL, NULL, &timeout) > 0){
if(FD_ISSET(sd, &read_fds)){
//controlla eventuali messaggi in entrata
//printf("TROVATO sd pronto\n"); //DEBUG
//Leggo la richiesta su sd
do{
ret = recvfrom(sd, (void*)&msg, REQ_LEN, 0, (struct sockaddr*)&connecting_addr, &addrlen);
//printf("ret: %d\n",ret); //DEBUG
//printf("%s\n",msg); //DEBUG
if(ret < 0){
perror("Errore nella ricezione");
sleep(POLLING_TIME);
}
}while(ret < 0);
if(strcmp(msg,"FLOOD_RQ") == 0){
//Conterrà i dati della entry richiesta
char str[45];
//Data della entry richiesta
char data[12];
//Tipo della entry richiesta
char tipo[2];
//Porta del neighbor che ha chiesto il flood
int portaN;
//Porta del Requester;
int portaR;
//Valore da restiture -1 se nessuno ha la entry, altrimenti il valore
int valore = -1;
printf("\n[PEER][LOG] Ricevuta una richiesta di FLOOD_FOR_ENTRIES\n");
//Attendo la lunghezza del messaggio
do
{
ret = recvfrom(sd, (void*)&lmsg,sizeof(uint16_t), 0, (struct sockaddr*)&connecting_addr, &addrlen);
if(ret < 0){
printf("[PEER][ERR] lunghezza non ricevuta!\n");
}
} while (ret < 0);
size = ntohs(lmsg);
//printf("SIZE RICEVUTA %d\n", size); //DEBUG
//attendo il messaggio
do
{
ret = recvfrom(sd, (void*)&str,size, 0, (struct sockaddr*)&connecting_addr, &addrlen);
if(ret < 0){
printf("[PEER][ERR] messaggio di flood non ricevuto!\n");
}
} while (ret < 0);
sscanf(str,"%s %s %d %d",data, tipo, &portaR, &portaN);
printf("[PEER][LOG] Ricevuta richiesta per la entry %s %s %d\n",data,tipo,portaR);
ret = entryTrovata(data,tipo,portaR);
if(ret >= 0){
printf("[PEER][LOG] Entry trovata\n");
sprintf(str,"%d",ret);
len = strlen(str) + 1;
lmsg = htons(len);
//invio la lunghezza del valore
do{
ret = sendto(sd, (void*)&lmsg, sizeof(u_int16_t), 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
sleep(POLLING_TIME);
perror("Errore nella sendto");
}
}while(ret < 0 );
//invio il valore
do{
ret = sendto(sd, (void*)&str, len, 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
sleep(POLLING_TIME);
perror("Errore nella sendto");
}
}while(ret < 0 );
printf("[PEER][LOG] Valore inviato: %s\n" ,str);
printf("[PEER][LOG] FLOOD_FOR_ENTRIES terminata\n");
continue; //******
}
//ELSE?
printf("[PEER][LOG] Entry non trovata inoltro la richiesta di flooding\n");
//Invio richiesta a n1 se fa
if((neighbor1 != 0) && (neighbor1 <= portaPeer) && (neighbor1 != portaN)){
char* cmd = "FLOOD_RQ\0";
printf("[PEER][LOG] Invio richiesta di FLOOD_FOR_ENTRIES al neighbor1 %d\n",neighbor1);
//pulizia
memset(&connecting_addr, 0, sizeof(connecting_addr));
//informazioni sul peer
connecting_addr.sin_family = AF_INET ;
connecting_addr.sin_port = htons(neighbor1);
inet_pton(AF_INET, "127.0.0.1", &connecting_addr.sin_addr);
do
{
ret = sendto(sd, (void*)cmd, REQ_LEN, 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
perror("Errore nell'invio del FLOOD_RQ");
sleep(POLLING_TIME);
}
} while (ret < 0);
//printf("[PEER][LOG] Invio lunghezza \n");
sprintf(str,"%s %s %d %d", data,tipo,portaR,portaPeer);
//determino la lunghezza del messaggio
len = strlen(str)+1;
//printf("%d\n",len);
lmsg = htons(len);
//Invio lunghezza entry
do{
ret = sendto(sd, (void*)&lmsg, sizeof(u_int16_t), 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
sleep(POLLING_TIME);
perror("Errore nella sendto");
}
}while(ret < 0 );
printf("[PEER][LOG] Lunghezza inviata \n");
//Invio messaggio contenente la entry
do{
ret = sendto(sd, (void*)&str, len, 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
sleep(POLLING_TIME);
perror("Errore nella sendto");
}
}while(ret < 0 );
printf("[PEER][LOG] Richiesta %s inviata \n", str);
printf("[PEER][LOG] Lunghezza ricevuta\n");
//Attendo la lunghezza del messaggio
do
{
ret = recvfrom(sd, (void*)&lmsg,sizeof(uint16_t), 0, (struct sockaddr*)&connecting_addr, &addrlen);
if(ret < 0){
printf("[PEER][ERR] lunghezza non ricevuta!\n");
}
} while (ret < 0);
size = ntohs(lmsg);
//printf("SIZE RICEVUTA %d\n", size); //DEBUG
//attendo il messaggio
do
{
ret = recvfrom(sd, (void*)&str,size, 0, (struct sockaddr*)&connecting_addr, &addrlen);
if(ret < 0){
printf("[PEER][ERR] messaggio di flood non ricevuto!\n");
}
} while (ret < 0);
printf("[PEER][LOG] Valore ricevuto: %s\n",str);
sscanf(str,"%d",&valore);
}
sprintf(str,"%s %s %d %d", data,tipo,portaR,portaPeer);
//Invio richiesta a n2 se fa
if((neighbor2 != 0) && (neighbor2 >= portaPeer) && (neighbor2 != portaN)){
char* cmd = "FLOOD_RQ\0";
printf("[PEER][LOG] Invio richiesta di FLOOD_FOR_ENTRIES al neighbor2 %d\n",neighbor2);
//pulizia
memset(&connecting_addr, 0, sizeof(connecting_addr));
//informazioni sul peer
connecting_addr.sin_family = AF_INET ;
connecting_addr.sin_port = htons(neighbor2);
inet_pton(AF_INET, "127.0.0.1", &connecting_addr.sin_addr);
do
{
ret = sendto(sd, (void*)cmd, REQ_LEN, 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
perror("Errore nell'invio del FLOOD_RQ");
sleep(POLLING_TIME);
}
} while (ret < 0);
//printf("[PEER][LOG] Invio lunghezza \n");
sprintf(str,"%s %s %d %d", data,tipo,portaR,portaPeer);
//determino la lunghezza del messaggio
len = strlen(str)+1;
//printf("%d\n",len);
lmsg = htons(len);
//Invio lunghezza entry
do{
ret = sendto(sd, (void*)&lmsg, sizeof(u_int16_t), 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
sleep(POLLING_TIME);
perror("Errore nella sendto");
}
}while(ret < 0 );
printf("[PEER][LOG] Lunghezza inviata \n");
//Invio messaggio contenente la entry
do{
ret = sendto(sd, (void*)&str, len, 0,(struct sockaddr*)&connecting_addr, sizeof(connecting_addr));
if(ret < 0){
sleep(POLLING_TIME);
perror("Errore nella sendto");
}
}while(ret < 0 );
printf("[PEER][LOG] Richiesta %s inviata \n", str);
printf("[PEER][LOG] Lunghezza ricevuta\n");
//Attendo la lunghezza del messaggio
do
{
ret = recvfrom(sd, (void*)&lmsg,sizeof(uint16_t), 0, (struct sockaddr*)&connecting_addr, &addrlen);