This repository has been archived by the owner on Jan 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcliente.c
511 lines (458 loc) · 17.8 KB
/
cliente.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
/*
** Fichero: cliente.c
** Autores:
** Sergio Garcia Gonzalez
** Pablo Jesus Gonzalez Rubio
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/errno.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <netdb.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "utils.h"
extern int errno;
#define PUERTO 4492 //Puerto
#define BUFFERSIZE 1024 //Tamaño del buffer
#define RETRIES 5 //Intentos de recepcion de mensajes
#define TIMEOUT 6 //Timeout de la señal
#define MAXHOST 512
typedef struct
{
char respuesta[100];
char server[100];
char connection[100];
char final[10];
} respInfo;
/*PROTOTIPOS DE FUNCIONES*/
void TCP(FILE *, int, char **);
void UDP(FILE *, int, char **);
void handler();
int main(int argc, char *argv[])
{
FILE *f;
/*Informa del uso si los argumentos pasados al programa son erroneos*/
if (argc != 4 || (strcmp(argv[2], "UDP") && strcmp(argv[2], "TCP")))
{
fprintf(stderr, "Argumentos erroneos, USO:\n");
fprintf(stderr, "%s [Nombre servidor] [TCP | UDP] [Fichero de ordenes]\n", argv[0]);
exit(1);
}
/*Si el fichero es erroneo..*/
if (NULL == (f = (fopen(argv[3], "r"))))
{
fprintf(stderr, "Error en la apertura del fichero %s\n", argv[3]);
exit(2);
}
/*Distinguimos entre si es TCP o UDP*/
if (strcmp(argv[2], "TCP") == 0)
TCP(f, argc, argv);
else
UDP(f, argc, argv);
fclose(f);
return 0;
}
void TCP(FILE *f, int argc, char *argv[])
{
int s; // Socket
struct addrinfo hints, *res;
long timevar; // Tiene la fecha y la hora que devuelve time()
struct sockaddr_in myaddr_in; // Guarda al direccion local
struct sockaddr_in servaddr_in; // Guarda la direccion del servidor
int addrlen, len, i, j, errcode;
int flagPost = 0;
char puertoEfimero[100]; // Nombre del fichero que guarda el progreso y la depuracion del cliente
char respuesta[BUFFERSIZE]; //String para la respuesta del servidor
char buf[BUFFERSIZE * 5]; // Contiene lo leido en el fichero linea a linea
char tempBuf[BUFFERSIZE * 5];
char caracteresRetorno[] = "\r\n";
FILE *c, *g;
/* Create the socket. */
s = socket(AF_INET, SOCK_STREAM, 0);
if (s == -1)
{
perror(argv[0]);
if (NULL == (g = (fopen("depuracion.txt", "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to create socket\n", argv[0]);
fclose(g);
exit(1);
}
// Inicializa las estructuras de la informacion de cliente y servidor
memset((char *)&myaddr_in, 0, sizeof(struct sockaddr_in));
memset((char *)&servaddr_in, 0, sizeof(struct sockaddr_in));
// Pone a punto la direccion a la que se conectara
servaddr_in.sin_family = AF_INET;
// Get the host information for the hostname that the user passed in.
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET;
// Esta función es la recomendada para la compatibilidad con IPv6 gethostbyname queda obsoleta
errcode = getaddrinfo(argv[1], NULL, &hints, &res);
if (errcode != 0)
{
if (NULL == (g = (fopen("depuracion.txt", "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: Couldn't resolve IP for %s\n", argv[0], argv[1]);
fclose(g);
exit(1);
}
else
{
// Copia la direccion del host
servaddr_in.sin_addr = ((struct sockaddr_in *)res->ai_addr)->sin_addr;
}
freeaddrinfo(res);
// Puerto del servidor
servaddr_in.sin_port = htons(PUERTO);
// Intenta establecer la conexion con la IP que ha conseguido del servidor.
if (connect(s, (const struct sockaddr *)&servaddr_in, sizeof(struct sockaddr_in)) == -1)
{
perror(argv[0]);
if (NULL == (g = (fopen("depuracion.txt", "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to connect to remote server.\n", argv[0]);
fclose(g);
exit(1);
}
/* Since the connect call assigns a free address
* to the local end of this connection, let's use
* getsockname to see what it assigned. Note that
* addrlen needs to be passed in as a pointer,
* because getsockname returns the actual length
* of the address.
*/
addrlen = sizeof(struct sockaddr_in);
if (getsockname(s, (struct sockaddr *)&myaddr_in, &addrlen) == -1)
{
perror(argv[0]);
if (NULL == (g = (fopen("depuracion.txt", "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to read socket address.\n", argv[0]);
fclose(g);
exit(1);
}
/* Print out a startup message for the user. */
time(&timevar);
/* The port number must be converted first to host byte
* order before printing. On most hosts, this is not
* necessary, but the ntohs() call is included here so
* that this program could easily be ported to a host
* that does require it.
*/
printf("[C] Connected to %s on port %u at %s\n", argv[1], ntohs(myaddr_in.sin_port), (char *)ctime(&timevar));
// PATH DEL FICHERO PUERTO_EFIMERO DE CADA CLIENTE
strcpy(puertoEfimero, "");
sprintf(puertoEfimero, "%u", ntohs(myaddr_in.sin_port));
strcat(puertoEfimero, "_TCP.txt");
//RECIBE EL ESTABLECIMIENTO DE CONEXIÓN DEL SERVIDOR (200 PREPARADO)
if (-1 == (recv(s, respuesta, BUFFERSIZE, 0)))
{
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: error reading result\n", argv[0]);
fclose(g);
exit(1);
}
printf("%s\n", respuesta);
memset(respuesta, 0, BUFFERSIZE);
// Limpiamos el buffer antes de que empieze a leer
strcpy(buf, "");
strcpy(tempBuf, "");
// COMENZAMOS A LEER EL FICHERO DE ORDENES
while (fgets(buf, BUFFERSIZE, f) != NULL)
{
//Si lee una linea vacia la omite
if (strcmp(buf, caracteresRetorno) == 0)
continue;
//Si lee POST entra en un estado condicional que mantiene leyendo el fichero
if (strcmp(buf, "POST\r\n") == 0)
flagPost = 1;
//Y guardandolo en tempbuf
if (flagPost)
strcat(tempBuf, buf);
//Hasta que lee el punto, entonces flagPost = 0 y lo manda todo de golpe
if (flagPost == 1 && strcmp(buf, ".\r\n") == 0)
{
flagPost = 0;
strcpy(buf, tempBuf);
}
if (flagPost == 0)
{
// Guardamos el mensaje de progreso en el fichero de puerto efimero
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fputs(buf, g);
fclose(g);
sleep(1);
//////////////////////////
// ENVIO DE LA PETICION //
//////////////////////////
len = send(s, buf, strlen(buf), 0);
if (len != strlen(buf))
{
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: Connection aborted on error\nMessage was: %s\nLength returned by send() was: %d\n", argv[0], buf, len);
fclose(g);
exit(1);
}
strcpy(tempBuf, ""); //Se resetea el buffer de lineas
/////////////////////////////////
// RECEPCION DESDE EL SERVIDOR //
/////////////////////////////////
memset(respuesta, 0, BUFFERSIZE);
if (-1 == (recv(s, respuesta, BUFFERSIZE, 0)))
{
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: error reading result\n", argv[0]);
fclose(g);
exit(1);
}
printf("%s\n", respuesta);
// Guardamos el mensaje de progreso en el fichero de puerto efimero
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fputs(respuesta, g);
fputs("\n", g);
fclose(g);
memset(buf, 0, sizeof(buf));
//Una vez operado ya todo lo necesario con respuesta
//se reinicializa para no dar problemas con caracteres raros
}
}
/* Now, shutdown the connection for further sends.
* This will cause the server to receive an end-of-file
* condition after it has received all the requests that
* have just been sent, indicating that we will not be
* sending any further requests.
*/
if (shutdown(s, 1) == -1)
{
perror(argv[0]);
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to shutdown socket\n", argv[0]);
fclose(g);
exit(1);
}
// Print message indicating completion of task.
time(&timevar);
printf("All done at %s", (char *)ctime(&timevar));
}
void UDP(FILE *f, int argc, char *argv[])
{
int s; // Socket
int i, errcode, addrlen, n_retry, len, flagPost = 0, q = 0, p = 0;
int retry = RETRIES; /* holds the retry count */
long timevar; // Tiene la fecha y la hora que devuelve time()
struct sockaddr_in myaddr_in; // Guarda al direccion local
struct sockaddr_in servaddr_in; // Guarda la direccion del servidor
struct in_addr reqaddr; /* for returned internet address */
struct addrinfo hints, *res;
struct sigaction vec;
char hostname[MAXHOST];
char puertoEfimero[100]; // Nombre del fichero que guarda el progreso y la depuracion del cliente
char respuesta[BUFFERSIZE]; //String para la respuesta del servidor
char buf[BUFFERSIZE * 5]; // Contiene lo leido en el fichero linea a linea
char tempBuf[BUFFERSIZE * 5];
char caracteresRetorno[] = "\r\n";
char envio[BUFFERSIZE]; //String para el envio al servidor
char conexionRed[] = "NNTP";
char *corta; //Puntero que apuntará a cada parte de la linea para separar
char vect[3][100];
char aux[7];
FILE *c, *g;
/* Create the socket. */
s = socket(AF_INET, SOCK_DGRAM, 0);
if (s == -1)
{
perror(argv[0]);
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to create socket\n", argv[0]);
fclose(g);
exit(1);
}
// Inicializa las estructuras de la informacion de cliente y servidor
memset((char *)&myaddr_in, 0, sizeof(struct sockaddr_in));
memset((char *)&servaddr_in, 0, sizeof(struct sockaddr_in));
/* Bind socket to some local address so that the
* server can send the reply back. A port number
* of zero will be used so that the system will
* assign any available port number. An address
* of INADDR_ANY will be used so we do not have to
* look up the internet address of the local host.
*/
myaddr_in.sin_family = AF_INET;
myaddr_in.sin_port = 0;
myaddr_in.sin_addr.s_addr = INADDR_ANY;
if (bind(s, (const struct sockaddr *)&myaddr_in, sizeof(struct sockaddr_in)) == -1)
{
perror(argv[0]);
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to bind socket\n", argv[0]);
fclose(g);
exit(1);
}
addrlen = sizeof(struct sockaddr_in);
if (getsockname(s, (struct sockaddr *)&myaddr_in, &addrlen) == -1)
{
perror(argv[0]);
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to read socket address\n", argv[0]);
fclose(g);
exit(1);
}
/* Print out a startup message for the user. */
time(&timevar);
/* The port number must be converted first to host byte
* order before printing. On most hosts, this is not
* necessary, but the ntohs() call is included here so
* that this program could easily be ported to a host
* that does require it.
*/
printf("Connected to %s on port %u at %s", argv[1], ntohs(myaddr_in.sin_port), (char *)ctime(&timevar));
strcpy(puertoEfimero, "");
sprintf(puertoEfimero, "%u", ntohs(myaddr_in.sin_port));
strcat(puertoEfimero, "_UDP.txt");
// Pone a punto la direccion a la que se conectara
servaddr_in.sin_family = AF_INET;
// Get the host information for the hostname that the user passed in.
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET;
// Esta función es la recomendada para la compatibilidad con IPv6 gethostbyname queda obsoleta
errcode = getaddrinfo(argv[1], NULL, &hints, &res);
if (errcode != 0)
{
// Name was not found. Return a special value signifying the error.
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: Couldn't resolve IP for %s\n", argv[0], argv[1]);
fclose(g);
exit(1);
}
else
{
// Copia la direccion del host
servaddr_in.sin_addr = ((struct sockaddr_in *)res->ai_addr)->sin_addr;
}
freeaddrinfo(res);
// Puerto del servidor
servaddr_in.sin_port = htons(PUERTO);
/* Registrar SIGALRM para no quedar bloqueados en los recvfrom */
vec.sa_handler = (void *)handler;
vec.sa_flags = 0;
if (sigaction(SIGALRM, &vec, (struct sigaction *)0) == -1)
{
perror("sigaction(SIGALRM)");
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to register the SIGALRM signal.\n", argv[0]);
fclose(g);
exit(1);
}
// Limpiamos el buffer antes de que empieze a leer
strcpy(buf, "");
strcpy(tempBuf, "");
// COMENZAMOS A LEER EL FICHERO DE ORDENES
while (fgets(buf, BUFFERSIZE, f) != NULL)
{
//////////////////////////
// ENVIO DE LA PETICION //
//////////////////////////
n_retry = RETRIES;
//Si lee una linea vacia la omite
if (strcmp(buf, caracteresRetorno) == 0)
continue;
//Si lee POST entra en un estado condicional que mantiene leyendo el fichero
if (strcmp(buf, "POST\r\n") == 0)
flagPost = 1;
//Y guardandolo en tempbuf
if (flagPost)
strcat(tempBuf, buf);
//Hasta que lee el punto, entonces flagPost = 0 y lo manda todo de golpe
if (flagPost == 1 && strcmp(buf, ".\r\n") == 0)
{
flagPost = 0;
strcpy(buf, tempBuf);
}
if (flagPost == 0)
{
while (n_retry > 0)
{
//Mete mensaje progeso
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fputs(buf, g);
fclose(g);
/*Enviamos con el tamaño de la estructura enviada, si no devuelve el mismo tamaño da error*/
if (sendto(s, buf, strlen(buf), 0, (struct sockaddr *)&servaddr_in, sizeof(struct sockaddr_in)) != strlen(buf))
{
perror(argv[0]);
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fprintf(g, "%s: unable to send request\n", argv[0]);
fclose(g);
}
strcpy(tempBuf, "");
/*Establecemos una alarma para que el recvfrom no se quede en espera infinita por ser bloqueante*/
alarm(TIMEOUT);
/////////////////////////////////
// RECEPCION DESDE EL SERVIDOR //
/////////////////////////////////
memset(respuesta, 0, BUFFERSIZE);
if ((len = recvfrom(s, respuesta, BUFFERSIZE, 0, (struct sockaddr *)&servaddr_in, &addrlen)) == -1)
{
if (errno == EINTR)
{
// Si se produce el SIGALRM restamos un RETRY
printf("Attempt %d (Retries %d).\n", n_retry, RETRIES);
n_retry--;
}
else
{
printf("Unable to get response from.\n");
exit(1);
}
}
else
{
alarm(0); //Cancelamos la alarma
// Mostramos la respuesta
printf("%s - %s", argv[1], respuesta);
//Mete mensaje progeso
if (NULL == (g = (fopen(puertoEfimero, "a"))))
fprintf(stderr, "No se ha podido abrir el fichero");
fputs(respuesta, g);
fputs("\n", g);
fclose(g);
break;
}
}
}
memset(buf, 0, sizeof(buf));
// Mostramos por pantalla los distintos intentos de respuesta
if (n_retry == 0)
{
printf("Unable to get response from.\n");
printf("%s after %d Attempts.\n", argv[1], RETRIES);
}
}
// Ha terminado UDP
time(&timevar);
printf("All done at %s", (char *)ctime(&timevar));
}
// Funcion que necesita el SIGACTION
void handler()
{
printf("La recepcion ha superado el timeout: %d\n", TIMEOUT);
}