-
Notifications
You must be signed in to change notification settings - Fork 0
/
servidor_psta.c
328 lines (277 loc) · 10.6 KB
/
servidor_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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <string.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/sem.h>
#include <pthread.h>
#include <signal.h>
#include <errno.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <ctype.h>
#define CONECTAR "conectar"
#define RECEBER "receber"
#define ENVIAR "enviar"
#define LISTAR "listar"
#define ENCERRAR "encerrar"
//#define DEBUG 1
//struct de parametros da thread
typedef struct
{
int ctS,dataS,portClient;
struct sockaddr_in client;
} thread_arg, *ptr_thread_arg;
//headers
void * thread_func(void *);
int setup_dataS(struct sockaddr_in);
//mutex
pthread_mutex_t mutex;
int main(int argc,char *argv[]){
int ctS,dataS,namelen,ctSThread,dataSThread;
int portRecv;
struct sockaddr_in euMesmo,client;
//variaveis thread
int thread_create_result, portC;
pthread_t ptid;
thread_arg t_arg;
//crio o mutex
int mutex_init_result =pthread_mutex_init(&mutex,NULL);
if(mutex_init_result != 0){
perror("ERRO - mutex_init()");
exit(-1);
}
//crio o socket de controle
if((ctS = socket(PF_INET,SOCK_STREAM,0)) < 0){
perror("ERRO - Socket(ctS)");
exit(-1);
}
//digitou errado padawan!
if(argc != 2){
printf("Use %s <porta>\n",argv[0]);
exit(1);
}
//Guarda o endereço do servidor para conexoes na porta de dados do cliente
euMesmo.sin_family = AF_INET;
euMesmo.sin_port = htons(atoi(argv[1]));
euMesmo.sin_addr.s_addr = INADDR_ANY;
if(ntohs(euMesmo.sin_port) == 0){
printf("ERRO - Porta invalida\n");
exit(1);
}
if(bind(ctS,(struct sockaddr *)&euMesmo,sizeof(euMesmo))<0){
perror("ERRO - bind(ctS)");
exit(errno);
}
if(listen(ctS,1) !=0){
perror("ERRO - Listen(ctS)");
exit(errno);
}
system("clear");
printf("Servidor PSTA iniciado na porta %d!\nAguardando conexoes...\n",ntohs(euMesmo.sin_port));
do
{
namelen = sizeof(client);
if((ctSThread = accept(ctS,(struct sockaddr *)&client,(socklen_t *)&namelen)) == -1){
perror("ERRO - Accept(ctS)");
exit(errno);
}
t_arg.ctS = ctSThread;
t_arg.client = client;
if (recv(ctSThread, &portRecv, sizeof(portRecv), 0) == -1)
{
perror("ERRO - Recv(portRecv)");
exit(errno);
}
t_arg.portClient = portRecv;
#ifdef DEBUG
printf("Porta informada: %d\n",t_arg.portClient);
#endif
thread_create_result = pthread_create(&ptid,NULL,&thread_func,&t_arg);
if(thread_create_result != 0){
perror("ERRO - thread_create()");
exit(thread_create_result);
}
} while (1);
close(ctS);
pthread_mutex_destroy(&mutex);
printf("Servidor PSTA encerrado!");
return EXIT_SUCCESS;
}
void * thread_func(void *arg){
//função da thread
ptr_thread_arg thread_arg = (ptr_thread_arg)arg;
//passo todos os parametros da struct para variaveis locais
int ctS = thread_arg->ctS;
int dataS = thread_arg->dataS;
struct sockaddr_in client =thread_arg->client;
client.sin_port = thread_arg->portClient;
int pid_thread = pthread_self();
FILE *fp;
ssize_t size,ret;
char *comando[80];//array para o strtok
char action[100];//entrada recebida em ascii
//ISSO NAO EH BONITO, DEVIA SER DINAMICO
char datasBuf[10000],list[10000];//strings para envio de dados
char path[1000];//string com o caminho dos arquivos
char * fileBuf; // ALOCACAO DINAMICA :), envio ou recebimento de dados
printf("LOG - Conexao aceita de %s porta %d, cliente id: %u\n",
inet_ntoa(thread_arg->client.sin_addr),
ntohs(thread_arg->client.sin_port),pid_thread);
do{
comando[0]=NULL;//conectar,enviar,listar,receber,encerrar
comando[1]=NULL;//nome do arquivo pra receber ou enviar
comando[2]=NULL;// same as above
if(recv(ctS, action,sizeof(action),0) == -1){
//perror("ERRO - Recv(ctS)");
fprintf(stderr,"ERRO - Recv(ctS): %s, cliente id: %u\n",strerror(errno),pid_thread);
exit(errno);
}
//tokenizacao da string recebida
comando[0]=strtok(action," \n");
comando[1]=strtok(NULL," \n");
comando[2]=strtok(NULL," \n");
#ifdef DEBUG
printf("-COMANDO0: %s",comando[0]);
printf("-COMANDO1: %s",comando[1]);
printf("-COMANDO2: %s",comando[2]);
#endif
if(comando[0] == NULL) break;
if(strcmp(comando[0], ENCERRAR) ==0){
break;
}
if (strcmp(comando[0], RECEBER) == 0){
/*Enviar arquivo ao cliente*/
pthread_mutex_trylock(&mutex);
if((dataS = setup_dataS(client)) < 0){
break;
}
if(connect(dataS,(struct sockaddr *)&client,sizeof(client)) < 0){
fprintf(stderr,"ERRO - connect(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}
else{
printf("LOG - Enviando arquivo ao cliente, id: %u\n",pid_thread);
//gero o caminho do arquivo solicitado
getcwd(path,sizeof(path));
strcat(path,"/");
strcat(path,comando[1]);
fp = fopen(path,"rb");
if(fp) {
//determino o tamanho do arquivo
fseek(fp,0,SEEK_END);
size = ftell(fp);
fseek(fp,0,SEEK_SET);
fileBuf = malloc(size);
fread(fileBuf,size,1,fp);
fclose(fp);
//envio o tamanho do arquivo primeiro
sprintf(datasBuf,"%lu",size);
if(send(dataS,datasBuf,sizeof(datasBuf),0) < 0){
fprintf(stderr,"ERRO - send(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}
//depois o arquivo em si
if((ret = send(dataS,fileBuf,size,0)) < 0){
fprintf(stderr,"ERRO - send(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}
free(fileBuf);
printf("LOG - Enviado %lu bytes ao cliente, id: %u\n",ret,pid_thread);
}else{
//Falha na leitura
fprintf(stderr,"ERRO - fread: %s, cliente id: %u\n",strerror(errno),pid_thread);
sprintf(datasBuf,"%lu",sizeof(errno));
if(send(dataS,datasBuf,sizeof(long),0) < 0){
fprintf(stderr,"ERRO - send(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}
sprintf(datasBuf,"%d",errno);
if(send(dataS,datasBuf,sizeof(errno),0) < 0){
fprintf(stderr,"ERRO - send(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}
}
}
close(dataS);
pthread_mutex_unlock(&mutex);
}else if (strcmp(comando[0], ENVIAR) == 0){
/* Receber arquivo do cliente */
if(comando[2] == NULL || strcmp(comando[2],"\n")==0 || strcmp(comando[2],"\0")==0) comando[2]=comando[1];
pthread_mutex_trylock(&mutex);
if((dataS = setup_dataS(client)) < 0){
break;
}
if(connect(dataS,(struct sockaddr *)&client,sizeof(client))<0){
fprintf(stderr,"ERRO - connect(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}else{
printf("LOG - Recebendo arquivo do cliente, id: %u\n",pid_thread);
//recebo o tamanho do arquivo
if(recv(dataS,datasBuf,sizeof(size),0) == -1) fprintf(stderr,"ERRO - recv(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
size = atol(datasBuf);
fileBuf = malloc(size);
if((ret = recv(dataS,fileBuf,size,0)) == -1) fprintf(stderr,"ERRO - recv(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
else{
if(strcmp(strerror(atoi(fileBuf)),"Success") == 0){
getcwd(path,sizeof(path));
strcat(path,"/");
strcat(path,comando[2]);
fp = fopen(path,"wb");
fwrite(fileBuf,size,1,fp);
fclose(fp);
printf("LOG - Recebidos %lu bytes do cliente, id: %u\n",ret,pid_thread);
}else{
printf("ERRO - %s\n",strerror(atoi(fileBuf)));
}
}
free(fileBuf);
}
close(dataS);
pthread_mutex_unlock(&mutex);
}else if (strcmp(comando[0], LISTAR) == 0){
/* Enviar listagem ao cliente*/
if((dataS = setup_dataS(client)) < 0){
break;
}
pthread_mutex_trylock(&mutex);
if(connect(dataS,(struct sockaddr *)&client,sizeof(client)) < 0){
fprintf(stderr,"ERRO - connect(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}else{
getcwd(datasBuf,sizeof(datasBuf));
fp = popen("ls","r");
strcat(datasBuf,"\n----\n");
while(fgets(list,sizeof(list),fp)!= NULL){
strcat(datasBuf,list);
}
pclose(fp);
if(send(dataS,datasBuf,sizeof(datasBuf),0) < 0){
fprintf(stderr,"ERRO - send(dataS): %s, cliente id: %u\n",strerror(errno),pid_thread);
break;
}
printf("LOG - Listagem enviada ao cliente, id: %u\n",pid_thread);
pthread_mutex_unlock(&mutex);
close(dataS);
}
}
}while(strcmp(comando[0], ENCERRAR) !=0);
printf("LOG - Conexao de %s porta %d, encerrada, cliente id: %u\n",
inet_ntoa(thread_arg->client.sin_addr),
ntohs(thread_arg->client.sin_port),pid_thread);
close(ctS);
close(dataS);
}
int setup_dataS(struct sockaddr_in info){
int dataS;
if((dataS = socket(AF_INET,SOCK_STREAM,0)) < 0){
perror("ERRO - socket(dataS)");
return errno;
}
return dataS;
}