-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_func.c
778 lines (681 loc) · 22.9 KB
/
server_func.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
#include "server_func.h"
/* Inicialização da conexão */
ConnectionStatus *initializeStatus() {
ConnectionStatus *c = (ConnectionStatus*) malloc(sizeof(ConnectionStatus));
// Configura diretório atual
getcwd(c->actual_path, sizeof(c->actual_path));
strcat(c->actual_path, "/");
c->connection_ok = 1;
c->data_session = -1;
c->data_session_port = -1;
c->control_session = -1;
c->type = 'A';
c->modo_passivo = 0;
return c;
};
char *getIPaddress(char *interface) {
// Detectando IP
int fd;
int s;
struct ifreq ifr;
fd = socket(AF_INET, SOCK_DGRAM, 0);
// Determina que o endereço é IPv4
ifr.ifr_addr.sa_family = AF_INET;
// Pega endereço na interface de rede selecionada
strncpy(ifr.ifr_name, interface, IFNAMSIZ-1);
s = ioctl(fd, SIOCGIFADDR, &ifr);
if (s == -1) {
printf("%s%c[1mErro: Interface selecionada não está disponível.%s\n",RED,27,NRM);
return "";
}
close(fd);
return inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr);
}
int createSocketToServe(char *address, int port) {
// Configuração do socket para receber solicitações
struct sockaddr_in self;
bzero(&self, sizeof(self));
self.sin_family = AF_INET;
self.sin_port = htons(port);
self.sin_addr.s_addr = inet_addr(address);
int s = socket(AF_INET, SOCK_STREAM, 0);
int b = bind(s, (struct sockaddr*)&self, sizeof(self));
int l = listen(s, 4);
return (b < 0 || l < 0 || s <0) ? -1 : s;
}
int createConnectionToAccept(int socket) {
// Cria uma conexão como servidor
struct sockaddr_in client;
int addr_len = sizeof(client);
int client_s = accept(socket, (struct sockaddr*)&client, &addr_len);
return client_s;
}
int createConnectionToConnect(int socket, char* address, int port) {
// Conecta com cliente
struct sockaddr_in dest;
bzero(&dest, sizeof(dest));
dest.sin_family = AF_INET;
dest.sin_port = htons(port);
dest.sin_addr.s_addr = inet_addr(address);
int client_s = connect(socket, (struct sockaddr*)&dest, sizeof(dest));
return client_s;
}
/* DECODIFICAÇÃO DO COMANDO */
int decode_message (char *command) {
char aux[STRING_SIZE];
strcpy(aux, command);
char **args = split_words(aux, " ");
strlwr(args[0]);
args[0][4] = 0;
int code;
if (strcmp(args[0],"user") == 0) {
code = 0;
} else if (strcmp(args[0],"pass") == 0) {
code = 1;
} else if (strcmp(args[0],"cdup") == 0) {
code = 2;
} else if (strcmp(args[0],"quit") == 0) {
code = 3;
} else if (strcmp(args[0],"list") == 0) {
code = 4;
} else if (strcmp(args[0],"syst") == 0) {
code = 5;
} else if (strcmp(args[0],"port") == 0) {
code = 6;
} else if (strcmp(args[0],"type") == 0) {
code = 7;
} else if (strcmp(args[0],"pasv") == 0) {
code = 8;
} else if (strcmp(args[0],"retr") == 0) {
code = 9;
} else if (strcmp(args[0],"stor") == 0) {
code = 10;
} else if (strcmp(args[0],"noop") == 0) {
code = 11;
} else {
code = -1000;
}
if (code == -1000) {
args[0][3] = 0;
if (strcmp(args[0],"cwd") == 0) {
code = 20;
} else if (strcmp(args[0],"pwd") == 0) {
code = 21;
} else if (strcmp(args[0],"mkd") == 0) {
code = 22;
} else if (strcmp(args[0],"rmd") == 0) {
code = 23;
}
}
for (int i = 0; i < MAX_ARGUMENTS; i++) {
free(args[i]);
}
return code;
}
void strlwr (char s[]) {
// Tranforma caracteres da string em caixa baixa
int c = 0;
while (s[c] != '\0') {
if (s[c] >= 'A' && s[c] <= 'Z') {
s[c] = s[c] + 32;
}
c++;
}
}
int number_words(char **m) {
// Retorna número de elementos na mensagem já splitada
int i = 0;
for (int j = 0; j < MAX_ARGUMENTS; j++) {
if (m[j][0] != 0) {
i++;
}
}
return i;
}
char **split_words(char *m, char *limit) {
// Separa palavras em vetor
char *ptr = strtok(m, limit);
char **res = (char**) malloc(10*sizeof(char*));
for (int i = 0; i < 10; i++) {
res[i] = (char *) malloc(STRING_SIZE*sizeof(char));
res[i][0] = 0;
}
for (int i = 0; ptr != NULL && i < 10; i++) {
if (ptr[strlen(ptr) - 1] == '\n') {
ptr[strlen(ptr) - 1] = 0;
}
if (ptr[strlen(ptr) - 1] == '\r') {
ptr[strlen(ptr) - 1] = 0;
}
strcpy(res[i], ptr);
ptr = strtok(NULL, limit);
}
return res;
}
int hex_to_dec(char *hex, int n) {
// Converte hexadecimal para decimal
int val;
int decimal = 0;
int pow = 1;
for (int i = n-1; i >= 0; i--) {
if (hex[i] >= '0' && hex[i] <= '9') {
val = hex[i] - 48;
}
if (hex[i] >= 'A' && hex[i] <= 'F') {
val = hex[i] - 55;
}
decimal += val * pow;
pow *= 16;
}
return decimal;
}
char *dec_to_hex(int dec, int n) {
// Converte decimal para hexadecimal
char HEXVALUE[] = {'0', '1', '2', '3', '4', '5', '6','7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
char *hex = (char*) malloc(n*sizeof(char));
for (int i = n-1; i >= 0; i--) {
hex[i] = HEXVALUE[dec % 16];
if (dec > 0) {
dec /= 16;
}
}
return hex;
}
/* CONTROLE DE ACESSO */
char *func_user(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
return_message = "331 User name okay, need password.\n";
return return_message;
}
char *func_pass(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
return_message = "230 User logged in, proceed.\n";
return return_message;
}
char *func_cwd(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
// Recebe mensagem decodificada em espaços, alocada itens do vetor
char **args = split_words(message, " ");
// Verifica a existência do diretório, caso positivo armazena na struct de
// estado
// Utiliza uma variável auxiliar para consulta da existencia do diretório
char consult[STRING_SIZE] = "";
if (args[1][0] == '/') {
// Vai para raiz do servidor
sprintf(args[1], "%s/",args[1]);
strcpy(consult, args[1]);
} else {
// Concatena destino com caminho atual
strcpy(consult, c->actual_path);
sprintf(consult, "%s%s/",consult,args[1]);
//strcat(consult, args[1]);
}
printf("%s%c[1mInfo: %sDiretório selecionado: %s%c[1m%s%s.\n",YEL,27,NRM,BLU,27,consult,NRM);
// Consulta existência do diretório
DIR *dir = opendir(consult);
if (dir != NULL) {
strcpy(c->actual_path, consult);
return_message = "200 Working directory changed.\n";
closedir(dir);
}
else {
return_message = "550 Requested action not taken.\n";
}
// libera variáveis
for (int i = 0; i < 10; i++) {
free(args[i]);
}
return return_message;
}
char *func_cdup(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
// Utiliza uma variável auxiliar para consulta da existencia do diretório
char consult[STRING_SIZE];
strcpy(consult, c->actual_path);
// Concatena ../ nbo final do caminho
strcat(consult, "../");
// Consulta existência do diretório
DIR *dir = opendir(consult);
if (dir != NULL) {
strcpy(c->actual_path, consult);
return_message = "200 Command okay.\n";
closedir(dir);
}
else {
return_message = "550 Requested action not taken.\n";
}
return return_message;
}
char *func_quit(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
c->connection_ok = 0;
return_message = "221 Service closing control connection.\n";
return return_message;
}
// PARÂMETROS DE TRANSFERÊNCIA
char *func_port(ConnectionStatus *c, char *message) {
// Decodificação das strings
char **words = split_words(message, " ");
char **args = split_words(words[1], ",");
char *ini = dec_to_hex(strtol(args[4], NULL, 10), 2);
char *fim = dec_to_hex(strtol(args[5], NULL, 10), 2);
char *concat = (char*) malloc(4*sizeof(char));
concat[0] = ini[0];
concat[1] = ini[1];
concat[2] = fim[0];
concat[3] = fim[1];
int porta = hex_to_dec(concat, 4);
// Configuração do socket
int s;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof(int));
s = socket(AF_INET, SOCK_STREAM, 0);
if (s == -1) {
printf("%s%c[1mErro: Porta não disponível, nova tentativa. Errno: %i%s\n",RED,27,errno,NRM);
return "421 Service not available, closing control connection.\n";
}
// Atualiza status da conexão
c->data_session_port = porta;
c->data_session = s;
c->modo_passivo = 0;
char *address = (char*) malloc(15*sizeof(char));
sprintf(address, "%s.%s.%s.%s", args[0], args[1], args[2], args[3]);
c->client_address = address;
printf("%s%c[1mInfo: %sPorta selecionada pelo %c[1mcliente%c[0m para conexão de dados: %s%c[1m%i%s.\n",YEL,27,NRM,27,27,BLU,27,porta,NRM);
return "200 Command okay.\n";
}
char *func_type(ConnectionStatus *c, char *message) {
// Decodifica mensagem
char **args = split_words(message, " ");
// Somente ASCII implementada na versão mínima
if (strcmp(args[1], "A") == 0) {
c->type = 'A';
return "200 Command okay.\n";
} else {
return "504 Command not implemented for that parameter.\n";
}
}
char *func_pasv(ConnectionStatus *c, char *message) {
// define porta para conexão aleatória
int s = -1;
int porta;
while (s == -1) {
porta = (rand() % 50035) + 15500;
printf("%s%c[1mInfo: %sPorta selecionada pelo %c[1mservidor%c[0m para conexão de dados: %s%c[1m%i%s.\n",YEL,27,NRM,27,27,BLU,27,porta,NRM);
// Configuração do socket
s = createSocketToServe(c->server_address,porta);
if (s == -1) {
printf("%s%c[1mErro: Porta não disponível, nova tentativa. Errno: %i%s\n",RED,27,errno,NRM);
}
}
// Atualiza status da conexão
c->data_session_port = porta;
c->data_session = s;
c->modo_passivo = 1;
// Formata mensagem para decodificação do cliente
char hex[4];
sprintf(hex, "%X", porta);
char ini[3];
char fim[3];
sprintf(ini, "%c%c",hex[0],hex[1]);
sprintf(fim, "%c%c",hex[2],hex[3]);
int a = (int)strtol(ini, NULL, 16);
int b = (int)strtol(fim, NULL, 16);
char *return_message = (char *) malloc(STRING_SIZE*sizeof(char));
char ip[STRING_SIZE];
strcpy(ip,c->server_address);
char **ip_aux = split_words(ip, ".");
sprintf(return_message, "227 Entering Passive Mode (%s,%s,%s,%s,%i,%i).\n",ip_aux[0],ip_aux[1],ip_aux[2],ip_aux[3],a,b);
return return_message;
}
// COMANDOS FTP
// Lista arquivos da pasta especificada(comando LIST)
char *func_list(ConnectionStatus *c,char *message) {
chdir(c->actual_path);
char shell_command[STRING_SIZE];
char **args = split_words(message, " ");
char *path = args[1];
FILE *arquivos;
int w;
char ch;
// cria o sintax do comando dir
// caso o cliente tenha setado uma pasta especifica
// faz com que os erros sejam escritos na menssagem caso ocorra
sprintf(shell_command, "ls -l %s",path);
int client_s;
if (c->modo_passivo == 0) {
// Conecta com cliente
client_s = createConnectionToConnect(c->data_session, c->client_address, c->data_session_port);
} else {
client_s = createConnectionToAccept(c->data_session);
}
if (client_s == -1) {
printf("%s%c[1mErro: %i%s\n",RED,27,errno,NRM);
return "425 Can't open data connection.\n";
}
//chama o comando no sistema e salva em um arquivo
arquivos = popen(shell_command, "r");
// Informa início da transferência
char *mes = "150 File status okay; about to open data connection.\n";
printf("%s%c[1mSend: %s%s", GRN,27,NRM,mes);
write(c->control_session, mes, strlen(mes));
char return_message[STRING_SIZE];
int i = 0;
char buffer[2];
int tam_buffer = 0;
int tam_total = 0;
struct timeval begin, end, begin_total, end_total;
gettimeofday(&begin, NULL);
gettimeofday(&begin_total, NULL);
while (fgets(return_message, sizeof(return_message),arquivos) != NULL) {
return_message[strlen(return_message)-1] = 0;
sprintf(return_message, "%s\r\n",return_message);
i++;
for (int j = 0; j < strlen(return_message); j++){
tam_buffer += 1;
tam_total += 1;
// Envia um byte dos dados
sprintf(buffer, "%c", return_message[j]);
if (c->modo_passivo == 0) {
w = write(c->data_session, buffer, strlen(buffer));
} else {
w = write(client_s, buffer, strlen(buffer));
}
printf("%s",buffer);
// Caso haja erro
if (w == -1) {
printf("%s%c[1mErro: %i%s\n",RED,27,errno,NRM);
if (c->modo_passivo == 0) {
close(c->data_session);
} else {
close(client_s);
}
return "425 Can't open data connection.\n";
}
// Verifica se buffer lotou
if (tam_buffer == c->taxa_transmissao) {
// Pausa enquanto completa um segundo
gettimeofday(&end, NULL);
float tempo_gasto = (float)(end.tv_usec - begin.tv_usec) / 1000000 + (float)(end.tv_sec - begin.tv_sec);
usleep((1-tempo_gasto)*1000000);
// Reinicia timer
tam_buffer = 0;
gettimeofday(&begin, NULL);
}
}
}
gettimeofday(&end_total, NULL);
pclose(arquivos);
if (i == 0) {
sprintf(return_message,"Nao foi possivel acessar '%s': Arquivo ou diretorio inexistente\r\n",path);
if (c->modo_passivo == 0) {
w = write(c->data_session, return_message, strlen(return_message));
} else {
w = write(client_s, return_message, strlen(return_message));
}
}
float tempo_total = (float)(end_total.tv_usec - begin_total.tv_usec) / 1000000 + (float)(end_total.tv_sec - begin_total.tv_sec);
printf("%s%c[1mInfo: %sTamanho do arquivo: %s%c[1m%iB%s.\n",YEL,27,NRM,BLU,27,tam_total,NRM);
printf("%s%c[1mInfo: %sTempo de processamento: %s%c[1m%fs%s.\n",YEL,27,NRM,BLU,27,tempo_total,NRM);
printf("%s%c[1mInfo: %sTaxa de processamento: %s%c[1m%.2fB/s%s.\n",YEL,27,NRM,BLU,27,tam_total/tempo_total,NRM);
// Fecha conexão
if (c->modo_passivo == 0) {
close(c->data_session);
} else {
close(client_s);
}
return "226 Closing data connection.\n";
}
char *func_pwd(ConnectionStatus *c,char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
// Muda diretório raiz para o determinado na struct
chdir(c->actual_path);
// Pega nome real do diretório
getcwd(c->actual_path, sizeof(c->actual_path));
strcat(c->actual_path, "/");
// Formata string de resposta
char aux[STRING_SIZE];
strcpy(aux, "257 \"");
strcat(aux, c->actual_path);
strcat(aux, "\" path name.\n");
return_message = aux;
return return_message;
}
char *func_mkd(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
// Recebe mensagem decodificada em espaços, alocada itens do vetor
char **args = split_words(message, " ");
char shell_command[STRING_SIZE];
if (args[1][0] == '/') {
strcpy(shell_command, args[1]);
} else {
// Concatena destino com caminho atual
strcpy(shell_command, c->actual_path);
strcat(shell_command, args[1]);
}
printf("%s%c[1mInfo: %sDiretório selecionado: %s%c[1m%s%s.\n",YEL,27,NRM,BLU,27,shell_command,NRM);
int err = mkdir(shell_command, 0775);
// Verifica se houve erro
if (err == 0) {
char aux[STRING_SIZE];
strcpy(aux, "257 \"");
strcat(aux, args[1]);
strcat(aux, "\" directory created.\n");
return_message = aux;
} else {
return_message = "550 Requested action not taken.\n";
}
for (int i = 0; i < 10; i++) {
free(args[i]);
}
return return_message;
}
char *func_rmd(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
// Recebe mensagem decodificada em espaços, alocada itens do vetor
char **args = split_words(message, " ");
// Número de palavras dentro da mensagem
char path[STRING_SIZE];
if (args[1][0] == '/') {
strcpy(path, args[1]);
} else {
// Concatena destino com caminho atual
strcpy(path, c->actual_path);
strcat(path, args[1]);
}
printf("%s%c[1mInfo: %sDiretório selecionado: %s%c[1m%s%s.\n",YEL,27,NRM,BLU,27,path,NRM);
// Verifica se houve erro
if (rmdir(path) == 0) {
return_message = "250 Requested file action okay, completed.\n";
} else {
return_message = "550 Requested action not taken.\n";
}
return return_message;
}
char *func_noop(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
return_message = "200 OK.\n";
return return_message;
}
char *func_syst(ConnectionStatus *c, char *message) {
char *return_message = (char*) malloc(STRING_SIZE*sizeof(char));
return_message = "215 UNIX system type.\n";
return return_message;
}
char *func_retr(ConnectionStatus *c, char *message) {
// Recolhe nome do arquivo selecionado
char **args = split_words(message, " ");
printf("%s%c[1mInfo: %sArquivo selecionado: %s%c[1m%s%s.\n",YEL,27,NRM,BLU,27,args[1],NRM);
// Define se é um path ou está no diretório atual
char filename[STRING_SIZE];
if (args[1][0] == '/') {
strcpy(filename, args[1]);
} else {
// Concatena destino com caminho atual
strcpy(filename, c->actual_path);
strcat(filename, args[1]);
}
// Checa se é um arquivo ou um diretório
struct stat buffer;
int err = stat(filename, &buffer);
if (!S_ISDIR(buffer.st_mode) && err != -1) {
// Informando abertura da conexão
char *mes = "150 File status okay; about to open data connection.\n";
printf("%s%c[1mSend: %s%s",GRN,27,NRM,mes);
write(c->control_session, mes, strlen(mes));
// Conecta com cliente
int client_s;
if (c->modo_passivo == 0) {
client_s = createConnectionToConnect(c->data_session, c->client_address, c->data_session_port);
} else {
client_s = createConnectionToAccept(c->data_session);
}
if (client_s == -1) {
printf("%s%c[1mErro: %i%s\n",RED,27,errno,NRM);
mes = "425 Can't open data connection.\n";
printf("%s%c[1mSend: %s%s",GRN,27,NRM,mes);
return mes;
}
// Envia arquivo
FILE *file = fopen(filename,"r");
char line[STRING_SIZE];
char buffer[2];
int tam_buffer = 0;
int tam_total = 0;
struct timeval begin, end, begin_total, end_total;
gettimeofday(&begin, NULL);
gettimeofday(&begin_total, NULL);
while (fgets(line, sizeof(line),file) != NULL) {
line[strlen(line)-1] = 0;
sprintf(line, "%s\r\n",line);
for (int j = 0; j < strlen(line); j++){
tam_buffer += 1;
tam_total += 1;
// Envia um byte dos dados
sprintf(buffer, "%c", line[j]);
if (c->modo_passivo == 0) {
write(c->data_session, buffer, strlen(buffer));
} else {
write(client_s, buffer, strlen(buffer));
}
// Verifica se buffer lotou
if (tam_buffer == c->taxa_transmissao) {
// Pausa enquanto completa um segundo
gettimeofday(&end, NULL);
float tempo_gasto = (float)(end.tv_usec - begin.tv_usec) / 1000000 + (float)(end.tv_sec - begin.tv_sec);
usleep((1-tempo_gasto)*1000000);
// Reinicia timer
tam_buffer = 0;
gettimeofday(&begin, NULL);
}
}
}
gettimeofday(&end_total, NULL);
fclose(file);
float tempo_total = (float)(end_total.tv_usec - begin_total.tv_usec) / 1000000 + (float)(end_total.tv_sec - begin_total.tv_sec);
printf("%s%c[1mInfo: %sTamanho do arquivo: %s%c[1m%iB%s.\n",YEL,27,NRM,BLU,27,tam_total,NRM);
printf("%s%c[1mInfo: %sTempo de processamento: %s%c[1m%fs%s.\n",YEL,27,NRM,BLU,27,tempo_total,NRM);
printf("%s%c[1mInfo: %sTaxa de processamento: %s%c[1m%.2fB/s%s.\n",YEL,27,NRM,BLU,27,tam_total/tempo_total,NRM);
// Fecha conexão
if (c->modo_passivo == 0) {
close(c->data_session);
} else {
close(client_s);
}
return "250 Requested file action okay, completed.\n";
} else {
return "450 Requested file action not taken.\n";
}
}
char *func_stor(ConnectionStatus *c, char *message) {
// Recolhe nome do arquivo selecionado
char **args = split_words(message, " ");
printf("%s%c[1mInfo: %sArquivo selecionado: %s%c[1m%s%s.\n",YEL,27,NRM,BLU,27,args[1],NRM);
// Define se é um path ou está no diretório atual
char filename[STRING_SIZE];
if (args[1][0] == '/') {
strcpy(filename, args[1]);
} else {
// Concatena destino com caminho atual
strcpy(filename, c->actual_path);
strcat(filename, args[1]);
}
/*printf("%s\n",filename);*/
// Checa se é um arquivo ou um diretório
char *mes;
struct stat buffer;
stat(filename, &buffer);
if (!S_ISREG(buffer.st_mode)) {
// Conecta com cliente
int client_s;
if (c->modo_passivo == 0) {
client_s = createConnectionToConnect(c->data_session, c->client_address, c->data_session_port);
} else {
client_s = createConnectionToAccept(c->data_session);
}
if (client_s == -1) {
printf("%s%c[1mErro: %i%s\n",RED,27,errno,NRM);
return "425 Can't open data connection.\n";
}
// Informa início da transferência
mes = "150 File status okay; about to open data connection.\n";
printf("%s%c[1mSend: %s%s",GRN,27,NRM,mes);
write(c->control_session, mes, strlen(mes));
// Recebe mensagens do cliente
FILE *file = fopen(filename, "w");
int tam_buffer = 0;
int tam_total = 0;
struct timeval begin, end, begin_total, end_total;
gettimeofday(&begin, NULL);
gettimeofday(&begin_total, NULL);
while (1) {
char *read_message = (char*)malloc(sizeof(char));
int j;
if (c->modo_passivo == 0) {
j = read(c->data_session, read_message, sizeof(char));
} else {
if (client_s == 0) {
break;
}
j = read(client_s, read_message, sizeof(char));
}
if (j == 0) {
break;
}
fprintf(file, "%s",read_message);
tam_buffer += 1;
tam_total += 1;
// Verifica se buffer lotou
if (tam_buffer >= c->taxa_transmissao) {
// Pausa enquanto completa um segundo
gettimeofday(&end, NULL);
float tempo_gasto = (float)(end.tv_usec - begin.tv_usec) / 1000000 + (float)(end.tv_sec - begin.tv_sec);
usleep((1-tempo_gasto)*1000000);
// Reinicia timer
tam_buffer = tam_buffer - c->taxa_transmissao;
gettimeofday(&begin, NULL);
}
}
gettimeofday(&end_total, NULL);
fclose(file);
// Fecha conexão
mes = "226 Closing data connection.\n";
printf("%s%c[1mSend: %s%s",GRN,27,NRM,mes);
if (c->modo_passivo == 0) {
write(c->data_session, mes, strlen(mes));
} else {
write(client_s, mes, strlen(mes));
}
if (c->modo_passivo == 0) {
close(c->data_session);
} else {
close(client_s);
}
float tempo_total = (float)(end_total.tv_usec - begin_total.tv_usec) / 1000000 + (float)(end_total.tv_sec - begin_total.tv_sec);
printf("%s%c[1mInfo: %sTamanho do arquivo: %s%c[1m%iB%s.\n",YEL,27,NRM,BLU,27,tam_total,NRM);
printf("%s%c[1mInfo: %sTempo de processamento: %s%c[1m%.2fs%s.\n",YEL,27,NRM,BLU,27,tempo_total,NRM);
printf("%s%c[1mInfo: %sTaxa de processamento: %s%c[1m%.2fB/s%s.\n",YEL,27,NRM,BLU,27,tam_total/tempo_total,NRM);
return "250 Requested file action okay, completed.\n";
} else {
return "450 Requested file action not taken.\n";
}
}