-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsock_v3.c
373 lines (322 loc) · 9.7 KB
/
tsock_v3.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
/* librairie standard ... */
#include <stdlib.h>
/* pour getopt */
#include <unistd.h>
/* déclaration des types de base */
#include <sys/types.h>
/* constantes relatives aux domaines, types et protocoles */
#include <sys/socket.h>
/* constantes et structures propres au domaine UNIX */
#include <sys/un.h>
/* constantes et structures propres au domaine INTERNET */
#include <netinet/in.h>
/* structures retournées par les fonctions de gestion de la base de
données du réseau */
#include <netdb.h>
/* pour les entrées/sorties */
#include <stdio.h>
/* pour la gestion des erreurs */
#include <errno.h>
/*Construction, formatage et affichage des messages*/
void construire_message(char *message, char motif, int lg) {
int i;
for (i=0;i<lg;i++) message[i] = motif;
}
void format(int num){
if(num >= 10000){
printf("%d",num);
}else if(num<10000 && num >= 1000){
printf("-%d",num);
}else if(num<1000 && num >= 100){
printf("--%d",num);
}else if(num<100 && num >= 10){
printf("---%d",num);
}else if(num<10 && num >= 0){
printf("----%d",num);
}
}
void afficher_message(char *message, int lg) {
int i;
for (i=0;i<lg;i++)
printf("%c", message[i]);
printf("]\n");
}
/* UDP source */
void UDP_source(int port,int nb_msg, int longueur, char* hostName){
int sock;
struct sockaddr_in adr_distant;
memset((char*)&adr_distant, 0, sizeof(adr_distant)) ; /* reset */
adr_distant.sin_family = AF_INET ;
adr_distant.sin_port = port ;
int lg_adr_distant = sizeof(adr_distant) ;
struct hostent *hp ;
int sent;
char message[longueur] ;
if ((sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1)
{
printf("échec de création du socket\n") ;
exit(1) ;
}
if ((hp = gethostbyname(hostName)) == NULL)
{
printf("Erreur gethostbyname\n") ;
exit(1) ;
}
memcpy( (char*)&(adr_distant.sin_addr.s_addr),
hp->h_addr,
hp->h_length ) ;
printf("SOURCE: lg_msg_emis= %d , port= %d, nb_evois= %d, TP =UDP, dest=%s\n",longueur,port,nb_msg,hostName);
for(int k = 0; k < nb_msg; k++)
{
printf("SOURCE: Envoi n°%d (%d) [",k+1,longueur);
construire_message(message,'a'+k%26,longueur);
format(k+1);
afficher_message(message,longueur);
sent= sendto(sock,message,longueur,0,(struct sockaddr*)&adr_distant,sizeof(adr_distant));
if(sent == -1){
printf("Echec de l'envoi\n");
exit(1);
}
}
printf("SOURCE: fin\n");
if(close(sock)==-1){
printf("Echec de destruction du socket \n");
exit(1);
}
}
/*TCP source */
void TCP_source(int port,int nb_msg, int longueur, char* hostName){
int sock;
struct sockaddr_in adr_distant;
memset((char*)&adr_distant, 0, sizeof(adr_distant)) ; /* reset */
adr_distant.sin_family = AF_INET ;
adr_distant.sin_port = port ;
int lg_adr_distant = sizeof(adr_distant) ;
struct hostent *hp ;
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1)
{
printf("échec de création du socket\n") ;
exit(1) ;
}
if ((hp = gethostbyname(hostName)) == NULL)
{
printf("Erreur gethostbyname\n") ;
exit(1) ;
}
memcpy( (char*)&(adr_distant.sin_addr.s_addr),
hp->h_addr,
hp->h_length ) ;
// Connexion au serveur
int co=-1;
int sent;
char *message= malloc(longueur*sizeof(char)) ;
if ((co=connect(sock,(struct sockaddr*)&adr_distant,sizeof(adr_distant))) == -1)
{
printf("Echec de création de connexion\n") ;
exit(1) ;
}
printf("SOURCE: lg_msg_emis= %d , port= %d, nb_evois= %d, TP =UDP, dest=%s\n",longueur,port,nb_msg,hostName);
for(int k = 0; k < nb_msg; k++)
{
printf("SOURCE: Envoi n°%d (%d) [",k+1,longueur);
construire_message(message,'a'+k%26,longueur);
format(k+1);
afficher_message(message,longueur);
sent= write(sock,message,longueur);
if(sent == -1){
printf("Echec de l'envoi\n");
exit(1);
}
}
printf("SOURCE: fin\n");
if(close(sock)==-1){
printf("Echec de destruction du socket \n");
exit(1);
}
}
/*UDP puits*/
void UDP_puit(int port,int nb_msg, int longueur, char* hostName){
int sock;
struct sockaddr_in adr_local;
memset((char*)&adr_local, 0, sizeof(adr_local)) ; /* reset */
adr_local.sin_family = AF_INET ;
adr_local.sin_port = port ;
int lg_adr_local = sizeof(adr_local) ;
char message[longueur] ;
struct sockaddr_in adr_em;
memset((char*)&adr_em, 0, sizeof(adr_em)) ; /* reset */
adr_em.sin_family = AF_INET ;
adr_em.sin_port = port ;
int plg_adr_em=sizeof(adr_em);
if ((sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == -1)
{
printf("échec de création du socket\n") ;
exit(1) ;
}
if (bind (sock, (struct sockaddr *)&adr_local, lg_adr_local) == -1)
{
printf("Echec du bind\n") ;
exit(1) ;
}
struct hostent *hp ;
if ((hp = gethostbyname(hostName)) == NULL)
{
printf("Erreur gethostbyname\n") ;
exit(1) ;
}
memcpy( (char*)&(adr_local.sin_addr.s_addr),
hp->h_addr,
hp->h_length ) ;
int i = 1;
while(1){
printf("PUITS: Reception n°%d (%d)[",i,longueur);
int r = recvfrom(sock, message, longueur,0,(struct sockaddr*)&adr_em,&plg_adr_em);
if(r == -1){
printf("Echec de lecture\n");
exit(1);
}
if(r == 0){
break;
}
format(i);
afficher_message(message,r);
i++;
}
printf("PUITS: fin\n");
if(close(sock)==-1){
printf("Echec de destruction du socket \n");
exit(1);
}
}
/* TCP puits */
void TCP_puit(int port,int nb_msg, int longueur, char* hostName){
int sock;
struct sockaddr_in adr_local;
memset((char*)&adr_local, 0, sizeof(adr_local)) ; /* reset */
adr_local.sin_family = AF_INET ;
adr_local.sin_port = port ;
int lg_adr_local = sizeof(adr_local) ;
struct hostent *hp ;
struct sockaddr_in adr_em;
int plg_adr_em= sizeof(adr_em);
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1)
{
printf("Echec de création du socket\n") ;
exit(1) ;
}
if (bind (sock, (struct sockaddr *)&adr_local, lg_adr_local) == -1)
{
printf("Echec du bind\n") ;
exit(1) ;
}
if ((hp = gethostbyname(hostName)) == NULL)
{
printf("Erreur gethostbyname\n") ;
exit(1) ;
}
memcpy( (char*)&(adr_local.sin_addr.s_addr),
hp->h_addr,
hp->h_length ) ;
// Connexion
int wait= listen(sock,5);
int co=accept(sock,(struct sockaddr*)&adr_em,&plg_adr_em);
char* message = malloc(longueur*sizeof(char));
if (co == -1)
{
printf("Echec de création de connexion\n") ;
exit(1) ;
}
int i = 1;
while(1){
int r = read(co, message, longueur);
if(r == -1){
printf("Echec de lecture\n");
exit(1);
}
if(r==0){
break;
}
printf("PUITS: Reception n°%d (%d) [",i,longueur);
format(i);
afficher_message(message,r);
i++;
}
if(close(sock)==-1){
printf("Echec de destruction du socket \n");
exit(1);
}
printf("PUITS: fin\n");
}
/*Fonction principale*/
void main (int argc, char **argv)
{
int c;
extern char *optarg;
extern int optind;
int proto=1;
int nb_message = 10; /* Nb de messages à envoyer ou à recevoir, par défaut : 10 en émission, infini en réception */
int lg_message = 30;
int source = -1 ; /* 0=puits, 1=source */
while ((c = getopt(argc, argv, "pusn:l:")) != -1) {
switch (c) {
case 'p':
if (source == 1) {
printf("usage: cmd [-p|-s][-n ##]\n");
exit(1);
}
source = 0;
break;
case 's':
if (source == 0) {
printf("usage: cmd [-p|-s][-n ##]\n");
exit(1) ;
}
source = 1;
break;
case 'n':
nb_message = atoi(optarg);
break;
case 'l':
lg_message = atoi(optarg);
break;
case 'u':
proto = 0;
break;
default:
printf("usage: cmd [-p|-s][-n ##]\n");
break;
}
}
if (source == -1) {
printf("usage: cmd [-p|-s][-n ##]\n");
exit(1) ;
}
if (source == 1)
printf("on est dans le source\n");
else
printf("on est dans le puits\n");
if (nb_message < 0 || nb_message >= 100000) {
if (source == 1)
printf("nb de tampons à envoyer : %d\n Trop de messages \n", nb_message);
else
printf("nb de tampons à recevoir : %d\n Trop de messages \n", nb_message);
} else {
if (source == 1) {
printf("nb de tampons à envoyer = %d par défaut\n",nb_message);
if(proto==0){
UDP_source(atoi(argv[argc-1]),nb_message,lg_message,argv[argc-2]); //UDP source
}else {
TCP_source(atoi(argv[argc-1]),nb_message,lg_message,argv[argc-2]); //TCP source
}
}else if( source == 0){
// Puit
printf("nb de tampons à envoyer = %d par défaut\n",nb_message);
if(proto==0){
UDP_puit(atoi(argv[argc-1]),nb_message,lg_message,argv[argc-2]); //UDP puits
}else {
TCP_puit(atoi(argv[argc-1]),nb_message,lg_message,argv[argc-2]); //TCP puits
}
} else
printf("nb de tampons à envoyer = infini\n");
}
}