-
Notifications
You must be signed in to change notification settings - Fork 0
/
cliente_psta.c
315 lines (268 loc) · 10.6 KB
/
cliente_psta.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <unistd.h>
#include <netdb.h>
#include <errno.h>
#include <arpa/inet.h>
#include <time.h>
#include <signal.h>
#define CONECTAR "conectar"
#define RECEBER "receber"
#define ENVIAR "enviar"
#define LISTAR "listar"
#define ENCERRAR "encerrar"
#define PORTA 3315
//#define DEBUG 1
void help();
int setup_dataS(struct sockaddr_in);
int main(void){
char *comando[80],action[100],action1[100],ctsBuf[20],datasBuf[10000],path[100],* fileBuf;
int i=0,ctS, dataS, dataSaccept,isConnected=0,inetaddr, namelen;
struct hostent *hostnm;
ssize_t size,ret;
struct sockaddr_in server,euMesmo;
FILE *fp;
socklen_t len = sizeof(euMesmo);
//gerar numero aleatorio pra criar porta
time_t t;
srand((unsigned)time(&t));
if((ctS = socket(PF_INET,SOCK_STREAM,0)) < 0){
perror("Control Socket");
exit(3);
}
char portC1[10];
int portC = htons(rand());
euMesmo.sin_family=AF_INET;
euMesmo.sin_port = portC;
euMesmo.sin_addr.s_addr =INADDR_ANY;
//Apenas copio a porta gerada formatada
snprintf(portC1,8,"%d",portC);
#ifdef DEBUG
//Print da porta que usarei para receber dados, enviarei isso ao servidor quando conectar
printf("Porta atribuida: %i, Porta gerada: %i\n",euMesmo.sin_port, portC);
#endif
if((dataS = socket(AF_INET,SOCK_STREAM,0)) < 0){
perror("ERRO - socket(dataS)");
exit(EXIT_FAILURE);
}
if(bind(dataS,(struct sockaddr *)&euMesmo,sizeof(euMesmo)) < 0){
perror("ERRO - bind()");
exit(EXIT_FAILURE);
}
if(listen(dataS,1) != 0){
perror("ERRO - listen()");
exit(EXIT_FAILURE);
}
/*if (getsockname(dataS, (struct sockaddr *)&euMesmo, &len) == -1)
perror("getsockname");
else
printf("port number %d\n", ntohs(euMesmo.sin_port));
*/
do{
comando[0]=NULL;//conectar,receber,listar,enviar,encerrar,ajuda,cls/clear
comando[1]=NULL;//segunda parte do comando, usado em algumas operacoes
comando[2]=NULL;//mesmo do de cima
comando[3]=NULL; //porta de dados
printf("psta>");
fgets(action1,sizeof(action1),stdin);
memcpy(action,action1,sizeof(action));
//extracao dos comandos
comando[0]=strtok(action1," \n");
comando[1]=strtok(NULL," \n");
comando[2]=strtok(NULL," \n");
comando[3]=strtok(NULL," \n");
#ifdef DEBUG
printf("-COMANDO0: %s",comando[0]);
printf("-COMANDO1: %s",comando[1]);
printf("-COMANDO2: %s",comando[2]);
printf("-COMANDO3: %s",comando[3]);
#endif
if(strcmp(comando[0],CONECTAR)==0){
//Nao digitou hostname e/ou porta
if(comando[1] == NULL || comando[2] == NULL) goto erro;
if(strcmp(comando[1],"\n")==0 ||strcmp(comando[2],"\n")==0) goto erro;
if(strcmp(comando[1],"\0")==0 ||strcmp(comando[2],"\0")==0) goto erro;
if(isConnected==1)
{
printf("Desconectando de %s\n",inet_ntoa(server.sin_addr));
if((send(ctS,ENCERRAR,sizeof(ENCERRAR),0)) < 0) perror("ERRO - send(ctS)");
close(ctS);
if((ctS = socket(PF_INET,SOCK_STREAM,0)) < 0)
{
perror("Control Socket");
exit(3);
}
isConnected=0;
}
hostnm = gethostbyname(comando[1]);
inetaddr = inet_addr(comando[1]);
server.sin_family=AF_INET;
server.sin_port = htons(atoi(comando[2]));
if( hostnm == (struct hostent *) 0)
{
if(inetaddr == INADDR_NONE)
{
fprintf(stderr,"ERRO - nome do servidor\n");
goto erro;
}
server.sin_addr.s_addr=inetaddr;
}else server.sin_addr.s_addr=*((unsigned long *)hostnm->h_addr_list[0]);
if(connect(ctS,(struct sockaddr *)&server,sizeof(server)) < 0) perror("ERRO - connect(ctS)");
else{
isConnected=1;
printf("(conectado a %s na porta %s)\n",comando[1],comando[2]);
}
//mandar port de dados de si mesmo para seridor
if((send(ctS,&portC,sizeof(portC),0)) < 0) perror("ERRO - send(Porta)");
}else if (strcmp(comando[0],RECEBER)==0){
/*Receber aqui*/
if(!isConnected) printf("Por favor conecte-se antes!\n");
//Nao digitou os parametros requeridos
if(comando[1] == NULL) goto erro;
if(strcmp(comando[1],"\n")==0) goto erro;
if(strcmp(comando[1],"\0")==0) goto erro;
//se nao houver nome do arquivo local uso o do remoto
if(comando[2] == NULL || strcmp(comando[2],"\n")==0 || strcmp(comando[2],"\0")==0) comando[2]=comando[1];
if(send(ctS,action,sizeof(action),0)<0) perror("ERRO - send(ctS)");
else{
//configuro o socket de dados
namelen=sizeof(server);
if((dataSaccept = accept(dataS,(struct sockaddr *)&server,&namelen)) == -1) perror("ERRO - Accept(dataS)");
else{
//Operação de recebimento
//verifico o tamanho do arquivo que vou receber
if((recv(dataSaccept, datasBuf,sizeof(datasBuf),0)) == -1) perror("ERRO - Recv(dataSaccept)");
size = atol(datasBuf);
printf("Tamanho do arquivo a receber: %lu\n",size);
//aloco o espaco necessario
fileBuf = malloc(size);
if((ret = recv(dataSaccept, fileBuf,size,0)) == -1) perror("ERRO - Recv(dataSaccept)");
else{
//Verifico se a leitura foi um sucesso
if(strcmp(strerror(atoi(fileBuf)),"Success") == 0){
//gero o caminho ao meu futuro arquivo
getcwd(path,sizeof(path));
strcat(path,"/");
strcat(path,comando[2]);
fp = fopen(path,"wb");
fwrite(fileBuf,size,1,fp);
fclose(fp);
printf("Recebidos %lu bytes de %s\n",ret,inet_ntoa(server.sin_addr));
}else{
printf("ERRO - %s\n",strerror(atoi(fileBuf)));
}
}
free(fileBuf);
close(dataSaccept);
}
}
}else if (strcmp(comando[0],ENVIAR)==0){
/*Enviar aqui*/
if(!isConnected) printf("Por favor conecte-se antes!\n");
//Nao digitou os parametros requeridos
if(comando[1] == NULL) goto erro;
if(strcmp(comando[1],"\n")==0) goto erro;
if(strcmp(comando[1],"\0")==0) goto erro;
if(send(ctS,action,sizeof(action),0)<0) perror("ERRO - send(ctS)");
else{
namelen=sizeof(server);
if((dataSaccept = accept(dataS,(struct sockaddr *)&server,&namelen)) == -1) perror("ERRO - Accept(dataS)");
else{
//Operação de envio
getcwd(path,sizeof(path));
strcat(path,"/");
strcat(path,comando[1]);
fp = fopen(path,"rb");
if(fp){
//verifico o tamanho do arquivo
fseek(fp,0,SEEK_END);
size = ftell(fp);
fseek(fp,0,SEEK_SET);
fileBuf = malloc(size);
fread(fileBuf,1,size,fp);
fclose(fp);
//envio o tamanho do arquivo primeiro
sprintf(datasBuf,"%lu",size);
if(send(dataSaccept,datasBuf,sizeof(size),0) < 0){
perror("ERRO - send(dataSaccept)");
break;
}
if(send(dataSaccept,fileBuf,size,0)<0){
perror("ERRO - send(dataSaccept)");
break;
}
free(fileBuf);
printf("Enviado %lu bytes para %s\n",size,inet_ntoa(server.sin_addr));
}else{
//Falha ao ler
perror("ERRO - fread");
sprintf(datasBuf,"%lu",sizeof(errno));
if(send(dataSaccept,datasBuf,sizeof(errno),0)<0){
perror("ERRO - send(dataS)");
break;
}
sprintf(datasBuf,"%d",errno);
if(send(dataSaccept,datasBuf,sizeof(errno),0)<0){
perror("ERRO - send(dataS)");
break;
}
}
close(dataSaccept);
}
}
}else if (strcmp(comando[0],LISTAR)==0){
/*Listar aqui*/
if(!isConnected) printf("Por favor conecte-se antes!\n");
if((send(ctS,action,sizeof(action),0)) < 0) perror("ERRO - send(ctS)");
else
{
namelen = sizeof(server);
if((dataSaccept = accept(dataS, (struct sockaddr *)&server, &namelen)) == -1) perror("ERRO - Accept(dataS)");
else{
if((recv(dataSaccept, datasBuf,sizeof(datasBuf),0)) == -1) perror("ERRO - Recv(dataSaccept)");
else fprintf(stdout,"\nDIRETORIO - %s\n",datasBuf);
close(dataSaccept);
}
}
}
else if (strcmp(comando[0],ENCERRAR)==0){
break;
}
else if (strcmp(comando[0],"clear") == 0 || strcmp(comando[0],"cls") == 0 )
system("clear");
else if (strcmp(comando[0],"ajuda") == 0)
help();
else
erro:
printf("- Comando invalido! -\n- Se confuso esta, o comando 'ajuda' te guiara! - \n");
}while(strcmp(comando[0],ENCERRAR) != 0);
if(isConnected==1){
if((send(ctS,ENCERRAR,sizeof(ENCERRAR),0)) < 0) {
perror("ERRO - send(ctS) SINAL NAO ENVIADO");
close(dataS);
close(ctS);
exit(errno);
}
}
close(dataS);
close(ctS);
exit(EXIT_SUCCESS);
}
void help(){
printf("PSTR 1.0\n");
printf("by @adrianomunin,@fabioirokawa\n@iaglourenco,@lucasrcoutinho,@marcoslelis\nmore info: https://github.com/iaglourenco/PSTA\n\n");
printf("Ajuda: \n\n");
printf("Comandos: \n");
printf("- %s <nome do servidor> [<porta do servidor>]\n",CONECTAR);
printf("- %s <arquivo local> [<arquivo remoto>]\n",ENVIAR);
printf("- %s <arquivo remoto> [<arquivo local>]\n",RECEBER);
printf("- %s",LISTAR);
printf("- %s",ENCERRAR);
printf("- ajuda\n");
printf("- cls/clear\n");
}